@charset "utf-8";

/* =========================================================
   ほぼ満月コンサート — 特設サイト
   配色・素材はすべてチラシ原画から抽出
   teal #6EB2BD / navy #0D4A76 / gold #DE9C2B
   orange #E17623 / cream #FDEFD1 / moss #64923E
   ========================================================= */

:root {
  --teal: #6eb2bd;
  --blue: #3b7295;
  --navy: #1c5d83;
  --navy-2: #0d4a76;
  --ink-night: #08324f;

  --gold: #de9c2b;
  --gold-lt: #e5bc5d;
  --orange: #e17623;
  --cream: #fdefd1;
  --cream-2: #fbe3a7;

  --maxw: 1040px;
  --maxw-hero: 1280px;
  --pad: clamp(20px, 5vw, 44px);

  --font-jp: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-go: "Zen Maru Gothic", "Hiragino Sans", sans-serif;
  --font-en: "Cormorant Garamond", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--cream);
  font-family: var(--font-jp);
  font-size: clamp(15px, 1vw + 12px, 17px);
  line-height: 2;
  letter-spacing: 0.05em;
  overflow-x: hidden;
  background: var(--ink-night);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---------------------------------------------------------
   夜空（チラシの縦グラデーションを再現）
   --------------------------------------------------------- */
.sky {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    180deg,
    #6eb2bd 0%,
    #6db1bd 18%,
    #62a9bb 32%,
    #559eaf 44%,
    #4a89a2 54%,
    #3b7295 66%,
    #2a6688 78%,
    #1c5d83 88%,
    #0d4a76 100%
  );
}

/* 星 */
.stars {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-repeat: repeat;
  background-size: 620px 620px, 420px 420px;
  background-image:
    radial-gradient(1.6px 1.6px at 40px 60px, rgba(255,255,255,.85), transparent 60%),
    radial-gradient(1.2px 1.2px at 180px 200px, rgba(255,255,255,.55), transparent 60%);
  opacity: 0;
  animation: twinkle-in 1.4s ease .3s forwards;
}

.stars::before,
.stars::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: repeat;
}

.stars::before {
  background-size: 340px 340px;
  background-image:
    radial-gradient(1.4px 1.4px at 260px 90px, rgba(255,255,255,.7), transparent 60%),
    radial-gradient(1px 1px at 90px 280px, rgba(255,255,255,.45), transparent 60%),
    radial-gradient(2px 2px at 300px 300px, rgba(253,239,209,.6), transparent 60%);
  animation: twinkle 5.5s ease-in-out infinite alternate;
}

.stars::after {
  background-size: 780px 780px;
  background-image:
    radial-gradient(2.4px 2.4px at 610px 420px, rgba(255,255,255,.75), transparent 60%),
    radial-gradient(1.8px 1.8px at 120px 640px, rgba(253,239,209,.5), transparent 60%);
  animation: twinkle 7.5s ease-in-out .8s infinite alternate;
}

@keyframes twinkle-in { to { opacity: 1; } }
@keyframes twinkle {
  from { opacity: .55; }
  to { opacity: 1; }
}

/* 紙の質感 */
.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: soft-light;
  opacity: 0.4;
}

/* ---------------------------------------------------------
   ヘッダー
   --------------------------------------------------------- */
.bar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(13, 74, 118, 0.28);
  border-bottom: 1px solid rgba(253, 239, 209, 0.16);
}

.bar__inner {
  max-width: var(--maxw-hero);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
}

.bar__home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-go);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  opacity: 0.9;
}

.bar__home::before {
  content: "\2190";
  font-size: 0.9em;
  opacity: 0.8;
}

