:root {
  --text: #111;
  --soft-text: #5d5852;
  --paper: #ffffff;
  --warm: #f7f3ed;
  --line: #e5ded3;
  --gold: #ad926a;
  --gold-dark: #77654b;
  --black: #050505;
  --font-mincho: "Zen Old Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --font-sans: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-mincho);
  font-size: 16px;
  line-height: 2;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 280px 1fr auto auto;
  align-items: center;
  min-height: 94px;
  padding: 0 clamp(22px, 4vw, 60px);
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0));
}

.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.header-logo-image {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.36));
}

.header-logo-text {
  display: inline-flex;
  flex-direction: column;
}

.logo-main,
.footer-logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-style: italic;
  letter-spacing: 0.04em;
}

.logo-main {
  white-space: nowrap;
  transform: translateY(-3px);
}

.logo-ja {
  margin-left: 4px;
  font-family: var(--font-mincho);
  font-size: 0.42em;
  font-style: normal;
  letter-spacing: 0.08em;
}

.logo-sub {
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  transform: translateY(3px);
}

.global-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 2.7vw, 42px);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.global-nav a {
  transition: color 180ms ease;
}

.global-nav a:hover {
  color: var(--gold);
}

.header-tel {
  justify-self: end;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: clamp(16px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  white-space: nowrap;
  transition: color 180ms ease;
}

.header-tel:hover {
  color: var(--gold);
}

.header-reserve {
  justify-self: end;
  display: inline-flex;
  min-width: 82px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--font-mincho);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  white-space: nowrap;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.header-reserve:hover {
  border-color: #701f24;
  color: #fff;
  background: #701f24;
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background: var(--black);
}

.hero-slider {
  position: absolute;
  z-index: 1;
  top: clamp(96px, 12vh, 132px);
  right: clamp(22px, 5vw, 78px);
  bottom: clamp(42px, 7vh, 78px);
  width: min(46vw, 590px);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: blur(14px);
  animation: heroSlide 24s ease-in-out infinite;
  will-change: opacity, filter;
}

.hero-image-1 {
  animation-delay: 0s;
}

.hero-image-2 {
  animation-delay: 8s;
}

.hero-image-3 {
  animation-delay: 16s;
}

.hero::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.82) 38%, rgba(0, 0, 0, 0.16) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.48));
}

.hero-overlay {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: clamp(22px, 7vw, 104px);
  display: grid;
  width: min(39vw, 510px);
  align-content: center;
  justify-items: start;
  padding: 178px 0 54px;
  color: #fff;
  text-align: left;
  animation: calmAppear 1800ms ease-out both;
}

.hero-place {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.68);
}

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

h1 {
  display: grid;
  justify-items: start;
  gap: 8px;
  margin: 0;
  line-height: 1;
}

.hero-watermark-logo {
  position: absolute;
  z-index: 3;
  right: clamp(-154px, -9vw, -63px);
  top: calc(54% + 30px);
  display: none;
  width: clamp(294px, 29.4vw, 448px);
  height: auto;
  border-radius: 50%;
  opacity: 0.15;
  filter: grayscale(0.25) contrast(0.9);
  transform: translateY(-50%);
}

.hero-title-small {
  font-family: var(--font-mincho);
  font-size: clamp(18px, 2.5vw, 34px);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.34em;
  color: rgba(255, 255, 255, 0.86);
}

