/* =========================================================
   未来を創るアーティストフェス 2026 〜旅のはじまり〜
   共通スタイル（明るく開放的な海のデザイン）
   ========================================================= */

:root {
  --sea:       #1f8fb0;  /* 海の青 */
  --sea-deep:  #0f6c89;  /* 深い海 */
  --aqua:      #6fc7d6;  /* 浅瀬のアクア */
  --sky:       #eaf6fa;  /* 空の淡い水色 */
  --sky-2:     #d7eef4;  /* 少し濃い水色 */
  --sun:       #f4a259;  /* やわらかな陽 */
  --coral:     #ef7d6a;  /* 朝焼けのコーラル */
  --sand:      #fbf6ee;  /* 砂浜の生成り */
  --ink:       #324a52;  /* 文字（青みのある墨）*/
  --ink-soft:  #6d8088;  /* 補助テキスト */
  --line:      #dbe9ee;  /* 罫線 */
  --white:     #ffffff;

  --maxw: 1080px;
  --radius: 20px;
  --shadow: 0 12px 32px rgba(20, 110, 137, 0.10);
  --shadow-lg: 0 22px 56px rgba(20, 110, 137, 0.16);

  --serif: "Zen Maru Gothic", "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

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

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.9;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--sea); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- ヘッダー / ナビ ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(180deg, rgba(6, 26, 60, 0.92), rgba(7, 30, 70, 0.8));
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background .35s ease, border-color .35s ease;
}
/* 暗いヒーローのページ（トップ・アート）だけ最上部を透明にして空を透かす */
body.has-dark-hero .site-header:not(.is-scrolled) {
  background: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.14);
}
.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(6, 26, 60, 0.92), rgba(7, 30, 70, 0.8));
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

