/* ==========================================
   株式会社ふる里 - Premium Style
   Elegant & Warm Design
   ========================================== */

/* ==========================================
   ロゴ画像ちらつき防止（CSSロード前の大きな表示を防ぐ）
   ========================================== */
.logo-image,
.footer-logo {
    max-height: 50px !important;
    height: 50px !important;
    width: auto !important;
    max-width: 100px !important;
}

/* PC版：ふる里マーク 150px（3倍サイズ） */
.fixed-logo-img {
    height: 150px !important;
    max-height: 150px !important;
    width: auto !important;
    max-width: none !important;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.15));
}

/* スマホ版：ふる里マーク 40px */
@media (max-width: 768px) {
    .fixed-logo-img {
        height: 40px !important;
        max-height: 40px !important;
    }
}

/* ==========================================
   スマホ用：hero-features 強制非表示
   ========================================== */
.hero-features,
.hero-feature {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}

/* ==========================================
   1. リセット & ベーススタイル
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* アクセシビリティ：スキップリンク */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary, #4A7C4E);
    color: white;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--accent, #C9A86C);
    outline-offset: 2px;
}

:root {
    /* エレガントカラーパレット */
    --primary: #4A7C4E;              /* 深いグリーン */
    --primary-light: #6B9B6F;        /* ライトグリーン */
    --primary-pale: #E9F2EA;         /* ペールグリーン */
    --accent: #C9A86C;               /* ゴールド */
    --accent-light: #E5D4B3;         /* ライトゴールド */
    --text: #2D3B2D;                 /* ダークグリーン */
    --text-muted: #5C6B5C;           /* ミュートグリーン */
    --text-light: #5C6B5C;           /* ライトグレー - 読みやすく調整 */
    --bg: #FAFBFA;                   /* オフホワイト */
    --bg-warm: #F7F5F2;              /* ウォームホワイト */
    --white: #FFFFFF;
    --dark: #1E2A1E;
    
    /* シャドウ */
    --shadow-soft: 0 4px 20px rgba(45, 59, 45, 0.06);
    --shadow-medium: 0 8px 40px rgba(45, 59, 45, 0.08);
    --shadow-strong: 0 16px 60px rgba(45, 59, 45, 0.12);
    
    /* フォント */
    --font-sans: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Noto Serif JP', Georgia, serif;
    
    /* スペーシング */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 80px;
    --space-xxl: 120px;
    
    /* ボーダー */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 100px;
    
    /* トランジション */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 0.4s;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: all var(--duration) var(--ease);
}

/* アクセシビリティ：フォーカス表示 */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
}

/* フォーカス表示を非表示にするが、キーボードナビゲーション時は表示 */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
}

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

/* ==========================================
   2. レイアウト
   ========================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ==========================================
   3. ヘッダー（透明・エレガント）
   ========================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: all var(--duration) var(--ease);
}

.header-transparent {
    background: transparent;
}

.header.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    padding: 8px 0;
}

/* スクロール時にヘッダーを隠す - 無効化してメニューを常に表示 */
/* .header.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
} */

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* ロゴ */
.logo {
    margin: 0;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
}

.logo-image {
    height: 280px;
    width: auto;
    transition: all var(--duration) var(--ease);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.header.scrolled .logo-image {
    height: 70px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    margin-top: 6px;
    font-weight: 500;
    opacity: 0.9;
}

.header-transparent .logo-sub {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.header.scrolled .logo-sub {
    color: var(--text-muted);
    text-shadow: none;
}

/* ========================================
   ナビゲーション - シンプル透明デザイン
   ======================================== */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    padding: 0;
    margin: 0;
    background: transparent;
}

.nav-menu li {
    display: flex;
}

.nav-menu li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
}

.nav-menu li a:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* 日本語ラベル */
.nav-menu .nav-jp {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
    line-height: 1.3;
    letter-spacing: 0.03em;
}

/* 英語ラベル */
.nav-menu .nav-en {
    font-size: 0.6rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 1px;
}

/* ホバー時の色変化 */
.nav-menu li a:hover .nav-jp {
    color: white;
}

.nav-menu li a:hover .nav-en {
    color: rgba(255, 255, 255, 0.8);
}

