/*
================================================
  いたばし保護馬部 — メインスタイルシート
================================================
  更新方法：
  - カラーを変えたい → :root の変数を変更
  - フォントを変えたい → --font-main の値を変更
  - ボタン色を変えたい → .btn-primary の background を変更
*/

/* ================================================
   1. デザイン変数（カラー・フォント・スペーシング）
================================================ */
:root {
    /* カラーパレット：参考サイト風の明るく温かいモダンなトーン */
    --color-primary: #386C50;
    /* 柔らかい森緑（メイン） */
    --color-primary-mid: #5EAD74;
    /* 中緑 */
    --color-accent: #E2725B;
    /* 温かみのあるテラコッタ（アクセント） */
    --color-accent-light: #F29E8E;
    /* ライトテラコッタ */
    --color-warm: #FAF8F5;
    /* 非常に明るいオフホワイト（背景1） */
    --color-warm-dark: #F0EBE1;
    /* ライトベージュ（背景2） */
    --color-white: #FFFFFF;
    --color-bg: #FFFFFF;
    /* 完全な白（ベース） */
    --color-bg-section: #F7F5F0;
    /* セクション背景 */
    --color-text: #333333;
    /* やや柔らかい黒（可読性） */
    --color-text-sub: #555555;
    /* サブテキスト */
    --color-text-light: #888888;
    /* 薄テキスト */
    --color-border: #E8E5DF;
    /* ボーダー */

    /* フォント：丸みがありモダンな印象に */
    --font-main: 'Zen Kaku Gothic New', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
    --font-serif: 'Shippori Mincho', 'Noto Serif JP', serif;

    /* 文字サイズ */
    --text-xs: 0.8rem;
    --text-sm: 0.9rem;
    --text-base: 1.05rem;
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;
    --text-2xl: 1.875rem;
    --text-3xl: 2.25rem;
    --text-4xl: 2.75rem;
    --text-5xl: 3.5rem;

    /* スペーシング（モダンで引き締まった印象に） */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* その他 */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1080px;
    /* 少しタイトにして読みやすく */
}


/* ================================================
   2. 基本スタイル
================================================ */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary);
}

ul,
ol {
    padding-left: var(--space-lg);
}

/* ================================================
   3. レイアウト共通
================================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-2xl) 0;
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-3xl) 0;
    }
}

.section--warm {
    background-color: var(--color-warm);
}

.section--bg {
    background-color: var(--color-bg-section);
}

.section--dark {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section__eyebrow {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
}

.section--dark .section__eyebrow {
    color: var(--color-accent-light);
}

.section__title {
    font-size: var(--text-3xl);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-primary);
    margin: 0 0 var(--space-sm);
}

.section--dark .section__title {
    color: var(--color-white);
}

.section__subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-sub);
    max-width: 600px;
    margin: 0 auto;
}

.section--dark .section__subtitle {
    color: rgba(255, 255, 255, 0.75);
}

/* グリッド */
.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ================================================
   4. ヘッダー & ナビゲーション