/* ヒーロー下の後援（小さく白字）*/
.hero__support {
  margin-top: 22px; color: rgba(255, 255, 255, .92);
  font-size: .78rem; letter-spacing: .03em; line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .45);
}
.hero__support span { opacity: .8; font-size: .92em; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 64px; }
.nav__logo { font-family: var(--serif); font-weight: 700; font-size: 1.02rem; color: #fff; letter-spacing: .02em; line-height: 1.3; text-shadow: 0 1px 8px rgba(0,0,0,.25); }
.nav__logo small { display: block; font-size: .66rem; color: rgba(180, 222, 236, .9); letter-spacing: .15em; font-weight: 400; }
/* ナビ：右からスライドするドロワーメニュー（全幅共通） */
.nav__links {
  list-style: none; margin: 0;
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1200;
  width: min(330px, 86vw);
  display: flex; flex-direction: column; align-items: stretch; gap: 2px;
  background: rgba(7, 26, 60, 0.97);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border-left: 1px solid rgba(255, 255, 255, .14);
  box-shadow: -10px 0 36px rgba(0, 0, 0, .34);
  padding: 60px 18px 40px;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform .34s cubic-bezier(.4, 0, .2, 1);
}
.nav__links.is-open { transform: translateX(0); }
.nav__links a { display: block; padding: 10px 16px; border-radius: 10px; font-size: .95rem; font-weight: 500; color: rgba(255, 255, 255, .9); }
.nav__links a:hover { background: rgba(255, 255, 255, .14); color: #fff; opacity: 1; }
.nav__links a.is-active { background: rgba(255, 255, 255, .2); color: #fff; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .34); }
/* 応援CTAはドロワー内でも常にオレンジのピル（リンク化後も .nav__links a に負けないよう上書き） */
.nav__links a.nav__support { background: var(--coral); color: #fff; border-radius: 999px; box-shadow: 0 3px 10px rgba(239, 125, 106, .45); }
.nav__links a.nav__support:hover { background: var(--coral); color: #fff; filter: brightness(1.05); }
.nav__links a.nav__support.is-active { background: var(--coral); color: #fff; box-shadow: 0 0 0 2px #fff, 0 3px 10px rgba(239, 125, 106, .45); }
.nav__toggle {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer; color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--sun));
  border: 0; font-size: 1.18rem; line-height: 1; padding: 10px 20px; border-radius: 999px;
  box-shadow: 0 4px 16px rgba(239, 125, 106, .55);
  transition: transform .2s, box-shadow .2s, filter .2s;
  animation: navpulse 2.4s ease-in-out infinite;
}
.nav__t-ico { font-size: 1.18rem; line-height: 1; }
.nav__t-label { font-size: .9rem; font-weight: 700; letter-spacing: .04em; }
/* メニューボタンはスマホでも1行に保つ（折り返し防止） */
.nav__toggle { white-space: nowrap; flex-shrink: 0; }
.nav__logo { min-width: 0; }
@media (max-width: 460px) {
  .nav__toggle { padding: 9px 14px; gap: 6px; }
  .nav__t-label { font-size: .8rem; letter-spacing: .01em; }
  .nav__t-ico { font-size: 1rem; }
  .nav__t-paw { display: none; }
}
.nav__t-paw { width: 16px; height: 16px; display: inline-flex; align-items: center; }
.nav__t-paw svg { width: 100%; height: 100%; display: block; }
.nav__toggle:hover { transform: translateY(-1px); filter: brightness(1.06); box-shadow: 0 8px 24px rgba(239, 125, 106, .8); }
@keyframes navpulse { 0%, 100% { box-shadow: 0 4px 14px rgba(239, 125, 106, .5); } 50% { box-shadow: 0 5px 22px rgba(239, 125, 106, .9); } }
@media (prefers-reduced-motion: reduce) { .nav__toggle { animation: none; } }
/* 黒猫の影絵がボタンへ歩いてくる */
.nav__menu { display: inline-flex; align-items: center; gap: 7px; }
/* 肉球の足あと（猫からボタンへ点々と） */
.nav__paws { display: inline-flex; align-items: center; gap: 5px; }
.nav__paw { display: inline-block; width: 13px; height: 13px; opacity: .25; filter: drop-shadow(0 1px 1.5px rgba(4, 14, 34, .5)); animation: pawstep 3s ease-in-out infinite; }
.nav__paw svg { width: 100%; height: 100%; display: block; }
.nav__paw:nth-child(1) { transform: rotate(-12deg) translateY(2px); animation-delay: 0s; }
.nav__paw:nth-child(2) { transform: rotate(7deg); animation-delay: .35s; }
.nav__paw:nth-child(3) { transform: rotate(-5deg) translateY(2px); animation-delay: .7s; }
@keyframes pawstep { 0%, 65%, 100% { opacity: .12; } 14%, 38% { opacity: .85; } }
@media (max-width: 540px) { .nav__paws { display: none; } }
@media (prefers-reduced-motion: reduce) { .nav__paw { animation: none; } }
/* メニューのアンカー遷移先が固定ヘッダーに隠れないように */
[id] { scroll-margin-top: 84px; }
/* メニュー内「準備中」項目（リンク無し） */
.nav__soon { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 13px 16px; color: rgba(255, 255, 255, .5); font-size: .95rem; font-weight: 500; cursor: default; }
.nav__soon small { font-size: .62rem; font-weight: 600; background: rgba(255, 255, 255, .16); color: rgba(255, 255, 255, .82); padding: 2px 8px; border-radius: 999px; letter-spacing: .04em; }
.nav__cat { width: 54px; height: auto; flex-shrink: 0; animation: catwalk 1.05s ease-in-out infinite; }
.nav__cat svg, .nav__cat img { width: 100%; height: auto; display: block; filter: drop-shadow(0 0 1px #fff) drop-shadow(0 0 1px #fff) drop-shadow(0 0 3px rgba(255, 255, 255, .95)) drop-shadow(0 0 6px rgba(111, 199, 214, .6)); }
@keyframes catwalk { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-2.5px) translateX(1.5px); } }
@media (max-width: 460px) { .nav__cat { width: 44px; height: auto; } }
@media (prefers-reduced-motion: reduce) { .nav__cat { animation: none; } }
/* ドロワー背景スクリム＋閉じるボタン */
.nav-scrim { position: fixed; inset: 0; z-index: 1100; background: rgba(4, 14, 34, .52); opacity: 0; visibility: hidden; transition: opacity .3s ease; }
body.nav-open .nav-scrim { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }
.nav__close { position: absolute; top: 14px; right: 16px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .14); color: #fff; font-size: 1.2rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.nav__close:hover { background: rgba(255, 255, 255, .26); }
.nav__drawer-label { position: absolute; top: 22px; left: 22px; font-size: .72rem; letter-spacing: .28em; color: rgba(180, 222, 236, .9); font-weight: 700; }
/* フェスを応援する（準備中）ボタン */
.nav__support-li { display: flex; align-items: center; margin-left: 4px; }
.nav__support {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; cursor: pointer; text-decoration: none;
  background: var(--coral); color: #fff; font-size: .78rem; font-weight: 700;
  padding: 6px 11px; border-radius: 999px; box-shadow: 0 3px 10px rgba(239, 125, 106, .45);
}
.nav__support:hover { filter: brightness(1.05); }
.nav__support.is-active { box-shadow: 0 0 0 2px #fff, 0 3px 10px rgba(239, 125, 106, .45); }
.nav__support small { font-size: .62rem; font-weight: 600; background: rgba(255, 255, 255, .26); padding: 2px 5px; border-radius: 999px; }
/* クラウドファンディング準備中（応援ページのオレンジCTA・準備中バッジ付き／クリック不可） */
.cf-soon {
  display: inline-flex; align-items: center; gap: 12px; white-space: nowrap; cursor: default;
  background: var(--coral); color: #fff; font-size: 1.05rem; font-weight: 700;
  padding: 15px 30px; border-radius: 999px; box-shadow: 0 6px 18px rgba(239, 125, 106, .42);
}
.cf-soon small { font-size: .72rem; font-weight: 700; background: rgba(255, 255, 255, .28); padding: 3px 10px; border-radius: 999px; }

/* ---------- トップ・ヒーロー（バナー主役）---------- */
.hero {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(140% 80% at 50% -18%, rgba(190,245,255,.55), rgba(120,215,240,0) 46%),
    radial-gradient(70% 55% at 84% 116%, rgba(60,210,205,.28), transparent 55%),
    linear-gradient(180deg, #19a8cf 0%, #0e85b4 24%, #0a64a0 48%, #084f8c 70%, #06346e 100%);
  text-align: center;
  margin-top: -64px;
  padding: 130px 24px 96px;
  min-height: 94vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
/* 水面の光がやわらかく明滅する（呼吸する）自然な揺らぎ */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(100% 58% at 32% 2%, rgba(195,246,255,.24), transparent 56%),
    radial-gradient(86% 52% at 76% 10%, rgba(160,232,255,.18), transparent 56%);
  mix-blend-mode: screen;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { opacity: .6; }
  to   { opacity: 1; }
}
.hero__inner { max-width: 940px; margin: 0 auto; position: relative; z-index: 1; }

/* 写真背景バージョン（比較用） */
.hero--photo { background-size: cover; background-position: center; background-repeat: no-repeat; background-color: #0c3a63; }
.hero--photo::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(2,10,32,.62) 0%, rgba(4,16,44,.30) 24%, rgba(6,22,50,.04) 48%, rgba(5,18,42,.58) 100%);
  mix-blend-mode: normal; animation: none;
}
/* 中央の光を強く＋上に差す光芒＋ピンク（加算＝screen） */
.hero--photo::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(22% 60% at 50% 46%, rgba(255,232,188,.34), rgba(255,232,188,0) 72%),
    radial-gradient(44% 26% at 50% 57%, rgba(255,212,150,.72), rgba(255,212,150,0) 60%),
    radial-gradient(90% 44% at 50% 60%, rgba(255,150,180,.32), rgba(255,150,180,0) 66%);
  mix-blend-mode: screen; animation: none;
}
.hero--photo .hero__banner { max-width: 540px; margin-bottom: 30px; opacity: .98; }

/* 世界観（タイトル）と説明情報を分離：説明はボタン下の暗い海側へ */
.hero__info--below { margin-top: 36px; }
.hero--photo .hero__eyebrow { color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.55); }
.hero--photo .hero__sub { color: rgba(255,255,255,.96); text-shadow: 0 2px 10px rgba(0,0,0,.55); }
.hero--photo .hero__meta span {
  color: #fff; background: rgba(8,24,52,.42);
  border: 1px solid rgba(255,255,255,.20);
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.cmp-tag {
  position: absolute; top: 14px; left: 14px; z-index: 5;
  background: rgba(4,22,48,.78); color: #fff; font-weight: 700; font-size: .82rem;
  letter-spacing: .04em; padding: 7px 16px; border-radius: 999px;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.hero__banner {
  width: 100%; max-width: 840px; margin: 0 auto 38px;
  display: block;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 34px 76px rgba(0, 0, 0, 0.48);
}
.hero__info { padding: 0 8px; }
.hero__eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  color: rgba(255,255,255,.9); font-weight: 600; font-size: .76rem; letter-spacing: .44em;
  text-indent: .44em; margin: 2px 0 16px;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: ""; width: 38px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55));
}
.hero__eyebrow::after { background: linear-gradient(90deg, rgba(255,255,255,.55), transparent); }
.hero__title { font-family: var(--serif); font-weight: 700; color: #fff; font-size: clamp(1.32rem, 3.4vw, 1.95rem); line-height: 1.5; margin-bottom: 14px; letter-spacing: .06em; }
.hero__title small { display: block; font-family: var(--sans); font-size: .5em; font-weight: 500; color: var(--sun); letter-spacing: .3em; text-indent: .3em; margin-top: 10px; }
.hero__sub { font-family: var(--serif); font-size: clamp(.96rem, 2.2vw, 1.12rem); color: rgba(255,255,255,.9); margin-bottom: 24px; letter-spacing: .12em; }
.hero__meta {
  display: inline-flex; flex-wrap: wrap; gap: 10px 14px; justify-content: center;
  font-size: .86rem; margin: 0 0 30px; color: rgba(255,255,255,.9);
}
.hero__meta span {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22);
  padding: 8px 18px; border-radius: 999px;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  letter-spacing: .02em;
}
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* 主役タイポ（ブランド見出し） */
.hero__titleblock { margin-bottom: 34px; }
.hero__year {
  display: inline-block; font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.3rem, 3.4vw, 1.95rem); letter-spacing: .44em; text-indent: .44em;
  color: #ffd9a0; margin: 24px 0 6px; text-shadow: 0 2px 18px rgba(0,0,0,.4);
}
.hero__h1 {
  font-family: var(--serif); font-weight: 700; color: #fff;
  font-size: clamp(1.9rem, 6.2vw, 3.5rem); line-height: 1.3; letter-spacing: .07em;
  text-shadow: 0 3px 26px rgba(0,12,34,.55), 0 1px 4px rgba(0,0,0,.3);
}
/* 今年のテーマ：タイトルと同じ白・同じ文字感で読みやすく */
.hero__journey {
  font-family: var(--serif); font-weight: 700; color: #fff;
  font-size: clamp(1.5rem, 4.4vw, 2.35rem); letter-spacing: .3em; text-indent: .3em;
  margin-top: 6px;
  text-shadow: 0 3px 26px rgba(0,12,34,.55), 0 1px 4px rgba(0,0,0,.35);
}
.hero__tagline {
  font-family: var(--serif); font-weight: 500; color: #ffffff;
  font-size: clamp(.95rem, 2.2vw, 1.16rem); letter-spacing: .18em; text-indent: .18em;
  margin-top: 22px;
  text-shadow: 0 1px 3px rgba(0,0,0,.55), 0 2px 18px rgba(0,8,24,.8);
}
.hero__meta--hero { margin-top: 34px; font-size: 1.04rem; gap: 12px 16px; }
.hero__meta--hero span { padding: 12px 26px; }

/* 見出しフォント：Noto Serif JP（明朝） */
.hero__year, .hero__h1, .hero__journey { font-family: "Noto Serif JP", serif; }

/* 下層ページのシネマティックヒーロー（写真主役） */
.pagehero {
  position: relative; isolation: isolate;
  min-height: 64vh; margin-top: -64px; padding: 124px 24px 72px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; color: #fff; overflow: hidden;
  background-size: cover; background-position: center; background-color: #0c2a52;
}
.pagehero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(6,18,40,.60) 0%, rgba(6,18,40,.40) 44%, rgba(5,14,34,.74) 100%);
}
.pagehero__kicker {
  font-size: .8rem; letter-spacing: .34em; text-indent: .34em; color: #ffd9a0;
  font-weight: 700; margin-bottom: 16px; text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.pagehero__title {
  font-family: "Noto Serif JP", serif; font-weight: 700; color: #fff;
  font-size: clamp(2rem, 6vw, 3.1rem); letter-spacing: .08em; line-height: 1.3;
  text-shadow: 0 3px 22px rgba(0,10,30,.5), 0 1px 4px rgba(0,0,0,.35);
}
.pagehero__lead {
  margin-top: 22px; max-width: 660px; font-size: 1rem; line-height: 1.95;
  color: rgba(255,255,255,.94); text-shadow: 0 1px 8px rgba(0,0,0,.55);
}

/* 波の区切り */
.wave { display: block; width: 100%; height: 48px; }
.wave--up { margin-bottom: -1px; background: #06346e; }

/* ---------- わくわくフォトマーキー（賑わいの帯）---------- */
.funband {
  background:
    radial-gradient(60% 100% at 20% 0%, rgba(244,162,89,.10), transparent 60%),
    radial-gradient(60% 100% at 85% 0%, rgba(111,199,214,.16), transparent 60%),
    linear-gradient(180deg, var(--sky) 0%, #ffffff 100%);
  padding: 42px 0 54px;
  overflow: hidden;
}
.funband__head { text-align: center; margin-bottom: 24px; padding: 0 20px; }
.funband__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .76rem; letter-spacing: .26em; font-weight: 700; color: var(--sea);
  text-indent: .26em;
}
.funband__eyebrow::before, .funband__eyebrow::after { content: "✳"; color: var(--sun); font-size: .9em; }
.funband__title {
  font-family: var(--serif); font-weight: 700; color: var(--sea-deep);
  font-size: clamp(1.3rem, 3.4vw, 1.7rem); margin-top: 8px; letter-spacing: .04em;
}
.funband__title em { font-style: normal; color: var(--coral); }

.funtiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.funtiles img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 14px; box-shadow: 0 10px 26px rgba(20,110,137,.14);
  transition: transform .25s, box-shadow .25s;
}
.funtiles img:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
@media (max-width: 860px) { .funtiles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .funtiles { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* 写真に重ねる テーマ/目的/コンセプト */
.photo-values { position: relative; max-width: 1040px; margin: 0 auto; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); }
.photo-values > img { width: 100%; display: block; }
.photo-values::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(9,50,66,.66) 0%, rgba(9,50,66,.34) 36%, rgba(9,50,66,0) 62%);
}
.photo-values__inner { position: absolute; left: 0; right: 0; top: 0; padding: 34px 24px; z-index: 2; }
.vcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 880px; margin: 0 auto; }
.vcard {
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.48); border-radius: 14px; padding: 16px 12px; text-align: center; color: #fff;
}
.vcard__tag { display: inline-block; font-size: .7rem; letter-spacing: .16em; font-weight: 700; background: rgba(255,255,255,.22); padding: 3px 13px; border-radius: 999px; margin-bottom: 9px; }
.vcard__txt { font-family: var(--serif); font-weight: 700; font-size: 1rem; line-height: 1.55; text-shadow: 0 1px 10px rgba(0,0,0,.4); }
@media (max-width: 620px) {
  .vcards { grid-template-columns: 1fr; gap: 8px; max-width: 300px; }
  .vcard { padding: 10px 12px; }
  .vcard__txt { font-size: .92rem; }
  .photo-values__inner { padding: 18px 14px; }
  .photo-values::after { background: linear-gradient(180deg, rgba(9,50,66,.66) 0%, rgba(9,50,66,.4) 50%, rgba(9,50,66,.1) 100%); }
}

