/* ══════════════════════════════
   RESET & BASE
══════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html, body { 
  min-height:100%; 
  overflow-x:hidden; 
  /* 禁止コピー・選択 */
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
}
body {
  font-family: 'Zen Maru Gothic', sans-serif;
  background: #fdf8f0;
  margin: 0;
}

.sp-only { display: none; }
@media (max-width: 768px) {
  .sp-only { display: block; } /* Using block or inline based on context */
}

:root {
  --orange:   #e07a3a;
  --orange-d: #c05e20;
  --green:    #6a9e70;
  --green-d:  #4a7a52;
  --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: 95px;
  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: auto;
  height: 60px;
}
.logo-emblem img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.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; */ /* Remove to allow wavy border to be visible above */
}

/* 背景装飾サークル */
.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; }
}

/* ══════════════════════════════
   SERVICES SECTION
   ══════════════════════════════ */
.services {
  padding: 100px 20px;
  background: #fff;
  text-align: center;
}

.section-title {
  margin-bottom: 60px;
  text-align: center;
}
.title-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--orange);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.title-ja {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.title-ja::after {
  content: '';
  position: absolute;
  bottom: 0; left: 25%; right: 25%;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform .3s, box-shadow .3s;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-img {
  width: 100%; height: 200px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 30px 20px;
}
.service-content h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.service-content p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-content .price {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--orange);
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(58,46,34,0.1);
}
.price-row:last-child { border-bottom: none; }
.price-label {
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 700;
}
.price-val {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--orange);
}

/* ══════════════════════════════
   FOLLOW CTA SECTION
   ══════════════════════════════ */
.follow-cta {
  padding: 120px 20px;
  background: linear-gradient(135deg, #fdf8f0 0%, #f7e8d5 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.follow-cta::before {
  content: '🐾';
  position: absolute;
  font-size: 200px;
  opacity: 0.03;
  top: -50px; left: -50px;
  transform: rotate(-20deg);
}
.follow-cta::after {
  content: '🐾';
  position: absolute;
  font-size: 150px;
  opacity: 0.03;
  bottom: -30px; right: -30px;
  transform: rotate(15deg);
}

.fcta-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.fcta-inner h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 24px;
}
.fcta-inner p {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 40px;
}

.fcta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.btn-tel, .btn-line {
  display: inline-flex;
  align-items: center;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.btn-tel {
  background: var(--green);
  color: #fff;
}
.btn-line {
  background: #06C755;
  color: #fff;
}
.btn-tel:hover, .btn-line:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
.site-footer {
  background: var(--text);
  color: #fff;
  padding: 60px 20px 40px;
}
@media (max-width: 768px) {
  .site-footer {
    padding-bottom: 100px; /* 固定ボタン分の余白 */
  }
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.footer-info {
  text-align: center;
}
.footer-info h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
.footer-info p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .fcta-btns {
    flex-direction: column;
  }
  .btn-tel, .btn-line {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════
   TROUBLES SECTION
   ══════════════════════════════ */
.troubles {
  padding: 80px 20px;
  background: #fff;
}
.troubles-inner {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--cream);
  padding: 60px 50px;
  border-radius: 30px;
  border: 2px dashed var(--orange);
  position: relative;
}
.troubles-inner::before {
  content: '？';
  position: absolute;
  top: -25px; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 50px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 24px;
}
.troubles-heading {
  text-align: center;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 30px;
  line-height: 1.4;
}
.troubles-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
  list-style: none;
}
.troubles-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.5;
}
.troubles-list li::before {
  content: '✔';
  position: absolute;
  left: 0; top: 0.2em;
  color: var(--orange);
  font-weight: 900;
}

@media (max-width: 600px) {
  .troubles-list { grid-template-columns: 1fr; }
  .troubles-inner { padding: 40px 20px; }
}


/* ══════════════════════════════
   POINTS (SERVICE) SECTION
   ══════════════════════════════ */
.points {
  padding: 100px 20px;
  background: #fff;
}
.points-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.point-item {
  display: flex;
  align-items: center;
  gap: 50px;
}
.point-item:nth-child(even) {
  flex-direction: row-reverse;
}
.point-visual {
  flex: 0 0 45%;
  position: relative;
}
.point-img {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.point-num {
  position: absolute;
  top: -20px; left: -20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: var(--orange);
  line-height: 1;
  text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff;
  z-index: 2;
}
.point-item:nth-child(even) .point-num {
  left: auto; right: -20px;
}
.point-content {
  flex: 1;
}
.point-content h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.5;
}
.point-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
}

@media (max-width: 768px) {
  .point-item, .point-item:nth-child(even) {
    flex-direction: column;
    gap: 30px;
    text-align: left;
  }
  .point-visual {
    width: 100%;
    flex: none;
  }
  .point-num {
    font-size: 50px;
    top: -15px; left: 10px;
    transform: none;
  }
  .point-item:nth-child(even) .point-num {
    left: 10px; right: auto;
  }
  .point-content h3 {
    margin-top: 10px;
  }
  .points-grid { gap: 60px; }
}


