﻿/* =========================================================
  glam hands official site
  色や余白はこのファイル上部のCSS変数で調整できます。
========================================================= */

:root {
  --font-serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", "Times New Roman", serif;
  --font-sans: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --color-white: #fffdf9;
  --color-ivory: #f7f1e8;
  --color-ivory-deep: #efe2d2;
  --color-greige: #8d8176;
  --color-brown: #5c4332;
  --color-brown-dark: #34261f;
  --color-sage: #8d9b82;
  --color-border: rgba(92, 67, 50, 0.14);
  --shadow-soft: 0 22px 60px rgba(52, 38, 31, 0.12);
  --shadow-header: 0 10px 30px rgba(52, 38, 31, 0.08);
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1100px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--color-brown-dark);
  background: var(--color-white);
  font-family: var(--font-sans);
  line-height: 1.8;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

/* 共通レイアウト */
.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--color-ivory);
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--color-sage);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 9.8em;
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-size: clamp(3.6rem, 11vw, 7.8rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-wrap: balance;
}

h2 {
  max-width: 11.5em;
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.7vw, 3rem);
  line-height: 1.42;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.5;
  font-weight: 500;
}

p {
  color: rgba(52, 38, 31, 0.78);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 249, 0.96);
  box-shadow: var(--shadow-header);
}

.header-inner {
  width: min(100% - 28px, var(--container));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 178px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-brown);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.brand-name,
.brand-sub {
  display: block;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.1;
}

.brand-sub {
  color: var(--color-greige);
  font-size: 0.7rem;
  line-height: 1.4;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(52, 38, 31, 0.72);
  font-size: 0.86rem;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--color-brown);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--color-brown);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(52, 38, 31, 0.18);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--color-brown);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* First View */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-height) + 28px) 20px 58px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(34, 24, 20, 0.72), rgba(34, 24, 20, 0.34) 48%, rgba(34, 24, 20, 0.08));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--color-ivory);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  width: min(100%, var(--container));
  margin: 0 auto;
  color: #fff;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.88);
}

.eyebrow {
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
}

.hero-actions,
.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-brown {
  background: var(--color-brown);
  color: #fff;
  box-shadow: 0 14px 30px rgba(52, 38, 31, 0.2);
}

.trust-list {
  width: min(100%, 760px);
  margin: 34px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.trust-list li {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
}

/* Concept */
.concept-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.concept-text {
  padding-top: 8px;
}

.concept-text p:last-child {
  margin-bottom: 0;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.voice-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.82);
  box-shadow: 0 12px 35px rgba(52, 38, 31, 0.05);
}

.feature-card {
  min-height: 245px;
  padding: 28px;
}

.feature-number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--color-sage);
  font-family: var(--font-serif);
  font-size: 1.65rem;
}

/* Menu */
.menu-list {
  display: grid;
  gap: 12px;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
}

.menu-item p {
  margin-bottom: 0;
}

.menu-item span {
  color: var(--color-brown);
  font-weight: 700;
  white-space: nowrap;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  min-height: 235px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-ivory-deep);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 235px;
  object-fit: cover;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-large img {
  min-height: 484px;
}

.gallery-grid figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.88);
  color: var(--color-brown);
  font-size: 0.82rem;
  text-align: center;
}

/* Voice */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.voice-card {
  min-height: 210px;
  padding: 28px;
}

.voice-card p {
  color: var(--color-brown-dark);
  font-size: 1.02rem;
}

.voice-card span {
  color: var(--color-greige);
  font-size: 0.84rem;
}

/* Staff */
.staff-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.staff-photo {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.staff-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.staff-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.staff-list article {
  padding: 18px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.82);
}

.staff-list h3 {
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.5;
  font-weight: 500;
}

.staff-list p {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-brown);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

/* Access */
.access-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: stretch;
}

.shop-info {
  margin: 28px 0 20px;
  display: grid;
  gap: 12px;
}

