/* ==========================================
   FAQ 共通
========================================== */

.faq-section {
    padding: 55px 0;
    text-align: center;
}

.faq-section .section-heading {
    margin-bottom: 28px;
}


/* ==========================================
   Hero
========================================== */

.faq-hero {
    padding-top: 70px;
    padding-bottom: 35px;
}

.faq-lead {
    margin-top: 22px;
    color: #666;
    line-height: 2.2;
}


/* ==========================================
   Introduction
========================================== */

.faq-introduction {
    padding-top: 35px;
    padding-bottom: 55px;
}

.faq-intro-text {
    max-width: 760px;
    margin: 0 auto;
}

.faq-intro-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 2.2;
}

.faq-intro-text p:last-child {
    margin-bottom: 0;
}


/* ==========================================
   FAQ List
========================================== */

.faq-list {
    padding-top: 35px;
    padding-bottom: 55px;
}

.accordion {
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
}

.accordion-item {
    border-top: 1px solid #e6d9bd;
}

.accordion-item:last-child {
    border-bottom: 1px solid #e6d9bd;
}


/* ==========================================
   Accordion Button
========================================== */

.accordion-button {
    position: relative;

    width: 100%;
    padding: 28px 64px 28px 22px;

    border: none;
    background: transparent;

    color: #5f5245;
    font-family: inherit;
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.04em;
    text-align: left;

    cursor: pointer;
    transition:
        color 0.3s ease,
        background-color 0.3s ease;
}

.accordion-button:hover {
    color: #a18446;
    background: rgba(248, 241, 223, 0.38);
}

.accordion-button:focus-visible {
    outline: 2px solid #b79a45;
    outline-offset: -2px;
}


/* 右側のプラス・マイナス */

.accordion-button::before,
.accordion-button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;

    width: 18px;
    height: 1px;

    background: #b79a45;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.accordion-button::after {
    transform:
        translateY(-50%)
        rotate(90deg);
}

.accordion-button[aria-expanded="true"]::after {
    transform:
        translateY(-50%)
        rotate(0deg);
}


/* ==========================================
   Accordion Panel
========================================== */

.accordion-panel {
    padding: 2px 70px 30px 42px;
}

.accordion-panel p {
    margin-bottom: 16px;
    color: #666;
    line-height: 2.1;
}

.accordion-panel p:last-child {
    margin-bottom: 0;
}

.accordion-panel[hidden] {
    display: none;
}


/* ==========================================
   Divider
========================================== */

.section-divider {
    width: 320px;
    height: 1px;
    margin: 45px auto 0;

    background: #d8c59a;
    opacity: 0.7;
}


/* ==========================================
   Closing
========================================== */

.closing-message {
    padding-top: 35px;
    padding-bottom: 80px;
}

.closing-inner {
    max-width: 700px;
    margin: 0 auto;
}

.closing-inner p {
    margin-bottom: 35px;
    color: #666;
    font-size: 1.05rem;
    line-height: 2.2;
}