/* ─── CSS Variables ─── */
:root {
  /* Color Palette: Casual Luxury Beige & Green (Refined for sophisticated yet relaxed atmosphere) */
  --green: #526943;
  /* 洗練されたセージオリーブグリーン */
  --green-dark: #34442b;
  /* 深みと品格のあるフォレストブラック */
  --green-light: #708861;
  /* 柔らかくカジュアルさも感じるセージグリーン */
  --beige: #b0a18a;
  /* 上品でモダンなトープベージュ */
  --beige-light: #d2c5a0;
  /* 明るくエレガントなシャンパンベージュ */
  --bg-cream: #f8f6f0;
  /* 清潔感と温かみのある極薄エクリュホワイト */
  --bg-ivory: #f0ebd9;
  /* 落ち着きと品のあるウォームサンドアイボリー */
  --dark: #232621;
  /* わずかに緑みを帯びた上質なダークチャコール */
  --text: #3e3a34;
  /* 柔らかく視認性の高いダークブロンズ */
  --text-mid: #6a6459;
  /* 馴染みの良いトープグレー */
  --text-light: #928978;
  /* 繊細なライトグレージュ */

  --font-display: 'Cormorant Garamond', serif;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Noto Serif JP', serif;
}

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

html {
  scroll-behavior: smooth;
}

img {
  pointer-events: none;
  -webkit-touch-callout: none;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ─── BASE BODY TEXT SIZE ─── */
p,
.commit-desc,
.voice-text,
.loka-desc,
.contact-info-value {
  font-size: 16px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 25px;
}

.sp-only {
  display: none;
}

@media (max-width: 767px) {
  .sp-only {
    display: block;
  }

  .pc-only {
    display: none;
  }

  p,
  .commit-desc,
  .commit-sub,
  .voice-text,
  .loka-desc,
  .contact-info-value {
    font-size: 14px;
  }

  h2 {
    font-size: 25px;
  }

  h3,
  .service-card h3 {
    font-size: 18px;
  }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s cubic-bezier(.25, .46, .45, .94), transform .9s cubic-bezier(.25, .46, .45, .94);
}

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

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

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

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

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

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

#site-header.scrolled {
  background: rgba(248, 246, 240, 0.95);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
}

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

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

.site-logo {
  display: flex;
  align-items: center;
  transition: opacity .3s;
}

.site-logo:hover {
  opacity: 0.8;
}

.site-logo img {
  height: clamp(40px, 5vw, 55px);
  width: auto;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  transition: opacity .4s ease, visibility .4s ease, transform .4s ease;
}

@media (min-width: 768px) {
  #site-header:not(.scrolled) .header-actions {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-5px);
  }

  #site-header.scrolled .header-actions {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

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

nav.pc-nav a {
  font-family: var(--font-heading);
  font-size: .65rem;
  letter-spacing: .15em;
  color: var(--text-mid);
  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);
  transition: width .3s;
}

nav.pc-nav a:hover,
#site-header.scrolled nav.pc-nav a:hover {
  color: var(--green);
}

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

.btn-header-reserve {
  font-family: var(--font-heading);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 9px 22px;
  border: 1px solid var(--green);
  color: var(--green);
  transition: all .3s;
  white-space: nowrap;
}

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

/* Hamburger */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--green-dark);
  transition: background .3s;
}

/* SP menu */
#sp-menu {
  position: fixed;
  inset: 0;
  background: rgba(248, 246, 240, 0.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 a {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 5vw, 1.8rem);
  font-weight: 400;
  letter-spacing: .2em;
  color: var(--green-dark);
  text-decoration: none;
  padding: 14px 0;
  text-align: center;
  text-transform: uppercase;
  transition: color .3s;
}

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

.sp-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: .15em;
  color: var(--text-mid);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
}

.sp-menu-close:hover {
  color: var(--green);
}

