/* ============================================================
   La mipass - style.css
   ベージュ × くすみグリーン × ブラッドオレンジ
   SPファースト設計
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --color-beige:       #f2ede6;
  --color-beige-dark:  #e8dfd3;
  --color-beige-mid:   #d5c9b9;
  --color-green:       #7a8c72;
  --color-green-light: #aab89f;
  --color-green-dark:  #5a6a53;
  --color-orange:      #c0543a;
  --color-orange-light:#d4705a;
  --color-text:        #3a3530;
  --color-text-light:  #6e6359;
  --color-white:       #faf8f5;
  --color-line:        #06c755;
  --color-gold:        #c5a059; /* New premium accent color */

  --font-jp:    'Noto Sans JP', sans-serif;
  --font-en:    'Cormorant Garamond', serif;

  --max-width:  1100px;
  --section-px: 20px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img { max-width: 100%; height: auto; display: block; vertical-align: bottom; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Section Wrapper --- */
.section-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

/* --- Section Spacing --- */
section { margin-bottom: 80px; }

/* --- Section Heading (master_4-1 画像) --- */
/* --- Section Heading (Modern & Premium Redesign) --- */
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding: 40px 0;
}

/* Background Ghost Text */
.section-heading::before {
  content: attr(data-en);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-size: clamp(60px, 15vw, 110px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(197, 160, 89, 0.1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.6;
}

.section-heading-en {
  font-family: var(--font-en);
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--color-text);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  margin: 0;
  line-height: 1.2;
}

/* Gold Accent Line */
.section-heading-en::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  margin: 20px auto 10px;
}

.section-heading-ja {
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--color-text-light);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  display: block;
}

/* Legacy Support & Reset */
.section-heading figure { all: unset; display: contents; }
.section-heading img { display: none !important; }
.section-heading figcaption { display: contents; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(242, 237, 230, 0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-beige-mid);
  transition: box-shadow 0.3s;
}
#site-header.scrolled { box-shadow: 0 2px 20px rgba(58,53,48,0.12); }

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

/* Logo */
.header-logo a {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.header-logo a:hover { opacity: 0.72; }

.header-logo-img {
  height: 60px;
  max-height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}

/* PC Nav */
.header-nav { display: none; }

/* Header CTA Button */
.header-cta {
  display: none;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  transition: all 0.3s ease;
  transform-origin: center;
}

/* ============================================================
   FULLSCREEN MENU OVERLAY
   ============================================================ */
#nav-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--color-beige);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
#nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.overlay-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  font-family: var(--font-jp);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.overlay-close::before {
  content: '×';
  font-size: 20px;
  line-height: 1;
}

.overlay-nav { text-align: center; }
.overlay-nav ul { display: flex; flex-direction: column; gap: 32px; }
.overlay-nav a {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--color-text);
  transition: color 0.2s;
  position: relative;
}
.overlay-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--color-orange);
  transition: width 0.3s ease;
}
.overlay-nav a:hover { color: var(--color-orange); }
.overlay-nav a:hover::after { width: 100%; }
.overlay-nav .nav-sub {
  display: block;
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--color-text-light);
  margin-top: 2px;
}

.overlay-cta {
  margin-top: 48px;
}
.overlay-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--color-line);
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  letter-spacing: 0.12em;
  transition: transform 0.3s ease, background 0.25s;
}
.overlay-cta a:hover {
  background: #05b14c;
  transform: translateY(-2px);
}
.overlay-cta a:hover { background: var(--color-orange-light); }

/* ============================================================
   FV - FIRST VIEW
   ============================================================ */
#fv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-bottom: 0;
  line-height: 0;
}

.swiper-fv {
  width: 100%;
  height: 100%;
}

/* スライドは常に 100vh を占有 */
.swiper-fv .swiper-slide {
  height: 100%;
  line-height: 0;
  overflow: hidden;
}

/* 画像は object-fit: cover でコンテナ全面を覆う */
.swiper-fv .swiper-slide picture {
  width: 100%;
  height: 100%;
  display: block;
}

.swiper-fv .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* ============================================================
   FV 左側オーバーレイパネル（モダンリデザイン）
   ============================================================ */
.fv-left-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(300px, 50%, 650px);
  height: 100%;
  z-index: 10;
  overflow: visible;
}

