/* ============================================================
   FOR TWO — style.css (ブラッシュアップ版)
   Colors: Sky Blue #4AABDB | Peach #F0A882 | Green #5BB89A
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #4AABDB;
  --blue-dk: #2e8fb8;
  --blue-lt: #e8f5fc;
  --peach:   #F0A882;
  --peach-dk:#d98660;
  --green:   #5BB89A;
  --green-dk:#3d9a7c;
  --white:   #FFFFFF;
  --ivory:   #FDF8F4;
  --text:    #3a3a3a;
  --text-lt: #777777;
  --radius:  16px;
  --radius-lg: 24px;
  --shadow:  0 8px 32px rgba(74,171,219,.13);
  --shadow-md: 0 16px 48px rgba(74,171,219,.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--ivory);
  overflow-x: hidden;
  line-height: 1.75;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 0 32px;
  transition: background 0.35s, box-shadow 0.35s;
}
.nav.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: white; letter-spacing: -0.02em;
  transition: color 0.3s;
  display: flex; align-items: center;
}
.nav-logo span { color: var(--peach); }
.nav.scrolled .nav-logo { color: var(--text); }

.nav-logo-img {
  height: 40px; width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}
.nav.scrolled .nav-logo-img { filter: none; }

.nav-logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem; font-weight: 800; color: white;
}
.nav-logo-text span { color: var(--peach); }
.nav.scrolled .nav-logo-text { color: var(--text); }

.nav-links {
  display: flex; align-items: center; gap: 24px;
}
.nav-links a {
  font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: color 0.2s; white-space: nowrap;
}
.nav.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--blue); }

.nav-cta {
  background: var(--blue); color: white !important;
  padding: 8px 20px; border-radius: 999px;
  font-size: 0.85rem !important; font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--blue-dk) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-hamburger span {
  display: block; width: 26px; height: 2px;
  background: white; border-radius: 2px; transition: 0.3s;
}
.nav.scrolled .nav-hamburger span { background: var(--text); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue); overflow: hidden;
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(20,65,105,.6) 0%, rgba(74,171,219,.3) 100%);
}

.bubbles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.bubble { position: absolute; border-radius: 50%; background: rgba(255,255,255,.07); animation: floatUp linear infinite; }
.b1 { width:80px;  height:80px;  left:8%;  bottom:-80px;  animation-duration:9s;  animation-delay:0s;   }
.b2 { width:50px;  height:50px;  left:20%; bottom:-50px;  animation-duration:12s; animation-delay:2s;   }
.b3 { width:120px; height:120px; left:60%; bottom:-120px; animation-duration:14s; animation-delay:1s;   }
.b4 { width:40px;  height:40px;  left:75%; bottom:-40px;  animation-duration:10s; animation-delay:3s;   }
.b5 { width:90px;  height:90px;  left:88%; bottom:-90px;  animation-duration:11s; animation-delay:0.5s; }
.b6 { width:60px;  height:60px;  left:42%; bottom:-60px;  animation-duration:13s; animation-delay:4s;   }

@keyframes floatUp {
  0%   { transform: translateY(0) scale(1);        opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-110vh) scale(1.2); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 120px 24px 80px;
  max-width: 820px;
}
.hero-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.12em;
  color: rgba(255,255,255,.8);
  margin-bottom: 18px;
  animation: fadeDown 0.8s ease both;
}
.hero-headline {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.3;
  color: white; margin-bottom: 16px;
  animation: fadeDown 0.9s 0.1s ease both;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(90deg, #fff 0%, var(--peach) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* 「素敵な時間」ペーチカラー強調 */
.hero-headline .em-peach {
  background: linear-gradient(90deg, #f7c8a8 0%, var(--peach) 60%, #d97a50 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  animation: fadeDown 1s 0.2s ease both;
}

/* トラストバッジ */
.hero-trust {
  display: inline-flex; align-items: center; gap: 0;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 14px 32px;
  margin-bottom: 36px;
  animation: fadeDown 1.05s 0.25s ease both;
  gap: 28px;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.trust-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem; font-weight: 800; color: white;
  line-height: 1;
}
.trust-num small { font-size: 0.7em; font-weight: 600; }
.trust-label { font-size: 0.72rem; color: rgba(255,255,255,.75); white-space: nowrap; }
.trust-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}