/* お問い合わせボタン - 少し強調 */
.nav-menu li:last-child a {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-menu li:last-child a:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* タブレット以下ではヘッダーナビを非表示 */
@media (max-width: 1024px) {
    .nav-menu {
        display: none !important;
    }
}

/* 大画面での調整 */
@media (min-width: 1200px) {
    .nav-menu li a {
        padding: 10px 20px;
    }
    
    .nav-menu .nav-jp {
        font-size: 0.9rem;
    }
    
    .nav-menu .nav-en {
        font-size: 0.65rem;
    }
}

/* ===== ナビボタン共通 - シンプルデザイン（枠なし） ===== */
.nav-caremanager,
.nav-family,
.nav-contact {
    background: transparent !important;
    color: var(--text) !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
    padding: 8px 16px !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

.nav-caremanager:hover,
.nav-family:hover,
.nav-contact:hover {
    background: transparent !important;
    color: var(--primary) !important;
    transform: none !important;
    box-shadow: none !important;
}

/* ヘッダー透明時 */
.header-transparent .nav-contact,
.header-transparent .nav-family,
.header-transparent .nav-caremanager {
    background: transparent !important;
    color: white !important;
    border: none !important;
}

.header-transparent .nav-contact:hover,
.header-transparent .nav-family:hover,
.header-transparent .nav-caremanager:hover {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--duration) var(--ease);
}

.header-transparent .nav-toggle span {
    background: white;
}

/* スクロール時のハンバーガーメニュー - ふる里の緑色 */
.header.scrolled .nav-toggle span {
    background: #4A7C4E;
}

/* ==========================================
   4. ヒーローセクション（エレガント）
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 0 var(--space-md);
    margin-top: 40px;
}

.hero-tagline {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hero-tagline::before,
.hero-tagline::after {
    content: '';
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
}

.hero-main-copy {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 9vw, 5.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    letter-spacing: 8px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-sub-copy {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: var(--space-xl);
    opacity: 0.95;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-feature i {
    color: var(--accent);
}

.hero-feature i {
    color: var(--accent);
    font-size: 0.8rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity var(--duration) var(--ease);
}

.hero-scroll:hover {
    opacity: 1;
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 500;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
    position: relative;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--accent);
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: 0; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* ==========================================
   5. ボタン
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(74, 124, 78, 0.35);
}

.btn-secondary {
    background: var(--accent);
    color: var(--text);
}

.btn-secondary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.25);
}

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

.btn-white:hover {
    background: var(--bg-warm);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 0.95rem;
    font-weight: 600;
}

.btn-small {
    padding: 12px 24px;
    font-size: 0.85rem;
}

.btn-text {
    background: none;
    padding: 8px 0;
    color: var(--primary);
    font-weight: 600;
    border-radius: 0;
}

.btn-text:hover {
    color: var(--primary-light);
}

.btn-phone {
    background: var(--primary);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ==========================================
   6. セクション共通
   ========================================== */

section {
    padding: var(--space-xxl) 0;
}

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

.section-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--space-sm);
    opacity: 0.8;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 500;
    color: var(--text);
    margin-bottom: var(--space-md);
    letter-spacing: 3px;
    line-height: 1.5;
}

.section-title .highlight {
    color: var(--primary);
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-pale);
    z-index: -1;
    opacity: 0.7;
    display: none;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 2;
}

.section-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

.section-cta .btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

/* ==========================================
   7. ストーリーセクション
   ========================================== */

.story-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.story-image {
    position: relative;
    height: 550px;
}

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

.story-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(74, 124, 78, 0.3);
    backdrop-filter: blur(8px);
}

.story-text {
    padding: var(--space-xl);
}

.story-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: var(--space-md);
    line-height: 1.6;
    letter-spacing: 1px;
}

.story-quote {
    border-left: 3px solid var(--accent);
    padding-left: var(--space-md);
    margin: var(--space-lg) 0;
}

.story-quote p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 2.2;
    margin-bottom: var(--space-sm);
}

.story-quote footer {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: normal;
    margin-top: var(--space-md);
}

/* ==========================================
   8. ポイントセクション
   ========================================== */

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

.points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.point-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(74, 124, 78, 0.08);
}

.point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary-light));
    opacity: 0;
    transition: opacity var(--duration) var(--ease);
}

.point-card:hover::before {
    opacity: 1;
}

.point-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity var(--duration) var(--ease);
}

.point-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.point-card:hover::before {
    opacity: 1;
}

.point-number {
    width: 56px;
    height: 56px;
    background: var(--primary-pale);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.point-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: var(--space-sm);
    letter-spacing: 1px;
    line-height: 1.5;
}

.point-list {
    list-style: none;
    margin: var(--space-md) 0;
}

.point-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.point-list li i {
    color: var(--primary);
    margin-top: 4px;
}

.point-note {
    font-size: 0.8rem;
    color: var(--text-light);
    background: var(--bg);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-top: var(--space-sm);
}

.point-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: var(--space-md);
}

.point-image-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 10px;
    background: var(--primary-pale);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    color: var(--primary);
    text-align: center;
}

.point-image-item i {
    font-size: 1.3rem;
}

.point-restaurant {
    background: var(--accent-light);
    padding: 16px;
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
}

.point-restaurant p {
    font-size: 0.9rem;
    margin: 4px 0;
}

.point-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: var(--space-md);
    padding: 16px;
    background: var(--primary-pale);
    border-radius: var(--radius-md);
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price-value {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
}

.price-note {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ==========================================
   9. スケジュールセクション
   ========================================== */

.schedule-section {
    background: var(--white);
}

.schedule-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 140px;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
}

.timeline-item {
    position: relative;
    padding: var(--space-md) 0 var(--space-md) var(--space-lg);
}

.timeline-time {
    position: absolute;
    left: -140px;
    width: 80px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    text-align: right;
}

.timeline-icon {
    position: absolute;
    left: -28px;
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    box-shadow: var(--shadow-soft);
}

.timeline-content {
    background: var(--bg);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.timeline-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 8px;
}

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

.tour-box {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    justify-content: center;
    background: var(--primary);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    max-width: 700px;
    margin: 0 auto;
}

.tour-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.tour-text {
    flex: 1;
    color: var(--white);
}

.tour-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.tour-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ==========================================
   10. 理由セクション
   ========================================== */

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

.reasons-section .section-subtitle {
    color: var(--accent);
}

.reasons-section .section-title {
    color: var(--white);
}

.reasons-section .section-title .highlight {
    color: var(--accent);
}

.reasons-section .section-title .highlight::after {
    display: none;
}

.reasons-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.reason-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--duration) var(--ease);
}

.reason-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.reason-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.reason-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    line-height: 1.6;
    letter-spacing: 1px;
}

.reason-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    margin-bottom: var(--space-md);
}