.hero-title-large {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(82px, 12vw, 148px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.92;
}

.hero-copy {
  max-width: 420px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(14px, 1.3vw, 18px);
  letter-spacing: 0.16em;
  line-height: 2;
}

@keyframes heroSlide {
  0% {
    opacity: 0;
    filter: blur(14px);
  }
  4.167% {
    opacity: 1;
    filter: blur(14px);
  }
  8.333% {
    opacity: 1;
    filter: blur(0);
  }
  33.333% {
    opacity: 1;
    filter: blur(0);
  }
  37.5% {
    opacity: 1;
    filter: blur(14px);
  }
  41.667% {
    opacity: 0;
    filter: blur(14px);
  }
  100% {
    opacity: 0;
    filter: blur(14px);
  }
}

@keyframes calmAppear {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.news-strip {
  display: grid;
  grid-template-columns: 116px 1fr;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.news-strip > * {
  min-height: 74px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
  padding: 16px 24px;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.7;
}

.news-label {
  justify-content: center;
  color: #fff;
  background: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.14em;
}

.news-strip p {
  margin: 0;
  color: var(--soft-text);
}

.section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(82px, 10vw, 146px) 0;
}

.section-title {
  margin-bottom: clamp(36px, 5vw, 76px);
  text-align: center;
}

.section-title p,
.small-title,
.gallery-head p {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: 0.14em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.concept-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(340px, 0.82fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: center;
}

.concept-photo {
  width: min(100%, 560px);
  overflow: hidden;
}

.concept-photo img {
  aspect-ratio: 5 / 3.55;
  object-fit: cover;
}

.concept-text {
  color: var(--soft-text);
}

.concept-text p {
  margin-bottom: 24px;
}

.text-link {
  display: inline-block;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.08em;
}

.menu-guide {
  padding-top: 0;
  text-align: center;
}

.menu-guide-copy {
  width: min(760px, 100%);
  margin: 0 auto;
}

.menu-guide-copy h2 {
  font-size: clamp(27px, 3.6vw, 43px);
}

.menu-guide-copy p:not(.small-title) {
  width: min(680px, 100%);
  margin: 26px auto 0;
  color: var(--soft-text);
  line-height: 2.25;
}

.menu-photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: min(760px, calc(100% - 40px));
  margin: clamp(30px, 4vw, 46px) auto 0;
}

.menu-photo-row img {
  aspect-ratio: 4 / 2.8;
  object-fit: cover;
}

.three-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1.3vw, 16px);
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px) 0 0;
}

.menu-button {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  border: 1px solid #5a2105;
  color: #5a2105;
  background: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 400;
  letter-spacing: 0.16em;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.menu-button:hover {
  color: #fff;
  background: #701f24;
  transform: translateY(-2px);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 0.78fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

#wine {
  padding-bottom: clamp(42px, 6vw, 78px);
}

.split-copy h2,
.space-copy h2 {
  margin-bottom: 26px;
}

.split-copy p,
.space-copy p {
  color: var(--soft-text);
}

.simple-list {
  margin: 34px 0 0;
}

.simple-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

dt {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.12em;
}

dd {
  margin: 0;
  color: var(--soft-text);
}

.split-image img {
  height: min(42vw, 440px);
  object-fit: cover;
}

.space-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  padding: clamp(42px, 6vw, 78px) clamp(24px, 6vw, 86px) clamp(82px, 10vw, 150px);
}

.space-image img {
  width: min(100%, 620px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.space-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.space-list li {
  border-top: 1px solid var(--line);
  padding: 15px 0;
  color: var(--soft-text);
}

.gallery-section {
  padding: clamp(82px, 10vw, 140px) clamp(24px, 6vw, 86px);
  background: #111;
  color: #fff;
}

.gallery-head {
  margin-bottom: 44px;
  text-align: center;
}

.gallery-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1.2fr;
  gap: clamp(12px, 2vw, 28px);
  width: min(1120px, 100%);
  margin: 0 auto;
}

.gallery-grid img {
  height: min(26vw, 330px);
  min-height: 210px;
  object-fit: cover;
}

.review-section {
  padding: clamp(82px, 10vw, 140px) clamp(24px, 6vw, 86px);
  background: #fbfaf7;
}

.review-head {
  margin-bottom: clamp(42px, 6vw, 76px);
  text-align: center;
}

.review-head p {
  margin-bottom: 8px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: 0.22em;
}

.review-head h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.5;
}

.review-layout {
  width: min(760px, 100%);
  margin: 0 auto;
}