.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeDown 1.1s 0.3s ease both;
}

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; z-index: 2;
  color: rgba(255,255,255,.55);
  font-family: 'Poppins', sans-serif; font-size: 0.68rem; letter-spacing: 0.14em;
  animation: fadeIn 1.5s 1s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scrollPulse 2s 1.5s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.3; transform: scaleY(0.5); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap; cursor: pointer;
  line-height: 1; vertical-align: middle;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; display: block; }
.btn-lg svg { width: 22px; height: 22px; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.15); }
.btn:active { transform: translateY(0); }
.btn-line  { background: #06C755; color: white; }
.btn-line:hover { background: #05a548; }
.btn-ghost {
  background: rgba(255,255,255,.15); color: white;
  border: 2px solid rgba(255,255,255,.45);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); }
.btn-insta {
  background: rgba(255,255,255,.15); color: white;
  border: 2px solid rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
}
.btn-insta:hover { background: rgba(255,255,255,.25); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
.section { padding: 96px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em;
  color: var(--blue); text-transform: uppercase; margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700; color: var(--text); margin-bottom: 16px;
}
.section-lead { font-size: 1rem; color: var(--text-lt); margin-bottom: 52px; }
.text-center { text-align: center; }

.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: white; padding-top: 0; position: relative; }
.wave-top { margin-top: -2px; background: var(--blue); line-height: 0; }
.wave-top svg { width: 100%; height: 80px; display: block; fill: white; }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; padding-top: 60px;
}
.about-lead {
  font-size: 1.15rem; font-weight: 500;
  color: var(--text); margin-bottom: 16px; line-height: 1.85;
}
.about-lead strong { color: var(--blue); }
.about-body { color: var(--text-lt); margin-bottom: 14px; }

/* 強み3点 */
.about-strengths {
  display: flex; flex-direction: column; gap: 14px;
  margin: 28px 0 24px;
}
.strength-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 18px;
  background: var(--ivory);
  border-radius: 12px;
  border-left: 3px solid var(--blue);
}
.strength-icon {
  width: 32px; height: 32px; flex-shrink: 0;
}
.strength-icon svg { width: 32px; height: 32px; }
.strength-title { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.strength-desc  { font-size: 0.82rem; color: var(--text-lt); }

.about-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-lt); border: 1.5px solid rgba(74,171,219,.25);
  padding: 6px 14px; border-radius: 999px;
  font-size: 0.85rem; color: var(--blue); font-weight: 500;
}

.about-visual {
  display: flex; align-items: center; justify-content: center;
}
.about-image-container {
  width: 100%; height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(74,171,219,.2);
  animation: gentleFloat 4.5s ease-in-out infinite;
  position: relative;
}
.about-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.about-card-float {
  background: linear-gradient(135deg, var(--blue) 0%, #70c4e8 100%);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(74,171,219,.3);
  animation: gentleFloat 4.5s ease-in-out infinite;
  width: 100%; height: 440px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.heart-icon svg { width: 80px; height: 80px; margin: 0 auto 16px; }
.float-card-text { font-size: 1.1rem; font-weight: 600; color: white; line-height: 1.6; }

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--ivory); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.service-card {
  background: white; border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
  border: 1.5px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(74,171,219,.15);
}

.card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 32px; height: 32px; }
.card-icon--blue  { background: rgba(74,171,219,.1); }
.card-icon--peach { background: rgba(240,168,130,.12); }
.card-icon--green { background: rgba(91,184,154,.12); }
.card-icon--white { background: rgba(255,255,255,.2); }

.card-title {
  font-size: 1.15rem; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
}
.card-title--white { color: white; }

.card-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.price-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem; font-weight: 800; color: var(--blue);
}
.price-unit { font-size: 0.85rem; color: var(--text-lt); }
.card-price--white .price-num  { color: white; }
.card-price--white .price-unit { color: rgba(255,255,255,.8); }

.card-note  { font-size: 0.8rem; color: var(--text-lt); margin-bottom: 14px; }
.price-note { color: var(--text-lt); }
.price-note--white { color: rgba(255,255,255,.8); }

.card-desc  { font-size: 0.9rem; color: var(--text-lt); line-height: 1.75; }
.card-desc--white { color: rgba(255,255,255,.9); }

