:root {
  /* キッズフェスタ正式カラー（2026-06-12 指定値） */
  --red: #E34F35;           /* あか＝主役アクセント */
  --red-pale: #FBE7E2;
  --yellow: #F9BC37;        /* 黄 */
  --yellow-deep: #DC9D18;
  --yellow-text: #B9821A;   /* 黄系を文字に使うとき用 */
  --blue: #3863A6;          /* 青 */
  --blue-pale: #E9EFF8;
  --green: #1A9F63;         /* 緑 */
  --green-pale: #E1F4EB;
  --yellow-pale: #FEF1CB;
  --sky: #8EBAD6;           /* 淡い空色（KV実抽出のサブ色） */
  --cream: #FBF2DC;         /* 淡背景 */
  --ink: #2A2A2A;
  --muted: #8a8a8a;
  --line: #E9DCC2;
  --bg: #FFFDF8;            /* KV背景に合わせたほぼ白 */
}

html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 60px; }
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Sans", sans-serif;
  color: var(--ink);
  background-color: #F6E9C8;
  line-height: 1.85;
  letter-spacing: 0.04em;
  font-feature-settings: 'palt' 1;
  font-weight: 500;
}

h1, h2, h3 {
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  font-weight: 900;
}

.page-wrap {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg);
  min-height: 100vh;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  position: relative;
  /* hidden だと子孫の position: sticky（ヘッダー追従）が効かなくなるため clip */
  overflow: clip;
}

/* セクション基本 */
section {
  padding: 56px 24px;
  position: relative;
}

/* セクション見出し */
.sec-en {
  font-family: "Fredoka", sans-serif;
  font-size: 14px;
  color: var(--red);
  letter-spacing: 0.2em;
  margin: 0 0 6px;
  font-weight: 700;
  text-align: center;
}
.sec-jp {
  font-size: 26px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0 0 28px;
  text-align: center;
}
/* ===== ヘッダー ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.site-header-inner {
  position: relative;
  padding: 12px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
}
.site-header-inner a { display: flex; align-items: center; }
.site-logo { display: block; height: 26px; width: auto; object-fit: contain; }

.menu-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--ink);
}
.site-header-inner .menu-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

/* ===== ドロワー ===== */
.menu-drawer {
  position: fixed;
  top: 0;
  right: max(0px, calc(50vw - 240px));
  width: calc(min(100vw, 480px) * 0.85);
  max-width: 320px;
  height: 100%;
  background: #fff;
  z-index: 200;
  transform: translateX(calc(100% + 50vw));
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex; flex-direction: column;
  box-shadow: -4px 0 20px rgba(0,0,0,0.12);
}
.menu-drawer.open { transform: translateX(0); }
.menu-drawer-inner { padding: 16px 20px 32px; }
.menu-drawer-header { display: flex; justify-content: flex-end; margin-bottom: 12px; }
.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 150;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.menu-overlay.open { opacity: 1; pointer-events: auto; }
.menu-nav { display: flex; flex-direction: column; gap: 4px; }
.menu-nav-item {
  display: flex; flex-direction: column; gap: 2px;
  padding: 14px 12px;
  border-bottom: 1px dashed var(--line);
  text-decoration: none;
  color: var(--ink);
}
.menu-nav-en {
  font-family: "Fredoka", sans-serif;
  font-size: 12px;
  color: var(--red);
  letter-spacing: 0.12em;
  font-weight: 700;
}
.menu-nav-ja {
  font-size: 14px;
  font-weight: 700;
}

