/* =========================================================
   昭和ポップ・歌謡曲テイスト  モック用スタイル
   配色：クリーム地 × オレンジ × からし × レトログリーン × レトロ赤
   ========================================================= */

:root {
  --cream:      #f4e9cf;  /* 紙・地の色 */
  --cream-deep: #ecdcb6;
  --brown:      #3a2417;  /* 文字（こげ茶） */
  --orange:     #e3601f;  /* メインのオレンジ */
  --mustard:    #e6a817;  /* からし色 */
  --green:      #2f6b4f;  /* レトログリーン */
  --red:        #c0392b;  /* 差し色の赤 */
  --pink:       #e58aa0;

  --maxw: 1000px;
  --radius: 18px;

  --font-pop:  "Mochiy Pop One", system-ui, sans-serif; /* 丸ゴシック（本文・見出し） */
  --font-disp: "Shippori Mincho B1", "Mochiy Pop One", serif;  /* タイトル・見出し用（極太クラシック明朝） */
  --font-rock: "RocknRoll One", sans-serif;             /* やや細めの見出し用 */
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-pop);
  color: var(--brown);
  background-color: var(--cream);
  /* 細かいドット（網点）で紙っぽさを少し */
  background-image: radial-gradient(rgba(58, 36, 23, .06) 1px, transparent 1px);
  background-size: 6px 6px;
  line-height: 1.8;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ホバーで文字が大きくなる共通クラス（JSが付与） */
.hover-grow { display: inline-block; transition: transform .2s ease, color .2s ease; }
.hover-grow:hover { transform: scale(1.18); color: var(--red); }

/* =================== ヘッダー / メニュー =================== */
.header { position: fixed; top: 0; right: 0; z-index: 1000; }

.menu-btn {
  position: fixed; top: 18px; right: 18px;
  width: 56px; height: 56px;
  background: var(--red);
  border: 3px solid var(--cream);
  border-radius: 50%;
  cursor: pointer;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px;
  box-shadow: 0 4px 0 rgba(58, 36, 23, .35);
  transition: transform .15s ease;
}
.menu-btn:active { transform: translateY(2px); box-shadow: 0 2px 0 rgba(58,36,23,.35); }
.menu-btn span {
  display: block; width: 26px; height: 3px; background: var(--cream); border-radius: 3px;
  transition: transform .3s ease, opacity .3s ease;
}
.menu-btn.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0;
  background: var(--green);
  display: flex; justify-content: center; align-items: center;
  opacity: 0; visibility: hidden; transition: opacity .35s ease;
}
.menu.open { opacity: 1; visibility: visible; }
.menu ul { list-style: none; text-align: center; }
.menu li { margin: 22px 0; }
.menu a {
  font-family: var(--font-disp);
  font-size: clamp(28px, 6vw, 48px);
  color: var(--cream);
  display: inline-block;
}

/* =================== トップイメージ =================== */
.top {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
}

/* サンバースト（放射状の柄） */
.top__sunburst {
  position: absolute; inset: -30% ;
  background: repeating-conic-gradient(
    from 0deg at 50% 45%,
    var(--orange) 0deg 9deg,
    var(--mustard) 9deg 18deg
  );
  animation: spin 90s linear infinite;
  opacity: .9;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* トップ背景画像（サンバーストの上に重ねる。src未指定なら何も出ずサンバーストが見える） */
.top__bg { position: absolute; inset: 0; z-index: 1; }
.top__bg img {
  width: 100%; height: 100%;
  object-fit: cover;       /* 余白なく全面に敷く */
  object-position: center;
  display: block;
}

/* 中央を少し暗く落として文字を読みやすく */
.top__overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background:
    radial-gradient(120% 90% at 50% 40%, transparent 30%, rgba(58,36,23,.45) 100%),
    linear-gradient(transparent 60%, rgba(58,36,23,.55));
}

/* タイトル：左下揃え・縦書き */
.top__title {
  position: absolute;
  left: clamp(20px, 5vw, 64px);
  bottom: clamp(28px, 8vh, 90px);
  z-index: 3;
}
.title-slot {
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  align-items: flex-end;
  gap: 14px;
}
/* ↓ SVG差し替え前の仮テキスト。差し替え時はこの中身を <svg> に置き換え */
.title-slot__main {
  font-family: var(--font-disp);
  font-size: clamp(48px, 11vw, 120px);
  color: var(--cream);
  letter-spacing: .08em;
  text-shadow: 4px 4px 0 var(--red), 8px 8px 0 rgba(58,36,23,.4);
}
.title-slot__sub {
  font-family: var(--font-rock);
  writing-mode: horizontal-tb;
  font-size: clamp(12px, 1.6vw, 18px);
  color: var(--mustard);
  background: var(--brown);
  padding: 4px 10px;
  border-radius: 6px;
  align-self: flex-start;
}

