/* ============================================================
   hair salon haru — renewal site
   Design base: lamplight-hair.com structure × haru color palette
   Palette: teal #7ebec5 / rose #b84c64 / warm #f9f6f5 / ink #2f2b29
   ============================================================ */

:root {
  --teal: #7ebec5;
  --teal-deep: #58a0a9;
  --teal-ink: #3f7d85;
  --teal-pale: #eef5f6;
  --rose: #b84c64;
  --rose-pale: #f7edf0;
  --bg-warm: #f9f6f5;
  --white: #ffffff;
  --ink: #2f2b29;
  --gray: #6f6863;
  --line: #e8e2df;
  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --cond: "Roboto Condensed", "Noto Sans JP", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.9;
  font-size: 15px;
  letter-spacing: .04em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--teal-ink); text-decoration: none; transition: opacity .3s; }
a:hover { opacity: .7; }
ul { list-style: none; }

/* ---------- common: section header (lamplight style) ---------- */
.section { padding: clamp(72px, 10vw, 130px) 24px; }
.section.bg-warm { background: var(--bg-warm); }
.section.bg-pale { background: var(--teal-pale); }

.inner { max-width: 1080px; margin: 0 auto; }

.sec-head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.sec-head .en {
  display: block;
  font-family: var(--cond);
  font-weight: 400;
  font-size: clamp(13px, 1.6vw, 16px);
  letter-spacing: .42em;
  text-indent: .42em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 14px;
}
.sec-head .jp {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: .14em;
  line-height: 1.4;
  color: var(--ink);
}
.sec-head .rule {
  width: 44px; height: 1px;
  background: var(--teal);
  margin: 22px auto 0;
  position: relative;
}
.sec-head .rule::after {
  content: "";
  position: absolute;
  left: 50%; top: -2.5px;
  width: 6px; height: 6px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--teal);
}
.sec-head .lead {
  margin-top: 24px;
  font-size: 14px;
  color: var(--gray);
  letter-spacing: .08em;
}

/* ---------- more link (lamplight "- More") ---------- */
.more {
  display: inline-block;
  font-family: var(--cond);
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--teal-ink);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--teal);
}
.more::after { content: " →"; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: .18em;
  padding: 16px 44px;
  border: 1px solid var(--teal-ink);
  transition: all .35s ease;
}
.btn-solid {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.btn-solid:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  opacity: 1;
}
.btn-ghost { color: var(--teal-ink); }
.btn-ghost:hover { background: var(--teal-pale); opacity: 1; }
.btn-line {
  background: #06c755;
  border-color: #06c755;
  color: #fff;
}
.btn-ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border: none;
  color: #fff;
}

/* ============================================================
   header
   ============================================================ */
#pageHeader {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(126,190,197,.22);
  transition: box-shadow .4s;
}
#pageHeader.scrolled { box-shadow: 0 1px 18px rgba(47,43,41,.08); }
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo a { display: flex; align-items: center; gap: 12px; }
.logo img { height: 44px; width: auto; }
.logo .logo-sp { display: none; height: 34px; }

.gnav { display: flex; align-items: center; gap: 30px; }
.gnav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  color: var(--ink);
}
.gnav a .en {
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.gnav a .jp { font-size: 12.5px; letter-spacing: .12em; }
.gnav a { position: relative; }
.gnav a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -8px;
  width: 0; height: 1px;
  background: var(--teal);
  transition: all .3s;
  transform: translateX(-50%);
}
.gnav a:hover::after { width: 100%; }

.gnav .nav-cta {
  background: var(--teal);
  color: #fff;
  padding: 10px 24px;
  border-radius: 999px;
}
.gnav .nav-cta .en { color: rgba(255,255,255,.85); }
.gnav .nav-cta .jp { font-weight: 600; }
.gnav .nav-cta::after { display: none; }
.gnav .nav-cta:hover { background: var(--teal-deep); opacity: 1; }

/* sp nav */
.sp-menu-btn {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 210;
}
.sp-menu-btn span {
  position: absolute;
  left: 11px;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: all .3s;
}
.sp-menu-btn span:nth-child(1) { top: 17px; }
.sp-menu-btn span:nth-child(2) { top: 23px; }
.sp-menu-btn span:nth-child(3) { top: 29px; }
.sp-menu-btn.open span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.sp-menu-btn.open span:nth-child(2) { opacity: 0; }
.sp-menu-btn.open span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

