:root {
  --cream:       #fbf6f0;
  --blush:       #f6e9e4;
  --blush-deep:  #efdad2;
  --champ:       #f4ead6;
  --white:       #ffffff;
  --rose:        #9d4b58;
  --rose-hover:  #853c48;
  --wine:        #582734;
  --mauve:       #7d5763;
  --gold:        #a9863f;
  --gold-line:   #cdb079;
  --ink:         #2f2529;
  --text:        #2f2529;
  --text-soft:   #877673;
  --text-muted:  #b6a29d;
  --border:      #e7d7d0;
  --img-ph:      #e4d2cb;
  --container:   1180px;
  --section-pad: 108px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.9;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: "Shippori Mincho", "Noto Serif JP", serif; font-weight: 500; }
a { text-decoration: none; color: inherit; }
img { display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 44px;
}

.en {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 240, 0.92);
  backdrop-filter: saturate(1.1) blur(6px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 32px;
}
.logo-block { flex: none; }
.logo-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1.1;
  display: block;
}
.logo-sub {
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--gold);
  font-weight: 400;
  display: block;
  text-transform: uppercase;
  margin-top: 2px;
}
.site-nav { display: flex; gap: 30px; margin-left: auto; margin-right: 8px; }
.site-nav a {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  position: relative;
  transition: color 0.18s;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { width: 100%; }
.btn-book {
  flex: none;
  background: var(--rose);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 12px 26px;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-book:hover { background: var(--rose-hover); }

/* ===== BUTTONS ===== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--rose);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 17px 44px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.btn-cta:hover { background: var(--rose-hover); transform: translateY(-1px); }
.btn-cta .arrow { font-size: 16px; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 17px 8px;
  border-bottom: 1px solid var(--gold-line);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
.btn-cta-light {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--champ);
  color: var(--wine);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 17px 52px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.btn-cta-light:hover { background: #fff; transform: translateY(-1px); }

/* ===== HERO (editorial cover) ===== */
.hero { background: var(--cream); overflow: hidden; }
.hero-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
  padding: clamp(56px, 7vw, 104px) 0 clamp(64px, 8vw, 112px);
}
.hero-figure { position: relative; order: -1; }
.hero-figure::before {
  content: '';
  position: absolute;
  top: 24px; left: 24px; right: -24px; bottom: -24px;
  border: 1px solid var(--gold-line);
  z-index: 0;
}
.hero-figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 26px;
}
.hero-kicker::before {
  content: '';
  width: 34px; height: 1px;
  background: var(--gold-line);
}
.hero-title {
  font-size: clamp(29px, 3.6vw, 47px);
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin-bottom: 26px;
}
.hero-lede {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 2.15;
  max-width: 30em;
  margin-bottom: 34px;
}
.hero-offer {
  display: flex;
  align-items: center;
  gap: 22px;
  border: 1px solid var(--gold-line);
  background: rgba(255, 255, 255, 0.55);
  padding: 20px 26px;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-offer .offer-mark {
  flex: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
  border-right: 1px solid var(--gold-line);
  padding-right: 18px;
  line-height: 1;
}
.offer-label { font-size: 12.5px; color: var(--text-soft); margin-bottom: 4px; }
.offer-price {
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.offer-price .now {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.02em;
}
.offer-price .old { font-size: 12px; color: var(--text-muted); text-decoration: line-through; }
.offer-price .badge {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--wine);
  padding: 2px 9px;
  border-radius: 2px;
}
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  background: var(--champ);
  padding: 66px 0 58px;
  text-align: center;
  border-bottom: 1px solid var(--gold-line);
  position: relative;
}
.page-hero::before,
.page-hero::after {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 46px; height: 1px;
  background: var(--gold-line);
}
.page-hero::before { top: 30px; }
.page-hero::after  { bottom: 30px; }
.page-hero .eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.page-hero h1 {
  font-size: 28px;
  letter-spacing: 0.07em;
  color: var(--ink);
  margin-bottom: 14px;
}
.page-hero p { font-size: 13.5px; color: var(--text-soft); }
.breadcrumb { font-size: 12px; color: var(--text-muted); margin-top: 12px; }
.breadcrumb a { color: var(--text-soft); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--gold); }