.card-footnote {
  margin-top: 12px; font-size: 0.75rem; color: #aaa;
  border-top: 1px solid #f0ebe5; padding-top: 10px;
}

/* FEATURED CARD */
.service-card--featured {
  background: linear-gradient(145deg, var(--blue) 0%, #2a82aa 100%);
  box-shadow: 0 24px 64px rgba(74,171,219,.4);
  border-color: transparent !important;
}
.service-card--featured:hover {
  box-shadow: 0 32px 80px rgba(74,171,219,.5);
}
.featured-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--peach); color: white;
  font-size: 0.78rem; font-weight: 700;
  padding: 4px 14px; border-radius: 999px;
  box-shadow: 0 2px 8px rgba(240,168,130,.5);
  animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 2px 8px rgba(240,168,130,.5); }
  50%      { box-shadow: 0 4px 20px rgba(240,168,130,.8); }
}
.card-cta-btn {
  display: inline-block; margin-top: 20px;
  background: white; color: var(--blue);
  padding: 10px 24px; border-radius: 999px;
  font-weight: 700; font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.12); }

/* サービス後のミニCTA */
.section-cta-mini {
  margin-top: 48px;
  text-align: center;
  padding: 36px 32px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}
.section-cta-mini p {
  font-size: 1rem; color: var(--text-lt);
}

/* ============================================================
   OVERVIEW
   ============================================================ */