/* ══════════════════════════════
   BACK TO TOP
   ══════════════════════════════ */
.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 80px;
  width: 50px; height: 50px;
  background: #fff;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  bottom: 100px;
}
.back-to-top:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-5px);
}
.back-to-top svg {
  width: 24px; height: 24px;
}

@media (max-width: 768px) {
  .back-to-top { bottom: 100px; right: 20px; }
  .back-to-top.visible { bottom: 110px; }
}

/* ══════════════════════════════
   STAFF SECTION
   ══════════════════════════════ */
/* ══════════════════════════════
   VOICE (CUSTOMER REVIEWS) SECTION
   ══════════════════════════════ */
.voice {
  padding: 100px 20px;
  background: var(--cream);
  text-align: center;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.voice-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
.voice-card::before {
  content: '“';
  position: absolute;
  top: 10px; left: 20px;
  font-size: 60px;
  color: var(--orange);
  opacity: 0.1;
  font-family: serif;
}

.voice-stars {
  color: #f0b840;
  font-size: 18px;
  letter-spacing: 2px;
}

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

.voice-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.voice-name::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--orange);
}

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: #fff;
  color: var(--text);
  border: 2px solid var(--orange);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
}
.btn-google:hover {
  background: var(--orange);
  color: #fff;
}

/* ══════════════════════════════
   ACCESS SECTION
   ══════════════════════════════ */
.access {
  padding: 100px 20px;
  background: #fff;
}
.access-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.access-map {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.access-map iframe {
  width: 100%; height: 100%;
  border: none;
}
.access-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.access-list {
  list-style: none;
}
.access-list li {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid rgba(58,46,34,0.08);
}
.access-list li:last-child { border-bottom: none; }
.access-list .label {
  width: 120px;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
}
.access-list .val {
  color: var(--text);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .access-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ══════════════════════════════
   STYLE GALLERY SECTION
   ══════════════════════════════ */
.styles {
  padding: 100px 20px;
  background: #fff;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-cta {
  margin-top: 40px;
}
.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
}
.btn-insta:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(193, 53, 132, 0.4);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 10px;
  }
}

/* ── Lightbox Overlay ── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 20px;
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 50px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.lightbox-overlay.active .lightbox-img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  color: #fff;
  font-size: 30px;
  font-weight: 300;
}
/* ══════════════════════════════
   WAVY BORDER ENHANCEMENTS (Bigger & Rounder)
   ══════════════════════════════ */
.scallop-wrap {
  position: absolute;
  top: -40px; /* Aligned to height */
  left: 0;
  width: 100%;
  height: 40px;
  background-size: 80px 40px;
  background-repeat: repeat-x;
  z-index: 10;
  pointer-events: none;
  overflow: visible !important;
}

/* About (Concept) Wave - Cream Color */
.scallop-cream {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 40'%3E%3Cpath d='M0 40 A 40 40 0 0 1 80 40 L 80 40 L 0 40 Z' fill='%23fdf8f0' /%3E%3C/svg%3E");
}

/* Styles (Gallery) Wave - White Color */
.scallop-white {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 40'%3E%3Cpath d='M0 40 A 40 40 0 0 1 80 40 L 80 40 L 0 40 Z' fill='%23ffffff' /%3E%3C/svg%3E");
}

/* Ensure sections allow scallops to overflow upward */
section.about, section.styles {
  position: relative;
  overflow: visible !important;
}

@media (max-width: 768px) {
  .scallop-wrap {
    top: -20px;
    height: 20px;
    background-size: 40px 20px;
  }
  .scallop-cream {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 20'%3E%3Cpath d='M0 20 A 20 20 0 0 1 40 20 L 40 20 L 0 20 Z' fill='%23fdf8f0' /%3E%3C/svg%3E");
  }
  .scallop-white {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 20'%3E%3Cpath d='M0 20 A 20 20 0 0 1 40 20 L 40 20 L 0 20 Z' fill='%23ffffff' /%3E%3C/svg%3E");
  }
}


/* ══════════════════════════════
   MOTION & ANIMATIONS (FAIL-SAFE)
   ══════════════════════════════ */
/* Elements are visible by default. JS will add 'reveal-prepare' to hide them for the animation sequence. */
.reveal {
  opacity: 1;
  transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

.reveal-prepare {
  opacity: 0 !important;
  transform: translateY(40px) !important;
}
.reveal-prepare.reveal-left { transform: translateX(60px) translateY(0) !important; }
.reveal-prepare.reveal-right { transform: translateX(-60px) translateY(0) !important; }
.reveal-prepare.reveal-zoom { transform: scale(0.8) !important; }

.reveal.active {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}

/* Delay classes */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ── Banner Section Styling ── */
.banner-section {
  width: 100%;
  padding: 60px 0;
  margin: 0;
  overflow: hidden;
  background: #fff;
}
.banner-section img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.banner-section:hover img {
  transform: scale(1.03);
}