.reason-more {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--duration) var(--ease);
}

.reason-more:hover {
    color: var(--white);
    gap: 12px;
}

/* ==========================================
   11. 食事セクション
   ========================================== */

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

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

.meal-main-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 450px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

.meal-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.meal-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--text);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

.meal-gallery {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: var(--space-md);
    height: 450px;
}

.meal-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.meal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.meal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

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

.meal-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: var(--white);
}

.meal-caption h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: #fff;
}

.meal-caption p {
    font-size: 0.75rem;
    opacity: 0.85;
    color: #fff;
}

.meal-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.meal-feature-item {
    text-align: center;
    padding: var(--space-md);
}

.meal-feature-item i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.meal-feature-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.meal-feature-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.meal-restaurant {
    margin-top: var(--space-lg);
    text-align: center;
    display: block;
    text-decoration: none;
    transition: all var(--duration) var(--ease);
}

.meal-restaurant:hover .restaurant-info {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.restaurant-info {
    display: inline-block;
    background: var(--primary-pale);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    transition: all var(--duration) var(--ease);
}

.restaurant-info h4 {
    color: var(--primary);
    margin-bottom: 6px;
}

.restaurant-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.restaurant-note {
    margin-top: 6px;
    font-size: 0.85rem;
}

/* ==========================================
   12. 室内セクション
   ========================================== */

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

.interior-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-lg);
}

.interior-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 550px;
}

.interior-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interior-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(transparent, rgba(30, 42, 30, 0.85));
    color: var(--white);
}

.interior-caption h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.interior-caption p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* 室内写真グリッド（写真のみ・最大表示） */
.interior-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

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

.interior-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-soft);
    transition: all var(--duration) var(--ease);
}

.interior-photo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.interior-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.interior-photo:hover img {
    transform: scale(1.05);
}

.interior-photo-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.interior-photo-item .facility-photo-name {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.interior-photo-item:hover .interior-photo {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.interior-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.interior-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.interior-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.interior-item:hover img {
    transform: scale(1.1);
}

.interior-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--white);
    color: var(--text);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.interior-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.interior-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.interior-feature i {
    font-size: 1.4rem;
    color: var(--primary);
    margin-top: 2px;
}

.interior-feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.interior-feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================
   13. イベントプレビュー
   ========================================== */

.events-preview-section {
    background: var(--bg-warm);
    position: relative;
}

/* ==========================================
   13. 年間行事カレンダー
   ========================================== */

.annual-events-section {
    background: var(--white);
}

.annual-calendar {
    max-width: 1000px;
    margin: 0 auto;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.calendar-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid;
    transition: all var(--duration) var(--ease);
}

.calendar-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.calendar-item.spring {
    border-color: #F48FB1;
    background: linear-gradient(135deg, rgba(248, 187, 217, 0.1), rgba(255, 255, 255, 1));
}

.calendar-item.summer {
    border-color: #29B6F6;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(255, 255, 255, 1));
}

.calendar-item.autumn {
    border-color: #FF7043;
    background: linear-gradient(135deg, rgba(255, 171, 145, 0.1), rgba(255, 255, 255, 1));
}

.calendar-item.winter {
    border-color: #64B5F6;
    background: linear-gradient(135deg, rgba(144, 202, 249, 0.1), rgba(255, 255, 255, 1));
}

.month-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.calendar-item.spring .month-badge {
    background: #F48FB1;
}

.calendar-item.summer .month-badge {
    background: #29B6F6;
}

.calendar-item.autumn .month-badge {
    background: #FF7043;
}

.calendar-item.winter .month-badge {
    background: #64B5F6;
}

.event-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .calendar-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .calendar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .calendar-item {
        padding: 16px;
    }
    
    .event-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .calendar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================
   16. ページヒーローセクション共通スタイル
   ========================================== */

/* 各ページ用ヒーローセクション */
.contact-hero,
.faq-hero,
.price-hero,
.voices-hero,
.schedule-hero,
.services-hero,
.facilities-hero,
.events-hero,
.availability-hero,
.info-hero,
.access-hero,
.company-hero,
.about-hero,
.reasons-hero,
.facility-hero,
.family-hero {
    background: linear-gradient(135deg, #4A7C4E 0%, #2d5a30 100%) !important;
    color: white !important;
    padding: 160px 0 60px;
    text-align: center;
    position: relative;
}

/* ヒーローセクション内のテキスト */
.contact-hero *,
.faq-hero *,
.price-hero *,
.voices-hero *,
.schedule-hero *,
.services-hero *,
.facilities-hero *,
.events-hero *,
.availability-hero *,
.info-hero *,
.access-hero *,
.company-hero *,
.about-hero *,
.reasons-hero *,
.facility-hero *,
.family-hero * {
    color: white !important;
}

/* ヒーローセクションのサブタイトル */
.contact-hero .section-subtitle,
.faq-hero .section-subtitle,
.price-hero .section-subtitle,
.voices-hero .section-subtitle,
.schedule-hero .section-subtitle,
.services-hero .section-subtitle,
.facilities-hero .section-subtitle,
.events-hero .section-subtitle,
.availability-hero .section-subtitle,
.info-hero .section-subtitle,
.access-hero .section-subtitle,
.company-hero .section-subtitle,
.about-hero .section-subtitle,
.reasons-hero .section-subtitle,
.facility-hero .section-subtitle,
.family-hero .section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    opacity: 1 !important;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .contact-hero,
    .faq-hero,
    .price-hero,
    .voices-hero,
    .schedule-hero,
    .services-hero,
    .facilities-hero,
    .events-hero,
    .availability-hero,
    .info-hero,
    .access-hero,
    .company-hero,
    .about-hero,
    .reasons-hero,
    .facility-hero,
    .family-hero {
        padding: 140px 0 50px;
    }
}

/* ==========================================
   13.2. サービス提供情報
   ========================================== */

.service-info-section {
    background: var(--bg-warm);
    padding: var(--space-xl) 0;
}

.service-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}

