/* FAQページ */
.c-faq {
    padding: 100px 0;
    background-color: #E6E6E1;
}

.c-faq__inner {
    width: 895px;
    margin: 0 auto;
}


/* Q&Aリスト */
.c-faq__list {
    margin-top: 48px;
}

.c-faq__item {
}

.c-faq__item + .c-faq__item {
    margin-top: 32px;
}

.c-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 33px 28px 33px 44px;
    background-color: #939393;
    border: none;
    border-radius: 10px;
    text-align: left;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.c-faq__question-badge {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    font-size: 40px;
    font-weight: 700;
    border-radius: 50%;
    padding-bottom: 8px;
    color: #413F41;
}

.c-faq__question-text {
    width: 683px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 37px;
    letter-spacing: 0.08em;
    padding-left: 10px;
    position: relative;
    top: 3px;
}

.c-faq__question-icon {
    flex-shrink: 0;
    width: 23px;
    height: 23px;
    position: relative;
}

.c-faq__question-icon::before,
.c-faq__question-icon::after {
    content: '';
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: opacity 0.3s ease;
}

.c-faq__question-icon::after {
    transform: translateY(-50%) rotate(90deg);
}

.c-faq__item.is-active .c-faq__question-icon::after {
    opacity: 0;
}

.c-faq__question::after {
    content: '';
    width: 20px;
    height: 17px;
    position: absolute;
    bottom: -36px;
    left: 54px;
    background-image: url('/../../common/img/buy/ico_sankaku.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
}

.c-faq__item.is-active .c-faq__question::after {
    opacity: 1;
}

.c-faq__answer {
    display: none;
}

.c-faq__answer-inner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 35px;
    padding: 35px 40px 37px 44px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #707070;
}

.c-faq__answer-badge {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00BC82;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    border-radius: 50%;
    padding-bottom: 8px;
}

.c-faq__answer-body {
    flex-grow: 1;
}

.c-faq__answer-title {
    width: fit-content;
    color: #00BC82;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 37px;
    letter-spacing: 0.02em;
    padding-bottom: 12px;
    margin-bottom: 22px;
    border-bottom: 2px dashed #A7A7A7;
}

.c-faq__answer-text {
    font-size: 15px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.08em;
}

.c-faq__answer-imgs {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}

.c-faq__answer-img {
    width: calc(50% - 16px);
    overflow: hidden;
}
/* Q&Aリスト */


/* エピソードバナー */
.c-faq__episode {
    width: 672px;
    margin: 73px auto 0;
    padding: 30px 43px 36px;
    background-color: #FDFDE7;
    border: 3px solid #004C38;
    border-radius: 10px;
}

.c-faq__episode-label {
    text-align: center;
    color: #004C38;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.03em;
    margin-bottom: 10px;
}

.c-faq__episode-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-faq__episode-text {
    font-size: 17px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: 0;
}

.c-faq__episode-text .strong {
    font-weight: 700;
}

.c-faq__episode-img {
    flex-shrink: 0;
    width: 240px;
    height: auto;
}

.c-faq__episode-img img {
    object-fit: contain;
}

.c-faq__episode-btn {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 11px;
}