/* 日時バッジ（右上寄り） */
.top__data {
  position: absolute; top: clamp(20px, 6vh, 70px); left: clamp(20px, 5vw, 64px);
  z-index: 3; display: flex; flex-direction: column; gap: 10px;
}
.badge {
  font-size: clamp(13px, 1.6vw, 17px);
  background: var(--cream);
  color: var(--brown);
  padding: 6px 14px;
  border: 2px solid var(--brown);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--brown);
  width: fit-content;
}

/* リンクピル（右下） */
.top__links {
  position: absolute; right: clamp(20px, 5vw, 64px); bottom: clamp(28px, 8vh, 90px);
  z-index: 3; display: flex; flex-direction: column; gap: 14px; align-items: flex-end;
}
.pill {
  font-family: var(--font-rock);
  font-size: clamp(14px, 1.8vw, 18px);
  background: var(--green);
  color: var(--cream);
  padding: 10px 22px;
  border-radius: 999px;
  border: 3px solid var(--cream);
  box-shadow: 0 4px 0 rgba(58,36,23,.4);
}

/* =================== 紹介 =================== */
.info {
  background: var(--green);
  color: var(--cream);
  text-align: center;
  padding: clamp(60px, 12vh, 120px) 20px;
  /* 上下に二重線 */
  border-top: 8px double var(--cream);
  border-bottom: 8px double var(--cream);
}
.info__lead {
  font-family: var(--font-disp);
  font-size: clamp(28px, 6vw, 56px);
  margin-bottom: 24px;
  color: var(--mustard);
}
.info__text { font-size: clamp(15px, 2vw, 20px); }

/* =================== セクションタイトル =================== */
.section-title {
  text-align: center;
  margin: clamp(50px, 9vh, 90px) auto clamp(30px, 5vh, 50px);
}
.section-title span {
  font-family: var(--font-disp);
  font-size: clamp(30px, 6vw, 56px);
  position: relative; display: inline-block;
  padding: 0 .3em;
}
/* 見出しの両脇に音符的な装飾 */
.section-title span::before,
.section-title span::after {
  content: "★"; color: var(--orange); font-size: .55em;
  position: absolute; top: 50%; transform: translateY(-50%);
}
.section-title span::before { left: -1em; }
.section-title span::after  { right: -1em; }
.section-title--light span { color: var(--cream); }
.section-title--light span::before,
.section-title--light span::after { color: var(--mustard); }

/* =================== 注目の企画 =================== */
.picup { max-width: var(--maxw); margin: 0 auto; padding: 0 20px clamp(50px, 9vh, 90px); }
.picup__list { display: flex; flex-direction: column; gap: clamp(36px, 7vh, 72px); }

.picup__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}
.picup__item--rev .picup__img { order: 2; }

.picup__img { }
.ph {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 4px solid var(--brown);
  box-shadow: 8px 8px 0 var(--brown);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-rock);
  color: rgba(58,36,23,.7);
  font-size: clamp(14px, 2vw, 18px);
  transition: transform .25s ease;
}
.ph--1 { background: repeating-linear-gradient(45deg, var(--mustard) 0 16px, var(--orange) 16px 32px); }
.ph--2 { background: repeating-linear-gradient(45deg, var(--pink) 0 16px, var(--cream-deep) 16px 32px); }
.ph--3 { background: repeating-linear-gradient(45deg, var(--green) 0 16px, var(--mustard) 16px 32px); }
.picup__item:hover .ph { transform: translate(-3px, -3px) rotate(-1deg); }

.picup__name {
  font-family: var(--font-disp);
  font-size: clamp(22px, 3.5vw, 34px);
  color: var(--orange);
  margin-bottom: 14px;
}
.picup__desc { font-size: clamp(14px, 1.8vw, 17px); }

/* =================== タイムスケジュール =================== */
.schedule {
  background: var(--brown);
  color: var(--cream);
  padding-bottom: clamp(50px, 9vh, 90px);
}
.schedule__list { max-width: 720px; margin: 0 auto; padding: 0 20px; }
.schedule__item { border-bottom: 2px dashed rgba(244,233,207,.35); }

/* 行（クリックできるボタン） */
.schedule__row {
  width: 100%;
  display: flex; align-items: center; gap: 18px;
  padding: 16px 18px;
  background: none; border: none; color: inherit; cursor: pointer;
  font-family: inherit; text-align: left;
  transition: background .2s ease, padding-left .2s ease;
}
.schedule__row:hover { background: rgba(227,96,31,.25); padding-left: 30px; }
.schedule__time {
  font-family: var(--font-rock);
  color: var(--mustard);
  font-size: clamp(14px, 1.8vw, 18px);
  white-space: nowrap; min-width: 110px;
}
.schedule__name { font-size: clamp(15px, 2vw, 20px); flex: 1; }

/* ＋／× の開閉マーク */
.schedule__toggle {
  position: relative; width: 20px; height: 20px; flex: none;
}
.schedule__toggle::before,
.schedule__toggle::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 16px; height: 3px; background: var(--mustard); border-radius: 2px;
  transform: translate(-50%, -50%); transition: transform .25s ease;
}
.schedule__toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.schedule__row[aria-expanded="true"] .schedule__toggle::after { transform: translate(-50%, -50%) rotate(0); }