.service-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all var(--duration) var(--ease);
}

.service-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.service-info-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.service-info-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.service-info-value {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.service-info-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service-info-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .service-info-card {
        padding: var(--space-md);
    }
}

.events-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.events-gallery.four-seasons {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px;
}

.event-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    cursor: pointer;
}

.event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease), filter 0.5s var(--ease);
}

.event-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg) var(--space-md);
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        transparent 100%
    );
    color: var(--white);
    transform: translateY(20px);
    opacity: 0.9;
    transition: all 0.4s var(--ease);
}

.event-card:hover .event-overlay {
    transform: translateY(0);
    opacity: 1;
}

.event-season {
    display: inline-block;
    color: white;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.event-season.spring {
    background: linear-gradient(135deg, #F8BBD9, #F48FB1);
}

.event-season.summer {
    background: linear-gradient(135deg, #4FC3F7, #29B6F6);
}

.event-season.autumn {
    background: linear-gradient(135deg, #FFAB91, #FF7043);
}

.event-season.winter {
    background: linear-gradient(135deg, #90CAF9, #64B5F6);
}

.event-overlay h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 6px;
    letter-spacing: 2px;
}

.event-card.large .event-overlay h4 {
    font-size: 1.5rem;
}

.event-overlay p {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* ==========================================
   13.5. スタッフ紹介セクション
   ========================================== */

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

.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.staff-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-soft);
    transition: all var(--duration) var(--ease);
    text-align: center;
}

.staff-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.staff-card:hover .staff-avatar {
    transform: scale(1.05);
}

.staff-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-md);
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.avatar-svg {
    width: 100%;
    height: 100%;
}

.staff-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.staff-info {
    text-align: center;
}

.staff-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.staff-role {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    padding: 6px 14px;
    background: var(--primary-pale);
    border-radius: var(--radius-full);
    display: inline-block;
    line-height: 1.4;
}

.staff-message {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .staff-grid {
        grid-template-columns: 1fr;
    }
    
    .staff-card {
        padding: var(--space-md);
    }
    
    .staff-avatar {
        width: 100px;
        height: 100px;
    }
    
    .staff-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }
}

/* ==========================================
   14. 施設セクション
   ========================================== */

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

/* 施設写真グリッド（写真のみ） */
.facilities-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

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

.facility-photo {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-soft);
    transition: all var(--duration) var(--ease);
}

.facility-photo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.facility-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.facility-photo:hover img {
    transform: scale(1.05);
}

.facility-photo-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    text-align: center;
}

.facility-photo-item .facility-photo-name {
    margin-top: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.facility-photo-item .facility-photo {
    aspect-ratio: 4/3;
}

.facility-photo-item:hover .facility-photo {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.facility-photo-name {
    margin-top: 12px;
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.facility-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--duration) var(--ease);
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.facility-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.facility-card:hover .facility-image img {
    transform: scale(1.05);
}

.facility-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.facility-badge.new-badge {
    background: #E57373;
}

.facility-content {
    padding: var(--space-md);
}

.facility-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.5px;
}

.facility-location,
.facility-number {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.facility-location i,
.facility-number i {
    color: var(--primary);
    margin-top: 3px;
}

.facility-contact-info {
    background: var(--bg);
    padding: 12px 14px;
    border-radius: var(--radius-md);
    margin: var(--space-sm) 0;
}

.facility-contact-info p {
    font-size: 0.85rem;
    margin: 4px 0;
}

.facility-contact-info a {
    color: var(--primary);
}

.facility-schedule {
    background: var(--primary-pale);
    padding: 12px 14px;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    font-size: 0.8rem;
}

.facility-schedule p {
    margin: 3px 0;
}

.facility-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: var(--space-md);
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg);
    padding: 5px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.feature-tag i {
    color: var(--primary);
    font-size: 0.7rem;
}

/* ==========================================
   15. 空き状況セクション
   ========================================== */

.availability-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.availability-section .section-subtitle {
    color: var(--accent-light);
}

.availability-section .section-title {
    color: var(--white);
}

.availability-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.availability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.availability-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-align: center;
}

.availability-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--space-md);
}

.availability-week {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: var(--space-md);
}

.day-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px;
    border-radius: var(--radius-md);
    min-width: 44px;
}

.day-status.available {
    background: #e8f5e9;
}

.day-status.limited {
    background: #fff3e0;
}

.day-status.full {
    background: #ffebee;
}

.day-status.closed {
    background: #f5f5f5;
}

.day-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.status-icon {
    font-size: 1.3rem;
    font-weight: 700;
}

/* 空き状況の色分け */
.day-status.available .status-icon {
    color: #2e7d32;
}

.day-status.limited .status-icon {
    color: #ef6c00;
}

.day-status.full .status-icon {
    color: #c62828;
}

.day-status.closed .status-icon {
    color: #9e9e9e;
}