================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ロゴエリア */
.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo__icon {
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* 実際のロゴ画像用スタイル */
.site-logo__img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.site-logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.site-logo__name {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.02em;
}

.site-logo__sub {
    font-size: var(--text-xs);
    color: var(--color-text-sub);
    letter-spacing: 0.05em;
}

/* ナビゲーション */
.nav-main {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-main__list {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-main__link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    padding: var(--space-xs) 0;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
    white-space: nowrap;
}

.nav-main__link:hover,
.nav-main__link.active {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.nav-main__actions {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

/* ハンバーガーボタン（モバイル） */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 999;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ================================================
   5. ボタン
================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4em;
    padding: 0.7em 1.6em;
    font-family: var(--font-main);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    /* ========================================
     ★ ここを編集すると「寄付する」ボタンの色が変わります
  ======================================== */
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-1px);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-lg {
    padding: 0.9em 2.2em;
    font-size: var(--text-base);
}

.btn-sm {
    padding: 0.5em 1.1em;
    font-size: var(--text-xs);
}


/* ================================================
   6. ヒーローセクション
================================================ */
/* ================================================
   6. ヒーローセクション — スプリットレイアウト（左：テキスト / 右：写真）
================================================ */
.hero {
    position: relative;
    padding-top: 72px;
    /* ヘッダー高さ分 */
    min-height: 92vh;
    background: linear-gradient(160deg, #FDFAF6 0%, #F0F7F4 50%, #E8F4EE 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
    gap: 0;
}

.hero__bg,
.hero__bg-image,
.hero__overlay {
    display: none;
    /* 背景生成画像・オーバーレイを非表示 */
}

.hero__content {
    padding: var(--space-3xl) var(--space-2xl) var(--space-3xl) clamp(1.5rem, 5vw, 6rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__images {
    height: 92vh;
    overflow: hidden;
    border-radius: 0 0 0 var(--radius-xl);
}

.hero__images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    background: #E8F5EE;
    border: 1px solid #B8DFC8;
    border-radius: 100px;
    padding: 0.4em 1em;
    font-size: var(--text-sm);
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.hero__title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.25;
    color: #1A3A2A;
    margin: 0 0 var(--space-md);
    letter-spacing: -0.01em;
}

.hero__title span {
    color: var(--color-accent);
}

.hero__text {
    font-size: var(--text-base);
    color: var(--color-text-sub);
    max-width: 480px;
    margin: 0 0 var(--space-xl);
    line-height: 1.9;
}

.hero__actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* ヒーロー stats / image-wrap は非使用に */
.hero__stats,
.hero__stat,
.hero__stat-num,
.hero__stat-label,
.hero__image-wrap {
    display: none;
}


/* ================================================
   6.5. About Us
================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================================
   7. 活動ナンバーズ（実績帯）
================================================ */
.numbers-bar {
    background: var(--color-primary);
    padding: var(--space-xl) 0;
}

.numbers-bar__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.numbers-bar__item {
    text-align: center;
}

.numbers-bar__num {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
}

.numbers-bar__num span {
    font-size: var(--text-xl);
    font-weight: 400;
}

.numbers-bar__label {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.4em;
    letter-spacing: 0.08em;
}

.numbers-bar__divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
}


/* ================================================
   8. 活動内容カード
================================================ */
.activity-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}

.activity-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.activity-card__body {
    padding: var(--space-xl) var(--space-lg);
}

.activity-card__title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 var(--space-xs);
}

.activity-card__text {
    font-size: var(--text-sm);
    color: var(--color-text-sub);
    line-height: 1.8;
    margin: 0;
}


/* ================================================
   9. 保護馬プロフィールカード
================================================ */
.horse-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.horse-card__image {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.horse-card__image-placeholder {
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.horse-card:nth-child(1) .horse-card__image-placeholder {
    background: linear-gradient(135deg, #2D2D2D, #4A4A4A);
}

.horse-card:nth-child(2) .horse-card__image-placeholder {
    background: linear-gradient(135deg, #C9A96E, #A07C4A);
}

.horse-card__tag {
    display: inline-block;
    background: var(--color-warm);
    color: var(--color-primary);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.3em 0.8em;
    border-radius: 100px;
    margin-bottom: var(--space-xs);
}

.horse-card__body {
    padding: var(--space-lg);
    flex: 1;
}

.horse-card__name {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--color-primary);
    margin: 0 0 var(--space-xs);
}

.horse-card__name-en {
    font-size: var(--text-base);
    color: var(--color-text-light);
    font-weight: 400;
    margin-left: 0.5em;
}

.horse-card__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xs);
    margin: var(--space-sm) 0;
    font-size: var(--text-sm);
}

.horse-card__info-item {
    display: flex;
    flex-direction: column;
}

.horse-card__info-label {
    color: var(--color-text-light);
    font-size: var(--text-xs);
}

.horse-card__info-value {
    font-weight: 600;
    color: var(--color-text);
}

.horse-card__text {
    font-size: var(--text-sm);
    color: var(--color-text-sub);
    line-height: 1.8;
    margin: var(--space-sm) 0 0;
}


/* ニュース、寄付CTAなどの不要スタイルは削除されました */


/* ================================================
   13. ギャラリー
================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: var(--space-sm);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.gallery-item--wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--color-bg-section), var(--color-warm-dark));
    color: var(--color-text-light);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 58, 42, 0.0);
    transition: background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-item__overlay {
    background: rgba(26, 58, 42, 0.3);
}


/* ================================================
   14. フッター
================================================ */
.site-footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
    text-decoration: none;
}

.footer-logo__icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.footer-logo__name {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-white);
}

.footer-tagline {
    font-size: var(--text-sm);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.footer-contact {
    font-size: var(--text-sm);
}

.footer-contact p {
    margin: 0.4em 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: var(--color-white);
}

.footer-nav__title {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 var(--space-sm);
    letter-spacing: 0.06em;
}

.footer-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav__item {
    margin: 0.5em 0;
}

.footer-nav__link {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-nav__link:hover {
    color: var(--color-white);
}

.footer-sns {
    display: flex;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
}

.footer-sns__btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--color-white);
    font-size: var(--text-base);
    transition: background var(--transition);
}

.footer-sns__btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom__copy {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom__links {
    display: flex;
    gap: var(--space-md);
}

.footer-bottom__link {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-bottom__link:hover {
    color: rgba(255, 255, 255, 0.9);
}


/* ================================================
   15. ページ共通ヘッダー（サブページ用）
================================================ */
.page-hero {
    padding: calc(72px + var(--space-2xl)) 0 var(--space-2xl);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-mid) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero__deco {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.page-hero__deco--1 {
    top: -100px;
    left: -100px;
}

.page-hero__deco--2 {
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
}

.page-hero__eyebrow {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-accent-light);
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
}

.page-hero__title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-white);
    margin: 0 0 var(--space-sm);
}

.page-hero__text {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto;
}


/* ================================================
   16. パンくずリスト
================================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: var(--text-xs);
    color: var(--color-text-light);
    padding: var(--space-sm) 0;
    list-style: none;
    margin: 0;
}

.breadcrumb__item+.breadcrumb__item::before {
    content: '›';
    color: var(--color-border);
}

.breadcrumb__link {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color var(--transition);
}

.breadcrumb__link:hover {
    color: var(--color-accent);
}


/* ================================================
   17. カードコンポーネント（汎用）
================================================ */
.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card__body {
    padding: var(--space-lg);
}


/* ================================================
   18. FAQ
================================================ */
.faq-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-main);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-primary);
    transition: background var(--transition);
}

