/* ============================================================
   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:       #ffffff;
  --color-line:        #06c755;
  --color-gold:        #c5a059; /* New premium accent color */
  --color-light-brown: #8e7a68; /* Premium light brown 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: 0 !important; }

/* --- 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 - Hidden */
.section-heading::before {
  display: none !important;
}

/* English heading - Hidden */
.section-heading-en {
  display: none !important;
}

/* Japanese heading - Primary Main Title */
.section-heading-ja {
  font-family: var(--font-jp);
  font-size: clamp(24px, 4.5vw, 32px);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #735b48 !important;
  position: relative;
  z-index: 2;
  display: block;
}

/* Accent Line for Japanese Heading */
.section-heading-ja::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-light-brown);
  margin: 15px auto 0;
}

/* 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(255, 255, 255, 0.2); /* Elegant blur glass background */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
#site-header.scrolled {
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 4px 20px rgba(58,53,48,0.06);
}

.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;
  color: #ffffff !important;
}
.header-logo a:hover { opacity: 0.72; }

.header-logo-text {
  display: block;
  color: #ffffff !important;
  font-weight: bold;
}

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

/* Header CTA Button & Wrapper */
.header-cta-wrapper {
  display: none;
}
.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: #ffffff;
  color: var(--color-light-brown);
  border: 1px solid var(--color-light-brown);
  border-radius: 0; /* Sharp corners */
  font-size: 14px;
  letter-spacing: 0.12em;
  transition: transform 0.3s ease, background 0.25s, color 0.25s;
}
.overlay-cta a:hover {
  background: var(--color-light-brown);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ============================================================
   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;
  transform: scale(1.0);
  transition: transform 0s;
}

.swiper-fv .swiper-slide-active img,
.swiper-fv .swiper-slide-duplicate-active img,
.swiper-fv .swiper-slide-prev img,
.swiper-fv .swiper-slide-duplicate-prev img {
  transform: scale(1.1);
  transition: transform 10s linear;
}

/* ============================================================
   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: var(--color-beige);
  background: var(--color-beige);
  color: var(--color-light-brown);
  font-family: var(--font-jp);
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 10px 24px;
  border-radius: 0; /* Sharp corners */
  border: 1px solid var(--color-beige-mid);
  box-shadow: 0 6px 18px rgba(142, 122, 104, 0.08);
  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(142, 122, 104, 0.15);
}

.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: #ffffff;
  color: var(--color-light-brown);
  border: 1px solid var(--color-light-brown);
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 15px rgba(142, 122, 104, 0.15);
}

.fv-cta-circle:hover {
  background: var(--color-light-brown);
  color: #ffffff;
  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(142, 122, 104, 0.3);
  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: 18px; /* Updated to 18px as requested */
    margin-bottom: 30px;
    line-height: 1.6;
    white-space: normal;
    text-align: center;
  }

  .fv-main-catch-sub {
    font-size: 14px;
    margin-top: 4px;
    white-space: normal;
  }

  .fv-bottom-area {
    gap: 30px;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    width: 100%;
  }

  .fv-pr-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    flex: none;
    width: 100%;
    margin-top: 20px;
    padding: 0 10px;
  }

  .fv-pr-badge {
    padding: 8px 10px;
    font-size: 11px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(142, 122, 104, 0.05);
    text-align: center;
    white-space: nowrap;
  }

  .fv-pr-badge:nth-child(1),
  .fv-pr-badge:nth-child(2) {
    width: calc(50% - 4px);
    flex: 1;
  }

  .fv-pr-badge:nth-child(3) {
    width: 100%;
    flex-basis: 100%;
  }

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

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

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

  /* Align text parts to left on SP */
  .about-text { text-align: left; }
  .message-body { text-align: left; }

  /* Fit titles on a single line on SP and adjust font sizes dynamically */
  .service-card-title {
    font-size: 4.8vw !important;
    white-space: nowrap;
  }
  .service-card-title br {
    display: none;
  }

  .trouble-catch {
    font-size: clamp(16px, 4.8vw, 20px) !important;
    white-space: nowrap;
  }
}

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

/* Background Image with Blur and White Fade */
.cta-band::after {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)), url('../img/ctabg.jpg') no-repeat center / cover;
  filter: blur(6px);
  z-index: 1;
  pointer-events: none;
}

/* 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.05); /* Subtle dark ghost text for better visibility on faded bg */
  letter-spacing: 0.15em;
  pointer-events: none;
  z-index: 2; /* Put above blur overlay but below text content */
}

.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: #b30000;
  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;
  width: 100%;
  max-width: 540px;
  background: #ffffff;
  color: var(--color-light-brown);
  border: 1px solid var(--color-light-brown);
  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(142, 122, 104, 0.15);
  border-radius: 0 !important; /* Sharp corners */
}

