/* =====================================================
   すきと hair salon sukito — 架空美容室ブランドサイト
   設計: 白基調 / 差し色は水色1色 / 水・ガラス・波紋
   ===================================================== */

:root {
  --ink: #33454e;
  --ink-soft: #5e737d;
  --accent: #7cc4d9;
  --accent-deep: #3e8aa1;
  --bg: #f7fbfc;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.56);
  --glass-line: rgba(255, 255, 255, 0.75);
  --shadow: 0 18px 50px rgba(86, 130, 148, 0.16);
  --mincho: "Zen Old Mincho", serif;
  --gothic: "Zen Kaku Gothic New", sans-serif;
  --latin: "Cormorant Garamond", serif;
  --ease-soft: cubic-bezier(0.22, 0.61, 0.21, 1);
  --ease-spring: cubic-bezier(0.34, 1.46, 0.42, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--gothic);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 2;
  letter-spacing: 0.04em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

section { scroll-margin-top: 76px; }

/* ---------- ローダー ---------- */

.loader {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity 0.9s var(--ease-soft), visibility 0.9s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader-stage { position: relative; width: 220px; height: 220px; display: grid; place-items: center; }
.loader-drop {
  position: absolute; top: 0; left: 50%;
  width: 10px; height: 14px; margin-left: -5px;
  background: var(--accent);
  border-radius: 50% 50% 60% 60%;
  opacity: 0;
  animation: dropFall 0.7s 0.15s var(--ease-soft) forwards;
}
@keyframes dropFall {
  0% { opacity: 0; transform: translateY(0) scaleY(0.8); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translateY(96px) scaleY(1.1); }
}
.loader-ring {
  position: absolute; top: 50%; left: 50%;
  width: 16px; height: 16px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
}
.loader-ring.r1 { animation: ringOut 1.5s 0.78s var(--ease-soft); }
.loader-ring.r2 { animation: ringOut 1.5s 1.0s var(--ease-soft); }
.loader-ring.r3 { animation: ringOut 1.5s 1.24s var(--ease-soft); }
@keyframes ringOut {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.2); }
  18% { opacity: 0.85; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(9); }
}
.loader-name {
  font-family: var(--mincho);
  font-size: 1.5rem; letter-spacing: 0.5em; text-indent: 0.5em;
  color: var(--ink);
  opacity: 0;
  animation: nameIn 1.2s 0.95s var(--ease-soft) forwards;
}
@keyframes nameIn { from { opacity: 0; filter: blur(6px); } to { opacity: 1; filter: blur(0); } }

/* ---------- クリック波紋 ---------- */

.tap-layer { position: fixed; inset: 0; z-index: 80; pointer-events: none; }
.tap-ripple {
  position: absolute;
  border: 1.5px solid rgba(124, 196, 217, 0.75);
  border-radius: 50%;
  width: 12px; height: 12px;
  transform: translate(-50%, -50%) scale(0.4);
  opacity: 0.9;
  animation: tapOut 0.9s var(--ease-soft) forwards;
}
.tap-ripple.late { animation-duration: 1.25s; animation-delay: 0.12s; opacity: 0; }
@keyframes tapOut {
  0% { opacity: 0.9; transform: translate(-50%, -50%) scale(0.4); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(7); }
}

/* ---------- ナビ ---------- */

.nav {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  z-index: 60;
  width: min(1240px, calc(100% - 28px));
  display: flex; align-items: center; gap: 28px;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-line);
  transition: background 0.5s, box-shadow 0.5s;
}
.nav.is-scrolled { background: rgba(255, 255, 255, 0.78); box-shadow: 0 10px 30px rgba(86, 130, 148, 0.12); }
.nav-logo { display: flex; align-items: baseline; gap: 10px; margin-right: auto; }
.nav-logo-ja { font-family: var(--mincho); font-size: 1.3rem; letter-spacing: 0.3em; }
.nav-logo-en { font-family: var(--latin); font-style: italic; font-size: 0.82rem; color: var(--ink-soft); letter-spacing: 0.08em; }
.nav-links { display: flex; gap: 22px; }
.nav-links a {
  font-size: 0.84rem; letter-spacing: 0.12em; padding: 4px 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='6' viewBox='0 0 40 6'%3E%3Cpath d='M0 3 Q5 0.5 10 3 T20 3 T30 3 T40 3' fill='none' stroke='%237cc4d9' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 40px 6px;
  background-position: 0 calc(100% + 6px);
  transition: background-position 0.45s var(--ease-soft);
}
.nav-links a:hover { background-position: 14px 100%; }
.nav-reserve {
  font-size: 0.84rem; letter-spacing: 0.14em;
  padding: 8px 22px; border-radius: 999px;
  color: #fff; background: linear-gradient(120deg, var(--accent), var(--accent-deep));
  box-shadow: 0 6px 18px rgba(62, 138, 161, 0.3);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}
