@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

html,
body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #333333;
  background-color: #FAF7F2;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ユーザー選択禁止・右クリック禁止の補強 */
body {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* FV Swiper カスタマイズ */
.fv-swiper {
  width: 100vw;
  height: 100svh;
  /* スマホのアドレスバー考慮 */
  position: relative;
}

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

.fv-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}

/* セクション間余白 (SP 80px / PC 120px) */
section {
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  section {
    margin-bottom: 120px;
  }
}

/* セクションタイトル画像制限 */
.section-title-img {
  max-width: 50%;
  margin: 0 auto 40px;
  display: block;
  object-fit: contain;
}

/* 画像シャドウ・角丸なし（要件準拠） */
img {
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* スクロールダウンインジケーター */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}

.scroll-down::after {
  content: '';
  width: 1px;
  height: 40px;
  background: #fff;
  margin-top: 10px;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, 0);
  }

  40% {
    transform: translate(-50%, -20px);
  }

  60% {
    transform: translate(-50%, -10px);
  }
}

/* モーダル背景 */
#gallery-modal {
  backdrop-filter: blur(5px);
}


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

html,
body {
  height: 100%;
  overflow-x: hidden;
}

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

:root {
  --orange: #e07a3a;
  --orange-d: #c05e20;
  --green: #6a9e70;
  --green-d: #4a7a52;
  --yellow: #f0b840;
  --cream: #fdf8f0;
  --text: #3a2e22;
  --text-mid: #7a6a58;
}

/* ══════════════════════════════
   FV WRAPPER
══════════════════════════════ */
.fv {
  position: relative;
  width: 100%;
  height: 768px;
  background: var(--cream);
}

/* ── Main image area ── */
.fv-stage {
  position: absolute;
  left: 160px;
  right: 72px;
  top: 20px;
  bottom: 28px;
}

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

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center center;
  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%);
  }
}

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

.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%);
  pointer-events: none;
  z-index: 5;
  border-radius: 20px;
}

/* ══════════════════════════════
   SLIDE COUNTER  (left of image)
══════════════════════════════ */
.slide-counter-wrap {
  position: absolute;
  left: 90px;
  top: 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;
}

.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;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.0) 100%);
}

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

.copy-divider {
  width: 48px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.55);
  margin: 10px auto 8px;
  border-radius: 2px;
}

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

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

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

  .fv-stage {
    left: 10px;
    right: 10px;
    top: 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;
  }
}