.faq-question::before {
    content: 'Q.';
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--color-accent);
    flex-shrink: 0;
}

.faq-question:hover {
    background: var(--color-bg);
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--color-text-light);
    flex-shrink: 0;
    transition: transform var(--transition);
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 var(--space-lg) var(--space-md);
    padding-left: calc(var(--space-lg) + 2.2em);
    font-size: var(--text-sm);
    color: var(--color-text-sub);
    line-height: 1.9;
    border-top: 1px solid var(--color-border);
}

.faq-item.open .faq-answer {
    display: block;
}


/* ================================================
   19. お問い合わせフォーム
================================================ */
.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5em;
}

.form-label .required {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    background: #E53E3E;
    color: white;
    padding: 0.1em 0.5em;
    border-radius: 100px;
    margin-left: 0.5em;
    vertical-align: middle;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.75em 1em;
    font-family: var(--font-main);
    font-size: var(--text-base);
    color: var(--color-text);
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(74, 140, 92, 0.15);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}


/* ================================================
   20. 寄付ページ専用
================================================ */
.donate-option {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.donate-option:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.donate-option__icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.donate-option__title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 var(--space-xs);
}

.donate-option__text {
    font-size: var(--text-sm);
    color: var(--color-text-sub);
    line-height: 1.8;
    margin: 0 0 var(--space-lg);
    flex: 1;
}

.usage-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.usage-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--text-sm);
}

.usage-item:last-child {
    border-bottom: none;
}

.usage-item__label {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-text);
}

.usage-item__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.usage-item__percent {
    font-weight: 700;
    color: var(--color-primary);
    font-size: var(--text-base);
}

.progress-bar-wrap {
    height: 8px;
    background: var(--color-bg-section);
    border-radius: 100px;
    overflow: hidden;
    margin-top: var(--space-xs);
}