.fv-left-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    150deg,
    rgba(240, 225, 195, 0.72) 0%,
    rgba(200, 170, 120, 0.68) 35%,
    rgba(140, 110, 65, 0.65) 70%,
    rgba(90, 68, 35, 0.60) 100%
  );
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  /* 右端フェードアウト */
  -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
  mask-image: linear-gradient(to right, black 85%, transparent 100%);
  z-index: -1;
}

/* ─── ゴースト背景テキスト ─── */
.fv-ghost-text {
  position: absolute;
  bottom: -0.1em;
  left: -0.05em;
  font-family: var(--font-en);
  font-size: clamp(100px, 22vw, 200px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* ─── 縦書きサイドアクセント ─── */
.fv-vertical-accent {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  text-transform: uppercase;
  pointer-events: none;
}

/* ─── コンテンツラッパー ─── */
.fv-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(90px, 12vh, 130px) clamp(28px, 7%, 52px) clamp(36px, 6vh, 60px) clamp(28px, 7%, 52px);
}

/* ─── トップ装飾ライン ─── */
.fv-deco-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.fv-deco-line {
  display: block;
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,0.7), rgba(255,255,255,0.1));
}

.fv-deco-dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

/* ─── 英語サブキャッチ ─── */
.fv-catch-en {
  font-family: var(--font-en);
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 300;
  letter-spacing: 0.16em;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 32px;
  text-transform: uppercase;
}

.fv-catch-en em {
  display: block;
  font-style: italic;
  font-size: 0.95em;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: none;
}

/* ─── メインキャッチ（日本語大見出し） ─── */
.fv-main-catch {
  font-family: var(--font-jp);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.25;
  color: #fff;
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.15),
    0 0 60px rgba(255, 220, 160, 0.15);
  margin-bottom: 40px;
  position: relative;
  white-space: nowrap;
}

.fv-main-catch-sub {
  display: block;
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 500;
  margin-top: 10px;
  opacity: 0.9;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* ─── ボトムエリア（PR＋CTA横並び） ─── */
.fv-bottom-area {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.fv-pr-badges {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.fv-pr-badge {
  display: inline-block;
  background-color: #ff4500;
  background: linear-gradient(135deg, #ff5714 0%, #ff4500 100%);
  color: #fff;
  font-family: var(--font-jp);
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 10px 24px;
  border-radius: 100px; /* Modern pill shape */
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 18px rgba(255, 69, 0, 0.28);
  white-space: nowrap;
  width: fit-content;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.fv-pr-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(255, 69, 0, 0.35);
}

.fv-pr-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.fv-pr-badge:hover::after {
  left: 100%;
}

/* ─── 丸型CTAボタン ─── */
.fv-cta-circle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--color-line);
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
  box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

.fv-cta-circle:hover {
  background: #05b14c;
  transform: scale(1.1);
}

.fv-cta-label {
  font-family: var(--font-jp);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 4px;
}

/* 回転アニメーション付きリング */
.fv-cta-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  animation: fv-ring-spin 8s linear infinite;
  background: transparent;
  /* ダッシュ効果 */
  border-style: dashed;
}

@keyframes fv-ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ─── ボトム装飾ライン ─── */
.fv-deco-bottom {
  margin-top: 24px;
}

.fv-deco-bottom .fv-deco-line {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,0.5), rgba(255,255,255,0.05));
}

/* ─── SP（767px以下） ─── */
@media (max-width: 767px) {
  .fv-left-overlay {
    width: 100%;
    height: auto;
    top: auto;
    bottom: 0;
    left: 0;
    -webkit-mask-image: none;
    mask-image: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Remove desktop background pseudo-element in SP */
  .fv-left-overlay::before {
    display: none;
  }

  .fv-ghost-text {
    font-size: 28vw;
    bottom: -0.05em;
    -webkit-text-stroke: 1px rgba(255,255,255,0.07);
  }

  .fv-vertical-accent { display: none; }

  .fv-content {
    padding: 40px 24px 80px;
    height: auto;
  }

  .fv-deco-top { margin-bottom: 14px; }

  .fv-catch-en {
    font-size: 10px;
    margin-bottom: 10px;
    letter-spacing: 0.12em;
  }

  .fv-main-catch {
    font-size: clamp(28px, 8vw, 38px);
    margin-bottom: 24px;
    line-height: 1.3;
    white-space: nowrap;
  }

  .fv-main-catch-sub {
    font-size: 15px;
    margin-top: 6px;
    white-space: nowrap;
  }

  .fv-bottom-area {
    gap: 16px;
    flex-direction: row;
    align-items: center;
    margin-bottom: 32px;
    width: 100%;
  }

  .fv-pr-badges {
    flex-direction: column;
    gap: 10px;
    flex: 1;
    margin-bottom: 0;
  }

  .fv-pr-badge {
    padding: 10px 24px;
    font-size: 14px;
    letter-spacing: 0.15em;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.22);
  }

  .fv-cta-circle {
    width: 90px;
    height: 90px;
    margin-bottom: 0px !important;
  }

  .fv-cta-label { font-size: 10px; }

  .fv-deco-bottom { margin-top: 16px; }
}