.cta-btn-main:hover {
  background: var(--color-light-brown);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(142, 122, 104, 0.3);
}

.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 {
  background-color: #ffffff;
  padding-top: 20px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  #trouble {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.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: 14px;
  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: 14px;
  line-height: 2;
  border-left: 2px solid var(--color-green-light);
  padding-left: 16px;
  color: var(--color-text-light);
}

/* ============================================================
   ABOUT
   ============================================================ */
#about { 
  background-color: #f1f1e6; 
  padding: 80px 0;
  margin-bottom: 0;
}

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

.about-text {
  text-align: center;
}
.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 {
  width: 100%;
  margin-bottom: 30px;
}
.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0 !important;
}

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

/* ============================================================
   SERVICE
   ============================================================ */
#service {
  background-color: #ffffff;
}

.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: 24px;
  overflow: hidden;
  border-radius: 0; /* Sharp corners */
}
.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.05); }

.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: 16px; /* Updated from 17px */
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 12px;
  color: var(--color-green-dark);
}
@media (min-width: 768px) {
  .service-card-title {
    font-size: 15px;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }
}
.service-card-body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-light);
}

/* ============================================================
   RECOMMEND MENU
   ============================================================ */
#recommend-cards-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background: linear-gradient(rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.68)), url('../img/recbg.jpg') no-repeat center / cover;
}
@media (min-width: 768px) {
  #recommend-cards-section {
    padding: 80px 0;
  }
}

#recommend {
  background-color: #f1f1e6;
  padding-top: 80px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  #recommend {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}

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

.recommend-image {
  width: 100%;
  overflow: hidden;
  border-radius: 0; /* Sharp corners */
}
.recommend-image img {
  width: 100%;
  height: 250px; /* Fixed height for SP */
  object-fit: cover;
}
@media (min-width: 768px) {
  .recommend-image img {
    height: 280px;
  }
}
 
 .swiper-recommend {
   width: 100%;
   height: 100%;
 }
 .swiper-recommend .swiper-slide {
   width: 100%;
   height: 100%;
   overflow: hidden;
 }
 .swiper-recommend .swiper-slide img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 6s ease; /* Very slow zoom for "Ken Burns" effect */
 }
 .swiper-recommend .swiper-slide-active img {
   transform: scale(1.1);
 }

.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-orange);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  align-self: center; /* Centered button */
  transition: all 0.3s ease;
  border-radius: 0 !important; /* Sharp corners */
}
.recommend-cta-btn:hover {
  background: var(--color-orange-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(192, 84, 58, 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 {
  background-color: #ffffff;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  #gallery {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

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

.swiper-gallery {
  width: 100%;
}

.swiper-gallery .swiper-slide {
  width: 100%; /* Full width on mobile */
  cursor: pointer;
  overflow: hidden;
  border-radius: 0; /* Sharp corners as requested previously */
}
@media (min-width: 768px) {
  .swiper-gallery .swiper-slide {
    width: 38%;
  }
}
.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: 96vw;
  max-height: 92vh;
  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;
}

#voice {
  padding: 80px 0;
  background-color: #ffffff;
  margin-bottom: 0;
}

.swiper-voice {
  padding-bottom: 50px !important;
}

.swiper-voice .swiper-slide {
  height: auto;
}

.voice-card {
  background: #fff;
  padding: 30px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
  border: 1px solid var(--color-beige-mid);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0; /* Sharp corners */
}
@media (min-width: 768px) {
  .voice-card {
    padding: 40px 30px;
  }
}

.voice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--color-gold);
}

.voice-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.voice-user-icon {
  font-size: 40px;
  color: var(--color-beige-mid);
  line-height: 1;
}

.voice-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.voice-rating {
  color: var(--color-gold);
  font-size: 12px;
  letter-spacing: 1px;
}

.voice-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
}

.voice-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  flex-grow: 1;
}

.voice-pagination .swiper-pagination-bullet-active {
  background: var(--color-gold) !important;
}

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

.voice-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #fff;
  color: var(--color-text);
  border: 1px solid var(--color-beige-mid);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  border-radius: 0 !important; /* Sharp corners */
}

.voice-btn:hover {
  background: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.voice-btn i {
  color: var(--color-gold);
  transition: color 0.3s;
}
.voice-btn:hover i {
  color: #fff;
}

/* Text Logo Styles */
.header-logo-text {
  font-family: var(--font-en);
  font-size: 22px; /* Slightly smaller for mobile */
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #917b66; /* Light brown as requested */
  transition: opacity 0.3s;
}

@media (min-width: 768px) {
  .header-logo-text {
    font-size: 26px;
    letter-spacing: 0.1em;
  }
}

.footer-logo {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #917b66; /* Consistent with header logo */
  margin-bottom: 12px;
}
#staff {
  margin-bottom: 20px !important;
}
#message {
  background-color: #ffffff;
  padding: 0px 20px 60px 20px;
  margin-bottom: 0;
}

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