.progress-bar {
    height: 100%;
    border-radius: 100px;
    transition: width 0.8s ease;
}


/* ================================================
   21. 代表者・スタッフ
================================================ */
.staff-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.staff-card__avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: var(--space-lg) auto var(--space-sm);
    background: var(--color-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.staff-card__body {
    padding: 0 var(--space-lg) var(--space-lg);
}

.staff-card__name {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 0.2em;
}

.staff-card__role {
    font-size: var(--text-sm);
    color: var(--color-accent);
    font-weight: 600;
    margin: 0 0 var(--space-sm);
}

.staff-card__text {
    font-size: var(--text-sm);
    color: var(--color-text-sub);
    line-height: 1.8;
    margin: 0;
}


/* ================================================
   22. タイムライン（活動年表）
================================================ */
.timeline {
    position: relative;
    padding-left: var(--space-xl);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    position: relative;
    padding-bottom: var(--space-xl);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--space-xl) - 5px);
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-accent);
    border: 2px solid var(--color-white);
    box-shadow: 0 0 0 2px var(--color-accent);
}

.timeline-item__date {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.3em;
}

.timeline-item__title {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 0.3em;
}

.timeline-item__text {
    font-size: var(--text-sm);
    color: var(--color-text-sub);
    margin: 0;
    line-height: 1.7;
}


/* ================================================
   23. アラート・インフォボックス
================================================ */
.info-box {
    background: #E8F5EC;
    border-left: 4px solid var(--color-accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-md) 0;
}

.info-box__title {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-primary-mid);
    margin: 0 0 0.3em;
}

.info-box p {
    font-size: var(--text-sm);
    color: var(--color-primary-mid);
    margin: 0;
    line-height: 1.7;
}


/* ================================================
   23. アクセス情報
================================================ */
.access-section {
    background-color: var(--color-bg-alt);
}

.access-container {
    max-width: 800px;
}