.shop-info div {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.shop-info dt {
  color: var(--color-greige);
  font-size: 0.88rem;
}

.shop-info dd {
  margin: 0;
}

.route-note {
  margin-bottom: 0;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--color-ivory);
}

.map-box {
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-ivory);
}

.map-box iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* Reserve / Footer */
.reserve-section {
  padding-bottom: 108px;
  background: linear-gradient(180deg, var(--color-white), var(--color-ivory));
}

.reserve-box {
  padding: 46px;
  border-radius: var(--radius-lg);
  background: var(--color-brown);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.reserve-box p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.82);
}

.reserve-actions {
  justify-content: center;
  margin-top: 26px;
}

.reserve-box .btn-brown {
  background: #fff;
  color: var(--color-brown);
}

.site-footer {
  padding: 34px 0;
  background: var(--color-brown-dark);
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #fff;
}

/* スマホ下部固定CTA */
.mobile-fixed-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 1001;
  display: none;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 16px 40px rgba(52, 38, 31, 0.18);
  backdrop-filter: blur(14px);
}

.mobile-fixed-cta a {
  display: grid;
  place-items: center;
  min-height: 46px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.mobile-hotpepper {
  background: var(--color-brown);
}

/* Tablet */
@media (max-width: 920px) {
  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: rgba(255, 253, 249, 0.98);
    box-shadow: var(--shadow-header);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 14px;
    border-radius: 12px;
  }

  .site-nav a:hover {
    background: var(--color-ivory);
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .concept-grid,
  .staff-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Smartphone */
@media (max-width: 640px) {
  :root {
  --font-serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", "Times New Roman", serif;
  --font-sans: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
    --header-height: 68px;
  }

  body {
    padding-bottom: 78px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .header-inner {
    width: min(100% - 24px, var(--container));
  }

  .brand {
    min-width: auto;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-sub {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding: calc(var(--header-height) + 24px) 14px 42px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(34, 24, 20, 0.22), rgba(34, 24, 20, 0.78));
  }

  .hero-media img {
    object-position: 56% center;
  }

  .hero-actions,
  .reserve-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    min-height: 54px;
  }

  .trust-list {
    gap: 8px;
  }

  .trust-list li {
    font-size: 0.78rem;
  }

  .feature-card,
  .voice-card {
    padding: 24px;
  }

  .menu-item {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .menu-item span {
    white-space: normal;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-large {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-large img,
  .gallery-grid img {
    min-height: 300px;
  }

  .shop-info div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .map-box,
  .map-box iframe {
    min-height: 320px;
  }

  .reserve-box {
    padding: 34px 20px;
  }

  .footer-inner {
    display: block;
  }

  .footer-inner p + p {
    margin-top: 6px;
  }

  .mobile-fixed-cta {
    display: grid;
  }
}

/* PREVER-like structure additions */
.notice-strip {
  background: var(--color-brown);
  color: #fff;
}

.notice-strip a {
  width: min(100% - 36px, var(--container));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  font-weight: 700;
}

.notice-strip span {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.section-head.center,
.case-title {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.campaign-card {
  min-height: 250px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 12px 35px rgba(52, 38, 31, 0.05);
}

.campaign-card__text p {
  margin-bottom: 8px;
  color: var(--color-sage);
  font-size: 0.84rem;
  font-weight: 700;
}

.campaign-card__text span {
  color: var(--color-brown);
  font-weight: 700;
}

.campaign-card a,
.menu-select a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--color-brown);
  color: #fff;
  font-weight: 700;
}

.menu-select {
  margin: -10px 0 28px;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.menu-select span {
  margin-right: auto;
  color: var(--color-sage);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.case-section {
  background: var(--color-white);
}

.case-title {
  max-width: 700px;
  margin-bottom: 34px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.case-grid a {
  min-height: 92px;
  padding: 16px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-ivory);
  color: var(--color-brown);
  font-weight: 700;
  text-align: center;
}

@media (max-width: 920px) {
  .campaign-grid,
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  h1 {
  max-width: 9.8em;
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-size: clamp(3.6rem, 11vw, 7.8rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-wrap: balance;
}

  .notice-strip a {
    min-height: 74px;
    flex-direction: column;
    gap: 8px;
    font-size: 0.94rem;
  }

  .campaign-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .menu-select {
    display: grid;
  }

  .menu-select span {
    margin-right: 0;
  }
}



/* Smartphone FV text tuning */
@media (max-width: 640px) {
  .hero {
    min-height: 88svh;
    padding: calc(var(--header-height) + 18px) 18px 104px;
    align-items: end;
  }

  .hero-content {
    width: 100%;
    max-width: 360px;
    margin-left: 0;
    padding-bottom: 4px;
  }

  .hero-content .eyebrow {
    max-width: 16rem;
    margin-bottom: 10px;
    font-size: 0.68rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }

  .hero-content h1 {
  max-width: 9.8em;
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-size: clamp(3.6rem, 11vw, 7.8rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-wrap: balance;
}

  .hero-lead {
    max-width: 18rem;
    margin-bottom: 22px;
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .hero-actions {
    max-width: 310px;
  }

  .trust-list {
    max-width: 340px;
    margin-top: 24px;
    gap: 8px;
  }

  .trust-list li {
    padding: 7px 10px;
    font-size: 0.76rem;
    line-height: 1.45;
  }
}

@media (max-width: 360px) {
  .hero-content h1 {
  max-width: 9.8em;
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-size: clamp(3.6rem, 11vw, 7.8rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-wrap: balance;
}

  .hero-lead {
    font-size: 0.92rem;
  }
}

.menu-item__reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--color-brown);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.menu-item__reserve:hover {
  background: var(--color-brown-dark);
}

@media (max-width: 640px) {
  .menu-item__reserve {
    width: 100%;
    min-height: 48px;
  }
}


.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.voice-more-link {
  margin-top: 2px;
}


.staff-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.staff-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.86);
  box-shadow: var(--shadow-soft);
}

.staff-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.staff-card div {
  padding: 24px;
}

.staff-role {
  margin-bottom: 6px;
  color: var(--color-sage);
  font-size: 0.82rem;
  font-weight: 700;
}

.staff-card p:last-child {
  margin-bottom: 0;
}

.staff-link-wrap {
  margin-top: 26px;
  text-align: center;
}

@media (max-width: 640px) {
  .staff-card-grid {
    grid-template-columns: 1fr;
  }

  .staff-card div {
    padding: 22px;
  }
}

/* Typography refinement */
.hero-content h1,
.hero-content .hero-lead,
.section-head,
.case-title,
.reserve-box {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.hero-content .hero-lead {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.concept-grid h2,
.access-grid h2 {
  max-width: 11.5em;
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.7vw, 3rem);
  line-height: 1.42;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-wrap: balance;
}

.reserve-box h2,
.reserve-box .section-kicker {
  color: #fff;
}

@media (max-width: 640px) {
  h2 {
  max-width: 11.5em;
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.7vw, 3rem);
  line-height: 1.42;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-wrap: balance;
}

  .section-head,
  .case-title {
    margin-bottom: 30px;
  }
}


/* Final typography polish */
body {
  font-family: var(--font-sans);
}

h1,
h2,
h3,
.brand-name,
.footer-brand,
.feature-number {
  font-family: var(--font-serif);
}

h1 {
  max-width: 9.8em;
  margin-bottom: 20px;
  font-size: clamp(3.6rem, 10vw, 7.4rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-wrap: balance;
}

h2 {
  max-width: 12em;
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-wrap: balance;
}

h3 {
  font-weight: 500;
  letter-spacing: 0.02em;
}

.section-head {
  max-width: 760px;
}

.section-head.center,
.case-title {
  max-width: 780px;
}

.hero-lead {
  max-width: 620px;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.reserve-box p {
  max-width: 720px;
}

@media (max-width: 640px) {
  h1,
  .hero-content h1 {
    max-width: 8.6em;
    margin-bottom: 14px;
    font-size: clamp(3rem, 15vw, 4.1rem);
    line-height: 1.1;
    letter-spacing: 0.035em;
  }

  h2 {
    max-width: 12em;
    font-size: clamp(1.72rem, 7.6vw, 2.35rem);
    line-height: 1.48;
  }

  .hero-lead,
  .hero-content .hero-lead {
    max-width: 18rem;
    margin-bottom: 22px;
    font-size: 0.98rem;
    line-height: 1.75;
  }
}

@media (max-width: 360px) {
  h1,
  .hero-content h1 {
    font-size: clamp(2.65rem, 14vw, 3.25rem);
  }
}

/* FV recreated from provided visual, with SEO text kept in HTML */
.hero-recreated {
  min-height: 100svh;
  padding: calc(var(--header-height) + 34px) 0 0;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: stretch;
  background: var(--color-ivory);
}

.hero-recreated::after {
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.96) 0%, rgba(255, 253, 249, 0.88) 27%, rgba(255, 253, 249, 0.32) 48%, rgba(255, 253, 249, 0.02) 68%),
    linear-gradient(180deg, rgba(52, 38, 31, 0.02), rgba(52, 38, 31, 0.12));
}

.hero-recreated .hero-media img {
  object-position: center center;
  filter: saturate(0.96) contrast(0.98) brightness(1.03);
}

.hero-panel {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 44px 0 190px;
  color: var(--color-brown);
}

.hero-area {
  margin: 0 0 20px 88px;
  color: var(--color-brown);
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.hero-logo-line {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
}

.hero-logo-line img {
  width: clamp(64px, 7vw, 92px);
  height: clamp(64px, 7vw, 92px);
  border-radius: 50%;
  object-fit: cover;
}

.hero-shop-name {
  margin: 0;
  color: var(--color-brown);
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0.03em;
}

.hero-shop-sub {
  margin: 12px 0 0;
  color: var(--color-brown);
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  letter-spacing: 0.18em;
}

.hero-recreated .hero-content {
  width: auto;
  max-width: 540px;
  margin: 0;
  color: var(--color-brown);
}

.hero-recreated .hero-content p {
  color: var(--color-brown);
}

.hero-recreated .eyebrow {
  display: none;
}

.hero-recreated h1 {
  max-width: 8.5em;
  color: var(--color-brown);
  font-size: clamp(3.6rem, 6.4vw, 6.35rem);
  line-height: 1.28;
  letter-spacing: 0.13em;
  text-shadow: none;
}

.hero-recreated .hero-lead {
  margin-bottom: 30px;
  color: var(--color-brown);
  font-size: clamp(1.16rem, 1.8vw, 1.55rem);
  line-height: 2;
  letter-spacing: 0.12em;
}

.hero-recreated .btn-brown {
  min-width: min(100%, 430px);
  min-height: 70px;
  padding: 0 34px;
  border: 2px solid rgba(255, 253, 249, 0.9);
  background: var(--color-brown);
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  box-shadow: 0 14px 38px rgba(52, 38, 31, 0.28);
}

.hero-round-gallery {
  position: absolute;
  right: max(38px, calc((100vw - var(--container)) / 2));
  bottom: 104px;
  z-index: 2;
  display: flex;
  gap: 20px;
}

.hero-round-gallery img {
  width: clamp(132px, 13.2vw, 190px);
  aspect-ratio: 1;
  border: 3px solid rgba(255, 253, 249, 0.92);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 16px 35px rgba(52, 38, 31, 0.24);
}

.hero-recreated .trust-list {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0;
  padding: 26px max(22px, calc((100vw - var(--container)) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(92, 67, 50, 0.72);
  backdrop-filter: blur(12px);
}

.hero-recreated .trust-list li {
  min-height: 92px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-right: 1px solid rgba(255, 253, 249, 0.34);
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  line-height: 1.8;
  text-align: left;
}

.hero-recreated .trust-list li:last-child {
  border-right: 0;
}

.hero-recreated .trust-list strong {
  color: #e8d28a;
  font-size: 1.7em;
  font-weight: 500;
  line-height: 1.15;
}

.trust-icon {
  flex: 0 0 auto;
  width: clamp(56px, 5.8vw, 78px);
  height: clamp(56px, 5.8vw, 78px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 253, 249, 0.72);
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
}

@media (max-width: 920px) {
  .hero-recreated {
    min-height: auto;
    padding-top: var(--header-height);
  }

  .hero-recreated::after {
    background:
      linear-gradient(180deg, rgba(255, 253, 249, 0.94) 0%, rgba(255, 253, 249, 0.84) 42%, rgba(255, 253, 249, 0.08) 72%),
      linear-gradient(180deg, rgba(52, 38, 31, 0), rgba(52, 38, 31, 0.38));
  }

  .hero-panel {
    width: min(100% - 28px, var(--container));
    padding: 40px 0 300px;
  }

  .hero-area {
    margin-left: 0;
  }

  .hero-logo-line {
    gap: 16px;
    margin-bottom: 30px;
  }

  .hero-recreated h1 {
    font-size: clamp(3.05rem, 13vw, 4.8rem);
    line-height: 1.22;
    letter-spacing: 0.08em;
  }

  .hero-recreated .hero-lead {
    font-size: 1.06rem;
    letter-spacing: 0.06em;
  }

  .hero-round-gallery {
    right: 16px;
    bottom: 172px;
    gap: 10px;
  }

  .hero-round-gallery img {
    width: clamp(88px, 28vw, 128px);
    border-width: 2px;
  }

  .hero-recreated .trust-list {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px 14px;
  }

  .hero-recreated .trust-list li {
    min-height: 74px;
    padding: 10px 8px;
    justify-content: flex-start;
    gap: 10px;
    border-right: 0;
    font-size: 0.84rem;
  }

  .hero-recreated .trust-list strong {
    font-size: 1.35em;
  }

  .trust-icon {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .hero-recreated {
    padding-top: var(--header-height);
  }

  .hero-recreated .hero-media img {
    object-position: 58% center;
  }

  .hero-panel {
    max-width: 360px;
    margin-left: 14px;
    padding: 32px 0 270px;
  }

  .hero-logo-line img {
    width: 56px;
    height: 56px;
  }

  .hero-shop-name {
    font-size: clamp(2.45rem, 13vw, 3.2rem);
  }

  .hero-shop-sub {
    margin-top: 6px;
    font-size: 0.86rem;
  }

  .hero-recreated .btn-brown {
    min-width: 0;
    min-height: 58px;
    font-size: 1.02rem;
  }

  .hero-round-gallery {
    bottom: 156px;
  }
}

/* Static FV image */
.fv-image-hero {
  padding-top: var(--header-height);
  background: var(--color-ivory);
}

.fv-image-wrap {
  position: relative;
  width: 100%;
  max-width: 1448px;
  margin: 0 auto;
  background: var(--color-ivory);
}

.fv-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.fv-hotpepper-link {
  position: absolute;
  left: 4.5%;
  top: 66.25%;
  width: 35.9%;
  height: 8.5%;
  border-radius: 999px;
  z-index: 2;
}

.fv-hotpepper-link:focus-visible {
  outline: 3px solid rgba(232, 210, 138, 0.95);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  .fv-image-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .fv-image-wrap img {
    min-width: 760px;
  }
}

@media (max-width: 640px) {
  .fv-image-hero {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .fv-image-wrap {
    width: 760px;
    max-width: none;
  }

  .fv-image-wrap img {
    min-width: 0;
  }
}

/* Final responsive layout polish: PC and smartphone */
.fv-image-hero {
  padding-top: var(--header-height);
  overflow: hidden;
  background: var(--color-ivory);
}

.fv-image-wrap {
  position: relative;
  width: min(100%, 1448px);
  max-width: 1448px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--color-ivory);
}

.fv-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  min-width: 0;
}

.fv-hotpepper-link {
  left: 4.5%;
  top: 66.2%;
  width: 35.8%;
  height: 8.6%;
}

.notice-strip a {
  min-height: 78px;
  gap: 22px;
  font-family: var(--font-serif);
  letter-spacing: 0.04em;
}

.notice-strip span {
  white-space: nowrap;
}

.section-head,
.case-title {
  max-width: 780px;
}

.section-head.center,
.case-title {
  text-align: center;
}

.section-head.center h2,
.case-title h2 {
  margin-right: auto;
  margin-left: auto;
}

.section-head p,
.case-title p {
  max-width: 680px;
  line-height: 2;
}

.section-head.center p,
.case-title p {
  margin-right: auto;
  margin-left: auto;
}

.concept-grid h2,
.access-grid h2 {
  max-width: 13em;
}

.concept-text {
  max-width: 650px;
}

.concept-text p,
.route-note,
.staff-card p,
.voice-card p,
.feature-card p,
.menu-item p {
  line-height: 1.95;
}

.campaign-card h3,
.menu-item h3,
.staff-card h3 {
  line-height: 1.55;
}

.menu-item {
  grid-template-columns: minmax(0, 1fr) minmax(104px, auto) minmax(168px, auto);
  gap: 18px;
}

.menu-item__reserve {
  min-width: 168px;
}

.reserve-box h2 {
  margin-right: auto;
  margin-left: auto;
}

.reserve-box p {
  line-height: 2;
}

@media (min-width: 1449px) {
  .fv-image-hero {
    background: linear-gradient(90deg, var(--color-ivory), var(--color-white), var(--color-ivory));
  }
}

@media (max-width: 920px) {
  .site-nav {
    font-size: 0.92rem;
  }

  .section-head,
  .case-title {
    max-width: 680px;
  }

  .menu-item {
    grid-template-columns: 1fr;
  }

  .menu-item__reserve {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .fv-image-hero {
    padding-top: var(--header-height);
    overflow: hidden;
  }

  .fv-image-wrap {
    width: 760px;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    overflow: hidden;
  }

  .fv-image-wrap img {
    width: 760px;
    min-width: 0;
  }

  .fv-hotpepper-link {
    left: 4.5%;
    top: 66.2%;
    width: 35.8%;
    height: 8.6%;
  }

  .notice-strip a {
    min-height: 70px;
    padding: 12px 0;
    display: grid;
    gap: 8px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .notice-strip span {
    padding: 7px 13px;
    font-size: 0.76rem;
  }

  .section {
    padding: 62px 0;
  }

  .section-head,
  .case-title {
    max-width: 100%;
    margin-bottom: 28px;
  }

  h2 {
    max-width: 12em;
    margin-bottom: 16px;
    font-size: clamp(1.75rem, 7.3vw, 2.28rem);
    line-height: 1.48;
  }

  .section-head p,
  .case-title p,
  .concept-text p,
  .feature-card p,
  .menu-item p,
  .voice-card p,
  .staff-card p,
  .route-note,
  .reserve-box p {
    font-size: 0.95rem;
    line-height: 1.9;
  }

  .concept-grid,
  .access-grid {
    gap: 28px;
  }

  .campaign-card,
  .feature-card,
  .voice-card,
  .staff-card div,
  .menu-item {
    padding: 22px;
  }

  .menu-select {
    margin-bottom: 22px;
    padding: 16px;
  }

  .case-grid a {
    min-height: 76px;
  }

  .reserve-box {
    padding: 34px 20px;
  }
}

@media (max-width: 390px) {
  .fv-image-wrap,
  .fv-image-wrap img {
    width: 720px;
  }
}

/* FV picture switch: PC full width / SP optimized */
.fv-image-hero {
  padding-top: var(--header-height);
  overflow: hidden;
  background: var(--color-ivory);
}

.fv-image-wrap {
  position: relative;
  width: 100vw;
  max-width: none;
  margin: 0;
  overflow: hidden;
  background: var(--color-ivory);
}

.fv-image-wrap picture,
.fv-image-wrap img {
  display: block;
  width: 100%;
}

.fv-image-wrap img {
  height: auto;
  min-width: 0;
}

.fv-hotpepper-link {
  left: 4.45%;
  top: 66.25%;
  width: 35.9%;
  height: 8.55%;
}

.menu-item__reserve {
  min-width: 176px;
}

@media (max-width: 640px) {
  .fv-image-hero {
    overflow: hidden;
  }

  .fv-image-wrap {
    width: 100vw;
    max-width: none;
    margin: 0;
    overflow: hidden;
  }

  .fv-image-wrap picture,
  .fv-image-wrap img {
    width: 100%;
  }

  .fv-hotpepper-link {
    left: 13.5%;
    top: 60.55%;
    width: 73%;
    height: 6.25%;
  }

  .menu-item__reserve {
    min-width: 0;
  }
}

/* Access details and line-break stability */
.nowrap {
  white-space: nowrap;
}

h1,
h2,
h3,
.section-head,
.case-title,
.reserve-box {
  word-break: normal;
  overflow-wrap: normal;
  line-break: strict;
}

.section-head h2,
.case-title h2,
.salon-detail-head h2,
.reserve-box h2 {
  margin-right: auto;
  margin-left: 0;
}

.section-head.center h2,
.case-title h2,
.salon-detail-head h2,
.reserve-box h2 {
  margin-right: auto;
  margin-left: auto;
}

.salon-detail {
  margin-top: 46px;
}

.salon-detail-head {
  max-width: 760px;
  margin-bottom: 26px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

.salon-detail-head h2 {
  max-width: 12em;
}

.salon-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.salon-detail-card {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 12px 35px rgba(52, 38, 31, 0.05);
}

.salon-detail-card-wide {
  grid-column: 1 / -1;
}

.salon-detail-card h3 {
  margin-bottom: 16px;
}

.salon-detail-card dl {
  margin: 0;
  display: grid;
  gap: 10px;
}

.salon-detail-card dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

.salon-detail-card dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.salon-detail-card dt {
  color: var(--color-greige);
  font-size: 0.88rem;
}

.salon-detail-card dd {
  margin: 0;
}

.salon-detail-card p {
  line-height: 1.95;
}

.detail-note {
  margin-bottom: 0;
  color: var(--color-greige);
  font-size: 0.88rem;
}

.condition-tags {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.condition-tags li {
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-ivory);
  color: var(--color-brown);
  font-size: 0.88rem;
}

@media (min-width: 921px) {
  #features .section-head h2 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .nowrap {
    white-space: normal;
  }

  .salon-detail {
    margin-top: 34px;
  }

  .salon-detail-grid {
    grid-template-columns: 1fr;
  }

  .salon-detail-card {
    padding: 22px;
  }

  .salon-detail-card dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .condition-tags {
    gap: 8px;
  }

  .condition-tags li {
    font-size: 0.82rem;
  }
}

.reserve-box h2 span {
  display: inline-block;
  white-space: nowrap;
}

.reserve-box h2 span + span {
  margin-left: 0.18em;
}

@media (max-width: 640px) {
  .reserve-box h2 span {
    display: block;
    white-space: normal;
  }

  .reserve-box h2 span + span {
    margin-left: 0;
  }
}