/* 写真に Vision / Message を文字で重ねる */
.photo-values--text::after {
  background: radial-gradient(58% 40% at 50% 50%, rgba(6,36,50,.16) 0%, rgba(6,36,50,0) 70%);
}
.photo-values__inner--center {
  inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 48px 30px;
}
.vtext { max-width: 760px; color: #fff; }
.vtext__label {
  font-family: var(--serif); letter-spacing: .34em; font-size: .82rem; font-weight: 700;
  color: var(--sun); text-transform: uppercase; margin-bottom: 10px;
}
.vtext__vision {
  font-family: var(--serif); font-weight: 700; font-size: clamp(1.9rem, 5.2vw, 3.1rem);
  line-height: 1.4; text-shadow: 0 1px 3px rgba(0,0,0,.85), 0 2px 12px rgba(0,0,0,.6), 0 0 2px rgba(0,0,0,.9); margin-bottom: 1.5em;
}
.vtext__msg {
  font-size: clamp(.96rem, 1.9vw, 1.1rem); line-height: 2.05;
  text-shadow: 0 1px 12px rgba(0,0,0,.55); margin: 0 auto;
}
.vtext__msg + .vtext__msg { margin-top: 1em; }
@media (max-width: 620px) {
  .photo-values__inner--center { padding: 30px 20px; }
  .vtext__vision { margin-bottom: 1em; }
  .vtext__msg { font-size: .9rem; line-height: 1.9; }
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 999px;
  font-weight: 700; font-size: .95rem; letter-spacing: .03em;
  transition: transform .15s, box-shadow .2s, opacity .2s;
  border: 2px solid transparent; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); opacity: 1; }