/* ─── HELPERS ─── */
.section-label {
  font-family: var(--font-heading);
  font-size: .7rem;
  letter-spacing: .3em;
  color: var(--beige);
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.accent-line {
  width: 40px;
  height: 1px;
  background: var(--beige);
  margin: 20px auto;
}

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

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

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

.fv-bg-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: var(--dark);
}

.fv-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#fv::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(35, 33, 30, .65) 0%, rgba(35, 33, 30, .35) 50%, rgba(35, 33, 30, .8) 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(82, 105, 67, 0.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;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 100px) clamp(60px, 10vh, 110px);
}

.fv-btn-wrap {
  margin-top: clamp(20px, 3vh, 32px);
  will-change: transform, opacity;
  animation: fvBtnFadeIn 1s ease-out 0.8s both;
}

.fv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  height: 50px;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 2px;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.fv-btn:hover {
  background: #fff;
  color: var(--green-dark);
  border-color: #fff;
  text-shadow: none;
}

@keyframes fvBtnFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

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

.fv-eyebrow {
  font-family: var(--font-heading);
  font-size: clamp(.7rem, 1.1vw, .85rem);
  letter-spacing: .4em;
  color: var(--beige-light);
  text-transform: uppercase;
  margin-bottom: 18px;
  animation: fadeUp 1.2s .4s both;
  opacity: .95;
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.fv-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8.5vw, 8.5rem);
  font-weight: 300;
  color: var(--beige-light);
  line-height: 1.0;
  letter-spacing: .06em;
  animation: fadeUp 1.2s .6s both;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.8), 0 2px 5px rgba(0, 0, 0, 0.5);
}

.fv-title em {
  font-style: italic;
  font-weight: 300;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.8), 0 2px 5px rgba(0, 0, 0, 0.5);
}

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

.fv-sub {
  font-family: var(--font-body);
  font-size: clamp(.78rem, 1.2vw, 1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, .95);
  line-height: 2.1;
  letter-spacing: .15em;
  animation: fadeUp 1.2s .85s both;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.fv-cta-row {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1.2s 1s both;
}

.fv-cta-row .btn-green,
.fv-cta-row .btn-outline {
  height: 52px;
  font-size: .75rem;
  padding: 0 36px;
  font-family: var(--font-heading);
  letter-spacing: .15em;
}

.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(169, 153, 130, .6);
  text-transform: uppercase;
  writing-mode: vertical-lr;
}

.fv-scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(169, 153, 130, .3);
  position: relative;
  overflow: hidden;
}

.fv-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--beige);
  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);
  }
}

/* ─── BUTTONS ─── */
.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .85rem;
  letter-spacing: .15em;
  text-decoration: none;
  height: 54px;
  padding: 0 40px;
  background: var(--green);
  color: #fff;
  border: 1px solid var(--green);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(82, 105, 67, 0.12);
  transition: all .3s cubic-bezier(.25, .8, .25, 1);
  white-space: nowrap;
}

.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(52, 68, 43, 0.22);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .85rem;
  letter-spacing: .15em;
  text-decoration: none;
  height: 54px;
  padding: 0 40px;
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 4px;
  transition: all .3s cubic-bezier(.25, .8, .25, 1);
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(82, 105, 67, 0.15);
}

/* ─── MESSAGE CTA ─── */
#message-cta {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: clamp(80px, 10vw, 120px) clamp(24px, 6vw, 80px);
  text-align: center;
  color: #fff;
  overflow: hidden;
}

#message-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 35, 28, 0.72);
  z-index: 1;
}

.message-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
}

.message-cta-sub {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.15em;
  color: rgba(201, 191, 151, 0.9);
  margin-bottom: 10px;
  font-weight: 400;
}

.message-cta-title {
  font-family: var(--font-body);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1em;
}

#message-cta .accent-line {
  background: rgba(201, 191, 151, 0.6);
  margin: 24px auto;
}

.message-cta-lead {
  font-size: 15px;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.06em;
}

.message-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
  margin-bottom: 28px;
}

