/* ============================================
   レインボー HP - 水彩風保育園デザイン
   ============================================ */

/* === Variables === */
:root {
  /* メインカラー: パステル虹 (一段濃いめで「はっきり」 感) */
  --c-pink: #F4A6B8;
  --c-pink-deep: #E88BA0;
  --c-pink-light: #FCEEF2;
  --c-pink-pale: #FFF5F8;

  --c-orange: #F3AC6E;
  --c-orange-light: #FFE0C2;
  --c-orange-pale: #FFF5EC;

  --c-yellow: #F4CB55;
  --c-yellow-light: #FFEBA8;
  --c-yellow-pale: #FFFBE8;
  --c-cream: #FFFAEF;

  --c-green: #9BC979;
  --c-green-light: #CFE8B8;
  --c-green-pale: #F0F8E8;

  --c-blue: #9BC8E0;
  --c-blue-deep: #5DA5C9;
  --c-blue-light: #D0E5F0;
  --c-blue-pale: #ECF5FA;

  --c-purple: #B89BC4;
  --c-purple-light: #E0D0EA;

  /* テキスト */
  --c-text: #5A4A52;
  --c-text-soft: #7A6A72;
  --c-text-light: #9C8E94;

  /* 背景 */
  --c-bg-cream: #FFF9EE;
  --c-bg-pink: #FFF5F8;
  --c-bg-yellow: #FFFCEF;

  /* フォント */
  --font-display: "Yusei Magic", "Klee One", "Zen Maru Gothic", sans-serif;
  --font-body: "Zen Maru Gothic", "BIZ UDPGothic", sans-serif;
  --font-pop: "Mochiy Pop One", "Klee One", sans-serif;

  /* 半径 */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-pill: 999px;

  --container-max: 1080px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* Android Chrome 互換性: aspect-ratio フォールバック / position 固定強化 */
img { -webkit-user-drag: none; }
@supports not (aspect-ratio: 1) {
  .real-gallery-item, .about-photo, .gallery-item {
    position: relative;
    height: 0;
    padding-bottom: 100%;
  }
  .real-gallery-item img, .about-photo img {
    position: absolute;
    inset: 0;
  }
}
body {
  font-family: var(--font-body);
  color: var(--c-text);
  line-height: 1.75;
  font-size: 15px;
  background: var(--c-bg-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.2s ease; }
a:hover { opacity: 0.75; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* 長い URL や英単語が画面からはみ出さないように
   (日本語は文字単位の自然な折り返しに任せる。keep-all は長文がはみ出すため使わない) */
p, li, dd, dt, td, th, h1, h2, h3, h4, h5, h6, summary, figcaption {
  overflow-wrap: break-word;
}
a[href^="mailto:"], a[href^="tel:"], .breadcrumbs, code {
  overflow-wrap: anywhere;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 249, 238, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 139, 160, 0.08);
}
.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--c-text);
}
.logo-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .sub {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--c-text-soft);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.logo-text .main {
  font-family: var(--font-pop);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--c-text);
}

.site-nav ul { display: flex; gap: 22px; align-items: center; }
.site-nav a { font-size: 14px; font-weight: 500; color: var(--c-text); position: relative; }
.site-nav a:hover { color: var(--c-pink-deep); opacity: 1; }
.site-nav a[aria-current="page"] {
  color: var(--c-pink-deep);
  font-weight: 600;
}
.site-nav a[aria-current="page"]::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--c-pink-deep);
  border-radius: 1px;
}
.nav-cta {
  background: var(--c-pink);
  color: white !important;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(244, 166, 184, 0.3);
}
.nav-cta:hover { background: var(--c-pink-deep); opacity: 1; }
.menu-toggle { display: none; }