.btn--primary { background: var(--coral); color: var(--white); box-shadow: 0 8px 20px rgba(239,125,106,.32); }
.btn--sea { background: var(--sea); color: var(--white); box-shadow: 0 8px 20px rgba(31,143,176,.3); }
.btn--ghost { background: var(--white); color: var(--sea-deep); border-color: var(--aqua); }
.btn--ghost:hover { background: var(--sky); }
.btn--lg { padding: 16px 38px; font-size: 1.02rem; }

/* ---------- 下層ページのヘッダー（海写真）---------- */
.page-head {
  position: relative; color: var(--white); text-align: center;
  padding: 88px 24px 96px;
  background-size: cover; background-position: center;
}
.page-head::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,108,137,.34), rgba(15,108,137,.58));
}
.page-head > * { position: relative; z-index: 1; }
.page-head__kicker { font-size: .78rem; letter-spacing: .32em; color: #fff; opacity: .9; display: block; margin-bottom: 12px; text-indent: .32em; }
.page-head__title { font-family: var(--serif); font-size: clamp(1.8rem, 4.6vw, 2.7rem); font-weight: 700; text-shadow: 0 2px 16px rgba(0,0,0,.25); }
.page-head__lead { margin-top: 16px; font-size: 1rem; max-width: 660px; margin-left: auto; margin-right: auto; text-shadow: 0 1px 8px rgba(0,0,0,.3); }

/* ---------- セクション共通 ---------- */
.section { padding: 72px 0; }
.section--sky { background: var(--sky); }
.section--sand { background: var(--sand); }
.section__head { text-align: center; margin-bottom: 46px; }
.section__kicker { font-size: .78rem; letter-spacing: .3em; color: var(--sea); display: block; margin-bottom: 10px; text-indent: .3em; font-weight: 700; }
.section__title { font-family: var(--serif); font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 700; color: var(--sea-deep); }
.section__title::after { content: ""; display: block; width: 50px; height: 3px; background: var(--aqua); border-radius: 3px; margin: 16px auto 0; }
.lead-text { max-width: 720px; margin: 0 auto; text-align: center; color: var(--ink); font-size: 1.04rem; }

/* ---------- カードグリッド ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sky-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__tag { font-size: .72rem; letter-spacing: .12em; color: var(--sea); font-weight: 700; }
.card__title { font-family: var(--serif); font-size: 1.18rem; font-weight: 700; color: var(--sea-deep); }
.card__text { font-size: .92rem; color: var(--ink-soft); flex: 1; }
.card__link { margin-top: 8px; font-weight: 700; font-size: .9rem; color: var(--coral); display: inline-flex; align-items: center; gap: 6px; }
.card__link::after { content: "→"; transition: transform .2s; }
.card:hover .card__link::after { transform: translateX(4px); }

/* ---------- プロフィール（写真つき）---------- */
.profile {
  display: grid; grid-template-columns: 360px 1fr; gap: 40px; align-items: start;
  background: #e7f2f9; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 36px; max-width: 960px; margin: 0 auto;
}
.profile__figure { position: relative; width: 100%; }
.profile__cut {
  width: 100%; display: block; margin-top: 40px;
  filter: drop-shadow(0 12px 24px rgba(15, 108, 137, .28));
}
/* プロフィール写真：比率を揃える（人物紹介の見た目を統一）*/
.profile__photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow); display: block; }
.gallery--venue .vfig {
  position: relative; margin: 0; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.gallery--venue .vfig img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block;
}
.gallery--venue figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 8px 12px; font-size: .78rem; font-weight: 700; color: #fff;
  letter-spacing: .02em;
  background: linear-gradient(0deg, rgba(6, 24, 54, .82), rgba(6, 24, 54, 0));
}
.vfig--cat img { transform: scaleX(-1); }