.bar__nav {
  display: flex;
  gap: clamp(12px, 2.4vw, 26px);
  font-family: var(--font-go);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.bar__nav a {
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.86;
  transition: opacity 0.2s ease;
}

.bar__nav a:hover { opacity: 1; }

.bar__cta {
  font-family: var(--font-go);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 999px;
  color: #4a2f0a;
  background: linear-gradient(180deg, var(--gold-lt), var(--gold));
  white-space: nowrap;
  transition: transform .25s ease, filter .25s ease;
}

.bar__cta:hover { transform: translateY(-1px); filter: brightness(1.06); }

@media (max-width: 760px) {
  .bar__nav { display: none; }
}

/* ---------------------------------------------------------
   ボタン
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-go);
  font-size: clamp(.9rem, 1.6vw, 1rem);
  line-height: 1;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-decoration: none;
  padding: 17px 30px;
  border-radius: 999px;
  transition: transform .28s cubic-bezier(.2,.8,.3,1), box-shadow .28s ease,
              filter .28s ease, background-color .28s ease, border-color .28s ease;
}

.btn__arrow {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform .3s cubic-bezier(.2,.8,.3,1);
}

.btn:hover .btn__arrow,
.btn:focus-visible .btn__arrow {
  transform: translateX(4px);
}

.btn--primary {
  color: #4a2f0a;
  background: linear-gradient(160deg, #f6e0a1, var(--gold-lt) 46%, var(--gold));
  box-shadow: 0 16px 34px -16px rgba(222, 156, 43, 0.95),
              inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-3px);
  filter: brightness(1.05);
  box-shadow: 0 22px 40px -18px rgba(222, 156, 43, 1),
              inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn--ghost {
  color: var(--cream);
  border: 1.5px solid rgba(253, 239, 209, 0.42);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  transform: translateY(-3px);
  background: rgba(253, 239, 209, 0.1);
  border-color: rgba(253, 239, 209, 0.7);
}

.btn--lg {
  padding: 20px 44px;
  font-size: clamp(.98rem, 1.8vw, 1.1rem);
  letter-spacing: 0.12em;
}

/* ---------------------------------------------------------
   ファーストビュー
   --------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(6px, 2vw, 20px) var(--pad) clamp(34px, 6vw, 64px);
}

.hero__inner {
  max-width: var(--maxw-hero);
  margin-inline: auto;
  display: grid;
  gap: clamp(8px, 3vw, 40px);
  align-items: center;
}

.hero__visual {
  position: relative;
}

.hero__key {
  width: auto;
  max-width: 100%;
  max-height: min(76vh, 720px);
  margin-inline: auto;
  filter: drop-shadow(0 26px 60px rgba(8, 40, 64, 0.38));
  animation: rise 1.2s cubic-bezier(.2,.8,.3,1) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(26px) scale(.985); }
  to { opacity: 1; transform: none; }
}

.hero__info {
  animation: rise 1.2s cubic-bezier(.2,.8,.3,1) .12s both;
}

.hero__eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-go);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  opacity: 0.7;
}

.hero__title {
  margin: 0 0 clamp(18px, 3vw, 26px);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.hero__title em {
  display: block;
  font-style: normal;
  font-size: clamp(1.5rem, 3.4vw, 2.05rem);
  letter-spacing: 0.06em;
  color: #fdf3d6;
}

/* 日付 */
.hero__date {
  margin: 0 0 clamp(20px, 3.4vw, 30px);
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__date time {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-en);
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  line-height: .82;
  color: #fdf3d6;
  text-shadow: 0 0 36px rgba(253, 227, 167, 0.35);
}

.hero__date b {
  font-weight: 400;
  font-size: clamp(3.6rem, 8.5vw, 6.2rem);
  letter-spacing: -0.02em;
}

.hero__date i {
  font-style: normal;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  padding-inline: 0.06em;
  opacity: 0.62;
}

.hero__date span {
  font-family: var(--font-go);
  font-size: clamp(.74rem, 1.5vw, .84rem);
  line-height: 1.75;
  letter-spacing: 0.14em;
  opacity: 0.86;
  padding-bottom: 0.2em;
}

/* 3つの部の時間 */
.hero__times {
  list-style: none;
  margin: 0 0 clamp(20px, 3.2vw, 28px);
  padding: 0;
  border-top: 1px solid rgba(253, 239, 209, 0.24);
}

.hero__times li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  gap: 8px 14px;
  padding: 9px 2px;
  border-bottom: 1px solid rgba(253, 239, 209, 0.24);
}

