@charset "UTF-8";

:root {
  /* Colors - Modern, stylish dark green-black base */
  --bg-dark: #0e1411;
  --bg-mid: #151e19;
  --bg-light: #1d2721;

  --green-dark: #0f2c1d;
  --green-main: #1a5938;
  --green-light: #258252;
  --green-pale: rgba(26, 89, 56, 0.15);

  --gold-accent: #d4af37;
  /* スタイリッシュで輝きのあるゴールド */

  --text-main: #f0f2f1;
  --text-mid: #aeb5b1;
  --text-light: #838a86;

  /* Fonts */
  --font-display: 'Cormorant Garamond', serif;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--bg-dark);
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg-dark);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.sp-only {
  display: none;
}

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

  .sp-only {
    display: block;
  }

  .pc-only {
    display: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s cubic-bezier(.25, .46, .45, .94), transform 1s cubic-bezier(.25, .46, .45, .94);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s cubic-bezier(.25, .46, .45, .94), transform 1s cubic-bezier(.25, .46, .45, .94);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s cubic-bezier(.25, .46, .45, .94), transform 1s cubic-bezier(.25, .46, .45, .94);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.section-label {
  font-family: var(--font-heading);
  font-size: .65rem;
  letter-spacing: .4em;
  color: var(--gold-accent);
  /* アクセントとしてゴールド */
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.accent-line {
  width: 40px;
  height: 1px;
  background: var(--green-light);
  margin: 24px auto;
  opacity: 0.6;
}

.accent-line-left {
  margin-left: 0;
}

.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 60px);
}

.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .1em;
  text-decoration: none;
  font-weight: 400;
  height: 56px;
  padding: 0 44px;
  background: var(--green-main);
  color: #fff;
  border: 1px solid var(--green-main);
  transition: all .3s ease;
  white-space: nowrap;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(18, 69, 42, 0.2);
}

.btn-green:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  box-shadow: 0 6px 20px rgba(29, 107, 66, 0.4);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .1em;
  text-decoration: none;
  font-weight: 500;
  height: 56px;
  padding: 0 44px;
  background: var(--gold-accent);
  color: var(--bg-dark);
  border: 1px solid var(--gold-accent);
  transition: all .3s ease;
  white-space: nowrap;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold-accent);
  box-shadow: none;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .1em;
  text-decoration: none;
  font-weight: 400;
  height: 56px;
  padding: 0 44px;
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all .3s ease;
  white-space: nowrap;
  border-radius: 2px;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold-accent);
  color: #fff;
}

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background .4s, box-shadow .4s, padding .4s;
}

#site-header.scrolled {
  background: rgba(3, 4, 4, .95);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .05);
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 3%;
  transition: padding .4s;
}

#site-header.scrolled .header-inner {
  padding-top: 14px;
  padding-bottom: 14px;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--text-main);
  text-decoration: none;
  transition: color .3s;
}

.site-logo span {
  display: block;
  font-family: var(--font-body);
  font-size: .45em;
  letter-spacing: .25em;
  color: var(--gold-accent);
  font-weight: 300;
  margin-top: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

.pc-nav {
  display: flex;
  gap: clamp(16px, 2.2vw, 32px);
}

nav.pc-nav a {
  font-family: var(--font-heading);
  font-size: .65rem;
  letter-spacing: .2em;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color .3s;
}

nav.pc-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green-light);
  transition: width .3s;
}

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

nav.pc-nav a:hover::after {
  width: 100%;
}

.btn-header-reserve {
  font-family: var(--font-body);
  font-size: .65rem;
  letter-spacing: .1em;
  text-decoration: none;
  padding: 10px 24px;
  border: 1px solid var(--green-main);
  color: #fff;
  background: var(--green-main);
  transition: all .3s;
  white-space: nowrap;
  border-radius: 2px;
}

.btn-header-reserve:hover {
  background: var(--green-light);
  border-color: var(--green-light);
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 2100;
}

.hamburger-btn span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--text-main);
  transition: transform .3s, background .3s, opacity .3s;
}

.hamburger-btn.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

#sp-menu {
  position: fixed;
  inset: 0;
  background: rgba(3, 4, 4, .98);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.77, 0, .175, 1);
}

#sp-menu.open {
  transform: translateX(0);
}

#sp-menu nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: center;
}