@media (max-width: 900px) {
  .site-nav { display: none; }
  .menu-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 36px; height: 36px; cursor: pointer;
  }
  .menu-toggle span {
    display: block; width: 22px; height: 2px; background: var(--c-text);
    border-radius: 2px; transition: 0.3s;
  }
  .site-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    right: 24px;
    background: white;
    padding: 16px 24px;
    border-radius: var(--r-md);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  }
  .site-nav.open ul {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

/* ============================================
   ヒーロー（水彩風虹）
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(to bottom, var(--c-bg-cream) 0%, var(--c-pink-pale) 50%, var(--c-orange-pale) 100%);
  padding: 70px 0 100px;
  overflow: hidden;
}

.watercolor-rainbow {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  max-width: 1400px;
  height: 400px;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}
.watercolor-rainbow svg { width: 100%; height: 100%; }

.cloud-deco { position: absolute; pointer-events: none; opacity: 0.7; z-index: 2; }
.cloud-1 { top: 60px; left: 30px; width: 100px; }
.cloud-2 { top: 130px; right: 50px; width: 80px; }
.cloud-3 { bottom: 200px; left: 60px; width: 70px; }

.flower-deco { position: absolute; pointer-events: none; z-index: 3; }
.flower-1 { top: 40%; left: 5%; width: 24px; }
.flower-2 { top: 65%; right: 8%; width: 20px; }
.flower-3 { bottom: 15%; left: 10%; width: 28px; }
.flower-4 { top: 20%; right: 25%; width: 18px; }

.sparkle-deco {
  position: absolute; pointer-events: none; z-index: 3;
  color: var(--c-yellow); font-size: 20px;
  animation: twinkle 2.5s ease-in-out infinite;
}
.sparkle-1 { top: 38%; left: 8%; }
.sparkle-2 { top: 50%; right: 12%; animation-delay: 0.5s; }
.sparkle-3 { bottom: 25%; left: 25%; font-size: 16px; animation-delay: 1s; }
.sparkle-4 { top: 70%; right: 5%; font-size: 14px; animation-delay: 1.5s; }
@keyframes twinkle {
  0%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(15deg); }
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 90px;
}

.hero-tag {
  display: inline-block;
  background: white;
  color: var(--c-pink-deep);
  padding: 8px 24px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(244, 166, 184, 0.2);
  border: 1.5px solid rgba(244, 166, 184, 0.3);
}

.hero-brand {
  font-family: var(--font-pop);
  font-size: clamp(48px, 8vw, 84px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}
.hero-brand .ch-1,
.hero-brand .ch-2,
.hero-brand .ch-3,
.hero-brand .ch-4,
.hero-brand .ch-5,
.hero-brand .ch-6 { color: var(--c-text); }

.hero-catch {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.6;
  color: var(--c-text);
  margin-bottom: 18px;
}
.hero-catch .underline {
  background: linear-gradient(transparent 65%, var(--c-yellow-light) 65%);
  padding: 0 4px;
}
.hero-desc {
  font-size: 14.5px;
  line-height: 1.9;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: break-word;
  text-wrap: balance;
  color: var(--c-text-soft);
  margin-bottom: 24px;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:hover { opacity: 1; transform: translateY(-2px); }
.btn-line {
  background: #06C755;
  color: white;
  box-shadow: 0 6px 18px rgba(6, 199, 85, 0.3);
}
.btn-line:hover { background: #05b04c; box-shadow: 0 8px 24px rgba(6, 199, 85, 0.4); }
.btn-ig {
  background: linear-gradient(135deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%);
  color: white;
  box-shadow: 0 6px 18px rgba(220, 39, 67, 0.25);
}
.btn-phone {
  background: white;
  color: var(--c-pink-deep);
  border: 2px solid var(--c-pink);
  box-shadow: 0 6px 18px rgba(244, 166, 184, 0.2);
}
.hero-cta-note {
  display: inline-block;
  margin-top: 28px;
  font-family: var(--font-display);
  color: var(--c-pink-deep);
  font-size: 14px;
  font-weight: 700;
}
.hero-cta-note::before { content: "🌸 "; }

.hero-photos { position: relative; height: 480px; }
.hero-photo {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid white;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  background: var(--c-yellow-pale);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo svg { width: 100%; height: 100%; }
.hero-photo-1 { width: 260px; height: 260px; top: 30px; left: 30px; z-index: 3; }
.hero-photo-2 { width: 180px; height: 180px; top: 0; right: 20px; z-index: 2; }
.hero-photo-3 { width: 200px; height: 200px; bottom: 20px; right: 60px; z-index: 4; }

/* レスポンシブ写真 (about / gallery) */
.about-photo img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 実写真ギャラリーグリッド */
.real-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 30px 0;
}
@media (max-width: 768px) {
  .real-gallery-grid { gap: 8px; }
}
.real-gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.real-gallery-item:hover { transform: translateY(-4px); }
.real-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* スタッフ紹介: 集合写真 */
.staff-team-photo {
  margin: 0 auto 30px;
  max-width: 640px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  background: white;
}
.staff-team-photo img { width: 100%; height: auto; display: block; }
.staff-team-photo figcaption {
  padding: 14px 18px;
  background: var(--c-bg-pink);
  text-align: center;
  font-size: 14px;
  color: var(--c-text);
  font-family: var(--font-pop);
}

/* スタッフ紹介 */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.staff-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}
.staff-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 5px solid var(--c-pink-pale);
}
.staff-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.staff-name {
  font-family: var(--font-pop);
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--c-text);
  font-weight: 400;
}
.staff-role {
  display: inline-block;
  font-size: 12px;
  padding: 4px 12px;
  background: var(--c-pink-pale);
  color: var(--c-pink-deep);
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.staff-info { text-align: left; font-size: 14px; line-height: 1.8; color: var(--c-text-soft); }
.staff-info dt { font-weight: 700; color: var(--c-text); margin-top: 12px; }
.staff-info dt:first-child { margin-top: 0; }
.staff-info dd { margin-left: 0; }
.staff-message {
  margin-top: 16px;
  padding: 14px;
  background: var(--c-bg-cream);
  border-radius: var(--r-md);
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--c-text);
}

/* 保護者の声 */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.voice-card {
  background: linear-gradient(135deg, var(--c-pink-pale) 0%, var(--c-yellow-pale) 100%);
  border-radius: var(--r-md);
  padding: 24px 22px;
  position: relative;
}
.voice-card::before {
  content: "❝";
  position: absolute;
  top: 10px;
  left: 16px;
  font-size: 36px;
  color: var(--c-pink-deep);
  opacity: 0.4;
  line-height: 1;
}
.voice-q { font-weight: 700; color: var(--c-pink-deep); margin-bottom: 10px; margin-top: 10px; font-size: 14px; padding-left: 32px; }
.voice-a { font-size: 14px; line-height: 1.8; color: var(--c-text); }

