@charset "UTF-8";
/* ============================================================
   feuille hair salon  -  style.css  (rev.2)
   ダイナミック / 余白圧縮 / フルブリード / 浮き上がる画像
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  --color-base:        #F8F6F1;
  --color-base-light:  #FFFDF8;
  --color-base-deep:   #F1ECE3;
  --color-main:        #7F8B70;
  --color-main-dark:   #5F6E53;
  --color-main-soft:   #A4AD96;
  --color-text:        #2B2622;
  --color-text-soft:   #5F5750;
  --color-border:      #D8D0C3;
  --color-muted:       #ECE5DA;
  --color-white:       #FFFFFF;
  --color-line:        #DCD6CC;
  --color-line-green:  #06C755;

  --font-serif-ja: "Noto Serif JP", "Yu Mincho", serif;
  --font-sans-ja:  "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-en:       "Cormorant Garamond", "Libre Baskerville", serif;

  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);

  --header-h: 84px;
  --content-w: 1320px;
  --gutter: clamp(18px, 3.4vw, 48px);
  --sec: clamp(58px, 7.5vw, 112px);

  --radius: 12px;
  --shadow-card: 0 24px 58px rgba(43,38,34,0.17);
  --shadow-soft: 0 16px 38px rgba(43,38,34,0.11);
  --leaf: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 44'%3E%3Cg fill='none' stroke='%23A4AD96' stroke-width='1.1' stroke-linecap='round'%3E%3Cpath d='M20 42 C20 28 24 16 33 7'/%3E%3Cpath d='M25 24 C29 22 32 17 32 12'/%3E%3Cpath d='M22 30 C27 29 30 25 31 19'/%3E%3Cpath d='M21 18 C25 17 29 13 30 9'/%3E%3C/g%3E%3C/svg%3E");
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font-sans-ja); color: var(--color-text);
  background: var(--color-base); line-height: 1.9; letter-spacing: 0.02em;
  font-size: 15px; font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1,h2,h3,h4 { margin: 0; font-weight: 500; font-style: normal; }
p { margin: 0; }

/* ---------- 3. Utilities ---------- */
.wrap { width: 100%; max-width: var(--content-w); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-wide { width: 100%; max-width: 1560px; margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--sec); }
.is-pc { display: block; }
.is-sp { display: none; }

.eyebrow {
  font-family: var(--font-en); font-size: 14px; letter-spacing: 0.26em;
  color: var(--color-main-dark); display: inline-block; font-style: italic; font-weight: 500;
}
.section-title {
  font-family: var(--font-serif-ja); font-weight: 500;
  font-size: clamp(21px, 2.8vw, 33px); letter-spacing: 0.12em; text-align: center; line-height: 1.5;
}
.lead { color: var(--color-text-soft); line-height: 2; letter-spacing: 0.03em; }

/* ---------- 4. Buttons ---------- */
.btn {
  --bg: var(--color-main); --fg: #fff;
  position: relative; overflow: hidden; z-index: 0;
  display: inline-flex; align-items: center; justify-content: center; gap: .7em;
  min-height: 54px; padding: 0 30px; background: var(--bg); color: var(--fg);
  font-size: 14px; letter-spacing: 0.12em; border: 1px solid var(--bg); border-radius: 6px;
  transition: color .35s var(--ease-out), border-color .35s var(--ease-out), box-shadow .35s var(--ease-out), transform .35s var(--ease-out);
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--color-main-dark); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.btn:hover::before { transform: scaleX(1); }
.btn:hover { box-shadow: 0 12px 26px rgba(95,110,83,0.30); transform: translateY(-2px); }
.btn .arrow { transition: transform .3s var(--ease-out); }
.btn:hover .arrow { transform: translateX(5px); }