/* ============================================================
   CTA BAND
   ============================================================ */
/* --- Redesigned CTA BAND (Modern & Creative Redesign) --- */
.cta-band {
  width: 100%;
  background: url('../img/ctabg.jpg') no-repeat center / cover;
  position: relative;
  padding: 40px 20px; /* Reduced padding for smaller height */
  margin-bottom: 80px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Decorative Ghost Text */
.cta-band::before {
  content: 'RESERVATION';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 700;
  color: rgba(0, 0, 0, 0.03); /* Subtle dark ghost text */
  letter-spacing: 0.15em;
  pointer-events: none;
  z-index: 1;
}

.cta-band-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px; /* Reduced gap between elements */
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.cta-tagline {
  font-family: var(--font-jp);
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: -10px;
}

.cta-phone-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en);
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 600;
  color: var(--color-text); /* Use theme dark text */
  text-decoration: none;
  transition: opacity 0.2s;
}
.cta-phone-large:hover { opacity: 0.8; }

.cta-phone-large svg {
  width: 32px;
  height: 32px;
  color: var(--color-gold);
}

.cta-info-sub {
  font-family: var(--font-jp);
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text-light); /* Darker shade for better readability */
  letter-spacing: 0.05em;
}

.cta-btn-main {
  margin-top: 12px; /* Reduced top margin */
  width: 100%;
  max-width: 540px;
  background: var(--color-orange); /* Use theme orange as primary CTA block color */
  color: #fff;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(192, 84, 58, 0.2);
}

.cta-btn-main:hover {
  background: var(--color-orange-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(192, 84, 58, 0.4);
}

.cta-btn-main svg {
  flex-shrink: 0;
}
.cta-btn-main .arrow {
  font-family: var(--font-en);
  margin-left: 8px;
  font-size: 1.2em;
}

/* ============================================================
   TV - TROUBLE / こんな方に
   ============================================================ */
#trouble {
  padding-top: 20px;
}

.trouble-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.trouble-image {
  width: 100%;
  overflow: hidden;
}
.trouble-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.trouble-text {}
.trouble-catch {
  font-family: var(--font-en);
  font-size: clamp(22px, 5vw, 36px);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--color-green-dark);
  margin-bottom: 8px;
}
.trouble-catch-sub {
  font-size: 13px;
  color: var(--color-text-light);
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}
.trouble-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.trouble-list li {
  font-size: 15px;
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}
.trouble-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 1px;
  background: var(--color-green);
}
.trouble-closing {
  font-size: 15px;
  line-height: 2;
  border-left: 2px solid var(--color-green-light);
  padding-left: 16px;
  color: var(--color-text-light);
}

/* ============================================================
   ABOUT
   ============================================================ */
#about { }

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.about-text {}
.about-en {
  font-family: var(--font-en);
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--color-green-dark);
  line-height: 1.2;
  margin-bottom: 6px;
}
.about-ja-title {
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--color-text-light);
  margin-bottom: 28px;
}
.about-body {
  font-size: 15px;
  line-height: 2;
}
.about-body p + p { margin-top: 16px; }

.about-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.about-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--color-orange);
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ============================================================
   SERVICE
   ============================================================ */
#service {}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 40px; /* Spacing between items on mobile */
}

.service-card {
  padding: 0;
  /* border-bottom removed */
}
/* border-top removed */

.service-card-image {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}
.service-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-image img { transform: scale(1.03); }

.service-card-num {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--color-orange);
  margin-bottom: 8px;
}
.service-card-title {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 12px;
  color: var(--color-green-dark);
}
.service-card-body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-light);
}

/* ============================================================
   RECOMMEND MENU
   ============================================================ */
#recommend {}

