/* ============================================================
   Choco's Room - style.css
   水色 × 薄い緑 × ベージュ (柔らかい・優しい・水彩風)
   ============================================================ */
:root {
  /* ベージュ系 (ベース) */
  --color-beige: #fbfaf6;
  --color-beige-dark: #f0ebe1;
  --color-beige-mid: #e8e1d5;

  /* 水色系 */
  --color-blue: #a8d5e2;
  --color-blue-light: #e0f2f7;
  --color-blue-dark: #6faabf;

  /* 薄い緑系 */
  --color-green: #b5cfa8;
  --color-green-light: #e6f0e3;
  --color-green-dark: #7a9c6b;

  --color-text: #5a5754;
  --color-text-light: #8c867b;
  --color-white: #ffffff;

  /* フォント設定 (全体をZen Old Minchoに統一) */
  --font-jp: 'Zen Old Mincho', serif;
  --font-serif-jp: 'Zen Old Mincho', serif;
  --font-en: 'Zen Old Mincho', serif;

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

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

.sp-br {
  display: none;
}

.pc-br {
  display: block;
}

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-beige);
  overflow-x: hidden;
  width: 100%;
  user-select: none;
  -webkit-user-select: none;
}

@media (max-width: 767px) {
  :root {
    --section-px: 15px;
  }

  body {
    font-size: 14px;
  }

  section {
    padding: 60px 0;
  }

  .sp-br {
    display: block;
  }

  .pc-br {
    display: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
  pointer-events: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.section-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-px);
  position: relative;
  z-index: 2;
}

section {
  padding: 80px 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

/* 水彩風の背景グラデーションクラス */
.bg-watercolor-blue {
  background: var(--color-beige);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(168, 213, 226, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(181, 207, 168, 0.25) 0%, transparent 40%);
}

.bg-watercolor-green {
  background: var(--color-white);
  background-image:
    radial-gradient(circle at 80% 10%, rgba(181, 207, 168, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 20% 90%, rgba(168, 213, 226, 0.25) 0%, transparent 40%);
}

/* iOS対応のパララックス背景 */
.bg-parallax-bg {
  position: relative;
  background-color: var(--color-beige);
  clip-path: inset(0);
}

.bg-parallax-bg::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url('../img/spbg.png'); /* スマホ用の背景画像 */
  background-size: cover;
  background-position: center;
  z-index: -2;
  will-change: transform;
}

/* サイトの雰囲気に合わせた優しい半透明オーバーレイ */
.bg-parallax-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(251, 250, 246, 0.6);
  z-index: -1;
}

.bg-parallax-bg>.section-inner {
  position: relative;
  z-index: 1;
}

/* 画像の装飾（水彩の滲みの丸円） */
.blob-shape {
  position: relative;
  z-index: 1;
}

/* 画像本体のスタイル */
.blob-shape img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.5s ease;
}


/* 左上の水彩の滲み（丸円・水色） - 画像の背面に配置 */
.blob-shape::before {
  content: '';
  position: absolute;
  top: -15%;
  left: -10%;
  width: 40%;
  aspect-ratio: 1 / 1;
  background-color: var(--color-blue);
  border-radius: 50%;
  z-index: 0;
  filter: blur(15px);
  opacity: 0.6;
  mix-blend-mode: multiply;
  transition: all 0.5s ease;
}

/* 右下の水彩の滲み（丸円・薄緑） - 画像の前面に配置 */
.blob-shape::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -10%;
  width: 45%;
  aspect-ratio: 1 / 1;
  background-color: var(--color-green);
  border-radius: 50%;
  z-index: 3;
  filter: blur(18px);
  opacity: 0.6;
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: all 0.5s ease;
}

/* MESSAGEセクションでの重なり順の反転 */
#message .blob-shape::before {
  z-index: 3;
  pointer-events: none;
}

#message .blob-shape::after {
  z-index: 0;
}


/* --- Section Heading --- */
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding: 40px 0;
}

.section-heading::before {
  content: attr(data-en);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-jp);
  font-size: clamp(60px, 15vw, 110px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px rgba(168, 213, 226, 0.25);
  /* 水色の縁取り */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.9;
}

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

