/* =============================================================================
   ひかりの木保育園昆陽 - 統合スタイルシート (stylesheet.css)
   ---------------------------------------------------------------------------
   このファイルは、従来の複数CSSを1つに集約したものです。
   どのHTMLからもこの1ファイルだけを読み込みます。

   【読み込み先HTML】
   - index.html / service.html / facility.html / news.html
   - recruit.html / contact.html / privacy-policy.html

   【構成（目次）】
   1. 共通ベース（旧 css/style.css）
      - リセット、背景、ヘッダー、ナビ、ヒーロー、各共通セクション、フッター、レスポンシブなど
   2. 下層ページ共通メモ
      - ページ固有スタイルは body.page-xxx 配下にネストし、ページ間のクラス名衝突を防止
   3. サービス案内（旧 css/service.css）          → body.page-service
   4. 施設紹介（旧 css/facility.css）            → body.page-facility
   5. お知らせ（旧 css/news.css）                → body.page-news
   6. 求人案内（旧 css/recruit.css）              → body.page-recruit
   7. お問い合わせ（旧 css/contact.css）          → body.page-contact
   8. プライバシーポリシー（旧 css/privacy-policy.css） → body.page-privacy

   【パスについて】
   - 本ファイルはサイト直下にあるため、画像パスは koya.img/... を使用
   - 旧 css/ 配下からの相対パス ../koya.img/ は自動置換済み

   【更新日】 2026-08-06
   ============================================================================= */

/* =============================================================================
   1. 共通ベーススタイル（旧 css/style.css）
   ---------------------------------------------------------------------------
   全ページ共通のレイアウト・見た目を定義します。
   リセット → 背景 → ヘッダー/ナビ → 各セクション → フッター → レスポンシブ の順です。
   ============================================================================= */
/* -----------------------------------------
   [共通] リセットCSS
   処理: ブラウザ既定の margin/padding 差を打ち消し、
         box-sizing を border-box に統一して幅計算を安定させる。
   ----------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    line-height: 1.6;
    color: #333;
    background-image: url('koya.img/sirorenga.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
}

/* -----------------------------------------
   [共通] 背景画像エリア
   処理: フル画面背景を敷き、オーバーレイ(z-index:1)の上に
         文言コンテンツ(z-index:2)を重ねて可読性を確保する。
   ----------------------------------------- */
.background-image {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('koya.img/sirorenga.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 248, 220, 0.6));
    z-index: 1;
}

.background-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #333;
    padding: 2rem;
    max-width: 800px;
}

.main-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    color: #2c5530;
}

.main-subtitle {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: #4a6741;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* -----------------------------------------
   [共通/トップ] トップ画像セクション
   処理: トップページ先頭のビジュアル画像サイズと表示を制御。
   ----------------------------------------- */
.top-image-section {
    width: 100%;
    height: 80vh; /* 縦幅を大きくして画像が切れないように調整 */
    overflow: hidden;
    position: relative;
    margin-top: 30px !important; /* 上部余白を少し追加 */
    transition: margin-top 0.3s ease; /* スムーズな余白の変化 */
}

/* 1024px以上の大画面での調整 */
@media screen and (min-width: 1024px) {
    .top-image-section {
        margin-top: 120px !important; /* 大画面では上部余白をさらに追加 */
    }
}

.top-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px; /* 外枠のための余白 */
}

.top-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px; /* 角を丸く */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* 影効果を追加 */
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .background-image {
        background-attachment: scroll;
        height: 80vh;
    }
    
    .background-content {
        padding: 1.5rem;
    }
    
    .top-image-section {
        height: 70vh; /* タブレット時は高さを調整（画像が切れないように） */
        margin-top: 25px !important; /* タブレット時は上部余白を少し追加 */
    }
    
    .top-image-container {
        padding: 15px; /* モバイル時は余白を調整 */
    }
    
    .top-image {
        border-radius: 15px; /* モバイル時は角丸を調整 */
    }
}

@media screen and (max-width: 480px) {
    .background-image {
        height: 70vh;
    }
    
    .background-content {
        padding: 1rem;
    }
    
    .top-image-section {
        height: 60vh; /* スマートフォン時は高さを調整（画像が切れないように） */
        margin-top: 20px !important; /* スマートフォン時は上部余白を少し追加 */
    }
    
    .top-image-container {
        padding: 10px; /* 小画面時は余白を調整 */
    }
    
    .top-image {
        border-radius: 12px; /* 小画面時は角丸を調整 */
    }
}

/* -----------------------------------------
   [共通] SNSリンク設定
   処理: Instagram / Facebook アイコンリンクの色・ホバー・配置。
   ----------------------------------------- */

/* SNSリンクボタン */
.sns-link {
    display: flex;                    /* アイコンとテキストを横並びに */
    align-items: center;              /* 垂直方向中央揃え */
    gap: 0.5rem;                      /* アイコンとテキストの隙間 */
    padding: 0.75rem 1rem;            /* ボタンの内側余白 */
    border-radius: 8px;               /* 角丸 */
    text-decoration: none;            /* 下線を削除 */
    transition: all 0.3s ease;        /* アニメーション効果 */
    font-weight: 500;                 /* フォントの太さ */
    flex-shrink: 0;                   /* ボタンの縮小を防ぐ */
    min-width: 0;                     /* 最小幅を0に設定 */
    max-width: 100%;                  /* 最大幅を100%に制限 */
    overflow: hidden;                 /* はみ出しを隠す */
    white-space: nowrap;              /* テキストの折り返しを防ぐ */
}

/* Instagramボタンの基本スタイル */
.sns-link.instagram {
    color: #ffffff;                     /* テキストを白に */
    background: linear-gradient(45deg, #833AB4, #FD1D1D, #F77737, #FCAF45); /* Instagram公式グラデーション */
    border: none;                        /* ボーダーを削除 */
    position: relative;                   /* 疑似要素の基準点 */
    box-shadow: 0 4px 15px rgba(131, 58, 180, 0.3); /* Instagram風の影 */
    font-weight: 600;                    /* フォントを太く */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* テキストに影を追加 */
}

/* Facebookボタンの基本スタイル */
.sns-link.facebook {
    color: #1877f2;                   /* Facebookブランドカラー（青） */
    background-color: rgba(24, 119, 242, 0.1); /* 薄い青背景 */
    border: 2px solid #1877f2;        /* 青のボーダー */
}

/* SNSリンクのホバー効果 */
.sns-link:hover {
    transform: translateY(-2px);      /* 上に少し移動 */
    box-shadow: 0 4px 8px rgba(0,0,0,0.15); /* 影を強調 */
}

/* Instagramボタンのホバー効果 */
.sns-link.instagram:hover {
    background: linear-gradient(45deg, #9B4DDB, #FF2D55, #FF8C42, #FFD93D); /* ホバー時の明るいグラデーション */
    transform: translateY(-3px);         /* 上に移動 */
    box-shadow: 0 8px 25px rgba(131, 58, 180, 0.5); /* ホバー時の影を強調 */
    color: #ffffff;                      /* テキストは白のまま */
}

/* Facebookボタンのホバー効果 */
.sns-link.facebook:hover {
    background-color: #1877f2;        /* Facebookブランドカラー（青） */
    color: white;                     /* テキストを白に */
    border-color: #1877f2;            /* ボーダーも同色に */
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3); /* 青の影 */
}

/* SNSアイコン */
.sns-icon {
    width: 20px;                      /* アイコンの幅 */
    height: 20px;                     /* アイコンの高さ */
    flex-shrink: 0;                   /* アイコンの縮小を防ぐ */
}

/* SNSテキスト */
.sns-text {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: 0.9rem;                /* テキストサイズ */
    font-weight: 500;                 /* フォントの太さ */
}

/* Instagramボタン内のアイコン */
.sns-link.instagram .sns-icon {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2)); /* アイコンに影を追加 */
    transition: all 0.3s ease;                           /* アニメーション効果 */
}

/* Instagramボタンホバー時のアイコン効果 */
.sns-link.instagram:hover .sns-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)); /* ホバー時の影を強調 */
    transform: scale(1.1);                               /* ホバー時にアイコンを少し拡大 */
}

/* スマホ対応時のpタグマージンリセット */
@media screen and (max-width: 768px) {
    .corporate-nursery-section p {
        margin: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        border: 0 !important;
        outline: 0 !important;
        box-sizing: border-box !important;
    }
    
    .corporate-nursery-description {
        margin: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        border: 0 !important;
        outline: 0 !important;
        box-sizing: border-box !important;
        display: block !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }
    
    .corporate-nursery-intro {
        margin: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        border: 0 !important;
        outline: 0 !important;
        box-sizing: border-box !important;
    }
}

/* スマホ対応時のSNSボタン拡大 */
@media screen and (max-width: 768px) {
    .sns-link {
        padding: clamp(0.8rem, 2vw, 1.2rem) !important;
        font-size: clamp(0.8rem, 2.2vw, 1rem) !important;
        min-width: clamp(50px, 8vw, 60px) !important;
        max-width: clamp(60px, 10vw, 70px) !important;
        border-radius: 10px !important;
        justify-content: center !important;
    }
    
    .sns-icon {
        width: clamp(24px, 3vw, 28px) !important;
        height: clamp(24px, 3vw, 28px) !important;
    }
    
    .sns-text {
        display: none !important;
    }
}

@media screen and (max-width: 480px) {
    .corporate-nursery-section p {
        margin: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .corporate-nursery-description {
        margin: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .sns-link {
        padding: clamp(1rem, 2.5vw, 1.4rem) !important;
        font-size: clamp(0.9rem, 2.5vw, 1.1rem) !important;
        min-width: clamp(60px, 10vw, 70px) !important;
        max-width: clamp(70px, 12vw, 80px) !important;
        border-radius: 12px !important;
        justify-content: center !important;
    }
    
    .sns-icon {
        width: clamp(26px, 3.5vw, 30px) !important;
        height: clamp(26px, 3.5vw, 30px) !important;
    }
    
    .sns-text {
        display: none !important;
    }
}

@media screen and (max-width: 360px) {
    .corporate-nursery-section p {
        margin: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .corporate-nursery-description {
        margin: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .sns-link {
        padding: clamp(1.2rem, 3vw, 1.6rem) !important;
        font-size: clamp(1rem, 3vw, 1.2rem) !important;
        min-width: clamp(70px, 12vw, 80px) !important;
        max-width: clamp(80px, 14vw, 90px) !important;
        border-radius: 14px !important;
        justify-content: center !important;
    }
    
    .sns-icon {
        width: clamp(28px, 4vw, 32px) !important;
        height: clamp(28px, 4vw, 32px) !important;
    }
    
    .sns-text {
        display: none !important;
    }
}

/* -----------------------------------------
   [共通] ヘッダー
   処理: 固定ヘッダーの高さ・ロゴ・右側エリアのフレックス配置。
         下層ページは margin-top でヘッダー分の被りを避ける。
   ----------------------------------------- */

/* ヘッダー */
.header {
    position: fixed;                   /* 固定位置 */
    top: 0;                           /* 上部に固定 */
    left: 0;                          /* 左端に配置 */
    width: 100%;                      /* 幅100% */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 220, 0.9)); /* 半透明の背景 */
    backdrop-filter: blur(10px);      /* 背景をぼかす */
    border-bottom: 2px solid rgba(255, 215, 0, 0.3); /* 薄い黄色のボーダー */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); /* 影効果 */
    z-index: 1000;                    /* 最前面に表示 */
    transition: all 0.3s ease;        /* アニメーション効果 */
    overflow: visible;
}

/* ヘッダーコンテナ */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(0.5rem, 2vw, 1rem);
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    gap: clamp(0.5rem, 1vw, 1rem);
    flex-wrap: wrap;
    min-height: clamp(60px, 8vw, 80px);
    overflow: visible;
}

/* ロゴエリア */
.logo-area {
    display: flex;
    align-items: center;
    padding: 0.5rem;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    height: 90px; /* 固定サイズ */
    width: auto;
    max-width: 280px; /* 固定サイズ */
    min-width: 0;
    object-fit: contain;
    flex-shrink: 0;
}

/* スマホ対応時のロゴ拡大 */
@media screen and (max-width: 768px) {
    .logo-img {
        height: clamp(100px, 12vw, 120px) !important;
        max-width: clamp(300px, 35vw, 350px) !important;
    }
}

@media screen and (max-width: 480px) {
    .logo-img {
        height: clamp(110px, 15vw, 130px) !important;
        max-width: clamp(320px, 40vw, 380px) !important;
    }
}

@media screen and (max-width: 360px) {
    .logo-img {
        height: clamp(120px, 18vw, 140px) !important;
        max-width: clamp(340px, 45vw, 400px) !important;
    }
}

/* 右側エリア（ハンバーガーメニュー + SNSリンク） */
.header-right {
    display: flex;
    align-items: center;
    gap: clamp(0.25rem, 0.5vw, 0.75rem);
    flex-shrink: 0;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
    flex-wrap: wrap;
    flex-direction: row;               /* 左から右への配置を明示 */
}

