      /* --------------------------------
         Reset / Base
      --------------------------------- */
      * { margin: 0; padding: 0; box-sizing: border-box; }
      html { scroll-behavior: smooth; }

      /* カラーパレット + 共通変数（ナビ高） */
      :root {
        --color-main: #006532;            /* メインのグリーン */
        --color-sub: #5e4e48;             /* サブのブラウン（主にテキスト） */
        --color-accent: #efe07e;          /* アクセントの黄色 */
        --color-accent-dark: #ddcb6a;     /* アクセントの濃い黄色（ホバー用） */
        --color-background: #f4f6f4;      /* 薄いグリーン系の背景色 */
        --color-border: #cce0d5;          /* ボーダー用のグリーン */
        --white: #fff;
        --black: #000;

        --nav-h: 64px;                    /* PCヘッダーの高さ（挙動維持のため数値は元値） */
      }

      body {
        font-family: "M PLUS Rounded 1c", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        line-height: 1.6;
        color: var(--color-sub);
        background: linear-gradient(to bottom, var(--color-background), var(--white));
        min-height: 100vh;
      }

      /* --------------------------------
         Typography
      --------------------------------- */
      h1 { font-size: 2.5rem; font-weight: 900; line-height: 1.2; }
      h2 { font-size: 2rem;   font-weight: 900; line-height: 1.3; }
      h3 { font-size: 1.5rem; font-weight: 800; line-height: 1.4; }
      p  { font-weight: 500; }
      .text-sm { font-size: 0.875rem; }
      .text-xs { font-size: 0.75rem; }

      /* --------------------------------
         Global Navigation
         仕様：PC=上固定 / SP=下固定（後述メディアクエリ）
      --------------------------------- */
      .navbar {
        position: fixed; top: 0; left: 0; right: 0;
        z-index: 1000; /* PCでは後述で 2000 に上書き */
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
        transition: 0.3s;
      }
      .nav-container {
        max-width: 1280px; margin: 0 auto; padding: 0 1rem;
        display: flex; align-items: center; justify-content: space-between;
        height: var(--nav-h); /* 64px */
      }
      .nav-logo { color: var(--color-main); font-weight: 900; font-size: 1.125rem; }

      .nav-menu { display: none; gap: 1.5rem; }
      .nav-menu.active {
        display: flex; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--white); flex-direction: column; padding: 1rem;
        border-top: 1px solid var(--color-border);
      }
      .nav-item {
        padding: 0.5rem 0.75rem;
        border-radius: 0.375rem;
        transition: 0.2s;
        cursor: pointer;
        font-weight: 500;
        color: var(--color-sub);
        text-decoration: none;
      }
      .nav-item:hover  { color: var(--color-main); background: var(--color-background); }
      .nav-item.active { color: var(--color-main); background: var(--color-border); }

      .mobile-menu-btn {
        display: block; background: none; border: none;
        color: var(--color-main); padding: 0.5rem; cursor: pointer;
      }

      /* --------------------------------
         Hero
      --------------------------------- */
      .hero {
        position: relative;
        height: 100vh; /* ※ 仕様維持。必要に応じて min-height: calc(100vh - var(--nav-h)) に変更可だが今回は維持 */
        display: flex; align-items: center; justify-content: center;
        overflow: hidden;
      }
      .hero-bg { position: absolute; inset: 0; z-index: 0; }
      .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
      .hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); }
      .hero-content {
        position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
        text-align: center; z-index: 10; color: var(--white);
        max-width: 1024px; margin: 0 auto; padding: 0 1rem;
      }

      /* ヒーロー画像の端末別出し分け（SP優先） */
      .hero-bg .pc-only { display: none; }
      .hero-bg .sp-only { display: block; }

      /* バッジ（元仕様のまま・命名/コメントのみ整理） */
      .free-badge-new {
        --badge-size: clamp(72px, 12vw, 140px);
        --green: #006532;
        --green-dark: #004a24;
        position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.15em;
        width: var(--badge-size); height: var(--badge-size);
        background: #fff; border-radius: 50%;
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
        border: 4px solid #fff;
        padding: clamp(6px, 1.2vw, 10px);
        color: var(--green);
      }
      .free-badge-small-text { font-weight: 700; font-size: clamp(11px, 2.2vw, 14px); letter-spacing: 0.15em; color: var(--green-dark); line-height: 1; }
      .free-badge-large-text { font-weight: 900; font-size: clamp(24px, 5.8vw, 42px); letter-spacing: 0.1em; line-height: 1; white-space: nowrap; }
      .free-badge-pill { margin-top: 0.15em; font-weight: 800; font-size: clamp(11px, 2.2vw, 14px); color: #006532; background: #efe07e; padding: 0.35em 0.8em; border-radius: 9999px; line-height: 1; white-space: nowrap; }

      .hero-title-new { font-size: 4rem; font-weight: 900; letter-spacing: 0.05em; margin-bottom: 1.5rem; color: var(--white); }
      .hero-tagline-new { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 2rem; }
      .icon { width: 1.25rem; height: 1.25rem; display: inline-block; }

      /* --------------------------------
         Sections (共通)
      --------------------------------- */
      .section { padding: 4rem 1rem; }
      .section-container      { max-width: 1024px; margin: 0 auto; }
      .section-container-wide { max-width: 1280px; margin: 0 auto; }
      .section-title { text-align: center; margin-bottom: 2rem; color: var(--color-main); font-weight: 900; }

      /* タイトル + アイコン（共通） */
      .section-title { display: flex; align-items: center; justify-content: center; gap: 0.5rem; text-align: center; }
      .section-title .title-icon { width: 10rem; height: auto; }

      /* --------------------------------
         Overview
      --------------------------------- */
      .overview-text-section { background-color: var(--color-main); color: var(--white); padding: 2rem 1rem; }
      .overview-text-section .section-title,
      .overview-text-section p { color: var(--white); }

      .overview-info-section { background-color: var(--color-accent); padding: 3rem 1rem; }

      .overview-intro-block {
        background: var(--color-main); color: var(--white);
        padding: 2.5rem 1.5rem; margin-bottom: 2rem; text-align: center; border-radius: 0.75rem;
      }
      .overview-intro-block p { font-weight: 500; line-height: 1.8; }
      .overview-intro-block .section-title { color: var(--white); }

      .overview-grid {
        display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center;
        background: transparent; border-radius: 12px; padding: 0; box-shadow: none; border: none;
      }
      .overview-map-image { width: 100%; height: auto; border-radius: 0.75rem; display: block; }

      .event-info { background: var(--white); border-radius: 0.75rem; padding: 1rem 1.25rem; height: 100%; }
      .event-info-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }
      .event-date { display: flex; align-items: center; gap: 0.5rem; }
      .event-date .y  { font-size: 0.9rem; color: var(--color-main); font-weight: 800; }
      .event-date .md { font-size: 2.5rem; font-weight: 900; color: var(--color-main); letter-spacing: 0.02em; }
      .event-date .w  { border: 2px solid var(--color-main); border-radius: 9999px; padding: 0.1rem 0.55rem; font-weight: 900; color: var(--color-main); }
      .weather-badge { display: inline-flex; align-items: center; justify-content: center; padding: 0.3em 0.8em; background-color: var(--color-main); color: var(--white); border-radius: 9999px; font-size: clamp(10px, 2.5vw, 16px); font-weight: 700; white-space: nowrap; margin-left: 0.5rem; }
      .event-openclose { display: flex; gap: 1rem; font-weight: 900; color: var(--color-main); }
      .event-openclose span { background: var(--color-background); padding: 0.25rem 0.6rem; border-radius: 0.375rem; }
      .event-venue { font-weight: 800; color: var(--color-main); font-size: 1.5em; }
      .event-addr  { font-size: 0.85rem; color: var(--color-sub); }

      /* --------------------------------
         Films
      --------------------------------- */
      .films { background: var(--white); }
      .films-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
      .film-card { border-radius: 0.5rem; overflow: hidden; background: var(--white); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
      .film-head { padding: 1rem 1rem 0; text-align: center; color: var(--color-main); font-weight: 900; font-size: 1.25rem; }
      .film-body { padding: 0 1rem 1rem; }
      .film-img  { width: 100%; max-width: 900px; height: 200px; object-fit: contain; object-position: center; border-radius: 0.5rem; margin: 0 0 0.75rem; background: #fff; }
      .film-accordion { border: 1px solid var(--color-border); border-radius: 0.5rem; overflow: hidden; }
      .film-accordion summary { list-style: none; cursor: pointer; padding: 0.6rem 0.75rem; font-weight: 900; color: var(--color-main); background: var(--color-background); }
      .film-accordion summary::-webkit-details-marker { display: none; }
      .film-accordion .panel { padding: 0.5rem 0.75rem 0.75rem; font-size: 0.9rem; color: var(--color-sub); }

      /* --------------------------------
         Timetable
      --------------------------------- */
      .timetable { background: var(--color-main); position: relative; overflow: hidden; }
      .timetable-decorative { position: absolute; inset: 0; opacity: 0.1; }
      .decorative-circle { position: absolute; border-radius: 50%; background: var(--white); }
      .decorative-circle-1 { top: 2.5rem; left: 2.5rem; width: 5rem; height: 5rem; }
      .decorative-circle-2 { top: 8rem; right: 5rem; width: 4rem; height: 4rem; background: var(--color-accent); }
      .decorative-circle-3 { bottom: 5rem; left: 8rem; width: 3rem; height: 3rem; background: #f9a8d4; }
      .decorative-circle-4 { bottom: 10rem; right: 2.5rem; width: 6rem; height: 6rem; background: #c084fc; }

      .timetable-container { max-width: 1024px; margin: 0 auto; position: relative; z-index: 10; }
      .timetable-header { text-align: center; margin-bottom: 3rem; }
      .timetable-subtitle { color: var(--white); font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem; }
      .timetable-title-badge { display: inline-block; background: var(--white); padding: 0.75rem 2rem; border-radius: 9999px; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
      .timetable-title-badge h2 { color: var(--color-main); font-size: 1.5rem; font-weight: 900; letter-spacing: 0.1em; }

      .timeline { display: flex; flex-direction: column; gap: 1rem; }
      .timeline-item { background: var(--white); border-radius: 1rem; padding: 1.5rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); position: relative; }
      .timeline-content { display: flex; align-items: flex-start; gap: 1rem; }
      .timeline-time { color: var(--color-sub); background: none; padding: 0; border-radius: 0; font-weight: 900; font-size: 1.125rem; flex-shrink: 0; }
      .timeline-item h3 { color: var(--color-main); }
      .timeline-item p  { color: var(--color-sub); }

      /* 交互の背景色（元仕様） */
      .timeline .timeline-item:nth-child(1),
      .timeline .timeline-item:nth-child(3),
      .timeline .timeline-item:nth-child(5),
      .timeline .timeline-item:nth-child(7) { background: #aeca6f; }
      .timeline .timeline-item:nth-child(2),
      .timeline .timeline-item:nth-child(4),
      .timeline .timeline-item:nth-child(6) { background: #efe07e; }

      /* 映画アイコン（右上固定） */
      .timeline-movie-icon {
        position: absolute; top: 12px; right: 12px;
        width: 64px; height: auto; border-radius: 6px; box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      }

      /* --------------------------------
         Workshops
      --------------------------------- */
      .workshops { background: var(--white); }
      .workshops-intro { text-align: center; margin-bottom: 2rem; }
      .workshops-intro p { color: var(--color-sub); font-weight: 700; font-size: 1.125rem; }
      .workshop-group { margin-bottom: 3rem; }
      .workshop-group h3 { color: var(--color-main); font-weight: 900; font-size: 1.25rem; margin-bottom: 1.5rem; }
      .workshop-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
      .workshop-card { border: 2px solid var(--color-border); border-radius: 0.5rem; overflow: hidden; transition: box-shadow 0.3s ease; }
      .workshop-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
      .workshop-card-header { padding: 1.5rem 1.5rem 0; }
      .workshop-card-title { text-align: center; color: var(--color-main); font-weight: 900; margin-bottom: 1rem; }
      .workshop-card-content { padding: 0 1.5rem 1.5rem; }
      .workshop-image { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 0.5rem; margin-bottom: 1rem; }
      .workshop-description { color: var(--color-sub); text-align: center; font-weight: 500; }

      /* バッジ */
      .circle-note { display: inline-block; padding: 0.1rem 0.6rem; border: 2px solid var(--color-main); border-radius: 9999px; color: var(--color-main); background: var(--white); font-size: 0.85rem; font-weight: 700; }

      /* --------------------------------
         Food
      --------------------------------- */
      .food { background: var(--color-background); }
      .food-group { margin-bottom: 2rem; }
      .food-group h3 { color: var(--color-main); font-weight: 900; font-size: 1.25rem; margin-bottom: 1.5rem; }
      .food-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
      .food-card { border: 2px solid var(--color-border); border-radius: 0.5rem; overflow: hidden; background: var(--white); }
      .food-card-header { padding: 1.5rem 1.5rem 0; }
      .food-card-title { color: var(--color-main); font-weight: 900; }
      .food-card-content { padding: 0 1.5rem 1.5rem; }
      .food-image { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 0.5rem; margin-bottom: 1rem; }
      .food-description { color: var(--color-sub); font-weight: 500; }

      /* キッチンカー専用（仕様維持） */
      .food-group--kitchencar .food-card--kitchencar { border: none; background: transparent; box-shadow: none; display: flex; }
      .food-group--kitchencar .food-card--kitchencar .food-card-content {
        padding: 0; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; min-height: 320px;
      }
      .food-group--kitchencar .kitchencar-image { max-width: 100%; max-height: 360px; height: auto; object-fit: contain; display: block; }

      /* --------------------------------
         Survey
      --------------------------------- */
      .survey-grid { display: grid; gap: 2rem; align-items: center; }
      .survey-card { padding: 0; text-align: left; }
      .survey-main-text { font-size: 1.25rem; font-weight: 700; color: var(--color-sub); margin-bottom: 0.5rem; }
      .survey-description { font-size: 0.875rem; color: var(--color-sub); margin-bottom: 1.5rem; font-weight: 500; }
      .survey-button { background: var(--color-accent); color: var(--color-sub); padding: 1rem 2rem; border: none; border-radius: 0.5rem; font-weight: 900; font-size: 1.25rem; cursor: pointer; transition: background-color 0.3s ease; box-shadow: 0 4px 14px 0 rgba(0,0,0,0.1); }
      .survey-button:hover { background: var(--color-accent-dark); }
      .novelty-image { width: 100%; max-width: 520px; height: auto; border-radius: 0.5rem; border: 2px solid var(--color-border); }

      /* --------------------------------
         Partnerships
      --------------------------------- */
      .partnerships { background: #2b9e5a; color: #fff; position: relative; overflow: hidden; }
      .partnerships-decorative { position: absolute; top: 0; right: 0; width: 16rem; height: 16rem; opacity: 0.2; }
      .partnerships-container { max-width: 1280px; margin: 0 auto; position: relative; z-index: 10; }
      .partnerships-header { text-align: center; margin-bottom: 3rem; }
      .partnerships-title { font-weight: 900; color: #fff; margin-bottom: 1rem; }
      .partnerships-subtitle { font-weight: 700; font-size: 1.125rem; }
      .partnerships-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
      .partnership-card { background: transparent; border-radius: 0.5rem; padding: 1.5rem; color: #fff; text-align: center; }
      .partnership-header { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1rem; }
      .partnership-number { width: 3rem; height: 3rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.25rem; color: #2b9e5a; background: var(--color-accent); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); flex-shrink: 0; }
      .partnership-title { font-weight: 900; font-size: 1.125rem; color: #fff; margin: 0; line-height: 1.2; text-align: center; }
      .partnership-image { width: 60%; max-width: 300px; aspect-ratio: 4/3; object-fit: contain; display: block; margin: 0 auto 1rem; }
      .partnership-details { display: flex; flex-direction: column; gap: 0.5rem; color: #fff; font-weight: 500; text-align: left; }
      .partnership-badge { background: rgba(255,255,255,0.2); color: #fff; padding: 0.25rem 0.5rem; border-radius: 0.25rem; font-size: 0.875rem; font-weight: 700; }
      .partnership-description { font-size: 0.875rem; margin-top: 0.75rem; color: #fff; }
      .partnership-detail { display: grid; grid-template-columns: max-content 1fr; column-gap: 0.5rem; align-items: start; }
      .partnership-detail > span:last-child { display: block; }
      .partnership-detail > span:first-child { white-space: nowrap; }

      /* --------------------------------
         Footer
      --------------------------------- */
      .footer { background: var(--color-main); color: var(--white); padding: 3rem 1rem; }
      .footer-container { max-width: 1280px; margin: 0 auto; }
      .footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
      .footer-section h3 { margin-bottom: 1rem; font-weight: 700; color: var(--white); }
      .footer-section p  { color: var(--color-border); font-weight: 500; margin-bottom: 0.5rem; }
      .footer-separator { height: 1px; background: var(--color-border); opacity: 0.5; margin: 2rem 0; }
      .footer-section a { color: #fff; }
      .event-info-row a { color: #006532; }

      /* --------------------------------
         “黄色いカード” の背景演出（仕様維持）
      --------------------------------- */
      .workshops, .food, .survey {
        background: #efe07e !important;
        padding: 3rem 1rem;
      }
      .workshops .section-container-wide,
      .food .section-container-wide,
      .survey .section-container {
        background: #fff; border-radius: 12px; padding: 2rem; margin: 0 auto; max-width: 900px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08); border: 1px solid var(--color-border);
      }

      /* --------------------------------
         Desktop Enhancements（PC時の重なり/アンカー隠れを回避）
      --------------------------------- */
      @media (min-width: 1025px) {
        /* PCメニューの常時表示 */
        .nav-menu { display: flex; position: static; background: none; flex-direction: row; padding: 0; border: none; }
        .nav-menu.active { display: flex; }
        .mobile-menu-btn { display: none; }

        /* ヒーローの余白（元CSSの !important は仕様維持） */
        .hero-content { padding-top: 6rem !important; }

        /* PCではPC用画像を表示 */
        .hero-bg .pc-only { display: block; }
        .hero-bg .sp-only { display: none; }

        /* 固定ヘッダーぶんの押し下げ＆アンカー見切れ防止 */
        html { scroll-padding-top: calc(var(--nav-h) + 8px); }
        body { padding-top: var(--nav-h); }
        .section, .hero { scroll-margin-top: calc(var(--nav-h) + 8px); }

        /* 前面に（元CSSの通り z-index を強化） */
        .navbar { z-index: 2000; }

        /* PCのみナビを非表示 */
        .navbar { display: none !important; }

        /* ナビ分の余白をなくす */
        body { padding-top: 0 !important; }
        html { scroll-padding-top: 0 !important; }  
      }
      
      /* --------------------------------
         Mobile (≤767px)
         仕様：下部固定ナビ / 余白は下に確保
      --------------------------------- */
      @media (max-width: 1024px) {
        /* 文字サイズ調整 */
        h1, .hero-title-new { font-size: 1.9rem; white-space: nowrap; }
        .hero-tagline-new    { font-size: 0.9rem; white-space: nowrap; }
        h2 { font-size: 1.6rem; } h3 { font-size: 1.2rem; } p { font-size: 0.9rem; }
        .hero-content { padding-top: 4rem; }

        /* 全体の余白 */
        .section { padding: 3rem 1rem; }
        .overview-grid { padding: 1.5rem; }

        /* 概要セクションの細かい調整 */
        .event-info { padding: 1rem; }
        .event-info-row:first-child { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
        .event-openclose { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
        .event-date .md { font-size: 2rem; }
        .weather-badge { margin-left: 0; margin-top: 0.5rem; }
      
        /* タイムテーブル */
        .timeline-content { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
        .timeline-time { font-size: 1rem; padding: 0.25rem 0.75rem; }
        .timeline-item { padding: 1rem; }
        .timetable-title-badge h2 { font-size: 1.3rem; }
        .timeline-info h3 { font-size: 0.9rem; line-height: 1.25; } /* 見出しを小さく */

        /* 上映作品 */
        .films-grid { gap: 1.5rem; }
        .film-img { height: auto; aspect-ratio: 2/3; width: 50%; margin: 0 auto; display: block; }

        /* ワークショップ / フード */
        .workshop-card-header, .food-card-header { padding: 1rem 1rem 0; }
        .workshop-card-content, .food-card-content { padding: 0 1rem 1rem; }
        .workshop-image { width: 100%; aspect-ratio: 1/1; height: auto; object-fit: cover; }

        /* アンケート */
        .survey-grid, .survey-card { text-align: center; }
        .novelty-image { margin: 0 auto; }
        .survey-description { margin-bottom: 1rem; }

        /* 連携企画 */
        .partnership-card { padding: 1.25rem; }
        .partnership-header { flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; }
        .partnership-details { align-items: stretch; text-align: left; gap: 0.75rem; }
        .partnership-detail { display: grid; grid-template-columns: max-content 1fr; column-gap: 0.5rem; }
        .partnership-description { text-align: left; }

        /* フッター */
        .footer-grid { text-align: center; }
        .footer-section > div { display: flex; flex-direction: column; align-items: center; }
        .footer-section .icon { display: none; }

        /* 下部固定ナビ（仕様どおり） */
        .navbar {
          display: block !important; position: fixed; bottom: 0; top: auto; left: 0; right: 0; height: 56px;
        }
        .nav-container { height: 56px; }
        .nav-menu { display: none; }
        .nav-menu.active {
          display: flex; position: fixed; left: 0; right: 0; bottom: 56px; top: auto;
          flex-direction: column; gap: 0.5rem; background: #fff; border-top: 1px solid var(--color-border);
          padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
          max-height: 65vh; overflow-y: auto; z-index: 1001;
        }
        .mobile-menu-btn { position: relative; z-index: 1002; }

        /* 下ナビ高さぶんの余白は body の下側に確保 */
        body { padding-top: 0; padding-bottom: 56px; }

        .free-badge-new {
        --badge-size: clamp(100px, 30vw, 140px);
        padding: clamp(4px, 0.8vw, 8px);
        }
        .free-badge-small-text { font-size: clamp(12px, 3.6vw, 16px); letter-spacing: 0.12em; }
        .free-badge-large-text { font-size: clamp(32px, 8.4vw, 54px); }
        .free-badge-pill       { font-size: clamp(12px, 3.6vw, 16px); padding: 0.32em 0.72em; }
        
        /* 概要欄の緑ピルを拡大 */      
        .weather-badge {
        font-size: clamp(14px, 4vw, 18px);
        padding: 0.5em 1.1em;
        }

        /* 旗アイコンを小さく */
        .section-title .title-icon {
        /* 最小64px、端末幅に応じて縮小〜最大90pxまで */
        width: clamp(64px, 22vw, 90px);
        height: auto;
        }
      }

      /* シャトル案内を枠で強調（シンプル版） */
      .event-info .event-addr{
        border: 2px solid var(--color-main);
        border-radius: .75rem;
        padding: .6rem .8rem;
        font-weight: 800;
        font-size: clamp(13px, 3.6vw, 16px); /* モバイルで少し大きく */
        color: var(--color-sub);
        background: #fff; /* 外してもOK。残すとクッキリ */
      }
      .event-info .event-addr strong{ color: var(--color-main); }
      
      /* --------------------------------
         Responsive Grids (breakpoints only)
      --------------------------------- */
      @media (min-width: 1025px) {
        .overview-grid { grid-template-columns: 1fr 1fr; }
        .overview-intro-block { margin-bottom: 4rem; }
        .films-grid { grid-template-columns: repeat(3, 1fr); }
        .workshop-grid-3 { grid-template-columns: repeat(3, 1fr); }
        .workshop-grid-2 { grid-template-columns: repeat(2, 1fr); }
        .food-grid { grid-template-columns: repeat(2, 1fr); }
        .survey-grid { grid-template-columns: 1fr 1fr; }
        .partnerships-grid { grid-template-columns: repeat(2, 1fr); }
        .footer-grid { grid-template-columns: repeat(3, 1fr); }
      }

      /* モバイルでは改行を無視 */
      .pc-only {
        display: none;
      }
      
      /* PC時のみ改行タグを有効に */
      @media screen and (min-width: 1025px) {
        .pc-only {
          display: inline;
        }
      }

      @media (max-width: 1024px) {
        .partnership-lead {
          margin-bottom: 1rem; /* スマホ時のみ余白を追加 */
        }
      }
