/* ===== バナー ===== */
.faq-banner {
    background-color: #EDF9E7;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    padding: 40px 20px;
    margin-top: 75px; /* PC固定ヘッダー分 */
}

body.admin-bar .faq-banner {
    margin-top: 107px; /* 75px + 32px admin bar */
}

@media (max-width: 1200px) {
    .faq-banner {
        margin-top: 60px; /* SPヘッダー分 */
    }
    body.admin-bar .faq-banner {
        margin-top: 92px;
    }
}

.faq-banner-text {
    text-align: center;
}

.faq-banner-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #4BC314;
    letter-spacing: 0.15em;
    line-height: 1.1;
    margin-bottom: 6px;
}

.faq-banner-text p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #555;
    letter-spacing: 0.05em;
}

/* ===== QAセクション ===== */
.faq-qa-section {
    background-color: #fff;
    padding: 60px 20px;
}

.faq-qa-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.faq-lead {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.95rem;
    line-height: 1.9;
    text-align: center;
    color: #555;
    margin-bottom: 48px;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* ===== アコーディオン アイテム ===== */
.faq-item {
    margin: 0 0 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #c8e8b8;
    background-color: transparent;
}

/* ===== アコーディオン タイトル（クリック行） ===== */
.faq-item-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background-color: #EDF9E7;
    cursor: pointer;
    padding: 18px 24px;
    border: none;
    width: 100%;
    text-align: left;
    -webkit-user-select: none;
    user-select: none;
}

.faq-item-title h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin: 0;
    display: flex;
    align-items: center;
    flex: 1;
    line-height: 1.4;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
}

.faq-q-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #4BC314;
    line-height: 1;
    margin-right: 16px;
    flex-shrink: 0;
    background: none;
    padding: 0;
    border-radius: 0;
}

/* ===== アコーディオン コンテンツ（回答部分） ===== */
.faq-item-body {
    display: none;
    padding: 20px 24px;
    background-color: #fff;
    border-top: 1px solid #d0ecc4;
}

.faq-item-body p {
    display: flex;
    align-items: flex-start;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.85;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.03em;
}

.faq-a-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #4BC314;
    line-height: 1;
    margin-right: 16px;
    flex-shrink: 0;
    background: none;
    padding: 0;
    border-radius: 0;
    margin-top: -2px;
}

/* ===== シェブロンアイコン ===== */
.faq-chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid #4BC314;
    border-bottom: 2px solid #4BC314;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-top: -2px;
    display: inline-block;
}

.faq-item-title.is-open .faq-chevron {
    transform: rotate(-135deg);
}

/* ===== SP対応 ===== */
@media (max-width: 768px) {
    .faq-banner {
        min-height: 130px;
        padding: 30px 20px;
    }

    .faq-banner-text h1 {
        font-size: 2.5rem;
    }

    .faq-qa-section {
        padding: 36px 16px;
    }

    .faq-lead {
        font-size: 0.88rem;
        margin-bottom: 32px;
        text-align: left;
    }

    .faq-item-title {
        padding: 14px 16px;
    }

    .faq-item-title h2 {
        font-size: 0.95rem;
    }

    .faq-q-label,
    .faq-a-label {
        font-size: 1.5rem;
        margin-right: 12px;
    }

    .faq-item-body {
        padding: 16px;
    }

    .faq-item-body p {
        font-size: 0.9rem;
    }
}