/* SNSリンクエリア */
.sns-area {
    display: flex;
    gap: clamp(0.25rem, 0.5vw, 0.75rem);
    align-items: center;
    flex-wrap: wrap;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
}

/* -----------------------------------------
   [共通] ハンバーガーメニュー
   処理: モバイル用3本線ボタン。active 時は上線・下線が回転して × 形に変形。
         JS が aria-expanded / active クラスを切り替えて開閉する。
   ----------------------------------------- */

/* ハンバーガーメニューボタン */
.hamburger-menu {
    --hamburger-line-width: clamp(18px, 4vw, 22px);
    --hamburger-line-height: 2px;
    --hamburger-line-gap: 5px;
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    border: 2px solid #20B2AA;
    border-radius: 6px;
    cursor: pointer;
    padding: 0.65rem;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(32, 178, 170, 0.4);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--hamburger-line-gap);
    margin-right: clamp(0.25rem, 0.5vw, 0.5rem);
    flex-shrink: 0;
    overflow: visible;
    position: relative;
}

/* ハンバーガーメニューの線（三本横線） */
.hamburger-line {
    display: block;
    width: var(--hamburger-line-width);
    height: var(--hamburger-line-height);
    background-color: #ffffff;
    margin: 0;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 1px;
    box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transform-origin: center;
}

/* 開いた状態: 上線・下線を中央へ移動して45度回転 → × 形 */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(calc(var(--hamburger-line-gap) + var(--hamburger-line-height))) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(calc(-1 * (var(--hamburger-line-gap) + var(--hamburger-line-height)))) rotate(-45deg);
}

/* ハンバーガーメニューのホバー効果 */
.hamburger-menu:hover {
    background: linear-gradient(135deg, #ffffff, #50C878); /* ホバー時の白色とエメラルドグリーンのグラデーション */
    transform: scale(1.05);            /* ホバー時に少し拡大（1.1から1.05に調整） */
    box-shadow: 0 4px 15px rgba(80, 200, 120, 0.5); /* ホバー時のエメラルドグリーンの影を強調 */
    border-color: #50C878;             /* ホバー時のボーダー色（エメラルドグリーン） */
}

/* ハンバーガーメニューのアクティブ状態 */
.hamburger-menu.active {
    background: linear-gradient(135deg, #ffffff, #50C878); /* アクティブ時も白色とエメラルドグリーンのグラデーション */
    border-color: #50C878;             /* アクティブ時のボーダー色（エメラルドグリーン） */
    box-shadow: 0 4px 15px rgba(80, 200, 120, 0.4); /* アクティブ時のエメラルドグリーンの影 */
}

/* スマホ対応時のハンバーガーメニュー */
@media screen and (max-width: 768px) {
    .hamburger-menu {
        --hamburger-line-width: clamp(20px, 4vw, 24px);
        --hamburger-line-height: 3px;
        --hamburger-line-gap: 6px;
        padding: 0.75rem;
        border-radius: 8px;
        min-width: 48px;
        min-height: 48px;
    }
}

@media screen and (max-width: 480px) {
    .hamburger-menu {
        --hamburger-line-width: clamp(22px, 4.5vw, 26px);
        --hamburger-line-height: 3px;
        --hamburger-line-gap: 6px;
        padding: 0.8rem;
        border-radius: 10px;
        min-width: 52px;
        min-height: 52px;
    }
}

@media screen and (max-width: 360px) {
    .hamburger-menu {
        --hamburger-line-width: clamp(24px, 5vw, 28px);
        --hamburger-line-height: 3px;
        --hamburger-line-gap: 7px;
        padding: 0.85rem;
        border-radius: 12px;
        min-width: 56px;
        min-height: 56px;
    }
}

/* -----------------------------------------
   [共通] ナビゲーションメニュー
   処理: PCでは横並び、SPではドロワー展開。日英ラベルの並びを制御。
   ----------------------------------------- */

/* ナビゲーションメニュー */
.nav-menu {
    display: none;                     /* 初期状態では非表示 */
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-bottom: 2px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
    width: 100%;
    max-width: 100vw;                  /* ビューポート幅を超えない */
    overflow: hidden;                   /* はみ出しを隠す */
    box-sizing: border-box;            /* パディングとボーダーを幅に含める */
}

/* ナビメニューがアクティブな場合 */
.nav-menu.active {
    display: block;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.nav-item {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

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

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(0.75rem, 2vw, 1.5rem) clamp(0.5rem, 1.5vw, 1rem); /* 左右の余白を減らす */
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.nav-link:hover {
    background-color: #f8f9fa;
    color: #007bff;
    transform: translateY(-2px);
}

.nav-text-ja {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.7rem, 2vw, 0.85rem); /* フォントサイズを小さく */
    font-weight: 600;
    margin-bottom: clamp(0.15rem, 0.5vw, 0.25rem);
    color: #212529;
    transition: color 0.3s ease;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
}

.nav-text-en {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.5rem, 1.5vw, 0.65rem); /* フォントサイズを小さく */
    font-weight: 400;
    color: #6c757d;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
}

/* -----------------------------------------
   [共通] レスポンシブ対応（ヘッダー〜ナビ周辺）
   処理: 画面幅に応じてヘッダー構成・ナビ表示を切り替えるメディアクエリ。
   ----------------------------------------- */

/* 1024px以下ではハンバーガーメニューを表示 */
@media screen and (max-width: 1023px) {
    .hamburger-menu {
        display: flex !important; /* 強制的に表示 */
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: block;
    }
}

/* 1024px以上ではハンバーガーメニューを非表示、ナビメニューを表示 */
@media screen and (min-width: 1024px) {
    .hamburger-menu {
        display: none !important; /* ハンバーガーメニューを非表示 */
    }
    
    .nav-menu {
        display: block !important; /* ナビメニューを表示 */
    }
    
    .nav-list {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        max-width: min(1000px, 90vw);
        margin: 0 auto;
        padding: 0 clamp(0.4rem, 1.5vw, 0.8rem);
        gap: clamp(0.4rem, 0.8vw, 0.8rem);
        width: 100%;
        overflow: hidden;
        flex-wrap: wrap;
    }
    
    .nav-item {
        border-bottom: none;
        border-right: 2px solid #e9ecef;
        flex: none;
        padding: 0 clamp(0.4rem, 0.8vw, 0.8rem);
        text-align: center;
        min-width: 0;
        max-width: clamp(100px, 12vw, 150px);
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .nav-item:last-child {
        border-right: none;
    }
    
    .nav-link {
        padding: clamp(1.2rem, 2.5vw, 1.6rem) clamp(0.6rem, 1.2vw, 1rem);
        min-height: clamp(65px, 8vw, 80px);
        transition: all 0.4s ease;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .nav-text-ja {
        font-size: clamp(0.6rem, 1.6vw, 0.8rem);
        font-weight: 700;
        margin-bottom: clamp(0.25rem, 0.6vw, 0.35rem);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .nav-text-en {
        font-size: clamp(0.45rem, 1.1vw, 0.55rem);
        font-weight: 500;
        letter-spacing: 0.08em;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .nav-link:hover {
        background-color: #f1f3f4;
        transform: translateY(-3px);
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.15);
    }
    
    /* デスクトップでのヘッダー調整 */
    .header-container {
        padding: clamp(0.75rem, 2.5vw, 1.5rem);
        gap: clamp(1rem, 2vw, 2rem);
    }
    
    .header-right {
        gap: clamp(0.5rem, 1.5vw, 1rem);
    }
    
    .sns-area {
        gap: clamp(0.5rem, 1.5vw, 1rem);
    }
}

/* タブレットサイズでの調整 */
@media screen and (max-width: 768px) {
    .header-container {
        padding: clamp(0.5rem, 1.5vw, 0.75rem);
        gap: clamp(0.4rem, 1vw, 0.5rem);
        min-height: clamp(50px, 7vw, 70px);
    }
    
    .header-right {
        gap: clamp(0.3rem, 0.8vw, 0.5rem);
        flex-direction: row;           /* 左から右への配置を維持 */
    }
    
    .sns-area {
        gap: clamp(0.3rem, 0.8vw, 0.5rem);
    }
    
    .sns-link {
        padding: clamp(0.4rem, 1.2vw, 0.75rem);
        font-size: clamp(0.7rem, 2vw, 0.8rem);
        min-width: clamp(32px, 6vw, 40px);
        max-width: clamp(40px, 8vw, 50px);
    }
    
    .sns-text {
        display: none;
    }
    
    .hamburger-menu {
        padding: 0.65rem;
        margin-right: clamp(0.2rem, 0.5vw, 0.3rem);
    }
    
    /* ロゴのサイズ変更設定を削除 */
}

/* スマートフォンサイズでの調整 */
@media screen and (max-width: 480px) {
    .header-container {
        flex-direction: row;           /* 横並びに変更 */
        align-items: center;           /* 中央揃えを維持 */
        gap: clamp(0.2rem, 0.8vw, 0.4rem); /* 間隔を大幅に縮小 */
        padding: clamp(0.3rem, 1vw, 0.5rem); /* パディングも縮小 */
        min-height: clamp(45px, 6vw, 60px);
    }
    
    .header-right {
        justify-content: flex-end;     /* 右寄せに変更 */
        gap: clamp(0.15rem, 0.4vw, 0.25rem); /* ボタン間の間隔を縮小 */
        width: auto;                   /* 幅を自動調整 */
        max-width: auto;               /* 最大幅を自動調整 */
        flex-direction: row;           /* 左から右への配置を維持 */
    }
    
    .sns-area {
        gap: clamp(0.15rem, 0.4vw, 0.25rem); /* SNSボタン間の間隔を縮小 */
        justify-content: flex-end;     /* 右寄せに変更 */
        width: auto;                   /* 幅を自動調整 */
        max-width: auto;               /* 最大幅を自動調整 */
    }
    
    .sns-link {
        padding: clamp(0.3rem, 1vw, 0.4rem);
        min-width: clamp(28px, 5vw, 32px);
        max-width: clamp(32px, 6vw, 36px);
        justify-content: center;
        flex: 1;
        max-width: clamp(40px, 8vw, 50px);
    }
    
    .hamburger-menu {
        padding: 0.65rem;
        margin-right: clamp(0.05rem, 0.2vw, 0.1rem);
    }
    
    .nav-link {
        padding: clamp(0.6rem, 2.5vw, 1rem) clamp(0.4rem, 1.5vw, 0.75rem); /* 左右の余白を減らす */
    }
    
    .nav-text-ja {
        font-size: clamp(0.65rem, 2.5vw, 0.8rem);
    }
    
    .nav-text-en {
        font-size: clamp(0.45rem, 2vw, 0.6rem);
    }
}

/* 425px以下のスマートフォンサイズでの調整 */
@media screen and (max-width: 425px) {
    .header-container {
        flex-direction: row !important; /* 横並びを強制 */
        align-items: center !important; /* 中央揃えを維持 */
        gap: clamp(0.15rem, 0.6vw, 0.3rem) !important; /* 間隔をさらに縮小 */
        padding: clamp(0.25rem, 0.8vw, 0.4rem) !important; /* パディングもさらに縮小 */
        min-height: clamp(65px, 10vw, 85px) !important; /* ヘッダーの高さをさらに拡大 */
    }
    
    .logo-area {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        max-width: 100% !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important; /* 左寄せに変更 */
        padding: clamp(0.2rem, 0.6vw, 0.4rem) !important; /* ロゴエリアのパディングを縮小 */
        margin: clamp(0.1rem, 0.5vw, 0.3rem) 0 !important; /* 上下のマージンを縮小 */
        min-height: clamp(60px, 8vw, 75px) !important; /* ロゴエリアの最小高さを拡大 */
    }
    
    .header-right {
        justify-content: flex-end !important; /* 右寄せを強制 */
        gap: clamp(0.1rem, 0.3vw, 0.2rem) !important; /* ボタン間の間隔をさらに縮小 */
        width: auto !important;              /* 幅を自動調整 */
        max-width: auto !important;         /* 最大幅を自動調整 */
        flex-direction: row;
    }
    
    .sns-area {
        gap: clamp(0.1rem, 0.3vw, 0.2rem) !important; /* SNSボタン間の間隔をさらに縮小 */
        justify-content: flex-end !important; /* 右寄せを強制 */
        width: auto !important;              /* 幅を自動調整 */
        max-width: auto !important;         /* 最大幅を自動調整 */
    }
    
    .sns-link {
        padding: clamp(0.25rem, 0.9vw, 0.35rem);
        min-width: clamp(26px, 4.8vw, 30px);
        max-width: clamp(30px, 5.5vw, 34px);
        justify-content: center;
        flex: 1;
        max-width: clamp(38px, 7.5vw, 48px);
    }
    
    .hamburger-menu {
        padding: 0.65rem;
        margin-right: clamp(0.03rem, 0.15vw, 0.08rem);
    }
    
    .nav-link {
        padding: clamp(0.55rem, 2.3vw, 0.9rem) clamp(0.35rem, 1.3vw, 0.7rem);
    }
    
    .nav-text-ja {
        font-size: clamp(0.6rem, 2.3vw, 0.75rem);
    }
    
    .nav-text-en {
        font-size: clamp(0.4rem, 1.8vw, 0.55rem);
    }
}

/* 超小画面での調整 */
@media screen and (max-width: 320px) {
    .header-container {
        flex-direction: row;           /* 横並びを維持 */
        align-items: center;           /* 中央揃えを維持 */
        padding: clamp(0.2rem, 0.6vw, 0.4rem); /* パディングを縮小 */
        gap: clamp(0.1rem, 0.4vw, 0.25rem); /* 間隔をさらに縮小 */
        min-height: clamp(40px, 5vw, 50px);
    }
    
    .header-right {
        flex-direction: row;           /* 左から右への配置を維持 */
        justify-content: flex-end;     /* 右寄せに変更 */
        width: auto;                   /* 幅を自動調整 */
        max-width: auto;               /* 最大幅を自動調整 */
        gap: clamp(0.08rem, 0.25vw, 0.15rem); /* ボタン間の間隔をさらに縮小 */
    }
    
    .sns-area {
        justify-content: flex-end;     /* 右寄せに変更 */
        width: auto;                   /* 幅を自動調整 */
        max-width: auto;               /* 最大幅を自動調整 */
        gap: clamp(0.08rem, 0.25vw, 0.15rem); /* SNSボタン間の間隔をさらに縮小 */
    }
    
    .sns-link {
        padding: clamp(0.25rem, 0.9vw, 0.35rem);
        min-width: clamp(26px, 4.8vw, 30px);
        max-width: clamp(30px, 5.5vw, 34px);
        justify-content: center;
        flex: 1;
        max-width: clamp(38px, 7.5vw, 48px);
    }
    
    .hamburger-menu {
        padding: 0.65rem;
        margin-right: clamp(0.02rem, 0.1vw, 0.05rem);
    }
    }

/* 大画面での調整 */
@media screen and (min-width: 1440px) {
    .header-container {
        max-width: 100vw;
        margin: 0 auto;
        padding: clamp(1rem, 2.5vw, 2rem);
        overflow: visible;
    }
    
    .header-right {
        gap: clamp(1rem, 2vw, 1.5rem);
        overflow: visible;
    }
    
    .sns-area {
        gap: clamp(1rem, 2vw, 1.5rem);
        overflow: visible;
    }
    
    .sns-link {
        padding: clamp(0.8rem, 1.5vw, 1.2rem);
        font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    }
    
    .hamburger-menu {
        padding: 0.65rem;
    }
    }

/* 超高解像度ディスプレイでの調整 */
@media screen and (min-width: 1920px) {
    .header-container {
        max-width: 100vw;
        padding: clamp(1.5rem, 3vw, 2.5rem);
        overflow: visible;
    }
    
    /* ロゴのサイズ変更設定を削除 */
    
    .header-right {
        gap: clamp(1.5rem, 2.5vw, 2rem);
        overflow: visible;
    }
    
    .sns-area {
        gap: clamp(1.5rem, 2.5vw, 2rem);
        overflow: visible;
    }
    
    .sns-link {
        padding: clamp(1rem, 2vw, 1.5rem);
        font-size: clamp(1rem, 1.5vw, 1.2rem);
    }
    
    .hamburger-menu {
        padding: 0.65rem;
    }
    }

/* -----------------------------------------
   [共通] メインコンテンツ
   処理: ヒーロー、特徴、お知らせ、アクセスなど top ページ各セクションの
         余白・グリッド・カード見た目を定義する中核ブロック。
   ----------------------------------------- */

/* メインコンテンツ全体の調整（固定ヘッダーの下に配置） */
main {
    margin-top: 180px; /* 固定ヘッダーとナビメニューの高さ分のマージンを追加 */
}

/* コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

/* セクションタイトル */
.section-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    color: #13c439;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #3d97a3, #9ab0c9);
    border-radius: 2px;
}

/* ヒーローセクション */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 216, 231, 0.4), rgba(11, 202, 216, 0.3));
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url() center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: clamp(2rem, 4vw, 4rem);
}

.hero-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #888888; /* 薄いグレーに変更 */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* 影も薄く調整 */
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    display: inline-block;
    padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1.5rem, 3vw, 2rem);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #ffffff, #ffffcc);
    color: #2c5530;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.hero-btn.primary:hover {
    background: linear-gradient(135deg, #ffffcc, #ffff99);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.hero-btn.secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* 特徴セクション */
.features-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: 3rem;
}