/* ===== KV ===== */
.kv {
  padding: 0;
  background: #fff;
}
.kv-img {
  display: block;
  width: 100%;
  height: auto;
}
.kv-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}
.kv-strip-badge {
  background: var(--yellow);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  padding: 2px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.kv-strip-text { letter-spacing: 0.06em; }
.kv-strip svg { flex-shrink: 0; color: var(--yellow); }

/* ===== About ===== */
.about {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.medama-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.medama {
  position: absolute;
  width: 56px;
  height: auto;
  display: block;
}
.medama--g { top: 24px;    left: 10px;   transform: rotate(-12deg); width: 66px; }
.medama--y { top: 24px;    right: 10px;  transform: rotate(14deg);  width: 60px; }
.medama--b { bottom: 11px; right: 12px;  transform: rotate(-10deg); width: 58px; }
.medama--r { bottom: 11px;  left: 12px;  transform: rotate(10deg);  width: 60px; }
.about > :not(.medama-decor) { position: relative; z-index: 1; }
.about-credit {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.14em;
  margin: 0 0 10px;
  line-height: 2.0;
}
.about-credit .x {
  display: inline-block;
  margin: 0 4px;
  color: var(--red);
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
}
.about-tag {
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--red);
  letter-spacing: 0.14em;
  margin: 0 0 26px;
  line-height: 2.0;
}
.marker {
  background: linear-gradient(transparent 62%, rgba(247, 193, 79, 0.6) 62%);
  padding: 0 2px;
}
.about-body {
  text-align: center;
  font-size: 14px;
  line-height: 2.0;
  margin: 0 0 18px;
}
.about-body--em {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 24px;
}

/* ===== Exhibitors Carousel ===== */
.exhibitors { background: #fff; }
.exh-lead {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 28px;
}
.carousel {
  overflow: hidden;
  margin: 22px -24px 0;
  padding: 6px 0;
}
.carousel-track {
  display: flex;
  gap: 10px;
  padding: 4px 24px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.exh-card {
  flex: 0 0 156px;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  display: flex;
  flex-direction: column;
}
.exh-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 9px;
  background: #fff;
  border: 2px dashed var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  overflow: hidden;
}
.exh-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.exh-card-img:has(img) {
  display: block;
  border-style: solid;
  border-color: var(--ink);
}

/* ===== News ===== */
/* 記事1件のあいだは余白を詰める（増えたら section 標準に戻す） */
.news { background: #fff; padding-top: 50px; padding-bottom: 10px; }
.news-list {
  list-style: none;
  margin: 0;
  padding: 4px 18px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 16px;
  box-shadow: 4px 4px 0 var(--ink);
  /* お知らせが約1.5件見える高さでスクロール */
  max-height: 132px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.news-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  align-items: flex-start;
}
.news-item:last-child { border-bottom: none; }
.news-date {
  font-family: "Fredoka", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
  white-space: nowrap;
  padding-top: 2px;
}
.news-text { font-size: 14px; line-height: 1.7; margin: 0; }

/* ===== Recommend ===== */
.recommend { background: #fff; }
.recommend::before {
  content: '';
  display: block;
  width: 64%;
  margin: 0 auto 36px;
  border-top: 1px dashed var(--line);
}
.rec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 14px;
}
.rec-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.rec-shape {
  width: 134px; height: 134px;
  display: block;
  margin-bottom: 12px;
  position: relative;
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  overflow: hidden;
}
.rec-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}
.rec-shape--1 {
  background: var(--red-pale);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
}
.rec-shape--1 .rec-img { transform: translateY(8px); }
.rec-shape--2 {
  background: var(--blue-pale);
  border-radius: 50% 60% 40% 50% / 60% 40% 50% 50%;
}
.rec-shape--3 {
  background: var(--yellow-pale);
  border-radius: 45% 55% 60% 40% / 50% 50% 55% 45%;
}
.rec-shape--3 .rec-img { transform: translate(-1px, 1px); }
.rec-shape--4 {
  background: var(--green-pale);
  border-radius: 55% 45% 50% 50% / 60% 50% 45% 55%;
}
.rec-shape--4 .rec-img { transform: translate(3px, 1px); }
.rec-text {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
  /* 固定<br>だと狭い画面で中途半端に折り返すため、自動で行バランスを取る */
  text-wrap: balance;
}
.nobr { white-space: nowrap; }

/* ===== 支給バナー用フラット枠（コナン・タイムテーブル・リトル・ママ） =====
   先方支給の画像がそのまま入る場所。こちらでデザインしない。
   画像差し替え時は .banner-slot ごと <img> に置き換える */
.banner-slot {
  border: 1px dashed #C9BFA8;
  border-radius: 8px;
  background: rgba(42, 42, 42, 0.03);
  padding: 40px 20px;
  text-align: center;
}
.banner-slot p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.7;
}
.banner-slot small {
  display: block;
  font-size: 11px;
  margin-top: 4px;
  color: var(--muted);
}

.conan-banner, .littlemama-banner {
  background: var(--cream);
}
.conan-banner { padding-top: 40px; padding-bottom: 40px; }
.littlemama-banner { padding-bottom: 0; }
.littlemama-banner .conan-banner-img { margin-bottom: 0; }

/* ===== Conan Section（特別ブース） ===== */
.conan-section {
  background: #fff;
  text-align: center;
}
#conan { padding-bottom: 16px; }
.conan-section .sec-jp { margin: 0 0 16px; }
#littlemama { background: var(--cream); }
#creator::before {
  content: '';
  display: block;
  width: 64%;
  margin: 0 auto 36px;
  border-top: 1px dashed var(--line);
}
.badge-special {
  display: inline-block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  background: var(--red);
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
}
.conan-subtitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 0 0 6px;
}
.conan-banner-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 14px;
  border-radius: 10px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.conan-desc {
  text-align: left;
  font-size: 13.5px;
  line-height: 1.85;
  margin: 0 0 22px;
}
/* 2ミッションの横スライド表示（howtoと同じく次画像チラ見せ＋スナップ） */
.conan-missions {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 48px 12px;
  margin: 0 -24px 8px;
}
.conan-missions::-webkit-scrollbar { display: none; }
.conan-mission {
  flex: 0 0 100%;
  scroll-snap-align: center;
  margin: 0;
}
.conan-mission img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  display: block;
}
.conan-missions-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 0 22px;
}
.conan-missions-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  transition: background 0.2s;
}
.conan-missions-dot.active {
  background: var(--ink);
}
.conan-cta-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.conan-cta-notice {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--yellow);
  padding: 8px 14px;
  font-weight: 700;
}
.conan-cta-label {
  font-family: "Fredoka", sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--yellow);
}
.conan-cta-date {
  font-size: 13px;
  font-weight: 900;
}
.lm-title {
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--red);
  margin: 0 0 8px;
  line-height: 1.3;
}
.lm-banner-link { display: block; }
.lm-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