.section-heading-en::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-green-dark);
  margin: 20px auto 10px;
}

.section-heading-ja {
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-text);
  position: relative;
  z-index: 2;
  display: block;
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(251, 250, 246, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-beige-mid);
  transition: box-shadow 0.3s;
}

#site-header.scrolled {
  box-shadow: 0 2px 20px rgba(168, 213, 226, 0.2);
}

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

.header-logo a {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}

.header-logo a:hover {
  opacity: 0.72;
}

.header-logo-text {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-blue-dark);
}

.header-nav {
  display: none;
}

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

/* OVERLAY MENU */
#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-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 ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.overlay-nav a {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.1em;
  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-blue);
  transition: width 0.3s ease;
}

.overlay-nav a:hover {
  color: var(--color-blue-dark);
}

.overlay-nav a:hover::after {
  width: 100%;
}

.overlay-sns {
  margin-top: 48px;
  text-align: center;
}

/* 電話ボタン共通スタイル */
.btn-tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-blue-dark);
  color: #fff !important;
  font-family: var(--font-jp) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  padding: 14px 40px;
  border-radius: 40px;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(111, 170, 191, 0.3);
  transition: all 0.3s ease;
}

.btn-tel:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(111, 170, 191, 0.4);
}

/* ============================================================
   FV - FIRST VIEW
   ============================================================ */
#fv {
  position: relative;
  height: 100vh;
  min-height: 660px;
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  background: var(--color-beige);
  overflow: hidden;
}

/* Slider Background */
.fv-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.fv-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fvCrossfade 15s infinite ease-in-out, fvZoom 15s infinite linear;
}

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

.fv-slide.slide-1 {
  animation-delay: 0s, 0s;
}

.fv-slide.slide-2 {
  animation-delay: 5s, 5s;
}

.fv-slide.slide-3 {
  animation-delay: 10s, 10s;
}

@media (max-width: 767px) {
  .fv-slide.slide-2 img {
    object-position: 80% center;
  }
}

@keyframes fvCrossfade {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  33% {
    opacity: 1;
  }

  43% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fvZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

/* Gradient Overlay */
.fv-overlay-pc {
  display: none;
}

@media (min-width: 768px) {
  .fv-overlay-pc {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(251 250 246 / 80%) 0%, rgb(251 250 246 / 20%) 50%, transparent 100%);
    z-index: 2;
  }
}

.fv-overlay-sp {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(251, 250, 246, 0.8) 0%, transparent 40%, rgba(251, 250, 246, 1) 100%);
  z-index: 2;
}

@media (min-width: 768px) {
  .fv-overlay-sp {
    display: none;
  }
}

.fv-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1152px;
  margin: 0;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .fv-content {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  .fv-content {
    padding: 0 64px;
  }
}

.fv-text-box {
  max-width: 600px;
  padding: 40px 0;
  position: relative;
  z-index: 10;
}

.fv-catch-en {
  display: inline-block;
  font-family: var(--font-en);
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-blue-dark), var(--color-green-dark));
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(111, 170, 191, 0.2);
}

.fv-main-catch {
  font-family: var(--font-serif-jp);
  font-size: clamp(28px, 4.5vw, 48px);
  /* 周りを少し小さくして対比を強調 */
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: var(--color-blue-dark);
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(255, 255, 255, 0.9), 0 0 10px rgba(255, 255, 255, 1);
}

.fv-catch-small {
  display: block;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--color-text);
}