.btn--outline { --bg: transparent; --fg: var(--color-text); border-color: var(--color-border); }
.btn--outline::before { background: var(--color-main); }
.btn--outline:hover { color: #fff; border-color: var(--color-main); }
.btn--line { --bg: var(--color-line-green); --fg: #fff; }
.btn--line::before { background: #05a948; }
.btn--line:hover { box-shadow: 0 12px 26px rgba(6,199,85,0.30); }
.btn--line .ic { font-weight: 700; }

.txtlink {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: 13.5px; letter-spacing: 0.14em; color: var(--color-text); position: relative;
}
.txtlink::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px;
  background: var(--color-main-dark); transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.txtlink .arrow { transition: transform .3s var(--ease-out); }
.txtlink:hover::after { transform: scaleX(1); }
.txtlink:hover .arrow { transform: translateX(5px); }

/* circular arrow button */
.circ {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  border: 1px solid var(--color-border); color: var(--color-main-dark);
  display: inline-flex; align-items: center; justify-content: center; font-size: 14px;
  background: rgba(255,255,255,0.6);
  transition: background .3s var(--ease-out), color .3s var(--ease-out), transform .3s var(--ease-out);
}

/* ---------- 5. Reveal / images ---------- */
.js-fade { opacity: 1; transform: none; }
html.js-ready .js-fade {
  opacity: 0; transform: translateY(38px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out), box-shadow 1s var(--ease-out);
}
html.js-ready .js-fade.is-visible { opacity: 1; transform: none; }
html.js-ready .js-fade[data-delay="1"] { transition-delay: .1s; }
html.js-ready .js-fade[data-delay="2"] { transition-delay: .2s; }
html.js-ready .js-fade[data-delay="3"] { transition-delay: .3s; }
html.js-ready .js-fade[data-delay="4"] { transition-delay: .4s; }
html.js-ready .js-fade[data-delay="5"] { transition-delay: .5s; }

.imgwrap {
  overflow: hidden; position: relative; border-radius: var(--radius);
  box-shadow: var(--shadow-card); background: var(--color-muted);
}
.imgwrap img { transition: transform .9s var(--ease-out); width: 100%; height: 100%; object-fit: cover; }
.imgwrap:hover img { transform: scale(1.05); }
html.js-ready .imgwrap.js-fade {
  opacity: 0; transform: translateY(42px) scale(0.98);
  clip-path: inset(14% 0 0 0 round var(--radius));
  box-shadow: 0 0 0 rgba(43,38,34,0);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out), box-shadow 1.2s var(--ease-out), clip-path 1.1s var(--ease-out);
}
html.js-ready .imgwrap.js-fade.is-visible {
  opacity: 1; transform: none; clip-path: inset(0 0 0 0 round var(--radius)); box-shadow: var(--shadow-card);
}
.imgwrap--flush { border-radius: 0; box-shadow: none; }
html.js-ready .imgwrap--flush.js-fade { box-shadow: none; clip-path: inset(14% 0 0 0); }
html.js-ready .imgwrap--flush.js-fade.is-visible { box-shadow: none; clip-path: inset(0 0 0 0); }

/* ---------- 6. Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 100;
  display: flex; align-items: center; background: transparent;
  transition: background .35s var(--ease-out), border-color .35s var(--ease-out), box-shadow .35s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(255,255,255,0.88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(216,208,195,0.6); box-shadow: 0 2px 18px rgba(43,38,34,0.04);
}
.header__inner {
  width: 100%; max-width: 1560px; margin-inline: auto;
  padding-inline: clamp(20px, 3.2vw, 48px); display: flex; align-items: center; justify-content: space-between;
}
.logo { line-height: 1; }
.logo__name { font-family: var(--font-en); font-size: 32px; letter-spacing: 0.02em; color: var(--color-text); font-weight: 500; }
.logo__sub { display: block; font-family: var(--font-en); font-size: 10px; letter-spacing: 0.42em; color: var(--color-text-soft); margin-top: 2px; padding-left: 4px; }
.gnav { display: flex; align-items: center; gap: clamp(16px, 1.8vw, 30px); }
.gnav__item { font-size: 13px; letter-spacing: 0.1em; color: var(--color-text); position: relative; padding-block: 6px; transition: color .3s; }
.gnav__item::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--color-main-dark); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease-out); }
.gnav__item:hover { color: var(--color-main-dark); }
.gnav__item:hover::after, .gnav__item.is-current::after { transform: scaleX(1); }
.gnav__cta { min-height: 42px; padding: 0 24px; background: var(--color-main); color: #fff; font-size: 13px; letter-spacing: 0.1em; display: inline-flex; align-items: center; border-radius: 6px; transition: background .3s, box-shadow .3s; }
.gnav__cta:hover { background: var(--color-main-dark); box-shadow: 0 8px 20px rgba(95,110,83,0.3); }

.hamburger { display: none; width: 44px; height: 44px; position: relative; z-index: 120; }
.hamburger span { position: absolute; left: 10px; right: 10px; height: 1.5px; background: var(--color-text); transition: transform .35s var(--ease-out), opacity .25s; }
.hamburger span:nth-child(1) { top: 16px; } .hamburger span:nth-child(2) { top: 22px; } .hamburger span:nth-child(3) { top: 28px; }
.hamburger.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 110; background: var(--color-base-light);
  padding: calc(var(--header-h) + 24px) var(--gutter) 40px;
  display: flex; flex-direction: column; opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), visibility .35s; overflow-y: auto;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.drawer__nav { display: flex; flex-direction: column; gap: 2px; }
.drawer__item { font-family: var(--font-serif-ja); font-size: 20px; letter-spacing: 0.08em; padding: 14px 4px; border-bottom: 1px solid var(--color-line); display: flex; align-items: baseline; gap: 12px; }
.drawer__item .en { font-family: var(--font-en); font-size: 12px; letter-spacing: .2em; color: var(--color-main-dark); }
.drawer__foot { margin-top: auto; padding-top: 26px; display: flex; flex-direction: column; gap: 12px; }

/* ---------- 7. Hero ---------- */
.hero { position: relative; height: clamp(620px, 94vh, 820px); min-height: 580px; overflow: hidden; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide { position: absolute; inset: 0; opacity: 0; z-index: 0; transition: opacity 1.8s var(--ease-out); }
.hero__slide.is-active { opacity: 1; z-index: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 9s ease-out; will-change: transform; }
.hero__slide.is-active img { transform: scale(1.12); }
.hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(90deg, rgba(248,246,241,0.97) 0%, rgba(248,246,241,0.94) 36%, rgba(248,246,241,0.7) 52%, rgba(248,246,241,0.32) 70%, rgba(248,246,241,0.08) 86%, rgba(248,246,241,0) 98%);
}
.hero__inner {
  position: relative; z-index: 3; height: 100%; max-width: 1560px; margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 96px); display: flex; flex-direction: column; justify-content: center;
}
.hero__copy { max-width: 520px; position: relative; z-index: 0; }
.hero__title { font-family: var(--font-serif-ja); font-weight: 500; font-size: clamp(34px, 5vw, 62px); line-height: 1.4; letter-spacing: 0.06em; color: var(--color-text); }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line span { display: block; transform: translateY(110%); }
.hero__sub { margin-top: 28px; font-size: clamp(15px, 1.3vw, 18px); line-height: 2.1; letter-spacing: 0.06em; color: var(--color-text-soft); }
.hero__btns { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero__dots { position: absolute; left: clamp(24px, 5vw, 96px); bottom: 48px; z-index: 4; display: flex; gap: 10px; }
.hero__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(95,110,83,0.3); transition: background .3s, transform .3s; }
.hero__dot.is-active { background: var(--color-main-dark); transform: scale(1.25); }
.hero[data-loaded="true"] .hero__title .line span { animation: maskUp 1s var(--ease-out) forwards; }
.hero[data-loaded="true"] .hero__title .line:nth-child(1) span { animation-delay: .25s; }
.hero[data-loaded="true"] .hero__title .line:nth-child(2) span { animation-delay: .4s; }
.hero[data-loaded="true"] .hero__sub, .hero[data-loaded="true"] .hero__btns, .hero[data-loaded="true"] .hero__dots { opacity: 0; animation: fadeUp .9s var(--ease-out) forwards; }
.hero[data-loaded="true"] .hero__sub { animation-delay: .6s; }
.hero[data-loaded="true"] .hero__btns { animation-delay: .75s; }
.hero[data-loaded="true"] .hero__dots { animation-delay: .9s; }
@keyframes maskUp { from { transform: translateY(110%); } to { transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- 8. Statement (full-bleed image + left gradient text) ---------- */
.statement { position: relative; min-height: clamp(230px, 26vw, 360px); display: flex; align-items: center; overflow: hidden; }
.statement__bg { position: absolute; inset: 0; }
.statement__bg img { width: 100%; height: 100%; object-fit: cover; }
.statement__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(248,246,241,0.97) 0%, rgba(248,246,241,0.9) 28%, rgba(248,246,241,0.5) 56%, rgba(248,246,241,0.05) 100%);
}
.statement__inner { position: relative; z-index: 2; width: 100%; max-width: 1560px; margin-inline: auto; padding-inline: clamp(24px, 5vw, 96px); }
.statement__copy { max-width: 680px; }
.statement__title { font-family: var(--font-serif-ja); font-weight: 500; font-size: clamp(22px, 2.8vw, 38px); line-height: 1.6; letter-spacing: 0.06em; }
.statement__text { margin-top: 28px; font-size: clamp(14px, 1.05vw, 16px); }
.statement__text p + p { margin-top: 1.2em; }

/* ---------- 9. Salon Atmosphere (full-height images, text between) ---------- */
.atmosphere { padding: 0; background: var(--color-base); }
.atmosphere__grid { display: grid; grid-template-columns: 1.2fr 0.82fr 1fr; gap: 10px; min-height: clamp(440px, 48vw, 660px); padding: 10px; }
.atmosphere__img-l { height: 100%; }
.atmosphere__text { display: flex; flex-direction: column; justify-content: center; padding: clamp(8px, 1.6vw, 28px); }
.atmosphere__title { font-family: var(--font-serif-ja); font-weight: 500; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.7; letter-spacing: 0.08em; }
.atmosphere__text p { margin-top: 22px; }
.atmosphere__text .txtlink { margin-top: 30px; }
.atmosphere__img-r { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; height: 100%; }
.atmosphere__img-r .imgwrap { height: 100%; }
/* fade slideshow inside image slots */
.ss { position: relative; }
.ss-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s var(--ease-out); }
.ss-slide.is-active { opacity: 1; }
.ss-slide img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 10. Hair Concern (one row, watercolor + leaf) ---------- */
.concern { background: linear-gradient(180deg, var(--color-base) 0%, var(--color-base-deep) 100%); text-align: center; padding-block: clamp(34px, 4vw, 60px); }
.concern__tags { margin-top: 28px; display: flex; justify-content: center; flex-wrap: nowrap; gap: clamp(6px, 1.2vw, 22px); }
.concern__tag {
  flex: 1 1 0; max-width: 220px; min-width: 0;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 30px 8px 34px; position: relative; transition: transform .4s var(--ease-out);
}
.concern__tag::before {
  content: ""; position: absolute; inset: 6px;
  background: radial-gradient(ellipse at 50% 45%, rgba(164,173,150,0.20), rgba(164,173,150,0.06) 68%, transparent);
  border-radius: 52% 48% 50% 50% / 52% 50% 50% 48%; transition: background .4s var(--ease-out); z-index: 0;
}
.concern__tag::after { content: ""; position: absolute; right: 14%; bottom: 2px; width: 28px; height: 32px; background: var(--leaf) no-repeat center/contain; opacity: .65; z-index: 1; }
.concern__tag:hover { transform: translateY(-4px); }
.concern__tag:hover::before { background: radial-gradient(ellipse at 50% 45%, rgba(127,139,112,0.3), rgba(127,139,112,0.1) 68%, transparent); }
.concern__tag > span { position: relative; z-index: 2; }
.concern__tag .name { font-family: var(--font-serif-ja); font-size: clamp(15px, 1.4vw, 19px); letter-spacing: 0.05em; white-space: nowrap; }
.concern__tag .desc { font-size: 11px; color: var(--color-text-soft); line-height: 1.7; }
.concern__note { margin-top: 26px; line-height: 1.95; }

