    :root {
      --pink:   #FFD1DC;
      --blue:   #9DD9F0;
      --yellow: #FFE87A;
      --coral:  #F0A090;
      --purple: #C8A2C8;
      --red:    #CC3366;
      --navy:   #5B7EC9;
      --text:   #4a4a4a;
      --white:  #ffffff;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Noto Sans JP', sans-serif;
      background: #fffafa;
      color: var(--text);
      overflow-x: hidden;
    }

    /* ======= GINGHAM BG UTIL ======= */
    .gingham-bg {
      background-color: #fffafa;
      background-image:
        repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(255,180,200,0.13) 29px, rgba(255,180,200,0.13) 30px),
        repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(255,180,200,0.13) 29px, rgba(255,180,200,0.13) 30px),
        repeating-linear-gradient(0deg, rgba(255,180,200,0.07) 0px, rgba(255,180,200,0.07) 15px, transparent 15px, transparent 30px),
        repeating-linear-gradient(90deg, rgba(255,180,200,0.07) 0px, rgba(255,180,200,0.07) 15px, transparent 15px, transparent 30px);
    }

    /* ======= COLOR RIBBON ======= */
    .ribbon {
      height: 6px;
      background: linear-gradient(90deg,
        var(--pink) 0%,var(--pink) 20%,
        var(--blue) 20%,var(--blue) 40%,
        var(--yellow) 40%,var(--yellow) 60%,
        var(--coral) 60%,var(--coral) 80%,
        var(--purple) 80%,var(--purple) 100%
      );
    }

    /* ======= SPARKLE DECO ======= */
    .sparkles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .sp {
      position: absolute;
      font-size: 18px;
      animation: twinkle 3s ease-in-out infinite;
      color: #d4a843;
      opacity: 0.7;
    }
    @keyframes twinkle {
      0%,100% { opacity: 0.3; transform: scale(0.8); }
      50%      { opacity: 1;   transform: scale(1.2); }
    }

    /* ======= FLOATING PETALS ======= */
    .petal-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
    .petal {
      position: absolute;
      border-radius: 50% 0 50% 0;
      opacity: 0;
      animation: fall linear infinite;
    }
    @keyframes fall {
      0%   { transform: translateY(-60px) rotate(0deg); opacity: 0; }
      10%  { opacity: 0.6; }
      90%  { opacity: 0.3; }
      100% { transform: translateY(110vh) rotate(400deg); opacity: 0; }
    }

    /* ======= HERO ======= */
    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      padding: 80px 20px 60px;
      text-align: center;
    }

    .logo-wrap {
      position: relative;
      z-index: 2;
      animation: fadeUp 1s ease both;
    }