.feature-card {
    background: transparent;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(32, 178, 170, 0.1);
    backdrop-filter: blur(10px);
}



.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 1rem;
}

.feature-description {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #666;
    line-height: 1.6;
}

/* 保護者様用書類ダウンロードセクション */
.download-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 248, 220, 0.1));
}

/* ひかりの木保育園ホームページセクション */
.homepage-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(240, 248, 255, 0.1));
}

.homepage-content {
    text-align: center;
    margin-bottom: 3rem;
}

.homepage-description {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.homepage-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
    border: 1px solid rgba(74, 103, 65, 0.1);
    backdrop-filter: blur(10px);
}

.homepage-info h3 {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #20B2AA;
    margin-bottom: 1rem;
    font-weight: 700;
}

.homepage-info p {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.homepage-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(32, 178, 170, 0.3);
}

.homepage-action {
    text-align: center;
}

.btn-homepage {
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
    border: 2px solid transparent;
}

.btn-homepage:hover {
    background: linear-gradient(135deg, #48D1CC, #00CED1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
    border-color: #00CED1;
}

.btn-icon {
    font-size: 1.2rem;
}

.download-content {
    text-align: center;
    margin-bottom: 3rem;
}

.download-description {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: 2rem;
}

.download-item {
    background: rgba(255, 255, 255, 0.9);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 103, 65, 0.1);
    backdrop-filter: blur(10px);
}

.download-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.download-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.download-icon svg {
    width: 30px;
    height: 30px;
}

.download-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.download-description {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.download-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(0.6rem, 1.5vw, 0.8rem) clamp(1rem, 2vw, 1.2rem);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.download-btn.primary {
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(32, 178, 170, 0.3);
}

.download-btn.primary:hover {
    background: linear-gradient(135deg, #48D1CC, #00CED1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.4);
}

.download-btn.secondary {
    background: transparent;
    color: #20B2AA;
    border-color: #20B2AA;
}

.download-btn.secondary:hover {
    background: rgba(32, 178, 170, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.2);
}

.download-btn svg {
    width: 16px;
    height: 16px;
}

/* お知らせセクション */
.news-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    background: rgba(248, 249, 250, 0.9);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 15px;
    border-left: 4px solid #20B2AA;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.news-item:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.news-date {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: 0.9rem;
    color: #20B2AA;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.news-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-title a {
    color: #20B2AA;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #40E0D0;
}

.news-excerpt {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* アクセスセクション */
.access-section {
    padding: clamp(2rem, 4vw, 3rem) 0;
    color: #333;
}

.access-lead {
    margin: 0 auto 1.5rem;
    max-width: 40rem;
    line-height: 1.7;
    color: #555;
}

.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;
}

/* -----------------------------------------
   [共通/トップ] 園の基本情報・FAQ（GEO向け）
   処理: 事実情報の定義リストと details/summary FAQ の可読レイアウト。
         スクリーンリーダー専用 .sr-only、アクセス導入文も含む。
   ----------------------------------------- */
.nursery-facts-section,
.faq-section {
    padding: clamp(2rem, 4vw, 3rem) 0;
}

.nursery-facts {
    display: grid;
    gap: 0.75rem;
    max-width: 52rem;
    margin: 0 auto;
}

.nursery-fact {
    display: grid;
    grid-template-columns: 8rem 1fr;
    gap: 1rem;
    padding: 0.9rem 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    text-align: left;
}

.nursery-fact dt {
    font-weight: 600;
    color: #2a7a74;
}

.nursery-fact dd {
    margin: 0;
    color: #444;
    line-height: 1.6;
}

.faq-list {
    max-width: 52rem;
    margin: 0 auto;
    display: grid;
    gap: 0.75rem;
}

.faq-section .faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0;
}

.faq-section summary {
    cursor: pointer;
    font-weight: 600;
    color: #333;
    list-style: none;
    padding: 0.75rem 0;
}

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

.faq-section .faq-item p {
    margin: 0 0 0.9rem;
    color: #555;
    line-height: 1.7;
}

.faq-more {
    text-align: center;
    margin-top: 1.5rem;
}

.faq-more a {
    color: #2a7a74;
    font-weight: 600;
}

@media screen and (max-width: 640px) {
    .nursery-fact {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }
}

.access-content {
    text-align: center;
    padding: 0;
    margin: 0;
}

.map-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    backdrop-filter: blur(10px);
    position: relative;
}

.map-container iframe {
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 600px;
    display: block;
}

.google-maps-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #20B2AA, #40E0D0);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
}

.google-maps-btn:hover {
    background: linear-gradient(135deg, #48D1CC, #00CED1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
}

.google-maps-btn svg {
    width: 16px;
    height: 16px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .homepage-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .homepage-features {
        justify-content: center;
    }
    
    .map-container {
        padding: 0;
        margin: 0;
        border-radius: 15px;
    }
    
    .map-container iframe {
        height: 450px;
        border-radius: 15px;
    }
}

@media screen and (max-width: 480px) {
    .hero-content {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .news-item {
        padding: 1rem;
    }
    
    .map-container {
        padding: 0;
        margin: 0;
        border-radius: 10px;
    }
    
    .map-container iframe {
        height: 350px;
        border-radius: 10px;
    }
}

/* -----------------------------------------
   [共通] フッター
   処理: ロゴ・住所・運営情報の3カラムとコピーライト帯のレイアウト。
   ----------------------------------------- */

.footer {
    background: linear-gradient(135deg, #40E0D0, #48D1CC); /* ターコイズブルーのグラデーション */
    color: #ffffff;
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.9), rgba(72, 209, 204, 0.9));
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
}

.footer-section {
    text-align: center;
}

.footer-logo {
    width: 280px;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: brightness(0) invert(0.9);
    transform: scale(1.05);
}

.footer-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-description {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.footer-subtitle {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-address {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-style: normal;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.footer-address p {
    margin-bottom: 0.5rem;
}

.footer-address a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-address a:hover {
    color: #E0FFFF;
    text-decoration: underline;
}

.footer-section p {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-copyright {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* フッターのレスポンシブ対応 */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-logo {
        width: 240px;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-logo {
        width: 200px;
    }
}

.download-grid.show {
    opacity: 1;
    max-height: 2000px;
    margin-top: 2rem;
}

/* -----------------------------------------
   [共通/トップ] 企業主導型保育園について
   処理: 説明文・特徴アイコン・メリットカードのグリッド配置。
   ----------------------------------------- */

/* 企業主導型保育園についてセクション */
.corporate-nursery-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 248, 220, 0.1));
    position: relative;
    overflow: hidden;
}

.corporate-nursery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23f0f8ff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.corporate-nursery-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0;
}

.corporate-nursery-intro {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding: 0;
}

.corporate-nursery-intro::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    border-radius: 2px;
}

.corporate-nursery-subtitle {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #20B2AA;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(32, 178, 170, 0.1);
}

.corporate-nursery-description {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0;
    position: relative;
}

.corporate-nursery-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.corporate-feature-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 25px;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(32, 178, 170, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    text-align: center;
    border: 1px solid rgba(32, 178, 170, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.corporate-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
}

.corporate-feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 25px 25px 0;
    border-color: transparent rgba(32, 178, 170, 0.1) transparent transparent;
}

.corporate-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 
        0 4px 15px rgba(32, 178, 170, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.corporate-feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.corporate-feature-icon svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.corporate-feature-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: #20B2AA;
    margin-bottom: 1rem;
    position: relative;
}

.corporate-feature-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    border-radius: 1px;
}

.corporate-feature-text {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #666;
    line-height: 1.6;
    position: relative;
}

.corporate-nursery-benefits {
    text-align: center;
    position: relative;
}

.corporate-nursery-benefits::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    border-radius: 2px;
}

.benefits-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #20B2AA;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(32, 178, 170, 0.1);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 25px;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(32, 178, 170, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    text-align: left;
    border: 1px solid rgba(32, 178, 170, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
}

