/* ══════════════════════════════
   RESET & BASE
══════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Zen Maru Gothic', sans-serif;
  background: #fdf8f0;

  /* 文字のコピーを制限 */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

:root {
  --orange: #f08aa5;
  --orange-d: #d86885;
  --green: #b08bd6;
  --green-d: #8c67b2;
  --yellow: #f0b840;
  --cream: #fdf8f0;
  --text: #3a2e22;
  --text-mid: #7a6a58;
  --hdr-h: 100px;
  /* header height */
}

/* ══════════════════════════════
   HEADER  — flush to top, full width, always visible
══════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--hdr-h);
  z-index: 200;
  border-radius: 0;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;

  background: rgba(253, 248, 240, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

/* ── Nav groups ── */
.nav-group {
  display: flex;
  align-items: stretch;
  list-style: none;
}

.nav-group.left {
  justify-content: flex-end;
}

.nav-group.right {
  justify-content: flex-start;
}

.nav-group li {
  flex: 0 0 auto;
}

.nav-group li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px 0 14px;
  width: 110px;
  text-decoration: none;
  border-left: 1px solid rgba(58, 46, 34, 0.08);
  position: relative;
  transition: background .22s;
  border-radius: 0;
}

.nav-group.right li:last-child a {
  border-right: 1px solid rgba(58, 46, 34, 0.08);
  border-radius: 0;
}

.nav-group.left li:first-child a {
  border-radius: 0;
}

.nav-group li a:hover {
  background: rgba(224, 122, 58, 0.06);
}

/* bottom accent line on hover */
.nav-group li a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .25s;
  border-radius: 2px;
}

.nav-group li a:hover::after {
  transform: scaleX(1);
}

/* Nav icon — always orange */
.nav-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-icon svg {
  width: 26px;
  height: 26px;
}

.nav-group li a:hover .nav-icon svg {
  opacity: 0.75;
}

/* Nav text — always brown */
.nav-ja {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  line-height: 1;
  color: var(--text);
}

.nav-en {
  display: none;
}

/* ── Center Logo ── */
.header-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 28px;
  text-decoration: none;
  border-left: 1px solid rgba(58, 46, 34, 0.08);
  border-right: 1px solid rgba(58, 46, 34, 0.08);
}

.logo-emblem {
  width: 44px;
  height: 44px;
}

.logo-ja {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  white-space: nowrap;
  color: var(--green-d);
  line-height: 1;
}

.logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 9px;
  font-style: italic;
  letter-spacing: 0.2em;
  color: var(--text-mid);
  line-height: 1;
}


/* ══════════════════════════════
   FV WRAPPER — exactly 100vh, no scroll needed
══════════════════════════════ */
.fv {
  position: relative;
  width: 100%;
  height: 768px;
  background: var(--cream);
}

/* ── Main image area — centered accounting for side elements ── */
.fv-stage {
  position: absolute;
  /* left edge: after counter area (160px) */
  left: 160px;
  /* right edge: before float buttons (72px) */
  right: 72px;
  top: calc(var(--hdr-h) + 20px);
  bottom: 28px;
}

/* Image fills the stage */
.fv-stage-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.14), 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* ── Slide images ── */
.slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.slide.active {
  opacity: 1;
}

/* The coloured panel (would be a real photo) */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center center;
  /* Ken Burns — each slide zooms in or out */
  animation: none;
}

.slide.active .slide-bg {
  animation: kenburns 7s ease-in-out forwards;
}

@keyframes kenburns {
  0% {
    transform: scale(1.0) translate(0, 0);
  }

  100% {
    transform: scale(1.12) translate(-1%, -1%);
  }
}

/* Alternate direction for variety */
.slide:nth-child(2n).active .slide-bg {
  animation: kenburns-r 7s ease-in-out forwards;
}

@keyframes kenburns-r {
  0% {
    transform: scale(1.12) translate(1%, 1%);
  }

  100% {
    transform: scale(1.0) translate(0, 0);
  }
}