.access-address {
    text-align: center;
    font-size: var(--text-lg);
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.access-group {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.access-group__title {
    font-size: var(--text-md);
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--color-bg-alt);
}

.access-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.access-list li {
    margin-bottom: var(--space-sm);
    line-height: 1.8;
}

.access-list li:last-child {
    margin-bottom: 0;
}

.access-list strong {
    color: var(--color-primary-mid);
    display: inline-block;
    min-width: 8em;
}

.access-text {
    line-height: 1.8;
    margin: 0;
}

.access-note {
    display: block;
    margin-top: 0.5em;
    font-size: var(--text-sm);
    color: var(--color-text-sub);
}


/* ================================================
   24. ユーティリティ
================================================ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-sm {
    margin-top: var(--space-sm);
}

.mt-md {
    margin-top: var(--space-md);
}

.mt-lg {
    margin-top: var(--space-lg);
}

.mt-xl {
    margin-top: var(--space-xl);
}

.mb-sm {
    margin-bottom: var(--space-sm);
}

.mb-md {
    margin-bottom: var(--space-md);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ================================================
   25. レスポンシブ（モバイル対応）
================================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --text-3xl: 1.5rem;
        --text-4xl: 1.875rem;
        --text-5xl: 2.25rem;
        --space-3xl: 3.5rem;
    }

    /* ナビ */
    .nav-main__list {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-lg);
        z-index: 998;
        padding-top: 72px;
        /* ヘッダー分下げる */
    }

    .nav-main__list.open {
        display: flex;
    }

    .nav-main__link {
        font-size: var(--text-xl);
        /* 少し大きくして押しやすく */
        font-weight: 700;
        color: var(--color-primary);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-main__actions .btn {
        display: none;
    }

    /* ヒーロー：スマホでは画像を上に配置 */
    .hero {
        display: flex;
        flex-direction: column-reverse;
        min-height: auto;
        padding-top: 56px;
        /* モバイルヘッダーの高さに合わせる */
    }

    .hero__content {
        padding: var(--space-xl) var(--space-md) var(--space-2xl);
        align-items: center;
        text-align: center;
    }

    .hero__text-block {
        max-width: 100%;
        text-align: center;
        align-items: center;
        margin-bottom: var(--space-lg);
    }

    .hero__text {
        text-align: center;
        margin: 0 auto var(--space-lg);
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__images {
        height: auto;
        width: 100%;
        border-radius: 0;
    }

    .hero__images img {
        height: auto;
        width: 100%;
        object-fit: cover;
        aspect-ratio: 4 / 3;
    }

    .hero__stats {
        gap: var(--space-lg);
    }

    /* グリッド */
    .grid--2,
    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item--wide {
        grid-column: span 2;
    }

    /* フッター */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* ナンバーズバー */
    .numbers-bar__inner {
        gap: var(--space-md);
    }

    .numbers-bar__divider {
        display: none;
    }

    /* trust grid */
    .trust-grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta-section__title {
        font-size: var(--text-3xl);
    }

    /* ページヘッダー */
    .page-hero__title {
        font-size: var(--text-3xl);
    }

    /* タイムライン */
    .timeline {
        padding-left: var(--space-lg);
    }

    /* お知らせ */
    .news-item {
        flex-wrap: wrap;
        gap: var(--space-xs);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero__content {
        padding: var(--space-2xl) var(--space-md);
    }

    .hero__stats {
        flex-wrap: wrap;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item--wide {
        grid-column: span 1;
        aspect-ratio: 1 / 1;
    }

    .cta-section__actions {
        flex-direction: column;
        align-items: center;
    }
}


/* ================================================
   追加スタイル：ボランティア関連・SEO対応
================================================ */

/* ------------------------------------------------
   ボランティアボタン（緑）
------------------------------------------------ */
.btn-volunteer {
    background: #3A7D3A;
    color: var(--color-white);
    border-color: #3A7D3A;
}

.btn-volunteer:hover {
    background: #2D6130;
    border-color: #2D6130;
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ナビ用ボランティアボタン（小さめ・アウトライン） */
.btn-volunteer-nav {
    background: rgba(58, 125, 58, 0.08);
    color: #3A7D3A;
    border-color: #3A7D3A;
    border-width: 1.5px;
    font-size: var(--text-sm);
    padding: 0.55em 1.2em;
}

.btn-volunteer-nav:hover,
.btn-volunteer-nav.active {
    background: #3A7D3A;
    color: var(--color-white);
}

/* ------------------------------------------------
   ヒーローバッジ：移転告知（強調）
------------------------------------------------ */
.hero__badge--new {
    background: rgba(58, 125, 58, 0.25);
    border-color: rgba(100, 200, 100, 0.5);
    animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* ------------------------------------------------
   ニュースタグ：ボランティア・お知らせ
------------------------------------------------ */
.news-item__tag--volunteer {
    background: #E8F5E8;
    color: #3A7D3A;
}

.news-item__tag--info {
    background: #E3F0FB;
    color: #1565C0;
}

/* ------------------------------------------------
   ボランティアCTAセクション（トップページ）
------------------------------------------------ */
.volunteer-cta-section {
    position: relative;
    background: linear-gradient(135deg, #EDF7ED 0%, #D8EDD8 60%, #C5E3C5 100%);
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

.volunteer-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(58, 125, 58, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse at 80% 30%, rgba(58, 125, 58, 0.05) 0%, transparent 70%);
}

.volunteer-cta-section__deco {
    position: absolute;
    font-size: 8rem;
    opacity: 0.06;
    pointer-events: none;
}

.volunteer-cta-section__deco--left {
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
}

.volunteer-cta-section__deco--right {
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
}

.volunteer-cta-section__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.volunteer-cta-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    background: #3A7D3A;
    color: var(--color-white);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.4em 1.2em;
    border-radius: 100px;
    margin-bottom: var(--space-md);
}

.volunteer-cta-section__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #1A3A1A;
    line-height: 1.3;
    margin: 0 0 var(--space-md);
}

.volunteer-cta-section__text {
    font-size: var(--text-lg);
    color: #3A5A3A;
    line-height: 1.9;
    margin: 0 0 var(--space-lg);
}

.volunteer-cta-section__list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl);
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xs) var(--space-lg);
    text-align: left;
}

.volunteer-cta-section__list-item {
    display: flex;
    align-items: center;
    gap: 0.6em;
    font-size: var(--text-base);
    color: #2D4A2D;
    font-weight: 500;
}

.volunteer-cta-section__list-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.volunteer-cta-section__actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
}