.review-stars {
  color: #f0aa16;
  font-family: var(--font-sans);
  font-size: 17px;
  letter-spacing: 0.05em;
  line-height: 1;
}

.review-cards {
  display: grid;
  gap: 14px;
  max-height: 425px;
  overflow-y: auto;
  padding: 4px 8px 4px 4px;
}

.review-card {
  min-height: 0;
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 50px rgba(80, 64, 42, 0.08);
}

.review-card-head {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.review-avatar {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0.04em;
}

.review-card h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.review-card-head p {
  margin: 2px 0 0;
  color: rgba(93, 88, 82, 0.72);
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.4;
}

.review-text {
  margin-top: 12px;
  color: #38332d;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.82;
}

.review-text summary {
  display: block;
  cursor: pointer;
  list-style: none;
}

.review-text summary::-webkit-details-marker {
  display: none;
}

.review-text-preview {
  display: -webkit-box;
  width: 28em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.review-text p {
  display: none;
  margin: 0;
}

.review-more {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold-dark);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
}

.review-text[open] p {
  display: block;
  width: min(100%, 28em);
}

.review-text[open] .review-text-preview {
  display: none;
}

.review-text[open] .review-more {
  display: none;
}

.review-close {
  display: none;
  margin-top: 16px;
  border: 0;
  padding: 0;
  color: var(--gold-dark);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.review-text[open] .review-close {
  display: inline-block;
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}

.access-list {
  margin: 0;
}

.access-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.access-list a {
  color: var(--gold-dark);
  font-weight: 600;
}

.reservation-box {
  border: 1px solid var(--line);
  padding: 38px 34px;
  text-align: center;
}

.reservation-box p {
  margin-bottom: 18px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  letter-spacing: 0.12em;
}

.reservation-box a {
  display: block;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.reservation-box span {
  display: block;
  color: var(--soft-text);
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.8;
}

.site-footer {
  padding: 72px 24px 34px;
  background: #000;
  color: #fff;
  text-align: center;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 30px;
}

.footer-logo img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  border-radius: 50%;
}

.site-footer p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 32px;
  margin: 34px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.site-footer small {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-sans);
}

.page-top {
  position: fixed;
  z-index: 30;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 38px);
  display: inline-flex;
  min-width: 116px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(8, 8, 8, 0.62);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26), inset 0 0 0 1px rgba(173, 146, 106, 0.18);
  backdrop-filter: blur(12px);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.page-top:hover {
  border-color: rgba(173, 146, 106, 0.95);
  color: #fff;
  background: rgba(0, 0, 0, 0.76);
  transform: translateY(-2px);
}

.page-top span {
  color: #fff;
  text-shadow: 0 0 12px rgba(173, 146, 106, 0.7);
  font-size: 14px;
  line-height: 1;
}