.slide-1 .slide-bg,
.slide-2 .slide-bg,
.slide-3 .slide-bg {
  background-color: #c8d8c0;
}

/* subtle vignette over image */
.fv-stage-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.0) 30%,
      rgba(0, 0, 0, 0.0) 45%,
      rgba(0, 0, 0, 0.65) 100%
      /* stronger dark at bottom for copy legibility */
    );
  pointer-events: none;
  z-index: 5;
  border-radius: 20px;
}


/* ══════════════════════════════
   SLIDE COUNTER  (left of image)
══════════════════════════════ */
.slide-counter-wrap {
  position: absolute;
  left: 90px;
  top: calc(var(--hdr-h) + 20px);
  bottom: 28px;
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 20;
}

.counter-current {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  letter-spacing: 0.02em;
}

.counter-sep {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--orange), rgba(106, 158, 112, 0.4));
}

.counter-total {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1;
  letter-spacing: 0.04em;
}

/* Dots below counter */
.counter-dots {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.cdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(106, 158, 112, 0.3);
  cursor: pointer;
  transition: all .3s;
  border: none;
  outline: none;
}

.cdot.active {
  background: var(--orange);
  height: 18px;
  border-radius: 3px;
}


/* ══════════════════════════════
   CATCHCOPY — bold, centered, impactful
══════════════════════════════ */
.fv-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 48px 32px 28px;
  pointer-events: none;
  border-radius: 0 0 20px 20px;
  text-align: center;
  /* extra gradient just behind copy text */
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.0) 100%);
}

/* "MY SWEET HOME" */
.copy-main {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 0.06em;
  line-height: 1;
  /* bright white glow makes orange pop on dark bg */
  text-shadow:
    0 0 40px rgba(255, 200, 100, 0.5),
    0 2px 16px rgba(0, 0, 0, 0.6),
    0 0 2px rgba(255, 255, 255, 0.3);
}

/* Divider line between main and sub */
.copy-divider {
  width: 48px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.55);
  margin: 10px auto 8px;
  border-radius: 2px;
}

/* Subtitle */
.copy-sub {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(11px, 1.3vw, 16px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.18em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
  line-height: 1.7;
}


/* ══════════════════════════════
   BLOG BUTTON — big, bold, unmissable
══════════════════════════════ */
.blog-btn {
  position: absolute;
  left: 80px;
  bottom: -4px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 50;
  box-shadow:
    0 0 0 6px rgba(224, 122, 58, 0.2),
    0 0 0 12px rgba(224, 122, 58, 0.08),
    0 14px 40px rgba(224, 122, 58, 0.55);
  transition: background .25s, transform .25s, box-shadow .25s;
  animation: blog-pulse 2.8s ease-in-out infinite;
}

@keyframes blog-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(224, 122, 58, 0.2), 0 0 0 12px rgba(224, 122, 58, 0.08), 0 14px 40px rgba(224, 122, 58, 0.55);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(224, 122, 58, 0.25), 0 0 0 22px rgba(224, 122, 58, 0.1), 0 18px 50px rgba(224, 122, 58, 0.6);
  }
}

.blog-btn:hover {
  background: var(--orange-d);
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 0 0 10px rgba(224, 122, 58, 0.25), 0 18px 50px rgba(224, 122, 58, 0.65);
}

.blog-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.blog-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-ja {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1;
}

.blog-rule {
  display: none;
}

.blog-en {
  display: none;
}

/* Float button colour variants */
.float-btn--tel {
  background: var(--green);
}

.float-btn--tel:hover {
  background: var(--green-d);
}

.float-btn--hp {
  background: #7a6a58;
}

.float-btn--hp:hover {
  background: #5a4e42;
}


/* ══════════════════════════════
   FLOATING RIGHT BUTTONS
══════════════════════════════ */
.float-right {
  position: fixed;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.float-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 46px;
  padding: 16px 0;
  background: var(--orange);
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  box-shadow: -3px 3px 14px rgba(0, 0, 0, 0.18);
  transition: background .22s, width .22s;
  overflow: hidden;
}

