@charset "UTF-8";

/* ============================================================
   総合TOP 案1「シャンパンの夜」(2026-07-28承認・本番TOPの正本CSS)
   利用箇所: /(本番TOP) と /top-preview(確認用・noindex) の2ルート。
   夜にコミットした単一テーマ(ライト/ダーク切替なし・意図的)。
   色はロゴ実測 #FDBDBC ＋ サイト共通CSSの実在ピンクのみで構成。
   動きは transform/opacity のみ(GPU合成・低負荷)。JSは一切使わない。
   ★prefers-reduced-motion では止めない(澤口さん指示・2026-07-28)。
     iPhoneの「視差効果を減らす」ON環境でも泡・光・マーキーを動かす。
     動きは全て低速・小振幅で、点滅・大きな視差は含まないため許容と判断。
   ============================================================ */

:root {
  --night: #120b14;
  --night-2: #170f1a;
  --pink-logo: #fdbdbc;
  --pink: #ec6e9a;
  --pink-deep: #d6336c;
  --coral: #fe7c7b;
  --plum: #b06ab3;
  --fg: #fbedef;
  --fg-soft: rgba(251, 237, 239, 0.72);
  --fg-mute: rgba(251, 237, 239, 0.46);
  --line: rgba(253, 189, 188, 0.2);
  --f-disp: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", "Noto Serif JP", serif;
  --f-body: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Yu Gothic", "Noto Sans JP", "Meiryo", system-ui, sans-serif;
  --f-num: ui-monospace, "SF Mono", "Consolas", monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--fg);
  font-family: var(--f-body);
  font-size: clamp(0.92rem, 0.88rem + 0.2vw, 1rem);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

.nt-shell a {
  color: var(--pink-logo);
  text-decoration: none;
}

.nt-shell :focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: 4px;
}

.nt-shell p {
  margin: 0;
}

.nt-shell {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

/* ============ 1. ファーストビュー ============ */
.nt-fv {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.nt-fv .nt-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(44px);
  mix-blend-mode: screen;
  pointer-events: none;
}

.nt-fv .nt-b1 {
  width: 78vmin;
  aspect-ratio: 1;
  left: -26vmin;
  top: -8vmin;
  background: rgba(236, 110, 154, 0.5);
  animation: nt-drift1 19s ease-in-out infinite alternate;
}

.nt-fv .nt-b2 {
  width: 64vmin;
  aspect-ratio: 1;
  right: -22vmin;
  top: 26%;
  background: rgba(254, 124, 123, 0.4);
  animation: nt-drift2 23s ease-in-out infinite alternate;
}

.nt-fv .nt-b3 {
  width: 86vmin;
  aspect-ratio: 1;
  left: -8vmin;
  bottom: -30vmin;
  background: rgba(176, 106, 179, 0.5);
  animation: nt-drift3 27s ease-in-out infinite alternate;
}

@keyframes nt-drift1 {
  to {
    transform: translate3d(16%, 10%, 0) scale(1.15);
  }
}

@keyframes nt-drift2 {
  to {
    transform: translate3d(-12%, 16%, 0) scale(1.1);
  }
}

@keyframes nt-drift3 {
  to {
    transform: translate3d(10%, -12%, 0) scale(1.18);
  }
}

.nt-grain {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 3px);
  pointer-events: none;
}

/* シャンパンの泡 */
.nt-fv .nt-bub {
  position: absolute;
  bottom: -2%;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at 35% 30%, rgba(255, 240, 244, 0.95), rgba(253, 189, 188, 0.32) 62%, transparent 72%);
  animation: nt-bub 8s linear infinite;
}

@keyframes nt-bub {
  0% {
    transform: translate3d(0, 0, 0) scale(0.7);
    opacity: 0;
  }
  8% {
    opacity: 0.9;
  }
  85% {
    opacity: 0.7;
  }
  100% {
    transform: translate3d(var(--sway, 12px), -105vh, 0) scale(1.15);
    opacity: 0;
  }
}