.hero__times b {
  font-weight: 400;
  font-size: clamp(.86rem, 1.7vw, .96rem);
  letter-spacing: 0.06em;
}

.hero__times time {
  font-family: var(--font-en);
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  font-size: clamp(1.28rem, 2.6vw, 1.6rem);
  line-height: 1;
  color: #fdf3d6;
}

.hero__times span {
  font-family: var(--font-go);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  opacity: 0.66;
  min-width: 5.4em;
  text-align: right;
}

.hero__venue {
  margin: 0 0 clamp(24px, 4vw, 34px);
  font-size: clamp(.95rem, 1.9vw, 1.08rem);
  letter-spacing: 0.08em;
}

.hero__venue small {
  display: block;
  margin-top: 5px;
  font-family: var(--font-go);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  opacity: 0.72;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --- PC：ビジュアル左／情報右の2カラム --- */
@media (min-width: 900px) {
  .hero {
    min-height: calc(100svh - 58px);
    display: flex;
    align-items: center;
  }

  .hero__inner {
    width: 100%;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  }

  .hero__key {
    max-height: min(80vh, 760px);
    margin-inline: 0;
  }
}

/* --- モバイル：ビジュアルの下に情報 --- */
@media (max-width: 899px) {
  .hero__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hero__info {
    width: 100%;
    max-width: 460px;
  }

  /* タイトルの意匠はキービジュアルに入っているので、
     モバイルでは文字のタイトルを重ねて見せない（読み上げには残す） */
  .hero__title {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .hero__date { justify-content: center; }
  .hero__actions { justify-content: center; }

  .hero__actions .btn {
    flex: 1 1 auto;
    min-width: 200px;
  }
}

/* ---------------------------------------------------------
   セクション
   --------------------------------------------------------- */
.section {
  padding: clamp(50px, 9vw, 96px) 0;
}

.section__head {
  text-align: center;
  margin: 0 0 clamp(28px, 5vw, 48px);
}

.section__en {
  display: block;
  font-family: var(--font-en);
  font-style: italic;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  line-height: 1.1;
  color: var(--cream-2);
}

.section__ja {
  display: block;
  margin-top: 8px;
  font-family: var(--font-go);
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  opacity: 0.7;
}

/* 細い区切り線（チラシ下部の線を再現） */
.rule {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
  opacity: 0.5;
}

.rule::before,
.rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
}

.rule i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

/* ---------------------------------------------------------
   3つの部
   --------------------------------------------------------- */
.parts {
  display: grid;
  gap: clamp(18px, 3vw, 26px);
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
}

.part {
  position: relative;
  border-radius: 26px;
  padding: clamp(24px, 3.4vw, 32px);
  background: linear-gradient(180deg, rgba(253, 239, 209, 0.12), rgba(253, 239, 209, 0.05));
  border: 1px solid rgba(253, 239, 209, 0.22);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
}

.part__mark {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
}

.part__name {
  margin: 0 0 2px;
  font-size: clamp(1.1rem, 2.6vw, 1.3rem);
  letter-spacing: 0.02em;
  line-height: 1.5;
  white-space: nowrap;
}

.part__en {
  display: block;
  font-family: var(--font-en);
  font-style: italic;
  font-size: 0.86rem;
  color: var(--cream-2);
  opacity: 0.75;
  margin-bottom: 16px;
}

.part__times {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  font-size: 0.98rem;
  line-height: 1.9;
}

.part__times li {
  display: flex;
  gap: 10px;
}

.part__times span {
  flex: 0 0 3.6em;
  font-family: var(--font-go);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  opacity: 0.62;
  padding-top: 0.35em;
}

.part__times b {
  font-weight: 400;
  letter-spacing: 0.04em;
}

.part__fee {
  margin: auto 0 0;
  padding-top: 16px;
  border-top: 1px dashed rgba(253, 239, 209, 0.3);
}

.part__fee dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
  font-size: 0.92rem;
}