@media (max-width: 900px) {
  .hero { padding: 50px 0 60px; }
  .hero-content {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    text-align: center;
    gap: 20px;
  }
  .hero-text-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-tag { margin: 0 auto 20px; align-self: center; }
  .hero-brand { text-align: center; width: 100%; align-self: center; }
  .hero-catch { text-align: center; width: 100%; align-self: center; }
  .hero-desc { text-align: center; width: 100%; align-self: center; max-width: 100%; }
  .hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    align-self: center;
  }
  .hero-photos {
    height: auto;
    max-width: none;
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    width: 100%;
  }
  .hero-photo {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 28vw !important;
    max-width: 130px !important;
    min-width: 70px;
    height: 28vw !important;
    max-height: 130px !important;
    min-height: 70px;
    border-width: 4px;
    flex-shrink: 0;
  }
  .hero-photo-1 {
    width: 33vw !important;
    max-width: 150px !important;
    min-width: 84px;
    height: 33vw !important;
    max-height: 150px !important;
    min-height: 84px;
    order: 2;
  }
  .hero-photo-2 { order: 1; }
  .hero-photo-3 { order: 3; }
  .watercolor-rainbow { top: -40px; height: 320px; width: 150%; opacity: 0.85; }
  .section-worries { padding: 50px 0 50px; }
}

/* SP: about-photos の整列 */
@media (max-width: 768px) {
  .about-photos { gap: 12px; }
}

/* ============================================
   レインボーについて
   ============================================ */
.section-about {
  background: var(--c-bg-yellow);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.section-about::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 30px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'><path d='M0,5 Q5,0 10,5 T20,5 T30,5 T40,5 T50,5 T60,5 T70,5 T80,5 T90,5 T100,5 V0 H0 Z' fill='%23FFFCEF'/></svg>") repeat-x;
  background-size: 100px 30px;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.section-mini-rainbow { display: inline-block; margin-bottom: 12px; }
.section-title {
  font-family: var(--font-pop);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 400;
  color: var(--c-text);
  display: inline-block;
}
.section-title .accent-pink { color: var(--c-pink-deep); }
.section-title .accent-blue { color: var(--c-blue-deep); }
.section-title .accent-green { color: var(--c-green); }
.section-title .accent-orange { color: var(--c-orange); }
.section-title .accent-yellow { color: #C99C28; }
.section-title .accent-purple { color: var(--c-purple); }
.section-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--c-text-light);
  letter-spacing: 0.2em;
  margin-top: 8px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: white;
  border-radius: var(--r-lg);
  padding: 50px;
  box-shadow: 0 10px 40px rgba(252, 221, 147, 0.2);
  position: relative;
}
.about-content::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 56px;
  height: 56px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='10' fill='%23F4A6B8'/><circle cx='25' cy='40' r='7' fill='%23F4A6B8'/><circle cx='75' cy='40' r='7' fill='%23F4A6B8'/><circle cx='25' cy='65' r='7' fill='%23F4A6B8'/><circle cx='75' cy='65' r='7' fill='%23F4A6B8'/></svg>") no-repeat center;
  background-size: contain;
}
.about-text h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--c-pink-deep);
}
.about-text p {
  font-size: 14.5px;
  line-height: 2;
  color: var(--c-text-soft);
  margin-bottom: 14px;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-photo {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--c-yellow-pale);
  border: 4px solid white;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
/* PC 用の rotate / margin-top 装飾は削除 (NAOKI さん「ガタガタ」 指摘) */
/* 全 4 枚を綺麗に整列 */
.about-photo svg { width: 100%; height: 100%; }

@media (max-width: 900px) {
  .about-content { grid-template-columns: 1fr; padding: 30px 24px; gap: 30px; }
}

/* ============================================
   サービス紹介
   ============================================ */
.section-services {
  padding: 90px 0;
  background: var(--c-bg-cream);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.service-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 32px 24px 28px;
  position: relative;
  border-width: 3px;
  border-style: solid;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.service-card.card-pink { border-color: var(--c-pink); background: linear-gradient(180deg, white 0%, var(--c-pink-pale) 100%); }
.service-card.card-blue { border-color: var(--c-blue); background: linear-gradient(180deg, white 0%, var(--c-blue-pale) 100%); }
.service-card.card-green { border-color: var(--c-green); background: linear-gradient(180deg, white 0%, var(--c-green-pale) 100%); }

.service-icon-bar {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  border: 2.5px solid;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
}
.card-pink .service-icon-bar { border-color: var(--c-pink); }
.card-blue .service-icon-bar { border-color: var(--c-blue); }
.card-green .service-icon-bar { border-color: var(--c-green); }

.service-card-title {
  text-align: center;
  font-family: var(--font-pop);
  font-size: 22px;
  font-weight: 400;
  margin: 18px 0 20px;
}
.card-pink .service-card-title { color: var(--c-pink-deep); }
.card-blue .service-card-title { color: var(--c-blue-deep); }
.card-green .service-card-title { color: var(--c-green); }

.service-features { list-style: none; padding: 0; margin: 0 0 20px; }
.service-features li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-text);
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
}
.service-features li::before {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: white;
}
.card-pink .service-features li::before { background: var(--c-pink); }
.card-blue .service-features li::before { background: var(--c-blue); }
.card-green .service-features li::before { background: var(--c-green); }

