@charset "UTF-8";
/* CSS Document */

ul.accordion{
  margin-top: 10px;
}
ul.accordion ul{ /* アコーディオン部 */
  margin: 10px 0 20px 15px;
}

    @media screen and (max-width: 767px) {
      ul.accordion ul{ /* アコーディオン部 */
        margin: 10px 0 10px 15px;
      }
    }

ul.accordion ul.hide{ /* アコーディオン非表示 */
  display: none;
}
ul.accordion li{ /* リセット */
  list-style: none;
  background: none;
  padding: 0;
}
ul.accordion li p{ /* リセット */
  margin: 0;
  padding: 10px;
  border-bottom: 1px solid #A9A9A9;
  cursor: pointer;
}
ul.accordion li p span{ /* アイコン背景 */
  display: inline-block;
  width: 15px;
  height: 15px;
  position: relative;
  /* background: #09c; */
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-right: 5px;
  vertical-align: -2px;
}
ul.accordion li p span:before{ /* アイコン横棒 */
  content:'';
  height: 1px;
  width: 13px;
  display: block;
  background: #0D045F;
  position: absolute;
  top: 7px;
  left: 0px;
}
ul.accordion li p span:after{ /* アイコン縦棒（閉じてるとき） */
  content: '';
  height: 13px;
  width: 1px;
  display: block;
  background: #0D045F;
  position: absolute;
  top: 1px;
  left: 6px;
}
ul.accordion li p span.acv_open:after{ /* アイコン縦棒なし（開いてるとき） */
  height: 0;
  width: 0;
}
ul.accordion ul li{ /* アーカイブリスト */
  margin-left: 30px;
  position: relative;
}
ul.accordion ul li::after{ /* アーカイブリストマーク */
  display: none;
  content: '';
  position: absolute;
  top: .2em;
  left: -1em;
  width: 6px;
  height: 6px;
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