.nav-reserve:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(62, 138, 161, 0.38); }
.nav-burger { display: none; }

/* SPメニュー */
.sp-menu {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(247, 251, 252, 0.78);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  display: grid; place-items: center; text-align: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease-soft), visibility 0.5s;
}
body.menu-open .sp-menu { opacity: 1; visibility: visible; }
.sp-menu-links { display: grid; gap: 20px; }
.sp-menu-links a {
  font-family: var(--mincho); font-size: 1.25rem; letter-spacing: 0.24em;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s var(--ease-soft), transform 0.6s var(--ease-soft);
}
body.menu-open .sp-menu-links a { opacity: 1; transform: none; }
.sp-menu-links a:nth-child(1) { transition-delay: 0.08s; }
.sp-menu-links a:nth-child(2) { transition-delay: 0.14s; }
.sp-menu-links a:nth-child(3) { transition-delay: 0.2s; }
.sp-menu-links a:nth-child(4) { transition-delay: 0.26s; }
.sp-menu-links a:nth-child(5) { transition-delay: 0.32s; }
.sp-menu-links a:nth-child(6) { transition-delay: 0.38s; }
.sp-menu-links a:nth-child(7) { transition-delay: 0.44s; }
.sp-menu-reserve { color: var(--accent-deep); }
.sp-menu-note { position: absolute; bottom: 30px; left: 0; right: 0; font-size: 0.72rem; color: var(--ink-soft); letter-spacing: 0.1em; }

/* ---------- ヒーロー ---------- */

.hero { position: relative; height: 100svh; min-height: 600px; overflow: hidden; }
.hero-canvas, .hero-fallback { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-fallback { display: none; }
.hero.no-webgl .hero-fallback { display: block; }
.hero.no-webgl .hero-canvas { display: none; }
.hero-fallback img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.8s var(--ease-soft);
}
.hero-fallback img.is-show { opacity: 1; }
.hero-veil {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(247, 251, 252, 0.32) 0%, rgba(247, 251, 252, 0) 30%),
    linear-gradient(180deg, rgba(247, 251, 252, 0) 52%, rgba(247, 251, 252, 0.88) 100%);
}
.hero-inner {
  position: absolute; left: 0; right: 0; bottom: 11svh;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}
