
body.faq header li.nav-faq::after {
    display: block;
}

/* ==============================
  ページタイトル
============================== */
.page-title-wrap  {
    padding:  5.27% 0 4.77%;
}
.page-title-wrap h1 {
    width: 11.79%;
    margin: 0 auto;
}
.page-title-wrap h1 span.jp {
    display: block;
    width: 57.14%;
    margin: 0.7em auto 0;
}
@media print, screen and (max-width: 768px) {
    .page-title-wrap  {
        padding: 34.74vw 0 15.62vw;
    }
    .page-title-wrap h1 {
        width: 23.2vw;
    }
    .page-title-wrap h1 span.jp {
        width: 28vw;
        margin-left: -2.5vw;
        margin-right: -2.5vw;
    }
}

/* ==============================
  共通
============================== */
.faq-wrap {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 5.71% 0 8.06%;
}
.faq-wrap .faq-inner {
    width: 59.08%;
    margin: 0 auto;
}
.faq-wrap .faq-item .q_item {
    font-size: min(4vw, 2.0rem);
    letter-spacing: 0.18em;
    line-height: 1.6em;
    font-weight: 500;
    color: #2B99B0;
    cursor: pointer;

    padding: 45px 40px 13px 28px;
    position: relative;
    border-bottom: 1px solid #CCCCCC;

    display: flex;
    align-items: center;
}
.faq-wrap .faq-item .q_item:before {
    content: "";
    display: inline-block;
    background: url(../images/faq/q-icon.svg) no-repeat center;
    background-size: 100%;
    width: 21.5px;
    height: 15.5px;
    position: absolute;
    top: 53px;
    left: 0;
}
.faq-wrap .faq-item .q_item:after {
    width: 15.71px;
    height: 8.56px;

    right: 40px;
}
.faq-wrap .faq-item .a_item {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}
.faq-wrap .faq-item .q_item.open + .a_item {
    font-size: min(3.467vw, 1.6rem);
    letter-spacing: 0.18em;
    line-height: 1.625;
    padding-top: 23px;
    padding-left: 63px;
    padding-right: 130px;
    padding-bottom: 40px;
    position: relative;
    width: 86.49%;
    max-height: 500px;
    opacity: 1;
    visibility: visible;
}
.faq-wrap .faq-item .a_item:before {
    content: "";
    display: inline-block;
    background: url(../images/faq/a-icon.svg) no-repeat center;
    background-size: 100%;
    width: 21.5px;
    height: 14px;
    position: absolute;
    left: 30px;
    top: 28px;
}
/* アイコン枠 */
.toggle-icn {
  width: 17px;
  height: 17px;
  display: inline-block;
  position: absolute;
  right: 0;
}

/* 共通スタイル（横線・縦線） */
.toggle-icn::before,
.toggle-icn::after {
  content: "";
  position: absolute;
  background: #3E3A39;
  transition: transform 0.3s ease; /* アニメーション */
}

/* 横線 */
.toggle-icn::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px; /* ← 太さを1pxに */
  transform: translateY(-50%);
}

/* 縦線 */
.toggle-icn::after {
  left: 50%;
  top: 0;
  width: 1px;   /* ← 太さを1pxに */
  height: 100%;
  transform: translateX(-50%) rotate(0deg);
}

/* openのとき：縦線を横線に重ねて回転 */
.q_item.open .toggle-icn::after {
  transform: translateX(-50%) rotate(90deg);
}
@media print, screen and (max-width: 768px) {
    .faq-wrap {
        padding: 10.667vw 0 13.333vw;
        position: relative;
    }
    .faq-wrap .faq-inner {
        width: 85.33vw;
        max-width: 85.33vw;
        margin: 0 auto 0;
    }
    .faq-wrap .faq-item .q_item {
        padding: 5.333vw 8vw 5.333vw 6.333vw;
    }
    .faq-wrap .faq-item .q_item:before {
        width: 5.267vw;
        height: 3.933vw;
        top: 6.6vw;
        left: 0;
    }
    .faq-wrap .faq-item .a_item {
    }
    .faq-wrap .faq-item .q_item.open + .a_item {
        padding: 5.333vw 5.333vw 5.333vw 6.333vw;
        width: auto;
    }
    .faq-wrap .faq-item .a_item:before {
        width: 5vw;
        height: 3vw;
        top: 6.6vw;
        left: 0;
    }

}


/* スマホだけ隠す (例: 768px以下) */
@media (max-width: 768px) {
  .faq-item.more-target {
    display: none;
  }
  .faq-wrap.show-more .faq-item.more-target {
    display: block;
  }
}
.more-button-wrap {
    display: none;
}
/* ボタン */
@media print, screen and (max-width: 768px) {
    .more-button-wrap {
        display: block;
        position: absolute;
        width: 100%;
        height: 55.333vw;
        bottom: 0;
        background-image: linear-gradient(0deg, #ffffff, transparent);
    }
    .more-button-wrap button {
        padding-bottom: 2.667vw;
    }
    .more-button-wrap button {
        display: block;
        border: none;
        border-bottom: 1px solid #000;
        padding-bottom: 10px;
        background: initial;
        cursor: pointer;
        margin: 28.533vw auto 0;
    }
    .more-button-wrap button span img {
        width: 12vw;
    }
}