.recommend-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.recommend-image {
  width: 100%;
  overflow: hidden;
}
.recommend-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.recommend-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recommend-label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--color-orange);
  margin-bottom: 12px;
}
.recommend-title {
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 16px;
  color: var(--color-green-dark);
}
.recommend-price {
  font-family: var(--font-en);
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 300;
  color: var(--color-orange);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.recommend-price small {
  font-size: 14px;
  color: var(--color-text-light);
  font-family: var(--font-jp);
  font-weight: 300;
}
.recommend-desc {
  font-size: 14px;
  line-height: 2;
  color: var(--color-text-light);
}
.recommend-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--color-line);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  align-self: flex-start;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.recommend-cta-btn:hover {
  background: #05b14c;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(6, 199, 85, 0.3);
}

/* ============================================================
   PRICE MENU
   ============================================================ */
#price {}

.price-intro {
  font-size: 14px;
  line-height: 2;
  color: var(--color-text-light);
  margin-bottom: 36px;
  text-align: left;
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.price-card {
  border: 1px solid var(--color-beige-mid);
  padding: 24px;
  transition: border-color 0.25s;
}
.price-card:hover { border-color: var(--color-green-light); }

.price-card-image {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}
.price-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.price-card-body { text-align: center; }
.price-card-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-green-dark);
  margin-bottom: 10px;
}
.price-card-detail {
  font-size: 13px;
  line-height: 2;
  color: var(--color-text-light);
  text-align: left;
}
.price-card-list {
  display: inline-block;
  text-align: left;
  margin-bottom: 16px;
}
.price-card-list li {
  position: relative;
  padding-left: 1.25em;
  margin-bottom: 4px;
}
.price-card-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 0;
  color: inherit;
}
.price-card-note {
  font-size: 11px;
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {}

.swiper-gallery-wrapper {
  position: relative;
  padding: 0 10px;
}

.swiper-gallery {
  width: 100%;
}

.swiper-gallery .swiper-slide {
  width: 85%;
  cursor: pointer;
  overflow: hidden;
}
.swiper-gallery .swiper-slide img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.swiper-gallery .swiper-slide:hover img { transform: scale(1.04); }

.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.gallery-btn {
  width: 44px; height: 44px;
  border: 1.5px solid var(--color-green);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-dark);
  font-size: 16px;
  transition: background 0.2s, color 0.2s;
}
.gallery-btn:hover { background: var(--color-green); color: #fff; }

/* Modal */
#gallery-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.88);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
#gallery-modal.active { display: flex; }
#gallery-modal img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}
.modal-close-btn {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   MESSAGE
   ============================================================ */
#message {
  background: var(--color-beige);
  padding: 60px 20px;
  margin-bottom: 80px;
}

.message-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.message-inner .section-heading {
  margin-bottom: 120px; /* Increased to prevent overlap with message title */
}

.message-en {
  font-family: var(--font-en);
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--color-green-dark);
  margin-bottom: 8px;
}
.message-ja-title {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--color-text-light);
  margin-bottom: 36px;
}
.message-line {
  width: 40px;
  height: 1px;
  background: var(--color-green-light);
  margin: 0 auto 36px;
}
.message-body {
  font-size: 15px;
  line-height: 2.2;
  color: var(--color-text);
}
.message-body p + p { margin-top: 20px; }

/* ============================================================
   CONTACT / ACCESS
   ============================================================ */
#contact {}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info {}

.contact-store-name {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--color-green-dark);
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.contact-store-name-ja {
  font-family: var(--font-jp);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--color-text-light);
}

.contact-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}
.contact-table tr {
  border-bottom: 1px solid var(--color-beige-mid);
}
.contact-table th {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  text-align: left;
  padding: 12px 16px 12px 0;
  white-space: nowrap;
  vertical-align: top;
  width: 80px;
}
.contact-table td {
  font-size: 14px;
  line-height: 1.8;
  padding: 12px 0;
  vertical-align: top;
}

.sns-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.sns-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  font-size: 12px;
  letter-spacing: 0.1em;
  border: 1.5px solid var(--color-beige-mid);
  color: var(--color-text);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.sns-btn:hover {
  border-color: var(--color-green);
  color: var(--color-green-dark);
  background: var(--color-beige);
}
.sns-btn.line-btn {
  background: var(--color-line);
  border-color: var(--color-line);
  color: #fff;
}
.sns-btn.line-btn:hover { background: #05b84d; }
.sns-btn img { width: 16px; height: 16px; object-fit: contain; }

.contact-map iframe {
  width: 100%;
  height: 280px;
  display: block;
  border: none;
  filter: grayscale(20%);
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--color-text);
  padding: 36px 20px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--color-beige-mid);
  margin-bottom: 6px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  margin-bottom: 20px;
}
.footer-nav a {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.9); }
.footer-copy {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 44px; height: 44px;
  background: var(--color-green-dark);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s;
  z-index: 500;
}
#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover { background: var(--color-green); }