/* ===== Howto: 入場チケット予約の流れ ===== */
.howto-section {
  background: var(--cream);
  color: var(--ink);
  padding: 56px 0 56px;
}
.howto-section .sec-en { color: var(--red); padding: 0 24px; }
.howto-section .sec-jp { color: var(--ink); padding: 0 24px; }
.howto-steps {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 48px 20px;
  margin-top: 6px;
}
.howto-steps::-webkit-scrollbar { display: none; }
.howto-step {
  flex: 0 0 100%;
  scroll-snap-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 22px 18px 0;
  text-align: center;
  position: relative;
  box-shadow: 4px 4px 0 var(--ink);
  border: 2px solid var(--ink);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.howto-step-head {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}
.howto-step-num {
  font-family: "Fredoka", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.howto-step-title {
  font-size: 17px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 0;
}
.howto-step-desc {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
}
.howto-step-note {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0;
  color: var(--muted);
}
.phone-mockup {
  width: 170px;
  height: 260px;
  margin: auto auto -40px;
  background: var(--ink);
  border-radius: 24px 24px 0 0;
  padding: 6px 6px 0;
  position: relative;
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 12px;
  background: var(--ink);
  border-radius: 99px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--cream);
  border-radius: 18px 18px 0 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.phone-screen img { width: 100%; object-fit: cover; object-position: center; }
.phone-screen img.phone-screen-img--shift-30 { transform: translateY(-70px); }
.howto-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.howto-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
}
.howto-dot.active { background: var(--ink); }
.howto-cta-wrap { text-align: center; margin: 22px 0 0; padding: 0 24px; }
.howto-cta {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--yellow);
}
.howto-cta.is-disabled {
  background: #b8b8b8;
  border-color: #b8b8b8;
  color: #fff;
  pointer-events: none;
  box-shadow: 4px 4px 0 #e0e0e0;
}
.howto-cta-sub {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 2px;
  opacity: 0.9;
}