.float-btn:hover {
  background: var(--orange-d);
  width: 52px;
}

.float-btn-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-btn-icon svg {
  width: 19px;
  height: 19px;
  fill: #fff;
}

.float-btn-text {
  writing-mode: vertical-rl;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  white-space: nowrap;
}

.float-sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-right: 10px;
}

.float-sns-link {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #9a8a7a;
  transition: color .22s, transform .22s;
}

.float-sns-link:hover {
  color: var(--orange);
  transform: scale(1.15);
}

.float-sns-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}



/* ══════════════════════════════
   ABOUT SECTION
══════════════════════════════ */
.about {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 100px 80px 100px 120px;
  background: var(--cream);
  overflow: hidden;
}

/* 背景装飾サークル */
.about::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 184, 64, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.about::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 158, 112, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── テキスト側 ── */
.about-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.about-label-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--orange);
  text-transform: uppercase;
}

.about-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.about-label-ja {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.12em;
}

.about-heading {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.55;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.about-divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--orange), var(--yellow));
  border-radius: 2px;
  margin-bottom: 22px;
}

.about-body {
  font-size: 14.5px;
  line-height: 2;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 32px;
}

.about-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(224, 122, 58, 0.08);
  border: 1.5px solid rgba(224, 122, 58, 0.2);
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--orange);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background .22s, transform .22s;
  box-shadow: 0 6px 20px rgba(224, 122, 58, 0.35);
}

.about-btn:hover {
  background: var(--orange-d);
  transform: translateY(-2px);
}

/* ── 画像グリッド側 ── */
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 180px;
  gap: 10px;
}

.about-img-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  border-radius: 18px;
  overflow: hidden;
}

.about-img-sub {
  border-radius: 14px;
  overflow: hidden;
}

.about-img-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}

.about-img-main:hover .about-img-inner,
.about-img-sub:hover .about-img-inner {
  transform: scale(1.04);
}

/* 実績バッジ */
.about-badge {
  position: absolute;
  bottom: -16px;
  left: -20px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 8px 28px rgba(74, 122, 82, 0.4);
  z-index: 10;
}

.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.about-badge-num span {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.about-badge-txt {
  font-size: 9.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* ── ABOUT SP対応 ── */
@media (max-width: 768px) {
  .about {
    grid-template-columns: 1fr;
    padding: 60px 20px 70px;
    gap: 40px;
  }

  .about-images {
    grid-template-rows: 200px 140px;
  }

  .about-badge {
    width: 90px;
    height: 90px;
    bottom: -12px;
    left: -10px;
  }

  .about-badge-num {
    font-size: 24px;
  }
}


.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 310;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}

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

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

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

/* ══════════════════════════════
   DRAWER
══════════════════════════════ */
.sp-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 290;
  pointer-events: none;
}

.sp-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity .3s;
}

.sp-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(300px, 82vw);
  height: 100%;
  background: var(--cream);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -6px 0 30px rgba(0, 0, 0, 0.15);
}

.sp-drawer.open {
  pointer-events: auto;
}

.sp-drawer.open .sp-drawer-overlay {
  opacity: 1;
}

.sp-drawer.open .sp-drawer-panel {
  transform: translateX(0);
}

.sp-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(58, 46, 34, 0.08);
}

.sp-drawer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.sp-drawer-logo-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-d);
  letter-spacing: 0.1em;
}

.sp-drawer-close {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--text-mid);
  border-radius: 50%;
  transition: background .2s;
}

.sp-drawer-close:hover {
  background: rgba(58, 46, 34, 0.06);
}

.sp-drawer-nav {
  list-style: none;
  padding: 8px 0;
  flex: 1;
}

.sp-drawer-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  text-decoration: none;
  color: var(--text);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(58, 46, 34, 0.05);
  transition: background .2s;
}

.sp-drawer-nav li a:hover {
  background: rgba(224, 122, 58, 0.06);
}