.message-inner .section-heading {
  margin-bottom: 0px; /* Reduced to decrease space above image */
}

.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 {
  background-color: #f1f1e6;
  padding: 80px 0;
  margin-bottom: 0;
}

.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;
}

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

.contact-hotpepper-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  padding: 16px 24px;
  background: #d15c7a; /* Deep pink */
  color: #ffffff; /* White text */
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 0; /* Sharp corners */
  box-shadow: 0 4px 15px rgba(209, 92, 122, 0.2);
}

.contact-hotpepper-btn:hover {
  background: #b54a65; /* Darker deep pink */
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(209, 92, 122, 0.35);
}

.contact-sns-wrapper {
  display: flex;
  gap: 8px;
  max-width: 320px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact-sns-wrapper {
    margin: 0;
    max-width: 420px; /* Increased container width on PC */
  }
}

.contact-sns-btn {
  flex: 1 1 0;
  width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 2px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
@media (min-width: 768px) {
  .contact-sns-btn {
    font-size: 13px; /* Slightly larger text on PC */
    gap: 8px; /* Larger gap on PC */
    padding: 14px 4px; /* More comfortable padding on PC */
  }
}

.contact-sns-btn.btn-line {
  background-color: #06C755;
  color: #ffffff;
}

.contact-sns-btn.btn-line:hover {
  background-color: #05b04b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(6, 199, 85, 0.3);
}

.contact-sns-btn.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
}

.contact-sns-btn.btn-instagram:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(220, 39, 67, 0.3);
}

.contact-sns-btn.btn-web {
  background-color: #004898;
  color: #ffffff;
}

.contact-sns-btn.btn-web:hover {
  background-color: #003775;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 72, 152, 0.3);
}

.contact-sns-btn i {
  font-size: 16px;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #004898; /* Custom dark blue */
  padding: 36px 20px 92px; /* Bottom padding on mobile to clear the SP sticky CTA */
  text-align: center;
  border-top: none;
  color: #ffffff;
}

.footer-logo {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #ffffff;
  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: #ffffff;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-nav a:hover { color: var(--color-gold); }
.footer-copy {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   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: #d15c7a; /* Hotpepper brand pink */
  color: #fff;
}

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

  section { margin-bottom: 0 !important; }

  /* 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-gold);
    transition: width 0.25s;
  }
  .header-nav a:hover { color: var(--color-gold); }
  .header-nav a:hover::after { width: 100%; }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    gap: 8px;
    padding: 10px 12px;
    background: #ffffff;
    color: var(--color-light-brown);
    border: 1px solid var(--color-light-brown);
    border-radius: 0; /* Sharp corners */
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: all 0.25s ease;
  }
  .header-cta:hover {
    background: var(--color-light-brown);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(142, 122, 104, 0.2);
  }

  .header-cta-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .header-hotpepper-cta {
    background: #d15c7a !important;
    color: #ffffff !important;
    border-color: #d15c7a !important;
  }
  .header-hotpepper-cta:hover {
    background: #b54a65 !important;
    border-color: #b54a65 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(209, 92, 122, 0.3) !important;
  }

  .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;
    text-align: left;
  }
  .about-image {
    width: 42%;
    flex-shrink: 0;
    order: 2;
    margin-bottom: 0;
  }
  .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,
  .swiper-recommend,
  .swiper-recommend .swiper-slide { height: 460px; }
  .recommend-text { width: 58%; }
  .recommend-cta-btn { align-self: flex-start; }

  /* 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 {
    flex-direction: row;
    gap: 60px;
    align-items: stretch;
  }
  .contact-info { width: 42%; flex-shrink: 0; }
  .contact-cta { text-align: left; }
  .contact-map {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .contact-map iframe {
    height: 100% !important;
  }

  /* Staff & Message space overrides */
  #staff { margin-bottom: 40px !important; }
  #message { padding: 10px 20px 80px 20px; }

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

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

  /* Trouble desktop font overrides */
  .trouble-list li { font-size: 15px; }
  .trouble-closing { font-size: 15px; }

  /* Footer desktop padding override */
  #site-footer { padding: 36px 20px; }
}

/* ============================================================
   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; }

/* Line Break Utilities */
@media (max-width: 767px) {
  .pc-br { display: none; }
}
@media (min-width: 768px) {
  .sp-br { display: none; }
}

/* ============================================================
   CURVED SECTION DIVIDERS & SPECIFIC BUTTONS CUSTOM STYLING
   ============================================================ */

/* Curved Section Dividers */
.curve-to-beige, .curve-to-white, .curve-to-blue {
  position: relative;
}