/* ===== SECTION BASE ===== */
.section { padding: var(--section-pad) 0; background: var(--cream); }
.sec-cream { background: var(--cream); }
.sec-blush { background: var(--blush); }
.sec-champ { background: var(--champ); }

.kicker {
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  text-align: center;
  margin-bottom: 16px;
}
.section-heading {
  text-align: center;
  font-size: 29px;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 18px;
}
.section-sub {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 2;
  max-width: 40em;
  margin: 0 auto 60px;
}
.heading-block { margin-bottom: 60px; }
.heading-block .section-sub { margin-bottom: 0; }

/* ===== CONCEPT ===== */
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 84px);
  align-items: center;
}
.concept-figure { position: relative; }
.concept-figure::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px; left: 20px; bottom: 20px;
  border: 1px solid var(--gold-line);
  z-index: 0;
}
.concept-figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 40%;
}
.concept-text .kicker { text-align: left; }
.concept-text h2 {
  font-size: 27px;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 28px;
  line-height: 1.75;
}
.concept-text p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 2.15;
  margin-bottom: 20px;
}
.concept-sign {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-top: 30px;
}

/* ===== FLOW (numbered timeline) ===== */
.flow-timeline { max-width: 780px; margin: 0 auto; }
.flow-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 30px;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}
.flow-item:last-child { border-bottom: none; }
.flow-no {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.flow-h {
  font-family: "Shippori Mincho", serif;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.flow-p { font-size: 13.5px; color: var(--text-soft); line-height: 1.95; }

/* ===== MENU LIST ===== */
.menu-list { max-width: 980px; margin: 0 auto; }
.menu-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--gold-line);
}
.menu-item:last-child { border-bottom: 1px solid var(--gold-line); }
.menu-item:nth-child(even) { grid-template-columns: 1fr 280px; }
.menu-photo { position: relative; }
.menu-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 40%;
}
.menu-item:nth-child(even) .menu-photo { order: 2; }
.menu-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.menu-name {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.menu-desc {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 2;
  margin-bottom: 18px;
}
.menu-meta {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.menu-time {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.menu-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  letter-spacing: 0.04em;
  color: var(--rose);
  margin-left: auto;
}

/* ===== CAMPAIGN (bordeaux締め) ===== */
.campaign {
  background: var(--wine);
  color: #f0e2dd;
  text-align: center;
  padding: var(--section-pad) 0;
  position: relative;
}
.campaign .kicker { color: var(--gold-line); }
.campaign-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  border: 1px solid rgba(205, 176, 121, 0.6);
  color: var(--gold-line);
  padding: 5px 22px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.campaign h2 {
  font-size: 27px;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 4px;
}
.campaign-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold-line);
  line-height: 1.1;
  display: block;
  margin: 6px 0 4px;
}
.campaign-note {
  font-size: 13px;
  color: rgba(240, 226, 221, 0.75);
  line-height: 1.9;
  margin-bottom: 36px;
}
.campaign-note strong { color: var(--white); }
.campaign-note .old { text-decoration: line-through; opacity: 0.6; font-size: 12.5px; }

/* ===== VOICE (editorial quotes) ===== */
.voice-list { max-width: 840px; margin: 0 auto; }
.voice-item {
  position: relative;
  padding: 36px 0 36px 62px;
  border-bottom: 1px solid var(--border);
}
.voice-item:last-child { border-bottom: none; }
.voice-item::before {
  content: '\201C';
  position: absolute;
  left: 0; top: 30px;
  font-family: "Cormorant Garamond", serif;
  font-size: 66px;
  line-height: 1;
  color: var(--gold-line);
}
.voice-text {
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  color: var(--ink);
  line-height: 2.1;
  margin-bottom: 14px;
}
.voice-name { font-size: 12.5px; color: var(--text-muted); letter-spacing: 0.04em; }

/* ===== RESERVE ===== */
.reserve { background: var(--blush); text-align: center; padding: var(--section-pad) 0; }
.reserve h2 {
  font-size: 27px;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.7;
}
.reserve p { font-size: 14px; color: var(--text-soft); line-height: 2; margin-bottom: 36px; }
.reserve-actions { display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap; }
.reserve-tel {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.reserve-tel .tel-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.reserve-tel .tel-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.05em;
  display: block;
}
.reserve-tel .tel-hours { font-size: 12.5px; color: var(--text-soft); margin: 6px 0 0; }