.c-faq__episode-btn i {
    width: 29px;
    height: 29px;
    position: absolute;
    top: 50%;
    right: 9px;
    transform: translateY(-50%);
    background-image: url('/../../common/img/buy/ico_arrow_wg.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
/* エピソードバナー */


@media (min-width: 769px) {
    .c-faq__question-badge,
    .c-faq__question-text,
    .c-faq__question-icon{
        transition: opacity 0.3s ease;
        opacity: 1;
    }

    .c-faq__episode {
        transition: opacity 0.3s ease;
        cursor: pointer;
    }

    .c-faq__episode:hover {
        opacity: 0.6;
    }

    .c-faq__episode-btn i {
        transition: transform 0.3s ease;
    }

    .c-faq__episode:hover .c-faq__episode-btn i {
        transform: translateY(-50%) translateX(5px);
    }

    .c-faq__question:hover .c-faq__question-badge,
    .c-faq__question:hover .c-faq__question-text,
    .c-faq__question:hover .c-faq__question-icon {
        opacity: 0.7;
    }

    .c-cta__btn,.c-cta__line {
        transition: opacity 0.3s ease;
    }

    .c-cta__btn:hover,.c-cta__line:hover {
        opacity: 0.7;
    }

    .c-cta__btn i {
        transition: transform 0.3s ease;
    }

    .c-cta__btn:hover i {
        transform: translateY(-50%) translateX(5px);
    }
}

@media (max-width: 768px) {
    .c-faq {
        padding: 60px 0;
    }
    
    .c-faq__inner {
        width: 100%;
        margin: 0 auto;
        padding: 0 24px;
    }
    
    
    /* Q&Aリスト */
    .c-faq__list {
        margin-top: 48px;
    }
    
    .c-faq__item {
    }
    
    .c-faq__item + .c-faq__item {
        margin-top: 28px;
    }
    
    .c-faq__question {
        padding: 13px 18px 16px 14px;
    }
    
    .c-faq__question-badge {
        width: 34px;
        height: 34px;
        font-size: 21px;
        padding-bottom: 2px;
    }
    
    .c-faq__question-text {
        width: 100%;
        font-size: 15px;
        line-height: 23px;
        letter-spacing: 0.03em;
        padding-left: 11px;
        padding-right: 5px;
        top: 0;
        position: static;
    }
    
    .c-faq__question-icon {
        flex-shrink: 0;
        width: 15px;
        height: 15px;
    }
    
    .c-faq__question-icon::before,
    .c-faq__question-icon::after {
        height: 2px;
    }
    
    .c-faq__question-icon::after {
    }
    
    .c-faq__item.is-active .c-faq__question-icon::after {
    }
    
    .c-faq__question::after {
        width: 20px;
        height: 17px;
        bottom: -24px;
        left: 24px;
    }

    .c-faq__answer {
        display: none;
    }

    .c-faq__answer-inner {
        gap: 11px;
        margin-top: 23px;
        padding: 14px 18px 15px 14px;
    }
    
    .c-faq__answer-badge {
        flex-shrink: 0;
        width: 34px;
        height: 34px;
        font-size: 21px;
        font-weight: 700;
        padding-bottom: 4px;
    }
    
    .c-faq__answer-body {
        flex-grow: 1;
    }
    
    .c-faq__answer-title {
        font-size: 15px;
        line-height: 23px;
        letter-spacing: 0.03em;
        padding-bottom: 10px;
        margin-bottom: 6px;
        text-align: justify;
    }
    
    .c-faq__answer-text {
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0;
        text-align: justify;
    }
    
    .c-faq__answer-imgs {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
    }
    
    .c-faq__answer-img {
        width: calc(50% - 2.5px);
        overflow: hidden;
    }
    /* Q&Aリスト */
    
    
    /* エピソードバナー */
    .c-faq__episode {
        width: 100%;
        margin: 55px auto 0;
        padding: 21px 22px 18px;
    }
    
    .c-faq__episode-label {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .c-faq__episode-content {
        flex-direction: column;
        justify-content: start;
        align-items: center;
    }
    
    .c-faq__episode-text {
        font-size: 14px;
        line-height: 24px;
    }
    
    .c-faq__episode-text .strong {
    }
    
    .c-faq__episode-img {
        flex-shrink: 0;
        width: 278px;
        height: auto;
        margin-top: -5px;
    }
    
    .c-faq__episode-img img {
        object-fit: contain;
    }
    
    .c-faq__episode-btn {
        margin-top: 0;
    }
    
    .c-faq__episode-btn i {
        width: 24px;
        height: 24px;
        right: 11px;
    }
    /* エピソードバナー */
}
/* FAQページ */