/* 実行委員メンバー：丸い顔写真の並び */
.member-faces { display: inline-flex; padding-left: 11px; vertical-align: middle; }
.member-faces img {
  width: 50px; height: 50px; border-radius: 50%;
  object-fit: cover; object-position: center top;
  border: 2.5px solid #fff; box-shadow: 0 2px 7px rgba(0, 0, 0, .2);
  margin-left: -11px; transition: transform .2s;
}
.member-faces:hover img { transform: translateY(-3px); }
@media (max-width: 520px) {
  .member-faces img { width: 42px; height: 42px; }
}

/* フェスの楽しみ方：2グループ見出し（番号付きバンド）*/
.play-group {
  display: flex; align-items: center; gap: 16px;
  margin: 0 0 30px; padding: 17px 28px;
  background: linear-gradient(100deg, var(--coral) 0%, var(--sun) 100%);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(239, 125, 106, .30);
  font-family: var(--serif); font-weight: 700; font-size: 1.42rem; color: #fff;
  letter-spacing: .02em; text-shadow: 0 1px 3px rgba(0, 0, 0, .16);
}
.play-group em {
  font-style: normal; color: #fff; font-size: 1.2em;
  border-bottom: 3px solid rgba(255, 255, 255, .75); padding-bottom: 1px;
}
.play-group__no {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: #fff; color: var(--coral); font-size: 1.22rem; font-weight: 700; font-family: var(--sans);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 9px rgba(0, 0, 0, .20); text-shadow: none;
}
.play-group--make {
  margin-top: 54px;
  background: linear-gradient(100deg, var(--sea-deep) 0%, var(--sea) 100%);
  box-shadow: 0 10px 26px rgba(15, 108, 137, .30);
}
.play-group--make .play-group__no { color: var(--sea-deep); }
@media (max-width: 520px) {
  .play-group { font-size: 1.16rem; gap: 12px; padding: 14px 18px; }
  .play-group__no { width: 34px; height: 34px; font-size: 1.05rem; }
}

/* フェスの楽しみ方：フェスバナーを薄く敷く */
#enjoy {
  background-image: linear-gradient(rgba(255, 255, 255, .85), rgba(255, 255, 255, .85)), url('../images/fes-banner-tall.jpg');
  background-size: cover; background-position: center;
}
/* 参加して楽しむ：カードをひとつの背景にまとめて並べる（すりガラス）*/
.playzone {
  background: rgba(255, 255, 255, .5); border-radius: 18px; padding: 26px;
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  box-shadow: 0 6px 20px rgba(15, 108, 137, .08);
}
@media (max-width: 520px) {
  .playzone { padding: 16px 14px; }
}

/* 出展・出演 応募枠 */
.recruit {
  max-width: 840px; margin: 0 auto; text-align: center;
  background: var(--white); border: 2px solid var(--coral);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 48px 40px;
}
.recruit__kicker {
  font-family: var(--serif); font-weight: 700; color: var(--coral); letter-spacing: .04em;
  font-size: 1.5rem; line-height: 1.5; margin-bottom: 18px;
}
.recruit__items {
  list-style: none; padding: 0; margin: 0 0 14px;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 6px 0;
}
.recruit__items li {
  font-family: var(--serif); font-weight: 700; font-size: 1.3rem;
  color: var(--sea-deep);
}
.recruit__items li:not(:last-child)::after {
  content: "／"; color: var(--aqua); margin: 0 8px; font-size: 1rem;
}
.recruit__lead { font-weight: 700; color: var(--ink); margin-bottom: 22px; }
.recruit__child {
  margin: 0 0 18px; padding: 13px 18px; border-radius: 14px;
  background: #fff3ef; border: 1px dashed var(--coral);
  font-size: .98rem; line-height: 1.85; color: var(--ink);
}
.recruit__child em { font-style: normal; font-family: var(--serif); font-weight: 700; color: var(--coral); font-size: 1.14em; }
.recruit__child strong { color: var(--sea-deep); }
@media (max-width: 520px) {
  .recruit__items li { font-size: 1.12rem; }
  .recruit__kicker { font-size: 1.2rem; }
}