/* ===== ACCESS ===== */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
.map-wrap { width: 100%; aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid var(--gold-line); }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.access-info { padding-top: 6px; }
.access-info h3 { font-size: 18px; letter-spacing: 0.04em; margin-bottom: 22px; color: var(--ink); }
.access-row {
  display: flex;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.access-row:first-of-type { border-top: 1px solid var(--border); }
.access-row-label {
  flex: none;
  width: 84px;
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 3px;
}
.access-row-value { color: var(--text); line-height: 1.85; }

/* ===== FOOTER ===== */
.site-footer { background: var(--ink); padding: 60px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  margin-bottom: 24px;
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-info { font-size: 12px; color: rgba(255, 255, 255, 0.42); line-height: 2.05; }
.footer-col-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-line);
  margin-bottom: 18px;
}
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; }
.footer-links a { font-size: 12.5px; color: rgba(255, 255, 255, 0.5); transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }
.footer-sns { display: flex; gap: 14px; margin-top: 2px; }
.sns-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(205, 176, 121, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-line);
  font-size: 13px;
  font-family: "Cormorant Garamond", serif;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.sns-icon:hover { border-color: var(--gold-line); color: var(--ink); background: var(--gold-line); }
.footer-copy { text-align: center; font-size: 11px; color: rgba(255, 255, 255, 0.28); letter-spacing: 0.04em; }

/* ===== STICKY CTA (追従) ===== */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  display: none;
  align-items: stretch;
  background: rgba(88, 39, 52, 0.97);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(205, 176, 121, 0.4);
}
.sticky-cta .sticky-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 18px;
  color: #f0e2dd;
}
.sticky-cta .sticky-label { font-size: 10.5px; letter-spacing: 0.08em; color: var(--gold-line); }
.sticky-cta .sticky-price { font-family: "Shippori Mincho", serif; font-size: 15px; color: var(--white); }
.sticky-cta .sticky-btn {
  flex: none;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-line);
  color: var(--wine);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0 26px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  :root { --section-pad: 74px; }
  .container { padding: 0 24px; }
  .site-nav { display: none; }
  .header-inner { height: 62px; }
  .logo-name { font-size: 21px; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 44px 0 56px; }
  .hero-figure { order: 0; }
  .hero-figure::before { top: 16px; left: 16px; right: -16px; bottom: -16px; }
  .hero-figure img { aspect-ratio: 4 / 3; object-position: center 22%; }
  .hero-title { font-size: 27px; }
  .hero-offer { max-width: none; }

  .concept-grid { grid-template-columns: 1fr; gap: 36px; }
  .concept-figure { order: -1; }
  .concept-figure::before { top: -14px; right: -14px; left: 14px; bottom: 14px; }
  .concept-figure img { aspect-ratio: 4 / 3; }
  .concept-text .kicker { text-align: center; }
  .concept-text h2 { text-align: center; }

  .section-heading { font-size: 23px; }

  .menu-item { grid-template-columns: 1fr; gap: 20px; padding: 32px 0; }
  .menu-item:nth-child(even) .menu-photo { order: -1; }
  .menu-photo { order: -1; }
  .menu-photo img { aspect-ratio: 16 / 9; }

  .flow-item { grid-template-columns: 54px 1fr; gap: 20px; }
  .flow-no { font-size: 30px; }

  .voice-item { padding-left: 46px; }

  .campaign-price { font-size: 44px; }
  .reserve-actions { flex-direction: column; gap: 16px; }

  .access-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .sticky-cta { display: flex; }
  body { padding-bottom: 60px; }
}

@media (max-width: 480px) {
  .hero-offer { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero-offer .offer-mark { writing-mode: horizontal-tb; border-right: none; border-bottom: 1px solid var(--gold-line); padding-right: 0; padding-bottom: 8px; width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-cta { justify-content: center; }
  .btn-ghost { justify-content: center; }
}