#sp-menu nav a {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 5vw, 1.6rem);
  font-weight: 300;
  letter-spacing: .25em;
  color: var(--text-main);
  text-decoration: none;
  text-transform: uppercase;
  transition: color .3s;
}

#sp-menu nav a:hover {
  color: var(--gold-accent);
}

#fv {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
}

.fv-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.fv-bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: bgFade 18s infinite ease-in-out;
}

.fv-bg-slide:nth-child(1) {
  animation-delay: 0s;
}

.fv-bg-slide:nth-child(2) {
  animation-delay: 6s;
}

.fv-bg-slide:nth-child(3) {
  animation-delay: 12s;
}

@media (max-width: 767px) {
  .fv-bg-slide:nth-child(1) {
    object-position: 80% 50%;
  }
}

@keyframes bgFade {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }

  10% {
    opacity: 1;
    transform: scale(1.05);
  }

  33% {
    opacity: 1;
    transform: scale(1.02);
  }

  43% {
    opacity: 0;
    transform: scale(1.0);
  }

  100% {
    opacity: 0;
  }
}

#fv::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(14, 20, 17, .55) 0%, rgba(14, 20, 17, .2) 55%, rgba(14, 20, 17, .72) 100%);
  z-index: 2;
  pointer-events: none;
}

#fv::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(26, 89, 56, .4) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.fv-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  padding: clamp(40px, 8vw, 100px) clamp(24px, 6vw, 100px);
}

.fv-eyebrow {
  font-family: var(--font-heading);
  font-size: clamp(.75rem, 1.2vw, .95rem);
  letter-spacing: .5em;
  color: var(--gold-accent);
  text-transform: uppercase;
  margin-bottom: 18px;
  animation: fadeUp 1.2s .4s both;
  opacity: .8;
}

.fv-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 7.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.0;
  letter-spacing: .06em;
  animation: fadeUp 1.2s .6s both;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .8);
}

.fv-title em {
  font-style: italic;
  font-weight: 300;
  color: #fff;
}

.fv-divider {
  width: 60px;
  height: 1px;
  background: var(--green-light);
  margin: 24px 0;
  animation: fadeUp 1.2s .7s both;
  opacity: .7;
}

.fv-sub-catch {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: .2em;
  margin-bottom: 24px;
  animation: fadeUp 1.2s .8s both;
}

.fv-sub {
  font-family: var(--font-body);
  font-size: clamp(.78rem, 1.2vw, 1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, .8);
  line-height: 2.1;
  letter-spacing: .1em;
  animation: fadeUp 1.2s .85s both;
}

.fv-cta-row {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1.2s 1.1s both;
}

.fv-scroll {
  position: absolute;
  bottom: 32px;
  right: 48px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1.2s 1.3s both;
}

.fv-scroll span {
  font-family: var(--font-heading);
  font-size: .5rem;
  letter-spacing: .35em;
  color: rgba(255, 255, 255, .3);
  text-transform: uppercase;
  writing-mode: vertical-lr;
}

.fv-scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, .05);
  position: relative;
  overflow: hidden;
}

.fv-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--green-light);
  animation: scrollLine 2s 1.5s infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }

  100% {
    top: 200%;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#about {
  background: var(--bg-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-image-wrap {
  position: relative;
  padding-right: 15%;
  padding-bottom: 15%;
}

.about-image-wrap img.img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.about-image-wrap img.img-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  z-index: 2;
  border: 6px solid var(--bg-dark);
  box-shadow: -8px -8px 24px rgba(0, 0, 0, 0.5);
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 50%;
  height: 50%;
  border-top: 1px solid var(--gold-accent);
  border-left: 1px solid var(--gold-accent);
  z-index: 0;
  opacity: .5;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  bottom: 5%;
  left: -8%;
  width: 40%;
  height: 30%;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px,
      rgba(212, 175, 55, 0.08) 10px, rgba(212, 175, 55, 0.08) 11px);
  z-index: 0;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: .1em;
  color: #fff;
  margin-bottom: 32px;
}

.about-text p {
  font-size: 1em;
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: .08em;
  color: #fff;
  margin-bottom: 24px;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  padding-top: 24px;
}

.about-features li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.about-features li:last-child {
  margin-bottom: 0;
}

.feature-en {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--gold-accent);
  text-transform: uppercase;
  min-width: 140px;
}

.feature-sep {
  color: var(--gold-accent);
  opacity: 0.5;
}