/* 2会場を足跡でつなぐ「徒歩1分」帯 */
.walkline {
  display: flex; align-items: center; gap: 12px;
  max-width: 760px; margin: 22px auto 0;
}
.walkline__end {
  flex-shrink: 0; font-family: var(--serif); font-weight: 700;
  font-size: .82rem; line-height: 1.3; color: var(--sea-deep); text-align: center;
}
.walkline__paws {
  flex: 1; height: 20px; min-width: 30px; background: var(--aqua);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cellipse cx='12' cy='16' rx='6' ry='5'/%3E%3Ccircle cx='5' cy='9' r='2.2'/%3E%3Ccircle cx='10' cy='6' r='2.2'/%3E%3Ccircle cx='15' cy='6' r='2.2'/%3E%3Ccircle cx='19' cy='9' r='2.2'/%3E%3C/svg%3E") left center/24px 20px repeat-x;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cellipse cx='12' cy='16' rx='6' ry='5'/%3E%3Ccircle cx='5' cy='9' r='2.2'/%3E%3Ccircle cx='10' cy='6' r='2.2'/%3E%3Ccircle cx='15' cy='6' r='2.2'/%3E%3Ccircle cx='19' cy='9' r='2.2'/%3E%3C/svg%3E") left center/24px 20px repeat-x;
}
.walkline__min {
  flex-shrink: 0; background: var(--coral); color: #fff;
  font-weight: 700; font-size: .82rem; white-space: nowrap;
  padding: 6px 14px; border-radius: 999px;
}
@media (max-width: 520px) {
  .walkline { gap: 7px; }
  .walkline__end, .walkline__min { font-size: .72rem; }
  .walkline__min { padding: 5px 10px; }
}
.greeting-photo { margin: 0 auto 26px; text-align: center; }
.greeting-photo img {
  width: 200px; height: 200px; object-fit: cover; object-position: center top;
  border-radius: 50%; box-shadow: var(--shadow); display: block; margin: 0 auto;
}
.greeting-photo figcaption {
  margin-top: 10px; font-size: .82rem; font-weight: 700; color: var(--ink-soft);
}
.profile__namerow {
  display: flex; align-items: center; gap: 16px; margin-bottom: 16px;
}
.profile__namerow .profile__role { margin-bottom: 0; }
.profile__yumecut {
  width: 84px; flex-shrink: 0; margin: 0;
  position: relative; top: 14px;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, .18));
}
.profile__name { font-family: var(--serif); font-size: 1.7rem; color: var(--sea-deep); font-weight: 700; }
.profile__name rt { font-size: .42em; font-weight: 600; color: var(--coral); letter-spacing: .12em; }
.profile__role { color: var(--coral); font-weight: 700; font-size: .9rem; letter-spacing: .08em; margin-bottom: 14px; }
.profile__text { color: var(--ink); font-size: .98rem; line-height: 1.95; }
.profile__label {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: #0e8a82;
  letter-spacing: .06em; margin: 4px 0 10px;
  padding-left: 12px; border-left: 4px solid var(--coral);
}
.profile__bio p {
  color: var(--ink); font-size: .98rem; line-height: 1.9; margin: 0 0 12px;
}
.profile__bio p:last-child { margin-bottom: 0; }
.profile__activity {
  position: relative; margin-top: 28px; padding-top: 26px;
}
.profile__activity::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 52px; height: 3px; border-radius: 2px; background: var(--coral);
}
.profile__left { display: flex; flex-direction: column; gap: 16px; align-self: stretch; justify-content: center; }
.seiji-photos {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 20px;
}
.seiji-photos figure { margin: 0; }
.seiji-photos img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: 12px; box-shadow: var(--shadow); display: block;
}
.seiji-photos figcaption {
  margin-top: 5px; font-size: .72rem; line-height: 1.35;
  color: var(--ink-soft); text-align: center; font-weight: 700;
}
@media (max-width: 720px) {
  .profile__left { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 520px) {
  .seiji-photos { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ---------- メッセージ（海バンド）---------- */
.message-band {
  position: relative; background-size: cover; background-position: center;
  padding: 96px 24px;
}
.message-band::before { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,.78); }
.message { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; text-align: center; }
.message__body { font-size: 1.06rem; line-height: 2.1; color: var(--ink); }
.message__body p { margin-bottom: 1.2em; }
.message__sign { font-family: var(--serif); margin-top: 24px; color: var(--sea-deep); }
.message__sign strong { font-size: 1.15rem; }

/* ---------- 出演者ラインナップ（写真）---------- */
.lineup { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.lineup__item { text-align: center; }
.lineup__avatar { width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 16px; overflow: hidden; box-shadow: var(--shadow); border: 4px solid #fff; }
.lineup__avatar img { width: 100%; height: 100%; object-fit: cover; }
.lineup__name { font-family: var(--serif); font-weight: 700; color: var(--sea-deep); font-size: 1.12rem; }
.lineup__role { font-size: .82rem; color: var(--ink-soft); }

/* ---------- 写真フィギュア ---------- */
.figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.figure img { width: 100%; display: block; }
.figure--tall img { aspect-ratio: 4/5; object-fit: cover; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery--2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- 料金表 ---------- */
.price-table { width: 100%; border-collapse: collapse; margin: 0 auto; max-width: 760px; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.price-table th, .price-table td { padding: 15px 18px; text-align: center; border-bottom: 1px solid var(--line); font-size: .95rem; }
.price-table thead th { background: var(--sea); color: var(--white); font-weight: 600; letter-spacing: .04em; }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:nth-child(even) { background: var(--sky); }
.price-table .is-early { color: var(--coral); font-weight: 700; }
.price-table .is-free { color: var(--sea); font-weight: 700; }

/* ---------- 情報ボックス ---------- */
.infobox { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px 34px; }
.mhead { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.mhead img { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; flex: none; box-shadow: var(--shadow); border: 3px solid #fff; }
.mhead .card__title { margin: 0; }

/* 運営メンバー：縦1列・横並びカード */
.members { display: grid; gap: 22px; max-width: 860px; margin: 0 auto; }
.member { display: flex; gap: 26px; align-items: flex-start; text-align: left; }
.member__av {
  width: 104px; height: 104px; border-radius: 50%; flex: none;
  object-fit: cover; box-shadow: var(--shadow); border: 3px solid #fff;
  display: flex; align-items: center; justify-content: center; font-size: 2.6rem; color: #fff;
}
.member__av--heart { background: linear-gradient(135deg, #f7a8c4, #ef7d6a); }
.member__av--star  { background: linear-gradient(135deg, #ffd27a, #f4a259); }
.member__av--note  { background: linear-gradient(135deg, #8fd3e8, #6fc7d6); }
.member__body { flex: 1; min-width: 0; }
.member__name { font-family: var(--serif); font-weight: 700; color: var(--sea-deep); font-size: 1.22rem; }
.member__role { color: var(--ink-soft); font-size: .82rem; margin: 4px 0 10px; }
.member__bio { font-size: .92rem; }
.member--lead .member__av { width: 132px; height: 132px; }
@media (max-width: 620px) {
  .member { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
}

.infobox dl { display: grid; grid-template-columns: 130px 1fr; gap: 14px 18px; }
.infobox dt { font-weight: 700; color: var(--sea-deep); font-size: .92rem; }
.infobox dd { color: var(--ink); font-size: .96rem; }

/* ---------- タイムライン（プログラム）---------- */
.tl { max-width: 760px; margin: 0 auto; }
.tl__item { display: grid; grid-template-columns: 92px 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.tl__time { font-family: var(--serif); font-weight: 700; color: var(--sea); font-size: .98rem; }
.tl__title { font-weight: 700; color: var(--ink); }
.tl__desc { font-size: .9rem; color: var(--ink-soft); }

/* ---------- CTA ---------- */
.cta { background: linear-gradient(135deg, var(--sea), var(--aqua)); color: var(--white); text-align: center; padding: 56px 24px; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.cta__title { font-family: var(--serif); font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 700; margin-bottom: 10px; }
.cta__text { margin-bottom: 26px; font-size: 1rem; opacity: .95; }
.cta .btn--primary { background: var(--white); color: var(--coral); }
.cta .btn--primary:hover { box-shadow: 0 8px 20px rgba(0,0,0,.18); }

/* ---------- フッター ---------- */
.site-footer { background: var(--sea-deep); color: rgba(255,255,255,.85); padding: 56px 24px 30px; font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.site-footer h4 { font-family: var(--serif); color: var(--white); font-size: 1.05rem; margin-bottom: 14px; }
.site-footer a { color: rgba(255,255,255,.85); }
.site-footer a:hover { color: var(--aqua); opacity: 1; }
.footer-links { list-style: none; display: grid; gap: 8px; }
.footer-contact { display: grid; gap: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.18); padding-top: 22px; text-align: center; font-size: .8rem; color: rgba(255,255,255,.6); }

/* ---------- ユーティリティ ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }

/* ---------- LP改善版（index-cv）：実績ライン・スマホ固定CTA ---------- */
.funband__proof { margin-top: 10px; font-size: .98rem; color: var(--ink); }
.funband__proof strong { color: var(--coral); font-weight: 700; }
.cta__text strong { color: #fff; }
.cta__sns { margin: 22px 0 16px; }
.cta__sns-label { font-weight: 700; font-size: 1rem; margin-bottom: 14px; opacity: .97; }
.cta__sns-card {
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  background: #fff; padding: 16px 18px 14px; border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
}
.cta__sns-card img { width: 136px; height: 136px; display: block; border-radius: 8px; }
.cta__sns-handle { color: var(--sea-deep); font-weight: 700; font-size: .96rem; letter-spacing: .02em; }
.cta__sns-open { display: inline-block; margin-top: 4px; background: var(--coral); color: #fff; font-weight: 700; font-size: .92rem; padding: 9px 20px; border-radius: 999px; box-shadow: 0 4px 12px rgba(239, 125, 106, .4); }
.cta__sns-card:hover .cta__sns-open { box-shadow: 0 7px 18px rgba(239, 125, 106, .5); }
.mobilecta { display: none; }
@media (max-width: 720px) {
  .mobilecta {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    gap: 10px; padding: 10px 14px;
    background: rgba(7,30,70,.94);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,.14);
  }
  .mobilecta .btn { flex: 1; justify-content: center; padding: 13px 8px; font-size: .92rem; }
  body.has-mobilecta { padding-bottom: 76px; }
}
/* 「未来へ、一歩」：カモメ背景に文字のみ・上寄せ */
.message-band--top { min-height: 320px; display: flex; align-items: flex-start; justify-content: center; padding: 54px 24px 44px; }
.band-vision {
  position: relative; z-index: 1; text-align: center;
  font-family: "Noto Serif JP", serif; font-weight: 700; letter-spacing: .08em;
  font-size: clamp(1.9rem, 5.2vw, 3.1rem); color: var(--sea-deep);
}
.mt-40 { margin-top: 40px; }
.mt-24 { margin-top: 24px; }
.chip { display: inline-block; background: var(--sky); color: var(--sea-deep); border-radius: 999px; padding: 5px 14px; font-size: .82rem; font-weight: 600; margin: 3px; }
.chip--free { background: var(--sea); color: var(--white); }
.note { font-size: .85rem; color: var(--ink-soft); }

/* ---------- レスポンシブ ---------- */
@media (max-width: 860px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .lineup { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .lineup__avatar { width: 110px; height: 110px; }
  .profile { grid-template-columns: 1fr; text-align: center; padding: 28px; }
  .profile__photo { max-width: 260px; margin: 0 auto; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
/* ナビ：項目が多いので1080px以下はハンバーガーに切替 */
/* ドロワー内：応援ボタンは全幅中央寄せ */
.nav__support-li { margin: 10px 0 2px; }
.nav__support { width: 100%; justify-content: center; padding: 10px 11px; }
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .lineup { grid-template-columns: 1fr 1fr; }
  .infobox dl { grid-template-columns: 1fr; gap: 2px; }
  .infobox dd { margin-bottom: 10px; }
  .section { padding: 52px 0; }
  .price-table { display: block; overflow-x: auto; }
  .tl__item { grid-template-columns: 76px 1fr; gap: 12px; }
}

/* アート展ギャラリーの番号バッジ（並べ替え指示用）*/
.artex-no { position:absolute; top:8px; left:8px; width:30px; height:30px; border-radius:50%; background:rgba(6,24,54,.82); color:#fff; font-weight:700; font-size:.9rem; display:flex; align-items:center; justify-content:center; box-shadow:0 2px 6px rgba(0,0,0,.3); }

/* バーチャル：実ギャラリー大きめ・VR小さめ */
.vgal-2 { max-width:900px; margin:0 auto 28px; display:grid; grid-template-columns:1.7fr 1fr; gap:18px; align-items:start; }
.vgal-2 img { width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:14px; box-shadow:var(--shadow); display:block; }
@media (max-width:620px){ .vgal-2 { grid-template-columns:1fr; } }

/* 音楽：ながせ陶房メンバーカード */
.member-label { text-align:center; font-weight:700; color:var(--ink-soft); font-size:.82rem; letter-spacing:.1em; margin:0 0 14px; }
.member-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.member-card { background:#f3f8fb; border-radius:10px; padding:13px 14px; }
.member-card__name { font-weight:700; color:var(--sea-deep); font-size:.92rem; line-height:1.4; }
.member-card__name small { font-size:.66rem; color:var(--ink-soft); font-weight:400; letter-spacing:.06em; margin-left:6px; }
.member-card__part { display:inline-block; margin:4px 0 7px; background:transparent; border:1px solid var(--aqua); color:var(--sea-deep); font-size:.66rem; font-weight:700; padding:1px 8px; border-radius:999px; }
.member-card__desc { font-size:.76rem; color:var(--ink-soft); line-height:1.7; }
@media (max-width:760px){ .member-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:440px){ .member-grid { grid-template-columns:1fr; } }

/* ながせ陶房：メンバーをシンプルなリストで（別枠なし） */
.nagase-members { margin-top: 14px; }
.nagase-members__label { font-weight:700; color:var(--sea-deep); font-size:.88rem; margin-bottom:6px; }
.nagase-members ul { list-style:none; padding:0; margin:0; display:grid; gap:5px; }
.nagase-members li { font-size:.85rem; color:var(--ink); line-height:1.6; }
.nagase-members li strong { color:var(--sea-deep); }
.nagase-members li span { color:var(--ink-soft); font-size:.92em; margin-left:.3em; }

/* ===== 講演会ページ：登壇者ごとに区切る ===== */
.lec-intro { max-width:680px; margin:0 auto; text-align:center; }
.lec-intro__note { color:var(--ink); font-size:1.04rem; line-height:1.9; }
.lec-intro__note strong { color:var(--sea-deep); }

.lec-speaker { max-width:920px; margin:0 auto; }
.lec-speaker__head { text-align:center; margin-bottom:26px; }
.lec-badge {
  display:inline-block; background:var(--sea); color:#fff; font-weight:700;
  font-size:.8rem; letter-spacing:.14em; padding:5px 18px; border-radius:999px; margin-bottom:14px;
}
.lec-badge--2 { background:var(--coral); }
.lec-name { font-family:var(--serif); font-size:clamp(1.5rem,4vw,2rem); font-weight:700; color:var(--sea-deep); line-height:1.3; }
.lec-name rt { font-size:.4em; font-weight:600; color:var(--coral); letter-spacing:.1em; }
.lec-role { color:var(--coral); font-weight:700; font-size:.9rem; letter-spacing:.08em; margin-top:8px; }
.lec-theme { font-family:var(--serif); color:var(--ink); font-size:1.05rem; margin-top:12px; }
.lec-theme span { color:var(--ink-soft); font-size:.82rem; letter-spacing:.1em; display:block; margin-bottom:2px; }

.lec-visual { position:relative; max-width:720px; margin:0 auto 30px; }
.lec-visual img { width:100%; border-radius:16px; box-shadow:var(--shadow); display:block; }
.lec-visual__cut {
  position:absolute; right:-14px; bottom:-14px; width:118px; height:118px; border-radius:50%;
  background-size:cover; background-position:center; box-shadow:0 8px 20px rgba(15,108,137,.35);
  border:4px solid #fff;
}

/* 『プロフィール』別枠 */
.profbox {
  background:var(--white); border-radius:var(--radius); box-shadow:var(--shadow);
  padding:30px 34px; max-width:720px; margin:0 auto;
}
.profbox__head {
  font-family:var(--serif); font-size:1.25rem; font-weight:700; color:var(--sea-deep);
  text-align:center; margin-bottom:18px; position:relative;
}
.profbox__head::before { content:"『"; color:var(--aqua); }
.profbox__head::after  { content:"』"; color:var(--aqua); }
.profbox__text { color:var(--ink); font-size:.98rem; line-height:1.95; }
.profbox__placeholder { color:var(--ink-soft); font-size:.86rem; text-align:center; margin-top:14px; font-style:italic; }
.profbox__actions { margin-top:22px; text-align:center; }

@media (max-width:620px){
  .profbox { padding:24px 20px; }
  .lec-visual__cut { width:88px; height:88px; right:-6px; bottom:-6px; }
}

/* パフォーマンス：Marchy 紹介シート（サムネイル→タップで原寸） */
.profsheets { max-width:880px; margin:28px auto 0; display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.profsheet { position:relative; display:block; border-radius:14px; overflow:hidden; box-shadow:var(--shadow); transition:transform .2s, box-shadow .2s; }
.profsheet:hover { transform:translateY(-3px); box-shadow:0 14px 30px rgba(15,108,137,.28); }
.profsheet img { width:100%; display:block; }
.profsheet__zoom {
  position:absolute; right:10px; bottom:10px; background:rgba(6,24,54,.78); color:#fff;
  font-size:.74rem; font-weight:700; letter-spacing:.04em; padding:4px 11px; border-radius:999px;
}
@media (max-width:620px){ .profsheets { grid-template-columns:1fr; max-width:480px; } }