.availability-note {
    text-align: center;
    margin-top: var(--space-lg);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================
   16. CTAセクション
   ========================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: ctaPulse 10s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 500;
    margin-bottom: var(--space-md);
    letter-spacing: 3px;
}

.cta-description {
    font-size: 1.05rem;
    opacity: 0.95;
    margin-bottom: var(--space-lg);
    line-height: 2;
}

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

.cta-buttons .btn-phone {
    background: white;
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
}

.cta-buttons .btn-phone:hover {
    background: var(--bg-warm);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-buttons .btn-white {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

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

.cta-hours {
    font-size: 0.9rem;
    opacity: 0.85;
}

.cta-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: var(--space-sm);
}

/* ==========================================
   17. フッター
   ========================================== */

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

.footer-main {
    padding: var(--space-xl) 0;
}

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

.footer-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
    color: var(--white);
    letter-spacing: 1px;
}

.footer-address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.7);
}

.footer-address a {
    color: var(--accent-light);
}

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

.footer-founded {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* フッターSNSリンク */
.footer-sns {
    margin-top: var(--space-md);
    display: flex;
    gap: 12px;
}

.sns-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    transition: all 0.3s ease;
}

.sns-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.sns-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-heading {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: all var(--duration) var(--ease);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-md) 0;
    text-align: center;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   18. 固定電話ボタン
   ========================================== */

.fixed-phone-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: var(--shadow-medium);
    z-index: 999;
    transition: all var(--duration) var(--ease);
}

.fixed-phone-btn:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: scale(1.1);
}

/* ==========================================
   19. レスポンシブ
   ========================================== */

