/* =============================================================
   fukumachi-basic / style.css
   ============================================================= */
/* ヘッダー全体の設計 */
.main-header {
    background-color: #ffffff;
    border-bottom: 2px solid #002B5B; /* チームカラー：ネイビー */
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ロゴエリア */
.site-title { font-size: 1.4rem; margin: 0; font-weight: 700; }
.site-title a { color: #002B5B; text-decoration: none; }
.site-description { font-size: 0.7rem; color: #666; margin: 0; }

/* ナビゲーション */
.header-right { display: flex; align-items: center; gap: 40px; }
.primary-menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}
.primary-menu-list li a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}
.primary-menu-list li a:hover { color: #C19A6B; } /* チームカラー：ゴールド */

/* CTAボタン */
.cta-link {
    background-color: #002B5B;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}
.cta-link:hover { background-color: #C19A6B; }

/* スマホ対応の簡易設定 */
@media (max-width: 992px) {
    .header-right { display: none; } /* 本来はここでハンバーガーメニューに切り替え */
}

.main-footer {
    background-color: #002B5B; /* ネイビー */
    color: #fff;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-logo { font-size: 1.5rem; margin-bottom: 10px; }
.footer-tagline { color: #C19A6B; font-weight: bold; margin-bottom: 15px; }
.footer-description { line-height: 1.6; opacity: 0.8; }

.footer-heading {
    font-weight: bold;
    border-left: 3px solid #C19A6B;
    padding-left: 10px;
    margin-bottom: 20px;
}

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

.footer-menu-list li { margin-bottom: 10px; }
.footer-menu-list li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.footer-menu-list li a:hover { opacity: 1; color: #C19A6B; }

.footer-cta {
    display: inline-block;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.3s;
}
.footer-cta:hover { background: #fff; color: #002B5B; }

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.6;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-heading { border-left: none; padding-left: 0; }
}


/* ヒーローセクション全体の設計 */
.k-sanbo-hero {
    position: relative;
    /* 新しい画像を背景に設定 */
    background-image: url('https://k-sanbo.jp/wp-content/uploads/2026/04/top-hero01-scaled.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* 先進性を演出するパララックス効果（スマホ等では無効化推奨） */
    background-attachment: fixed; 
    color: #fff;
    padding: 160px 20px; /* 画像の6人が見えるよう、上下の余白を広く */
    text-align: center;
    overflow: hidden;
}

/* 画像の上に重ねる暗いオーバーレイ（テキストの可読性確保） */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 43, 91, 0.5); /* チームカラーのネイビーを半透明に */
    z-index: 1;
}

/* コンテンツ（テキスト・ボタン）のエリァ */
.hero-content {
    position: relative;
    z-index: 2; /* オーバーレイより上に表示 */
    max-width: 800px;
    margin: 0 auto;
}

.hero-content .sub-copy {
    color: #C19A6B; /* チームカラー：ゴールド */
    font-weight: bold;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin: 0 0 20px;
    letter-spacing: 0.1em;
    font-weight: 700;
    
    /* 1. 【改修】文字の色をより「明るいゴールド」のグラデーションに */
    background: linear-gradient(
        to bottom,
#fbe7b2 0%,   /* 明るいシャンパンゴールド */
#ffd513 40%,  /* 輝度の高いオールドゴールド */
#f1d64f 60%,  /* ゴールドの深み（暗部も明るく） */
#fbe800 100%  /* 黄金の光沢 */
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    
    /* 2. 【改修】文字マスク内に光を走らせるための設定 */
    position: relative;
    display: inline-block; /* マスク範囲を文字に限定 */
}

/* 光の筋（文字の内側だけを走る） */
.hero-content h1::after {
    content: "経営参謀パートナーズ"; /* 文字を重ねる */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* 3. 【新設】光の筋を定義（鋭い白銀の光） */
    background: linear-gradient(
        110deg,
transparent 30%,
rgba(255, 255, 164, 0.2) 48%,
rgba(255, 255, 164, 0.9) 50%,
rgba(255, 255, 164, 0.2) 53%,
transparent 50%
    );
    
    background-size: 200% auto; /* 光を移動させるための余白 */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    
    /* アニメーション：3秒に1回、文字の上を駆け抜ける */
    animation: shine-left-to-right 4s infinite linear;
}

/* 4. 【改修】文字に奥行きを出すためのドロップシャドウ（親要素か別途配置推奨） */
.hero-content {
    /* ネイビー背景に映えるよう、影を少し広めに、しかし透明度は低く
    text-shadow: 0px 4px 5px rgba(0, 0, 0, 0.1); */
}

@keyframes shine-left-to-right {
    0% {
        background-position: 100% 0;
    }
    40% {
        background-position: 100% 0;
    }
    60% {
        background-position: -100% 0;
    }	
    100% {
        background-position: -100% 0;
    }
}



.hero-content .main-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* 共通ボタン（画像内の暖色に合わせた調整） */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s;
    border-radius: 2px;
}

/* プライマリーボタン（ゴールド） */
.btn-primary {
    background-color: #C19A6B;
    color: #fff;
    border: 2px solid #C19A6B;
}
.btn-primary:hover {
    background-color: transparent;
    color: #C19A6B;
}

/* アウトラインボタン（白） */
.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}
.btn-outline:hover {
    background-color: #fff;
    color: #002B5B; /* ホバー時はネイビーに */
}

/* スマホ対応（レスポンシブ） */
@media (max-width: 768px) {
    .k-sanbo-hero {
        padding: 100px 20px;
        background-attachment: scroll; /* スマホではパララックスを解除（負荷軽減） */
    }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content .main-lead { font-size: 1rem; margin-bottom: 30px; }
    .hero-buttons { flex-direction: column; gap: 10px; }
    .btn { width: 100%; padding: 15px; }
}
/* 専門家グリッド */
.expert-section { padding: 80px 20px; background: #f4f7f9; }
.expert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.expert-card {
    background: #fff;
    padding: 30px;
    border-top: 5px solid #002B5B;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.expert-role { color: #C19A6B; font-size: 0.8rem; font-weight: bold; }

/* 共通ボタン */
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    margin: 10px;
}
.btn-primary { background: #C19A6B; color: #fff; }
.btn-outline { border: 2px solid #fff; color: #fff; }


/* ===================================================
   6人のスペシャリスト（expert-section）
=================================================== */

/* セクション全体の背景と余白 */
.k-sanbo-experts {
    background-color: #f4f7f9; /* 薄いグレーで重厚感を演出 */
    padding: 100px 0; /* 上下に広い余白 */
}

/* コンテナ幅の調整 */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* セクションタイトル */
.section-title{
    text-align: center;
    font-size: 2.5rem;
color: #002B5B;
    margin-bottom: 60px;
    font-weight: 700;
    letter-spacing: 0.1em;
	line-height:1.4;
    position: relative;
    padding-bottom: 15px;
}
/* セクションタイトル */
.section-title2 {
    text-align: center;
    font-size: 2.5rem;
color: #FFF;
    margin-bottom: 60px;
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 30px;
}
/* タイトルの下の装飾ライン（ゴールド） */
.section-title2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #C19A6B; /* チームカラー：ゴールド */
}

/* グリッドレイアウト（PC用：3カラム） */
.expert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 均等な3カラム */
    gap: 30px; /* カード間の余白 */
}

/* ===================================================
   専門家カード（expert-card）
=================================================== */
.expert-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 2px; /* 直角に近いモダンな角 */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* 軽い影で浮遊感を演出 */
    transition: all 0.4s ease; /* ホバー時のアニメーション */
    position: relative;
    overflow: hidden;
    border: 1px solid #eee; /* 薄い枠線 */
    display: flex;
    flex-direction: column;
}

/* ホバー時の効果：ゴールドの枠線と影を強調 */
.expert-card:hover {
    transform: translateY(-5px); /* 少し上に浮かせる */
    box-shadow: 0 15px 40px rgba(193, 154, 107, 0.15); /* ゴールド系の影 */
    border-color: #C19A6B;
}
/* ホバー時にゴールドのラインが上から走る効果 */
.expert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #C19A6B;
    transform: scaleX(0); /* 最初は非表示 */
    transition: transform 0.4s ease;
}
.expert-card:hover::before {
    transform: scaleX(1); /* ホバー時に表示 */
}

/* 専門家の役割（ゴールド） */
.expert-role {
    display: inline-block;
    color: #C19A6B;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    text-transform: uppercase; /* 英字の場合は大文字に */
}

/* 名前（ネイビー） */
.expert-card h3 {
    font-size: 1.6rem;
    color: #002B5B;
    margin: 0 0 20px;
    font-weight: 700;
}

/* 説明文（グレー） */
.expert-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
    flex-grow: 1; /* 残りのスペースを埋める */
}

/* ===================================================
   レスポンシブ対応
=================================================== */

/* タブレット用（max-width: 992px）：2カラム */
@media (max-width: 992px) {
    .expert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-title { font-size: 2rem; }
}

/* スマホ用（max-width: 768px）：1カラム */
@media (max-width: 768px) {
    .k-sanbo-experts { padding: 60px 0; }
    .expert-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .expert-card { padding: 30px; }
    .expert-card h3 { font-size: 1.4rem; }
}

/* MVVセクション */
.mvv-section { padding: 100px 0; background: #fff; text-align: center; }
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 50px; }
.mvv-item h3 { color: #C19A6B; font-size: 1.2rem; margin-bottom: 10px; }
.mvv-lead { font-weight: bold; font-size: 1.4rem; color: #002B5B; margin-bottom: 20px; }

/* 課題解決マップ */
.solution-section { padding: 100px 0; background: #FFF; color: #fff; }
.solution-map-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.solution-card { background: #224e7f; padding: 40px; border-left: 4px solid #C19A6B; }
.problem-tag { font-size: 0.8rem; color: #C19A6B; font-weight: bold; margin-bottom: 15px; }
.solution-card h4 { font-size: 1.3rem; margin-bottom: 20px; line-height: 1.4; }
.solution-link { color: #C19A6B; text-decoration: none; font-weight: bold; display: inline-block; margin-top: 20px; }

/* 縦並びMVVセクション */
.mvv-section-vertical {
    padding: 120px 0;
    background-color: #fff;
}

.mvv-list {
    max-width: 900px; /* 読みやすい幅に制限 */
    margin: 60px auto 0;
}

.mvv-block {
    display: flex;
    margin-bottom: 80px; /* ブロック間の余白 */
    align-items: flex-start;
}

.mvv-block:last-child {
    margin-bottom: 0;
}

/* ラベル（MISSION等）の装飾 */
.mvv-label {
    flex: 0 0 150px; /* 固定幅 */
    font-size: 1.1rem;
    font-weight: bold;
    color: #C19A6B; /* ゴールド */
    letter-spacing: 0.2em;
    padding-top: 5px;
}

.mvv-content {
    flex: 1;
    padding-left: 40px;
    border-left: 1px solid #eee; /* 視覚的な区切り */
}

/* 長めのリード文 */
.mvv-lead {
    font-size: 1.6rem;
    color: #002B5B; /* ネイビー */
    margin: 0 0 25px;
    line-height: 1.5; /* 行間の調整 */
    font-weight: 700;
}

/* 説明文 */
.mvv-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 2.0; /* 読みやすさを重視した広い行間 */
    letter-spacing: 0.03em;
    margin: 0;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .mvv-block {
        flex-direction: column;
        margin-bottom: 60px;
    }
    .mvv-label {
        margin-bottom: 15px;
        padding-top: 0;
    }
    .mvv-content {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    .mvv-lead {
        font-size: 1.3rem;
    }
}
.strategic-section {
    background-color: #002B5B; /* ネイビー */
    color: #fff;
    padding: 120px 0;
}
.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.8;
}
/* セクション全体のコンテナ */
.strategic-grid {
    display: flex;
    justify-content: center;
    align-items: stretch; /* カードの高さを自動で揃える */
    gap: 30px;
    padding: 40px 0;
}

/* 共通カードスタイル */
.strategic-card {
    flex: 1;
    background: rgba(0, 43, 91, 0.6); /* 深いネイビーで透過感 */
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px 40px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    color: #fff;
    text-align: left;
}

/* 上部のゴールドの横線（アクセント） */
.strategic-card::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    width: 30px;
    height: 2px;
    background-color: #C19A6B; /* ゴールド */
}

/* 中央の強調カード（デジタルの羅針盤） */
.card-highlight {
    border: 1px solid #C19A6B;
    background: rgba(193, 154, 107, 0.08); /* ほのかにゴールドの光を混ぜる */
    transform: translateY(-10px); /* 少し浮かせる */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(193, 154, 107, 0.2); /* 外側に柔らかな光 */
    z-index: 2;
}

/* タイトル部分 */
.strategic-card h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 30px 0 15px;
    letter-spacing: 0.05em;
    font-weight: 700;
}

/* リード文（ゴールド強調） */
.card-lead {
    display: block;
    color: #C19A6B;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.4;
}

/* 説明文（テキスト可読性アップ） */
.card-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.03em;
}

/* ホバー時の変化（中央以外） */
.strategic-card:not(.card-highlight):hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(0, 43, 91, 0.8);
}

/* スマホ対応：縦並びへ */
@media (max-width: 992px) {
    .strategic-grid {
        flex-direction: column;
        align-items: center;
    }
    .strategic-card {
        width: 100%;
        max-width: 500px;
    }
    .card-highlight {
        transform: scale(1.02);
        margin: 20px 0;
    }
}
/* 中央のカード（進化）を少し強調 */
.card-highlight {
    transform: scale(1.05);
    background: rgba(255,255,255,0.05);
    border-color: rgba(193, 154, 107, 0.5);
}

.navigation-theme {
    background-color: #002B5B;
    background-image: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02) 0%, transparent 80%); /* ほのかな光 */
    padding: 140px 0;
    color: #fff;
    position: relative;
}

.navigation-intro {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.8rem;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
    font-weight: 700;
}

.section-lead {
    font-size: 1.2rem;
	text-align:center;
    line-height: 2;
    opacity: 0.85;
}

/* カードデザインの微調整 */
.strategic-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(5px); /* 洗練された透過感 */
    border: 1px solid rgba(193, 154, 107, 0.2);
    padding: 60px 40px;
}

.card-highlight {
    border: 1px solid #C19A6B;
    background: rgba(193, 154, 107, 0.05);
}

.scale-up-section {
    padding: 120px 0;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}
.gov-badge {
    display: inline-block;
    background: #002B5B;
    color: #fff;
    font-size: 0.75rem;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}
.scale-up-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}
.scale-card {
    background: #fff;
    padding: 50px 30px;
    border: 1px solid #e0e0e0;
    text-align: center;
}
.scale-card.highlight {
    border: 2px solid #C19A6B; /* ゴールドで強調 */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.scale-card h3 {
    color: #002B5B;
    font-size: 1.25rem;
    margin-bottom: 20px;
}
.investment-section {
    padding: 120px 0;
    background-color: #fff; /* 白背景で透明感を出す */
    color: #333;
}
.investment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}
.investment-card {
    padding: 50px 35px;
    border-bottom: 5px solid #eee;
    transition: all 0.4s ease;
}
.inv-tag {
    color: #C19A6B;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}
.investment-card h3 {
    color: #002B5B;
	line-height: 1.4;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}
.investment-card p {
    line-height: 1.8;
    font-size: 0.95rem;
    color: #666;
}
.inv-highlight {
    border-color: #C19A6B; /* 中央を強調 */
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.investment-card:hover {
    transform: translateY(-10px);
    border-color: #002B5B;
}

/* 安心感バッジのグリッド */
.consult-safety-net {
    max-width: 1100px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.safety-item {
    text-align: center;
}

.safety-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(193, 154, 107, 0.3));
}

.safety-item h4 {
    color: #C19A6B; /* ゴールド */
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.safety-item p {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.8;
}

/* 黄金ボタン内のサブテキスト */
.btn-sub {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

/* フォーム情報のテキスト調整 */
.form-info {
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .consult-safety-net {
        padding: 30px 20px;
    }
}

.form-security-notice {
    text-align: center;
}

.why-aim-section {
    padding: 120px 0;
    background-color: #002B5B; /* ネイビー */
    position: relative;
    overflow: hidden;
}

/* 背景にうっすら「AIM」の文字をデコレーション */
.why-aim-section::before {
    content: 'AIM';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    z-index: 0;
}

.aim-content-box {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.aim-tag {
    color: #C19A6B;
    font-weight: 800;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 20px;
}

.aim-lead {
    font-size: 1.8rem;
    color: #fbe7b2; /* 明るいゴールド */
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.4;
}

.aim-text {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 4px;
    border-left: 2px solid #C19A6B;
}

.aim-text p {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.aim-closing {
    font-weight: bold;
    color: #C19A6B;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .aim-text { padding: 30px; }
    .aim-lead { font-size: 1.4rem; }
}

/* =============================================================
   FAQ SECTION (アコーディオン動作)
   ============================================================= */

/* セクション全体の背景と余白 */
.faq-section {
    padding: 100px 0;
    background-color: #f9f9f9; /* 白背景のセクションと区別するための薄いグレー */
}

/* アコーディオンのコンテナ */
.faq-accordion {
    max-width: 850px;
    margin: 60px auto 0;
    text-align: left;
}

/* 各質問のブロック */
.faq-item {
    background-color: #ffffff;
    margin-bottom: 15px;
    border: 1px solid #eeeeee;
    transition: all 0.3s ease;
}

/* 質問エリア（クリックできる部分） */
.faq-question {
    padding: 25px 30px;
    font-weight: bold;
    color: #002B5B; /* ネイビー */
    cursor: pointer;
    position: relative;
    padding-right: 60px; /* アイコン用のスペース */
    transition: background-color 0.3s;
    user-select: none; /* テキスト選択を防ぐ */
}

.faq-question:hover {
    background-color: #fdfaf3; /* ホバー時にうっすらゴールド寄りの色に */
}

/* 黄金の「+」アイコン */
.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: #C19A6B; /* ゴールド */
    transition: transform 0.3s, color 0.3s;
    font-weight: normal;
}

/* 回答エリア（初期状態：高さを0にして隠す） */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 30px; /* 左右の余白だけ維持 */
    color: #555555;
    line-height: 1.8;
    font-size: 0.95rem;
    transition: max-height 0.4s ease, opacity 0.4s, padding 0.4s;
    background-color: #ffffff;
}

/* ------------------------------------------
   アクティブ時（is-active クラスが付与された時）
------------------------------------------ */

/* 質問エリアの背景色を変更 */
.faq-item.is-active .faq-question {
    background-color: #fdfaf3;
    border-bottom: 1px solid #f0f0f0;
}

/* アイコンを回転させて「×」のように見せる */
.faq-item.is-active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
    color: #002B5B;
}

/* 回答を表示（高さを制限解除し、不透明にする） */
.faq-item.is-active .faq-answer {
    max-height: 1000px; /* 十分な高さを確保 */
    opacity: 1;
    padding: 20px 30px 30px; /* 上下の余白を広げて表示 */
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    .faq-question {
        padding: 20px;
        font-size: 0.95rem;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.is-active .faq-answer {
        padding: 10px 20px 20px;
    }
}

.whitepaper-section {
padding: 60px 0;
    background: #041a37;
    border-top: 1px solid rgba(193, 154, 107, 0.3);
}

.wp-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 0px;
    text-align: center;
}

.wp-badge {
    display: inline-block;
    background: #C19A6B;
    color: #fff;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.wp-box h3 {
    font-size: 1.8rem;
    color: #fbe7b2;
    margin-bottom: 20px;
}

.wp-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 30px;
}

.btn-gold-wp {
    background: #C19A6B;
    color: #fff;
    padding: 20px 50px;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
}

.wp-sub-text {
    margin-top: 15px;
    font-size: 0.8rem;
    opacity: 0.7;
    color: #fff;
}



        /* ===== グリッド ===== */
        .expert-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        @media (max-width: 768px) {
            .expert-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
        }
        @media (max-width: 480px) {
            .expert-grid { grid-template-columns: 1fr; }
        }

        /* ===== カード ===== */
        .expert-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            position: relative;
            padding: 20px 18px 20px;
        }
        .expert-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.25);
        }
        .card-hover-overlay {
            position: absolute;
            inset: 0;
            border-radius: 12px;
            background: rgba(20, 60, 120, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.25s ease;
            pointer-events: none;
        }
        .expert-card:hover .card-hover-overlay {
            opacity: 1;
        }
        .card-hover-overlay span {
            color: #fff;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            border: 1.5px solid rgba(255,255,255,0.75);
            padding: 10px 26px;
            border-radius: 24px;
        }

        /* 上段：写真＋役職・氏名 */
        .card-top {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 14px;
            position: relative;
        }
        .card-photo-wrap {
            flex-shrink: 0;
            position: relative;
        }
        .card-photo {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            object-fit: cover;
            display: block;
            border: 2px solid #dde6f5;
            background: #eee;
        }
        .card-info { flex: 1; min-width: 0; }
        .expert-role {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            color: #1a5cbf;
            background: #e8f0ff;
            padding: 2px 8px;
            border-radius: 4px;
            margin-bottom: 5px;
            letter-spacing: 0.04em;
        }
        .card-info h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1a1a2e;
            white-space: nowrap;
        }

        /* 下段：説明文 */
        .card-desc {
            font-size: 0.82rem;
            color: #666;
            line-height: 1.75;
            border-top: 1px solid #eee;
            padding-top: 12px;
        }

        /* ===== モーダル オーバーレイ ===== */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.65);
            z-index: 1000;
            padding: 20px;
            overflow-y: auto;
            align-items: center;
            justify-content: center;
        }
        .modal-overlay.is-open {
            display: flex;
        }

        /* ===== モーダル本体 ===== */
        .modal-box {
            background: #fff;
            border-radius: 16px;
            width: 100%;
            max-width: 700px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: modalIn 0.28s ease;
        }
        @keyframes modalIn {
            from { opacity: 0; transform: translateY(24px) scale(0.97); }
            to   { opacity: 1; transform: translateY(0) scale(1); }
        }

        .modal-close {
            position: absolute;
            top: 14px; right: 16px;
            background: rgba(0,0,0,0.08);
            border: none;
            border-radius: 50%;
            width: 36px; height: 36px;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            color: #444;
            transition: background 0.2s;
            z-index: 10;
        }
        .modal-close:hover { background: rgba(0,0,0,0.18); }

        /* ===== モーダル ヘッダー（写真 + 基本情報） ===== */
        .modal-header {
            display: flex;
            gap: 24px;
            padding: 32px 32px 24px;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border-radius: 16px 16px 0 0;
        }
        @media (max-width: 560px) {
            .modal-header { flex-direction: column; align-items: center; text-align: center; padding: 28px 20px 20px; }
        }

        .modal-photo {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(255,255,255,0.3);
            flex-shrink: 0;
        }

        .modal-meta { color: #fff; display: flex; flex-direction: column; justify-content: center; }
        .modal-role {
            font-size: 0.78rem;
            font-weight: 700;
            color: #7eb3ff;
            letter-spacing: 0.06em;
            margin-bottom: 6px;
        }
        .modal-name {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 0.06em;
        }
        .modal-catch {
            font-size: 0.95rem;
            color: #cdd9f0;
            line-height: 1.6;
            font-weight: 500;
        }

        /* ===== モーダル ボディ ===== */
        .modal-body {
            padding: 28px 32px 32px;
        }
        @media (max-width: 560px) {
            .modal-body { padding: 22px 20px 28px; }
        }

        .modal-section-label {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            color: #1a5cbf;
            text-transform: uppercase;
            margin-bottom: 10px;
            padding-bottom: 6px;
            border-bottom: 2px solid #e8f0ff;
        }
        .modal-profile-text {
            font-size: 0.9rem;
            line-height: 1.9;
            color: #444;
            margin-bottom: 28px;
        }
        .modal-message {
            background: #f4f8ff;
            border-left: 4px solid #1a5cbf;
            border-radius: 0 8px 8px 0;
            padding: 18px 20px;
            font-size: 0.9rem;
            line-height: 1.9;
            color: #333;
            font-style: italic;
        }


      /* ===== 課題セクション ===== */
        .issues-section {
            padding: 80px 20px;
            background: #f7f8fc;
        }
        .issues-section .section-container {
            max-width: 1100px;
            margin: 0 auto;
        }
        .issues-section .section-title {
            text-align: center;
            font-size: 1.9rem;
            color: #1a1a2e;
            margin-bottom: 12px;
            letter-spacing: 0.04em;
        }
        .issues-section .section-lead {
            text-align: center;
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 48px;
            line-height: 1.8;
        }
        .issues-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 48px;
        }
        @media (max-width: 768px) {
            .issues-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 480px) {
            .issues-grid { grid-template-columns: 1fr; }
        }
        .issue-card {
            background: #fff;
            border-radius: 12px;
            padding: 24px 22px;
            border-left: 4px solid #d0d8f0;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            display: flex;
            gap: 14px;
            align-items: flex-start;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .issue-card:hover {
            border-left-color: #1a5cbf;
            box-shadow: 0 6px 24px rgba(26,92,191,0.12);
        }
        .issue-check {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #e8f0ff;
            color: #1a5cbf;
            font-size: 1rem;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .issue-text h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 6px;
            line-height: 1.5;
        }
        .issue-text p {
            font-size: 0.82rem;
            color: #777;
            line-height: 1.75;
        }
        .issues-cta {
            text-align: center;
            background: linear-gradient(135deg, #1a1a2e, #1a3a6e);
            border-radius: 16px;
            padding: 40px 32px;
            color: #fff;
        }
        .issues-cta p {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 6px;
            line-height: 1.7;
        }
        .issues-cta small {
            font-size: 0.85rem;
            color: #a0b4d8;
            display: block;
            margin-bottom: 24px;
        }