/* ============================================================
   SP STICKY CTA (SP only)
   ============================================================ */
#sp-sticky-cta {
  display: flex;
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  z-index: 900;
  height: 56px;
}
#sp-sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: opacity 0.2s;
}
#sp-sticky-cta a:hover { opacity: 0.85; }
.sticky-tel-btn {
  background: var(--color-green-dark);
  color: #fff;
}
.sticky-line-btn {
  background: var(--color-orange);
  color: #fff;
}

/* ============================================================
   PC BREAKPOINT  768px+
   ============================================================ */
@media (min-width: 768px) {

  section { margin-bottom: 120px; }

  /* Header */
  .header-nav {
    display: flex;
    gap: 32px;
    align-items: center;
  }
  .header-nav a {
    font-family: var(--font-en);
    font-size: 13px;
    letter-spacing: 0.18em;
    color: var(--color-text);
    transition: color 0.2s;
    position: relative;
  }
  .header-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--color-orange);
    transition: width 0.25s;
  }
  .header-nav a:hover { color: var(--color-orange); }
  .header-nav a:hover::after { width: 100%; }

  .header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--color-line);
    color: #fff;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: all 0.25s ease;
  }
  .header-cta:hover {
    background: #05b14c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
  }

  .hamburger { display: none; }

  /* CTA Band */
  .cta-band { padding: 60px 40px; }
  .cta-band-inner { gap: 12px; }
  .cta-btn-main { padding: 20px 60px; font-size: 19px; }

  /* Section heading */
  .section-heading figure { max-width: 40%; }

  /* Trouble Grid */
  .trouble-grid {
    flex-direction: row;
    gap: 60px;
    align-items: center;
  }
  .trouble-image { width: 40%; flex-shrink: 0; }
  .trouble-image img { height: 460px; }
  .trouble-text { width: 60%; }

  /* About Grid */
  .about-grid {
    flex-direction: row;
    gap: 60px;
    align-items: center;
  }
  .about-text { width: 58%; order: 1; }
  .about-image { width: 42%; flex-shrink: 0; order: 2; }
  .about-image img { height: 400px; }

  /* Service Grid */
  .service-grid {
    flex-direction: row;
    align-items: stretch;
    gap: 32px; /* Spacing between items on desktop */
  }
  .service-card {
    flex: 1;
    border-bottom: none;
    border-right: none; /* Borders removed for spaced layout */
    padding: 0;
  }
  .service-card:last-child { border-right: none; }
  .service-card > * { padding: 0; }
  .service-card-image { padding: 0; margin-bottom: 0; }
  .service-card-image img { height: 240px; }
  .service-card-num { padding-top: 24px; }
  .service-card-body { padding-bottom: 24px; }

  /* Recommend Grid */
  .recommend-grid {
    flex-direction: row;
    gap: 60px;
    align-items: center;
  }
  .recommend-image { width: 42%; flex-shrink: 0; }
  .recommend-image img { height: 460px; }
  .recommend-text { width: 58%; }

  /* Price Grid */
  .price-intro { text-align: center; }
  .price-card-detail { text-align: center; }
  
  .price-grid {
    flex-direction: row;
    gap: 24px;
  }
  .price-card { flex: 1; }

  /* Gallery */
  .swiper-gallery .swiper-slide { width: 38%; }
  .swiper-gallery .swiper-slide img { height: 300px; }

  /* Contact Grid */
  .contact-grid {
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
  }
  .contact-info { width: 42%; flex-shrink: 0; }
  .contact-map { flex: 1; }
  .contact-map iframe { height: 400px; }

  /* Message */
  #message { padding: 80px 20px; }

  /* SP features hidden on PC */
  #sp-sticky-cta { display: none; }

  /* Scroll top position */
  #scroll-top { bottom: 30px; }
}

/* ============================================================
   UTILITY & ANIMATIONS
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Staggered Delay Utility */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* SP Only Line Break */
@media (min-width: 768px) {
  .sp-br { display: none; }
}