.message-cta-buttons .btn-green {
  flex: 1;
  min-width: 0;
  height: 56px;
  font-size: 14px;
  background: var(--green);
  border-color: var(--green);
}

.message-cta-buttons .btn-outline {
  flex: 1;
  min-width: 0;
  height: 56px;
  font-size: 14px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  background: transparent;
}

.message-cta-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.message-cta-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
}

@media (max-width: 959px) {
  .message-cta-buttons {
    flex-wrap: wrap;
    gap: 12px;
  }

  .message-cta-buttons .btn-green {
    flex: 1 1 100%;
  }

  .message-cta-buttons .btn-outline {
    flex: 1 1 calc(50% - 6px);
  }
}

@media (max-width: 767px) {
  #message-cta {
    padding: 70px 24px;
    background-attachment: scroll;
  }

  .message-cta-lead {
    font-size: 14px;
    text-align: left;
  }

  .message-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .message-cta-buttons .btn-green,
  .message-cta-buttons .btn-outline {
    flex: none;
    width: 100%;
    min-width: 100%;
    padding: 0 16px;
  }
}

/* ─── ABOUT ─── */
#about {
  background: var(--bg-cream);
}

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

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  border-radius: 4px 40px 4px 4px;
}

.about-text h2 {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: .1em;
  margin-bottom: 24px;
  color: var(--green-dark);
}

.about-text p {
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: .08em;
  color: var(--text-mid);
  margin-bottom: 20px;
}

/* ─── COMMITMENT (こだわり - Scrollytelling) ─── */
.commit-scrollytelling {
  position: relative;
  height: 400vh;
  /* 100vh for each trigger + extra scroll space */
  background: var(--bg-ivory);
  overflow: visible;
}

.commit-header {
  display: none;
}

.commit-sticky-wrap {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 20;
}

.commit-img-canvas {
  width: 100%;
  height: 40%;
  position: relative;
  background: var(--dark);
}

.commit-image-fixed {
  position: absolute;
  inset: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
}

.commit-image-fixed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commit-text-canvas {
  width: 100%;
  height: 52%;
  position: relative;
  background: var(--bg-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.commit-content-inner {
  position: absolute;
  inset: 0;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.commit-content-inner.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.commit-header-inner {
  margin-bottom: 8px;
}

.commit-header-inner h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--green-dark);
}

.commit-num {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--beige);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}

.commit-title {
  font-weight: 500;
  color: var(--green-dark);
  letter-spacing: .1em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.commit-sub {
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 14px;
}

.commit-desc {
  line-height: 1.7;
  color: var(--text-mid);
  letter-spacing: .06em;
}

/* Progress Line */
#commit-progress-container {
  position: absolute;
  z-index: 30;
  pointer-events: none;
  bottom: 16px;
  left: 0;
  width: 100%;
  padding: 0 24px;
  height: 2px;
}

.commit-progress-track {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  position: relative;
}

#commit-progress-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--green);
  transition: width 0.1s;
}

.commit-progress-label {
  display: none;
}

/* Triggers */
.commit-triggers {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.commit-trigger-zone {
  height: 100vh;
}

@media (min-width: 1024px) {
  .commit-sticky-wrap {
    flex-direction: row;
  }

  .commit-img-canvas {
    width: 40%;
    height: 100%;
  }

  .commit-text-canvas {
    width: 60%;
    height: 100%;
  }

  .commit-content-inner {
    padding: 60px 10% 60px 15%;
    justify-content: center;
  }

  .commit-header-inner {
    margin-bottom: 24px;
  }

  .commit-num {
    font-size: 5rem;
    margin-bottom: 16px;
  }

  .commit-title {
    margin-bottom: 16px;
  }

  .commit-sub {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .commit-desc {
    font-size: 16px;
    line-height: 2;
  }

  #commit-progress-container {
    top: 25%;
    left: 40px;
    width: 2px;
    height: 50%;
    padding: 0;
    bottom: auto;
  }

  #commit-progress-line {
    width: 100%;
    height: 0;
    transition: height 0.1s;
  }

  .commit-progress-label {
    display: block;
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--green);
    white-space: nowrap;
    text-transform: uppercase;
  }
}