.service-photo {
  margin: 20px 0 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  background: var(--c-yellow-pale);
}
.service-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-photo svg { width: 100%; height: 100%; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; max-width: 380px; margin: 60px auto 0; }
}

/* ============================================
   レインボーのようす（円形ギャラリー）
   ============================================ */
.section-gallery {
  padding: 90px 0 100px;
  background: var(--c-blue-pale);
  position: relative;
  overflow: hidden;
}
.garland {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 50px;
  pointer-events: none;
  display: flex;
  justify-content: center;
}
.garland svg { width: 100%; max-width: 900px; height: 100%; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid white;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  background: var(--c-yellow-pale);
  transition: transform 0.4s ease;
}
.gallery-item:hover { transform: scale(1.08) rotate(3deg); }
.gallery-item:nth-child(odd) { transform: translateY(-15px); }
.gallery-item:nth-child(odd):hover { transform: translateY(-15px) scale(1.08) rotate(3deg); }
.gallery-item svg { width: 100%; height: 100%; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(8) { display: none; }
}
@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   ご利用案内
   ============================================ */
.section-info {
  padding: 90px 0;
  background: var(--c-bg-cream);
}
.info-card-wrap {
  background: white;
  border-radius: var(--r-lg);
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(232, 139, 160, 0.1);
  position: relative;
  border: 2px dashed var(--c-pink-light);
}
.info-card-wrap::before {
  content: "✨ ご利用案内 ✨";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 4px 20px;
  font-family: var(--font-pop);
  font-size: 14px;
  color: var(--c-pink-deep);
  border-radius: var(--r-pill);
  white-space: nowrap;
}

/* 点 5 個装飾 (望さん希望「こういう模様がもうちょっとあってもいい」 を反映)
   セクションごとに色を変えて 5 箇所に配置 */
.worries-grid,
.services-grid,
.real-gallery-grid,
.ac-grid,
.staff-grid {
  position: relative;
}
.worries-grid::after,
.services-grid::after,
.real-gallery-grid::after,
.ac-grid::after,
.staff-grid::after {
  content: "";
  position: absolute;
  top: -22px;
  right: 8px;
  width: 48px;
  height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.worries-grid::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='10' fill='%23F3AC6E'/><circle cx='25' cy='40' r='7' fill='%23F3AC6E'/><circle cx='75' cy='40' r='7' fill='%23F3AC6E'/><circle cx='25' cy='65' r='7' fill='%23F3AC6E'/><circle cx='75' cy='65' r='7' fill='%23F3AC6E'/></svg>");
}
.services-grid::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='10' fill='%23F4CB55'/><circle cx='25' cy='40' r='7' fill='%23F4CB55'/><circle cx='75' cy='40' r='7' fill='%23F4CB55'/><circle cx='25' cy='65' r='7' fill='%23F4CB55'/><circle cx='75' cy='65' r='7' fill='%23F4CB55'/></svg>");
}
.real-gallery-grid::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='10' fill='%239BC979'/><circle cx='25' cy='40' r='7' fill='%239BC979'/><circle cx='75' cy='40' r='7' fill='%239BC979'/><circle cx='25' cy='65' r='7' fill='%239BC979'/><circle cx='75' cy='65' r='7' fill='%239BC979'/></svg>");
}
.ac-grid::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='10' fill='%23B89BC4'/><circle cx='25' cy='40' r='7' fill='%23B89BC4'/><circle cx='75' cy='40' r='7' fill='%23B89BC4'/><circle cx='25' cy='65' r='7' fill='%23B89BC4'/><circle cx='75' cy='65' r='7' fill='%23B89BC4'/></svg>");
}
.staff-grid::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='10' fill='%239BC8E0'/><circle cx='25' cy='40' r='7' fill='%239BC8E0'/><circle cx='75' cy='40' r='7' fill='%239BC8E0'/><circle cx='25' cy='65' r='7' fill='%239BC8E0'/><circle cx='75' cy='65' r='7' fill='%239BC8E0'/></svg>");
}

/* 既存の info-card-wrap ::before (✨ ご利用案内 ✨) と私の追加した section-head 重複防止 */
.section-info .section-head + .info-card-wrap::before { display: none; }
.info-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.info-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 12px;
  background: white;
  border-radius: var(--r-md);
  border: 2px solid transparent;
}
.info-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}
.info-item:nth-child(1) .info-icon { background: var(--c-pink-light); }
.info-item:nth-child(2) .info-icon { background: var(--c-yellow-light); }
.info-item:nth-child(3) .info-icon { background: var(--c-green-light); }
.info-item:nth-child(4) .info-icon { background: var(--c-purple-light); }
.info-item:nth-child(5) .info-icon { background: var(--c-blue-light); }

