/* =========================================================
   ノリタカ・エステティクス — style.css
   大人世代に読みやすいよう、大きめの文字・十分なコントラスト・
   広いタップ領域を基本にしています。
   ========================================================= */

:root {
  /* 和の色 */
  --washi: #f6f1e7;       /* 生成り */
  --washi-deep: #ede3d1;  /* 砂色 */
  --paper: #fffcf6;       /* 白練 */
  --sumi: #2a2522;        /* 墨 */
  --sumi-soft: #4a423c;   /* 薄墨（本文にも使える濃さ） */
  --enji: #8a3342;        /* 臙脂 */
  --enji-deep: #6e2533;
  --enji-tint: #f3e3e3;   /* 桜鼠 */
  --kincha: #a37a3a;      /* 金茶（装飾用） */
  --kincha-text: #7a5620; /* 金茶（文字用・コントラスト確保） */
  --matcha: #55653f;      /* 抹茶 */
  --line: #d9ccb4;

  --font-serif: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;

  --radius: 14px;
  --shadow: 0 10px 30px -18px rgba(60, 40, 20, 0.45);
  --header-h: 84px;
  --container: 1120px;
}

/* 文字サイズ切り替え（標準 / 大 / 特大） */
html { font-size: 112.5%; }                  /* 18px */
html[data-fontsize="large"] { font-size: 125%; }    /* 20px */
html[data-fontsize="xlarge"] { font-size: 143.75%; } /* 23px */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--sumi);
  background-color: var(--washi);
  /* 和紙のような、ごく淡い繊維の質感 */
  background-image:
    radial-gradient(rgba(163, 122, 58, 0.05) 1px, transparent 1px),
    radial-gradient(rgba(163, 122, 58, 0.035) 1px, transparent 1px);
  background-size: 23px 23px, 37px 37px;
  background-position: 0 0, 11px 17px;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--enji); text-underline-offset: 0.2em; }
