        body {
            font-family: 'Inter', sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            /* padding: 20px; */
                        padding-top: var(--nav-height); /* 固定ナビゲーションバーの高さ分、コンテンツを下にずらす */
        }
        :root {
            --nav-height: 80px; /* ナビゲーションバーの高さの目安 */
        }
        .fixed-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #FFFFFF; /* 白 */
            padding: 1rem 0.5rem; /* 上下のパディング */
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000; /* 他のコンテンツの上に表示されるようにする */
            display: flex;
            flex-direction: column; /* デフォルトは縦並び */
            align-items: center;
        }
        .fixed-nav .hamburger-button {
            display: none; /* デフォルトで非表示 */
            background: none;
            border: none;
            font-size: 2rem;
            color: #5F6B7C;
            cursor: pointer;
            padding: 0.5rem 1rem;
        }
        .fixed-nav ul {
            display: flex; /* デフォルトで表示 */
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 1.5rem; /* リンク間のスペース */
            font-size: 1.125rem; /* text-lg */
            font-weight: 600;
            list-style: none; /* リストの点を削除 */
            padding: 0;
            margin: 0;
        }
        .fixed-nav a {
            color: #5F6B7C; /* 藍鼠 */
            text-decoration: none;
            transition: color 0.2s ease-in-out;
            white-space: nowrap; /* テキストの折り返しを防ぐ */
        }
        .fixed-nav a:hover {
            color: #374151; /* 濃いめの藍鼠 */
        }
        .drawer_hidden {
            display: none;
        }        

        /* ハンバーガーメニューのレスポンシブ設定 */
        @media (max-width: 767px) { /* モバイルビュー */
            :root {
                --nav-height: auto; /* メニュー展開時は高さが可変 */
            }
            .fixed-nav {
                align-items: flex-end; /* ハンバーガーボタンを右に寄せる */
                padding: 0.5rem 1rem;
            }
            .fixed-nav .hamburger-button {
                display: block; /* モバイルで表示 */
            }
            .hamburger-button span,
            .hamburger-button span:before,
            .hamburger-button span:after {
            content: '';
            display: block;
            height: 3px;
            width: 25px;
            border-radius: 3px;
            background: #333;
            transition: 0.5s;
            position: absolute;
            }
            /* 三本線の一番上の棒の位置調整 */
            .hamburger-button span:before {
            bottom: 8px;
            }

            /* 三本線の一番下の棒の位置調整 */
            .hamburger-button span:after {
            top: 8px;
            }

            /* アイコンがクリックされたら真ん中の線を透明にする */
            #drawer_input:checked ~ .hamburger-button span {
            background: rgba(255, 255, 255, 0);
            }

            /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
            #drawer_input:checked ~ .hamburger-button span::before {
            bottom: 0;
            transform: rotate(45deg);
            }
            #drawer_input:checked ~ .hamburger-button span::after {
            top: 0;
            transform: rotate(-45deg);
            }

            .fixed-nav ul {
                flex-direction: column; /* 縦並び */
                width: 100%;
                padding-top: 1rem;
                display: none; /* デフォルトで非表示 */
                text-align: center;
            }
            .fixed-nav ul.is-open { /* JavaScriptで追加されるクラス */
                display: flex; /* メニュー展開時に表示 */
            }
            .fixed-nav li {
                width: 100%; /* 各リンクを全幅に */
                padding: 0.5rem 0;
            }
            .button-menu {
                margin-bottom: 40px;
            }
        }
        .flyer-container {
            background: #F8F8F8; /* 薄いオフホワイト (全体背景) */
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            width: 100%; /* 画面幅いっぱいに広がるように */
            padding: 50px 20px;
            box-sizing: border-box;
            border: none; /* 黄色の枠線を削除 */
        }
        h1 {
            color: #5F6B7C; /* 藍鼠 */
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        /* h2の基本スタイルを調整し、セクションごとの余白は親のdivで制御 */
        h2 {
            color: #5F6B7C; /* 藍鼠 */
            font-size: 2.5rem;
            font-weight: 600;
            margin-top: 0; /* 親のpaddingで制御するためリセット */
            margin-bottom: 20px; /* 内容との間隔 */
            border-bottom: 2px solid #DFF400; /* 淡水色 */
            padding-top: 0; /* 親のpaddingで制御するためリセット */
            padding-bottom: 5px;
        }
        h3 { /* 新しいh3のスタイル */
            color: #5F6B7C; /* 藍鼠 */
            font-size: 2rem; /* h3のフォントサイズを大きくしました */
            font-weight: 700; /* h3をより強調するために太字にしました */
            text-align: center;
            margin-bottom: 20px; /* Weekと内容の間のスペース */
        }
        .section-title {
            color: #5F6B7C; /* 錆青磁 */
            font-size: 1.25rem;
            font-weight: 600;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        .section-title-week {
            color: #5F6B7C; /* 錆青磁 */
            font-size: 1.25rem;
            font-weight: 600;
            margin-top: 20px;
            margin-bottom: 30px;
        }
        
        p, ul {
            color: #4b5563; /* 既存の色を維持、または藍鼠の濃い色 */
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 10px;
        }
        ul {
            list-style-type: disc;
            margin-left: 20px;
        }
        .highlight {
            color: #4b5563; /* 錆青磁 */
            font-weight: 500;
        }
        .button {
            display: inline-block;
            background-color: #DFF400; /* 藍鼠から変更 */
            color: rgb(0, 0, 0);
            padding: 12px 25px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 25px;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 5px 15px rgba(95, 107, 124, 0.3); /* 藍鼠のシャドウ */
        }
        .button:hover {
            background-color: #faffc1; /* 元の色を少し薄く */
            transform: translateY(-2px);
        }
        .button-menu {
            display: inline-block;
            background-color: #DFF400; /* 藍鼠から変更 */
            color: rgb(0, 0, 0);
            padding: 12px 25px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            /* margin-top: 25px; */
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 5px 15px rgba(95, 107, 124, 0.3); /* 藍鼠のシャドウ */
        }
        .button-menu:hover {
            background-color: #faffc1; /* 元の色を少し薄く */
            transform: translateY(-2px);
        }
        .footer {
            margin-top: 50px;
            border-top: 1px dashed #DFF400; /* 木肌色 */
            padding-top: 25px;
            text-align: center;
            color: #6b7280; /* 既存の色を維持 */
            font-size: 0.9rem;
        }
        .partner-logo {
            max-width: 120px; /* ロゴの最大幅 */
            height: auto;
            margin: 10px;
            display: inline-block;
            vertical-align: middle;
        }
        .mentor-card {
            background-color: #F8F8F8; /* 白練の少し濃い色 */
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            text-align: center;
        }
        .mentor-card img {
            width: 100px;
            height: auto;
            border-radius: 50%;
            /* object-fit: cover; */
            margin: 0 auto 15px;
            border: 5px solid #DFF400; /* 藍鼠 */
        }
        .main-visual {
            margin-bottom: 40px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }
        .main-visual img {
            width: 100%;
            height: auto;
            display: block;
        }
        /* Week セクションのスタイル */
        .week-section {
            background-color: #F0F0F0; /* 薄いオフホワイト */
            border-radius: 15px;
            padding: 30px;
            margin-top: 30px; /* h2「プログラムの流れ」との間のスペース */
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        /* 後続の週セクションのスペース */
        .week-section + .week-section {
            margin-top: 30px; /* 各週セクション間のスペース */
        }
        /* 各日のコンテナのスタイル */
        .day-content {
            display: flex;
            flex-direction: column;
            height: 100%; /* 親要素の高さに合わせる */
        }
        .day-content ul {
            flex-grow: 1; /* スケジュールリストが可能な限り高さを取る */
        }
        .day-content img {
            margin-top: auto; /* 画像を常に下部に配置 */
        }
        /* プログラムの流れセクションの画像コンテナ */
        .event-flow-images-container { /* 新しいコンテナ名 */
            display: flex;
            flex-wrap: wrap; /* 折り返しを許可 */
            gap: 20px;
            margin-top: 30px;
            justify-content: center; /* 中央揃え */
            align-items: flex-start; /* 上揃え */
        }

        .event-flow-image-item {
            flex: 0 0 calc(50% - 10px); /* 2つ並べるために幅を調整 (gapを考慮) */
            max-width: calc(50% - 10px); /* 2つ並べるために最大幅を調整 */
            box-sizing: border-box; /* paddingやborderを幅に含める */
            text-align: center;
            display: flex; /* 内部もflexboxにしてコンテンツを縦に並べる */
            flex-direction: column;
            align-items: center; /* 画像とキャプションを中央揃え */
        }
        .section-space {
            margin-top: 80px; /* 各週セクション間のスペース */
        }
        #map{
            height: 70vh;
        }
        @media (max-width: 767px) { /* モバイルでは1列に */
            .event-flow-image-item {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }
        @media (min-width: 768px) and (max-width: 1023px) { /* タブレットでは2列に */
            .event-flow-image-item {
                flex: 0 0 calc(50% - 10px);
                max-width: calc(50% - 10px);
            }
        }
        .event-flow-image-item img {
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            width: 100%; /* 親要素の幅に合わせる */
            height: auto; /* 高さを固定して揃える */
            /* object-fit: cover;  アスペクト比を維持しつつ画像を埋める  */
        }
        .event-flow-image-item p {
            font-size: 0.9rem;
            color: #6b7280;
            margin-top: 8px;
        }
        /* 各セクションの背景色を定義 */
        .section-wrapper { /* 各h2セクションを囲む新しいラッパー */
            border-radius: 15px; /* 親の角丸に合わせる */
            padding: 30px; /* 内部パディング */
            box-shadow: 0 2px 10px rgba(0,0,0,0.03); /* 軽い影 */
            margin-top: 30px; /* セクション間の余白 */
        }
        .section-wrapper:first-of-type {
            margin-top: 0; /* 最初のセクションは上マージンなし */
        }

        .section-wrapper.bg-white {
            background-color: #FFFFFF; /* 白 */
        }
        .section-wrapper.bg-light-gray {
            background-color: #F0F0F0; /* 薄いオフホワイト */
        }
        .section-wrapper.bg-light-blue {
            background-color: #dae37b; /* 淡水色 */
            color: #374151; /* テキスト色を濃くして可読性確保 */
        }
        .section-wrapper.bg-light-blue h2, /* h2もこの背景色に含める */
        .section-wrapper.bg-light-blue h3,
        .section-wrapper.bg-light-blue .section-title,
        .section-wrapper.bg-light-blue .highlight {
            color: #5F6B7C; /* 藍鼠に統一 */
        }