.info-label {
  display: inline-block;
  font-family: var(--font-pop);
  font-size: 13px;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 10px;
  font-weight: 400;
}
.info-item:nth-child(1) .info-label { background: var(--c-pink-light); color: var(--c-pink-deep); }
.info-item:nth-child(2) .info-label { background: var(--c-yellow-light); color: #C99C28; }
.info-item:nth-child(3) .info-label { background: var(--c-green-light); color: #6A9C4A; }
.info-item:nth-child(4) .info-label { background: var(--c-purple-light); color: #8B6BA3; }
.info-item:nth-child(5) .info-label { background: var(--c-blue-light); color: var(--c-blue-deep); }

.info-content { font-size: 12.5px; line-height: 1.7; color: var(--c-text); }
.info-content strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--c-text);
  font-weight: 700;
}
.info-content small {
  display: block;
  font-size: 11.5px;
  color: var(--c-text-soft);
  margin-top: 4px;
  line-height: 1.6;
}

/* info-item を強調する派生バージョン (background / border-color のみ上書き) */
.info-item.info-item-highlight {
  background: linear-gradient(135deg, var(--c-pink-pale) 0%, var(--c-yellow-pale) 100%);
  border-color: var(--c-pink);
}
.info-item.info-item-highlight .info-icon { background: var(--c-pink-deep); color: white; }
.info-item.info-item-highlight .info-label { background: var(--c-pink-deep); color: white; }

/* 6 項目目の info-item にも背景色を割当 */
.info-item:nth-child(6) .info-icon { background: var(--c-orange-light); }
.info-item:nth-child(6) .info-label { background: var(--c-orange-light); color: #C99C28; }
.info-item:nth-child(6) { animation-delay: 0.6s; }

@media (max-width: 900px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .info-card-wrap { padding: 40px 24px 30px; }
}

/* ============================================
   アクセス＆お問い合わせ
   ============================================ */
.section-access-contact {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--c-bg-cream) 0%, var(--c-pink-pale) 100%);
}
.ac-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.ac-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.ac-card-title {
  font-family: var(--font-pop);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 18px;
  color: var(--c-pink-deep);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ac-card-title.title-access::before { content: "🌷"; font-size: 22px; }
.ac-card-title.title-contact::before { content: "💌"; font-size: 22px; }

.address-info {
  font-size: 13.5px;
  line-height: 2;
  color: var(--c-text);
  margin-bottom: 14px;
}
.address-info strong {
  display: block;
  font-size: 17px;
  color: var(--c-pink-deep);
  font-family: var(--font-display);
  margin-bottom: 4px;
}
.access-map {
  border-radius: var(--r-md);
  overflow: hidden;
  margin: 14px 0;
  border: 3px solid white;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  height: 180px;
}
.access-map iframe { width: 100%; height: 100%; display: block; border: none; }
.contact-intro {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--c-text-soft);
  margin-bottom: 18px;
}
.qr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.qr-box {
  text-align: center;
  padding: 16px 12px;
  border-radius: var(--r-md);
  border: 2px solid;
}
.qr-box.qr-line { background: #F0FAF1; border-color: #C9E5CC; }
.qr-box.qr-ig { background: var(--c-pink-pale); border-color: var(--c-pink-light); }
.qr-box h4 { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.qr-line h4 { color: #06A042; }
.qr-ig h4 { color: var(--c-pink-deep); }
.qr-box p { font-size: 10.5px; color: var(--c-text-soft); margin-bottom: 8px; }
.qr-placeholder {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  padding: 6px;
}
.qr-placeholder svg { width: 100%; height: 100%; }

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

/* ============================================
   フッター
   ============================================ */
.site-footer {
  background: linear-gradient(180deg, var(--c-pink-pale) 0%, white 100%);
  padding: 60px 0 30px;
  border-top: 3px dashed var(--c-pink-light);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand-logo .main {
  font-family: var(--font-pop);
  font-size: 22px;
  background: linear-gradient(95deg, var(--c-pink-deep) 0%, var(--c-orange) 35%, var(--c-yellow) 60%, var(--c-green) 80%, var(--c-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-desc { font-size: 13px; line-height: 1.9; color: var(--c-text-soft); margin-bottom: 10px; }
.footer-company { font-size: 12px; color: var(--c-text-light); }
.footer-h { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--c-pink-deep); margin-bottom: 14px; }
.site-footer ul { display: flex; flex-direction: column; gap: 8px; }
.site-footer ul a { font-size: 13px; color: var(--c-text); }
.site-footer ul a:hover { color: var(--c-pink-deep); opacity: 1; }
.footer-sns {
  display: flex; gap: 14px; margin-top: 16px;
}
.footer-sns a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-pink-deep);
  font-weight: 700;
}
.footer-bottom {
  border-top: 1px dashed var(--c-pink-light);
  padding-top: 20px;
  text-align: center;
  font-size: 11px;
  color: var(--c-text-light);
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============================================
   下層ページ共通
   ============================================ */
.page-hero {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, var(--c-bg-cream) 0%, var(--c-pink-pale) 100%);
  text-align: center;
  overflow: hidden;
}
.page-hero-inner { position: relative; z-index: 5; }
.page-hero-tag {
  display: inline-block;
  background: white;
  color: var(--c-pink-deep);
  padding: 6px 22px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(244, 166, 184, 0.2);
}
.page-hero-title {
  font-family: var(--font-pop);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--c-text);
  line-height: 1.4;
}
.page-hero-title .accent {
  background: linear-gradient(95deg, var(--c-pink-deep), var(--c-orange), #C99C28, var(--c-green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero-subtitle {
  font-size: 14.5px;
  color: var(--c-text-soft);
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto;
}

.breadcrumbs {
  background: white;
  padding: 14px 0;
  font-size: 12px;
}
.breadcrumbs ol {
  display: flex;
  gap: 8px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  color: var(--c-text-light);
}
.breadcrumbs li { display: flex; align-items: center; gap: 8px; }
.breadcrumbs li:not(:last-child)::after { content: '›'; color: var(--c-pink); font-weight: 700; }
.breadcrumbs a { color: var(--c-pink-deep); font-weight: 700; }
.breadcrumbs li:last-child { color: var(--c-text); font-weight: 700; }

.page-content { padding: 80px 0; background: var(--c-bg-cream); }
.content-wrap { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.content-section { margin-bottom: 56px; }
.content-section:last-child { margin-bottom: 0; }
.content-section h2 {
  font-family: var(--font-pop);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--c-text);
  position: relative;
  padding-left: 30px;
}
.content-section h2::before {
  content: "🌈";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 22px;
}
.content-section h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 28px 0 14px;
  color: var(--c-pink-deep);
  font-weight: 700;
}
.content-section p {
  font-size: 14.5px;
  line-height: 2;
  color: var(--c-text);
  margin-bottom: 14px;
}
.content-section p strong { color: var(--c-pink-deep); font-weight: 700; }
.content-section ul:not(.no-style) {
  margin: 16px 0;
  background: white;
  border-radius: var(--r-md);
  padding: 18px 24px;
  border: 2px dashed var(--c-pink-light);
}
.content-section ul:not(.no-style) li {
  padding: 8px 0 8px 30px;
  position: relative;
  font-size: 14px;
  line-height: 1.9;
  border-bottom: 1px dashed var(--c-pink-light);
}
.content-section ul:not(.no-style) li:last-child { border-bottom: none; }
.content-section ul:not(.no-style) li::before {
  content: "🌸";
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 14px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: white;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.info-table th, .info-table td {
  padding: 16px 22px;
  text-align: left;
  font-size: 14px;
  line-height: 1.8;
  border-bottom: 1px dashed var(--c-pink-light);
}
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }
.info-table th {
  background: var(--c-pink-pale);
  color: var(--c-pink-deep);
  font-weight: 700;
  width: 30%;
  vertical-align: top;
}
.info-table small { display: block; font-size: 11px; color: var(--c-text-light); margin-top: 4px; }

.highlight-card {
  background: linear-gradient(135deg, white 0%, var(--c-yellow-pale) 100%);
  border-radius: var(--r-md);
  padding: 26px 28px;
  margin: 24px 0;
  border-left: 5px solid var(--c-yellow);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.highlight-card h3 { margin-top: 0; font-size: 17px; color: var(--c-pink-deep); }
.highlight-card p:last-child { margin-bottom: 0; }

.page-cta {
  background: linear-gradient(135deg, var(--c-pink-pale), var(--c-orange-pale), var(--c-yellow-pale));
  padding: 70px 0;
  text-align: center;
}
.page-cta h2 {
  font-family: var(--font-pop);
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 400;
  margin-bottom: 14px;
}
.page-cta p { font-size: 14.5px; color: var(--c-text-soft); line-height: 1.9; margin-bottom: 28px; }
.page-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Flow ステップ */
.flow-list { list-style: none; padding: 0; display: grid; gap: 24px; }
.flow-step {
  background: white;
  border-radius: var(--r-md);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: start;
  border-left: 5px solid;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.flow-step:nth-child(1) { border-left-color: var(--c-pink); }
.flow-step:nth-child(2) { border-left-color: var(--c-orange); }
.flow-step:nth-child(3) { border-left-color: var(--c-yellow); }
.flow-step:nth-child(4) { border-left-color: var(--c-green); }
.flow-step:nth-child(5) { border-left-color: var(--c-blue); }
.flow-step-num { font-family: var(--font-pop); text-align: center; font-size: 14px; color: var(--c-text-light); }
.flow-step-num strong { display: block; font-size: 36px; font-weight: 400; }
.flow-step:nth-child(1) .flow-step-num strong { color: var(--c-pink-deep); }
.flow-step:nth-child(2) .flow-step-num strong { color: var(--c-orange); }
.flow-step:nth-child(3) .flow-step-num strong { color: #C99C28; }
.flow-step:nth-child(4) .flow-step-num strong { color: var(--c-green); }
.flow-step:nth-child(5) .flow-step-num strong { color: var(--c-blue-deep); }
.flow-step-title { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin-bottom: 8px; color: var(--c-text); }
.flow-step-desc { font-size: 14px; line-height: 1.9; color: var(--c-text-soft); margin-bottom: 0; }

/* FAQ */
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: white;
  border: 2px solid var(--c-pink-light);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item[open] {
  border-color: var(--c-pink);
  box-shadow: 0 8px 24px rgba(244, 166, 184, 0.15);
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 56px 18px 56px;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
  position: relative;
  list-style: none;
  line-height: 1.6;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--c-pink);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  font-family: var(--font-pop);
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-pink);
  font-size: 22px;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { padding: 0 22px 22px 56px; position: relative; }
.faq-answer::before {
  content: "A";
  position: absolute;
  left: 18px;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--c-yellow-light);
  color: #C99C28;
  border: 2px solid var(--c-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  font-family: var(--font-pop);
}
.faq-answer p { font-size: 13.5px; line-height: 1.9; color: var(--c-text-soft); margin: 4px 0; }
.faq-category-title {
  font-family: var(--font-pop);
  font-size: 18px;
  font-weight: 400;
  color: var(--c-pink-deep);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px dashed var(--c-pink-light);
}
.faq-category-title:first-child { margin-top: 0; }

/* Contact methods */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.contact-card {
  background: white;
  padding: 26px 18px;
  border-radius: var(--r-md);
  text-align: center;
  text-decoration: none;
  border-top: 4px solid;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); opacity: 1; }
.contact-card.contact-line { border-top-color: #06C755; }
.contact-card.contact-phone { border-top-color: var(--c-pink); }
.contact-card.contact-instagram { border-top-color: #DC2743; }
.contact-card.contact-mail { border-top-color: var(--c-blue); }
.contact-icon { font-size: 36px; margin-bottom: 10px; }
.contact-card h3 { font-family: var(--font-pop); font-size: 17px; font-weight: 400; margin-bottom: 8px; color: var(--c-text); }
.contact-card p { font-size: 12px; line-height: 1.6; color: var(--c-text-soft); margin: 0; }

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

/* Animation */
@media (prefers-reduced-motion: no-preference) {
  .service-card, .info-item, .gallery-item, .about-photo {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s ease forwards;
  }
  .service-card:nth-child(1) { animation-delay: 0.1s; }
  .service-card:nth-child(2) { animation-delay: 0.25s; }
  .service-card:nth-child(3) { animation-delay: 0.4s; }
  .info-item:nth-child(1) { animation-delay: 0.1s; }
  .info-item:nth-child(2) { animation-delay: 0.2s; }
  .info-item:nth-child(3) { animation-delay: 0.3s; }
  .info-item:nth-child(4) { animation-delay: 0.4s; }
  .info-item:nth-child(5) { animation-delay: 0.5s; }
  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
}

/* お悩みセクション (ヒーロー直下) */
.section-worries {
  padding: 70px 0 60px;
  background: linear-gradient(180deg, transparent 0%, var(--c-bg-pink) 60%, var(--c-bg-pink) 100%);
}
.worries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.worry-card {
  background: white;
  padding: 24px 20px;
  border-radius: var(--r-md);
  text-align: center;
  box-shadow: 0 4px 18px rgba(232, 139, 160, 0.08);
}
.worry-icon { font-size: 36px; margin-bottom: 12px; line-height: 1; }
.worry-card p { font-size: 14.5px; line-height: 1.7; color: var(--c-text); margin: 0; }
.worries-message {
  text-align: center;
  font-size: 18px;
  font-family: var(--font-pop);
  margin-top: 36px;
  color: var(--c-text);
}
.worries-message strong {
  background: linear-gradient(180deg, transparent 60%, var(--c-yellow-light) 60%);
  font-weight: 400;
  color: var(--c-pink-deep);
  padding: 0 4px;
}

/* FAQ ページのカテゴリ目次 (ジャンプリンク) */
.faq-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 28px;
  padding: 16px;
  background: var(--c-bg-pink);
  border-radius: var(--r-md);
}
.faq-toc-label {
  width: 100%;
  font-size: 12px;
  color: var(--c-text-soft);
  margin-bottom: 4px;
}
.faq-toc a {
  font-size: 13px;
  padding: 6px 14px;
  background: white;
  color: var(--c-pink-deep);
  border-radius: var(--r-pill);
  border: 1px solid var(--c-pink-light);
  transition: background 0.15s;
}
.faq-toc a:hover { background: var(--c-pink-pale); opacity: 1; }

/* FAQ ページの「すべて開く/閉じる」 ツールバー */
.faq-toolbar {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.faq-toggle-all {
  background: white;
  color: var(--c-pink-deep);
  border: 1.5px solid var(--c-pink);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  font-size: 12px;
  font-family: var(--font-pop);
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.faq-toggle-all:hover { background: var(--c-pink-pale); }
.faq-toggle-all:active { transform: scale(0.97); }

/* 連絡先 CTA グリッド (旧 QR 置き換え) */
.contact-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 20px;
}
.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: white;
  color: var(--c-text);
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.contact-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.contact-cta-icon { font-size: 28px; line-height: 1; margin-bottom: 6px; }
.contact-cta-label { font-family: var(--font-pop); font-size: 16px; font-weight: 400; }
.contact-cta-sub { font-size: 12px; color: var(--c-text-soft); margin-top: 4px; }
.contact-cta-line { background: #E8F8EB; border-color: #06A042; }
.contact-cta-line .contact-cta-label { color: #06A042; }
.contact-cta-ig { background: linear-gradient(135deg, #FCEEF2 0%, #FFF5EC 100%); border-color: #DC2743; }
.contact-cta-ig .contact-cta-label { color: #DC2743; }
.contact-cta-phone { background: var(--c-pink-pale); border-color: var(--c-pink-deep); }
.contact-cta-phone .contact-cta-label { color: var(--c-pink-deep); font-size: 18px; font-weight: 700; }

/* ギャラリープレースホルダ (写真到着前) */
.gallery-placeholder {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--c-cream) 0%, var(--c-bg-pink) 100%);
  border-radius: var(--r-lg);
  margin: 24px 0;
}
.gallery-msg { font-size: 16px; color: var(--c-text); margin-bottom: 20px; line-height: 1.8; }
.gallery-msg strong { color: #DC2743; font-weight: 700; }
.gallery-note { margin-top: 16px; color: var(--c-text-light); }

/* キーボード操作時のフォーカス表示 (アクセシビリティ) */
:focus-visible {
  outline: 3px solid var(--c-pink-deep);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible,
.contact-cta:focus-visible,
.service-card:focus-visible {
  outline-offset: 4px;
}

/* LINE / Instagram のブランドアイコン (絵文字置き換え) */
.icon-line,
.icon-ig {
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: -0.32em;
  flex-shrink: 0;
}
.icon-line {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><path d='M24 4C12 4 2 12 2 22c0 8 6 14 14 16 1 0 2 1 2 2v3c0 1 1 2 2 1 2-1 11-6 15-11 3-3 5-7 5-11C40 12 30 4 24 4z' fill='%2306C755'/><text x='24' y='27' font-family='Helvetica,Arial,sans-serif' font-size='11' font-weight='900' fill='white' text-anchor='middle' letter-spacing='-0.5'>LINE</text></svg>");
}
.icon-ig {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><defs><radialGradient id='g' cx='30%25' cy='100%25' r='130%25'><stop offset='0' stop-color='%23feda75'/><stop offset='0.25' stop-color='%23fa7e1e'/><stop offset='0.5' stop-color='%23d62976'/><stop offset='0.75' stop-color='%23962fbf'/><stop offset='1' stop-color='%234f5bd5'/></radialGradient></defs><rect x='4' y='4' width='40' height='40' rx='12' fill='url(%23g)'/><circle cx='24' cy='24' r='9' fill='none' stroke='white' stroke-width='3.5'/><circle cx='34.5' cy='14' r='2.5' fill='white'/></svg>");
}

/* Skip to main content (スクリーンリーダー用) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--c-pink-deep);
  color: white;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 var(--r-sm) 0;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; opacity: 1; color: white; }

/* 印刷時のスタイル (料金表・アクセスを A4 で見やすく) */
@media print {
  .site-header,
  .site-footer,
  .page-cta,
  .skip-link,
  .menu-toggle,
  .hero-buttons,
  .page-cta-buttons,
  .watercolor-rainbow,
  .garland,
  .section-mini-rainbow,
  .gallery-placeholder,
  .real-gallery-grid,
  .contact-cta-grid,
  .access-map,
  .breadcrumbs { display: none !important; }

  body {
    background: white !important;
    color: black !important;
    font-size: 11pt;
    line-height: 1.6;
  }

  main, .container, .content-wrap { max-width: 100% !important; padding: 0 !important; margin: 0 !important; }
  .page-hero { padding: 12pt 0 !important; background: white !important; }
  .page-hero-title { color: black !important; }
  .page-hero-subtitle { color: #333 !important; }

  a { color: black !important; text-decoration: underline; }
  a[href^="tel:"] { text-decoration: none; }

  .info-table { border: 1px solid #999; border-collapse: collapse; width: 100%; }
  .info-table th, .info-table td {
    border: 1px solid #999;
    padding: 6pt 10pt;
    color: black !important;
    background: white !important;
  }

  .highlight-card {
    border: 1px solid #ccc !important;
    page-break-inside: avoid;
    background: white !important;
    box-shadow: none !important;
    padding: 8pt !important;
    margin-bottom: 6pt !important;
  }

  h1, h2, h3 {
    page-break-after: avoid;
    color: black !important;
  }

  img { max-width: 100% !important; page-break-inside: avoid; }
  .hero-photos, .hero-photo { display: none !important; }
}

/* スクロール時のヘッダー影 */
.site-header { transition: box-shadow 0.3s ease, background 0.3s ease; }
.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(193, 165, 175, 0.15);
  background: rgba(255, 250, 245, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* IntersectionObserver でのフェードイン (JS 有効時のみ初期化) */
html.js-enhanced .section-head,
html.js-enhanced .service-inner,
html.js-enhanced .access-inner {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
html.js-enhanced .section-head.is-visible,
html.js-enhanced .service-inner.is-visible,
html.js-enhanced .access-inner.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html.js-enhanced .section-head,
  html.js-enhanced .service-inner,
  html.js-enhanced .access-inner {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* === 関連ページへの導線 (各ページ末尾) === */
.related-section {
  background: var(--c-bg-cream);
  padding: 56px 0 24px;
}
.related-section .content-wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.related-section-title {
  font-family: var(--font-display);
  font-size: 22px;
  text-align: center;
  margin-bottom: 28px;
  color: var(--c-text);
}
.related-section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  border-radius: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #F4A6B8 0%, #F3AC6E 25%, #F4CB55 50%, #9BC979 75%, #9BC8E0 100%);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .related-grid { grid-template-columns: 1fr; gap: 12px; }
}
.related-card {
  display: block;
  background: white;
  border: 2px solid transparent;
  border-radius: var(--r-md);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  color: inherit;
  text-decoration: none;
}
.related-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-pink-light);
  box-shadow: 0 8px 24px rgba(232, 139, 160, 0.15);
  opacity: 1;
}
.related-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-pink-deep);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.related-card-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--c-text);
}
.related-card-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-text-soft);
  margin: 0;
}
.related-card-arrow {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-pink-deep);
}