.fv-catch-em {
  display: inline-block;
  font-size: clamp(52px, 8.5vw, 92px);
  /* 心ほどける をさらに大きく */
  color: var(--color-green-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}

.fv-main-catch-sub {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(5px);
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Wave Animation */
.fv-wave-container {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}

.waves {
  position: relative;
  width: 100%;
  height: 10vh;
  min-height: 60px;
  max-height: 150px;
}

.parallax>use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

@media (max-width: 767px) {
  #fv {
    height: auto;
    min-height: 100vh;
    padding-top: 64px;
    flex-direction: column;
    justify-content: flex-start;
  }

  .fv-bg-slider {
    position: relative;
    height: 45vh;
    order: 2;
  }

  .fv-content {
    order: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 15px;
  }

  .fv-text-box {
    padding: 0;
    margin-top: 0;
    margin-left: 0;
  }

  .fv-main-catch {
    font-size: clamp(24px, 6.5vw, 34px);
  }

  .fv-catch-small {
    margin-bottom: 4px;
  }

  .fv-catch-em {
    font-size: clamp(42px, 12vw, 60px);
    display: inline-block;
    margin-bottom: 4px;
  }

  .fv-main-catch-sub {
    width: 100%;
    padding: 15px 9px;
    font-size: 14px;
  }

  .cta-band {
    padding: 30px 15px;
  }

  .cta-sub {
    margin-bottom: 5px;
  }
}

/* ============================================================
   TROUBLE (こんな方に)
   ============================================================ */
#trouble {
  background-color: var(--color-white);
}

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

.trouble-image {
  width: 100%;
  height: 300px;
}

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

.trouble-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(168, 213, 226, 0.4), transparent 60%);
  mix-blend-mode: multiply;
}

.trouble-catch {
  font-family: var(--font-jp);
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 500;
  color: var(--color-blue-dark);
  margin-bottom: 20px;
  line-height: 1.5;
}

.trouble-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trouble-list li {
  line-height: 1.6;
  padding-left: 28px;
  position: relative;
}

.trouble-list li::before {
  content: '\f00c';
  /* FontAwesome Check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--color-green-dark);
  background: var(--color-green-light);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.about-text {
  order: 2;
}

.about-ja-title {
  font-family: var(--font-jp);
  font-size: clamp(20px, 4.5vw, 28px);
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-blue-dark);
  margin-bottom: 24px;
}

.about-body p {
  line-height: 2;
  margin-bottom: 16px;
}

.about-image {
  width: 100%;
  height: 290px;
  order: 1;
}

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

/* ABOUTセクション 3カラムレイアウト (SP) */
.about-grid.three-col {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.about-grid.three-col .about-img-1 {
  order: 1;
  width: 100%;
  height: 255px;
  position: relative;
}

.about-grid.three-col .about-text {
  order: 2;
  text-align: left;
}

.about-grid.three-col .about-img-2 {
  order: 3;
  width: 100%;
  height: 255px;
  position: relative;
}

.about-img-1 img, .about-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  position: relative;
  z-index: 2;
}

/* 画像2の表示位置を少し下（下部が見えるよう）に調整 */
.about-img-2 img {
  object-position: center 70%;
}

/* 画像装飾（水彩） */
.blob-top-left {
  position: relative;
}
.blob-top-left::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 60%;
  aspect-ratio: 1 / 1;
  background-color: var(--color-blue);
  border-radius: 50%;
  z-index: 0;
  filter: blur(15px);
  opacity: 0.6;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.blob-bottom-right {
  position: relative;
}
.blob-bottom-right::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 60%;
  aspect-ratio: 1 / 1;
  background-color: var(--color-green);
  border-radius: 50%;
  z-index: 0;
  filter: blur(18px);
  opacity: 0.6;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ============================================================
   SERVICE
   ============================================================ */
.service-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-item {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  /* 丸みを持たせる */
  position: relative;
  box-shadow: 0 10px 30px rgba(168, 213, 226, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  border: 1px solid var(--color-blue-light);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  /* 綺麗な円に変更 */
  background-color: var(--color-blue-light);
  color: var(--color-blue-dark);
  font-size: 32px;
  margin-bottom: 8px;
  flex-shrink: 0;
}

/* 偶数番目は緑ベースの装飾に */
.service-item:nth-child(even) .service-item-icon {
  background-color: var(--color-green-light);
  color: var(--color-green-dark);
  border-radius: 50%;
  /* こちらも綺麗な円に変更 */
}

.service-item-title {
  font-family: var(--font-jp);
  font-size: 20px;
  color: var(--color-blue-dark);
  font-weight: 500;
  margin-bottom: 8px;
}

.service-item-desc {
  line-height: 1.9;
  text-align: left;
}

/* ============================================================
   FEATURE
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.feature-card {
  background: #fff;
  padding: 19px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(181, 207, 168, 0.15);
  border: 1px solid var(--color-green-light);
  display: flex;
  flex-direction: column;
}

.feature-card-image {
  margin-bottom: 24px;
  height: 200px;
}

.feature-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.feature-card-num {
  font-family: var(--font-en);
  font-size: 20px;
  color: var(--color-green-dark);
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  opacity: 0.5;
}

.feature-card-title {
  font-family: var(--font-jp);
  font-size: 19px;
  font-weight: 500;
  color: var(--color-blue-dark);
  margin-bottom: 16px;
  text-align: center;
  line-height: 1.5;
}

.feature-card-body {
  line-height: 1.9;
  color: var(--color-text);
  flex-grow: 1;
}

/* ============================================================
   PRICE SECTION (2-column layout with slider)
   ============================================================ */
.price-layout {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(168, 213, 226, 0.2);
  border: 1px solid var(--color-blue-light);
  max-width: 1000px;
  margin: 0 auto;
}

.price-slider-area {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.price-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: priceFade 12s infinite linear;
}

.price-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-slide.slide-2 img {
  object-position: center 30%;
}

.price-slide.slide-1 {
  animation-delay: 0s;
}

.price-slide.slide-2 {
  animation-delay: 4s;
}

.price-slide.slide-3 {
  animation-delay: 8s;
}

@keyframes priceFade {

  0%,
  100% {
    opacity: 0;
    transform: scale(1);
  }

  10%,
  33% {
    opacity: 1;
    transform: scale(1.05);
  }

  43% {
    opacity: 0;
    transform: scale(1.1);
  }
}

/* スライダーインジケーター（ドット） */
.price-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 10;
}

.price-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  animation: dotFade 12s infinite linear;
}