.feature-ja {
  font-size: 0.95rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .about-features li {
    align-items: flex-start;
  }

  .feature-en {
    min-width: auto;
  }

  .feature-sep {
    display: none;
  }

  .feature-ja {
    display: block;
    width: 100%;
    margin-top: 4px;
    padding-left: 12px;
    border-left: 2px solid var(--gold-accent);
  }
}

#recommend {
  background: var(--green-main);
  padding: clamp(40px, 8vw, 60px) 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

@media (min-width: 768px) {
  #recommend {
    padding: 50px 0;
  }
}

.recommend-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 0;
}

.recommend-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}

.recommend-header .section-label {
  margin-bottom: 0;
}

.recommend-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: .1em;
  line-height: 1.4;
  margin: 0;
}

.recommend-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  list-style: none;
}

.recommend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  font-size: 1em;
  font-weight: 300;
  letter-spacing: .05em;
  color: #fff;
  line-height: 1.6;
}

.recommend-item::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--gold-accent);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 1;
}

.recommend-cta {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: .15em;
  line-height: 1.8;
  margin: 0;
}

.recommend-cta em {
  color: var(--gold-accent);
  font-style: normal;
}

@media (min-width: 950px) {
  .recommend-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0 48px;
  }

  .recommend-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-right: 1px solid rgba(212, 175, 55, 0.2);
    padding-right: 48px;
  }

  .recommend-list {
    grid-template-columns: 1fr 1fr;
  }

  .recommend-item:nth-child(odd) {
    padding-right: 24px;
    border-right: 1px solid rgba(212, 175, 55, 0.2);
  }

  .recommend-item:nth-child(even) {
    padding-left: 24px;
  }

  .recommend-cta {
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    padding-left: 48px;
    white-space: nowrap;
  }
}

#service {
  background: var(--bg-dark);
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
}

.service-sticky-wrap {
  display: block;
}

.service-sticky-head {
  padding: 0 clamp(24px, 5vw, 60px);
  margin-bottom: 32px;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 300;
  letter-spacing: .1em;
  color: #fff;
  margin-bottom: 0;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 560px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  margin-top: -1px;
}

.service-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.25, .46, .45, .94);
}

.service-card:hover .service-card-img {
  transform: scale(1.05);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 4, 4, 1) 0%, rgb(6 26 17 / 60%) 40%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.service-card-body {
  position: relative;
  z-index: 2;
  padding: 80px clamp(24px, 5vw, 48px) 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 560px;
}

.service-num {
  font-family: var(--font-heading);
  font-size: clamp(80px, 15vw, 140px);
  font-weight: 400;
  color: rgba(255, 255, 255, .03);
  line-height: 1;
  position: absolute;
  right: 24px;
  top: 16px;
  letter-spacing: -.02em;
}

.service-point-label {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: .2em;
  color: #fff;
  background: var(--green-main);
  text-transform: uppercase;
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 12px;
  width: fit-content;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 300;
  letter-spacing: .08em;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.4;
}

.service-card h3 .h3-line {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold-accent);
  margin-bottom: 16px;
}

.service-card p {
  font-size: 1em;
  color: #fff;
  line-height: 2;
  letter-spacing: .05em;
  max-width: 600px;
  font-weight: 300;
}

@media (min-width: 950px) {
  .service-sticky-wrap {
    display: grid;
    grid-template-columns: calc(max(60px, (100vw - 1280px) / 2) + 320px) 1fr;
    align-items: start;
    gap: 0;
    width: 100%;
  }

  .service-sticky-head {
    position: sticky;
    top: 120px;
    align-self: start;
    padding-left: max(60px, calc((100vw - 1280px) / 2));
    padding-right: 48px;
    box-sizing: border-box;
  }

  .service-cards {
    overflow: hidden;
  }

  .service-card {
    min-height: 600px;
  }

  .service-card-body {
    min-height: 600px;
  }
}

#menu {
  background: var(--green-main);
  padding: clamp(80px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
}

.menu-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background-image: url('../img/menubg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  opacity: 0.15;
  mix-blend-mode: luminosity;
  pointer-events: none;
  z-index: 1;
}



.menu-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
  position: relative;
  z-index: 10;
}