.floating-reserve {
  position: fixed;
  z-index: 31;
  right: clamp(138px, 12vw, 178px);
  bottom: clamp(18px, 3vw, 38px);
  display: none;
  min-width: 108px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(173, 146, 106, 0.72);
  border-radius: 999px;
  color: #fff;
  background: rgba(112, 31, 36, 0.86);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
  font-family: var(--font-mincho);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.sub-header {
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(12px);
}

.sub-header .header-logo-image {
  filter: none;
}

.sub-header .header-tel {
  border-left-color: var(--line);
  color: var(--text);
}

.sub-header .header-reserve {
  border-color: #5a2105;
  color: #5a2105;
  background: transparent;
}

.sub-header .header-reserve:hover {
  border-color: #701f24;
  color: #fff;
  background: #701f24;
}

.sub-page {
  background: #fff;
}

.sub-hero {
  padding: 146px 24px 64px;
  background: #080706;
  color: #fff;
  text-align: center;
}

.sub-hero p {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.16em;
}

.sub-hero h1 {
  display: block;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 92px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
}

.sub-hero span {
  display: block;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.08em;
}

.sub-content {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(76px, 9vw, 128px) 0;
}

.sub-lead {
  width: min(760px, 100%);
  margin: 0 auto clamp(52px, 6vw, 82px);
  text-align: center;
}

.sub-lead h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.sub-lead p {
  margin: 24px auto 0;
  color: var(--soft-text);
  line-height: 2.2;
}

.sub-menu-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.sub-menu-list article {
  min-width: 0;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.sub-menu-list span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.sub-menu-list h3 {
  margin: 14px 0 10px;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.6;
}

.sub-menu-list p {
  margin: 0;
  color: var(--soft-text);
  line-height: 1.9;
}

.course-list {
  border-top: 1px solid var(--line);
}

.course-item {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 176px;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: clamp(34px, 5vw, 56px) 0;
}

.course-image {
  overflow: hidden;
}

.course-image img {
  aspect-ratio: 1 / 0.88;
  object-fit: cover;
}

.course-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.course-rank,
.course-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid var(--line);
  padding: 3px 10px;
  color: var(--gold-dark);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.course-rank {
  border-color: rgba(173, 146, 106, 0.34);
  color: #fff;
  background: var(--gold);
}

.course-body h3 {
  margin: 0;
  color: #1f1b18;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.65;
}

.course-body p {
  margin: 18px 0 0;
  color: var(--soft-text);
  line-height: 2.05;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 0;
}

.course-meta div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--soft-text);
}

.course-meta dt {
  color: var(--gold-dark);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
}

.course-meta dd {
  margin: 0;
}