#spNavi {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(249,246,245,.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
#spNavi.open { opacity: 1; pointer-events: auto; }
#spNavi a {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: .2em;
  color: var(--ink);
  padding: 10px 0;
}
#spNavi a .en {
  display: block;
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--teal-deep);
  text-align: center;
}
#spNavi .nav-cta {
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 15px;
  background: var(--teal);
  color: #fff;
  padding: 13px 42px;
  border-radius: 999px;
}

/* ============================================================
   hero
   ============================================================ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 9s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(47,43,41,.42) 0%, rgba(47,43,41,.18) 45%, rgba(47,43,41,.55) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}
.hero-copy .en {
  font-family: var(--cond);
  font-weight: 300;
  font-size: clamp(15px, 2.4vw, 22px);
  letter-spacing: .5em;
  text-indent: .5em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-copy h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 5vw, 46px);
  line-height: 1.7;
  letter-spacing: .12em;
  margin-bottom: 14px;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero-copy .sub {
  font-size: clamp(12.5px, 1.6vw, 15px);
  letter-spacing: .22em;
  margin-bottom: 36px;
  opacity: .95;
}
.hero-copy .hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 38px;
}
.hero-copy .hero-features li {
  font-size: 12px;
  letter-spacing: .14em;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 999px;
  padding: 6px 16px;
  backdrop-filter: blur(2px);
}
.hero-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.hero-copy .btn { text-shadow: none; }

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: .9;
}
.hero-scroll::after {
  content: "";
  display: block;
  width: 1px; height: 44px;
  background: #fff;
  margin: 10px auto 0;
  animation: scrolldown 1.8s ease infinite;
}
@keyframes scrolldown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   concept — poetic lines (lamplight style)
   ============================================================ */
.concept-flex {
  display: flex;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
}
.concept-flex.reverse { flex-direction: row-reverse; }
.concept-text { flex: 1; }
.concept-img { flex: 1; }
.concept-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.concept-img figcaption {
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--gray);
  letter-spacing: .1em;
  text-align: right;
}

.poem { font-family: var(--serif); }
.poem .line {
  display: block;
  font-size: clamp(19px, 2.6vw, 26px);
  line-height: 2.15;
  letter-spacing: .1em;
}
.poem .line em {
  font-style: normal;
  color: var(--teal-ink);
}
.poem .line strong {
  font-weight: 500;
  color: var(--rose);
}
.concept-body {
  margin-top: 28px;
  font-size: 14px;
  color: var(--gray);
}
.concept-link { margin-top: 30px; }