.nt-fv .nt-bub:nth-of-type(1) { left: 8%;  width: 9px; height: 9px; --sway: 16px; }
.nt-fv .nt-bub:nth-of-type(2) { left: 20%; width: 5px; height: 5px; animation-delay: 2.4s; --sway: -11px; animation-duration: 9.5s; }
.nt-fv .nt-bub:nth-of-type(3) { left: 35%; width: 7px; height: 7px; animation-delay: 5s; --sway: 10px; }
.nt-fv .nt-bub:nth-of-type(4) { left: 52%; width: 4px; height: 4px; animation-delay: 1.2s; --sway: -14px; animation-duration: 10.5s; }
.nt-fv .nt-bub:nth-of-type(5) { left: 68%; width: 8px; height: 8px; animation-delay: 3.6s; --sway: 13px; animation-duration: 7.5s; }
.nt-fv .nt-bub:nth-of-type(6) { left: 82%; width: 5px; height: 5px; animation-delay: 6.2s; --sway: -10px; }
.nt-fv .nt-bub:nth-of-type(7) { left: 92%; width: 6px; height: 6px; animation-delay: 0.8s; --sway: 12px; animation-duration: 9s; }
.nt-fv .nt-bub:nth-of-type(8) { left: 44%; width: 5px; height: 5px; animation-delay: 7.1s; --sway: 8px; animation-duration: 11s; }

/* 水面の波紋(2026-07-28追加)
   グラスに落ちた雫のイメージ。位置は散らし、周期は素数秒(13/17/19/23/29)にして
   重なり方が繰り返さないようにする＝JSなしで「ランダムなタイミング」に見せる。
   1周期のうち見えているのは前半3割だけで、残りは静かな間になる。
   コストは transform/opacity のみ(再描画なし)。 */
.nt-fv .nt-ripple {
  position: absolute;
  width: 26vmin;
  aspect-ratio: 1;
  translate: -50% -50%;
  border-radius: 50%;
  border: 1px solid rgba(253, 189, 188, 0.45);
  opacity: 0;
  pointer-events: none;
  /* filter/box-shadow は使わない(合成コストを増やさず transform/opacity だけで動かす) */
  animation: nt-ripple 13s cubic-bezier(0.12, 0.62, 0.28, 1) infinite;
}

/* 内側にもう1本(水の波紋は複数の輪でできている) */
.nt-fv .nt-ripple::after {
  content: "";
  position: absolute;
  inset: 26%;
  border-radius: 50%;
  border: 1px solid rgba(253, 189, 188, 0.3);
}

@keyframes nt-ripple {
  0% {
    transform: scale(0.06);
    opacity: 0;
  }
  5% {
    opacity: 0.7;
  }
  30% {
    opacity: 0;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* 位置と周期は個別指定(nth-of-type は .nt-blob と同じ div のため使えない)。
   縦25〜72%はロゴ・コピー・県チップの帯なので避ける
   (丸い波紋が丸い県チップと重なると「もう1つのボタン」に見えるため)。 */
.nt-fv .nt-r1 { left: 15%; top: 16%; animation-duration: 13s; }
.nt-fv .nt-r2 { left: 78%; top: 24%; animation-duration: 17s; animation-delay: 5s; }
.nt-fv .nt-r3 { left: 22%; top: 80%; animation-duration: 19s; animation-delay: 11s; }
.nt-fv .nt-r4 { left: 87%; top: 76%; animation-duration: 23s; animation-delay: 3s; }
.nt-fv .nt-r5 { left: 47%; top: 88%; animation-duration: 29s; animation-delay: 17s; }

.nt-fv-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 2.6vh, 1.4rem);
  text-align: center;
  padding: clamp(3.5rem, 10vh, 5rem) 7% clamp(5rem, 12vh, 6.5rem);
}

.nt-fv .nt-sup {
  font-size: clamp(0.62rem, 1.8vw, 0.74rem);
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  color: var(--fg-soft);
  animation: nt-pop 0.9s 0.05s both cubic-bezier(0.2, 0.7, 0.3, 1);
}

.nt-fv .nt-logo {
  width: clamp(190px, 58vw, 270px);
  height: auto;
  filter: drop-shadow(0 0 26px rgba(236, 110, 154, 0.5));
  animation: nt-pop 0.9s 0.18s both cubic-bezier(0.2, 0.7, 0.3, 1);
}

.nt-fv h1.nt-catch {
  margin: 0;
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: clamp(1.15rem, 4.6vw, 1.5rem);
  letter-spacing: 0.14em;
  line-height: 2;
  text-wrap: balance;
  animation: nt-pop 0.9s 0.34s both cubic-bezier(0.2, 0.7, 0.3, 1);
}