/* ─── SERVICE ─── */
#service {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45, 43, 40, 0.75);
  z-index: 1;
}

#service .section-wrap {
  position: relative;
  z-index: 2;
}

.service-header {
  text-align: center;
  margin-bottom: 60px;
}

.service-header h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: .1em;
  color: #fff;
  margin-bottom: 8px;
}

#service .section-label {
  color: var(--beige-light);
}

#service .accent-line {
  background: var(--beige-light);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform .3s, box-shadow .3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.service-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

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

.service-card-body {
  padding: 32px 24px;
  text-align: center;
}

.service-num {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--beige);
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--green-dark);
  margin-bottom: 16px;
  line-height: 1.5;
}

.service-card p {
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: .05em;
  color: var(--text-mid);
  text-align: left;
}

/* ─── MENU ─── */
#menu {
  background: var(--bg-cream);
}

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

.menu-image-wrapper {
  position: relative;
  width: 100%;
}

.menu-image {
  width: 100%;
  z-index: 10;
}

@media (min-width: 1024px) {
  .menu-image-wrapper {
    position: sticky;
    top: 100px;
    align-self: start;
  }

  .menu-image {
    width: calc(100% + clamp(24px, 6vw, 80px) + max(0px, (100vw - 1100px) / 2));
    margin-left: calc(-1 * (clamp(24px, 6vw, 80px) + max(0px, (100vw - 1100px) / 2)));
  }
}

@media (max-width: 1023px) {
  .menu-image {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
    top: 0;
  }
}

.menu-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.menu-slider .swiper-slide {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
}

.menu-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-content h2 {
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: .08em;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--green-dark);
}

.menu-content>p {
  font-size: clamp(.85rem, 1vw, .95rem);
  color: var(--text-mid);
  line-height: 2.3;
  letter-spacing: .07em;
  margin-bottom: 36px;
}

.menu-card {
  background: #fff;
  border-top: 2px solid var(--green);
  border-left: 1px solid rgba(79, 99, 69, .12);
  border-right: 1px solid rgba(79, 99, 69, .12);
  border-bottom: 1px solid rgba(79, 99, 69, .12);
  padding: 32px 30px 30px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .3s;
  border-radius: 4px;
}

.menu-card:hover {
  box-shadow: 0 8px 32px rgba(79, 99, 69, .08);
}

.menu-card-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-heading);
  font-size: .55rem;
  letter-spacing: .22em;
  padding: 5px 14px;
  text-transform: uppercase;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.menu-card h3 {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.menu-card-subtitle {
  font-size: .75rem;
  color: var(--text-light);
  letter-spacing: .1em;
  margin-bottom: 18px;
}

.menu-price {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  letter-spacing: .05em;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.menu-price sub {
  font-size: .5em;
  color: var(--text-mid);
  font-family: var(--font-body);
}

.menu-tax {
  font-size: .7rem;
  color: var(--text-light);
  letter-spacing: .06em;
  margin-bottom: 20px;
}

.menu-divider {
  width: 100%;
  height: 1px;
  background: rgba(79, 99, 69, .1);
  margin: 18px 0;
}

.menu-desc {
  font-weight: 300;
  line-height: 2;
  letter-spacing: .08em;
  color: var(--text-mid);
}

.menu-cta-wrap {
  margin-top: 32px;
  text-align: center;
}

.menu-cta-wrap .btn-green {
  width: 100%;
}

/* MARQUEE */
.menu-marquee {
  width: 100%;
  overflow: hidden;
  margin-top: clamp(60px, 8vw, 100px);
  padding: 16px 0;
  background: var(--bg-ivory);
  border-top: 1px solid rgba(184, 167, 140, 0.3);
  border-bottom: 1px solid rgba(184, 167, 140, 0.3);
}

.marquee-inner {
  display: flex;
}

.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(30px, 4vw, 60px);
  padding-right: clamp(30px, 4vw, 60px);
  animation: marquee 80s linear infinite;
}

.marquee-content span {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--green);
  opacity: 0.3;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.marquee-content span.dot {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  color: var(--beige);
  opacity: 0.6;
}

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

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

/* ─── VOICE ─── */
#voice {
  background: var(--bg-ivory);
}

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