.price-dot.dot-1 {
  animation-delay: 0s;
}

.price-dot.dot-2 {
  animation-delay: 4s;
}

.price-dot.dot-3 {
  animation-delay: 8s;
}

@keyframes dotFade {

  0%,
  100% {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1);
  }

  10%,
  33% {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.3);
  }

  43% {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1);
  }
}

.price-text-area {
  padding: 30px 15px;
}

.price-title {
  font-family: var(--font-jp);
  font-size: clamp(20px, 4vw, 24px);
  color: var(--color-blue-dark);
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.6;
}

.price-text {
  line-height: 2;
  color: var(--color-text);
  text-align: left;
}


/* ============================================================
   CTA BAND (bsalon風デザイン・コンパクト版)
   ============================================================ */
.cta-band {
  background: var(--color-blue-light);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(181, 207, 168, 0.5) 0%, transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(168, 213, 226, 0.6) 0%, transparent 60%);
  padding: 50px 20px;
  /* 上下の余白を縮小 */
  text-align: center;
  color: var(--color-blue-dark);
  position: relative;
}

.cta-title {
  font-family: var(--font-jp);
  font-size: clamp(22px, 4.5vw, 28px);
  /* 文字サイズを少し小さく */
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.5;
}

.cta-title span {
  color: var(--color-green-dark);
  /* アクセントカラーを濃いめに */
}

.cta-sub {
  margin-bottom: 5px;
  /* 余白を縮小 */
  color: var(--color-text);
  /* テキスト色を暗く */
  line-height: 1.6;
}

.cta-tel {
  display: inline-block;
  font-family: var(--font-en);
  font-size: clamp(28px, 7vw, 40px);
  /* 文字サイズを少し小さく */
  font-weight: 500;
  color: var(--color-blue-dark);
  text-decoration: none;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.cta-note {
  font-size: 13px;
  font-weight: 500;
  background: var(--color-blue-dark);
  /* バッジの背景を濃く */
  color: var(--color-white);
  /* 文字を白に */
  display: inline-block;
  padding: 6px 20px;
  /* バッジの余白も少し縮小 */
  border-radius: 30px;
}

/* ============================================================
   CONTACT / ACCESS
   ============================================================ */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-store-name {
  font-family: var(--font-jp);
  font-size: 24px;
  color: var(--color-blue-dark);
  margin-bottom: 24px;
  font-weight: 500;
}

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

.contact-table tr {
  border-bottom: 1px dashed var(--color-beige-mid);
}

.contact-table th {
  font-weight: 500;
  color: var(--color-green-dark);
  text-align: left;
  padding: 16px 16px 16px 0;
  width: 110px;
}

.contact-table td {
  padding: 16px 0;
  line-height: 1.6;
}

.contact-map img,
.contact-map iframe {
  width: 100%;
  height: 250px;
  min-height: 250px;
  object-fit: cover;
  border: none;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--color-blue-dark);
  padding: 50px 20px 80px;
  /* スマホ用下部余白確保 */
  text-align: center;
  color: #fff;
}