.nt-catch small {
  display: block;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: clamp(0.66rem, 2.4vw, 0.8rem);
  letter-spacing: 0.2em;
  color: var(--fg-soft);
  margin-top: 0.5em;
}

@keyframes nt-pop {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.nt-chiprow {
  display: flex;
  gap: 0.5rem 0.55rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nt-chip {
  display: inline-block;
  font-size: clamp(0.72rem, 2.6vw, 0.84rem);
  padding: 0.55em 1.15em;
  border-radius: 999px;
  border: 1px solid rgba(253, 189, 188, 0.42);
  color: var(--fg);
  letter-spacing: 0.08em;
  background: rgba(253, 189, 188, 0.07);
  white-space: nowrap;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.nt-chip:hover,
.nt-chip:active {
  border-color: var(--pink-logo);
  background: rgba(236, 110, 154, 0.32);
  box-shadow: 0 0 16px rgba(236, 110, 154, 0.4);
  transform: translateY(-1px);
}

.nt-fv .nt-chiprow {
  animation: nt-pop 0.9s 0.5s both cubic-bezier(0.2, 0.7, 0.3, 1);
}

.nt-fv-note {
  font-size: clamp(0.6rem, 2vw, 0.7rem);
  letter-spacing: 0.16em;
  color: var(--fg-mute);
  animation: nt-pop 0.9s 0.62s both cubic-bezier(0.2, 0.7, 0.3, 1);
}

/* 県名マーキー */
.nt-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 0.75em 0 calc(0.75em + env(safe-area-inset-bottom, 0px));
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: rgba(18, 11, 20, 0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.nt-marquee .nt-belt {
  display: flex;
  gap: 2.6em;
  width: max-content;
  animation: nt-belt 28s linear infinite;
  font-family: var(--f-num);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: rgba(253, 189, 188, 0.85);
  white-space: nowrap;
}

.nt-marquee .nt-belt span i {
  font-style: normal;
  color: rgba(251, 237, 239, 0.35);
  margin-left: 2.6em;
}

@keyframes nt-belt {
  to {
    transform: translateX(-50%);
  }
}

/* ============ セクション共通 ============ */
.nt-sec {
  padding: clamp(4rem, 10vw, 5.5rem) 7% clamp(4.5rem, 11vw, 6rem);
  position: relative;
}

.nt-sec + .nt-sec {
  border-top: 1px solid rgba(253, 189, 188, 0.12);
}

.nt-sec-head {
  margin-bottom: clamp(1.8rem, 5vw, 2.6rem);
}

.nt-sec-en {
  font-family: var(--f-num);
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  color: var(--pink);
  margin: 0 0 0.7rem;
}

.nt-sec h2 {
  margin: 0;
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: clamp(1.35rem, 5vw, 1.7rem);
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-wrap: balance;
}

/* ============ 2. ふたつの導線 ============ */
.nt-lanes {
  display: grid;
  gap: 14px;
}

.nt-lane {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  padding: clamp(1.4rem, 5vw, 2rem) clamp(1.3rem, 5vw, 1.9rem) clamp(1.5rem, 5vw, 2rem);
  display: grid;
  gap: 0.9rem;
}

.nt-lane-work {
  background:
    radial-gradient(circle at 84% 8%, rgba(176, 106, 179, 0.5), transparent 58%),
    radial-gradient(circle at 6% 100%, rgba(214, 51, 108, 0.4), transparent 60%),
    linear-gradient(160deg, #241127, #170d1e 72%);
}

.nt-lane-drink {
  background:
    radial-gradient(circle at 12% 6%, rgba(254, 124, 123, 0.42), transparent 56%),
    radial-gradient(circle at 92% 96%, rgba(236, 110, 154, 0.38), transparent 58%),
    linear-gradient(200deg, #2b1218, #1a0d12 72%);
}

/* 呼吸する光(2枚が交互に明滅し「どちらも押せる」ことを伝える) */
.nt-lane .nt-lume {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 115%, rgba(253, 189, 188, 0.24), transparent 62%);
  opacity: 0;
}

.nt-lane-work .nt-lume {
  animation: nt-breathe 8s ease-in-out infinite;
}

.nt-lane-drink .nt-lume {
  animation: nt-breathe 8s ease-in-out infinite 4s;
}

@keyframes nt-breathe {
  0%, 58%, 100% {
    opacity: 0;
  }
  22%, 36% {
    opacity: 1;
  }
}

.nt-lane .nt-tag {
  position: relative;
  font-family: var(--f-num);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  color: rgba(253, 189, 188, 0.72);
}

.nt-lane h3 {
  position: relative;
  margin: 0;
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: clamp(1.25rem, 5.4vw, 1.6rem);
  letter-spacing: 0.12em;
  line-height: 1.5;
}

.nt-lane .nt-desc {
  position: relative;
  font-size: 0.86rem;
  color: var(--fg-soft);
  letter-spacing: 0.04em;
}

.nt-lane .nt-chiprow {
  position: relative;
  justify-content: flex-start;
  margin-top: 0.2rem;
}

.nt-lane-drink .nt-chip {
  border-color: rgba(254, 124, 123, 0.45);
  background: rgba(254, 124, 123, 0.08);
}

.nt-lane-drink .nt-chip:hover,
.nt-lane-drink .nt-chip:active {
  border-color: var(--coral);
  background: rgba(254, 124, 123, 0.28);
  box-shadow: 0 0 16px rgba(254, 124, 123, 0.38);
}

/* ============ 3. 選ばれる理由 ============ */
.nt-reasons {
  display: grid;
  gap: 12px;
  counter-reset: nt-rs;
}

.nt-reason {
  position: relative;
  border: 1px solid rgba(253, 189, 188, 0.14);
  border-radius: 16px;
  background: var(--night-2);
  padding: 1.25rem 1.3rem 1.35rem;
  display: grid;
  gap: 0.5rem;
  overflow: hidden;
}

.nt-reason::before {
  counter-increment: nt-rs;
  content: "0" counter(nt-rs);
  position: absolute;
  right: 0.7rem;
  top: 0.35rem;
  font-family: var(--f-num);
  font-size: 2.3rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(236, 110, 154, 0.32);
}

.nt-reason h3 {
  margin: 0;
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  line-height: 1.7;
  padding-right: 3rem;
}

.nt-reason p {
  font-size: 0.86rem;
  color: var(--fg-soft);
  line-height: 1.95;
}

/* ============ 4. 会社概要 ============ */
.nt-company {
  border: 1px solid rgba(253, 189, 188, 0.14);
  border-radius: 16px;
  background: var(--night-2);
  overflow: hidden;
}

.nt-company dl {
  margin: 0;
  display: grid;
  grid-template-columns: 7.5em 1fr;
}

.nt-company dt,
.nt-company dd {
  margin: 0;
  padding: 0.85rem 1.1rem;
  border-top: 1px solid rgba(253, 189, 188, 0.1);
  font-size: 0.86rem;
  line-height: 1.9;
}

.nt-company dt {
  color: var(--pink-logo);
  letter-spacing: 0.1em;
  font-weight: 600;
}

.nt-company dt:first-of-type,
.nt-company dd:first-of-type {
  border-top: 0;
}

.nt-company a {
  border-bottom: 1px solid rgba(253, 189, 188, 0.4);
}

@media (max-width: 430px) {
  .nt-company dl {
    grid-template-columns: 1fr;
  }
  .nt-company dt {
    padding-bottom: 0.1rem;
    border-top: 1px solid rgba(253, 189, 188, 0.1);
  }
  .nt-company dd {
    padding-top: 0.15rem;
    border-top: 0;
  }
  .nt-company dt:first-of-type {
    border-top: 0;
  }
}

/* ============ 5. フッター ============ */
.nt-ft {
  border-top: 1px solid var(--line);
  padding: clamp(2.6rem, 8vw, 3.6rem) 7% calc(2.4rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, var(--night), #0c070e);
}

.nt-ft-title {
  font-family: var(--f-num);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--fg-mute);
  margin: 0 0 1rem;
}

.nt-ft-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nt-ft-links a {
  display: inline-block;
  font-size: 0.78rem;
  padding: 0.45em 1em;
  border-radius: 999px;
  border: 1px solid rgba(253, 189, 188, 0.24);
  color: var(--fg-soft);
  letter-spacing: 0.06em;
  transition: border-color 0.25s, color 0.25s;
}

.nt-ft-links a:hover {
  border-color: var(--pink-logo);
  color: var(--fg);
}

.nt-ft-logo {
  display: block;
  width: 120px;
  height: auto;
  margin: 2.2rem 0 0.8rem;
  opacity: 0.85;
}

.nt-copy {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--fg-mute);
}

/* prefers-reduced-motion での停止は行わない(冒頭コメント参照・澤口さん指示) */