.sp-drawer-nav li a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sp-drawer-sep {
  height: 1px;
  background: rgba(58, 46, 34, 0.1);
  margin: 8px 18px;
}

.sp-drawer-actions {
  padding: 12px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.sp-drawer-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
}

.sp-drawer-actions .dact-tel {
  background: var(--green);
}

.sp-drawer-actions .dact-hp {
  background: #7a6a58;
}

.sp-drawer-actions svg {
  width: 18px;
  height: 18px;
}

.sp-drawer-sns {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 4px 16px 24px;
}

.sp-drawer-sns a {
  color: var(--text-mid);
  transition: color .2s;
}

.sp-drawer-sns a:hover {
  color: var(--orange);
}

.sp-drawer-sns svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

/* ══════════════════════════════
   BOTTOM CTA BAR (SP only, FV通過後に出現)
══════════════════════════════ */
.sp-bottom-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  grid-template-columns: 1fr 1fr;
  height: 62px;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 -3px 16px rgba(0, 0, 0, 0.13);
}

.sp-bottom-cta.visible {
  transform: translateY(0);
}

.sp-bcta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.sp-bcta-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sp-bcta-tel {
  background: var(--green);
}

.sp-bcta-web {
  background: var(--orange);
}

/* ══════════════════════════════
   RESPONSIVE ≤ 768px
══════════════════════════════ */
@media (max-width: 768px) {

  :root {
    --hdr-h: 60px;
  }

  /* ヘッダー：ロゴ中央・ハンバーガー右 */
  .site-header {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    padding: 0 8px;
    gap: 0;
  }

  .nav-group.left {
    display: none;
  }

  .nav-group.right {
    display: none;
  }

  .header-logo {
    border: none;
    padding: 0;
    justify-content: center;
    grid-column: 2;
  }

  .logo-emblem {
    width: 34px;
    height: 34px;
  }

  .logo-ja {
    font-size: 11.5px;
  }

  .logo-en {
    display: none;
  }

  .hamburger {
    display: flex;
    grid-column: 3;
    justify-self: end;
  }

  .sp-drawer {
    display: block;
  }

  /* FV */
  .fv {
    height: 667px;
  }

  .fv-stage {
    left: 10px;
    right: 10px;
    top: calc(var(--hdr-h) + 10px);
    bottom: 10px;
  }

  .fv-stage-inner::after {
    background: none;
  }

  /* スライドカウンター非表示 */
  .slide-counter-wrap {
    display: none;
  }

  /* キャッチコピー */
  .copy-main {
    font-size: clamp(28px, 8vw, 42px);
  }

  .copy-sub {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .fv-copy {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    padding: 0 24px;
    text-align: center;
    background: none;
  }

  /* WEB予約丸ボタン：PCと同じ左配置 */
  .blog-btn {
    left: 4px;
    bottom: -4px;
    width: 120px;
    height: 120px;
  }

  .blog-ja {
    font-size: 17px;
  }

  /* 右追従ボタン非表示 */
  .float-right {
    display: none;
  }

  /* 固定CTAバー表示 */
  .sp-bottom-cta {
    display: grid;
  }
}

/* ══════════════════════════════
   COMMON & NEW SECTIONS
══════════════════════════════ */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title.text-left {
  text-align: left;
}

.st-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
}

.st-ja {
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.1em;
}

.feature {
  padding: 100px 20px;
  background: #fff;
}

.feature-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--cream);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.fc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-style: italic;
  color: rgba(224, 122, 58, 0.15);
  position: absolute;
  top: 10px;
  left: 20px;
}

.fc-icon {
  font-size: 44px;
  margin-bottom: 20px;
}

.fc-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-d);
  margin-bottom: 16px;
}

.fc-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-mid);
  text-align: left;
}

.price-sec {
  padding: 100px 20px;
  background: var(--cream);
}

.price-table-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid rgba(58, 46, 34, 0.08);
}

.price-table th {
  background: rgba(106, 158, 112, 0.1);
  color: var(--green-d);
  font-weight: 700;
  width: 33.33%;
}