.benefit-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: #20B2AA;
    margin-bottom: 1rem;
    text-align: center;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: white;
    border-radius: 25px;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 
        0 4px 15px rgba(32, 178, 170, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.benefit-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.benefit-list li {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #20B2AA;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(32, 178, 170, 0.1);
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.benefit-list li:last-child {
    border-bottom: none;
}

.benefit-list li::before {
    display: none;
}

/* 企業主導型保育園セクションのレスポンシブ対応 */
@media screen and (max-width: 768px) {
    .corporate-nursery-section {
        padding: 2rem 0 !important;
    }
    
    .corporate-nursery-content {
        padding: 0 1rem !important;
        margin: 0 !important;
    }
    
    .corporate-nursery-intro {
        margin: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        border: 0 !important;
        outline: 0 !important;
        box-sizing: border-box !important;
    }
    
    .corporate-nursery-intro::after {
        display: none !important;
    }
    
    /* デバッグ用：背景色を追加して要素の境界を確認 */
    .corporate-nursery-description {
        background-color: rgba(255, 0, 0, 0.1) !important;
        border: 1px solid red !important;
    }
    
    .corporate-nursery-features {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-bottom: 2rem !important;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .corporate-feature-item,
    .benefit-card {
        padding: clamp(1.5rem, 3vw, 2rem) !important;
        margin: 0 !important;
        border-radius: 20px !important;
    }
    
    .corporate-feature-text {
        margin-bottom: 0 !important;
    }
    
    .corporate-nursery-description {
        margin: 0 !important;
        font-size: clamp(0.9rem, 2vw, 1.1rem) !important;
        line-height: 1.4 !important;
    }
    
    .benefit-list {
        margin-top: 1rem !important;
    }
    
    .benefit-list li {
        padding: 0.6rem 0 !important;
    }
}

@media screen and (max-width: 480px) {
    .corporate-nursery-section {
        padding: 2rem 0 !important;
    }
    
    .corporate-nursery-content {
        padding: 0 0.8rem !important;
        margin: 0 !important;
    }
    
    .corporate-nursery-intro {
        margin-bottom: 0.3rem !important;
        padding: 0 !important;
    }
    
    .corporate-nursery-intro::after {
        display: none !important;
    }
    
    .corporate-nursery-features,
    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }
    
    .corporate-feature-item,
    .benefit-card {
        padding: clamp(1.2rem, 2.5vw, 1.8rem) !important;
        border-radius: 20px !important;
        margin: 0 !important;
    }
    
    .corporate-feature-text {
        margin-bottom: 0 !important;
    }
    
    .corporate-nursery-description {
        margin: 0 !important;
        font-size: clamp(0.8rem, 1.8vw, 1rem) !important;
        line-height: 1.3 !important;
    }
    
    .benefit-list {
        margin-top: 0.8rem !important;
    }
    
    .benefit-list li {
        padding: 0.5rem 0 !important;
    }
    
    .corporate-feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .corporate-feature-icon svg {
        width: 35px;
        height: 35px;
    }
}

/* 超小画面での調整 */
@media screen and (max-width: 360px) {
    .corporate-nursery-section {
        padding: 1.5rem 0 !important;
    }
    
    .corporate-nursery-content {
        padding: 0 0.5rem !important;
        margin: 0 !important;
    }
    
    .corporate-nursery-intro {
        margin-bottom: 0.2rem !important;
        padding: 0 !important;
    }
    
    .corporate-nursery-intro::after {
        display: none !important;
    }
    
    .corporate-nursery-features,
    .benefits-grid {
        gap: 1rem !important;
    }
    
    .corporate-feature-item,
    .benefit-card {
        padding: clamp(1rem, 2vw, 1.5rem) !important;
        border-radius: 18px !important;
        margin: 0 !important;
    }
    
    .corporate-feature-text {
        margin-bottom: 0 !important;
    }
    
    .corporate-nursery-description {
        margin: 0 !important;
        font-size: clamp(0.7rem, 1.6vw, 0.9rem) !important;
        line-height: 1.2 !important;
    }
    
    .benefit-list {
        margin-top: 0.6rem !important;
    }
    
    .benefit-list li {
        padding: 0.4rem 0 !important;
    }
    
    .corporate-feature-icon {
        width: 60px !important;
        height: 60px !important;
    }
    
    .corporate-feature-icon svg {
        width: 30px !important;
        height: 30px !important;
    }
}

/* -----------------------------------------
   [共通/トップ] 保護者向け書類ダウンロード
   処理: トグル表示されるPDF一覧グリッドとボタン見た目。
         JS(#downloadToggleBtn)で show/hide する前提。
   ----------------------------------------- */

.download-content {
    text-align: center;
    margin-bottom: 3rem;
}

.download-description {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ダウンロードトグルボタンの装飾 */
.download-toggle-container {
    margin-bottom: 2rem;
    text-align: center;
}

.download-toggle-btn {
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: white;
    border: none;
    padding: clamp(1rem, 2.5vw, 1.5rem) clamp(2rem, 4vw, 3rem);
    border-radius: 50px;
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
    position: relative;
    overflow: hidden;
}

.download-toggle-btn::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;
}

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

.download-toggle-btn:hover {
    background: linear-gradient(135deg, #48D1CC, #00CED1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.4);
}

.download-toggle-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
}

.download-toggle-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.3), 0 4px 15px rgba(32, 178, 170, 0.3);
}

.toggle-text {
    font-weight: 600;
    letter-spacing: 0.05em;
}

.toggle-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.download-toggle-btn[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

/* ダウンロードグリッドのアニメーション */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: 2rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.download-grid.show {
    opacity: 1;
    max-height: 2000px;
    margin-top: 2rem;
}

/* -----------------------------------------
   [共通/トップ] 施設紹介への導線セクション
   処理: テキスト＋画像の2カラムとCTAボタン。
   ----------------------------------------- */
.facility-intro-section {
    padding: clamp(3rem, 6vw, 5rem) 0 !important;
    background: transparent !important;
    position: relative;
    width: 100%;
    margin: 0;
}

.facility-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.facility-intro-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: clamp(2rem, 5vw, 4rem) !important;
    align-items: center !important;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.facility-intro-text {
    padding: clamp(1rem, 3vw, 2rem) !important;
    width: 100%;
    box-sizing: border-box;
}

.facility-intro-description {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif !important;
    font-size: clamp(1rem, 2.2vw, 1.3rem) !important;
    color: #555 !important;
    line-height: 1.8 !important;
    margin-bottom: 2rem !important;
    text-align: left !important;
    display: block;
}

.facility-intro-actions {
    text-align: left !important;
    width: 100%;
    margin-top: 1.5rem;
}

.facility-intro-actions .btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    padding: clamp(1rem, 2.5vw, 1.3rem) clamp(2rem, 4vw, 2.5rem) !important;
    background: linear-gradient(135deg, #40E0D0, #20B2AA) !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif !important;
    font-size: clamp(1rem, 2.2vw, 1.2rem) !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3) !important;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.facility-intro-actions .btn::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;
}

.facility-intro-actions .btn:hover::before {
    left: 100%;
}

.facility-intro-actions .btn:hover {
    background: linear-gradient(135deg, #48D1CC, #00CED1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.4);
}

.facility-intro-actions .btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.facility-intro-actions .btn:hover svg {
    transform: scale(1.1);
}

.facility-intro-image {
    position: relative !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box;
}

.facility-intro-img {
    width: 100% !important;
    height: auto !important;
    min-height: 300px !important;
    max-height: 400px !important;
    object-fit: cover !important;
    border-radius: 15px !important;
    transition: transform 0.3s ease !important;
    display: block;
}


/* 大画面での調整 */
@media screen and (min-width: 1200px) {
    .facility-intro-content {
        gap: clamp(3rem, 5vw, 5rem) !important;
        padding: 0 2rem !important;
    }
    
    .facility-intro-text {
        padding: clamp(1.5rem, 3vw, 2.5rem) !important;
    }
    
    .facility-intro-description {
        font-size: clamp(1.1rem, 2.2vw, 1.4rem) !important;
        line-height: 1.8 !important;
    }
    
    .facility-intro-actions .btn {
        padding: clamp(1.2rem, 2.5vw, 1.5rem) clamp(2.5rem, 4vw, 3rem) !important;
        font-size: clamp(1.1rem, 2.2vw, 1.3rem) !important;
    }
    
    .facility-intro-img {
        min-height: 350px !important;
        max-height: 450px !important;
    }
}

/* 施設紹介セクションのレスポンシブ対応 */
@media screen and (max-width: 768px) {
    .facility-intro-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
        padding: 0 1rem !important;
    }
    
    .facility-intro-text {
        order: 2 !important;
        padding: 1rem !important;
        text-align: center !important;
    }
    
    .facility-intro-image {
        order: 1 !important;
        width: 100% !important;
    }
    
    .facility-intro-description {
        text-align: center !important;
    }
    
    .facility-intro-actions {
        text-align: center !important;
    }
}

/* タブレットサイズでの調整 */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .facility-intro-content {
        grid-template-columns: 1fr 1fr !important;
        gap: clamp(1.5rem, 3vw, 2.5rem) !important;
        padding: 0 1rem !important;
    }
    
    .facility-intro-text {
        padding: clamp(0.8rem, 2vw, 1.5rem) !important;
    }
    
    .facility-intro-description {
        font-size: clamp(0.9rem, 2vw, 1.1rem) !important;
    }
    
    .facility-intro-actions .btn {
        padding: clamp(0.8rem, 2vw, 1.1rem) clamp(1.5rem, 3vw, 2rem) !important;
        font-size: clamp(0.9rem, 2vw, 1.1rem) !important;
    }
}

@media screen and (max-width: 480px) {
    .facility-intro-section {
        padding: 2rem 0 !important;
    }
    
    .facility-intro-content {
        gap: 1.5rem !important;
        padding: 0 0.5rem !important;
    }
    
    .facility-intro-text {
        padding: 0.5rem !important;
    }
    
    .facility-intro-image {
        border-radius: 15px !important;
        width: 100% !important;
    }
    
    .facility-intro-img {
        min-height: 250px !important;
        border-radius: 10px !important;
        max-height: 300px !important;
    }
    
    .facility-intro-description {
        font-size: clamp(0.9rem, 2vw, 1rem) !important;
        line-height: 1.6 !important;
    }
    
    .facility-intro-actions .btn {
        padding: clamp(0.7rem, 1.8vw, 1rem) clamp(1.2rem, 2.5vw, 1.8rem) !important;
        font-size: clamp(0.8rem, 1.8vw, 1rem) !important;
    }
}

/* 超小画面での調整 */
@media screen and (max-width: 360px) {
    .facility-intro-section {
        padding: 1.5rem 0 !important;
    }
    
    .facility-intro-content {
        gap: 1rem !important;
        padding: 0 0.3rem !important;
    }
    
    .facility-intro-text {
        padding: 0.3rem !important;
    }
    
    .facility-intro-description {
        font-size: clamp(0.8rem, 1.8vw, 0.9rem) !important;
        line-height: 1.5 !important;
    }
    
    .facility-intro-actions .btn {
        padding: clamp(0.6rem, 1.5vw, 0.8rem) clamp(1rem, 2vw, 1.5rem) !important;
        font-size: clamp(0.7rem, 1.6vw, 0.9rem) !important;
    }
    
    .facility-intro-img {
        min-height: 200px !important;
        max-height: 250px !important;
    }
}

/* -----------------------------------------
   [共通/トップ] お問い合わせへの導線セクション
   処理: フォーム／電話へのCTAボタン配置。
   ----------------------------------------- */
.contact-intro-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(240, 248, 255, 0.1));
    position: relative;
    overflow: hidden;
}

.contact-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23f0f8ff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.contact-intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-intro-text {
    padding: clamp(1rem, 3vw, 2rem);
    text-align: center;
    width: 100%;
}

.contact-intro-description {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    color: #555;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: center;
}


.contact-intro-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    flex-direction: row;
}

/* デスクトップでのみ横並び */
@media screen and (min-width: 1025px) {
    .contact-intro-actions {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
    
    .contact-intro-btn {
        flex: 1 !important;
        max-width: none !important;
    }
}

/* デフォルトでモバイルファーストのレスポンシブ対応 */
@media screen and (max-width: 1024px) {
    .contact-intro-actions {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
    }
    
    .contact-intro-btn {
        width: 100% !important;
        max-width: 400px !important;
        justify-content: center !important;
    }
}

.contact-intro-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: clamp(1rem, 2.5vw, 1.3rem) clamp(2rem, 4vw, 2.5rem);
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
}

.contact-intro-btn::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;
}

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

.contact-intro-btn.btn-primary {
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
}