.voice-header h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--green-dark);
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.voice-card {
  background: var(--bg-cream);
  padding: 32px 24px;
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.voice-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(176, 161, 138, 0.25);
  padding-bottom: 12px;
}

.voice-author {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--green-dark);
}

.voice-rating {
  color: var(--beige);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.voice-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-mid);
  letter-spacing: .05em;
}

.voice-text-wrap {
  position: relative;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  margin-bottom: 8px;
}

.voice-text-wrap.is-collapsed {
  max-height: 5.7em;
}

.voice-text-wrap.is-collapsed::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 28px;
  background: linear-gradient(to bottom, rgba(248, 246, 240, 0), rgba(248, 246, 240, 1));
  pointer-events: none;
}

.voice-text-wrap.is-expanded {
  max-height: 500px;
}

.voice-readmore-btn {
  background: none;
  border: none;
  color: var(--green);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
  margin-top: auto;
  transition: opacity 0.2s;
}

.voice-readmore-btn:hover {
  opacity: 0.8;
}

.voice-readmore-btn::after {
  content: '↓';
  font-size: 10px;
  transition: transform 0.3s;
}

.voice-readmore-btn.active::after {
  content: '↑';
}

.voice-cta {
  margin-top: 48px;
  text-align: center;
}

/* ─── LOKA ─── */
#loka {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  padding: clamp(60px, 10vw, 100px) clamp(24px, 6vw, 80px);
  text-align: center;
  overflow: hidden;
}

#loka::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45, 43, 40, 0.75);
  z-index: 1;
}

.loka-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.loka-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: .2em;
  color: var(--beige);
  margin-bottom: 24px;
}

.loka-title {
  font-weight: 400;
  letter-spacing: .1em;
  margin-bottom: 24px;
}

.loka-desc {
  line-height: 2;
  color: #ccc;
  margin-bottom: 40px;
}

/* ─── MESSAGE ─── */
#message {
  background: var(--bg-cream);
}

.msg-wrap {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(40px, 8vw, 80px);
  align-items: center;
}

.msg-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
}

.msg-content h2 {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--green-dark);
  letter-spacing: .1em;
  margin-bottom: 32px;
}

.msg-content p {
  line-height: 2.2;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.msg-sign {
  margin-top: 40px;
  font-size: 1rem;
  color: var(--green-dark);
  font-weight: 500;
}

.msg-sign span {
  display: block;
  font-family: var(--font-heading);
  font-size: .7rem;
  color: var(--beige);
  margin-top: 4px;
  letter-spacing: .1em;
}

/* ─── RESERVE / CONTACT ─── */
#reserve {
  background: var(--bg-ivory);
}

.reserve-title {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--green-dark);
}

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