.price-table th:first-child {
  border-radius: 10px 0 0 0;
}

.price-table th:last-child {
  border-radius: 0 10px 0 0;
}

.price-table td {
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-mid);
  text-align: right;
}

.flow-sec {
  padding: 100px 20px;
  background: #fff;
}

.flow-steps {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.flow-step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}

.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 50px;
  bottom: -20px;
  width: 2px;
  background: rgba(224, 122, 58, 0.2);
}

.fs-num {
  width: 50px;
  height: 50px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(224, 122, 58, 0.3);
}

.fs-content {
  background: var(--cream);
  padding: 24px 30px;
  border-radius: 14px;
  flex: 1;
}

.fs-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.fs-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
}

.greeting-sec {
  padding: 100px 20px;
  background: var(--cream);
}

.greeting-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.greeting-img {
  width: 100%;
  padding-top: 120%;
  background-size: cover;
  background-position: center;
  border-radius: 20px 20px 100px 20px;
  background-color: #e6dac3;
}

.greet-catch {
  font-size: 24px;
  color: var(--orange);
  line-height: 1.5;
  margin-bottom: 24px;
  font-weight: 900;
}

.greet-desc {
  font-size: 15px;
  line-height: 2;
  color: var(--text-mid);
  margin-bottom: 30px;
}

.greet-sign {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  text-align: right;
  color: var(--text);
}

.access-sec {
  padding: 100px 20px;
  background: #fff;
}

.access-wrap {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.access-info {
  background: var(--cream);
  padding: 40px;
  border-radius: 20px;
}

.ai-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.ai-logo-img {
  width: 34px;
  height: 34px;
}

.ai-logo span {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-d);
  letter-spacing: 0.1em;
}

.ai-list dt {
  font-weight: 700;
  font-size: 14px;
  color: var(--orange);
  margin-bottom: 6px;
}

.ai-list dd {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
  border-bottom: 1px dashed rgba(58, 46, 34, 0.1);
  padding-bottom: 16px;
}

.ai-list dd:last-of-type {
  border-bottom: none;
  margin-bottom: 30px;
}

.access-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--text);
  color: #fff;
  text-decoration: none;
  padding: 16px;
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: background .3s;
}

/* ══════════════════════════════
   GALLERY MODAL
══════════════════════════════ */
.g-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding: 40px 10px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.g-modal-content {
  margin: auto;
  display: block;
  width: 95%;
  max-width: 800px;
  animation: modalZoom 0.4s ease-out;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

@keyframes modalZoom {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.g-modal-close {
  position: fixed;
  top: 20px;
  right: 25px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1002;
  transition: color 0.3s;
  line-height: 1;
}

.g-modal-close:hover {
  color: var(--orange);
}

.access-btn:hover {
  background: var(--text-mid);
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  min-height: 400px;
  border: none;
}

.site-footer {
  background: var(--text);
  color: #fff;
  padding: 80px 20px 30px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.f-logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  font-style: italic;
  color: var(--yellow);
  display: block;
  margin-bottom: 6px;
}

.f-logo-ja {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.footer-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color .3s;
}

.footer-nav a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.copyright {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.top-scroll {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 50px;
  height: 50px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.top-scroll:hover {
  background: var(--orange-d);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.top-scroll svg {
  width: 24px;
  height: 24px;
}

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

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

  .greeting-img {
    padding-top: 60%;
  }

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

  .access-map iframe {
    min-height: 300px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 16px;
  }

  .price-table-wrap {
    padding: 20px;
  }

  .st-ja {
    font-size: 24px;
  }

  /* ABOUT SECTION SP */
  .about {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 40px;
  }

  .about-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .about-label::before {
    display: none;
  }

  .top-scroll {
    right: 18px;
    bottom: 84px;
    /* Above bottom-cta */
    width: 44px;
    height: 44px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    /* Specific to SP */
    transition: opacity .3s;
    /* Specific to SP */
  }

  .top-scroll svg {
    width: 22px;
    height: 22px;
  }
}