.hero-place {
  font-family: var(--latin); font-size: 0.85rem; letter-spacing: 0.42em;
  color: var(--accent-deep); margin-bottom: 14px;
}
.hero-catch {
  font-family: var(--mincho); font-weight: 600;
  font-size: clamp(2.5rem, 6.2vw, 4.7rem);
  line-height: 1.45; letter-spacing: 0.1em;
  text-shadow: 0 2px 30px rgba(255, 255, 255, 0.8);
}
.hero-catch .unit { display: inline-block; white-space: nowrap; }
.hero-catch .ch {
  display: inline-block;
  opacity: 0;
  animation:
    chIn 1.1s calc(0.55s + var(--i) * 0.07s) var(--ease-soft) forwards,
    chFloat 4.2s calc(1.8s + var(--i) * 0.32s) ease-in-out infinite alternate;
}
@keyframes chIn {
  from { opacity: 0; transform: translateY(34px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes chFloat {
  from { translate: 0 0; }
  to { translate: 0 -7px; }
}
.hero-sub { margin-top: 18px; font-size: clamp(0.92rem, 1.4vw, 1.05rem); color: var(--ink); }
.hero-sub .u { display: inline-block; }
.hero-hint { margin-top: 26px; font-size: 0.74rem; letter-spacing: 0.18em; color: var(--ink-soft); }
.hero-hint::before {
  content: ""; display: inline-block; width: 7px; height: 9px; margin-right: 9px;
  background: var(--accent); border-radius: 50% 50% 60% 60%;
  vertical-align: 1px;
  animation: hintBob 2.4s ease-in-out infinite;
}
@keyframes hintBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

.hero-scroll {
  position: absolute; right: 34px; bottom: 0;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll-word { font-family: var(--latin); font-style: italic; font-size: 0.82rem; letter-spacing: 0.3em; color: var(--ink-soft); writing-mode: vertical-rl; }
.hero-scroll-line { position: relative; width: 1px; height: 84px; background: rgba(94, 115, 125, 0.3); overflow: hidden; }
.hero-scroll-line i {
  position: absolute; left: -2.5px; top: -10px;
  width: 6px; height: 9px; background: var(--accent); border-radius: 50% 50% 60% 60%;
  animation: scrollDrip 2.2s var(--ease-soft) infinite;
}
@keyframes scrollDrip {
  0% { transform: translateY(0); opacity: 0; }
  18% { opacity: 1; }
  78% { opacity: 1; }
  100% { transform: translateY(96px); opacity: 0; }
}

/* ---------- 波の区切り ---------- */

.wave-divider { position: relative; z-index: 2; margin-top: -89px; pointer-events: none; }
.wave-divider svg { display: block; width: 100%; height: 90px; }
.wave { fill: var(--bg); }
.wave.w1 { opacity: 0.45; animation: waveDrift 9s ease-in-out infinite alternate; }
.wave.w2 { animation: waveDrift 13s ease-in-out infinite alternate-reverse; }
@keyframes waveDrift { from { transform: translateX(0); } to { transform: translateX(-46px); } }

/* ---------- 共通: セクション見出し ---------- */

.sec-label {
  font-family: var(--latin); font-style: italic;
  font-size: 0.88rem; color: var(--accent-deep);
  letter-spacing: 0.34em;
  margin-bottom: 14px;
}
.sec-label.rv-on { animation: trackIn 1.6s var(--ease-soft); }
@keyframes trackIn { from { letter-spacing: 0.7em; } to { letter-spacing: 0.34em; } }
.sec-title {
  font-family: var(--mincho); font-weight: 600;
  font-size: clamp(1.65rem, 3.4vw, 2.5rem);
  line-height: 1.7; letter-spacing: 0.12em;
  margin-bottom: 28px;
}
.sec-title .u, .reserve-catch .u, .concept-name-line { display: inline-block; }
.on-photo { color: #fff; text-shadow: 0 2px 24px rgba(40, 70, 84, 0.45); }
.sec-label.on-photo { color: #eafdff; }

/* ---------- 出現アニメ(可変速リヴィール) ---------- */

[data-rv] {
  opacity: 0;
  transform: translateY(var(--rv-dist, 28px));
  transition:
    opacity var(--rv-dur, 1s) var(--rv-ease, var(--ease-soft)) var(--rv-delay, 0s),
    transform var(--rv-dur, 1s) var(--rv-ease, var(--ease-soft)) var(--rv-delay, 0s);
  will-change: opacity, transform;
}
[data-rv].rv-on { opacity: 1; transform: translate(0, 0); }
[data-rv][data-rv-dir="left"] { transform: translateX(calc(var(--rv-dist, 36px) * -1)); }
[data-rv][data-rv-dir="right"] { transform: translateX(var(--rv-dist, 36px)); }
[data-rv][data-rv-dir="down"] { transform: translateY(calc(var(--rv-dist, 28px) * -1)); }

/* ---------- コンセプト ---------- */

.concept { position: relative; padding: 130px 0 150px; background: var(--bg); }
.concept-grid {
  width: min(1160px, calc(100% - 48px)); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 60px;
  align-items: start;
}
.concept-body { max-width: 36em; margin-bottom: 1.4em; color: var(--ink); }
.concept-name {
  margin-top: 44px; padding: 26px 30px;
  border-left: 2px solid var(--accent);
  background: linear-gradient(100deg, rgba(124, 196, 217, 0.1), rgba(124, 196, 217, 0));
}
.concept-name-line { font-family: var(--mincho); font-size: 1.18rem; letter-spacing: 0.2em; margin-bottom: 8px; }
.concept-name-note { font-size: 0.86rem; color: var(--ink-soft); }
.concept-visual { position: relative; min-height: 660px; }
.concept-img { position: absolute; overflow: hidden; border-radius: 4px; box-shadow: var(--shadow); }
.concept-img img { width: 100%; height: 100%; object-fit: cover; }
.concept-img.a { top: 0; right: 0; width: 74%; aspect-ratio: 3 / 2.1; }
.concept-img.b { bottom: 0; left: 0; width: 46%; aspect-ratio: 3 / 4; }
.concept-vert {
  position: absolute; top: 54%; left: 52%;
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-family: var(--mincho); font-size: 1.05rem; letter-spacing: 0.42em;
  color: var(--accent-deep);
}

/* ---------- こだわり(固定背景×前景抜け) ---------- */

.promise { position: relative; }
.promise-bg { position: sticky; top: 0; height: 100svh; overflow: hidden; }
.promise-bg img { width: 100%; height: 100%; object-fit: cover; }
.promise-bg-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(151, 200, 215, 0.34), rgba(247, 251, 252, 0.12) 40%, rgba(151, 200, 215, 0.3));
}
.promise-fore {
  position: relative; z-index: 2;
  margin-top: -100svh;
  width: min(1100px, calc(100% - 48px));
  margin-left: auto; margin-right: auto;
  padding: 16svh 0 22svh;
}
.promise-head { margin-bottom: 30svh; }
.promise-card {
  width: min(520px, 100%);
  margin: 0 0 36svh;
  padding: 42px 46px;
  border-radius: 6px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-line);
  box-shadow: var(--shadow);
}
.promise-card.right { margin-left: auto; }
.promise-card:last-child { margin-bottom: 0; }
.promise-num {
  font-family: var(--latin); font-style: italic;
  font-size: 2rem; color: var(--accent-deep); line-height: 1;
  display: block; margin-bottom: 12px;
}
.promise-card h3 {
  font-family: var(--mincho); font-weight: 600;
  font-size: 1.3rem; letter-spacing: 0.18em; margin-bottom: 12px;
}
.promise-card p { font-size: 0.92rem; color: var(--ink); }

/* ---------- メニュー ---------- */

.menu { position: relative; padding: 140px 0; background: var(--white); overflow: hidden; }
.menu-texture { position: absolute; inset: 0; opacity: 0.4; pointer-events: none; }
.menu-texture img { width: 100%; height: 100%; object-fit: cover; }
.menu::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72));
  pointer-events: none;
}
.menu-inner { position: relative; width: min(1080px, calc(100% - 48px)); margin: 0 auto; }
.menu-lead { max-width: 38em; margin-bottom: 54px; font-size: 0.94rem; color: var(--ink-soft); }
.menu-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 26px 44px;
}
.menu-item {
  position: relative;
  padding: 26px 30px 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(124, 196, 217, 0.28);
  overflow: hidden;
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s, border-color 0.5s;
}
.menu-item:nth-child(odd) { transform-origin: left center; }
.menu-item:nth-child(2) { top: 26px; }
.menu-item:nth-child(4) { top: 26px; }
.menu-item:nth-child(6) { top: 26px; }
.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(86, 130, 148, 0.18);
  border-color: rgba(124, 196, 217, 0.6);
}
.menu-item::before, .menu-item::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.3px solid rgba(124, 196, 217, 0.55);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
}
.menu-item:hover::before { animation: cardRipple 1.1s var(--ease-soft); }
.menu-item:hover::after { animation: cardRipple 1.45s 0.18s var(--ease-soft); }
@keyframes cardRipple {
  0% { opacity: 0.8; transform: translate(-50%, -50%) scale(0.2); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(16); }
}
.menu-item-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 6px; }
.menu-item h3 { font-family: var(--mincho); font-weight: 600; font-size: 1.06rem; letter-spacing: 0.1em; }
.menu-price { font-family: var(--latin); font-size: 1.12rem; color: var(--accent-deep); white-space: nowrap; }
.menu-item p { font-size: 0.84rem; color: var(--ink-soft); line-height: 1.8; }