.overview { background: white; }

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.overview-item {
  background: var(--ivory); border-radius: var(--radius);
  padding: 28px 24px;
  border: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.overview-item:hover {
  border-color: rgba(74,171,219,.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.ov-icon { width: 40px; height: 40px; margin-bottom: 14px; }
.ov-icon svg { width: 40px; height: 40px; display: block; }

.ov-label {
  font-size: 0.78rem; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px;
}
.ov-value { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.overview-item small { font-size: 0.8rem; color: var(--text-lt); }

/* ============================================================
   FLOW
   ============================================================ */
.flow { background: var(--ivory); }

.flow-timeline {
  max-width: 680px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}
.flow-item { display: flex; gap: 24px; position: relative; }
.flow-step { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }

.step-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, #70c4e8 100%);
  color: white;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(74,171,219,.3);
  flex-shrink: 0; position: relative; z-index: 1;
}
.step-line {
  width: 2px; flex: 1; min-height: 40px;
  background: linear-gradient(to bottom, var(--blue), rgba(74,171,219,.15));
  margin: 4px 0;
}
.flow-content { padding: 0 0 44px 0; }
.flow-title {
  font-size: 1.05rem; font-weight: 700;
  color: var(--text); margin-bottom: 6px; margin-top: 10px;
}
.flow-content p { font-size: 0.9rem; color: var(--text-lt); }
.flow-link {
  display: inline-block; margin-top: 8px;
  color: var(--blue); font-weight: 600; font-size: 0.88rem;
  transition: color 0.2s;
}
.flow-link:hover { color: var(--blue-dk); }

/* ============================================================
   STAFF
   ============================================================ */
.staff { background: white; }

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.staff-card {
  background: var(--ivory); border-radius: var(--radius);
  padding: 40px 32px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1.5px solid transparent;
}
.staff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.07);
  border-color: rgba(74,171,219,.15);
}

.staff-avatar {
  width: 110px; height: 110px;
  border-radius: 50%; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.staff-avatar--ken  { background: linear-gradient(135deg, var(--blue) 0%, #70c4e8 100%); }
.staff-avatar--yusa { background: linear-gradient(135deg, var(--peach) 0%, #f7cdb8 100%); }

.staff-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.avatar-initial {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem; font-weight: 800; color: white;
}

.staff-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.staff-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 16px;
}
.staff-tags span {
  background: white; border: 1.5px solid #e8e0d8;
  padding: 4px 12px; border-radius: 999px;
  font-size: 0.78rem; color: var(--text-lt);
}
.staff-bio { font-size: 0.88rem; color: var(--text-lt); line-height: 1.85; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--ivory); }

.faq-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.faq-item {
  background: white; border-radius: var(--radius);
  padding: 28px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  border: 1.5px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item:hover {
  border-color: rgba(74,171,219,.2);
  box-shadow: var(--shadow);
}
.faq-q {
  font-size: 0.95rem; font-weight: 700; color: var(--text);
  margin-bottom: 10px; line-height: 1.6;
  display: flex; gap: 8px;
}
.faq-q span {
  font-family: 'Poppins', sans-serif;
  color: var(--blue); font-size: 1.1rem; flex-shrink: 0;
}
.faq-a {
  font-size: 0.88rem; color: var(--text-lt); line-height: 1.8;
  padding-left: 20px;
}

/* ============================================================
   TERMS (ACCORDION)
   ============================================================ */
.terms { background: white; }

.accordion-wrap {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.accordion-item {
  background: var(--ivory); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.04);
  border: 1.5px solid transparent;
  transition: border-color 0.3s;
}
.accordion-item:has(.accordion-btn[aria-expanded="true"]) {
  border-color: rgba(74,171,219,.2);
}
.accordion-btn {
  width: 100%; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem; font-weight: 600; color: var(--text);
  text-align: left; transition: background 0.2s;
}
.accordion-btn:hover { background: rgba(74,171,219,.05); }
.accordion-btn[aria-expanded="true"] { color: var(--blue); }
.accordion-arrow {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--blue); transition: transform 0.3s;
}
.accordion-btn[aria-expanded="true"] .accordion-arrow { transform: rotate(180deg); }
.accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
}
.accordion-body.open { max-height: 600px; padding: 0 24px 24px; }
.accordion-body ul {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.accordion-body li {
  padding-left: 18px; position: relative;
  font-size: 0.9rem; color: var(--text-lt); line-height: 1.7;
}
.accordion-body li::before {
  content: '•'; position: absolute; left: 0;
  color: var(--blue); font-weight: 700;
}
.accordion-body p { font-size: 0.9rem; color: var(--text-lt); line-height: 1.75; }

.cancel-table { width: 100%; border-collapse: collapse; margin-top: 8px; font-size: 0.88rem; }
.cancel-table td {
  padding: 10px 14px; border-bottom: 1px solid #f0ebe5; color: var(--text-lt);
}
.cancel-table td:first-child { font-weight: 500; color: var(--text); width: 55%; }
.terms-warning { margin-top: 12px !important; color: #c0392b !important; font-size: 0.82rem !important; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #1e6fa0 0%, var(--blue) 60%, #5dc8ea 100%);
  position: relative; overflow: hidden;
}
.cta-bg-bubbles { position: absolute; inset: 0; pointer-events: none; }
.cta-bubble { position: absolute; border-radius: 50%; background: rgba(255,255,255,.06); }
.cb1 { width:320px; height:320px; top:-100px; right:-80px; }
.cb2 { width:220px; height:220px; bottom:-60px; left:-40px; }
.cb3 { width:160px; height:160px; bottom:40px; right:20%; }

.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.22em; font-weight: 700;
  color: rgba(255,255,255,.7); text-transform: uppercase; margin-bottom: 12px;
  display: block;
}
.cta-title { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 700; color: white; margin-bottom: 16px; }
.cta-body  { color: rgba(255,255,255,.85); margin-bottom: 40px; font-size: 1.02rem; }
.cta-btns  { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-insta {
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.4);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #132635; color: rgba(255,255,255,.65); padding: 52px 0 28px; }
.footer-inner { text-align: center; margin-bottom: 28px; }
.footer-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem; font-weight: 800; color: white; margin-bottom: 10px;
}
.footer-logo span { color: var(--peach); }
.footer-logo-img {
  height: 44px; width: auto;
  object-fit: contain;
  margin: 0 auto 10px;
  filter: brightness(0) invert(1) opacity(0.9);
  display: block;
}
.footer-logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem; font-weight: 800; color: white;
}
.footer-logo-text span { color: var(--peach); }
.footer-tagline { font-size: 0.9rem; margin-bottom: 6px; }
.footer-location { font-size: 0.85rem; margin-bottom: 20px; }

.footer-nav {
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  justify-content: center; margin-top: 16px;
}
.footer-nav a {
  font-size: 0.82rem; color: rgba(255,255,255,.5);
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(255,255,255,.9); }

.footer-legal {
  margin-top: 28px;
  padding: 20px 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  text-align: left;
  max-width: 680px;
  margin-left: auto; margin-right: auto;
}
.footer-legal-title {
  font-size: 0.85rem; font-weight: 700;
  color: rgba(255,255,255,.8); margin-bottom: 8px;
}
.footer-legal-desc {
  font-size: 0.75rem; color: rgba(255,255,255,.4);
  line-height: 1.7; margin-bottom: 12px;
}
.footer-pdf-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--blue);
  border: 1px solid rgba(74,171,219,.4);
  padding: 6px 16px; border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.footer-pdf-link:hover { background: rgba(74,171,219,.15); color: #70c4e8; }

.footer-copy {
  text-align: center; font-size: 0.75rem;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px; color: rgba(255,255,255,.35);
}

/* ============================================================
   LINE FAB (モバイル固定ボタン)
   ============================================================ */
.line-fab {
  display: none;
  position: fixed; bottom: 24px; right: 20px;
  background: #06C755; color: white;
  border-radius: 999px;
  padding: 14px 22px;
  align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 8px 28px rgba(6,199,85,.4);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
}
.line-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(6,199,85,.5);
}

/* ============================================================
   HERO: 認可外保育施設バッジ
   ============================================================ */
.hero-cert-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: 8px 20px;
  margin-bottom: 18px;
  font-size: 0.82rem; font-weight: 700;
  color: white; letter-spacing: 0.04em;
  animation: fadeDown 0.85s 0.05s ease both;
}
.hero-cert-badge svg {
  width: 16px; height: 16px; flex-shrink: 0;
  fill: #FFD700;
}