.volunteer-cta-section__note {
    font-size: var(--text-sm);
    color: #3A5A3A;
    margin: 0;
}

.volunteer-cta-section__note a {
    color: #3A7D3A;
    font-weight: 600;
    text-decoration: underline;
}

/* ------------------------------------------------
   ページヒーロー：ボランティア版
------------------------------------------------ */
.page-hero--volunteer {
    background: linear-gradient(135deg, #1A3A1A 0%, #2D6130 60%, #3A7D3A 100%);
}

.page-hero--volunteer .page-hero__eyebrow {
    color: #90D890;
}

/* ------------------------------------------------
   ボランティアウェルカムメッセージ
------------------------------------------------ */
.volunteer-welcome {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border-top: 4px solid #3A7D3A;
}

.volunteer-welcome__icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.volunteer-welcome__title {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: #1A3A1A;
    line-height: 1.4;
    margin: 0 0 var(--space-md);
}

.volunteer-welcome__text {
    font-size: var(--text-lg);
    color: var(--color-text-sub);
    line-height: 1.9;
    max-width: 640px;
    margin: 0 auto var(--space-sm);
}

/* ------------------------------------------------
   ボランティア活動カード（volunteer.html用）
------------------------------------------------ */
.volunteer-activity-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
    border-top: 3px solid #3A7D3A;
}

.volunteer-activity-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.volunteer-activity-card__icon {
    background: linear-gradient(135deg, #E8F5E8, #C5E3C5);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.volunteer-activity-card__body {
    padding: var(--space-lg);
}

.volunteer-activity-card__title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: #1A3A1A;
    margin: 0 0 var(--space-xs);
}

.volunteer-activity-card__text {
    font-size: var(--text-sm);
    color: var(--color-text-sub);
    line-height: 1.8;
    margin: 0 0 var(--space-sm);
}

.volunteer-activity-card__tags {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.volunteer-tag {
    display: inline-block;
    background: #E8F5E8;
    color: #3A7D3A;
    font-size: var(--text-xs);
    font-weight: 700;
    padding: 0.25em 0.75em;
    border-radius: 100px;
}

/* ------------------------------------------------
   場所カード
------------------------------------------------ */
.location-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    border-left: 4px solid #3A7D3A;
}

.location-card__name {
    font-size: var(--text-xl);
    font-weight: 700;
    color: #1A3A1A;
    display: flex;
    align-items: center;
    gap: 0.4em;
    margin-bottom: var(--space-sm);
}

.location-card__icon {
    font-size: 1.3rem;
}