/* ---------- マーキー ---------- */

.marquee { overflow: hidden; padding: 30px 0; background: var(--bg); }
.marquee-track {
  display: flex; align-items: center; gap: 38px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-track span {
  font-family: var(--latin); font-style: italic;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(124, 196, 217, 0.65);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.marquee-track i {
  width: 8px; height: 11px; flex: none;
  background: var(--accent); opacity: 0.7;
  border-radius: 50% 50% 60% 60%;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }

/* ---------- スタイル(崩しグリッド) ---------- */

.style { padding: 140px 0 120px; background: var(--bg); }
.style-inner { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.style-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 26px;
  margin-top: 50px;
}
.style-card { position: relative; }
.style-card.s1 { grid-column: 1 / span 4; margin-top: 40px; }
.style-card.s2 { grid-column: 5 / span 3; margin-top: 110px; }
.style-card.s3 { grid-column: 9 / span 4; }
.style-card.s4 { grid-column: 2 / span 3; margin-top: 60px; }
.style-card.s5 { grid-column: 6 / span 4; margin-top: 130px; }
.style-card.s6 { grid-column: 10 / span 3; margin-top: 30px; }
.style-imgwrap {
  overflow: hidden; border-radius: 4px; box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
}
.style-imgwrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-soft), filter 0.9s;
}
.style-card:hover .style-imgwrap img {
  transform: scale(1.06) rotate(0.6deg);
  filter: brightness(1.04) saturate(1.05);
  animation: waterSway 2.6s 0.4s ease-in-out infinite alternate;
}
@keyframes waterSway {
  from { transform: scale(1.06) rotate(0.6deg); }
  to { transform: scale(1.07) rotate(-0.5deg) translateY(-4px); }
}
.style-card figcaption { margin-top: 12px; }
.style-card figcaption span {
  display: inline-block;
  font-size: 0.82rem; letter-spacing: 0.12em;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(124, 196, 217, 0.3);
  transform: translateY(6px); opacity: 0.85;
  transition: transform 0.5s var(--ease-spring), opacity 0.5s, border-color 0.5s;
}
.style-card:hover figcaption span { transform: translateY(0); opacity: 1; border-color: rgba(124, 196, 217, 0.7); }
.style-vert {
  position: absolute; top: 38%; right: -6px;
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-family: var(--mincho); font-size: 1.02rem; letter-spacing: 0.4em;
  color: var(--accent-deep);
}