.contact-info-label {
  font-family: var(--font-heading);
  font-size: .65rem;
  letter-spacing: .2em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.contact-info-value {
  color: var(--text);
  letter-spacing: .08em;
  line-height: 1.9;
  margin-bottom: 24px;
}

.contact-info-value a {
  color: inherit;
  text-decoration: none;
  transition: color .3s;
}

.contact-info-value a:hover {
  color: var(--green);
}

.map-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-actions {
  margin-top: 24px;
  display: flex;
  gap: 16px;
}

.btn-icon-only {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
  transition: all .3s;
}

.btn-icon-only:hover {
  background: var(--green);
  color: #fff;
}

.btn-icon-only svg {
  width: 24px;
  height: 24px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  padding: clamp(48px, 6vw, 72px) clamp(24px, 6vw, 80px) clamp(24px, 3vw, 32px);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  margin-bottom: 32px;
}

.footer-logo {
  display: inline-block;
  transition: opacity .3s;
}

.footer-logo:hover {
  opacity: 0.8;
}

.footer-logo img {
  height: clamp(45px, 5vw, 45px);
  width: auto;
  display: block;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.footer-nav a {
  font-family: var(--font-heading);
  font-size: .65rem;
  letter-spacing: .15em;
  color: #aaa;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .3s;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  font-family: var(--font-heading);
  font-size: .65rem;
  letter-spacing: .15em;
  color: #666;
  text-align: center;
}

/* ─── SP FIXED CTA ─── */
#sp-fixed-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--bg-cream);
  border-top: 1px solid var(--beige-light);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  gap: 12px;
}

#sp-fixed-cta a {
  flex: 1;
  text-align: center;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .05em;
  padding: 12px 6px;
  text-decoration: none;
  border: 1px solid;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

#sp-fixed-cta .cta-phone {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

#sp-fixed-cta .cta-ig {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1023px) {
  html,
  body {
    overflow-x: hidden;
  }

  #service,
  #message-cta,
  #loka {
    background-attachment: scroll !important;
  }

  .commit-header {
    display: block;
    text-align: center;
    margin-bottom: 48px;
  }

  .commit-header h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: .1em;
    color: var(--green-dark);
  }

  /* こだわりセクションSP・タブレット向け縦並び化 */
  .commit-scrollytelling {
    height: auto !important;
    padding: clamp(48px, 8vw, 80px) clamp(16px, 4vw, 32px) !important;
    background: var(--bg-cream) !important; /* 全体と合わせた背景 */
  }

  .commit-sticky-wrap {
    position: relative !important;
    height: auto !important;
    overflow: visible !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .commit-img-canvas,
  .commit-text-canvas {
    display: contents !important;
  }

  .commit-image-fixed {
    position: relative !important;
    opacity: 1 !important;
    height: clamp(240px, 45vw, 400px) !important;
    border-radius: 4px;
    overflow: hidden;
  }

  .commit-content-inner {
    position: relative !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    padding: 12px 0 32px 0 !important;
    background: transparent !important;
  }

  /* 並び順（画像 -> 文字） */
  .commit-image-fixed[data-index="1"] { order: 1; }
  .commit-content-inner[data-index="1"] { order: 2; border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
  
  .commit-image-fixed[data-index="2"] { order: 3; }
  .commit-content-inner[data-index="2"] { order: 4; border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
  
  .commit-image-fixed[data-index="3"] { order: 5; }
  .commit-content-inner[data-index="3"] { order: 6; }

  #commit-progress-container {
    display: none !important;
  }

  .service-grid,
  .voice-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-grid,
  .reserve-grid,
  .msg-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .msg-img {
    order: -1;
  }
}

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

  .hamburger-btn {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .header-inner {
    padding: 14px 16px;
  }

  .fv-title {
    font-size: 2.8rem;
  }

  .fv-divider {
    margin: 16px 0;
  }

  .fv-sub {
    line-height: 1.8;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .menu-image-wrapper {
    order: -1;
    margin-bottom: 16px;
  }

  #sp-fixed-cta.visible {
    display: flex;
  }

  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
  }

  .voice-text {
    font-size: 14px;
  }

  .loka-desc {
    text-align: left;
  }
}

/* ─── PAGE TOP BUTTON ─── */
#pagetop-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  border: 1px solid var(--green);
  cursor: pointer;
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#pagetop-btn:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 68, 43, 0.25);
}

#pagetop-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* スマホ表示の時は、下部固定CTAに被らないように上にあげる */
@media (max-width: 767px) {
  #pagetop-btn {
    bottom: 84px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
}