@media (max-width: 1024px) {
    .points-grid,
    .reasons-grid,
    .facilities-grid,
    .availability-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 施設写真は3列を維持 */
    .facilities-photo-grid,
    .facilities-photo-grid.three-cols {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .story-image {
        height: 350px;
    }
    
    .meal-showcase {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .meal-main-image {
        height: 350px;
    }
    
    .meal-gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
        height: 180px;
    }
    
    .interior-showcase {
        grid-template-columns: 1fr;
    }
    
    .interior-main {
        height: 400px;
    }
    
    .meal-features,
    .interior-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 60px;
        --space-xxl: 80px;
    }
    
    /* ロゴサイズ（タブレット） */
    .logo-image {
        height: 200px;
    }
    
    .header.scrolled .logo-image {
        height: 60px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 24px 24px;
        box-shadow: var(--shadow-strong);
        transition: right var(--duration) var(--ease);
        gap: 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li a {
        padding: 16px;
        border-radius: var(--radius-md);
        color: var(--text-muted) !important;
    }
    
    .nav-menu li a:hover,
    .nav-menu li a.active {
        color: var(--primary) !important;
        background: var(--primary-pale) !important;
    }
    
    /* モバイル用：ケアマネ様ボタン */
    .nav-menu .nav-caremanager {
        background: #ffffff !important;
        color: #1565C0 !important;
        border: 2px solid #1565C0 !important;
        border-radius: 25px !important;
        font-weight: 600 !important;
        text-align: center !important;
        margin-top: 12px !important;
    }
    
    .nav-menu .nav-caremanager:hover {
        background: #1565C0 !important;
        color: #ffffff !important;
    }
    
    /* モバイル用：お問い合わせボタン - 白背景＋緑文字で見やすく */
    .nav-menu .nav-contact {
        background: #ffffff !important;
        color: var(--primary) !important;
        border: 2px solid var(--primary) !important;
        border-radius: 25px !important;
        font-weight: 600 !important;
        text-align: center !important;
        margin-top: 8px !important;
    }
    
    .nav-menu .nav-contact:hover {
        background: var(--primary) !important;
        color: #ffffff !important;
    }
    
    .hero {
        min-height: 100vh;
    }
    
    .hero-main-copy {
        font-size: 2.8rem;
        letter-spacing: 4px;
    }
    
    .hero-features {
        display: none !important;
    }
    
    .hero-feature {
        display: none !important;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .points-grid,
    .reasons-grid,
    .facilities-grid,
    .availability-grid {
        grid-template-columns: 1fr;
    }
    
    /* 施設写真は3列を維持（タブレット） */
    .facilities-photo-grid,
    .facilities-photo-grid.three-cols,
    .interior-photo-grid,
    .interior-photo-grid.three-cols {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
    }
    
    .facility-photo,
    .interior-photo {
        aspect-ratio: 4/3;
    }
    
    .events-gallery,
    .events-gallery.four-seasons {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .events-gallery.four-seasons .event-card {
        height: 220px;
    }
    
    .schedule-timeline {
        padding-left: 80px;
    }
    
    .schedule-timeline::before {
        left: 50px;
    }
    
    .timeline-time {
        left: -80px;
        width: 50px;
        font-size: 1rem;
    }
    
    .timeline-icon {
        left: -22px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .tour-box {
        flex-direction: column;
        text-align: center;
    }
    
    .meal-showcase {
        gap: var(--space-sm);
    }
    
    .meal-main-image {
        height: 280px;
    }
    
    .meal-gallery {
        grid-template-columns: repeat(3, 1fr);
        height: 140px;
    }
    
    .meal-caption {
        padding: 8px 12px;
    }
    
    .meal-caption h4 {
        font-size: 0.8rem;
    }
    
    .meal-caption p {
        font-size: 0.65rem;
    }
    
    .meal-features,
    .interior-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .interior-photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .interior-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .fixed-phone-btn {
        display: flex;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    /* ヘッダー */
    .header {
        padding: 12px 0;
    }
    
    .logo-image {
        height: 160px;
    }
    
    .header.scrolled .logo-image {
        height: 55px;
    }
    
    /* 施設写真（スマホでも3列維持） */
    .facilities-photo-grid,
    .facilities-photo-grid.three-cols,
    .interior-photo-grid,
    .interior-photo-grid.three-cols {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .facility-photo,
    .interior-photo {
        border-radius: var(--radius-md);
    }
    
    .facility-photo-name,
    .interior-photo-item .facility-photo-name {
        font-size: 0.7rem;
        margin-top: 4px;
        white-space: nowrap;
    }
    
    /* セクションタイトル */
    .section-title {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .section-subtitle {
        font-size: 0.65rem;
        letter-spacing: 4px;
    }
    
    /* ヒーローセクション */
    .hero {
        min-height: 100svh;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-content .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 2px;
        padding: 6px 12px;
        white-space: nowrap;
    }
    
    .hero-main-copy {
        font-size: 2.8rem;
        letter-spacing: 5px;
        margin-bottom: 12px;
    }
    
    .hero-sub-copy {
        font-size: 0.9rem;
        letter-spacing: 1px;
        line-height: 1.8;
    }
    
    .hero-features {
        display: none !important;
    }
    
    .hero-feature {
        display: none !important;
    }
    
    .hero-cta {
        gap: 12px;
    }
    
    /* モバイルではヒーロー内の見学予約ボタンを非表示（固定フッターに任せる） */
    .hero-cta .btn-cta-primary {
        display: none;
    }
    
    .hero-cta .btn-cta-phone {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    /* ストーリーセクション */
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .story-image {
        height: 250px;
    }
    
    .story-text {
        padding: var(--space-md);
    }
    
    .story-quote {
        font-size: 1.1rem;
        line-height: 1.9;
    }
    
    /* ポイントセクション */
    .point-card {
        padding: var(--space-md);
    }
    
    .point-title {
        font-size: 1.1rem;
    }
    
    .point-images {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* イベントギャラリー */
    .events-gallery,
    .events-gallery.four-seasons {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .events-gallery.four-seasons .event-card {
        height: 180px;
    }
    
    .event-overlay h4 {
        font-size: 1rem;
    }
    
    .season-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    /* 施設カード */
    .facility-card {
        padding: var(--space-md);
    }
    
    .facility-name {
        font-size: 1rem;
    }
    
    /* 室内ギャラリー */
    .interior-photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .interior-photo {
        aspect-ratio: 1/1;
    }
    
    .interior-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .interior-item {
        height: 200px;
    }
    
    /* 空き状況 */
    .availability-mini-card {
        padding: var(--space-sm);
    }
    
    .availability-title {
        font-size: 0.95rem;
    }
    
    .availability-row {
        gap: 4px;
    }
    
    .availability-day {
        font-size: 0.7rem;
        padding: 6px 4px;
    }
    
    /* CTAセクション */
    .cta-section {
        padding: var(--space-lg) 0;
    }
    
    .cta-title {
        font-size: 1.4rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
    }
    
    /* フッター */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-heading {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    /* 固定電話ボタン */
    .fixed-phone-btn {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 16px;
        font-size: 1.3rem;
    }
    
    /* ボタン共通 */
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* ==========================================
   20. ユーティリティ
   ========================================== */

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

.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

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

/* ==========================================
   20.5. ケアマネージャー向けバナー
   - プロフェッショナル向け導線
   ========================================== */

.cm-banner {
    background: linear-gradient(135deg, #2C5530 0%, #3D6840 100%);
    padding: 0;
}

.cm-banner-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.cm-banner-inner:hover {
    background: rgba(255,255,255,0.08);
}

.cm-banner-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cm-banner-icon i {
    font-size: 1.2rem;
    color: #90EE90;
}

.cm-banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cm-banner-label {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cm-banner-desc {
    font-size: 0.8rem;
    opacity: 0.85;
}

.cm-banner-arrow {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cm-banner-arrow i {
    font-size: 0.8rem;
    color: white;
}

.cm-banner-inner:hover .cm-banner-arrow {
    background: rgba(255,255,255,0.2);
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .cm-banner-inner {
        padding: 12px 16px;
        gap: 12px;
    }
    
    .cm-banner-icon {
        width: 38px;
        height: 38px;
    }
    
    .cm-banner-icon i {
        font-size: 1rem;
    }
    
    .cm-banner-label {
        font-size: 0.85rem;
    }
    
    .cm-banner-desc {
        font-size: 0.75rem;
    }
}

/* ==========================================
   21. 不安共感セクション（Concerns Section）
   - 訪問者の心理的ハードルを下げるセクション
   ========================================== */

.concerns-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, #FFF9F0 0%, #FFF5E6 100%);
    position: relative;
}

.concerns-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.concern-item {
    background: white;
    padding: var(--space-md);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.concern-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-color: var(--accent);
}

.concern-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-sm);
    background: linear-gradient(135deg, #FFE4E4 0%, #FFD4D4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.concern-icon i {
    font-size: 1.5rem;
    color: #E57373;
}

.concern-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
}

.concern-emotion {
    display: block;
    margin-top: 4px;
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

.concerns-solution {
    background: white;
    padding: var(--space-lg);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(74, 124, 78, 0.15);
    border: 3px solid var(--primary);
    max-width: 800px;
    margin: 0 auto var(--space-lg);
}

.solution-arrow {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--space-sm);
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounceDown 2s ease-in-out infinite;
}

.solution-arrow i {
    color: white;
    font-size: 1.5rem;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.solution-intro {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: var(--space-md);
}

.solution-intro strong {
    color: var(--primary);
    font-size: 1.6rem;
}

.solution-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.solution-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.solution-point i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.solution-point strong {
    color: var(--primary);
}

.section-cta {
    text-align: center;
    margin-top: var(--space-md);
}

.section-cta .btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.section-cta .btn-main {
    font-size: 1.1rem;
    font-weight: 700;
}

.section-cta .btn-sub {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ==========================================
   22. FAQセクション
   - CV率30%向上効果
   ========================================== */

.faq-section {
    padding: var(--space-xl) 0;
    background: #F8FAF8;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto var(--space-lg);
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #E8E8E8;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #FAFAFA;
}

.faq-q-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, #5A8C5E 100%);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.faq-q-text {
    flex: 1;
}

.faq-toggle {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px 24px;
}

.faq-item.active .faq-answer {
    display: flex;
    gap: 16px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-a-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent) 0%, #D4B87C 100%);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.faq-a-text {
    flex: 1;
    padding-top: 4px;
}

.faq-a-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
}

.faq-a-text strong {
    color: var(--primary);
}

.faq-more {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.faq-more > p {
    font-size: 1rem;
    color: #666;
    margin-bottom: var(--space-md);
}

.faq-cta {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.faq-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================
   23. レスポンシブ追加（不安共感 & FAQ）
   ========================================== */

@media (max-width: 1024px) {
    .concerns-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .concerns-section {
        padding: var(--space-lg) 0;
    }
    
    .concerns-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .concern-item {
        display: flex;
        align-items: center;
        gap: var(--space-sm);
        text-align: left;
        padding: var(--space-sm) var(--space-md);
    }
    
    .concern-icon {
        width: 48px;
        height: 48px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .concern-icon i {
        font-size: 1.2rem;
    }
    
    .concern-item p {
        font-size: 0.95rem;
    }
    
    .concerns-solution {
        padding: var(--space-md);
    }
    
    .solution-intro {
        font-size: 1.2rem;
    }
    
    .solution-intro strong {
        font-size: 1.4rem;
    }
    
    .solution-point {
        font-size: 0.95rem;
    }
    
    /* FAQ モバイル */
    .faq-section {
        padding: var(--space-lg) 0;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 0.95rem;
    }
    
    .faq-q-icon,
    .faq-a-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .faq-answer {
        padding: 0 16px 16px 16px;
    }
    
    .faq-a-text p {
        font-size: 0.9rem;
    }
    
    .faq-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ==========================================
   24. 安心の取り組みセクション（SAFETY & TRUST）
   - トヨタカイゼン方式：シンプル・見やすく・無駄なし
   - 国の指針に基づく信頼感の演出
   ========================================== */

.safety-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F7FAF7 100%);
    position: relative;
}

.safety-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary) 0%, 
        #6B9E6F 50%, 
        var(--accent) 100%);
}

/* 6つの取り組みグリッド - カイゼン式シンプルレイアウト */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: var(--space-lg);
}

.safety-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(74, 124, 78, 0.08);
    border: 1px solid rgba(74, 124, 78, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.safety-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, #6B9E6F 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(74, 124, 78, 0.15);
}

.safety-card:hover::before {
    transform: scaleY(1);
}

.safety-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.safety-card-icon i {
    font-size: 1.4rem;
    color: var(--primary);
}

.safety-card-icon::after {
    content: '✓';
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(74, 124, 78, 0.3);
}

.safety-card-content {
    flex: 1;
    min-width: 0;
}

.safety-card-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 6px 0;
    letter-spacing: 0.5px;
}

.safety-card-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.safety-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
    color: #8B6914;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.safety-badge::before {
    content: '📋';
    font-size: 0.75rem;
}

/* 季節の注意喚起カード - 目立つデザイン */
.seasonal-notice {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 32px;
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    border-radius: 20px;
    margin-bottom: var(--space-lg);
    border: 2px solid #FFB74D;
    position: relative;
    overflow: hidden;
}

.seasonal-notice::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 183, 77, 0.2);
    border-radius: 50%;
}

.seasonal-notice-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(255, 152, 0, 0.25);
    position: relative;
    z-index: 1;
}

.seasonal-notice-icon i {
    font-size: 1.8rem;
    color: #F57C00;
}

.seasonal-notice-content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.seasonal-notice-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.seasonal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

.seasonal-badge::before {
    content: '⚠️';
}

.seasonal-notice-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #E65100;
    margin: 0;
}

.seasonal-notice-content p {
    font-size: 1rem;
    color: #5D4037;
    line-height: 1.8;
    margin: 0 0 12px 0;
}

.seasonal-notice-content p strong {
    color: #E65100;
    background: rgba(255, 255, 255, 0.6);
    padding: 2px 6px;
    border-radius: 4px;
}

.seasonal-source {
    font-size: 0.8rem;
    color: #8D6E63;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.seasonal-source::before {
    content: '📄';
}

/* フッターエリア */
.safety-footer {
    text-align: center;
}

.safety-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0 0 20px 0;
    padding: 16px 24px;
    background: rgba(74, 124, 78, 0.05);
    border-radius: 12px;
    display: inline-block;
}

.safety-footer .btn {
    font-size: 1rem;
    padding: 16px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(74, 124, 78, 0.25);
}

.safety-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(74, 124, 78, 0.35);
}

/* ==========================================
   25. 安心セクション レスポンシブ
   ========================================== */

@media (max-width: 1024px) {
    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .safety-section {
        padding: var(--space-lg) 0;
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .safety-card {
        padding: 18px;
        gap: 14px;
    }
    
    .safety-card-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
    
    .safety-card-icon i {
        font-size: 1.2rem;
    }
    
    .safety-card-icon::after {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
        top: -5px;
        right: -5px;
    }
    
    .safety-card-content h4 {
        font-size: 1rem;
    }
    
    .safety-card-content p {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .safety-badge {
        font-size: 0.65rem;
        padding: 3px 8px;
    }
    
    /* 季節の注意喚起 モバイル */
    .seasonal-notice {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
    }
    
    .seasonal-notice-icon {
        width: 56px;
        height: 56px;
    }
    
    .seasonal-notice-icon i {
        font-size: 1.5rem;
    }
    
    .seasonal-notice-header {
        justify-content: center;
        flex-direction: column;
        gap: 8px;
    }
    
    .seasonal-notice-header h4 {
        font-size: 1.1rem;
    }
    
    .seasonal-notice-content p {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .safety-note {
        font-size: 0.8rem;
        padding: 12px 16px;
    }
    
    .safety-footer .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 32px;
        font-size: 0.95rem;
    }
}

/* ==========================================
   24. 安心への取り組みセクション（カイゼン版）
   - シンプル × 高級感 × 機能的
   ========================================== */

.safety-section {
    padding: var(--space-xl) 0;
    background: #FAFBFA;
}

.section-lead {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-top: -8px;
}

/* 6つのカードグリッド */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: var(--space-lg);
}

.safety-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #EEE;
    transition: all 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 124, 78, 0.12);
    border-color: var(--primary);
}