.logo-wrap img {
    /* 画面幅の70%で可変させ、最大1000pxで止める */
    width: min(1000px, 70vw);
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(200, 60, 100, 0.18));
}
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-member {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 36px;
      position: relative;
      z-index: 2;
      animation: fadeUp 1.2s ease 0.3s both;
    }
    .m-tag {
      padding: 7px 20px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      border: 2px solid transparent;
      transition: transform 0.2s;
    }
    .m-tag:hover { transform: translateY(-3px); }
    .m-momoka { background: var(--pink);   border-color: #ffaac0; color: var(--red); }
    .m-kairi  { background: var(--blue);   border-color: #6ab8d8; color: #1A6FA8; }
    .m-yui    { background: var(--coral);  border-color: #d87060; color: #8B2020; }
    .m-aie    { background: var(--yellow); border-color: #e8c200; color: #7a5800; }
    .m-saren  {
      background: var(--purple);
      border-color: #b080b0;
      color: white;
      border-style: dashed;
      opacity: 0.85;
    }

    .scroll-hint {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: #ccc;
      font-size: 10px;
      letter-spacing: 0.2em;
      animation: bounce 2s ease infinite;
    }
    @keyframes bounce {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50%      { transform: translateX(-50%) translateY(8px); }
    }

    /* ======= SECTION BASE ======= */
    section { padding: 80px 20px; }
    .section-head {
      text-align: center;
      margin-bottom: 52px;
    }
    .section-label {
      font-size: 11px;
      letter-spacing: 0.3em;
      color: var(--red);
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .section-title {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(22px, 4vw, 34px);
      font-weight: 900;
      color: var(--text);
      position: relative;
      display: inline-block;
    }
    .section-title::after {
      content: '';
      display: block;
      height: 4px;
      border-radius: 2px;
      margin-top: 10px;
      background: linear-gradient(90deg, var(--pink), var(--blue), var(--yellow), var(--coral), var(--purple));
    }
/* ========================================================
   Header / Navigation
   ======================================================== */
.header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background-color: #df6f9e; /* 画像に近いピンク */
  z-index: 1000;
  height: 70px;
}

.header-inner {
  display: flex;
  justify-content: center; /* グループ全体を中央寄せ */
  align-items: center;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px; /* ロゴとメニュー間の距離 */
  padding: 0 20px;
}

.header-logo a {
  color: #ffffff; /* 白文字 */
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

/* もしロゴを画像にする場合はこちらを適用 */
.header-logo img {
  height: 40px;
  width: auto;
}

.pc-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.pc-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-family: 'Yu Mincho', 'Noto Serif JP', serif; /* 明朝体 */
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
}

.pc-nav a:hover {
  opacity: 0.7;
}

/* PCではスマホ用要素を非表示 */
.hamburger { display: none; }
.sp-nav-menu { display: none; }
.black-bg { display: none; }

/* ========================================================
   レスポンシブ (スマホ表示 900px以下)
   ======================================================== */
@media (max-width: 900px) {
  .header { height: 60px; }
  
  .header-inner {
    justify-content: flex-start;
    gap: 0;
  }

  .header-logo a {
    font-size: 12px;
  }

  .pc-nav { display: none; }

/* --- スマホメニュー本体 --- */
  .sp-nav-menu {
    display: block;
    position: fixed;
    top: 0; 
    right: 0; 
    transform: translateX(100%);
    width: 100%; 
    height: 100vh;       /* 古いブラウザ用のフォールバック */
    height: 100dvh;      /* ★追加：Safariの上下バーを除いた正確な画面高さ */
    background-color: #df6f9e; 
    z-index: 9998;
    transition: transform 0.4s ease-in-out;
    padding-top: 65px;   /* ★変更：100px → 65pxにして全体を上に引き上げる */
    padding-bottom: 30px;/* ★追加：一番下までスクロールした時の余白 */
    overflow-y: auto;
  }
  .sp-nav-menu.is-open { 
    transform: translateX(0); 
  }

  .sp-nav ul {
    list-style: none;
    padding: 0 20px 15px; /* ★変更：下余白を40px → 15pxに減らし、バナーを上に引き上げる */
    margin: 0;
  }
  .sp-nav li { width: 100%; }
  
  .sp-nav-link {
    color: #ffffff;
    font-size: 16px;;
    letter-spacing: 0.1em;
    display: block;
    text-align: center;
    padding: 16px 0;
    border-bottom: none;
    text-decoration: none;
  }

  /* --- スマホメニュー内のバナー --- */
  .sp-nav-banners {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 20px 80px; /* ★変更：Safariのバーが被ってもタップできるよう下余白を多めに確保 */
  }
  .sp-nav-banners a { width: 48%; }
  .sp-nav-banners a:nth-child(3) { margin: 0 auto; }
  .sp-nav-banners img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
  }

  /* --- ハンバーガーボタン --- */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    position: fixed;
    top: 21px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;
  }
  
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff !important;
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none; /* ★超重要：線の誤クリック判定を無効化 */
  }
  
  /* メニューが開いているとき（×印） */
  .hamburger.is-open span:nth-child(1) { /* activeから変更 */
    transform: translateY(8px) rotate(45deg) !important;
  }
  .hamburger.is-open span:nth-child(2) {
    opacity: 0 !important;
  }
  .hamburger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
  }

  /* --- 黒背景（オーバーレイ） --- */
  .black-bg {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: rgba(0,0,0,0.6);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .black-bg.is-open { /* activeから変更 */
    opacity: 1;
    visibility: visible;
  }
}

/* --- スクリプト調見出し（Outline / Venue / Ticket共通） --- */
/* (これ以降は消さずにそのまま残してください) */

/* --- スクリプト調見出し（Outline / Venue / Ticket共通） --- */
.section-head-script {
  text-align: center;
  margin-bottom: 50px;
}
.script-title {
  font-family: 'Pinyon Script', cursive; /* 既存HTMLにあるWebフォントを利用 */
  font-size: 60px;
  color: var(--brand-pink);
  line-height: 1.2;
  font-weight: normal;
}
.script-sub {
  font-size: 16px;
  color: var(--brand-dark-pink);
  font-weight: bold;
  letter-spacing: 0.15em;
  margin-top: -10px;
}


    /* ======= CONCEPT ======= */
    .concept { background: white; }
    .concept-inner {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
    }
    .concept-text {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(14px, 2.4vw, 18px);
      line-height: 2.4;
      color: #555;
      margin-bottom: 40px;
    }
    .hl {
      background: linear-gradient(transparent 60%, rgba(255,209,220,0.7) 60%);
      font-weight: 700;
      color: var(--text);
    }
    .concept-quote {
      background: #fff5f8;
      border-left: 4px solid var(--purple);
      border-radius: 0 16px 16px 0;
      padding: 18px 24px;
      margin: 20px auto;
      max-width: 560px;
      text-align: left;
    }
    .concept-quote p {
      font-family: 'Noto Serif JP', serif;
      font-size: 14px;
      color: #555;
      line-height: 2;
    }
    .concept-quote cite {
      font-size: 11px;
      color: #bbb;
      font-style: normal;
    }
    .concept-tagline {
      margin-top: 40px;
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(16px, 3vw, 22px);
      font-weight: 900;
      color: var(--red);
      letter-spacing: 0.05em;
    }

    /* ======= member ======= */
    .member { background: #fffafa; }
    .member-wrap {
      max-width: 1060px;
      margin: 0 auto;
    }
    .gen-block {
      margin-bottom: 52px;
    }
    .gen-label {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 20px;
    }
    .gen-label-text {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2em;
      color: var(--red);
      white-space: nowrap;
    }
    .gen-label-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, rgba(204,51,102,0.3), transparent);
    }
    .member-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
      gap: 16px;
    }

    .member-card {
      background: white;
      border-radius: 20px;
      padding: 28px 14px 20px;
      text-align: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.06);
      transition: transform 0.25s, box-shadow 0.25s;
      position: relative;
      overflow: hidden;
    }
    .member-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 28px rgba(0,0,0,0.10);
    }
    .member-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 5px;
      border-radius: 20px 20px 0 0;
    }