.course-action {
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

.course-action strong {
  display: block;
  margin-bottom: 6px;
  color: #5a2105;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  line-height: 1;
  text-align: right;
}

.course-action strong span {
  margin-left: 5px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
}

.reserve-button,
.detail-button {
  display: flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #5a2105;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.reserve-button {
  color: #fff;
  background: #5a2105;
}

.detail-button {
  color: #5a2105;
  background: transparent;
}

.reserve-button:hover,
.detail-button:hover {
  transform: translateY(-2px);
}

.detail-button:hover {
  color: #fff;
  background: #701f24;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    min-height: 74px;
    padding: 14px 22px;
  }

  .global-nav {
    display: none;
  }

  .header-tel {
    padding-left: 0;
    border-left: 0;
    font-size: 12px;
  }

  .header-reserve {
    min-width: 70px;
    height: 32px;
    font-size: 11px;
  }

  .logo-main {
    font-size: 28px;
  }

  .header-logo-image {
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-slider {
    top: 96px;
    right: 22px;
    bottom: auto;
    left: 22px;
    width: auto;
    height: min(38vh, 320px);
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.16) 38%, rgba(0, 0, 0, 0.92) 78%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.28));
  }

  .hero-overlay {
    top: calc(96px + min(38vh, 320px) + 30px);
    right: 28px;
    bottom: auto;
    left: 28px;
    width: auto;
    align-content: start;
    padding: 0;
  }

  .news-strip,
  .concept-layout,
  .three-links,
  .split-feature,
  .space-section,
  .access-layout,
  .sub-menu-list {
    grid-template-columns: 1fr;
  }

  .news-strip > * {
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .news-label {
    min-height: 52px;
  }

  .link-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .link-card img {
    height: 240px;
  }

  .three-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: calc(100% - 32px);
    padding: 32px 0 44px;
  }

  .menu-photo-row {
    width: min(760px, calc(100% - 32px));
  }

  .menu-button {
    min-height: 48px;
    padding: 0 6px;
    font-size: clamp(11px, 2.9vw, 13px);
    letter-spacing: 0.1em;
  }

  .split-image img {
    height: auto;
    width: min(100%, 560px);
    aspect-ratio: 16 / 10;
  }

  #wine {
    padding-bottom: 34px;
  }

  .space-section {
    padding-top: 34px;
  }

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

  .review-layout {
    width: min(720px, 100%);
  }

  .review-cards {
    max-height: 415px;
  }

  .sub-hero {
    padding-top: 112px;
  }

  .course-item {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 28px;
  }

  .course-action {
    grid-column: 2;
    grid-template-columns: minmax(130px, auto) repeat(2, minmax(130px, 1fr));
    align-items: center;
  }

  .course-action strong {
    margin: 0;
    text-align: left;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 14px;
  }

  .hero {
    height: 100svh;
    min-height: 700px;
  }

  .hero-watermark-logo {
    display: block;
    right: -78px;
    top: calc(67% + 30px);
    width: clamp(217px, 60vw, 273px);
    opacity: 0.15;
  }

  h1 {
    gap: 2px;
  }

  .hero-title-small {
    font-size: clamp(18px, 6vw, 28px);
  }

  .hero-title-large {
    font-size: clamp(64px, 22vw, 96px);
  }

  .hero-copy {
    margin-top: 12px;
    letter-spacing: 0.14em;
    line-height: 1.65;
  }

  .section {
    width: min(100% - 34px, 1120px);
  }

  h2 {
    font-size: 25px;
    line-height: 1.7;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding: 12px 14px;
  }

  .sub-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .header-logo {
    gap: 8px;
    min-width: 0;
    overflow: hidden;
  }

  .header-logo-image {
    width: 38px;
    height: 38px;
  }

  .logo-main {
    font-size: 20px;
  }

  .header-tel {
    display: block;
    color: currentColor;
    font-size: 10px;
    letter-spacing: 0.02em;
  }

  .sub-header .header-tel {
    color: var(--text);
  }

  .header-reserve {
    min-width: 58px;
    height: 30px;
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .simple-list div,
  .access-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .news-strip > * {
    padding: 14px 18px;
  }

  .menu-photo-row {
    width: 100%;
    margin-top: 26px;
  }

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

  .gallery-grid img {
    height: auto;
    min-height: 0;
    width: min(100%, 560px);
    margin: 0 auto;
    aspect-ratio: 16 / 9.5;
  }

  .review-section {
    padding: 68px 17px 76px;
  }

  .review-head {
    margin-bottom: 32px;
  }

  .review-cards {
    gap: 12px;
    max-height: 390px;
    padding: 4px 6px 4px 4px;
  }

  .review-card {
    padding: 20px 20px;
  }

  .review-text-preview {
    width: min(28em, 100%);
  }

  .sub-content {
    width: min(100% - 34px, 1120px);
    padding: 64px 0 86px;
    overflow-x: hidden;
  }

  .sub-hero {
    padding: 96px 20px 46px;
  }

  .sub-hero h1 {
    display: block;
    max-width: 100%;
    font-size: clamp(46px, 16vw, 72px);
    text-align: center;
    overflow-wrap: anywhere;
  }

  .sub-hero span {
    margin-top: 22px;
    font-size: 13px;
  }

  .sub-lead {
    margin-bottom: 38px;
    text-align: left;
  }

  .sub-lead p {
    line-height: 2;
  }

  .course-item {
    grid-template-columns: 1fr;
    min-width: 0;
    gap: 22px;
    padding: 34px 0;
  }

  .course-body,
  .course-action,
  .sub-menu-list article {
    min-width: 0;
  }

  .course-image {
    width: min(100%, 360px);
  }

  .course-image img {
    aspect-ratio: 16 / 10;
  }

  .course-body h3 {
    font-size: 22px;
  }

  .course-body p {
    line-height: 1.95;
  }

  .course-action {
    grid-column: auto;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .course-action strong {
    grid-column: 1 / -1;
    font-size: 32px;
  }

  .reserve-button,
  .detail-button {
    font-size: 13px;
    letter-spacing: 0.04em;
  }

  .reservation-box {
    padding: 30px 22px;
  }

  .page-top {
    min-width: 104px;
    height: 38px;
    font-size: 11px;
  }

  .floating-reserve {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-image,
  .hero-overlay {
    animation: none;
  }

  .hero-image-1 {
    opacity: 0.9;
  }
}