.safety-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.safety-card-icon i {
    font-size: 1.1rem;
    color: var(--primary);
}

.safety-card-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 4px 0;
}

.safety-card-content p {
    font-size: 0.8rem;
    color: #666;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.safety-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary);
    background: #E8F5E9;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* 季節の注意喚起（目立つカード） */
.seasonal-notice {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: var(--space-md);
    border: 2px solid #FFD54F;
}

.seasonal-notice-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.seasonal-notice-icon i {
    font-size: 1.5rem;
    color: #F57C00;
}

.seasonal-notice-content {
    flex: 1;
}

.seasonal-notice-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.seasonal-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.seasonal-notice-header h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #E65100;
    margin: 0;
}

.seasonal-notice-content > p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #5D4037;
    margin: 0 0 8px 0;
}

.seasonal-notice-content strong {
    color: #BF360C;
}

.seasonal-source {
    font-size: 0.7rem;
    color: #8D6E63;
}

/* シンプルなフッター */
.safety-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-sm);
    border-top: 1px solid #E8E8E8;
    flex-wrap: wrap;
    gap: 16px;
}

.safety-footer .safety-note {
    font-size: 0.75rem;
    color: #888;
    margin: 0;
    flex: 1;
}

.safety-footer .btn {
    white-space: nowrap;
}