/* ---------- 11. Signature ---------- */
.signature { background: linear-gradient(180deg, var(--color-base-deep) 0%, var(--color-base) 100%); }
.signature__grid { display: grid; grid-template-columns: 0.82fr 1.15fr 1.35fr; gap: clamp(16px, 1.8vw, 26px); align-items: stretch; }
.signature__lead { display: flex; flex-direction: column; justify-content: center; }
.signature__lead .eyebrow { margin-bottom: 12px; }
.signature__lead h2 { font-family: var(--font-serif-ja); font-weight: 500; font-size: clamp(22px, 2.2vw, 30px); line-height: 1.55; letter-spacing: 0.08em; word-break: keep-all; }
.signature__lead p { margin-top: 22px; font-size: 13.5px; color: var(--color-text-soft); line-height: 2; }
.signature__lead .txtlink { margin-top: 28px; }

.feature-card { position: relative; display: flex; align-items: flex-end; min-height: 420px; overflow: hidden; color: #fff; border-radius: var(--radius); box-shadow: var(--shadow-card); }
.feature-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.feature-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(43,38,34,0) 28%, rgba(43,38,34,0.68) 100%); }
.feature-card:hover img { transform: scale(1.05); }
.feature-card__body { position: relative; z-index: 2; padding: clamp(24px, 2.4vw, 38px); }
.feature-card .badge { display: inline-block; font-size: 11px; letter-spacing: .16em; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.4); padding: 4px 12px; margin-bottom: 14px; backdrop-filter: blur(2px); border-radius: 4px; }
.feature-card h3 { font-family: var(--font-serif-ja); font-size: clamp(24px, 2.6vw, 32px); letter-spacing: .1em; }
.feature-card p { margin-top: 12px; font-size: 13px; line-height: 1.9; opacity: .92; }