.menu-list {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.menu-item:first-child {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.menu-name {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--gold-accent);
  display: block;
  margin-bottom: 8px;
}

.menu-desc {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-weight: 300;
  display: block;
}

.menu-badge-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  background: var(--gold-accent);
  color: var(--bg-dark);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
  letter-spacing: 0.05em;
}

.menu-price {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: #fff;
  white-space: nowrap;
  letter-spacing: .05em;
  align-self: center;
}

.menu-note-wrap {
  margin-top: 40px;
}

.menu-note {
  font-size: .8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .menu-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .menu-badge-circle {
    font-size: 16px;
  }

  .menu-price {
    align-self: flex-start;
  }
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--green-dark);
  padding: clamp(40px, 6vw, 64px) clamp(24px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 80px,
      rgba(212, 175, 55, .04) 80px, rgba(212, 175, 55, .04) 81px);
}

.cta-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
}

.cta-marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
}

.cta-marquee-inner span {
  font-family: var(--font-heading);
  font-size: clamp(80px, 15vw, 150px);
  padding: 0 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.cta-band-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-band-inner .section-label {
  color: var(--gold-accent);
  display: block;
  margin-bottom: 14px;
}

.cta-band h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 300;
  letter-spacing: .1em;
  color: #fff;
  margin-bottom: 10px;
}

.cta-band p {
  font-size: clamp(.75rem, 1.1vw, .88rem);
  color: rgba(212, 175, 55, .65);
  line-height: 1.9;
  letter-spacing: .08em;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: flex-end;
}

.cta-tel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cta-hours {
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .1em;
  color: rgba(212, 175, 55, .65);
}

.btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  letter-spacing: .06em;
  text-decoration: none;
  height: 52px;
  padding: 0 32px;
  background: var(--gold-accent);
  color: var(--bg-dark);
  border: 1px solid var(--gold-accent);
  transition: all .3s;
}

.btn-tel:hover {
  background: var(--bg-dark);
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .85rem;
  letter-spacing: .1em;
  text-decoration: none;
  height: 52px;
  padding: 0 36px;
  background: transparent;
  color: var(--gold-accent);
  border: 1px solid rgba(212, 175, 55, .6);
  transition: all .3s;
  white-space: nowrap;
}

.btn-outline-gold:hover {
  background: var(--gold-accent);
  color: var(--bg-dark);
  border-color: var(--gold-accent);
}

#voice {
  background: var(--bg-dark);
  padding: clamp(80px, 10vw, 120px) 0;
  overflow: hidden;
}

.voice-header {
  text-align: center;
  margin-bottom: 48px;
}

.voice-slider {
  overflow: visible !important;
  padding: 0 clamp(24px, 5vw, 60px);
  max-width: 1280px;
  margin: 0 auto;
}

.voice-card {
  background: var(--bg-light);
  border: 1px solid rgba(255, 255, 255, .02);
  border-top: 2px solid var(--green-main);
  padding: 40px 32px;
  height: auto;
  display: flex;
  flex-direction: column;
}

.quote-icon {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(29, 107, 66, 0.3);
  line-height: 0;
  margin-bottom: 32px;
  margin-top: 16px;
}

.voice-text {
  font-size: 1em;
  font-weight: 300;
  line-height: 2.2;
  color: var(--text-main);
  letter-spacing: .06em;
  margin-bottom: 24px;
  flex-grow: 1;
  font-style: italic;
}

.voice-author {
  font-size: .8rem;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: .1em;
  border-top: 1px dashed rgba(255, 255, 255, .05);
  padding-top: 16px;
}

#message {
  position: relative;
  background: var(--bg-mid);
  border-top: 1px solid rgba(255, 255, 255, .02);
  border-bottom: 1px solid rgba(255, 255, 255, .02);
}

.message-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background-image: url('../img/messagebg.jpg');
  background-position: center;
  background-size: cover;
  opacity: .3;
}

.message-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(80px, 12vw, 140px) 24px;
}

.message-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: .15em;
  line-height: 1.8;
  margin-bottom: 40px;
}

.message-inner p {
  font-size: 1em;
  font-weight: 300;
  line-height: 2.6;
  letter-spacing: .1em;
  color: #fff;
}

#access {
  background: var(--bg-dark);
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}

.info-list {
  margin-bottom: 40px;
}

.info-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  padding: 16px 0;
}

.info-label {
  width: 120px;
  flex-shrink: 0;
  font-size: .8rem;
  font-weight: 300;
  color: var(--gold-accent);
  letter-spacing: .1em;
}