.part__fee dt { opacity: 0.8; }

.part__fee dd {
  margin: 0;
  text-align: right;
  font-family: var(--font-en);
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  font-size: 1.14rem;
  color: #fdf3d6;
}

.part__note {
  margin: 12px 0 0;
  font-family: var(--font-go);
  font-size: 0.74rem;
  line-height: 1.85;
  opacity: 0.72;
}

.part__tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-go);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(225, 118, 35, 0.9);
  color: #fff5e6;
}

/* ---------------------------------------------------------
   会場
   --------------------------------------------------------- */
.venue {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 34px);
  align-items: center;
}

@media (min-width: 820px) {
  .venue { grid-template-columns: 0.9fr 1.1fr; }
}

.venue__name {
  margin: 0 0 6px;
  font-size: clamp(1.3rem, 3.6vw, 1.7rem);
  letter-spacing: 0.08em;
}

.venue__addr {
  margin: 0 0 20px;
  font-size: 0.94rem;
  opacity: 0.86;
}

.venue__halls {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.venue__halls li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 0.95rem;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(253, 239, 209, 0.24);
}

.venue__halls b {
  font-weight: 400;
  flex: 1;
}

.venue__halls span {
  font-family: var(--font-go);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.venue__map {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(253, 239, 209, 0.24);
  aspect-ratio: 4 / 3;
  background: rgba(8, 50, 79, 0.5);
}

.venue__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.85) brightness(0.94);
}

/* ---------------------------------------------------------
   チケット
   --------------------------------------------------------- */
.ticket {
  text-align: center;
  border-radius: 30px;
  padding: clamp(30px, 6vw, 58px) clamp(20px, 5vw, 54px);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(253, 227, 167, 0.2), transparent 62%),
    linear-gradient(180deg, rgba(253, 239, 209, 0.12), rgba(253, 239, 209, 0.04));
  border: 1px solid rgba(253, 239, 209, 0.28);
}

.ticket__lead {
  margin: 0 0 clamp(22px, 4vw, 32px);
  font-size: clamp(.95rem, 2.4vw, 1.08rem);
  line-height: 2.1;
}

/* --- 部ごとの購入カード --- */
.buy {
  list-style: none;
  margin: 0 0 clamp(6px, 1.5vw, 12px);
  padding: 0;
  display: grid;
  gap: clamp(14px, 2.4vw, 20px);
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  text-align: left;
}

.buy__item {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 28px);
  border-radius: 22px;
  background: rgba(8, 50, 79, 0.28);
  border: 1px solid rgba(253, 239, 209, 0.18);
  transition: border-color .25s ease, transform .25s cubic-bezier(.2,.8,.3,1);
}

.buy__item:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 188, 93, 0.5);
}

.buy__mark {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
}

.buy__name {
  margin: 0 0 4px;
  font-size: clamp(1.08rem, 2.4vw, 1.24rem);
  letter-spacing: 0.03em;
  line-height: 1.5;
  white-space: nowrap;
}

.buy__time {
  margin: 0 0 16px;
  font-family: var(--font-go);
  font-size: 0.74rem;
  line-height: 1.8;
  opacity: 0.7;
}

.buy__fee {
  margin: 0 0 clamp(18px, 3vw, 24px);
  padding-top: 14px;
  border-top: 1px dashed rgba(253, 239, 209, 0.3);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  font-size: 0.9rem;
}

.buy__fee dt { opacity: 0.8; }