.menu-mini { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; gap: clamp(12px, 1.2vw, 16px); }
.mini-card {
  position: relative; display: flex; gap: 11px; align-items: center;
  background: linear-gradient(150deg, #FFFDF8 0%, #EFE9DE 100%);
  border-radius: var(--radius); padding: 15px; box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.mini-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(43,38,34,0.12); }
.mini-card .imgwrap { width: 60px; height: 54px; flex: none; box-shadow: none; }
.mini-card__body { flex: 1; min-width: 0; }
.mini-card__body h4 { font-family: var(--font-serif-ja); font-size: 15.5px; letter-spacing: .04em; white-space: nowrap; }
.mini-card__body p { font-size: 11px; color: var(--color-text-soft); line-height: 1.65; margin-top: 4px; }
.mini-card .circ { width: 30px; height: 30px; font-size: 11px; }
.mini-card:hover .circ { background: var(--color-main); color: #fff; transform: translateX(3px); }
.mini-card--wide { grid-column: 1 / -1; }
.mini-card--wide .imgwrap { width: 110px; height: 72px; }

/* ---------- 12. Owner (full-bleed banner) ---------- */
.owner-banner { position: relative; min-height: clamp(240px, 28vw, 400px); display: flex; align-items: center; overflow: hidden; }
.owner-banner__bg { position: absolute; inset: 0; }
.owner-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.owner-banner__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(248,246,241,0.97) 0%, rgba(248,246,241,0.9) 30%, rgba(248,246,241,0.5) 56%, rgba(248,246,241,0.05) 100%); }
.owner-banner__inner { position: relative; z-index: 2; width: 100%; max-width: 1560px; margin-inline: auto; padding-inline: clamp(24px, 5vw, 96px); }
.owner-banner__copy { position: relative; max-width: 600px; }
.owner-banner__script { position: absolute; right: -4px; top: -52px; font-family: var(--font-en); font-style: italic; font-size: clamp(46px, 5.5vw, 86px); color: rgba(127,139,112,0.16); pointer-events: none; }
.owner-banner__title { font-family: var(--font-serif-ja); font-size: clamp(22px, 2.4vw, 30px); letter-spacing: .12em; margin-bottom: 18px; }
.owner-banner__copy p + p { margin-top: 1em; }
.owner-banner__copy .txtlink { margin-top: 22px; }

