@charset 'utf-8';

/* faq
------------------------------------------------ */
@media screen and (min-width: 768px) {
    .faq-content-wrapper {
        display: flex;
        justify-content: space-between;
    }
}

/* -- タイトル周り -- */
.fs-c-heading.fs-c-heading--page::before,
.fs-c-heading.fs-c-heading--page::after {
    display: none;
}

.fs-c-heading.fs-c-heading--page {
    height: auto;
    padding: 0;
    font-size: 1.8rem;
}

@media screen and (min-width: 768px) {
    .fs-c-heading.fs-c-heading--page {
        font-size: 2.4rem;
        margin: 55px 0;
    }
}

/* -- ローカルナビ -- */
.faq-local_nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 40px;
}

.faq-local_nav-list__item {
    width: calc(50% - 10px);
    background: #f5f5f5;
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-weight: bolder;
}

.faq-local_nav-list__item a {
    display: block;
    width: 100%;
    padding: 10px 30px 10px 10px;
    color: #ca9513;
    position: relative;
}

.faq-local_nav-list__item a::after {
    display: block;
    content: '';
    width: 8px;
    height: 8px;
    border-top: solid 1px #999;
    border-right: solid 1px #999;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 4px);
    right: 12px;
}

@media screen and (min-width: 768px) {
    .faq-local-nav {
        width: 22.5%;
    }
    
    .faq-local_nav-list {
        display: block;
        height: auto;
        padding: 20px;
        background: #f5f5f5;
        margin: 0;
    }

    .faq-local_nav-list__item {
        width: 100%;
        margin: 0;
        font-size: 1.3rem;
        background: none;
        border-bottom: solid 1px #e8dec6;
    }

    .faq-local_nav-list__item:last-child {
        border: none;
    }

    .faq-local_nav-list__item a {
        padding: 14px 20px;
        color: #ca9513;
        position: relative;
        transition: 300ms;
    }

    .faq-local_nav-list__item a:hover {
        background: #fcfcfc;
        transition: 300ms;
    }

    /* 追従 */
    .sticky {
        postion: -webkit-sticky;
        position: sticky;
        top: 150px;
    }
}

/* -- FAQ -- */
.faq-content-section {
    margin: 0 0 50px;
}

.faq-content-section:last-of-type {
    margin: 0;
}

.faq-content-block_heading {
    font-size: 1.4rem;
    margin: 0 0 15px;
    padding: 0 0 5px;
    border-bottom: solid 1px #ddd;
}

.faq-accordion {
    border: solid 1px #ddd;
    border-radius: 5px;
    margin: 0 0 25px;
    padding: 13px;
    text-align: left;
}

.faq-accordion:last-of-type {
    margin: 0;
}

.faq-accordion__question {
    font-size: 1.4rem;
    font-weight: bolder;
    padding: 0 0 0 35px;
    cursor: pointer;
    position: relative;
}

.faq-accordion__question::before {
    display: block;
    content: 'Q';
    font-family: 'Jost', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Meiryo', 'メイリオ', 'ＭＳ Ｐゴシック', 'MS P Gothic', Osaka, Arial, Helvetica, Verdana, sans-serif;
    font-size: 1.3rem;
    font-weight: bolder;
    text-align: center;
    color: #ba9320;
    width: 28px;
    height: 28px;
    background: #fcebc0;
    border-radius: 14px;
    padding: 3.5px 0 0 1.5px;
    position: absolute;
    top: -2px;
    left: 0;
}

.faq-accordion__answer {
    font-size: 1.2rem;
    margin: 20px 0 0;
    padding: 20px 0 0 35px;
    position: relative;
    border-top: solid 1px #ddd;
}

.faq-accordion__answer::before {
    display: block;
    content: 'A';
    font-family: 'Jost', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Meiryo', 'メイリオ', 'ＭＳ Ｐゴシック', 'MS P Gothic', Osaka, Arial, Helvetica, Verdana, sans-serif;
    font-size: 1.3rem;
    font-weight: bolder;
    text-align: center;
    color: #fff;
    width: 28px;
    height: 28px;
    background: #ca9513;
    border-radius: 14px;
    padding: 3px 0 0 1.5px;
    position: absolute;
    top: 15px;
    left: 0;
}

.faq-accordion__answer a {
    text-decoration: underline;
}

.faq-accordion__answer.open {
    display: block;
}

.faq-accordion__answer small {
    display: block;
    font-size: 1.2rem;
}


@media screen and (min-width: 768px) {
    .faq-content {
        width: 75%;
    }

    .faq-content-section {
        margin: 0 0 80px;
    }

    .faq-content-block_heading {
        font-size: 1.8rem;
        margin: 0 0 40px;
        padding: 0 0 15px;
    }

    .faq-accordion {
        border-radius: 5px;
        margin: 0 0 40px;
        padding: 30px;
    }

    .faq-accordion__question {
        font-size: 1.5rem;
        padding: 0 0 0 40px;
    }

    .faq-accordion__question::before {
        font-size: 1.5rem;
        font-weight: bolder;
        text-align: center;
        color: #ba9320;
        width: 32px;
        height: 32px;
        border-radius: 16px;
        padding: 3.5px 0 0 1.5px;
        top: -3px;
        left: 0;
    }

    .faq-accordion__answer {
        font-size: 1.3rem;
        margin: 30px 0 0;
        padding: 30px 0 0 40px;
        position: relative;
        border-top: solid 1px #ddd;
    }

    .faq-accordion__answer::before {
        font-size: 1.5rem;
        width: 32px;
        height: 32px;
        border-radius: 16px;
        padding: 3px 0 0 1.5px;
        top: 25px;
        left: 0;
    }

    .faq-accordion__answer small {
        font-size: 1.3rem;
    }
}