/* feature chips */
.features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: clamp(48px, 7vw, 84px);
}
.features li {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 22px 10px;
  text-align: center;
  transition: all .3s;
}
.features li:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
}
.features .ico {
  font-size: 26px;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.features .jp {
  display: block;
  font-family: var(--serif);
  font-size: 14.5px;
  letter-spacing: .1em;
}
.features .en {
  display: block;
  font-family: var(--cond);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-top: 5px;
}

/* ============================================================
   service blocks (lamplight service01/02 alternating)
   ============================================================ */
.service-flex {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}
.service-flex + .service-flex { margin-top: clamp(56px, 8vw, 100px); }
.service-flex.reverse { flex-direction: row-reverse; }
.service-img { flex: 1.1; }
.service-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.service-text { flex: 1; }
.service-text .en-label {
  font-family: var(--cond);
  font-size: 12px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}
.service-text h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 500;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.service-text p { font-size: 14px; color: var(--gray); }
.service-text .more { margin-top: 24px; }

.service-points { margin-top: 18px; }
.service-points li {
  font-size: 13.5px;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
}
.service-points li::before {
  content: "";
  position: absolute;
  left: 2px; top: .85em;
  width: 7px; height: 7px;
  transform: rotate(45deg);
  background: var(--teal);
}

/* ============================================================
   works — Before/After carousel
   ============================================================ */
#works .carousel-wrap { position: relative; }
.carousel {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 24px 26px;
  margin: 0 -24px;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.work-card {
  flex: 0 0 clamp(260px, 33%, 340px);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
}
.work-card .ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.work-card .pane {
  aspect-ratio: 1/1.12;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding: 12px;
}
.work-card .pane.before { background: linear-gradient(160deg, #dfe7e8, #c3d5d8); }
.work-card .pane.after { background: linear-gradient(160deg, #f3eef0, #e4ccd4); }
.work-card .pane .tag {
  position: absolute;
  top: 10px; left: 10px;
  font-family: var(--cond);
  font-size: 10.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  background: rgba(255,255,255,.85);
  padding: 3px 10px;
  border-radius: 999px;
}
.work-card .pane.before .tag { color: var(--teal-ink); }
.work-card .pane.after .tag { color: var(--rose); }
.work-card .pane svg { width: 84%; }
.work-card .wcap { padding: 16px 18px 20px; }
.work-card .wcap .wcat {
  font-family: var(--cond);
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.work-card .wcap h3 {
  font-family: var(--serif);
  font-size: 16.5px;
  font-weight: 500;
  letter-spacing: .08em;
  margin-top: 4px;
}
.work-card .wcap p {
  font-size: 12px;
  color: var(--gray);
  margin-top: 6px;
  line-height: 1.75;
}
.car-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  color: var(--teal-ink);
  font-size: 15px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  box-shadow: 0 2px 10px rgba(47,43,41,.08);
}
.car-btn:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.car-btn.prev { left: -10px; }
.car-btn.next { right: -10px; }

.works-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--gray);
  margin-top: 8px;
}
.works-cta { text-align: center; margin-top: 34px; }

/* ============================================================
   menu & price
   ============================================================ */
.price-note-top {
  text-align: center;
  font-size: 12.5px;
  color: var(--gray);
  letter-spacing: .1em;
  margin: -28px 0 44px;
}
.menu-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 40px;
}
.menu-table {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 30px 32px 26px;
}
.menu-table h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .14em;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--teal);
  color: var(--teal-ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.menu-table h3 .en {
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 400;
}
.menu-table dl { display: grid; grid-template-columns: 1fr auto; }
.menu-table dt {
  font-size: 13.5px;
  padding: 8.5px 0;
  border-bottom: 1px dashed var(--line);
}
.menu-table dd {
  font-size: 13.5px;
  font-family: var(--cond);
  letter-spacing: .06em;
  text-align: right;
  padding: 8.5px 0 8.5px 12px;
  border-bottom: 1px dashed var(--line);
  white-space: nowrap;
}
.menu-table dt:last-of-type, .menu-table dd:last-of-type { border-bottom: none; }
.menu-table .small { font-size: 11.5px; color: var(--gray); margin-top: 10px; }
.price-tax {
  text-align: right;
  font-size: 11.5px;
  color: var(--gray);
  margin-top: 22px;
}
.menu-cta { text-align: center; margin-top: 42px; }

/* ============================================================
   banner tiles (lamplight secBanner: Menu / Staff)
   ============================================================ */
.banner-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.banner-2 a {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/7;
}
.banner-2 a img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.banner-2 a:hover img { transform: scale(1.05); }
.banner-2 a .cap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(47,43,41,.36);
  color: #fff;
}
.banner-2 a .cap .en {
  font-family: var(--cond);
  font-size: 12px;
  letter-spacing: .4em;
  text-indent: .4em;
  text-transform: uppercase;
  opacity: .92;
}
.banner-2 a .cap .jp {
  font-family: var(--serif);
  font-size: clamp(19px, 2.6vw, 26px);
  letter-spacing: .24em;
}

/* ============================================================
   staff
   ============================================================ */
.staff-flex {
  display: flex;
  align-items: center;
  gap: clamp(30px, 6vw, 76px);
}
.staff-photo { flex: 0 0 clamp(220px, 32%, 320px); }
.staff-photo svg, .staff-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}
.staff-info { flex: 1; }
.staff-info .role {
  font-family: var(--cond);
  font-size: 12px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}
.staff-info h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  letter-spacing: .16em;
  margin-bottom: 6px;
}
.staff-info .staff-en {
  font-family: var(--cond);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: .3em;
  color: var(--teal-deep);
  margin-bottom: 22px;
}
.staff-info p { font-size: 14px; color: var(--gray); }
.staff-quals {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.staff-quals li {
  font-size: 12px;
  letter-spacing: .1em;
  border: 1px solid var(--teal);
  color: var(--teal-ink);
  border-radius: 999px;
  padding: 5px 16px;
}
.staff-msg {
  margin-top: 26px;
  padding: 22px 26px;
  background: var(--rose-pale);
  border-left: 2px solid var(--rose);
  font-family: var(--serif);
  font-size: 14.5px;
  line-height: 2;
}

/* ============================================================
   instagram
   ============================================================ */
#instagram .inner { text-align: center; }
.ig-tile {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 34px 48px;
  transition: all .3s;
}
.ig-tile:hover { border-color: var(--teal); transform: translateY(-3px); }
.ig-tile .ig-ico {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ig-tile .ig-ico svg { width: 28px; height: 28px; fill: #fff; }
.ig-tile .t1 {
  font-family: var(--cond);
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.ig-tile .t2 {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .1em;
  margin-top: 2px;
}
.ig-tile .t3 { font-size: 12.5px; color: var(--gray); margin-top: 4px; }
.ig-note { margin-top: 20px; font-size: 12.5px; color: var(--gray); }

/* ============================================================
   news / column
   ============================================================ */
.news-list { max-width: 760px; margin: 0 auto; }
.news-item {
  display: flex;
  gap: 26px;
  padding: 24px 6px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.news-item:first-child { border-top: 1px solid var(--line); }
.news-item time {
  font-family: var(--cond);
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--teal-deep);
  white-space: nowrap;
}
.news-item .cat {
  font-size: 10.5px;
  letter-spacing: .16em;
  border: 1px solid var(--rose);
  color: var(--rose);
  padding: 2px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.news-item .ttl {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: .06em;
  color: var(--ink);
}
.news-item .ttl small { display: block; font-family: var(--sans); font-size: 12.5px; color: var(--gray); margin-top: 4px; }

/* ============================================================
   access
   ============================================================ */
.access-flex {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.access-map {
  position: relative;
  width: 100%;
  aspect-ratio: 16/11;
  border: 1px solid var(--line);
}
.access-map iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(.28);
}
.access-map:hover iframe { filter: none; }
.store-info dl { display: grid; grid-template-columns: 150px 1fr; }
.store-info dt {
  font-family: var(--cond);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal-deep);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.store-info dd {
  font-size: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.store-info dd .hp-badge {
  display: inline-block;
  font-size: 11px;
  background: var(--teal-pale);
  color: var(--teal-ink);
  border-radius: 999px;
  padding: 2px 12px;
  margin-left: 8px;
  vertical-align: 1px;
}
.access-points { margin-top: 22px; }
.access-points li {
  font-size: 13.5px;
  padding-left: 22px;
  position: relative;
  color: var(--ink);
}
.access-points li::before {
  content: "";
  position: absolute;
  left: 2px; top: .8em;
  width: 7px; height: 7px;
  transform: rotate(45deg);
  background: var(--rose);
}

/* ============================================================
   reservation CTA
   ============================================================ */
#reserve { background: var(--bg-warm); }
#reserve .inner { text-align: center; }
#reserve .lead {
  font-family: var(--serif);
  font-size: clamp(17px, 2.4vw, 22px);
  letter-spacing: .1em;
  line-height: 2;
  margin-bottom: 10px;
}
#reserve .sub { font-size: 13.5px; color: var(--gray); margin-bottom: 40px; }
.reserve-ch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.reserve-ch .ch {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 30px 28px;
  transition: all .3s;
  position: relative;
}
.reserve-ch .ch:hover { border-color: var(--teal); transform: translateY(-4px); }
.reserve-ch .ch .ch-en {
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.reserve-ch .ch h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .1em;
  margin: 6px 0 10px;
}
.reserve-ch .ch p { font-size: 12.5px; color: var(--gray); line-height: 1.85; }
.reserve-ch .ch .go {
  margin-top: 18px;
  text-align: center;
  display: block;
  font-size: 13px;
  letter-spacing: .16em;
  padding: 11px 0;
  border: 1px solid var(--teal-ink);
  color: var(--teal-ink);
  transition: all .3s;
}
.reserve-ch .ch:hover .go { opacity: 1; }
.reserve-ch .ch .go.line-btn { background: #06c755; border-color: #06c755; color: #fff; }
.reserve-ch .ch .go.ig-btn {
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  border: none; color: #fff;
}
.reserve-ch .ch .badge-soon {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 10px;
  letter-spacing: .14em;
  background: var(--rose-pale);
  color: var(--rose);
  border-radius: 999px;
  padding: 3px 12px;
}
.reserve-note {
  margin-top: 34px;
  font-size: 12.5px;
  color: var(--gray);
}

/* ============================================================
   footer
   ============================================================ */
#pageFooter {
  background: var(--ink);
  color: #cfcbc8;
  padding: 64px 24px 30px;
}
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-logo img { height: 40px; filter: brightness(0) invert(1); }
.footer-logo .en-line {
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 12px;
}
.footer-sns { display: flex; gap: 14px; }
.footer-sns a {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-sns a:hover { border-color: var(--teal); background: rgba(126,190,197,.14); opacity: 1; }
.footer-sns svg { width: 18px; height: 18px; fill: #cfcbc8; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 34px;
  padding: 28px 0;
}
.footer-nav a {
  color: #cfcbc8;
  font-size: 12.5px;
  letter-spacing: .14em;
}
.footer-nav a:hover { color: var(--teal); }

.footer-info {
  text-align: center;
  font-size: 12px;
  letter-spacing: .1em;
  color: #9a9490;
  line-height: 2.1;
}
.copy {
  text-align: center;
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: .24em;
  color: #7d7773;
  margin-top: 22px;
}

/* ============================================================
   fixed CTA bar (lamplight spFootNavi style)
   ============================================================ */
#fixCta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 640px;
  margin: 0 auto;
  border-top: 1px solid rgba(47,43,41,.08);
  box-shadow: 0 -6px 24px rgba(47,43,41,.14);
  /* iPhone home indicator */
  padding-bottom: env(safe-area-inset-bottom, 0px);
  transform: translateY(110%);
  animation: ctaSlideIn .7s cubic-bezier(.22,1,.3,1) .6s forwards;
}
@keyframes ctaSlideIn {
  to { transform: translateY(0); }
}
.fix-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 9px 4px 8px;
  line-height: 1.35;
  transition: filter .25s;
}
.fix-btn:hover { opacity: 1; filter: brightness(.94); }
.fix-btn .fix-ico svg { width: 19px; height: 19px; display: block; }
.fix-btn .fix-t {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
}
.fix-btn .fix-s {
  font-family: var(--cond);
  font-size: 9.5px;
  letter-spacing: .12em;
  opacity: .82;
}
.fix-reserve { background: var(--teal); color: #fff; }
.fix-tel { background: var(--ink); color: #fff; }
.fix-line { background: #06c755; color: #fff; }

/* PC: compact floating bar, right-bottom, pill style */
@media (min-width: 901px) {
  #fixCta {
    left: auto; right: 28px; bottom: 24px;
    grid-template-columns: repeat(3, auto);
    max-width: none;
    border-radius: 999px;
    overflow: hidden;
    border-top: none;
    box-shadow: 0 8px 30px rgba(47,43,41,.22);
  }
  .fix-btn {
    flex-direction: row;
    gap: 8px;
    padding: 13px 26px;
  }
  .fix-btn .fix-t { font-size: 13px; }
  .fix-btn .fix-s { display: none; }
}
/* SP: reserve bottom space so footer text is not hidden */
@media (max-width: 900px) {
  body { padding-bottom: 66px; }
  #pageFooter { padding-bottom: calc(30px + 66px); }
  .hero-scroll { bottom: 84px; }
}

/* ============================================================
   reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s ease, transform 1s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide img { animation: none; }
}

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 900px) {
  .gnav { display: none; }
  .sp-menu-btn { display: block; }
  .logo .logo-pc { display: none; }
  .logo .logo-sp { display: block; }

  .concept-flex, .concept-flex.reverse,
  .service-flex, .service-flex.reverse,
  .staff-flex { flex-direction: column; }
  .staff-photo { flex-basis: auto; width: min(320px, 78%); }
  .features { grid-template-columns: repeat(3, 1fr); }
  .menu-tables { grid-template-columns: 1fr; }
  .banner-2 { grid-template-columns: 1fr 1fr; }
  .banner-2 a { aspect-ratio: 4/3; }
  .access-flex { grid-template-columns: 1fr; }
  .reserve-ch { grid-template-columns: 1fr; }
  .section { padding: 64px 20px; }
  .footer-top { flex-direction: column; }
  .news-item { flex-wrap: wrap; gap: 8px 16px; }
  .car-btn { display: none; }
  .ig-tile { flex-direction: column; text-align: center; padding: 28px 30px; gap: 16px; }
}
@media (max-width: 480px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .hero-copy .hero-features li { font-size: 11px; padding: 5px 12px; }
  .store-info dl { grid-template-columns: 108px 1fr; }
}