/* ── 19期生 ── */
    /* 伊藤百花：このままでOK */
    .card-momoka::before         { background: linear-gradient(90deg, #FFD1DC, #FFB7C5); }
    .card-momoka .color-bar-card { background: linear-gradient(90deg, #FFD1DC, #FFB7C5); }

    /* 奥本カイリ：下段を青に変更 */
    .card-kairi::before         { background: linear-gradient(90deg, #9DD9F0, #6ab8d8); } /* 上: 水色 */
    .card-kairi .color-bar-card { background: linear-gradient(90deg, #5B7EC9, #3A5DA8); } /* 下: 青 */

    /* 川村結衣：下段を紫に変更 */
    .card-yui::before           { background: linear-gradient(90deg, #F0A090, #d87060); } /* 上: コーラル */
    .card-yui .color-bar-card   { background: linear-gradient(90deg, #C8A2C8, #b080b0); } /* 下: 紫 */

    /* 花田藍衣：下段を白（薄いグレー）に変更 */
    .card-aie::before           { background: linear-gradient(90deg, #FFE87A, #f0c800); } /* 上: 黄色 */
    .card-aie .color-bar-card   { background: linear-gradient(90deg, #f5f5f5, #e0e0e0); } /* 下: 薄いグレー */


    /* ── 20期研究生 ── */
    /* 大賀彩姫：上が黄緑、下が青 */
    .card-oga::before           { background: linear-gradient(90deg, #a8d870, #8bc34a); } /* 上: 黄緑 */
    .card-oga .color-bar-card   { background: linear-gradient(90deg, #5B7EC9, #3A5DA8); } /* 下: 青 */

    /* 近藤沙樹：上がオレンジ、下が緑 */
    .card-kondo::before         { background: linear-gradient(90deg, #F4A060, #f08030); } /* 上: オレンジ */
    .card-kondo .color-bar-card { background: linear-gradient(90deg, #78C878, #4caf50); } /* 下: 緑 */

    /* 丸山ひなた：上がピンク、下が青 */
    .card-maru::before          { background: linear-gradient(90deg, #FFD1DC, #FFB7C5); } /* 上: ピンク */
    .card-maru .color-bar-card  { background: linear-gradient(90deg, #5B7EC9, #3A5DA8); } /* 下: 青 */


    /* ── 21期研究生 ── */
    /* 髙橋舞桜：上下とも紫 */
    .card-takahashi::before         { background: linear-gradient(90deg, #C8A2C8, #b080b0); }
    .card-takahashi .color-bar-card { background: linear-gradient(90deg, #C8A2C8, #b080b0); }

    /* 田中沙友利：上が黄緑、下が水色 */
    .card-tanaka::before         { background: linear-gradient(90deg, #a8d870, #8bc34a); } /* 上: 黄緑 */
    .card-tanaka .color-bar-card { background: linear-gradient(90deg, #9DD9F0, #6ab8d8); } /* 下: 水色 */

    /* 牧戸愛茉：上下ともピンク */
    .card-makito::before         { background: linear-gradient(90deg, #FFD1DC, #FFB7C5); }
    .card-makito .color-bar-card { background: linear-gradient(90deg, #FFD1DC, #FFB7C5); }

    /* 森川優：上がオレンジ、下が水色 */
    .card-morikawa::before         { background: linear-gradient(90deg, #F4A060, #f08030); } /* 上: オレンジ */
    .card-morikawa .color-bar-card { background: linear-gradient(90deg, #9DD9F0, #6ab8d8); } /* 下: 水色 */

    /* 渡邉葵心：上下とも青 */
    .card-watanabe::before         { background: linear-gradient(90deg, #5B7EC9, #3A5DA8); }
    .card-watanabe .color-bar-card { background: linear-gradient(90deg, #5B7EC9, #3A5DA8); }

/* --- リンク化したメンバーカードのスタイルリセット --- */
a.member-card,
a.member-card:hover,
a.member-card:visited,
a.member-card:active {
  text-decoration: none !important; /* 下線を強制的に消す */
  color: inherit !important;        /* 文字が青や紫になるのを防ぐ */
  display: block;                   /* レイアウト崩れ防止 */
}

    /* member photo */
    .member-photo {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      margin: 0 auto 16px;
      object-fit: cover;
      border: 3px solid white;
      box-shadow: 0 4px 14px rgba(0,0,0,0.10);
      display: block;
    }
    .member-photo-placeholder {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      margin: 0 auto 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      border: 3px solid white;
      box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    }

    .member-name {
      font-weight: 900;
      font-size: 17px;
      color: #333;
      margin-bottom: 3px;
    }
    .member-en {
      font-size: 10px;
      color: #ccc;
      letter-spacing: 0.12em;
      margin-bottom: 14px;
    }
    .color-bar-card {
      height: 6px;
      border-radius: 3px;
      width: 60%;
      margin: 0 auto;
    }
    .saren-note {
      margin-top: 12px;
      font-size: 11px;
      color: var(--purple);
      font-weight: 700;
    }

    /* ======= STORY ======= */
    .story { background: white; }
    .story-inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .timeline {
      position: relative;
      padding-left: 32px;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 10px;
      top: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, var(--pink), var(--blue), var(--yellow), var(--coral), var(--purple));
      border-radius: 2px;
    }
    .tl-item {
      position: relative;
      margin-bottom: 36px;
      animation: slideIn 0.6s ease both;
    }
    .tl-item::before {
      content: '';
      position: absolute;
      left: -26px;
      top: 6px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      border: 2px solid white;
      box-shadow: 0 0 0 2px currentColor;
    }
/* タイムラインの●（背景のグラデーションに完全同期） */
    .tl-item.t1::before  { color: #FFB7C5; background: #FFD1DC; } /* ピンク */
    .tl-item.t2::before  { color: #E3BFE2; background: #E3D3E2; }
    .tl-item.t3::before  { color: #C7C6E7; background: #C7D6E7; }
    .tl-item.t4::before  { color: #ABC8ED; background: #ABD8ED; }
    .tl-item.t5::before  { color: #8BC9E0; background: #ABDBDF; } /* 水色付近 */
    .tl-item.t6::before  { color: #B7CFAD; background: #C7DFBD; }
    .tl-item.t7::before  { color: #D3D48C; background: #E3E49C; }
    .tl-item.t8::before  { color: #EFD86A; background: #FFE87A; } /* 黄色 */
    .tl-item.t9::before  { color: #EBC370; background: #FBD380; }
    .tl-item.t10::before { color: #E6AF77; background: #F6BF87; }
    .tl-item.t11::before { color: #E29A7D; background: #F2AA8D; }
    .tl-item.t12::before { color: #DA9088; background: #EAA098; } /* コーラル付近 */
    .tl-item.t13::before { color: #CF9198; background: #DFA1A8; }
    .tl-item.t14::before { color: #C391A8; background: #D3A1B8; }
    .tl-item.t15::before { color: #B892B8; background: #C8A2C8; } /* 紫 */

    @keyframes slideIn {
      from { opacity: 0; transform: translateX(-20px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .tl-date {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      color: var(--red);
      margin-bottom: 4px;
    }
    .tl-text {
      font-family: 'Noto Serif JP', serif;
      font-size: 15px;
      line-height: 1.9;
      color: #555;
    }
    .tl-text strong { color: #333; }

    /* ======= INFO ======= */
    .info { background: #fffafa; }
    .info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 18px;
      max-width: 880px;
      margin: 0 auto;
    }
    .info-card {
      background: white;
      border-radius: 20px;
      padding: 28px 24px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.05);
      position: relative;
      overflow: hidden;
    }
    .info-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-image:
        repeating-linear-gradient(0deg, rgba(255,180,200,0.07) 0, rgba(255,180,200,0.07) 1px, transparent 1px, transparent 10px),
        repeating-linear-gradient(90deg, rgba(255,180,200,0.07) 0, rgba(255,180,200,0.07) 1px, transparent 1px, transparent 10px);
      pointer-events: none;
    }
    .info-icon {
      font-size: 28px;
      margin-bottom: 10px;
    }
    .info-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.25em;
      color: #aaa;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .info-value {
      font-family: 'Noto Serif JP', serif;
      font-size: 17px;
      font-weight: 700;
      color: #333;
      line-height: 1.6;
    }
    .info-value small {
      display: block;
      font-size: 12px;
      font-weight: 400;
      color: #aaa;
      margin-top: 4px;
      font-family: 'Noto Sans JP', sans-serif;
    }


/* --- Outline (旧 INFO) --- */
.outline-section {
  background: #fff;
  padding: 100px 20px;
}
.outline-inner {
  max-width: 800px;
  margin: 0 auto;
}
.outline-table {
  border-top: 1px solid #eee;
}
.outline-row {
  display: flex;
  padding: 30px 10px;
  border-bottom: 1px solid #eee;
  align-items: center;
}
.outline-head {
  flex: 1;
  font-weight: bold;
  color: var(--brand-dark-pink);
  font-size: 16px;
  line-height: 1.6;
}
.outline-data {
  flex: 1;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

/* ========================================================
   レスポンシブ (スマホ表示 900px以下)
   ======================================================== */
@media (max-width: 900px) {
.outline-row {
  display: flex;
  flex-direction: column;
  padding: 30px 10px;
  border-bottom: 1px solid #eee;
  align-items: center;
}
.outline-head {
  flex: 1;
  text-align: center;	
  font-weight: bold;
  color: var(--brand-dark-pink);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;	
}
}

/* --- Venue --- */
.venue-section {
  padding: 100px 20px;
  background-color: var(--brand-beige);
}
.venue-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.venue-info h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}
.venue-info p {
  font-size: 15px;
  color: #555;
  margin-bottom: 40px;
}
.venue-map iframe {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* --- Ticket (画像ベースの新レイアウト) --- */
.ticket-section {
  background: #fff;
  padding: 100px 20px;
}
.ticket-inner {
  max-width: 800px;
  margin: 0 auto;
}



/* 販売スケジュールを囲む枠線 */
.ticket-sale-wrap {
  border-top: 1px solid #eee;    /* 一番上の濃いグレー線 */
  border-bottom: 1px solid #eee; /* 一番下の濃いグレー線 */
  margin-bottom: 60px;
}

/* 各販売ブロック (FCと一般) */
.ticket-sale-row {
  padding: 40px 0;
  text-align: center;
}
/* FCと一般の間の線 */
.ticket-sale-row:first-child {
  border-bottom: 1px solid #eee;
}

.ticket-sale-info {
  display: flex;
  flex-direction: column; /* 横並びから縦並びに変更 */
  justify-content: center;
  align-items: center;
  gap: 10px; /* 見出しと日付の隙間（お好みで調整） */
  margin-bottom: 25px;
}

.ticket-sale-h3 {
  font-size: 20px;
  color: #df6f9e;
  text-align: center; /* 中央揃えに変更 */
  line-height: 1.4;
  font-weight: bold;
}

.ticket-sale-h4 {
  font-size: 18px;
  color: #333;
  text-align: center; /* 中央揃えに変更 */
}

.ticket-sale-text {
  font-size: 16px;
  color: #333;
  text-align: center; /* 中央揃えに変更 */
}

/* お申し込みボタン（少しグラデーションと影をつけてリッチに） */
.ticket-btn-main {
  display: inline-block;
  background: linear-gradient(135deg, #e373ad, #e895b9); 
  color: #ffffff;
  padding: 16px 60px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 6px 15px rgba(227, 115, 173, 0.4);
  transition: 0.3s;
}
.ticket-btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(227, 115, 173, 0.6);
}

/* チケット料金ブロック（見出し上・リスト下の縦積み） */
.ticket-price-wrap {
  display: flex;
  flex-direction: column; /* 縦並びに変更 */
  justify-content: center;
  align-items: center;    /* 中央揃え */
  gap: 25px;              /* 見出しとリストの隙間 */
  margin-bottom: 40px;
}

.ticket-price-h3 {
  font-size: 18px;
  color: #333;
  font-weight: bold;
  margin: 0;
  padding-top: 2px; /* リストの文字と高さを合わせるための微調整 */
}

/* 料金リストの設定 */
.ticket-price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ticket-price-list li {
  font-size: 16px;
  margin-bottom: 12px;
  color: #333;
  display: flex; /* 席種と料金を横に綺麗に並べる */
  align-items: center;
}

.ticket-price-list span {
  display: block;
  width: 160px; /* 「Photographer席：」が収まる幅に設定 */
  text-align: left; /* 席種名も左寄せにする */
  font-weight: bold;
  margin-right: 10px;
}

/* スマホ表示の調整（画面幅768px以下） */
@media (max-width: 768px) {
  .ticket-price-wrap {
    flex-direction: column; /* スマホでは縦並びに変更 */
    align-items: center;
    gap: 20px;
  }
  .ticket-price-h3 {
    padding-top: 0;
  }
}

/* ご注意事項ブロック */
.caution-block {
  background: var(--brand-beige, #fdf8f9); /* 変数がなければ薄い色に */
  padding: 30px;
  border-radius: 12px;
  text-align: left;
}
.caution-list {
  list-style: none;
  font-size: 13px;
  color: #d93025; /* 注意書き用 */
  line-height: 1.6;
}

/* --- Seat Map (客席イメージ) --- */
.seatmap-section {
  padding: 100px 20px;
  background-color: #fff5f8;
}
.seatmap-inner {
  max-width: 800px;
  margin: 0 auto;
}
.seatmap-img {
  text-align: center;
}
.seatmap-img img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.seatmap-notes {
  margin-top: 15px;      /* 画像との隙間 */
  font-size: 13px;       /* 文字の大きさ */
  color: #555;           /* 文字の色 */
  text-align: left;    /* 中央寄せ（左寄せにしたい場合は left に変更してください） */
  line-height: 1.6;
}

.ticket-notes {
  margin-top: 40px;      /* 上の要素との隙間 */
  font-size: 13px;       /* 文字の大きさ */
  color: #555;           /* 文字の色 */
  text-align: left;      /* 左寄せ */
  line-height: 1.6;
}
/* --- レスポンシブ対応（スマホ時） --- */
@media (max-width: 768px) {
  .ticket-sale-info {
    flex-direction: column; /* スマホでは縦並びに */
    gap: 15px;
  }
  .ticket-sale-h3, .ticket-sale-text {
    text-align: center; /* 縦並び時は中央揃え */
  }
  .ticket-price-list span {
    display: block;
    margin-right: 0;
  }
  .ticket-price-list li {
    margin-bottom: 20px;
  }
}

/*フッター
-------------------------------------*/
footer {
  background: #df6f9e;
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 25px;
  text-align: center;
  position: relative;
  z-index: auto;
}
.copyright {
  color: #ffffff;
  font-size: 17px;
  font-weight: bold;
  padding: 80px 0 0;
}
footer ul {
  display: flex;
  justify-content: space-between;
  align-items: center; /* 画像の高さが違っても中央で揃える */
  max-width: 1015px;
  margin: 0 auto;
  padding: 0 15px;
}
footer ul li {
  list-style-type: none;
  width: 32%; /* 3分割 */
}
footer ul li a {
  display: block;
}
/* ↓ ここが一番重要です（画像がはみ出さないように100%にする） */
footer ul li img {
  width: 100%;
  height: auto;
  display: block; /* img特有の下部の余白を消す */
  transition: all .3s;
}
footer ul li img:hover {
  opacity: 0.74;
}

/* スマホ対応（768px以下） */
@media only screen and (max-width: 768px){
  footer {
    padding: 50px 0 15px;
  }
  footer ul {
    flex-wrap: wrap;
    justify-content: center; /* 中央寄せ */
	margin-bottom: 30px;
    gap: 10px; /* 余白をgapで管理すると綺麗です */
  }
  footer ul li {
    width: 48%; /* スマホでは2列 */
    margin: 0 0 4%;
  }
  /* 3つ目のバナー（AKB Mail）を中央に配置したい場合 */
  footer ul li:last-child {
    margin: 0 auto; 
  }
  .copyright {
    font-size: 14px;
    padding: 30px 0 0; /* PCより余白を少し詰める */
  }
}

/*TOPへ戻る
-------------------------------------*/
.header-box {
    display: none;
}
.pagetop {
  bottom: 30px;
  position: fixed;
  right: 20px;
  z-index: 3;
}
.pagetop a {
  background: #e373ad;
  position: relative;
  display: block;
  color: #fff;
  text-align: center;
  text-decoration: none;
  width: 55px;
  height: 55px;
  border-radius: 60px;
}
.pagetop a::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 10px;
  margin: auto;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  width: 10px;
}
.pagetop:hover {
  transition: all .3s;
  opacity: 0.8;
}
@media screen and (max-width: 768px){
  .pagetop {
    bottom: 5%;
    right: 3%;
  }
  .pagetop a {
    width: 50px;
    height: 50px;
  }
}
    /* ======= RESPONSIVE ======= */
    @media (max-width: 600px) {
      .member-grid { grid-template-columns: repeat(2, 1fr); }
      .member-card { padding: 28px 12px 20px; }
      .timeline { padding-left: 28px; }
    }