.curve-to-beige::after, .curve-to-white::after, .curve-to-blue::after {
  content: '';
  position: absolute;
  bottom: -1px; /* Overlap slightly to prevent subpixel line */
  left: 0;
  width: 100%;
  height: 35px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 5;
  pointer-events: none;
}

.curve-to-beige::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0 C150,90 350,120 600,120 C850,120 1050,90 1200,0 L1200,120 L0,120 Z" fill="%23f1f1e6"/></svg>');
}

.curve-to-white::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0 C150,90 350,120 600,120 C850,120 1050,90 1200,0 L1200,120 L0,120 Z" fill="%23ffffff"/></svg>');
}

.curve-to-blue::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0 C150,90 350,120 600,120 C850,120 1050,90 1200,0 L1200,120 L0,120 Z" fill="%23004898"/></svg>');
}

/* Specific button style overrides */

/* Header Web Button Color */
#header-web-btn {
  background-color: #004898 !important;
  color: #ffffff !important;
  border-color: #004898 !important;
}

#header-web-btn:hover {
  background-color: #003775 !important;
  border-color: #003775 !important;
  color: #ffffff !important;
}

/* Phone Buttons: #004898 border, #ffffff background, becomes #004898 background on hover/touch */
#header-phone-btn, #cta1-phone-btn, #cta2-phone-btn {
  background-color: #ffffff !important;
  color: #004898 !important;
  border: 1px solid #004898 !important;
  transition: all 0.3s ease;
}

#header-phone-btn:hover, #header-phone-btn:active,
#cta1-phone-btn:hover, #cta1-phone-btn:active,
#cta2-phone-btn:hover, #cta2-phone-btn:active {
  background-color: #004898 !important;
  color: #ffffff !important;
  border-color: #004898 !important;
}

/* ============================================================
   ADDITIONAL USER REQUESTS 
   ============================================================ */

/* FV specific adjustments */
.fv-cta-circle {
  background-color: #004898 !important;
}
.fv-pr-badge {
  background-color: #f1f1e6 !important;
  color: #735b48 !important;
}

/* CTA Text Color */
.cta-tagline {
  color: #004898 !important;
}

/* Adjust font size for the long name on PC */
@media (min-width: 768px) {
  .about-en {
    font-size: 24px !important;
    white-space: nowrap !important;
  }
}

/* ============================================================
   LATEST USER REQUESTS 
   ============================================================ */

/* Update CTA text wrap */
.cta-tagline-wrap {
  text-align: left;
  display: inline-block;
  margin-bottom: 1.5rem;
  font-weight: bold;
  line-height: 1.8;
  color: #004898 !important;
  font-family: var(--font-jp);
}
@media (max-width: 767px) {
  .cta-tagline-wrap {
    font-size: clamp(13px, 3.8vw, 16px);
  }
}
@media (min-width: 768px) {
  .cta-tagline-wrap {
    font-size: 1.25rem;
  }
}

/* Scroll top button */
#scroll-top {
  background-color: #004898 !important;
}

/* SP styling for footer, service spacing */
@media (max-width: 767px) {
  /* Footer text one line */
  .footer-logo {
    font-size: clamp(12px, 4vw, 18px) !important;
    white-space: nowrap !important;
  }
  
  /* Space below Service 3rd card */
  .service-card:nth-child(3) {
    margin-bottom: 2.5rem !important;
  }
}

/* ============================================================
   OVERLAY AND RESPONSIVE FIXES (NEW)
   ============================================================ */

/* SP Hamburger Overlay updates */
#nav-overlay {
  background: #004898 !important;
}
.overlay-nav a {
  color: #ffffff !important;
}
.overlay-close {
  color: #ffffff !important;
}

/* Override .overlay-cta default structure if needed */
.overlay-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 300px;
}
.overlay-cta a {
  display: flex !important;
  width: 100% !important;
  align-items: center;
  justify-content: center;
  padding: 16px 20px !important;
  font-size: 14px !important;
  border-radius: 0px !important;
  font-weight: 500;
}
#overlay-phone-btn {
  background: #ffffff !important;
  color: #004898 !important;
  border: 1px solid #004898 !important;
}
#overlay-web-btn {
  background: #004898 !important;
  color: #ffffff !important;
  border: 1px solid #ffffff !important;
}

@media (max-width: 767px) {
  /* Ensure long store name fits on one line in About/Contact */
  .about-en, .contact-store-name {
    font-size: clamp(12px, 4vw, 20px) !important;
    white-space: nowrap !important;
  }
  
  /* Adjust CTA buttons size on SP */
  .cta-btn-main {
    padding: 12px 10px !important;
    font-size: clamp(12px, 3.5vw, 16px) !important;
  }
}