/* ヒーロー内 安心リンク - シンプル＆洗練 */
.hero-safety-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.hero-safety-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(144, 238, 144, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-safety-link i:first-child {
    color: #90EE90;
    font-size: 1rem;
}

/* ヒーロー内 参考法令リンク - 控えめ */
.hero-guidelines-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 16px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-guidelines-link:hover {
    color: rgba(255, 255, 255, 1);
}

.hero-guidelines-link i {
    font-size: 0.7rem;
}

.hero-safety-link i:last-child {
    font-size: 0.75rem;
    opacity: 0.7;
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ==========================================
   25. 安心セクション レスポンシブ
   ========================================== */

@media (max-width: 1024px) {
    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .safety-section {
        padding: var(--space-lg) 0;
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .safety-card {
        padding: 16px;
    }
    
    .safety-card-icon {
        width: 40px;
        height: 40px;
    }
    
    .safety-card-icon i {
        font-size: 1rem;
    }
    
    .safety-card-content h4 {
        font-size: 0.9rem;
    }
    
    .safety-card-content p {
        font-size: 0.75rem;
    }
    
    /* 季節の注意 */
    .seasonal-notice {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }
    
    .seasonal-notice-icon {
        width: 48px;
        height: 48px;
    }
    
    .seasonal-notice-icon i {
        font-size: 1.3rem;
    }
    
    .seasonal-notice-header h4 {
        font-size: 0.95rem;
    }
    
    .seasonal-notice-content > p {
        font-size: 0.85rem;
    }
    
    /* フッター */
    .safety-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .safety-footer .safety-note {
        text-align: center;
    }
    
    /* モバイル用 安心リンク - コンパクト＆洗練 */
    .hero-safety-link {
        margin-top: 16px;
        padding: 10px 18px;
        font-size: 0.8rem;
        gap: 8px;
        background: rgba(74, 124, 78, 0.9);
        border: none;
        box-shadow: 0 4px 15px rgba(74, 124, 78, 0.3);
    }
    
    .hero-safety-link i:first-child {
        font-size: 0.85rem;
        color: #90EE90;
    }
    
    .hero-safety-link i:last-child {
        font-size: 0.65rem;
    }
    
    .hero-safety-link:hover {
        background: rgba(74, 124, 78, 1);
    }
    
    /* モバイル用 参考法令リンク */
    .hero-guidelines-link {
        margin-top: 8px;
        font-size: 0.7rem;
        padding: 6px 12px;
    }
}