/* ===== Contents ===== */
.contents { background: var(--cream); padding-left: 12px; padding-right: 12px; }
.ct-lead {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 28px;
}
/* 隣り合うカード同士でセクション高さを揃える（CSS Subgrid） */
.contents-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 10px;
}
.ct-card {
  background: #fff;
  border-radius: 18px;
  padding: 14px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
  row-gap: 0;
}
/* 各セクションを subgrid 行の上端に揃える */
.ct-card > * {
  align-self: start;
}
/* 予約ボタンなしカードは1行分少なく span する */
.ct-card--no-cta {
  grid-row: span 5;
}
.ct-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background: var(--cream);
  border: 2px dashed var(--line);
  margin-bottom: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: "Fredoka", sans-serif;
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  overflow: hidden;
}
.ct-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.ct-card-img:has(img) {
  display: block;
  border-style: solid;
  border-color: var(--ink);
}
.ct-card-company { padding-top: 8px; }
/* 予約区分アイコン（画像直下。subgridで隣カードと高さが揃う） */
.ct-card-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 0 6px;
}
.ct-card-icon {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1.5px solid currentColor;
  line-height: 1.4;
}
.ct-card-icon--full       { color: #c0392b; }
.ct-card-icon--pre        { color: #d2691e; }
.ct-card-icon--partial    { color: #1f7a8c; }
.ct-card-icon--walkin     { color: var(--green, #3a7d44); }
.ct-card-icon--no-reserve { color: var(--blue, #3a72b8); }
.ct-card-icon--free       { color: #6c757d; }
.ct-card-icon--default    { color: var(--muted); }
/* 体験名＝カードの主役 */
.ct-card-name {
  font-size: 13px;
  font-weight: 900;
  color: var(--ink);
  margin: 0;
  line-height: 1.5;
}
/* 説明＝補足 */
.ct-card-desc {
  font-size: 11px;
  color: #555;
  margin: 4px 0 0;
  line-height: 1.6;
}
/* 企業名＝クレジット。長い名前は折り返す */
.ct-card-company {
  font-size: 10px;
  color: var(--muted);
  margin: 6px 0 0;
  line-height: 1.5;
}
/* 予約ボタンエリア（カード末尾） */
.ct-card-cta {
  padding-top: 10px;
  position: relative;
}
.ct-card-cta-btn {
  display: block;
  position: relative;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--red);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 8px 10px;
  text-decoration: none;
  box-shadow: 2px 2px 0 var(--ink);
}
.ct-card-cta-btn.is-disabled {
  background: #b8b8b8;
  color: #fff;
  pointer-events: none;
  box-shadow: none;
}

/* ===== FAQ ===== */
.faq { background: #fff; }
.faq-list { list-style: none; padding: 0; margin: 0; }
.faq-item {
  border-bottom: 2px dashed var(--line);
}
.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 18px 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  /* button要素のリセット */
  background: none;
  border: none;
  margin: 0;
  font-family: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-align: left;
}
.faq-q::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-family: "Fredoka", sans-serif;
  font-size: 13px;
  flex-shrink: 0;
}
.faq-item:nth-child(2n) .faq-q::before { background: var(--blue); }
.faq-item:nth-child(3n) .faq-q::before { background: var(--green); }
.faq-q-text { flex: 1; }
.faq-q-toggle {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: transform 0.25s ease;
}
.faq-item.open .faq-q-toggle { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 8px 18px 46px;
  font-size: 13px;
  line-height: 1.85;
  color: #555;
  white-space: pre-line;
}
.faq-item.open .faq-a { display: block; }
.faq-a::before {
  content: 'A.';
  font-family: "Fredoka", sans-serif;
  color: var(--blue);
  font-weight: 700;
  margin-right: 6px;
}

/* ===== Event Info ===== */
.event-info { background: var(--cream); }
.event-info::before {
  content: '';
  display: block;
  width: 64%;
  margin: 0 auto 36px;
  border-top: 1px dashed var(--line);
}
.info-dl {
  margin: 0;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 8px 18px;
  box-shadow: 4px 4px 0 var(--ink);
}
.info-dl dt {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 14px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.info-dl dt::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.info-dl dt:nth-of-type(2)::before { background: var(--blue); }
.info-dl dt:nth-of-type(3)::before { background: var(--yellow-deep); }
.info-dl dt:nth-of-type(4)::before { background: var(--green); }
.info-dl dt:nth-of-type(5)::before { background: var(--sky); }
.info-dl dt:nth-of-type(6)::before { background: var(--red); }
.info-dl dt:first-child { margin-top: 4px; }
.info-dl dd {
  margin: 4px 0 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.ft {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 28px 24px;
}
.ft-content p {
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
}

/* ===== Floating CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 16px;
  right: max(16px, calc(50vw - 240px + 16px));
  width: 96px;
  height: 96px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  background: var(--red);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--ink);
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, box-shadow 0.2s ease, opacity 0.25s ease;
}
.floating-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.floating-cta.is-hidden {
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
}
.fc-top {
  font-family: "Fredoka", sans-serif;
  font-size: 10px;
  color: var(--yellow);
  letter-spacing: 0.15em;
  margin-bottom: 4px;
  font-weight: 700;
}
.fc-main {
  font-size: 13px;
  line-height: 1.35;
}

/* ===== 色の規律: sec-en は赤で固定（ブランド軸）、4色ローテはセクション内の小物のみ ===== */
.news .news-date       { color: var(--blue); }

/* ===== PC調整 ===== */
@media (min-width: 481px) {
  .sec-jp { font-size: 28px; }
}