/* ---------- スタイリスト ---------- */

.stylist { padding: 130px 0 140px; background: var(--white); }
.stylist-inner { width: min(1100px, calc(100% - 48px)); margin: 0 auto; }
.stylist-lead { margin-bottom: 50px; color: var(--ink-soft); font-size: 0.94rem; }
.stylist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.stylist-card:nth-child(2) { margin-top: 44px; }
.stylist-card:nth-child(3) { margin-top: 14px; }
.stylist-imgwrap { overflow: hidden; border-radius: 4px; box-shadow: var(--shadow); aspect-ratio: 4 / 5; }
.stylist-imgwrap img {
  width: 100%; height: 110%; object-fit: cover;
  transition: transform 1.4s var(--ease-soft);
}
.stylist-card:hover .stylist-imgwrap img { transform: translateY(-6%) scale(1.03); }
.stylist-card h3 {
  font-family: var(--mincho); font-weight: 600;
  font-size: 1.12rem; letter-spacing: 0.14em;
  margin: 18px 0 8px;
}
.stylist-card h3 span { display: block; font-family: var(--gothic); font-weight: 400; font-size: 0.76rem; color: var(--ink-soft); letter-spacing: 0.1em; margin-top: 4px; }
.stylist-card p { font-size: 0.86rem; color: var(--ink); line-height: 1.9; }

/* ---------- ご来店の流れ ---------- */

.flow { padding: 120px 0 140px; background: var(--bg); }
.flow-inner { width: min(1100px, calc(100% - 48px)); margin: 0 auto; }
.flow-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 40px; }
.flow-list li { position: relative; padding-top: 8px; }
.flow-list li:nth-child(2) { top: 22px; }
.flow-list li:nth-child(4) { top: 22px; }
.flow-num {
  display: grid; place-items: center;
  width: 58px; height: 66px;
  font-family: var(--latin); font-style: italic; font-size: 1.2rem;
  color: var(--accent-deep);
  background: rgba(124, 196, 217, 0.16);
  border: 1px solid rgba(124, 196, 217, 0.4);
  border-radius: 50% 50% 58% 58% / 44% 44% 62% 62%;
  margin-bottom: 16px;
  animation: numBob 3.6s ease-in-out infinite alternate;
}
.flow-list li:nth-child(2) .flow-num { animation-delay: 0.6s; }
.flow-list li:nth-child(3) .flow-num { animation-delay: 1.2s; }
.flow-list li:nth-child(4) .flow-num { animation-delay: 1.8s; }
@keyframes numBob { from { transform: translateY(0); } to { transform: translateY(-6px); } }
.flow-list h3 { font-family: var(--mincho); font-weight: 600; font-size: 1.04rem; letter-spacing: 0.14em; margin-bottom: 8px; }
.flow-list p { font-size: 0.84rem; color: var(--ink-soft); line-height: 1.9; }