/* ---------- 13. Gallery (left text + looping marquee, 5 visible / 15 imgs) ---------- */
.gallery2 { background: var(--color-base-deep); padding-block: clamp(50px, 6vw, 96px); overflow: hidden; }
.gallery2__grid { display: grid; grid-template-columns: clamp(190px, 17vw, 250px) 1fr; gap: clamp(20px, 2.6vw, 48px); align-items: center; }
.gallery2__text h2 { font-family: var(--font-serif-ja); font-size: clamp(22px, 2.4vw, 30px); letter-spacing: .1em; line-height: 1.6; }
.gallery2__text p { margin-top: 16px; font-size: 13px; color: var(--color-text-soft); line-height: 2; }
.gallery2__text .txtlink { margin-top: 24px; }
.gallery2__viewport { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); }
.gallery2__track { display: flex; gap: clamp(12px, 1.2vw, 18px); width: max-content; animation: marquee 80s linear infinite; }
.gallery2__viewport:hover .gallery2__track { animation-play-state: paused; }
.gallery2__track .imgwrap { flex: 0 0 clamp(168px, 16vw, 232px); aspect-ratio: 48/60; }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- 14. Reservation CTA (gradient + shadow cards) ---------- */
.res-cta { background: var(--color-base); padding-block: clamp(50px, 6vw, 96px); }
.res-cta__title { margin-bottom: 36px; }
.res-cta__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 28px); max-width: 1000px; margin-inline: auto; }
.res-card { border-radius: 16px; padding: clamp(26px, 2.6vw, 40px); display: flex; flex-direction: column; box-shadow: var(--shadow-card); }
.res-card--a { background: linear-gradient(155deg, #FFFDF8 0%, #ECE5DA 100%); }
.res-card--b { background: linear-gradient(155deg, #8C977D 0%, #5F6E53 100%); color: #fff; box-shadow: 0 26px 58px rgba(63,71,53,0.38); }
.res-card h3 { font-family: var(--font-serif-ja); font-size: clamp(19px, 1.8vw, 23px); letter-spacing: .1em; }
.res-card p { margin-top: 14px; font-size: 13px; line-height: 1.95; }
.res-card--a p { color: var(--color-text-soft); }
.res-card--b p { color: rgba(255,255,255,0.9); }
.res-card__btns { margin-top: auto; padding-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.res-card--b .btn--outline { --fg: #fff; border-color: rgba(255,255,255,0.55); }
.res-card--b .btn--outline::before { background: rgba(255,255,255,0.16); }
.res-card--b .btn--outline:hover { color: #fff; border-color: #fff; }

/* ---------- 15. Salon Space (landscape band, low padding) ---------- */
.space { padding: clamp(14px, 1.6vw, 22px); background: var(--color-base); }
.space__grid { display: grid; grid-template-columns: 1.32fr 0.9fr; gap: clamp(14px, 1.8vw, 24px); align-items: stretch; }
.space__img { aspect-ratio: 16/8.5; height: 100%; }
.space__body { display: flex; flex-direction: column; justify-content: center; padding: clamp(18px, 2.4vw, 40px); }
.space__body h2 { font-family: var(--font-serif-ja); font-size: clamp(22px, 2.4vw, 30px); letter-spacing: .1em; line-height: 1.6; }
.space__body p { margin-top: 18px; }
.space__body .txtlink { margin-top: 26px; }

/* ---------- 16. News (tight) ---------- */
.news { background: var(--color-base); padding-block: clamp(46px, 5vw, 80px); }
.news__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 22px; }
.news__list { border-top: 1px solid var(--color-line); }
.news__item { display: grid; grid-template-columns: 130px 96px 1fr auto; gap: 20px; align-items: center; padding: 18px 6px; border-bottom: 1px solid var(--color-line); transition: background .3s var(--ease-out); }
.news__item:hover { background: var(--color-base-deep); }
.news__date { font-family: var(--font-sans-ja); font-size: 13px; letter-spacing: .06em; color: var(--color-text-soft); }
.news__cat { font-size: 11px; letter-spacing: .12em; text-align: center; padding: 4px 0; border: 1px solid var(--color-main-soft); color: var(--color-main-dark); border-radius: 4px; }
.news__ttl { font-size: 14px; }
.news__item .arrow { color: var(--color-main-dark); transition: transform .3s var(--ease-out); }
.news__item:hover .arrow { transform: translateX(5px); }

/* ---------- 17. Footer ---------- */
.footer { background: var(--color-base-light); border-top: 1px solid var(--color-line); padding-block: clamp(48px, 5vw, 76px); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr 1fr; gap: 32px; }
.footer__brand .logo__name { font-size: 28px; }
.footer__info { margin-top: 18px; font-size: 12.5px; color: var(--color-text-soft); line-height: 2; }
.footer__map { margin-top: 16px; }
.footer__map .btn { min-height: 42px; font-size: 12px; padding: 0 18px; }
.footer__col h4 { font-family: var(--font-en); font-size: 13px; letter-spacing: .18em; color: var(--color-main-dark); margin-bottom: 16px; }
.footer__col li { margin-bottom: 11px; font-size: 13px; }
.footer__col a:hover { color: var(--color-main-dark); }
.footer__news li { display: flex; flex-direction: column; gap: 2px; margin-bottom: 14px; font-size: 12px; }
.footer__news .d { font-family: var(--font-sans-ja); color: var(--color-text-soft); }
.footer__sns { display: flex; flex-direction: column; gap: 12px; }
.footer__sns a { display: inline-flex; align-items: center; gap: 10px; color: var(--color-text); transition: color .3s var(--ease-out); }
.footer__sns svg { width: 30px; height: 30px; transition: transform .35s var(--ease-out); }
.footer__sns span { font-size: 13px; letter-spacing: .06em; }
.footer__sns a:hover { color: var(--color-main-dark); }
.footer__sns a:hover svg { transform: translateY(-2px) scale(1.06); }
.footer__sns .ig:hover { color: #C13584; }
.footer__sns .line:hover { color: var(--color-line-green); }
.footer__bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--color-line); display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 11.5px; color: var(--color-text-soft); letter-spacing: .06em; }
.footer__bottom a:hover { color: var(--color-main-dark); }

/* ---------- 18. SP fixed bar ---------- */
.spbar { display: none; position: fixed; inset: auto 0 0 0; z-index: 90; height: 66px; background: var(--color-main-dark); grid-template-columns: 1fr 1fr; }
.spbar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: #fff; font-size: 10.5px; letter-spacing: .04em; border-right: 1px solid rgba(255,255,255,0.16); }
.spbar a:last-child { border-right: none; }
.spbar .ic { font-size: 18px; line-height: 1; }

/* ============================================================
   Sub-page shared components
   ============================================================ */
.page-hero { position: relative; min-height: clamp(260px, 30vw, 380px); display: flex; align-items: flex-end; overflow: hidden; padding-top: var(--header-h); }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(248,246,241,0.9) 0%, rgba(248,246,241,0.5) 36%, rgba(248,246,241,0.24) 66%, rgba(248,246,241,0.7) 100%); }
.page-hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--content-w); margin-inline: auto; padding: 0 var(--gutter) clamp(26px, 3vw, 46px); }
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero__title { font-family: var(--font-serif-ja); font-weight: 500; font-size: clamp(28px, 3.6vw, 46px); letter-spacing: .14em; line-height: 1.3; }

.crumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 12px; letter-spacing: .06em; color: var(--color-text-soft); padding-top: 16px; }
.crumb a:hover { color: var(--color-main-dark); }
.crumb .sep { opacity: .5; }

.page-intro { text-align: center; max-width: 760px; margin-inline: auto; }
.page-intro h2 { font-family: var(--font-serif-ja); font-weight: 500; font-size: clamp(22px, 2.8vw, 34px); line-height: 1.75; letter-spacing: .08em; }
.page-intro p { margin-top: 20px; }

.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4.5vw, 76px); align-items: center; }
.feature-row + .feature-row { margin-top: clamp(40px, 5vw, 88px); }
.feature-row__img { aspect-ratio: 5/4; }
.feature-row--rev .feature-row__img { order: 2; }
.feature-row .eyebrow { margin-bottom: 12px; }
.feature-row h3 { font-family: var(--font-serif-ja); font-weight: 500; font-size: clamp(22px, 2.4vw, 32px); line-height: 1.6; letter-spacing: .08em; margin-bottom: 16px; }
.feature-row__text p + p { margin-top: 1em; }