.buy__fee dd {
  margin: 0;
  text-align: right;
  font-family: var(--font-en);
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  font-size: 1.2rem;
  color: #fdf3d6;
}

.buy__btn {
  width: 100%;
}

/* ボタンは常にカードの底に揃える。券種が2つある部は縦に並べる */
.buy__item > .buy__btn,
.buy__btns {
  margin-top: auto;
}

.buy__btns {
  display: grid;
  gap: 10px;
}

.buy__btns .btn {
  padding-inline: 18px;
  font-size: clamp(.82rem, 1.5vw, .92rem);
  letter-spacing: 0.06em;
}

/* 購入リンクが未発行のあいだ */
.btn.is-pending {
  pointer-events: none;
  filter: grayscale(0.7);
  opacity: 0.5;
  box-shadow: none;
}

.btn.is-pending .btn__arrow {
  display: none;
}

.ticket__hint {
  margin: clamp(16px, 2.6vw, 22px) 0 0;
  font-family: var(--font-go);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  opacity: 0.66;
}

/* ---------------------------------------------------------
   注意事項
   --------------------------------------------------------- */
.notes {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
  display: grid;
  gap: 12px;
  font-family: var(--font-go);
  font-size: 0.84rem;
  line-height: 1.95;
}

.notes li {
  display: flex;
  gap: 10px;
  opacity: 0.86;
}

.notes li::before {
  content: "※";
  opacity: 0.6;
  flex: none;
}

/* ---------------------------------------------------------
   お申し込み完了ページ
   --------------------------------------------------------- */
.done {
  max-width: 620px;
  text-align: center;
  padding-block: clamp(20px, 6vw, 60px);
}

.done__mark {
  width: 62px;
  height: 62px;
  margin: 0 auto clamp(18px, 3vw, 26px);
}

.done__title {
  margin: 0 0 clamp(20px, 3.4vw, 28px);
  font-size: clamp(1.1rem, 2.6vw, 1.32rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.9;
}

.done__title .section__en {
  margin-bottom: 10px;
}

.done__lead {
  margin: 0 0 clamp(26px, 5vw, 38px);
  font-size: clamp(.95rem, 2.2vw, 1.05rem);
  line-height: 2.1;
}

.done__notes {
  text-align: left;
  margin-bottom: clamp(28px, 5vw, 40px);
}

.done__actions {
  display: flex;
  justify-content: center;
}

/* ---------------------------------------------------------
   フッター
   --------------------------------------------------------- */
.foot {
  padding: clamp(44px, 8vw, 76px) 0 calc(clamp(30px, 6vw, 50px) + env(safe-area-inset-bottom));
  text-align: center;
  font-family: var(--font-go);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  line-height: 2.1;
  opacity: 0.86;
}

.foot__logo {
  width: 170px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 2px 8px rgba(8, 40, 64, 0.45));
}

.foot a {
  text-decoration: none;
  border-bottom: 1px solid rgba(253, 239, 209, 0.45);
}

.foot__links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 10px 0 0;
}

/* ---------------------------------------------------------
   モバイル固定CTA
   --------------------------------------------------------- */
.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(13, 74, 118, 0), rgba(8, 50, 79, 0.92) 40%);
  display: none;
  transform: translateY(120%);
  transition: transform .35s cubic-bezier(.2,.8,.3,1);
}

.dock.is-on { transform: none; }

.dock .btn {
  width: 100%;
  padding-block: 16px;
}

@media (max-width: 760px) {
  .dock { display: block; }
  body { padding-bottom: 88px; }
}

/* ---------------------------------------------------------
   演出
   --------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .85s ease, transform .85s cubic-bezier(.2,.8,.3,1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .hero__key, .hero__info {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
  .stars, .stars::before, .stars::after { animation: none; opacity: 1; }
}

:focus-visible {
  outline: 3px solid var(--gold-lt);
  outline-offset: 3px;
  border-radius: 6px;
}