.contact-intro-btn.btn-primary:hover {
    background: linear-gradient(135deg, #48D1CC, #00CED1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.4);
}

.contact-intro-btn.btn-secondary {
    background: transparent;
    color: #20B2AA;
    border-color: #20B2AA;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.1);
}

.contact-intro-btn.btn-secondary:hover {
    background: rgba(32, 178, 170, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.2);
}

.contact-intro-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.contact-intro-btn:hover svg {
    transform: scale(1.1);
}


/* お問い合わせセクションのレスポンシブ対応 */
@media screen and (max-width: 768px) {
    .contact-intro-content {
        padding: 0 1rem !important;
    }
    
    .contact-intro-text {
        padding: 1rem !important;
    }
    
    .contact-intro-actions {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
    }
    
    .contact-intro-btn {
        width: 100% !important;
        max-width: 400px !important;
        justify-content: center !important;
    }
}

@media screen and (max-width: 480px) {
    .contact-intro-section {
        padding: 2rem 0 !important;
    }
    
    .contact-intro-content {
        padding: 0 0.5rem !important;
    }
    
    .contact-intro-text {
        padding: 0.5rem !important;
    }
    
    .contact-intro-description {
        font-size: clamp(0.9rem, 2vw, 1rem) !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .contact-intro-actions {
        flex-direction: column !important;
        gap: 0.8rem !important;
    }
    
    .contact-intro-btn {
        padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem) !important;
        font-size: clamp(0.9rem, 2vw, 1.1rem) !important;
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
    }
}

/* 超小画面での調整 */
@media screen and (max-width: 360px) {
    .contact-intro-section {
        padding: 1.5rem 0 !important;
    }
    
    .contact-intro-content {
        padding: 0 0.3rem !important;
    }
    
    .contact-intro-text {
        padding: 0.3rem !important;
    }
    
    .contact-intro-description {
        font-size: clamp(0.8rem, 1.8vw, 0.9rem) !important;
        line-height: 1.5 !important;
        margin-bottom: 1.2rem !important;
    }
    
    .contact-intro-actions {
        flex-direction: column !important;
        gap: 0.6rem !important;
    }
    
    .contact-intro-btn {
        padding: clamp(0.7rem, 1.8vw, 0.9rem) clamp(1.2rem, 2.5vw, 1.8rem) !important;
        font-size: clamp(0.8rem, 1.8vw, 1rem) !important;
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
    }
}

/* 大画面での調整 */
@media screen and (min-width: 1200px) {
    .contact-intro-content {
        padding: 0 2rem;
    }
    
    .contact-intro-text {
        padding: clamp(1.5rem, 3vw, 2.5rem);
    }
    
    .contact-intro-description {
        font-size: clamp(1.1rem, 2.2vw, 1.4rem);
        line-height: 1.8;
    }
    
    
    .contact-intro-btn {
        padding: clamp(1.2rem, 2.5vw, 1.5rem) clamp(2.5rem, 4vw, 3rem);
        font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    }
}

/* =============================================================================
   2. ページ固有スタイルの開始
   ---------------------------------------------------------------------------
   以降は「そのページの body に付与したクラス」配下にのみ効くようにしています。
   例: <body class="page-service"> のときだけサービス案内用CSSが適用されます。
   ※ CSSネスト記法を使用（現行ブラウザ対応）
   ※ @keyframes はページ末尾のグローバル領域にまとめて定義
   ============================================================================= */
/* =============================================================================
   3. サービス案内ページ（旧 css/service.css）
   ---------------------------------------------------------------------------
   一日の流れ・特徴カードなど、サービス案内ページ専用の装飾
   適用条件: <body class="page-service">（必要なら他クラスと併用可）
   ============================================================================= */
body.page-service {
/* -----------------------------------------
   [page-service] サービス案内ページ専用
   処理: 下層共通のページタイトル帯 + 一日のスケジュール /
         特徴カード / 料金などサービス固有UI。
         body.page-service 配下でのみ適用。
   ----------------------------------------- */

/* ページタイトルセクション */
.page-title-section {
    background: linear-gradient(135deg, rgba(197, 212, 218, 0.8), rgba(139, 218, 194, 0.8)), url('koya.img/tree2.jpg!d');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: clamp(4rem, 8vw, 6rem) 0;
    text-align: center;
    color: #ffffff;
    margin-top: 180px; /* 固定ヘッダーの高さ分 */
}

.page-title-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.page-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: #666666; /* より濃いグレーに変更 */
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8); /* 白い影を追加 */
}

/* 保育時間・料金セクション */
.service-overview-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 248, 220, 0.1));
}

.service-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: 3rem;
}

.service-overview-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 103, 65, 0.1);
    backdrop-filter: blur(10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-overview-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 1.5rem;
}

.service-overview-content p {
    margin-bottom: 0.5rem;
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
}

.service-time, .service-age, .service-capacity, .service-price {
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 500;
    color: #4a6741;
}

.service-note {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

/* 特色ある保育内容セクション */
.unique-features-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.unique-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: clamp(2.5rem, 5vw, 4rem);
    margin-top: 3rem;
}

.unique-feature-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 103, 65, 0.1);
    backdrop-filter: blur(10px);
}

.unique-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.unique-feature-card:hover .feature-img {
    transform: scale(1.05);
}

.feature-content {
    padding: clamp(1.5rem, 3vw, 2rem);
}

.feature-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 1rem;
}

.feature-description {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    color: #4a6741;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(74, 103, 65, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #40E0D0;
    font-weight: bold;
}

/* 一日の流れセクション */
.daily-schedule-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(240, 248, 255, 0.1));
}

.schedule-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    border-radius: 2px;
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.schedule-time {
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
    min-width: 80px;
    text-align: center;
    margin-right: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
}

.schedule-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: clamp(1rem, 2.5vw, 1.5rem);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(74, 103, 65, 0.1);
    backdrop-filter: blur(10px);
}

.schedule-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.schedule-description {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #666;
    line-height: 1.5;
}

/* 年間行事セクション */
.annual-events-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: 3rem;
}

.event-season {
    background: rgba(255, 255, 255, 0.95);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(74, 103, 65, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}



.season-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: white;
    border-radius: 25px;
    display: inline-block;
}

.event-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.event-list li {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #4a6741;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(74, 103, 65, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.event-list li:last-child {
    border-bottom: none;
}

.event-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #40E0D0;
    font-weight: bold;
    font-size: 1.2em;
}

/* 安全・衛生管理セクション */
.safety-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 248, 220, 0.1));
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: 3rem;
}

.safety-card {
    background: rgba(255, 255, 255, 0.95);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 103, 65, 0.1);
    backdrop-filter: blur(10px);
}



.safety-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #7FDBDA, #20B2AA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.safety-icon svg {
    width: 40px;
    height: 40px;
}

.safety-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: #20B2AA;
    margin-bottom: 1.5rem;
}

.safety-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.safety-list li {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #4a6741;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(74, 103, 65, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.safety-list li:last-child {
    border-bottom: none;
}

.safety-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a6741;
    font-weight: bold;
}





/* お問い合わせセクション */
.contact-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(240, 248, 255, 0.1));
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-description {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(1rem, 2.5vw, 1.5rem) clamp(2rem, 4vw, 3rem);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-btn.primary {
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: #ffffff;
}

.contact-btn.primary:hover {
    background: linear-gradient(135deg, #48D1CC, #00CED1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
}

.contact-btn.secondary {
    background: transparent;
    color: #20B2AA;
    border-color: #20B2AA;
}

.contact-btn.secondary:hover {
    background: rgba(32, 178, 170, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.2);
}

.contact-btn svg {
    width: 20px;
    height: 20px;
}

/* アクティブなナビゲーションリンク */
.nav-link.active {
    background-color: #f8f9fa;
    color: #007bff;
}

.nav-link.active .nav-text-ja,
.nav-link.active .nav-text-en {
    color: #007bff;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .schedule-timeline::before {
        left: 60px;
    }
    
    .schedule-time {
        min-width: 60px;
        margin-right: 1.5rem;
        font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .unique-features-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    

}

@media screen and (max-width: 480px) {
    .page-title-section {
        margin-top: 160px;
        padding: clamp(2rem, 6vw, 4rem) 0;
    }
    
    .schedule-timeline::before {
        left: 50px;
    }
    
    .schedule-time {
        min-width: 50px;
        margin-right: 1rem;
        padding: 0.4rem 0.8rem;
        font-size: clamp(0.7rem, 1.6vw, 0.8rem);
    }
    
    .schedule-content {
        padding: clamp(0.8rem, 2vw, 1.2rem);
    }
    
    .service-overview-grid,
    .unique-features-grid,
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-btn {
        padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1.5rem, 3vw, 2rem);
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
}

/* スマートフォン対応 */
@media screen and (max-width: 480px) {
    .contact-section {
        padding: clamp(2rem, 6vw, 3rem) 0;
    }
    
    .contact-content {
        padding: 0 1rem;
    }
    
    .contact-description {
        font-size: clamp(0.9rem, 2vw, 1rem);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .contact-buttons {
        gap: 0.8rem;
    }
    
    .contact-btn {
        padding: clamp(0.7rem, 1.8vw, 1rem) clamp(1.2rem, 2.5vw, 1.8rem);
        font-size: clamp(0.8rem, 1.8vw, 1rem);
        min-width: 100%;
    }
}

/* 超小画面対応 */
@media screen and (max-width: 360px) {
    .contact-section {
        padding: clamp(1.5rem, 5vw, 2.5rem) 0;
    }
    
    .contact-content {
        padding: 0 0.5rem;
    }
    
    .contact-description {
        font-size: clamp(0.8rem, 1.8vw, 0.9rem);
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .contact-btn {
        padding: clamp(0.6rem, 1.6vw, 0.9rem) clamp(1rem, 2.2vw, 1.6rem);
        font-size: clamp(0.7rem, 1.6vw, 0.9rem);
    }
}

/* 大画面対応 */
@media screen and (min-width: 1200px) {
    .contact-section {
        padding: clamp(5rem, 8vw, 7rem) 0;
    }
    
    .contact-content {
        max-width: 900px;
    }
    
    .contact-description {
        font-size: clamp(1.1rem, 2.2vw, 1.3rem);
        line-height: 1.8;
        margin-bottom: 2.5rem;
    }
    
    .contact-buttons {
        gap: 1.5rem;
    }
    
    .contact-btn {
        padding: clamp(1.2rem, 2.5vw, 1.5rem) clamp(2.5rem, 4vw, 3rem);
        font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    }
}

/* アニメーション効果 */

/* @keyframes は下部の共通キーフレーム領域へ移動 */


.service-overview-card,
.unique-feature-card,
.schedule-item,
.event-season,
.safety-card {
    animation: fadeInUp 0.6s ease-out;
}

.service-overview-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-overview-card:nth-child(3) {
    animation-delay: 0.4s;
}

.unique-feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.unique-feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

.schedule-item:nth-child(even) {
    animation-delay: 0.1s;
}

.event-season:nth-child(2) {
    animation-delay: 0.1s;
}

.event-season:nth-child(3) {
    animation-delay: 0.2s;
}

.event-season:nth-child(4) {
    animation-delay: 0.3s;
}

.safety-card:nth-child(2) {
    animation-delay: 0.2s;
}

.safety-card:nth-child(3) {
    animation-delay: 0.4s;
}

.corporate-feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.corporate-feature-item:nth-child(3) {
    animation-delay: 0.4s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.4s;
}

}

/* =============================================================================
   4. 施設紹介ページ（旧 css/facility.css）
   ---------------------------------------------------------------------------
   施設ギャラリー・会社概要タイルなど
   適用条件: <body class="page-facility">（必要なら他クラスと併用可）
   ============================================================================= */
body.page-facility {
/* -----------------------------------------
   [page-facility] 施設紹介ページ専用
   処理: 施設写真ギャラリー・会社概要タイルのグリッド。
         body.page-facility 配下でのみ適用。
   ----------------------------------------- */

/* ページタイトルセクション */
.page-title-section {
    background: linear-gradient(135deg, rgba(197, 212, 218, 0.8), rgba(139, 218, 194, 0.8)), url('koya.img/tree2.jpg!d');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: clamp(4rem, 8vw, 6rem) 0;
    text-align: center;
    color: #ffffff;
    margin-top: 180px; /* 固定ヘッダーの高さ分 */
}

.page-title-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.page-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: #666666; /* より濃いグレーに変更 */
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8); /* 白い影を追加 */
}

/* 施設紹介セクション */
.facility-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 248, 220, 0.1));
}

/* 施設グリッド - 縦13列横2列のタイルデザイン */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(7, auto);
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* 13個目のタイルを2列目に配置 */
.facility-tile:nth-child(13) {
    grid-column: 2;
    grid-row: 7;
}

/* 施設タイル */
.facility-tile {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(74, 103, 65, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.facility-tile:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

/* 施設ヘッダー */
.facility-header {
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    padding: clamp(1rem, 2vw, 1.5rem);
    border-radius: 15px 15px 0 0;
    text-align: center;
    color: #ffffff;
}



.facility-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* 施設コンテンツ */
.facility-content {
    padding: clamp(1.5rem, 2.5vw, 2rem);
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.facility-description {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

/* 施設画像 */
.facility-image {
    margin-top: 1rem;
    text-align: center;
}

.facility-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.facility-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}



/* お問い合わせセクション */
.contact-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(240, 248, 255, 0.1));
}

/* 会社概要セクション */
.company-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(248, 255, 248, 0.1));
}

/* 会社概要グリッド - 縦13列横2列のタイルデザイン */
.company-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(7, auto);
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* 13個目のタイルを2列目に配置 */
.company-tile:nth-child(13) {
    grid-column: 2;
    grid-row: 7;
}