/* ---------- 予約CTA ---------- */

.reserve { position: relative; padding: 170px 0; overflow: hidden; }
.reserve-bg { position: absolute; inset: -60px 0; }
.reserve-bg img { width: 100%; height: 100%; object-fit: cover; }
.reserve-veil { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(247, 251, 252, 0.82), rgba(247, 251, 252, 0.46)); }
.reserve-inner { position: relative; width: min(1100px, calc(100% - 48px)); margin: 0 auto; }
.reserve-catch {
  font-family: var(--mincho); font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.7; letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.reserve-note { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 38px; }
.reserve-actions { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.reserve-btn {
  position: relative; overflow: hidden;
  display: inline-block;
  padding: 18px 58px;
  border-radius: 999px;
  font-size: 0.95rem; letter-spacing: 0.2em;
  color: var(--accent-deep);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(124, 196, 217, 0.65);
  transition: color 0.5s var(--ease-soft), transform 0.5s var(--ease-spring), box-shadow 0.5s;
}
.reserve-btn-fill {
  position: absolute; left: 0; right: 0; bottom: -4%;
  height: 0%;
  background: linear-gradient(180deg, rgba(124, 196, 217, 0.92), rgba(62, 138, 161, 0.95));
  border-radius: 46% 54% 0 0 / 90% 80% 0 0;
  transition: height 0.65s var(--ease-soft), border-radius 0.65s;
  z-index: 0;
}
.reserve-btn:hover .reserve-btn-fill { height: 112%; border-radius: 0; }
.reserve-btn:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 16px 36px rgba(62, 138, 161, 0.3); }
.reserve-btn-text { position: relative; z-index: 1; }
.reserve-tel { font-size: 0.88rem; color: var(--ink); }
.reserve-toast {
  margin-top: 26px;
  display: inline-block;
  padding: 10px 22px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(124, 196, 217, 0.5);
  font-size: 0.82rem; color: var(--accent-deep);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s var(--ease-soft), transform 0.5s var(--ease-soft);
  pointer-events: none;
}
.reserve-toast.is-show { opacity: 1; transform: none; }

/* ---------- 店舗案内 ---------- */

.access { padding: 140px 0; background: var(--white); }
.access-inner {
  width: min(1160px, calc(100% - 48px)); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 64px;
  align-items: center;
}
.access-visual { overflow: hidden; border-radius: 4px; box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.access-visual img { width: 100%; height: 112%; object-fit: cover; }
.access-table div {
  display: grid; grid-template-columns: 92px 1fr; gap: 18px;
  padding: 13px 4px;
  border-bottom: 1px solid rgba(124, 196, 217, 0.26);
  font-size: 0.9rem;
}
.access-table dt { color: var(--accent-deep); letter-spacing: 0.12em; font-weight: 500; }
.access-table dd { color: var(--ink); }

/* ---------- フッター ---------- */

.footer { position: relative; background: var(--bg); }
.footer-wave svg { display: block; width: 100%; height: 70px; }
.footer-wave .wave { fill: rgba(124, 196, 217, 0.16); }
.footer-inner { width: min(1100px, calc(100% - 48px)); margin: 0 auto; padding: 50px 0 46px; text-align: center; }
.footer-logo { font-family: var(--mincho); font-size: 1.4rem; letter-spacing: 0.34em; margin-bottom: 6px; }
.footer-logo span { display: block; font-family: var(--latin); font-style: italic; font-size: 0.8rem; letter-spacing: 0.14em; color: var(--ink-soft); margin-top: 4px; }
.footer-links { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; margin: 26px 0 30px; }
.footer-links a { font-size: 0.8rem; letter-spacing: 0.12em; color: var(--ink-soft); transition: color 0.4s; }
.footer-links a:hover { color: var(--accent-deep); }
.footer-disclaimer { max-width: 46em; margin: 0 auto 14px; font-size: 0.74rem; line-height: 1.9; color: var(--ink-soft); }
.footer-copy { font-family: var(--latin); font-style: italic; font-size: 0.78rem; color: var(--ink-soft); letter-spacing: 0.1em; }

.sp-only { display: none; }
.nw { display: inline-block; }

/* ---------- レスポンシブ ---------- */

@media (max-width: 980px) {
  .concept-grid { grid-template-columns: 1fr; gap: 70px; }
  .concept-visual { min-height: 0; height: 560px; }
  .stylist-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .flow-list { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .access-inner { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 768px) {
  body { line-height: 1.95; }
  section { scroll-margin-top: 66px; }
  .nav { gap: 14px; padding: 9px 16px 9px 20px; }
  .nav-links, .nav-reserve { display: none; }
  .nav-burger {
    display: grid; gap: 6px; place-content: center;
    width: 40px; height: 40px;
    background: none; border: none; cursor: pointer;
  }
  .nav-burger span { display: block; width: 22px; height: 1.6px; background: var(--ink); transition: transform 0.45s var(--ease-soft), translate 0.45s; }
  body.menu-open .nav-burger span:nth-child(1) { transform: rotate(33deg); translate: 0 3.8px; }
  body.menu-open .nav-burger span:nth-child(2) { transform: rotate(-33deg); translate: 0 -3.8px; }

  .hero-inner { bottom: 9svh; }
  .hero-catch { font-size: clamp(2.2rem, 11vw, 2.9rem); }
  .hero-sub br { display: block; }
  .hero-scroll { right: 20px; }
  .hero-hint { font-size: 0.7rem; }

  .concept { padding: 90px 0 100px; }
  .concept-visual { height: 470px; }
  .concept-img.a { width: 82%; }
  .concept-img.b { width: 52%; }
  .concept-vert { left: auto; right: 2px; top: 38%; }
  .concept-name { padding: 20px 20px; }

  .promise-head { margin-bottom: 22svh; }
  .promise-card { padding: 30px 26px; margin-bottom: 26svh; }

  .menu { padding: 100px 0; }
  .menu-list { grid-template-columns: 1fr; gap: 18px; }
  .menu-item:nth-child(2n) { top: 0; }
  .menu-item:nth-child(2n) { transform: translateX(0); }

  .style { padding: 100px 0 90px; }
  .style-grid { grid-template-columns: repeat(6, 1fr); gap: 18px; }
  .style-card.s1 { grid-column: 1 / span 4; margin-top: 0; }
  .style-card.s2 { grid-column: 4 / span 3; margin-top: 70px; }
  .style-card.s3 { grid-column: 1 / span 3; margin-top: 30px; }
  .style-card.s4 { grid-column: 3 / span 4; margin-top: 60px; }
  .style-card.s5 { grid-column: 1 / span 4; margin-top: 40px; }
  .style-card.s6 { grid-column: 4 / span 3; margin-top: 70px; }
  .style-card.s2, .style-card.s4, .style-card.s6 { z-index: 2; }
  .style-vert { display: none; }

  .stylist { padding: 90px 0 100px; }
  .stylist-grid { grid-template-columns: 1fr; gap: 44px; }
  .stylist-card:nth-child(2), .stylist-card:nth-child(3) { margin-top: 0; }
  .stylist-imgwrap { aspect-ratio: 4 / 3; }

  .flow { padding: 80px 0 100px; }
  .flow-list { grid-template-columns: 1fr 1fr; }
  .flow-list li:nth-child(2), .flow-list li:nth-child(4) { top: 18px; }

  .reserve { padding: 110px 0; }
  .reserve-actions { gap: 18px; }
  .sp-only { display: inline; }

  .access { padding: 90px 0 100px; }
  .access-table div { grid-template-columns: 78px 1fr; gap: 12px; font-size: 0.85rem; }
}

/* ---------- 動きを減らす設定への配慮 ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-catch .ch { animation: chIn 0.01s forwards; }
  .wave, .marquee-track, .flow-num, .hero-scroll-line i, .hero-hint::before { animation: none; }
  [data-rv] { opacity: 1; transform: none; transition: none; }
}