a:hover { color: var(--enji-deep); }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.5; margin: 0; }
/* 見出しは文節の区切りで改行（対応ブラウザのみ） */
h1, h2, h3, summary, blockquote, .menu-for, .hero-lead { word-break: auto-phrase; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--enji);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.skip-link {
  position: absolute;
  left: 12px; top: -100px;
  z-index: 200;
  background: var(--sumi);
  color: #fff;
  padding: 0.6em 1em;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; color: #fff; }

.pc-only { display: none; }
@media (min-width: 800px) {
  .pc-only { display: inline; }
  .sp-only { display: none; }
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow { max-width: 820px; }

/* ---------------------------------------------------------
   ボタン
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1em;
  min-height: 64px;
  padding: 0.7em 1.8em;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-sub { font-size: 0.8em; font-weight: 500; letter-spacing: 0.08em; }
.btn-main { font-size: 1.15em; letter-spacing: 0.06em; }

.btn-primary {
  background: var(--enji);
  color: #fff;
  box-shadow: 0 10px 24px -14px rgba(138, 51, 66, 0.9);
}
.btn-primary:hover { background: var(--enji-deep); color: #fff; }

.btn-ghost {
  background: var(--paper);
  color: var(--enji);
  border-color: var(--enji);
}
.btn-ghost:hover { background: var(--enji-tint); color: var(--enji-deep); }

.btn-block { display: flex; width: 100%; }

/* ---------------------------------------------------------
   ヘッダー
   --------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 241, 231, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 20px -16px rgba(60, 40, 20, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1280px;
  min-height: var(--header-h);
  margin: 0 auto;
  padding: 10px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--sumi);
  text-decoration: none;
}
.logo:hover { color: var(--sumi); }
.logo-mark { width: 40px; height: 40px; color: var(--enji); flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.3; }
.logo-ja { font-family: var(--font-serif); font-weight: 700; font-size: 1.1rem; letter-spacing: 0.08em; }
.logo-en { font-family: var(--font-serif); font-size: 0.72rem; letter-spacing: 0.2em; color: var(--kincha-text); }
.logo-ja, .logo-en { white-space: nowrap; }
@media (max-width: 479px) {
  .logo { gap: 8px; }
  .logo-mark { width: 34px; height: 34px; }
  .logo-ja { font-size: 0.9rem; letter-spacing: 0.02em; }
  .logo-en { font-size: 0.62rem; letter-spacing: 0.12em; }
}

.header-tools { display: flex; align-items: center; gap: 16px; }

.font-size {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.font-size-label { font-size: 0.75rem; padding: 0 8px 0 10px; color: var(--sumi-soft); }
.font-size button {
  min-width: 48px;
  min-height: 40px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sumi);
  cursor: pointer;
}
.font-size button[data-size="large"] { font-size: 0.95rem; }
.font-size button[data-size="xlarge"] { font-size: 1.05rem; }
.font-size button[aria-pressed="true"] { background: var(--sumi); color: #fff; }

.header-tel {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.3;
  text-decoration: none;
  color: var(--sumi);
}
.header-tel-label { font-size: 0.72rem; color: var(--sumi-soft); }
.header-tel-num { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--enji); letter-spacing: 0.06em; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 64px;
  height: 64px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--sumi);
  cursor: pointer;
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s, background-color 0.3s;
}
.nav-toggle-bars { position: relative; margin-top: 6px; }
.nav-toggle-bars::before,
.nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle-bars::before { top: -8px; }
.nav-toggle-bars::after { top: 8px; }
.nav-toggle-text { font-size: 0.66rem; font-weight: 700; margin-top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: translateY(-8px) rotate(-45deg); }

.global-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--washi);
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.global-nav.is-open { display: block; }
.global-nav ul { padding: 8px 20px 24px; }
.global-nav a {
  display: block;
  padding: 1em 0.4em;
  border-bottom: 1px dashed var(--line);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--sumi);
  text-decoration: none;
}
.global-nav a:hover { color: var(--enji); }
.global-nav .nav-cta {
  margin-top: 16px;
  border: 0;
  border-radius: 999px;
  background: var(--enji);
  color: #fff;
  text-align: center;
  font-weight: 700;
}
.global-nav .nav-cta:hover { color: #fff; background: var(--enji-deep); }

@media (min-width: 720px) {
  .font-size { display: inline-flex; }
}
@media (min-width: 960px) {
  .header-tel { display: flex; }
}
@media (min-width: 1180px) {
  .nav-toggle { display: none; }
  .global-nav {
    display: block;
    max-height: none;
    overflow: visible;
    background: transparent;
  }
  .global-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 6px 20px;
  }
  .global-nav a {
    padding: 0.5em 0.9em;
    border: 0;
    border-radius: 999px;
    font-size: 0.95rem;
  }
  .global-nav a:hover { background: var(--washi-deep); }
  .global-nav .nav-cta { margin: 0 0 0 8px; padding: 0.5em 1.4em; }
}

/* ---------------------------------------------------------
   ヒーロー
   --------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 0;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(138, 51, 66, 0.08), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(85, 101, 63, 0.08), transparent 50%);
}

.hero-inner {
  position: relative;
  display: grid;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  padding: 0.3em 1em;
  border: 1px solid var(--kincha);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--kincha-text);
  background: rgba(255, 252, 246, 0.7);
}

.hero-title {
  font-size: clamp(1.5rem, 6.2vw, 2.75rem);
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: var(--sumi);
}
.hero-line { display: block; }
.hero-line > span { display: inline-block; }
.hero-line:last-child { color: var(--enji); }

.hero-lead {
  margin-top: 24px;
  max-width: 34em;
  font-size: 1.05rem;
  color: var(--sumi-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero-actions .btn { flex: 1 1 240px; }

.hero-visual {
  position: relative;
  width: min(360px, 80vw);
  aspect-ratio: 1;
  margin: 8px auto 0;
}
.enso { position: absolute; inset: 0; width: 100%; height: 100%; }
.enso-stroke {
  fill: none;
  stroke: var(--sumi);
  stroke-linecap: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 0;
}
.enso-a { stroke-width: 18; opacity: 0.88; }
.enso-b { stroke-width: 7; opacity: 0.35; }
.js .enso-stroke { stroke-dashoffset: 1200; animation: draw-enso 2.6s cubic-bezier(0.6, 0.1, 0.3, 1) 0.3s forwards; }
.js .enso-b { animation-delay: 0.55s; }
@keyframes draw-enso { to { stroke-dashoffset: 0; } }

.hero-kanji {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2rem, 8vw, 3.1rem);
  line-height: 1.15;
  text-align: center;
  color: var(--enji);
  letter-spacing: 0;
}

.hero-ume { position: absolute; color: var(--enji); opacity: 0.9; }
.hero-ume-1 { width: 46px; height: 46px; top: 4%; right: 6%; }
.hero-ume-2 { width: 28px; height: 28px; bottom: 12%; left: 2%; color: #c77d8a; }
.hero-ume-3 { width: 20px; height: 20px; top: 20%; left: 10%; color: #c77d8a; }
.js .hero-ume { animation: float 7s ease-in-out infinite; }
.js .hero-ume-2 { animation-delay: -2s; }
.js .hero-ume-3 { animation-delay: -4s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-10px) rotate(12deg); }
}

.hero-info {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  max-width: var(--container);
  margin: 40px auto 0;
  padding: 0 20px;
}
.hero-info li {
  display: flex;
  align-items: baseline;
  gap: 1em;
  padding: 0.8em 1.2em;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 1rem;
}
.hero-info li + li { border-top: 0; }
.hero-info li:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.hero-info li:last-child { border-radius: 0 0 var(--radius) var(--radius); }
.info-key {
  flex-shrink: 0;
  min-width: 5.5em;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--enji);
}

/* 青海波の帯 */
.seigaiha {
  height: 90px;
  margin-top: -30px;
  background-color: var(--washi);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='20'%3E%3Cg fill='%23f6f1e7' stroke='%23a37a3a' stroke-opacity='.35' stroke-width='1'%3E%3Cg%3E%3Ccircle cx='0' cy='0' r='19.5'/%3E%3Ccircle cx='0' cy='0' r='14.5'/%3E%3Ccircle cx='0' cy='0' r='9.5'/%3E%3Ccircle cx='0' cy='0' r='4.5'/%3E%3C/g%3E%3Cg%3E%3Ccircle cx='40' cy='0' r='19.5'/%3E%3Ccircle cx='40' cy='0' r='14.5'/%3E%3Ccircle cx='40' cy='0' r='9.5'/%3E%3Ccircle cx='40' cy='0' r='4.5'/%3E%3C/g%3E%3Cg%3E%3Ccircle cx='20' cy='10' r='19.5'/%3E%3Ccircle cx='20' cy='10' r='14.5'/%3E%3Ccircle cx='20' cy='10' r='9.5'/%3E%3Ccircle cx='20' cy='10' r='4.5'/%3E%3C/g%3E%3Cg%3E%3Ccircle cx='0' cy='20' r='19.5'/%3E%3Ccircle cx='0' cy='20' r='14.5'/%3E%3Ccircle cx='0' cy='20' r='9.5'/%3E%3Ccircle cx='0' cy='20' r='4.5'/%3E%3C/g%3E%3Cg%3E%3Ccircle cx='40' cy='20' r='19.5'/%3E%3Ccircle cx='40' cy='20' r='14.5'/%3E%3Ccircle cx='40' cy='20' r='9.5'/%3E%3Ccircle cx='40' cy='20' r='4.5'/%3E%3C/g%3E%3Cg%3E%3Ccircle cx='20' cy='30' r='19.5'/%3E%3Ccircle cx='20' cy='30' r='14.5'/%3E%3Ccircle cx='20' cy='30' r='9.5'/%3E%3Ccircle cx='20' cy='30' r='4.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 40px 20px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 70%);
  mask-image: linear-gradient(to bottom, transparent, #000 70%);
}

@media (min-width: 900px) {
  .hero { padding-top: 72px; }
  .hero-inner {
    grid-template-columns: 1.25fr 1fr;
    align-items: center;
    gap: 40px;
  }
  .hero-visual { width: 100%; max-width: 420px; margin: 0 0 0 auto; }
  .hero-info {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 56px;
  }
  .hero-info li { justify-content: center; }
  .hero-info li + li { border-top: 1px solid var(--line); border-left: 0; }
  .hero-info li:first-child { border-radius: var(--radius) 0 0 var(--radius); }
  .hero-info li:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
  .info-key { min-width: 0; }
}

/* ---------------------------------------------------------
   セクション共通
   --------------------------------------------------------- */
.section { padding: 88px 0; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-en {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--kincha-text);
}
.section-en::before,
.section-en::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 12px;
  vertical-align: middle;
  background: var(--kincha);
}
.section-title {
  margin-top: 10px;
  font-size: clamp(1.6rem, 4.6vw, 2.3rem);
  letter-spacing: 0.1em;
}
.section-lead { margin-top: 16px; color: var(--sumi-soft); }

@media (min-width: 900px) {
  .section { padding: 120px 0; }
  .section-head { margin-bottom: 64px; }
}

/* スクロール時のふわりとした表示（JS有効時のみ） */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------------------------------------------------------
   想い
   --------------------------------------------------------- */
.concept-body {
  max-width: 40em;
  margin: 0 auto;
  font-size: 1.05rem;
  text-align: center;
}
.concept-body p + p { margin-top: 1.4em; color: var(--sumi-soft); text-align: left; }
.concept-body p:first-child {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 2;
}
@media (min-width: 800px) {
  .concept-body p + p { text-align: center; }
}

.pillars {
  display: grid;
  gap: 20px;
  margin-top: 56px;
}
.pillar {
  position: relative;
  padding: 36px 28px 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
}
.pillar-kanji {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 2px solid var(--enji);
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--enji);
  background: var(--enji-tint);
}
.pillar h3 { font-size: 1.35rem; letter-spacing: 0.15em; margin-bottom: 10px; }
.pillar p { color: var(--sumi-soft); text-align: left; }
@media (min-width: 800px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

/* ---------------------------------------------------------
   歩み
   --------------------------------------------------------- */
.story {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.story-grid { display: grid; gap: 48px; }

.profile { text-align: center; }
.profile-portrait {
  position: relative;
  display: grid;
  place-items: center;
  width: min(280px, 70vw);
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  border-radius: 999px 999px var(--radius) var(--radius);
  background:
    linear-gradient(160deg, rgba(138, 51, 66, 0.12), rgba(85, 101, 63, 0.12)),
    var(--washi-deep);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.profile-portrait::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(163, 122, 58, 0.5);
  border-radius: 999px 999px 8px 8px;
  pointer-events: none;
}
.profile-portrait-name {
  font-family: var(--font-serif);
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--sumi);
  opacity: 0.85;
}
.profile-ume {
  position: absolute;
  width: 34px;
  height: 34px;
  bottom: 28px;
  right: 30px;
  color: var(--enji);
}
.profile-meta { margin-top: 24px; }
.profile-role { font-size: 0.9rem; color: var(--kincha-text); letter-spacing: 0.1em; }
.profile-name {
  margin-top: 4px;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.profile-name span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--sumi-soft);
}
.profile-en { font-family: var(--font-serif); font-size: 0.85rem; letter-spacing: 0.25em; color: var(--sumi-soft); }

.story-quote {
  position: relative;
  margin: 0 0 48px;
  padding: 32px 28px;
  border-left: 4px solid var(--enji);
  background: var(--washi);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.story-quote p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 2;
  font-weight: 600;
}

.timeline { position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 36px;
  width: 2px;
  background: linear-gradient(to bottom, var(--kincha), var(--line));
}
.timeline li { position: relative; padding: 0 0 32px 92px; }
.timeline li:last-child { padding-bottom: 0; }
.tl-year {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 72px;
  height: 40px;
  border-radius: 999px;
  background: var(--sumi);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.timeline li:last-child .tl-year { background: var(--enji); }
.tl-body { margin-top: 2px; }
.tl-body h3 { font-size: 1.2rem; margin-bottom: 6px; }
.tl-body p { color: var(--sumi-soft); }

@media (min-width: 900px) {
  .story-grid { grid-template-columns: 320px 1fr; gap: 72px; align-items: start; }
  .profile { position: sticky; top: calc(var(--header-h) + 80px); }
  .story-quote p { font-size: 1.4rem; }
}

/* ---------------------------------------------------------
   施術と料金
   --------------------------------------------------------- */
.menu-grid { display: grid; gap: 22px; }
.menu-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.35s, box-shadow 0.35s;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -20px rgba(60, 40, 20, 0.55); }
.menu-name { font-size: 1.35rem; letter-spacing: 0.08em; }
.menu-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 14px 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
  color: var(--sumi-soft);
}
.menu-price {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--enji);
  letter-spacing: 0.02em;
}
.menu-price small { font-family: var(--font-sans); font-size: 0.8rem; font-weight: 500; color: var(--sumi-soft); margin-left: 2px; }
.menu-desc { flex: 1; }
.menu-for {
  margin-top: 18px;
  padding: 0.7em 1em;
  border-radius: 10px;
  background: var(--washi);
  font-size: 0.92rem;
}
.menu-for span {
  display: inline-block;
  margin-right: 0.6em;
  font-weight: 700;
  color: var(--matcha);
}