.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px, 1.8vw, 24px); }
.value-card { background: linear-gradient(150deg, #FFFDF8 0%, #EFE9DE 100%); border-radius: var(--radius); padding: clamp(24px, 2.4vw, 38px); box-shadow: var(--shadow-soft); transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.value-card .num { font-family: var(--font-en); font-style: italic; font-size: 26px; color: var(--color-main); display: block; margin-bottom: 10px; }
.value-card h4 { font-family: var(--font-serif-ja); font-size: clamp(17px, 1.6vw, 20px); letter-spacing: .06em; margin-bottom: 10px; }
.value-card p { font-size: 13px; color: var(--color-text-soft); line-height: 1.9; }

/* CTA band */
.cta { position: relative; overflow: hidden; background: linear-gradient(150deg, #8C977D 0%, #5F6E53 100%); color: #fff; text-align: center; padding-block: clamp(48px, 6vw, 88px); }
.cta h2 { font-family: var(--font-serif-ja); font-weight: 500; font-size: clamp(22px, 2.8vw, 34px); letter-spacing: .1em; line-height: 1.6; }
.cta p { margin-top: 16px; color: rgba(255,255,255,0.9); }
.cta__btns { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .btn { --bg: #fff; --fg: var(--color-main-dark); border-color: #fff; }
.cta .btn::before { background: rgba(255,255,255,0.82); }
.cta .btn:hover { color: var(--color-main-dark); box-shadow: 0 12px 26px rgba(0,0,0,0.18); }
.cta .btn--ghost { --bg: transparent; --fg: #fff; border-color: rgba(255,255,255,0.6); }
.cta .btn--ghost::before { background: rgba(255,255,255,0.16); }
.cta .btn--ghost:hover { color: #fff; border-color: #fff; }

/* Menu page */
.menu-note { text-align: center; font-size: 13px; color: var(--color-text-soft); margin-bottom: clamp(30px, 4vw, 52px); }
.menu-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; background: linear-gradient(150deg, var(--color-base-deep) 0%, #E6DECF 100%); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.menu-feature__img { aspect-ratio: 4/3; height: 100%; }
.menu-feature__img .imgwrap, .menu-feature__img.imgwrap { height: 100%; border-radius: 0; box-shadow: none; }
.menu-feature__body { padding: clamp(26px, 3vw, 50px); display: flex; flex-direction: column; justify-content: center; }
.menu-feature__body .eyebrow { margin-bottom: 10px; }
.menu-feature__body h3 { font-family: var(--font-serif-ja); font-size: clamp(22px, 2.4vw, 30px); letter-spacing: .08em; margin-bottom: 14px; }
.menu-feature__price { margin-top: 20px; font-family: var(--font-serif-ja); font-size: 22px; }
.menu-feature__price small { font-family: var(--font-sans-ja); font-size: 12px; color: var(--color-text-soft); margin-left: 6px; }

.menu-cat { margin-top: clamp(40px, 5vw, 76px); }
.menu-cat__head { display: flex; align-items: baseline; gap: 14px; border-bottom: 2px solid var(--color-main-soft); padding-bottom: 12px; margin-bottom: 6px; }
.menu-cat__head .en { font-family: var(--font-en); font-style: italic; color: var(--color-main); font-size: 16px; }
.menu-cat__head h3 { font-family: var(--font-serif-ja); font-size: clamp(20px, 2.2vw, 26px); letter-spacing: .08em; }
.menu-row { display: grid; grid-template-columns: 1fr auto; gap: 4px 20px; align-items: baseline; padding: 16px 4px; border-bottom: 1px solid var(--color-line); transition: background .3s var(--ease-out); }
.menu-row:hover { background: var(--color-base-light); }
.menu-row__name { font-size: 15px; letter-spacing: .03em; }
.menu-row__desc { grid-column: 1 / -1; font-size: 12px; color: var(--color-text-soft); line-height: 1.7; }
.menu-row__price { font-family: var(--font-serif-ja); font-size: 17px; white-space: nowrap; }
.menu-row__price small { font-family: var(--font-sans-ja); font-size: 11px; color: var(--color-text-soft); }

/* Flow (reservation) */
.flow { max-width: 860px; margin-inline: auto; }
.flow__item { display: grid; grid-template-columns: auto 1fr; gap: clamp(16px, 2.4vw, 36px); padding: clamp(20px, 2.4vw, 30px) 0; border-bottom: 1px solid var(--color-line); align-items: flex-start; }
.flow__num { font-family: var(--font-en); font-style: italic; font-size: clamp(30px, 3.2vw, 46px); color: var(--color-main); line-height: 1; }
.flow__body h4 { font-family: var(--font-serif-ja); font-size: clamp(17px, 1.8vw, 21px); letter-spacing: .06em; margin-bottom: 8px; }
.flow__body p { font-size: 13.5px; color: var(--color-text-soft); line-height: 1.95; }

/* FAQ accordion */
.faq { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--color-line); }
.faq__item { border-bottom: 1px solid var(--color-line); }
.faq__q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 4px; font-family: var(--font-serif-ja); font-size: 15.5px; letter-spacing: .04em; color: var(--color-text); }
.faq__q .mark { flex: none; width: 20px; height: 20px; position: relative; }
.faq__q .mark::before, .faq__q .mark::after { content: ""; position: absolute; background: var(--color-main-dark); }
.faq__q .mark::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq__q .mark::after { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); transition: transform .35s var(--ease-out); }
.faq__item.is-open .mark::after { transform: translateX(-50%) scaleY(0); }
.faq__panel { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease-out); }
.faq__panel-inner { padding: 2px 4px 22px; font-size: 13.5px; color: var(--color-text-soft); line-height: 1.95; }

/* Gallery page */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: clamp(28px, 3.5vw, 48px); }
.gallery-filter { padding: 9px 22px; border: 1px solid var(--color-border); border-radius: 999px; font-size: 13px; letter-spacing: .08em; color: var(--color-text-soft); background: transparent; transition: background .3s var(--ease-out), color .3s var(--ease-out), border-color .3s var(--ease-out); }
.gallery-filter:hover { border-color: var(--color-main); color: var(--color-main-dark); }
.gallery-filter.is-active { background: var(--color-main); border-color: var(--color-main); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.4vw, 20px); }
.gallery-grid .imgwrap { aspect-ratio: 4/5; }

/* Stylist profile */
.profile { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(28px, 4.5vw, 72px); align-items: center; }
.profile__img { aspect-ratio: 4/5; }
.profile__role { font-size: 13px; letter-spacing: .16em; color: var(--color-main-dark); }
.profile__name { font-family: var(--font-serif-ja); font-weight: 500; font-size: clamp(24px, 3vw, 38px); letter-spacing: .1em; margin: 8px 0 4px; }
.profile__name small { font-family: var(--font-sans-ja); font-size: 13px; color: var(--color-text-soft); letter-spacing: .08em; margin-left: 10px; }
.profile__body { margin-top: 20px; }
.profile__body p + p { margin-top: 1em; }
.profile__tags { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.profile__tag { font-size: 12px; letter-spacing: .06em; padding: 6px 14px; border: 1px solid var(--color-border); border-radius: 999px; color: var(--color-text-soft); }

/* Info table */
.info-table { border-top: 1px solid var(--color-line); max-width: 760px; margin-inline: auto; }
.info-row { display: grid; grid-template-columns: 150px 1fr; gap: 18px; padding: 18px 4px; border-bottom: 1px solid var(--color-line); }
.info-row dt { font-family: var(--font-serif-ja); font-size: 14px; letter-spacing: .08em; color: var(--color-main-dark); }
.info-row dd { font-size: 14px; line-height: 1.9; }

/* Access map (placeholder) */
.access__grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.access__body h3 { font-family: var(--font-serif-ja); font-size: clamp(19px, 2vw, 24px); letter-spacing: .08em; margin-bottom: 14px; }
.access__body p { font-size: 14px; line-height: 1.95; color: var(--color-text-soft); }
.access__body p + p { margin-top: 1em; }
.access__body .btn { margin-top: 24px; }
.map { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.map svg { display: block; width: 100%; height: auto; }
.map__badge { position: absolute; top: 14px; left: 14px; background: rgba(255,253,248,0.92); backdrop-filter: blur(4px); font-size: 11px; letter-spacing: .08em; color: var(--color-text-soft); padding: 6px 12px; border-radius: 999px; box-shadow: var(--shadow-soft); }

/* News index */
.news-list { max-width: 860px; margin-inline: auto; border-top: 1px solid var(--color-line); }
.news-entry { display: grid; grid-template-columns: auto auto 1fr auto; gap: 6px 18px; align-items: center; padding: 22px 4px; border-bottom: 1px solid var(--color-line); transition: background .3s var(--ease-out); }
.news-entry:hover { background: var(--color-base-light); }
.news-entry__date { font-family: var(--font-sans-ja); font-size: 13px; letter-spacing: .06em; color: var(--color-text-soft); }
.news-entry__cat { font-size: 11px; letter-spacing: .08em; padding: 5px 12px; border: 1px solid var(--color-main-soft); border-radius: 999px; color: var(--color-main-dark); white-space: nowrap; }
.news-entry__ttl { font-size: 15px; letter-spacing: .03em; }
.news-entry__ttl a:hover { color: var(--color-main-dark); }
.news-entry__excerpt { grid-column: 1 / -1; font-size: 13px; color: var(--color-text-soft); line-height: 1.85; }
.news-entry .arrow { color: var(--color-main); }

/* Contact form */
.form { max-width: 720px; margin-inline: auto; }
.form__row { margin-bottom: 22px; }
.form__label { display: block; font-family: var(--font-serif-ja); font-size: 14px; letter-spacing: .06em; margin-bottom: 8px; }
.form__label .req { color: var(--color-main-dark); font-size: 11px; margin-left: 8px; font-family: var(--font-sans-ja); }
.form__input, .form__textarea, .form__select { width: 100%; font-family: var(--font-sans-ja); font-size: 14px; color: var(--color-text); background: var(--color-base-light); border: 1px solid var(--color-border); border-radius: 10px; padding: 13px 16px; transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out); }
.form__input:focus, .form__textarea:focus, .form__select:focus { outline: none; border-color: var(--color-main); box-shadow: 0 0 0 3px rgba(127,139,112,0.14); }
.form__textarea { min-height: 150px; resize: vertical; line-height: 1.8; }
.form__note { font-size: 12px; color: var(--color-text-soft); margin-top: 6px; }
.form__submit { text-align: center; margin-top: 32px; }
.contact-alt { max-width: 720px; margin: clamp(36px, 4vw, 56px) auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.contact-alt__card { background: linear-gradient(150deg, #FFFDF8 0%, #EFE9DE 100%); border-radius: var(--radius); padding: 22px; text-align: center; box-shadow: var(--shadow-soft); }
.contact-alt__card .en { font-family: var(--font-en); font-style: italic; color: var(--color-main); font-size: 14px; }
.contact-alt__card h4 { font-family: var(--font-serif-ja); font-size: 15px; margin: 6px 0 4px; letter-spacing: .06em; }
.contact-alt__card p { font-size: 12.5px; color: var(--color-text-soft); line-height: 1.7; }

/* Legal */
.legal { max-width: 800px; margin-inline: auto; }
.legal__lead { margin-bottom: clamp(28px, 3vw, 40px); color: var(--color-text-soft); line-height: 1.95; font-size: 14px; }
.legal__block { margin-top: clamp(26px, 3vw, 38px); }
.legal__block h3 { font-family: var(--font-serif-ja); font-size: clamp(17px, 1.8vw, 20px); letter-spacing: .06em; margin-bottom: 12px; padding-left: 14px; border-left: 3px solid var(--color-main-soft); }
.legal__block p { font-size: 14px; line-height: 1.95; color: var(--color-text); }
.legal__block p + p { margin-top: .8em; }
.legal__block ul { margin: 10px 0 0; padding-left: 1.3em; }
.legal__block li { font-size: 14px; line-height: 1.9; list-style: disc; margin-bottom: 4px; }
.legal__date { margin-top: clamp(30px, 4vw, 48px); font-size: 13px; color: var(--color-text-soft); text-align: right; }

/* Lenis smooth scroll */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* Gallery lightbox */
.lb { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(43,38,34,0.88); opacity: 0; visibility: hidden; transition: opacity .4s var(--ease-out), visibility .4s var(--ease-out); }
.lb.is-open { opacity: 1; visibility: visible; }
.lb__img { max-width: min(92vw, 1100px); max-height: 86vh; object-fit: contain; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); transform: scale(.96); transition: transform .45s var(--ease-out); }
.lb.is-open .lb__img { transform: scale(1); }
.lb__close { position: absolute; top: 20px; right: 22px; width: 44px; height: 44px; }
.lb__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; }
.lb__prev { left: 18px; } .lb__next { right: 18px; }
.lb__close, .lb__nav { display: flex; align-items: center; justify-content: center; border-radius: 999px; background: rgba(255,255,255,0.14); color: #fff; font-size: 22px; line-height: 1; transition: background .3s var(--ease-out); }
.lb__close:hover, .lb__nav:hover { background: rgba(255,255,255,0.28); }
@media (max-width: 600px) { .lb__nav { width: 40px; height: 40px; } .lb__prev { left: 10px; } .lb__next { right: 10px; } }

/* Contact form validation + success */
.form__input.is-invalid, .form__textarea.is-invalid, .form__select.is-invalid { border-color: #C0795F; box-shadow: 0 0 0 3px rgba(192,121,95,0.14); }
.form__success { max-width: 720px; margin-inline: auto; text-align: center; background: linear-gradient(150deg, #FFFDF8 0%, #EFE9DE 100%); border-radius: var(--radius); padding: clamp(40px, 5vw, 64px); box-shadow: var(--shadow-soft); }
.form__success-mark { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 999px; background: var(--color-main); color: #fff; font-size: 26px; margin-bottom: 18px; }
.form__success h3 { font-family: var(--font-serif-ja); font-size: clamp(20px, 2.4vw, 26px); letter-spacing: .08em; margin-bottom: 12px; }
.form__success p { font-size: 14px; line-height: 1.95; color: var(--color-text-soft); }

/* Intro loader (front page only) */
.loader { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; background: var(--color-base); animation: loaderOut .6s var(--ease-out) .85s forwards; }
.loader__logo { font-family: var(--font-en); font-style: italic; font-size: clamp(30px, 5vw, 46px); color: var(--color-main-dark); letter-spacing: .04em; opacity: 0; animation: loaderLogo 1s var(--ease-out) forwards; }
@keyframes loaderLogo { 0% { opacity: 0; transform: translateY(8px); } 45% { opacity: 1; transform: none; } 100% { opacity: 1; } }
@keyframes loaderOut { to { opacity: 0; visibility: hidden; } }
@media (prefers-reduced-motion: reduce) { .loader { display: none; } }

/* ---------- 19. Responsive ---------- */
@media (max-width: 900px) {
  .is-pc { display: none !important; } .is-sp { display: block; }
  body { padding-bottom: 66px; }
  .gnav { display: none; } .hamburger { display: block; } .spbar { display: grid; }
  .header { --header-h: 64px; } .logo__name { font-size: 27px; }

  .hero { height: 60vh; min-height: 420px; }
  .hero__slide img { transform: scale(1.0); transition: none; }
  .hero__slide.is-active img { transform: scale(1.0); }
  .hero__overlay { background: linear-gradient(180deg, rgba(248,246,241,0.12) 0%, rgba(248,246,241,0.04) 24%, rgba(255,255,255,0.52) 46%, rgba(255,255,255,0.9) 64%, rgba(248,246,241,0.99) 100%); }
  .hero__inner { justify-content: flex-end; padding-bottom: 52px; }
  .hero__copy { max-width: none; }
  .hero__btns { display: none; }
  .hero__dots { left: 50%; transform: translateX(-50%); bottom: 34px; }

  .statement { min-height: 0; padding-block: clamp(40px, 12vw, 64px); }
  .statement__scrim { background: linear-gradient(180deg, rgba(248,246,241,0.5) 0%, rgba(248,246,241,0.86) 60%, rgba(248,246,241,0.96) 100%); }

  .atmosphere__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; min-height: 0; }
  .atmosphere__img-l { grid-column: 1 / -1; height: auto; aspect-ratio: 16/9; }
  .atmosphere__text { grid-column: 1 / -1; order: 3; padding: 18px 6px 8px; }
  .atmosphere__img-r { grid-column: 1 / -1; height: auto; }
  .atmosphere__img-r .imgwrap { height: auto; aspect-ratio: 4/3; }

  .concern__tags { overflow-x: auto; justify-content: flex-start; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
  .concern__tag { flex: 0 0 30%; max-width: none; }

  .signature__grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { min-height: 300px; }

  .owner-banner { min-height: 0; padding-block: clamp(38px, 12vw, 60px); }
  .owner-banner__scrim { background: linear-gradient(180deg, rgba(248,246,241,0.42) 0%, rgba(248,246,241,0.84) 55%, rgba(248,246,241,0.96) 100%); }
  .owner-banner__script { display: none; }

  .gallery2__grid { grid-template-columns: 1fr; gap: 18px; }
  .gallery2__track .imgwrap { flex-basis: 44vw; }

  .res-cta__grid { grid-template-columns: 1fr; }
  .res-card__btns { flex-direction: column; } .res-card__btns .btn { width: 100%; }

  .space__grid { grid-template-columns: 1fr; }
  .space__img { aspect-ratio: 16/10; }

  .news__item { grid-template-columns: auto auto 1fr; gap: 12px; }
  .news__item .arrow { display: none; }
  .news__ttl { grid-column: 1 / -1; }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .page-hero { min-height: 220px; }
  .feature-row { grid-template-columns: 1fr; gap: 22px; }
  .feature-row--rev .feature-row__img { order: 0; }
  .feature-row__img { aspect-ratio: 16/10; }
  .values { grid-template-columns: 1fr; }
  .menu-feature { grid-template-columns: 1fr; }
  .menu-feature__img { aspect-ratio: 16/10; }

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

  .profile { grid-template-columns: 1fr; gap: 24px; }
  .profile__img { aspect-ratio: 4/5; max-width: 360px; }
  .info-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 4px; }
  .info-row dt { font-size: 13px; }
  .access__grid { grid-template-columns: 1fr; gap: 22px; }

  .news-entry { grid-template-columns: auto 1fr; }
  .news-entry__ttl { grid-column: 1 / -1; }
  .news-entry .arrow { display: none; }
  .contact-alt { grid-template-columns: 1fr; }

  .res-note__sep { display: none; }
  .res-note__hours { display: block; margin-top: 6px; }
}
@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; }
  .menu-mini { grid-template-columns: 1fr; }
  .mini-card--wide .imgwrap { width: 84px; }
  .concern__tag { flex-basis: 40%; }
}

/* ---------- 20. reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
  .hero__slide.is-active img { transform: scale(1.0); transition: none; }
  .gallery2__track { animation: none; }
}