/* ============================================================
   ABOUT: 認可外保育施設 公認バナー
   ============================================================ */
.cert-banner {
  display: flex; align-items: flex-start; gap: 16px;
  background: linear-gradient(135deg, var(--blue-lt) 0%, rgba(255,255,255,.7) 100%);
  border: 2px solid rgba(74,171,219,.3);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 20px 0 24px;
}
.cert-banner-icon { flex-shrink: 0; width: 36px; height: 36px; }
.cert-banner-icon svg { width: 36px; height: 36px; display: block; }
.cert-banner-title {
  font-size: 0.9rem; font-weight: 800; color: var(--blue);
  margin-bottom: 6px; letter-spacing: 0.03em;
}
.cert-banner-desc {
  font-size: 0.8rem; color: var(--text-lt); line-height: 1.7;
}

/* ============================================================
   DAILY PROGRAM
   ============================================================ */
.daily { background: white; }

.daily-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-bottom: 28px;
}
.daily-plan {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(0,0,0,.05);
}
.daily-plan-header {
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 4px;
}
.daily-plan-header h3 { font-size: 1rem; font-weight: 700; color: white; }
.daily-plan-sub { font-size: 0.78rem; color: rgba(255,255,255,.8); }
.daily-plan-header--blue  { background: linear-gradient(135deg, var(--blue) 0%, #70c4e8 100%); }
.daily-plan-header--peach { background: linear-gradient(135deg, var(--peach) 0%, #f7cdb8 100%); }

.daily-timeline {
  padding: 20px 20px 8px;
  background: var(--ivory);
  display: flex; flex-direction: column;
}
.dt-item {
  display: grid;
  grid-template-columns: 52px 20px 1fr;
  gap: 0 10px;
  margin-bottom: 4px;
}
.dt-item--last { margin-bottom: 12px; }
.dt-time {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  color: var(--blue); padding-top: 2px;
  white-space: nowrap;
}
.dt-bar {
  width: 2px; background: linear-gradient(to bottom, var(--blue), rgba(74,171,219,.2));
  margin: 4px auto 0; min-height: 100%;
  border-radius: 1px;
}
.dt-bar--none { background: transparent; }
.dt-content { padding-bottom: 16px; }
.dt-title { font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 4px; padding-top: 2px; }
.dt-desc { font-size: 0.82rem; color: var(--text-lt); line-height: 1.75; }
.dt-warn { color: #c0392b; font-weight: 700; }

.daily-note {
  text-align: center; font-size: 0.85rem;
  color: var(--text-lt); padding: 16px 20px;
  background: var(--ivory); border-radius: 10px;
  border: 1px solid rgba(74,171,219,.1);
}

/* ============================================================
   TERMS: 新スタイル追加
   ============================================================ */
.terms-highlight {
  background: rgba(240,168,130,.1);
  border-left: 3px solid var(--peach);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  font-size: 0.88rem; color: var(--text);
  line-height: 1.75;
}

/* ============================================================
   VOICES（保護者の声）
   ============================================================ */
.voices { background: white; }

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

.voice-card {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1.5px solid rgba(74,171,219,.1);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.voice-card::before {
  content: '\201C';
  position: absolute; top: 16px; left: 20px;
  font-size: 3.5rem; line-height: 1;
  color: rgba(74,171,219,.18);
  font-family: Georgia, serif; font-weight: 700;
  pointer-events: none;
}
.voice-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(74,171,219,.25);
}
.voice-card--featured {
  background: linear-gradient(145deg, var(--blue-lt) 0%, rgba(255,255,255,.9) 100%);
  border-color: rgba(74,171,219,.3);
  box-shadow: 0 4px 24px rgba(74,171,219,.12);
}

.voice-stars {
  color: #FBBF24;
  font-size: 1rem; letter-spacing: 2px;
  margin-top: 12px;
}
.voice-text {
  font-size: 0.93rem; color: var(--text);
  line-height: 1.8; font-weight: 500;
  flex: 1;
}
.voice-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid rgba(74,171,219,.1);
}
.voice-service {
  display: inline-block;
  background: rgba(74,171,219,.1); color: var(--blue);
  font-size: 0.75rem; font-weight: 700;
  padding: 3px 12px; border-radius: 999px;
}
.voice-name {
  font-size: 0.78rem; color: var(--text-lt);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .voices-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: white; padding: 16px 24px 28px;
    gap: 16px; box-shadow: 0 12px 32px rgba(0,0,0,.1);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--text) !important; font-size: 1rem; }
  .nav-hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .about-image-container { height: 300px; }
  .about-card-float { height: 300px; }
  .faq-grid { grid-template-columns: 1fr; }
  .voices-grid { grid-template-columns: 1fr; max-width: 560px; }
  .daily-grid { grid-template-columns: 1fr; }
  .line-fab { display: inline-flex; }
  .staff-card { padding: 32px 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero-content { padding: 100px 20px 72px; }
  .hero-headline { font-size: 1.85rem; }
  .hero-eyebrow { font-size: 0.8rem; }
  /* サービスは640px以下で1列 */
  .services-grid { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: 1fr 1fr; }
  .staff-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 280px; justify-content: center; }
  .cta-btns  { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero-trust { padding: 12px 18px; gap: 14px; }
  .trust-num { font-size: 1.15rem; }
  .section-cta-mini { flex-direction: column; gap: 14px; text-align: center; }
  .about-image-container { height: 240px; }
  .about-card-float { height: 240px; }
  /* About強みをコンパクトに */
  .strength-item { padding: 12px 14px; gap: 12px; }
  .strength-icon { width: 28px; height: 28px; flex-shrink: 0; }
  .strength-icon svg { width: 28px; height: 28px; }
  /* FAQ */
  .faq-item { padding: 22px 20px; }
  /* アコーディオン */
  .accordion-btn { padding: 16px 18px; font-size: 0.92rem; }
  .accordion-body.open { padding: 0 18px 20px; }
  /* フロー */
  .flow-content { padding-bottom: 32px; }
  /* スタッフ */
  .staff-card { padding: 28px 20px; }
  /* 声 */
  .voices-grid { grid-template-columns: 1fr; }
  /* フッター */
  .footer-nav { gap: 10px 16px; }
}

@media (max-width: 420px) {
  .overview-grid { grid-template-columns: 1fr; }
  .nav { padding: 0 14px; }
  .hero-trust {
    flex-direction: column; gap: 10px;
    border-radius: 20px; padding: 16px 20px;
  }
  .trust-divider { width: 36px; height: 1px; }
  .hero-headline { font-size: 1.65rem; }
  .section-title { font-size: 1.5rem; }
  /* ボタンをフル幅 */
  .btn { font-size: 0.88rem; padding: 13px 22px; }
  /* キャンセルテーブルをモバイル対応 */
  .cancel-table td { padding: 8px 10px; font-size: 0.82rem; }
  .cancel-table td:first-child { width: auto; }
}