/* 会社概要タイル */
.company-tile {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(74, 103, 65, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.company-tile:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

/* 会社概要ヘッダー */
.company-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: clamp(1rem, 2vw, 1.5rem);
    border-radius: 15px 15px 0 0;
    text-align: center;
    color: #ffffff;
}

.company-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* 会社概要コンテンツ */
.company-content {
    padding: clamp(1.5rem, 2.5vw, 2rem);
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    text-align: center;
    justify-content: center;
    line-height: 1.2;
    margin: 0;
}

.company-description {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-description {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(1rem, 2.5vw, 1.5rem) clamp(2rem, 4vw, 3rem);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-btn.primary {
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: #ffffff;
}

.contact-btn.primary:hover {
    background: linear-gradient(135deg, #48D1CC, #00CED1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
}

.contact-btn.secondary {
    background: transparent;
    color: #20B2AA;
    border-color: #20B2AA;
}

.contact-btn.secondary:hover {
    background: rgba(32, 178, 170, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.2);
}

.contact-btn svg {
    width: 20px;
    height: 20px;
}

/* アクティブなナビゲーションリンク */
.nav-link.active {
    background-color: #f8f9fa;
    color: #007bff;
}

.nav-link.active .nav-text-ja,
.nav-link.active .nav-text-en {
    color: #007bff;
}

/* レスポンシブ対応 */
@media screen and (max-width: 900px) {
    .facility-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: clamp(1rem, 2vw, 1.5rem);
    }
    
    .facility-tile:nth-child(13) {
        grid-column: 1;
        grid-row: auto;
    }
    
    .company-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: clamp(0.8rem, 1.5vw, 1.2rem);
    }
    
    .company-tile:nth-child(13) {
        grid-column: 1;
        grid-row: auto;
    }
}

@media screen and (max-width: 768px) {
    .facility-content {
        padding: clamp(1rem, 2vw, 1.5rem);
    }
    
    .facility-header {
        padding: clamp(0.8rem, 1.5vw, 1.2rem);
    }
    
    .company-content {
        padding: clamp(0.8rem, 1.5vw, 1.2rem);
        line-height: 1.1;
        margin: 0;
    }
    
    .company-header {
        padding: clamp(0.8rem, 1.5vw, 1.2rem);
    }
    
    .company-description {
        font-size: clamp(1rem, 2.2vw, 1.1rem);
        margin-bottom: 0;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .page-title-section {
        margin-top: 160px;
        padding: clamp(2rem, 6vw, 4rem) 0;
    }
    
    .facility-content {
        padding: clamp(0.8rem, 1.5vw, 1.2rem);
    }
    
    .facility-header {
        padding: clamp(0.6rem, 1.2vw, 1rem);
    }
    
    .facility-title {
        font-size: clamp(1rem, 2vw, 1.2rem);
    }
    
    .facility-description {
        font-size: clamp(0.8rem, 1.6vw, 0.9rem);
    }
    
    .company-content {
        padding: clamp(0.6rem, 1.2vw, 1rem);
        line-height: 1.0;
        margin: 0;
    }
    
    .company-header {
        padding: clamp(0.6rem, 1.2vw, 1rem);
    }
    
    .company-title {
        font-size: clamp(1rem, 2vw, 1.2rem);
    }
    
    .company-description {
        font-size: clamp(1rem, 2.2vw, 1.1rem);
        margin-bottom: 0;
    }
    
    .contact-btn {
        padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1.5rem, 3vw, 2rem);
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
}

/* スマートフォン対応 */
@media screen and (max-width: 480px) {
    .contact-section {
        padding: clamp(2rem, 6vw, 3rem) 0;
    }
    
    .contact-content {
        padding: 0 1rem;
    }
    
    .contact-description {
        font-size: clamp(0.9rem, 2vw, 1rem);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .contact-buttons {
        gap: 0.8rem;
    }
    
    .contact-btn {
        padding: clamp(0.7rem, 1.8vw, 1rem) clamp(1.2rem, 2.5vw, 1.8rem);
        font-size: clamp(0.8rem, 1.8vw, 1rem);
        min-width: 100%;
    }
}

/* 超小画面対応 */
@media screen and (max-width: 360px) {
    .contact-section {
        padding: clamp(1.5rem, 5vw, 2.5rem) 0;
    }
    
    .contact-content {
        padding: 0 0.5rem;
    }
    
    .contact-description {
        font-size: clamp(0.8rem, 1.8vw, 0.9rem);
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .contact-btn {
        padding: clamp(0.6rem, 1.6vw, 0.9rem) clamp(1rem, 2.2vw, 1.6rem);
        font-size: clamp(0.7rem, 1.6vw, 0.9rem);
    }
}

/* 大画面対応 */
@media screen and (min-width: 1200px) {
    .contact-section {
        padding: clamp(5rem, 8vw, 7rem) 0;
    }
    
    .contact-content {
        max-width: 900px;
    }
    
    .contact-description {
        font-size: clamp(1.1rem, 2.2vw, 1.3rem);
        line-height: 1.8;
        margin-bottom: 2.5rem;
    }
    
    .contact-buttons {
        gap: 1.5rem;
    }
    
    .contact-btn {
        padding: clamp(1.2rem, 2.5vw, 1.5rem) clamp(2.5rem, 4vw, 3rem);
        font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    }
}

/* アニメーション効果 */

/* @keyframes は下部の共通キーフレーム領域へ移動 */


.facility-tile {
    animation: fadeInUp 0.6s ease-out;
}

.facility-tile:nth-child(2) {
    animation-delay: 0.1s;
}

.facility-tile:nth-child(3) {
    animation-delay: 0.2s;
}

.facility-tile:nth-child(4) {
    animation-delay: 0.3s;
}

.facility-tile:nth-child(5) {
    animation-delay: 0.4s;
}

.facility-tile:nth-child(6) {
    animation-delay: 0.5s;
}

.facility-tile:nth-child(7) {
    animation-delay: 0.6s;
}

.facility-tile:nth-child(8) {
    animation-delay: 0.7s;
}

.facility-tile:nth-child(9) {
    animation-delay: 0.8s;
}

.facility-tile:nth-child(10) {
    animation-delay: 0.9s;
}

.facility-tile:nth-child(11) {
    animation-delay: 1.0s;
}

.facility-tile:nth-child(12) {
    animation-delay: 1.1s;
}

.facility-tile:nth-child(13) {
    animation-delay: 1.2s;
}

/* 会社概要タイルのアニメーション効果 */
.company-tile {
    animation: fadeInUp 0.6s ease-out;
}

.company-tile:nth-child(2) {
    animation-delay: 0.1s;
}

.company-tile:nth-child(3) {
    animation-delay: 0.2s;
}

.company-tile:nth-child(4) {
    animation-delay: 0.3s;
}

.company-tile:nth-child(5) {
    animation-delay: 0.4s;
}

.company-tile:nth-child(6) {
    animation-delay: 0.5s;
}

.company-tile:nth-child(7) {
    animation-delay: 0.6s;
}

.company-tile:nth-child(8) {
    animation-delay: 0.7s;
}

.company-tile:nth-child(9) {
    animation-delay: 0.8s;
}

.company-tile:nth-child(10) {
    animation-delay: 0.9s;
}

.company-tile:nth-child(11) {
    animation-delay: 1.0s;
}

.company-tile:nth-child(12) {
    animation-delay: 1.1s;
}

.company-tile:nth-child(13) {
    animation-delay: 1.2s;
}

/* カテゴリ別の色分け */
.facility-tile[data-category="屋外施設"] .facility-header {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.facility-tile[data-category="保育室"] .facility-header {
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
}

.facility-tile[data-category="給食施設"] .facility-header {
    background: linear-gradient(135deg, #feca57, #ff9ff3);
}

.facility-tile[data-category="保健施設"] .facility-header {
    background: linear-gradient(135deg, #48dbfb, #0abde3);
}

.facility-tile[data-category="事務施設"] .facility-header {
    background: linear-gradient(135deg, #747d88, #57606f);
}

.facility-tile[data-category="衛生施設"] .facility-header {
    background: linear-gradient(135deg, #2ed573, #00b894);
}

.facility-tile[data-category="遊具施設"] .facility-header {
    background: linear-gradient(135deg, #ff7675, #d63031);
}

.facility-tile[data-category="送迎施設"] .facility-header {
    background: linear-gradient(135deg, #3742fa, #3b82f6);
}



/* スクロール時の視差効果 */
.facility-tile {
    will-change: transform;
}

/* タイルの高さ統一 */
.facility-tile {
    min-height: 400px;
}

@media screen and (max-width: 768px) {
    .facility-tile {
        min-height: 350px;
    }
}

@media screen and (max-width: 480px) {
    .facility-tile {
        min-height: 300px;
    }
    
    .company-tile {
        min-height: 300px;
    }
}

}

/* =============================================================================
   5. お知らせページ（旧 css/news.css）
   ---------------------------------------------------------------------------
   ローディング画面・お知らせカード一覧など
   適用条件: <body class="page-news">（必要なら他クラスと併用可）
   ============================================================================= */
body.page-news {
/* -----------------------------------------
   [page-news] お知らせページ専用
   処理: 初回ローディング演出とお知らせカード一覧。
         body.page-news（必要時 loading 併用）でのみ適用。
   ----------------------------------------- */

/* -----------------------------------------
   [page-news] ローディング画面
   処理: ロゴ／ツリーアニメで初期表示を覆い、
         fade-out クラス付与後に本編を見せる。
   ----------------------------------------- */

/* ローディング中はbodyのスクロールを無効化（ネスト内のため &.loading = body.page-news.loading） */
&.loading {
    overflow: hidden;
    height: 100vh;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(197, 212, 218, 0.95), rgba(139, 218, 194, 0.95));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* ロゴアニメーション */
.loading-logo {
    animation: fadeInScale 1s ease-out;
}

.loading-logo-img {
    width: clamp(200px, 30vw, 300px);
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* 木のアニメーション */
.loading-tree {
    position: relative;
    width: 100px;
    height: 120px;
    animation: treeGrow 1.5s ease-out;
}

.tree-trunk {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 50px;
    background: linear-gradient(180deg, #8B4513, #6B3410);
    border-radius: 10px;
    animation: trunkGrow 1s ease-out;
}

.tree-leaves {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 80px;
}

.leaf {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    border-radius: 50% 0;
    animation: leafGrow 1.5s ease-out infinite;
}

.leaf-1 {
    top: 10px;
    left: 35px;
    transform: rotate(-45deg);
    animation-delay: 0s;
}

.leaf-2 {
    top: 5px;
    right: 35px;
    transform: rotate(45deg);
    animation-delay: 0.2s;
}

.leaf-3 {
    top: 30px;
    left: 20px;
    transform: rotate(-20deg);
    animation-delay: 0.4s;
}

.leaf-4 {
    top: 30px;
    right: 20px;
    transform: rotate(20deg);
    animation-delay: 0.6s;
}

.leaf-5 {
    top: 50px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    animation-delay: 0.8s;
}

/* 光のアニメーション */
.tree-light {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 255, 0, 0.8), rgba(255, 200, 0, 0.4), transparent);
    border-radius: 50%;
    animation: lightPulse 2s ease-in-out infinite;
}

/* ローディングテキスト */
.loading-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.loading-message {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: #2c5530;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.loading-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

/* アニメーション定義 */

/* @keyframes は下部の共通キーフレーム領域へ移動 */



/* @keyframes は下部の共通キーフレーム領域へ移動 */



/* @keyframes は下部の共通キーフレーム領域へ移動 */



/* @keyframes は下部の共通キーフレーム領域へ移動 */



/* @keyframes は下部の共通キーフレーム領域へ移動 */



/* @keyframes は下部の共通キーフレーム領域へ移動 */


/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .loading-content {
        gap: 1.5rem;
    }
    
    .loading-tree {
        width: 80px;
        height: 100px;
    }
    
    .tree-trunk {
        width: 16px;
        height: 40px;
    }
    
    .tree-leaves {
        width: 80px;
        height: 60px;
    }
    
    .leaf {
        width: 24px;
        height: 24px;
    }
    
    .tree-light {
        width: 30px;
        height: 30px;
    }
}

@media screen and (max-width: 480px) {
    .loading-content {
        gap: 1rem;
    }
    
    .loading-tree {
        width: 60px;
        height: 80px;
    }
    
    .tree-trunk {
        width: 12px;
        height: 30px;
    }
    
    .tree-leaves {
        width: 60px;
        height: 50px;
    }
    
    .leaf {
        width: 18px;
        height: 18px;
    }
    
    .tree-light {
        width: 25px;
        height: 25px;
    }
    
    .loading-message {
        font-size: clamp(1rem, 2.5vw, 1.4rem);
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* ページタイトルセクション */
.page-title-section {
    background: linear-gradient(135deg, rgba(197, 212, 218, 0.8), rgba(139, 218, 194, 0.8)), url('koya.img/tree2.jpg!d');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: clamp(4rem, 8vw, 6rem) 0;
    text-align: center;
    color: #ffffff;
    margin-top: 180px; /* 固定ヘッダーの高さ分 */
}

.page-title-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.page-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: #666666; /* より濃いグレーに変更 */
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8); /* 白い影を追加 */
}

/* お知らせセクション */
.news-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 248, 220, 0.1));
}

/* カテゴリフィルター */
.news-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1.5rem, 3vw, 2rem);
    border: 2px solid #40E0D0;
    background: transparent;
    color: #40E0D0;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    background: rgba(64, 224, 208, 0.1);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.3);
}

/* お知らせグリッド */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
}

/* お知らせカード */
.news-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 103, 65, 0.1);
    backdrop-filter: blur(10px);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* お知らせ画像 */
.news-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(64, 224, 208, 0.9);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* お知らせコンテンツ */
.news-content {
    padding: clamp(1.5rem, 3vw, 2rem);
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.news-date {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    color: #666;
    font-weight: 500;
}

.news-priority {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: clamp(0.7rem, 1.6vw, 0.8rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-priority.high {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: #ffffff;
}

.news-priority.medium {
    background: linear-gradient(135deg, #feca57, #ff9ff3);
    color: #ffffff;
}

.news-priority.low {
    background: linear-gradient(135deg, #48dbfb, #0abde3);
    color: #ffffff;
}

.news-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-excerpt {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* お知らせタグ */
.news-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.news-tag {
    background: rgba(64, 224, 208, 0.1);
    color: #40E0D0;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: clamp(0.7rem, 1.6vw, 0.8rem);
    font-weight: 500;
    border: 1px solid rgba(64, 224, 208, 0.3);
}

/* ページネーション */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
}

.pagination-btn {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    width: 40px;
    height: 40px;
    border: 2px solid #40E0D0;
    background: transparent;
    color: #40E0D0;
    border-radius: 50%;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover {
    background: rgba(64, 224, 208, 0.1);
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: #ffffff;
    border-color: #40E0D0;
}

.pagination-btn.prev,
.pagination-btn.next {
    width: 40px;
    height: 40px;
}

.pagination-btn svg {
    width: 20px;
    height: 20px;
}

/* お問い合わせセクション */
.contact-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(240, 248, 255, 0.1));
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-description {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(1rem, 2.5vw, 1.5rem) clamp(2rem, 4vw, 3rem);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-btn.primary {
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: #ffffff;
}

.contact-btn.primary:hover {
    background: linear-gradient(135deg, #48D1CC, #00CED1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
}

.contact-btn.secondary {
    background: transparent;
    color: #20B2AA;
    border-color: #20B2AA;
}

.contact-btn.secondary:hover {
    background: rgba(32, 178, 170, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.2);
}

.contact-btn svg {
    width: 20px;
    height: 20px;
}

/* アクティブなナビゲーションリンク */
.nav-link.active {
    background-color: #f8f9fa;
    color: #007bff;
}

.nav-link.active .nav-text-ja,
.nav-link.active .nav-text-en {
    color: #007bff;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .news-filter {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: clamp(0.6rem, 1.5vw, 1rem) clamp(1rem, 2.5vw, 1.5rem);
        font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pagination {
        gap: 0.5rem;
    }
    
    .pagination-btn {
        width: 35px;
        height: 35px;
    }
}

@media screen and (max-width: 480px) {
    .page-title-section {
        margin-top: 160px;
        padding: clamp(2rem, 6vw, 4rem) 0;
    }
    
    .news-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .news-content {
        padding: clamp(1rem, 2.5vw, 1.5rem);
    }
    
    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .news-tags {
        gap: 0.3rem;
    }
    
    .news-tag {
        padding: 0.2rem 0.6rem;
        font-size: clamp(0.6rem, 1.4vw, 0.7rem);
    }
    
    .contact-btn {
        padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1.5rem, 3vw, 2rem);
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
    
    .pagination-numbers {
        gap: 0.3rem;
    }
    
    .pagination-btn {
        width: 30px;
        height: 30px;
        font-size: clamp(0.7rem, 1.6vw, 0.8rem);
    }
}

/* スマートフォン対応 */
@media screen and (max-width: 480px) {
    .contact-section {
        padding: clamp(2rem, 6vw, 3rem) 0;
    }
    
    .contact-content {
        padding: 0 1rem;
    }
    
    .contact-description {
        font-size: clamp(0.9rem, 2vw, 1rem);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .contact-buttons {
        gap: 0.8rem;
    }
    
    .contact-btn {
        padding: clamp(0.7rem, 1.8vw, 1rem) clamp(1.2rem, 2.5vw, 1.8rem);
        font-size: clamp(0.8rem, 1.8vw, 1rem);
        min-width: 100%;
    }
}

/* 超小画面対応 */
@media screen and (max-width: 360px) {
    .contact-section {
        padding: clamp(1.5rem, 5vw, 2.5rem) 0;
    }
    
    .contact-content {
        padding: 0 0.5rem;
    }
    
    .contact-description {
        font-size: clamp(0.8rem, 1.8vw, 0.9rem);
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .contact-btn {
        padding: clamp(0.6rem, 1.6vw, 0.9rem) clamp(1rem, 2.2vw, 1.6rem);
        font-size: clamp(0.7rem, 1.6vw, 0.9rem);
    }
}

/* 大画面対応 */
@media screen and (min-width: 1200px) {
    .contact-section {
        padding: clamp(5rem, 8vw, 7rem) 0;
    }
    
    .contact-content {
        max-width: 900px;
    }
    
    .contact-description {
        font-size: clamp(1.1rem, 2.2vw, 1.3rem);
        line-height: 1.8;
        margin-bottom: 2.5rem;
    }
    
    .contact-buttons {
        gap: 1.5rem;
    }
    
    .contact-btn {
        padding: clamp(1.2rem, 2.5vw, 1.5rem) clamp(2.5rem, 4vw, 3rem);
        font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    }
}

/* アニメーション効果 */

/* @keyframes は下部の共通キーフレーム領域へ移動 */


.news-card {
    animation: fadeInUp 0.6s ease-out;
}

.news-card:nth-child(2) {
    animation-delay: 0.1s;
}

.news-card:nth-child(3) {
    animation-delay: 0.2s;
}

.news-card:nth-child(4) {
    animation-delay: 0.3s;
}

.news-card:nth-child(5) {
    animation-delay: 0.4s;
}

.news-card:nth-child(6) {
    animation-delay: 0.5s;
}

/* カテゴリ別の色分け */
.news-card.event .news-category {
    background: rgba(255, 107, 107, 0.9);
}

.news-card.notice .news-category {
    background: rgba(64, 224, 208, 0.9);
}

.news-card.request .news-category {
    background: rgba(254, 202, 87, 0.9);
}

.news-card.update .news-category {
    background: rgba(72, 219, 251, 0.9);
}

/* ホバー効果の強化 */
.news-card:hover .news-category {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.news-card:hover .news-tag {
    background: rgba(64, 224, 208, 0.2);
    border-color: rgba(64, 224, 208, 0.5);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}


}

/* =============================================================================
   6. 求人案内ページ（旧 css/recruit.css）
   ---------------------------------------------------------------------------
   募集要項・応募導線など
   適用条件: <body class="page-recruit">（必要なら他クラスと併用可）
   ============================================================================= */
body.page-recruit {
/* -----------------------------------------
   [page-recruit] 求人案内ページ専用
   処理: 募集カード・応募CTAなど求人固有レイアウト。
         body.page-recruit 配下でのみ適用。
   ----------------------------------------- */

/* ページタイトルセクション */
.page-title-section {
    background: linear-gradient(135deg, rgba(197, 212, 218, 0.8), rgba(139, 218, 194, 0.8)), url('koya.img/tree2.jpg!d');
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('koya.img/sirorenga.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.page-title-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.33rem;
    line-height: 1.8;
    color: #666666; /* より濃いグレーに変更 */
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8); /* 白い影を追加 */
}

/* セクション共通スタイル */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #50C878;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #50C878, #3CB371);
    border-radius: 2px;
}

/* 求人概要セクション */
.recruit-overview-section {
    padding: 80px 0;
    background: transparent;
}

.recruit-overview-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.recruit-overview-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    font-weight: 600;
}

/* 募集職種セクション */
.job-positions-section {
    padding: 80px 0;
    background: transparent;
}

.job-positions-grid {
    display: grid;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    background: transparent;
    padding: 40px;
    border-radius: 20px;
}

.job-position-tile {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.job-position-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.job-position-header {
    background: linear-gradient(135deg, #20B2AA 0%, #40E0D0 100%);
    color: white;
    padding: 25px 30px;
    text-align: center;
}

.job-position-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    color: #e8eeea;
}

.job-position-content {
    padding: 30px;
}

.job-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.job-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #20B2AA;
}

.detail-label {
    font-weight: 600;
    color: #2c3e50;
    min-width: 120px;
}

.detail-value {
    color: #555;
    text-align: right;
    flex: 1;
    margin-left: 20px;
}

.job-description {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #20B2AA;
}

.job-description p {
    margin: 0;
    line-height: 1.7;
    color: #555;
}

/* 福利厚生セクション */
.benefits-section {
    padding: 80px 0;
    background: transparent;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-tile {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.benefit-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.benefit-header {
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.benefit-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 応募方法セクション */
.application-section {
    padding: 80px 0;
    background: transparent;
}

.application-content {
    max-width: 900px;
    margin: 0 auto;
}

.application-steps {
    display: grid;
    gap: 30px;
}

.application-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #20B2AA;
}

.step-number {
    background: linear-gradient(135deg, #20B2AA 0%, #40E0D0 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* お問い合わせセクション */
.contact-section {
    padding: 80px 0;
    background: transparent;
    color: #333;
}

.contact-section .section-title {
    color: #20B2AA;
}

.contact-section .section-title::after {
    background: linear-gradient(90deg, #20B2AA, #40E0D0);
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #666;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 250px;
    justify-content: center;
}

.contact-btn svg {
    width: 24px;
    height: 24px;
}

.contact-btn.primary {
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: #ffffff;
}

.contact-btn.primary:hover {
    background: linear-gradient(135deg, #48D1CC, #00CED1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
}

.contact-btn.secondary {
    background: transparent;
    color: #20B2AA;
    border: 2px solid #7FDBDA;
}

.contact-btn.secondary:hover {
    background: rgba(32, 178, 170, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.2);
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .job-details {
        grid-template-columns: 1fr;
    }
    
    .job-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .detail-value {
        text-align: left;
        margin-left: 0;
    }
    
    .application-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        min-width: 280px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-title-section {
        padding: 60px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .job-position-content {
        padding: 20px;
    }
    
    .job-detail-item {
        padding: 12px 15px;
    }
    
    .contact-btn {
        min-width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
}

/* スマートフォン対応 */
@media screen and (max-width: 480px) {
    .contact-section {
        padding: clamp(2rem, 6vw, 3rem) 0;
    }
    
    .contact-content {
        padding: 0 1rem;
    }
    
    .contact-description {
        font-size: clamp(0.9rem, 2vw, 1rem);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .contact-buttons {
        gap: 0.8rem;
    }
    
    .contact-btn {
        padding: clamp(0.7rem, 1.8vw, 1rem) clamp(1.2rem, 2.5vw, 1.8rem);
        font-size: clamp(0.8rem, 1.8vw, 1rem);
        min-width: 100%;
    }
}

/* 超小画面対応 */
@media screen and (max-width: 360px) {
    .contact-section {
        padding: clamp(1.5rem, 5vw, 2.5rem) 0;
    }
    
    .contact-content {
        padding: 0 0.5rem;
    }
    
    .contact-description {
        font-size: clamp(0.8rem, 1.8vw, 0.9rem);
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .contact-btn {
        padding: clamp(0.6rem, 1.6vw, 0.9rem) clamp(1rem, 2.2vw, 1.6rem);
        font-size: clamp(0.7rem, 1.6vw, 0.9rem);
    }
}

/* 大画面対応 */
@media screen and (min-width: 1200px) {
    .contact-section {
        padding: clamp(5rem, 8vw, 7rem) 0;
    }
    
    .contact-content {
        max-width: 900px;
    }
    
    .contact-description {
        font-size: clamp(1.1rem, 2.2vw, 1.3rem);
        line-height: 1.8;
        margin-bottom: 2.5rem;
    }
    
    .contact-buttons {
        gap: 1.5rem;
    }
    
    .contact-btn {
        padding: clamp(1.2rem, 2.5vw, 1.5rem) clamp(2.5rem, 4vw, 3rem);
        font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    }
}

/* アニメーション */

/* @keyframes は下部の共通キーフレーム領域へ移動 */


.job-position-tile,
.benefit-tile,
.application-step {
    animation: fadeInUp 0.6s ease-out;
}

.job-position-tile:nth-child(2) {
    animation-delay: 0.1s;
}

.benefit-tile:nth-child(2) {
    animation-delay: 0.1s;
}

.benefit-tile:nth-child(3) {
    animation-delay: 0.2s;
}

.benefit-tile:nth-child(4) {
    animation-delay: 0.3s;
}

.application-step:nth-child(2) {
    animation-delay: 0.1s;
}

.application-step:nth-child(3) {
    animation-delay: 0.2s;
}

.application-step:nth-child(4) {
    animation-delay: 0.3s;
}

}

/* =============================================================================
   7. お問い合わせページ（旧 css/contact.css）
   ---------------------------------------------------------------------------
   お問い合わせ方法・フォーム・FAQアコーディオンなど
   適用条件: <body class="page-contact">（必要なら他クラスと併用可）
   ============================================================================= */
body.page-contact {
/* -----------------------------------------
   [page-contact] お問い合わせページ専用
   処理: 連絡手段カード・フォーム・FAQアコーディオン。
         body.page-contact 配下でのみ適用。
   ----------------------------------------- */

/* ページタイトルセクション */
.page-title-section {
    background: linear-gradient(135deg, rgba(197, 212, 218, 0.8), rgba(139, 218, 194, 0.8)), url('koya.img/tree2.jpg!d');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: clamp(4rem, 8vw, 6rem) 0;
    text-align: center;
    color: #ffffff;
    margin-top: 180px; /* 固定ヘッダーの高さ分 */
}

.page-title-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.page-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: #666666; /* より濃いグレーに変更 */
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8); /* 白い影を追加 */
}

/* お問い合わせ方法セクション */
.contact-methods-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 248, 220, 0.1));
}

/* お問い合わせ方法グリッド */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* お問い合わせ方法タイル */
.contact-method-tile {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(74, 103, 65, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.contact-method-tile:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

/* お問い合わせ方法ヘッダー */
.contact-method-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: clamp(1.5rem, 2.5vw, 2rem);
    text-align: center;
    color: #ffffff;
}

.contact-method-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.3rem, 2.6vw, 1.6rem);
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* お問い合わせ方法コンテンツ */
.contact-method-content {
    padding: clamp(1.5rem, 2.5vw, 2rem);
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

/* お問い合わせ方法アイコン */
.contact-method-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-method-icon svg {
    width: 60px;
    height: 60px;
    color: #667eea;
}

/* お問い合わせ方法詳細 */
.contact-method-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-method-description {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.95rem, 1.9vw, 1.1rem);
    color: #666;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

/* お問い合わせ方法情報 */
.contact-method-info {
    margin-bottom: 1.5rem;
}

.contact-method-info p {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: #666;
    margin: 0.5rem 0;
}

.contact-method-info strong {
    color: #333;
    font-weight: 600;
}

.contact-method-value {
    font-size: clamp(1rem, 2vw, 1.1rem) !important;
    color: #667eea !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

/* お問い合わせ方法ボタン */
.contact-method-btn {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    display: inline-block;
    padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
    margin-top: auto;
}

.contact-method-btn:hover {
    background: linear-gradient(135deg, #48D1CC, #00CED1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
}

/* お問い合わせフォームセクション */
.contact-form-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(240, 248, 255, 0.1));
}

.contact-form-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-description {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* お問い合わせフォーム */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(74, 103, 65, 0.1);
    backdrop-filter: blur(10px);
}

/* フォームグループ */
.form-group {
    margin-bottom: 2rem;
}

.form-label {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    display: block;
    font-size: clamp(0.95rem, 1.9vw, 1.1rem);
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.required {
    color: #e74c3c;
    font-weight: 700;
}

/* フォーム入力 */
.form-input,
.form-select,
.form-textarea {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    width: 100%;
    padding: clamp(0.8rem, 1.5vw, 1rem);
    border: 2px solid rgba(74, 103, 65, 0.2);
    border-radius: 8px;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #40E0D0;
    box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.1);
}

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

/* プライバシーポリシー */
.privacy-policy {
    background: rgba(248, 249, 250, 0.8);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #40E0D0;
}

.privacy-policy p {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.85rem, 1.7vw, 0.95rem);
    color: #666;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.privacy-link {
    color: #40E0D0;
    text-decoration: none;
    font-weight: 600;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* フォームアクション */
.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.submit-btn {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(1rem, 2.5vw, 1.5rem) clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
}

/* よくある質問セクション */
.faq-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(248, 255, 248, 0.1));
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

/* FAQアイテム */
.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(74, 103, 65, 0.1);
    overflow: hidden;
}

/* FAQ質問 */
.faq-question {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    width: 100%;
    padding: clamp(1.5rem, 2.5vw, 2rem);
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: #ffffff;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #48D1CC, #00CED1);
}

.faq-question-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0;
    transition: transform 0.3s ease;
}

/* FAQ回答 */
.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #ffffff;
}

.faq-answer p {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding: clamp(1.5rem, 2.5vw, 2rem);
}

/* アクティブなナビゲーションリンク */
.nav-link.active {
    background-color: #f8f9fa;
    color: #007bff;
}

.nav-link.active .nav-text-ja,
.nav-link.active .nav-text-en {
    color: #007bff;
}

/* レスポンシブ対応 */
@media screen and (max-width: 900px) {
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 3vw, 2rem);
    }
}

@media screen and (max-width: 768px) {
    .contact-form {
        padding: clamp(1.5rem, 3vw, 2rem);
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .faq-question {
        padding: clamp(1rem, 2vw, 1.5rem);
    }
    
    .faq-answer p {
        padding: clamp(1rem, 2vw, 1.5rem);
    }
}

@media screen and (max-width: 480px) {
    .page-title-section {
        margin-top: 160px;
        padding: clamp(2rem, 6vw, 4rem) 0;
    }
    
    .contact-method-header {
        padding: clamp(1rem, 2vw, 1.5rem);
    }
    
    .contact-method-title {
        font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    }
    
    .contact-method-content {
        padding: clamp(1rem, 2vw, 1.5rem);
    }
    
    .contact-method-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .contact-method-description {
        font-size: clamp(0.85rem, 1.7vw, 0.95rem);
    }
    
    .contact-method-info p {
        font-size: clamp(0.8rem, 1.6vw, 0.9rem);
    }
    
    .contact-method-value {
        font-size: clamp(0.9rem, 1.8vw, 1rem) !important;
    }
    
    .contact-method-btn {
        padding: clamp(0.7rem, 1.8vw, 1rem) clamp(1.2rem, 2.5vw, 1.5rem);
        font-size: clamp(0.8rem, 1.6vw, 0.9rem);
    }
    
    .contact-form-description {
        font-size: clamp(0.9rem, 1.8vw, 1rem);
    }
    
    .form-label {
        font-size: clamp(0.85rem, 1.7vw, 0.95rem);
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: clamp(0.7rem, 1.3vw, 0.8rem);
        font-size: clamp(0.8rem, 1.6vw, 0.9rem);
    }
    
    .privacy-policy {
        padding: 1rem;
    }
    
    .privacy-policy p {
        font-size: clamp(0.8rem, 1.6vw, 0.9rem);
    }
    
    .submit-btn {
        padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1.5rem, 3vw, 2rem);
        font-size: clamp(0.9rem, 1.8vw, 1rem);
    }
    
    .faq-question-text {
        font-size: clamp(0.9rem, 1.8vw, 1rem);
    }
    
    .faq-toggle {
        font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    }
}

/* アニメーション効果 */

/* @keyframes は下部の共通キーフレーム領域へ移動 */


.contact-method-tile {
    animation: fadeInUp 0.6s ease-out;
}

.contact-method-tile:nth-child(2) {
    animation-delay: 0.1s;
}

.faq-item {
    animation: fadeInUp 0.6s ease-out;
}

.faq-item:nth-child(2) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.3s;
}

/* スクロール時の視差効果 */
.contact-method-tile {
    will-change: transform;
}

/* フォームのフォーカス効果 */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    transform: translateY(-2px);
}

/* ボタンのホバー効果 */
.contact-method-btn:hover,
.submit-btn:hover {
    transform: translateY(-3px);
}

/* FAQアコーディオンのスムーズな開閉 */
.faq-answer {
    transition: max-height 0.3s ease, padding 0.3s ease;
}

/* アクセシビリティ */
.faq-question:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: 2px solid #40E0D0;
    outline-offset: 2px;
}


}

/* =============================================================================
   8. プライバシーポリシーページ（旧 css/privacy-policy.css）
   ---------------------------------------------------------------------------
   ポリシー本文のタイポグラフィ・レイアウト
   適用条件: <body class="page-privacy">（必要なら他クラスと併用可）
   ============================================================================= */
body.page-privacy {
/* -----------------------------------------
   [page-privacy] プライバシーポリシーページ専用
   処理: ポリシー本文の見出し階層・読みやすさ・余白。
         body.page-privacy 配下でのみ適用。
   ----------------------------------------- */

/* ページタイトルセクション */
.page-title-section {
    background: linear-gradient(135deg, rgba(197, 212, 218, 0.8), rgba(139, 218, 194, 0.8)), url('koya.img/tree2.jpg!d');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: clamp(4rem, 8vw, 6rem) 0;
    text-align: center;
    color: #ffffff;
    margin-top: 180px; /* 固定ヘッダーの高さ分 */
}

.page-title-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.page-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: #666666; /* より濃いグレーに変更 */
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8); /* 白い影を追加 */
}

/* プライバシーポリシーセクション */
.privacy-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(248, 255, 248, 0.1));
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.privacy-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: clamp(3rem, 6vw, 4rem);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 103, 65, 0.1);
}

.privacy-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #2c5530;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #40E0D0;
}

.privacy-text {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    line-height: 1.8;
    color: #333;
}

.privacy-text p {
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.privacy-subtitle {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: #4a6741;
    margin: 2.5rem 0 1rem 0;
    padding-left: 1rem;
    border-left: 4px solid #40E0D0;
}

.privacy-subtitle:first-of-type {
    margin-top: 2rem;
}

.privacy-list {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.privacy-list li {
    margin-bottom: 0.8rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
    position: relative;
    padding-left: 1.5rem;
    list-style: none; /* デフォルトのリストスタイルを無効化 */
}

.privacy-list li::before {
    content: "•";
    color: #40E0D0;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.contact-info {
    background: rgba(74, 103, 65, 0.05);
    border: 1px solid rgba(74, 103, 65, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.contact-info p {
    margin-bottom: 0.8rem;
}

.contact-info a {
    color: #40E0D0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #20B2AA;
    text-decoration: underline;
}

.privacy-date {
    background: rgba(64, 224, 208, 0.1);
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2.5rem 0;
    text-align: center;
}

.privacy-date p {
    margin-bottom: 0.5rem;
    color: #2c5530;
}

.privacy-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(74, 103, 65, 0.1);
}

.privacy-btn {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    display: inline-block;
    padding: clamp(1rem, 2.5vw, 1.5rem) clamp(2rem, 4vw, 3rem);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.privacy-btn:first-child {
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: #ffffff;
}

.privacy-btn:first-child:hover {
    background: linear-gradient(135deg, #48D1CC, #00CED1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
}

.privacy-btn.secondary {
    background: transparent;
    color: #20B2AA;
    border-color: #20B2AA;
}

.privacy-btn.secondary:hover {
    background: rgba(32, 178, 170, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.2);
}

/* フッター */
.footer {
    background: linear-gradient(135deg, #2c5530, #4a6741);
    color: #ffffff;
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-address,
.footer-phone,
.footer-email {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #40E0D0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .page-title-section {
        margin-top: 160px;
        padding: clamp(3rem, 6vw, 4rem) 0;
    }
    
    .privacy-content {
        padding: clamp(2rem, 4vw, 3rem);
    }
    
    .privacy-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .privacy-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .contact-info,
    .privacy-date {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .page-title-section {
        margin-top: 140px;
        padding: clamp(2rem, 5vw, 3rem) 0;
    }
    
    .privacy-content {
        padding: clamp(1.5rem, 3vw, 2rem);
    }
    
    .privacy-subtitle {
        font-size: clamp(1.2rem, 2.2vw, 1.4rem);
        margin: 2rem 0 1rem 0;
    }
    
    .privacy-text p {
        font-size: clamp(0.9rem, 1.8vw, 1rem);
    }
    
    .privacy-list li {
        font-size: clamp(0.9rem, 1.8vw, 1rem);
    }
    
    .contact-info,
    .privacy-date {
        padding: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* アニメーション効果 */
.privacy-content {
    animation: fadeInUp 0.8s ease-out;
}


/* @keyframes は下部の共通キーフレーム領域へ移動 */


.privacy-subtitle {
    animation: slideInLeft 0.6s ease-out;
    animation-fill-mode: both;
}

.privacy-subtitle:nth-child(2) { animation-delay: 0.1s; }
.privacy-subtitle:nth-child(3) { animation-delay: 0.2s; }
.privacy-subtitle:nth-child(4) { animation-delay: 0.3s; }
.privacy-subtitle:nth-child(5) { animation-delay: 0.4s; }
.privacy-subtitle:nth-child(6) { animation-delay: 0.5s; }
.privacy-subtitle:nth-child(7) { animation-delay: 0.6s; }


/* @keyframes は下部の共通キーフレーム領域へ移動 */


}

/* =============================================================================
   9. キーフレームアニメーション（@keyframes）
   ---------------------------------------------------------------------------
   ページ固有CSS内にあった @keyframes をルートに集約しています。
   （スタイルルール内にネストすると無効になるため）
   ============================================================================= */
/* --- page-service 由来のキーフレーム --- */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- page-facility 由来のキーフレーム --- */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- page-news 由来のキーフレーム --- */

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes treeGrow {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes trunkGrow {
    0% {
        height: 0;
    }
    100% {
        height: 50px;
    }
}

@keyframes leafGrow {
    0%, 100% {
        transform: scale(1) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: scale(1.1) rotate(calc(var(--rotation, 0deg) + 5deg));
    }
}

@keyframes lightPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
    }
}

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- page-recruit 由来のキーフレーム --- */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- page-contact 由来のキーフレーム --- */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- page-privacy 由来のキーフレーム --- */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