.location-card__address {
    font-size: var(--text-base);
    color: var(--color-text);
    line-height: 1.9;
    font-style: normal;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.location-card__link {
    color: #3A7D3A;
    font-weight: 600;
}

.location-card__access {
    font-size: var(--text-sm);
    color: var(--color-text-sub);
    line-height: 1.8;
}

.location-card__access strong {
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.3em;
}

/* ------------------------------------------------
   スケジュールリスト
------------------------------------------------ */
.schedule-list {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.schedule-item {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item__label {
    font-size: var(--text-sm);
    font-weight: 700;
    color: #3A7D3A;
    min-width: 90px;
    flex-shrink: 0;
}

.schedule-item__value {
    font-size: var(--text-sm);
    color: var(--color-text);
    line-height: 1.6;
}

/* ------------------------------------------------
   参加の流れ（ステップ）
------------------------------------------------ */
.flow-steps {
    max-width: 640px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid #3A7D3A;
}

.flow-step__number {
    width: 44px;
    height: 44px;
    background: #3A7D3A;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    font-weight: 800;
    flex-shrink: 0;
}

.flow-step__title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: #1A3A1A;
    margin: 0 0 0.3em;
}

.flow-step__text {
    font-size: var(--text-sm);
    color: var(--color-text-sub);
    line-height: 1.7;
    margin: 0;
}

.flow-step__arrow {
    text-align: center;
    color: #3A7D3A;
    font-size: 1.5rem;
    padding: 0.5rem 0;
}

/* ------------------------------------------------
   FAQアコーディオン（details/summary）
------------------------------------------------ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-details {
    cursor: pointer;
}

.faq-details__question {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    font-size: var(--text-base);
    font-weight: 600;
    color: #1A3A1A;
    list-style: none;
    transition: background var(--transition);
}

.faq-details__question::-webkit-details-marker {
    display: none;
}

.faq-details[open] .faq-details__question {
    background: #F0FAF0;
    border-bottom: 1px solid var(--color-border);
}

.faq-details__q-icon {
    width: 28px;
    height: 28px;
    background: #3A7D3A;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: 800;
    flex-shrink: 0;
    line-height: 1;
}

.faq-details__answer {
    padding: var(--space-md) var(--space-lg) var(--space-md) calc(var(--space-lg) + 44px);
}

.faq-details__answer p {
    font-size: var(--text-sm);
    color: var(--color-text-sub);
    line-height: 1.9;
    margin: 0;
}

/* ------------------------------------------------
   ボランティアページ下部CTA
------------------------------------------------ */
.volunteer-page-cta {
    background: linear-gradient(135deg, #1A3A1A 0%, #2D6130 100%);
    padding: var(--space-3xl) 0;
    text-align: center;
}

.volunteer-page-cta__inner {
    max-width: 640px;
    margin: 0 auto;
}

.volunteer-page-cta__emoji {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    letter-spacing: 0.5em;
}

.volunteer-page-cta__title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.4;
    margin: 0 0 var(--space-md);
}

.volunteer-page-cta__text {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    margin: 0 0 var(--space-xl);
}

/* ================================================
   レスポンシブ追加（ボランティア関連）
================================================ */
@media (max-width: 768px) {

    /* ナビのボランティアボタン文字短縮 */
    .btn-volunteer-nav {
        padding: 0.5em 0.9em;
    }

    /* ボランティアCTAリスト：1カラム */
    .volunteer-cta-section__list {
        grid-template-columns: 1fr;
    }

    /* 場所＋スケジュール：縦並び */
    .location-schedule-grid {
        grid-template-columns: 1fr;
    }

    /* ボランティアページヒーローのgridを縦並び */
    .volunteer-hero-double {
        grid-template-columns: 1fr;
    }

    /* FAQ詳細インデント調整 */
    .faq-details__answer {
        padding-left: var(--space-lg);
    }

    /* ナビアクション：ボランティアボタンを小さく */
    .nav-main__actions .btn-volunteer-nav {
        font-size: 0.75rem;
        padding: 0.45em 0.8em;
    }
}


/* ================================================
   19. 追加統合セクション（FAQ / Volunteer CTA内の一部）
================================================ */

/* FAQアコーディオン (details/summary用) */
.faq-details {
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    margin-bottom: var(--space-sm);
    overflow: hidden;
}

.faq-details__question {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    list-style: none;
    /* デフォルトの三角を消す */
    position: relative;
}

.faq-details__question::-webkit-details-marker {
    display: none;
}

.faq-details__question::after {
    content: '+';
    position: absolute;
    right: var(--space-lg);
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: transform var(--transition);
}

.faq-details[open] .faq-details__question::after {
    transform: rotate(45deg);
}

.faq-details__q-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
}

.faq-details__answer {
    padding: 0 var(--space-lg) var(--space-md);
    padding-left: calc(var(--space-lg) + 32px + var(--space-md));
    font-size: var(--text-sm);
    color: var(--color-text-sub);
    line-height: 1.8;
}

.faq-details__answer p {
    margin: 0;
}

/* About / volunteer */
.volunteer-cta-section__list {
    list-style: none;
    padding: 0;
    margin: 0 auto var(--space-lg);
    max-width: 600px;
    text-align: left;
}

.volunteer-cta-section__list-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xs);
    font-size: var(--text-base);
    color: var(--color-text-sub);
}

.volunteer-cta-section__list-icon {
    font-size: 1.2rem;
}