.menu-card-featured {
  position: relative;
  background:
    linear-gradient(135deg, rgba(138, 51, 66, 0.06), transparent 60%),
    var(--paper);
  border: 2px solid var(--enji);
}
.menu-badge {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 0.2em 1em;
  border-radius: 999px;
  background: var(--enji);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.menu-card-featured .menu-name { font-size: 1.6rem; }
.menu-badge-soft {
  background: var(--enji-tint);
  color: var(--enji-deep);
}

@media (min-width: 760px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-card-featured { grid-column: 1 / -1; }
}
@media (min-width: 1040px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .menu-card-featured { grid-column: span 3; }
}

.notice {
  margin-top: 48px;
  padding: 28px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.7);
}
.notice-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--enji);
}
.notice li {
  position: relative;
  padding-left: 1.3em;
  color: var(--sumi-soft);
}
.notice li + li { margin-top: 6px; }
.notice li::before {
  content: "";
  position: absolute;
  left: 0.2em;
  top: 0.85em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--kincha);
}

/* ---------------------------------------------------------
   安心の取り組み
   --------------------------------------------------------- */
.care {
  background: var(--sumi);
  color: #f3ece0;
  position: relative;
  overflow: hidden;
}
.care::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(138, 51, 66, 0.35), transparent 40%),
    radial-gradient(circle at 5% 95%, rgba(163, 122, 58, 0.22), transparent 40%);
  pointer-events: none;
}
.care .container { position: relative; }
.care .section-en { color: #d9b77a; }
.care .section-en::before, .care .section-en::after { background: #d9b77a; }

.care-grid { display: grid; gap: 18px; }
.care-item {
  padding: 30px 26px;
  border: 1px solid rgba(243, 236, 224, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}
.care-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  fill: none;
  stroke: #e2c28a;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.care-item h3 { font-size: 1.25rem; margin-bottom: 8px; color: #fff; }
.care-item p { color: #e3dacb; }

@media (min-width: 720px) { .care-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .care-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

/* ---------------------------------------------------------
   ご来店の流れ
   --------------------------------------------------------- */
.flow-list { display: grid; gap: 20px; counter-reset: flow; }
.flow-step {
  position: relative;
  padding: 32px 26px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}
.flow-num {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--enji);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
}
.flow-step h3 { font-size: 1.3rem; margin-bottom: 8px; letter-spacing: 0.12em; }
.flow-step p { text-align: left; color: var(--sumi-soft); }

@media (min-width: 960px) {
  .flow-list { grid-template-columns: repeat(4, 1fr); gap: 32px; }
  .flow-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 60px;
    right: -24px;
    width: 16px;
    height: 16px;
    border-top: 2px solid var(--kincha);
    border-right: 2px solid var(--kincha);
    transform: rotate(45deg);
  }
}

/* ---------------------------------------------------------
   お客様の声
   --------------------------------------------------------- */
.voice { background: var(--washi-deep); }
.voice-grid { display: grid; gap: 22px; }
.voice-card {
  position: relative;
  margin: 0;
  padding: 44px 28px 28px;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.voice-card::before {
  content: "“";
  position: absolute;
  top: 2px;
  left: 20px;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--enji);
  opacity: 0.35;
}
.voice-card blockquote { margin: 0; }
.voice-card blockquote p { font-size: 1.05rem; line-height: 2; }
.voice-card figcaption {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--matcha);
}
.small-note { margin-top: 24px; font-size: 0.88rem; color: var(--sumi-soft); text-align: center; }
@media (min-width: 900px) { .voice-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

/* ---------------------------------------------------------
   よくあるご質問
   --------------------------------------------------------- */
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 18px 60px 18px 20px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.6;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -9px;
  border-right: 2px solid var(--enji);
  border-bottom: 2px solid var(--enji);
  transform: rotate(45deg);
  transition: transform 0.3s, margin-top 0.3s;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq-item summary:hover { background: var(--washi); }
.faq-q, .faq-a-mark {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
}
.faq-q { background: var(--sumi); color: #fff; }
.faq-a {
  display: flex;
  gap: 16px;
  padding: 4px 24px 24px 20px;
}
.faq-a-mark { background: var(--enji-tint); color: var(--enji); }
.faq-a p { padding-top: 4px; color: var(--sumi-soft); }

/* ---------------------------------------------------------
   アクセス
   --------------------------------------------------------- */
.access-grid { display: grid; gap: 32px; }
.map-card { display: grid; gap: 16px; align-content: start; }
.map-art {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-art svg { width: 100%; height: auto; }
.map-road { fill: none; stroke: var(--washi-deep); stroke-width: 18; }
.map-rail { fill: none; stroke: var(--sumi); stroke-width: 4; stroke-dasharray: 14 8; opacity: 0.55; }
.map-station { fill: var(--paper); stroke: var(--sumi); stroke-width: 3; }
.map-route { fill: none; stroke: var(--enji); stroke-width: 4; stroke-dasharray: 2 8; stroke-linecap: round; }
.map-pin { color: var(--enji); }
.map-art text { font-family: var(--font-sans); font-size: 14px; font-weight: 700; fill: var(--sumi); }

.shop-info {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.shop-info div {
  display: grid;
  grid-template-columns: 6.5em 1fr;
  border-bottom: 1px solid var(--line);
}
.shop-info div:last-child { border-bottom: 0; }
.shop-info dt {
  padding: 16px 18px;
  background: var(--washi);
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--enji);
}
.shop-info dd { margin: 0; padding: 16px 18px; }
.shop-info dd a { font-weight: 700; font-size: 1.1em; }

@media (min-width: 900px) {
  .access-grid { grid-template-columns: 1fr 1.1fr; gap: 48px; }
}

/* ---------------------------------------------------------
   ご予約
   --------------------------------------------------------- */
.reserve {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(138, 51, 66, 0.08), transparent 60%),
    var(--washi);
  border-top: 1px solid var(--line);
}

.tel-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 28px 20px;
  border-radius: var(--radius);
  background: var(--enji);
  color: #fff;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 16px 32px -20px rgba(110, 37, 51, 0.9);
  transition: background-color 0.25s, transform 0.25s;
}
.tel-panel:hover { background: var(--enji-deep); color: #fff; transform: translateY(-2px); }
.tel-panel-label { font-size: 1rem; font-weight: 500; }
.tel-panel-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
}
.tel-panel-hours { font-size: 0.9rem; opacity: 0.95; }

.reserve-form {
  margin-top: 40px;
  padding: 36px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-intro { margin-bottom: 28px; color: var(--sumi-soft); }
.form-intro strong { color: var(--sumi); }

.field { margin: 0 0 24px; padding: 0; border: 0; min-width: 0; }
.field > label, .field legend {
  display: block;
  margin-bottom: 8px;
  padding: 0;
  font-weight: 700;
}
.req {
  display: inline-block;
  margin-left: 6px;
  padding: 0 0.6em;
  border-radius: 4px;
  background: var(--enji);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.8;
  vertical-align: 0.1em;
}
.form-intro .req { margin: 0 2px; }

.field input[type="text"],
.field input[type="tel"],
.field input[type="date"],
.field select,
.field textarea {
  width: 100%;
  min-height: 60px;
  padding: 0.7em 0.9em;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--sumi);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { line-height: 1.7; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #8b8078; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--enji);
  box-shadow: 0 0 0 4px rgba(138, 51, 66, 0.15);
}
.field.has-error input, .field.has-error select { border-color: #b3261e; }
.field-hint { margin-top: 6px; font-size: 0.88rem; color: var(--sumi-soft); }
.field-error { margin-top: 6px; font-size: 0.95rem; font-weight: 700; color: #b3261e; }
.field-error:empty { display: none; }

.field-row { display: grid; gap: 0 20px; }
@media (min-width: 720px) { .field-row { grid-template-columns: 1fr 1fr; } }

.choice-group { display: flex; flex-wrap: wrap; gap: 10px; }
.choice { position: relative; cursor: pointer; }
.choice input { position: absolute; opacity: 0; }
.choice span {
  display: grid;
  place-items: center;
  min-width: 5.5em;
  min-height: 56px;
  padding: 0 1em;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-weight: 700;
  transition: all 0.2s;
}
.choice input:checked + span { border-color: var(--enji); background: var(--enji-tint); color: var(--enji-deep); }
.choice input:focus-visible + span { outline: 3px solid var(--enji); outline-offset: 2px; }

.check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 500;
}
.check input {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  accent-color: var(--enji);
}

.btn-submit { min-height: 72px; font-size: 1.1rem; }

.form-done {
  margin-top: 40px;
  padding: 44px 28px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 2px solid var(--matcha);
  text-align: center;
}
.form-done:focus { outline: none; }
.form-done-ume { width: 56px; height: 56px; margin: 0 auto 12px; color: var(--enji); }
.form-done h3 { font-size: 1.5rem; margin-bottom: 12px; color: var(--matcha); }
.form-done p { text-align: left; }
@media (min-width: 720px) { .form-done p { text-align: center; } }

/* ---------------------------------------------------------
   フッター
   --------------------------------------------------------- */
.site-footer {
  position: relative;
  background: var(--washi-deep);
  padding-bottom: 110px; /* スマホの固定バー分 */
}
.seigaiha-footer {
  margin-top: 0;
  height: 70px;
  background-color: var(--washi-deep);
  -webkit-mask-image: linear-gradient(to top, transparent, #000 90%);
  mask-image: linear-gradient(to top, transparent, #000 90%);
}
.footer-inner {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding-top: 24px;
  text-align: center;
}
.logo-footer .logo-mark { width: 48px; height: 48px; }
.footer-address { font-size: 0.95rem; color: var(--sumi-soft); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}
.footer-links a { color: var(--sumi); font-size: 0.95rem; }
.copyright { font-size: 0.8rem; color: var(--sumi-soft); letter-spacing: 0.1em; }

@media (min-width: 720px) {
  .site-footer { padding-bottom: 48px; }
}

/* ---------------------------------------------------------
   スマホ用 固定予約バー・上へ戻る
   --------------------------------------------------------- */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(246, 241, 231, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 20px -16px rgba(60, 40, 20, 0.6);
}
.mobile-bar a {
  display: grid;
  place-items: center;
  min-height: 56px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}
.mobile-bar-tel { background: var(--enji); color: #fff; }
.mobile-bar-tel:hover { color: #fff; }
.mobile-bar-web { background: var(--paper); color: var(--enji); border: 2px solid var(--enji); }
@media (min-width: 720px) { .mobile-bar { display: none; } }

.to-top {
  position: fixed;
  right: 16px;
  bottom: 96px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--sumi);
  color: #fff;
  text-decoration: none;
  line-height: 1.1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
.to-top:hover { color: #fff; background: var(--enji); }
.to-top.is-shown { opacity: 1; visibility: visible; transform: none; }
.to-top span[aria-hidden] { font-size: 1.1rem; }
.to-top-text { font-size: 0.68rem; font-weight: 700; }
@media (min-width: 720px) { .to-top { bottom: 28px; right: 28px; } }

/* ---------------------------------------------------------
   下層ページ（プライバシーポリシー）
   --------------------------------------------------------- */
.page-head { padding: 64px 0 24px; text-align: center; }
.legal {
  padding: 36px 24px;
  margin-bottom: 88px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.legal h2 {
  margin: 36px 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--enji);
  font-size: 1.25rem;
}
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { color: var(--sumi-soft); }
.legal ul { margin-top: 8px; }
.legal li { position: relative; padding-left: 1.2em; }
.legal li::before { content: "・"; position: absolute; left: 0; }
.legal .legal-date { margin-top: 40px; text-align: right; }
.back-link { display: inline-block; margin-bottom: 20px; font-weight: 700; }

/* 動きを控えたい方の設定を尊重 */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .js .enso-stroke { stroke-dashoffset: 0; }
}

@media print {
  .site-header, .mobile-bar, .to-top, .seigaiha, .hero-visual { display: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}
