@charset "UTF-8";
@import url("common.css");

/* =============================================================================
FAQ Page
========================================================================== */

.lower-hero--faq .lower-hero__panel {
    background: url("../img/faq/bg-title-guide.jpg") center / cover no-repeat;
}

.faq-list {
    display: grid;
    gap: 28px;
    width: min(920px, calc(100% - 120px));
    margin: 0 auto;
}

.faq-item {
    padding: 26px 30px;
    border: 1px solid #d98aae;
    border-radius: 8px;
    background: #fff;
}

.faq-item__question {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    color: #d45f93;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.06em;
}

.faq-item__question::before {
    content: "Q";
    flex: 0 0 auto;
    color: #d45f93;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.1;
}

.faq-item__answer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed #d8a5bf;
    color: #333;
    font-size: 1.25rem;
    line-height: 2;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 981px) {
    .lower-hero--faq .lower-hero__panel {
        background-image: url("../img/faq/bg-title-guide-sp.jpg");
    }

    .faq-list {
        gap: 18px;
        width: auto;
        margin-right: 5vw;
        margin-left: 5vw;
    }

    .faq-item {
        padding: 20px 16px;
        border-radius: 6px;
    }

    .faq-item__question {
        gap: 10px;
        font-size: 1.35rem;
    }

    .faq-item__question::before {
        font-size: 2rem;
    }

    .faq-item__answer {
        margin-top: 12px;
        padding-top: 12px;
        font-size: 1.15rem;
        line-height: 1.9;
    }
}