/* 開閉する詳細パネル */
.schedule__detail {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.schedule__item.is-open .schedule__detail { max-height: 500px; }
.schedule__detail-inner {
  display: flex; gap: 18px; align-items: center;
  padding: 6px 18px 22px;
}
.schedule__detail-img {
  position: relative; flex: none;
  width: 160px; aspect-ratio: 4 / 3;
  border-radius: 12px; overflow: hidden;
  border: 3px solid var(--cream);
  background: repeating-linear-gradient(45deg, var(--green) 0 12px, var(--mustard) 12px 24px);
  display: flex; align-items: center; justify-content: center;
}
.schedule__detail-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.schedule__detail-ph { font-family: var(--font-rock); color: rgba(58,36,23,.75); font-size: 14px; }
.schedule__detail-text { font-size: clamp(14px, 1.8vw, 17px); line-height: 1.7; }

/* クリックで拡大できることを示すカーソル */
.schedule__detail-img { cursor: zoom-in; }

/* =================== ライトボックス（画像拡大） =================== */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(58, 36, 23, .88);
  display: flex; align-items: center; justify-content: center;
  padding: 5vw;
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease;
  cursor: zoom-out;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__content {
  border: 5px solid var(--cream); border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .55);
  transform: scale(.9); transition: transform .25s ease;
}
.lightbox.open .lightbox__content { transform: scale(1); }
.lightbox__content img { display: block; max-width: 90vw; max-height: 85vh; object-fit: contain; }
/* 画像未指定のときに出す拡大プレースホルダ */
.lightbox__ph {
  width: min(80vw, 640px); aspect-ratio: 4 / 3;
  background: repeating-linear-gradient(45deg, var(--green) 0 24px, var(--mustard) 24px 48px);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-rock); color: rgba(58, 36, 23, .8); font-size: clamp(16px, 3vw, 24px);
}
.lightbox__close {
  position: fixed; top: 18px; right: 20px;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--red); border: 3px solid var(--cream); color: var(--cream);
  font-size: 24px; line-height: 1; cursor: pointer; z-index: 2001;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 0 rgba(58, 36, 23, .4);
}

/* =================== アクセス =================== */
.access { background: var(--cream-deep); }
.access__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 20px clamp(50px, 9vh, 90px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px); align-items: start;
}

/* 会場情報（定義リスト） */
.access__list { display: grid; grid-template-columns: auto 1fr; gap: 14px 18px; align-items: start; }
.access__list dt {
  font-family: var(--font-rock);
  background: var(--mustard); color: var(--brown);
  padding: 4px 14px; border-radius: 999px;
  border: 2px solid var(--brown);
  font-size: clamp(13px, 1.6vw, 15px);
  white-space: nowrap; height: fit-content;
}
.access__list dd { font-size: clamp(14px, 1.9vw, 18px); margin: 0; padding-top: 2px; }

.access__btn { margin-top: 26px; box-shadow: 0 4px 0 rgba(58,36,23,.4); }

/* 地図 */
.access__map {
  border: 4px solid var(--brown); border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--brown); overflow: hidden;
  aspect-ratio: 4 / 3;
}
.access__map iframe { display: block; width: 100%; height: 100%; border: 0; }
.access__map-ph {
  width: 100%; height: 100%;
  background: repeating-linear-gradient(45deg, var(--cream) 0 18px, var(--cream-deep) 18px 36px);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-rock); color: rgba(58,36,23,.7);
  font-size: clamp(14px, 2vw, 18px); text-align: center; padding: 20px;
}

/* =================== フッター =================== */
.footer {
  background: var(--green);
  color: var(--cream);
  text-align: center;
  padding: 40px 20px;
  border-top: 8px double var(--cream);
}
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-bottom: 20px; }
.footer__links a { font-family: var(--font-rock); font-size: clamp(14px, 1.8vw, 17px); }
.footer__copy { font-size: 14px; opacity: .85; }
.footer__copy span { color: var(--mustard); }

/* =================== レスポンシブ（スマホ） =================== */
@media (max-width: 720px) {
  .picup__item { grid-template-columns: 1fr; }
  .picup__item--rev .picup__img { order: 0; }   /* スマホでは画像→文の順で統一 */

  .top__data { top: 80px; }                       /* メニューボタンと重ならないように */
  .top__links { flex-direction: row; flex-wrap: wrap; left: clamp(20px,5vw,64px); }
  .title-slot__main { text-shadow: 3px 3px 0 var(--red), 5px 5px 0 rgba(58,36,23,.4); }

  .schedule__row { flex-wrap: wrap; gap: 4px 12px; }
  .schedule__time { min-width: 92px; }
  .schedule__row:hover { padding-left: 18px; }
  .schedule__detail-inner { flex-direction: column; align-items: stretch; }
  .schedule__detail-img { width: 100%; }

  .access__inner { grid-template-columns: 1fr; }
}

/* アニメーションを控えたい人向け */
@media (prefers-reduced-motion: reduce) {
  .top__sunburst { animation: none; }
  html { scroll-behavior: auto; }
}