.footer-logo {
  font-size: 22px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  margin-bottom: 30px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   SP STICKY CTA (電話ONLY)
   ============================================================ */
#sp-sticky-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  background: var(--color-blue-dark);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding-bottom: env(safe-area-inset-bottom);
}

#sp-sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
}

#scroll-top {
  position: fixed;
  bottom: calc(80px + env(safe-area-inset-bottom));
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--color-green-dark);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 500;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   MEDIA QUERIES (PC)
   ============================================================ */
@media (min-width: 768px) {
  section {
    padding: 100px 0;
  }

  .bg-parallax-bg::before {
    background-image: url('../img/bg.png'); /* PC用の背景画像 */
  }

  .header-nav {
    display: flex;
    gap: 32px;
    align-items: center;
  }

  .header-nav a {
    font-size: 14px;
    color: var(--color-text);
    transition: 0.2s;
    position: relative;
  }

  .header-nav a:hover {
    color: var(--color-blue-dark);
  }

  .hamburger {
    display: none;
  }

  .trouble-grid {
    flex-direction: row;
    align-items: center;
  }

  .trouble-image {
    width: 45%;
  }

  .trouble-text {
    width: 55%;
    padding-left: 80px; /* 装飾の被りを防ぐために余白を拡大 */
  }

  .about-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .about-text {
    width: 60%;
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 80px; /* 装飾の被りを防ぐために余白を拡大 */
  }

  .about-image {
    width: 40%;
    order: 2;
    height: auto;
  }

  /* ABOUTセクション 3カラムレイアウト (PC) */
  .about-grid.three-col {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .about-grid.three-col .about-img-1,
  .about-grid.three-col .about-img-2 {
    width: 28%;
    height: 450px;
  }

  .about-grid.three-col .about-text {
    width: 44%;
    padding: 0;
    text-align: center;
  }

  .about-grid.three-col .about-text .about-ja-title {
    text-align: center;
  }
  
  .about-grid.three-col .about-text .about-body {
    text-align: left;
  }

  /* MESSAGEセクションなどの反転レイアウト用 */
  .about-grid.reverse-layout {
    position: relative;
    display: flex;
    justify-content: flex-end; /* テキストを右側に寄せる */
    align-items: center; /* 行の高さをテキストぴったりにするため */
  }

  .about-grid.reverse-layout .about-text {
    width: 60%;
    padding-left: 80px; /* 装飾の被りを防ぐために余白を拡大 */
    padding-right: 0;
    order: 2;
    position: relative;
    z-index: 10; /* 万が一装飾が伸びても文字が読めるように前面に出す */
  }

  .about-grid.reverse-layout .about-image {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 40%;
    height: 85%; /* 画像の高さをテキストエリアの85%（15%短く）にする */
    margin: 0;
  }

  .service-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 30px;
    padding: 40px;
  }

  .service-item-icon {
    margin-bottom: 0;
  }

  .service-item-text {
    flex: 1;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }



  .price-layout {
    flex-direction: row;
    align-items: stretch;
  }

  .price-slider-area {
    width: 45%;
    height: auto;
    min-height: 400px;
  }

  .price-text-area {
    width: 55%;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-info {
    width: 45%;
    padding-right: 40px;
  }

  .contact-map {
    width: 55%;
  }

  .contact-map img,
  .contact-map iframe {
    height: 100%;
    min-height: 350px;
  }

  #site-footer {
    padding-bottom: 50px;
  }

  #sp-sticky-cta {
    display: none;
  }

  #scroll-top {
    bottom: 30px;
  }
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}