.info-data {
  font-size: 1em;
  font-weight: 300;
  color: var(--text-main);
  letter-spacing: .05em;
  line-height: 1.8;
}

.info-data a {
  color: var(--text-main);
  text-decoration: none;
  transition: color .3s;
}

.info-data a:hover {
  color: var(--green-light);
}

.sns-links {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.sns-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 2px;
  color: var(--text-main);
  transition: all .3s;
}

.sns-btn:hover {
  background: var(--green-main);
  color: #fff;
  border-color: var(--green-main);
}

.sns-btn svg,
.sns-btn img {
  width: 20px;
  height: 20px;
  fill: currentColor;
  object-fit: contain;
}

.map-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: #000;
  border: 1px solid rgba(255, 255, 255, .05);
}

/* 黒ベースに合うようマップを反転・調整 */
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) grayscale(30%) contrast(1.1);
}

footer {
  background: #000;
  padding: clamp(40px, 6vw, 60px) 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .02);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: .2em;
  color: var(--text-main);
  text-decoration: none;
  margin-bottom: 24px;
  display: inline-block;
}

.footer-copy {
  font-family: var(--font-heading);
  font-size: .6rem;
  letter-spacing: .2em;
  color: var(--text-light);
}

/* Page Top Button */
.page-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 50px;
  height: 50px;
  background: var(--gold-accent);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.page-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-top-btn:hover {
  background: #fff;
  color: var(--gold-accent);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3);
}

.page-top-btn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 767px) {
  .page-top-btn {
    bottom: 90px;
    /* Above the fixed CTA */
    right: 16px;
    width: 44px;
    height: 44px;
  }
}

/* Fixed CTA: PC時は非表示、SP時のみ表示するように変更 */
.fixed-cta {
  display: none;
  /* デフォルト(PC)では非表示 */
}

@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .header-actions {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

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

  .about-image-wrap {
    order: -1;
  }

  .about-image-wrap::after {
    left: -16px;
    top: 16px;
  }

  .recommend-message {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .recommend-cta {
    text-align: center;
  }

  .message-inner {
    text-align: left;
  }

  .message-inner h2,
  .about-text h2 {
    font-size: 20px;
  }

  .message-bg {
    background-position: 40% 50%;
  }

  .recommend-message::before {
    display: none;
  }

  .info-row {
    flex-direction: column;
    gap: 4px;
  }

  /* SP layout for SERVICE section */
  .service-cards {
    gap: 56px;
  }

  .service-card {
    display: flex;
    flex-direction: column;
    min-height: auto;
    border: none;
    margin-top: 0;
  }

  .service-card-img {
    position: relative;
    height: 250px;
    width: 100%;
  }

  .service-card::after {
    display: none;
  }

  .service-card-body {
    padding: 24px 24px 0 24px;
    min-height: auto;
  }

  .service-num {
    top: -20px;
    right: 0;
    font-size: 64px;
    z-index: -1;
  }

  body {
    padding-bottom: 60px;
  }

  /* Space for Fixed CTA */

  /* SP Fixed CTA 表示設定 */
  .fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform .4s;
  }

  .fixed-cta.is-visible {
    transform: translateY(0);
  }

  .fixed-cta a {
    flex: 1;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 400;
    letter-spacing: .1em;
    text-decoration: none;
  }

  .fixed-cta-tel {
    background: var(--bg-mid);
    color: var(--text-main);
    border-top: 1px solid rgba(255, 255, 255, .05);
  }

  .fixed-cta-web {
    background: var(--green-main);
    color: #fff;
  }
}

.fixed-cta-web {
  background: var(--green-main);
  color: #fff;
}

/* -----------------------------
 * Food Menu
 * ----------------------------- */
#food-menu {
  background: var(--bg-main, #0a0a0a);
  padding: clamp(60px, 8vw, 100px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.food-menu-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .food-menu-inner {
    grid-template-columns: 1fr 1.5fr 1.5fr;
    align-items: center;
  }
}

.food-menu-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.food-menu-pic {
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: opacity 0.3s, transform 0.3s;
}

.food-menu-pic:hover {
  opacity: 0.8;
  transform: scale(1.02);
}

/* Image Modal */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.image-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.image-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  z-index: 1;
}

.image-modal-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.image-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
}