@charset "UTF-8";
/* =========================================================
   児童発達支援 SAKURA（さくら）｜ LP
   桜（春・芽吹き・希望）の世界観 ／ 運営：合同会社ブルーバード
   ========================================================= */

/* ---------- デザイントークン ---------- */
:root {
  /* カラー（桜ピンク基調） */
  --c-sakura: #f4a3c2;
  --c-sakura-deep: #e87aa6;
  --c-sakura-dark: #a8436f;
  /* 見出し・濃色 */
  --c-rose: #d9558a;
  /* 強CTA */
  --c-sakura-soft: #fbd3e0;
  --c-sakura-pale: #fef4f8;
  /* 背景うすピンク */
  --c-sakura-bg: #fdedf3;
  --c-leaf: #8cc06f;
  --c-leaf-deep: #5e9a45;
  --c-leaf-light: #eef6e7;
  --c-gold: #f0b94a;
  --c-bark: #b98a6a;
  --c-bluebird: #5b9fd4;
  /* 運営会社アクセント */
  --c-cream: #fffaf3;
  --c-ink: #5d4b54;
  --c-ink-soft: #8a7882;
  --c-line: #f3dde7;
  --c-white: #ffffff;

  /* 文字 */
  --ff-round: "Zen Maru Gothic", "Noto Sans JP", system-ui, sans-serif;
  --ff-base: "Noto Sans JP", system-ui, sans-serif;

  /* 余白・形 */
  --container: 1120px;
  --radius: 24px;
  --radius-sm: 14px;
  --radius-pill: 999px;

  /* 影（桜色を帯びた影） */
  --sh-sm: 0 4px 14px rgba(216, 122, 166, .12);
  --sh-md: 0 12px 30px rgba(216, 122, 166, .16);
  --sh-lg: 0 20px 50px rgba(216, 122, 166, .20);

  --header-h: 84px;
}

/* ---------- リセット ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 10px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--ff-base);
  color: var(--c-ink);
  line-height: 1.85;
  background: var(--c-white);
  font-size: 16px;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg,
iframe {
  max-width: 100%;
  vertical-align: middle;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

em {
  font-style: normal;
}

/* ---------- 日本語の不自然な改行対策（PC/タブレット/スマホ共通） ---------- */
body {
  line-break: strict;
}

:where(h1, h2, h3) {
  text-wrap: pretty;
}

/* 見出し・キャッチは文節内で改行させない（改行は ＜wbr＞・句読点・スペースのみ） */
.hero__eyebrow,
.hero__title-sub,
.hero__title-main,
.hero__lead,
.section-head__title,
.about__title,
.recruit__title,
.cta-band__title,
.worries__bridge-text,
.reason-card__title,
.flow-step__body h3,
.service__sub {
  word-break: keep-all;
}

/* 長文は自然な文節区切りで改行（対応ブラウザ。非対応は通常折り返し） */
.section-head__lead,
.about__text,
.reason-card__text,
.flow-step__body p,
.worries__bridge-sub,
.recruit__lead,
.voice-card blockquote,
.service__target-text {
  word-break: auto-phrase;
  overflow-wrap: anywhere;
}

/* ---------- 桜の舞うエフェクト ---------- */
.sakura-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

/* ---------- レイアウト共通 ---------- */
.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 48px, 800px);
}

section {
  position: relative;
}

.worries,
.reasons,
.flow,
.faq {
  background: var(--c-sakura-pale);
}

/* ウェーブのあるセクションは、上のセクションと隙間が出ないよう 1px オーバーラップ */
.reasons,
.flow,
.faq {
  padding-block: clamp(70px, 9vw, 120px) clamp(56px, 7vw, 96px);
  margin-top: -1px;
}

.worries {
  padding-block: clamp(56px, 7vw, 92px);
}

.about,
.service,
.voice,
.community,
.contact,
.access {
  padding-block: clamp(64px, 8vw, 110px);
}

/* セクション内コンテンツは桜エフェクトより前面に */
main section>.container,
.hero__inner {
  position: relative;
  z-index: 6;
}

/* ---------- 見出し共通 ---------- */
.section-head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.section-head__label {
  font-family: var(--ff-round);
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--c-sakura-deep);
  font-size: .82rem;
  margin-bottom: 10px;
}

.section-head__title {
  font-family: var(--ff-round);
  font-weight: 900;
  color: var(--c-sakura-dark);
  font-size: clamp(1.5rem, 4.2vw, 2.3rem);
  line-height: 1.5;
  letter-spacing: .01em;
}

.section-head__title em {
  color: var(--c-sakura-deep);
  background: linear-gradient(transparent 62%, rgba(244, 163, 194, .45) 62%);
  padding: 0 .1em;
}

.section-head__lead {
  margin-top: 18px;
  color: var(--c-ink-soft);
  font-size: 1.02rem;
  line-height: 2;
}

.section-head__note {
  font-size: .85rem;
  color: var(--c-ink-soft);
}

.section-head--light .section-head__title {
  color: var(--c-white);
}

.section-head--light .section-head__label {
  color: #ffe2ee;
}

/* ---------- ボタン ---------- */
.btn {
  --btn-bg: var(--c-sakura);
  --btn-fg: #fff;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--ff-round);
  font-weight: 700;
  line-height: 1.3;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border-radius: var(--radius-pill);
  padding: 15px 30px;
  box-shadow: var(--sh-md);
  transition: transform .26s cubic-bezier(.2, .8, .3, 1.25), box-shadow .26s ease, filter .26s ease;
  text-align: center;
}

/* ホバー時の光沢スイープ（アクティブ感アップ） */
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  z-index: -1;
  width: 55%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-20deg);
  transition: left .6s cubic-bezier(.4, 0, .2, 1);
}

.btn small {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  opacity: .92;
  margin-top: 2px;
  letter-spacing: .01em;
}

.btn__icon {
  font-size: 1.25em;
  line-height: 1;
  transition: transform .26s cubic-bezier(.2, .8, .3, 1.4);
}

.btn:hover {
  transform: translateY(-4px) scale(1.035);
  box-shadow: 0 18px 40px rgba(216, 122, 166, .36);
  filter: brightness(1.05) saturate(1.12);
}

.btn:hover::after {
  left: 145%;
}

.btn:hover .btn__icon {
  transform: scale(1.18) rotate(-6deg);
}

.btn:active {
  transform: translateY(-1px) scale(.99);
}

.btn:focus-visible {
  outline: 3px solid rgba(217, 85, 138, .5);
  outline-offset: 3px;
}

.btn--white:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.btn--block:hover {
  transform: translateY(-3px);
}

/* 全幅ボタンは拡大しすぎないよう抑制 */
.btn--pink {
  --btn-bg: linear-gradient(135deg, #f8b6cf, #ef8fb4);
}

.btn--rose {
  --btn-bg: linear-gradient(135deg, #ef7faa, #d9558a);
}

.btn--white {
  --btn-bg: #fff;
  --btn-fg: var(--c-rose);
}

.btn--sm {
  padding: 11px 22px;
  font-size: .92rem;
}

.btn--lg {
  padding: 18px 34px;
  font-size: 1.12rem;
}

.btn--block {
  display: flex;
  width: 100%;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-family: var(--ff-round);
  font-weight: 700;
  color: var(--c-rose);
  border-bottom: 2px solid rgba(217, 85, 138, .3);
  padding-bottom: 3px;
  transition: gap .2s ease, color .2s ease;
}

.link-arrow::after {
  content: "→";
  transition: transform .2s ease;
}

.link-arrow:hover {
  color: var(--c-sakura-deep);
  gap: 12px;
}

.link-arrow:hover::after {
  transform: translateX(3px);
}

/* ---------- 写真プレースホルダー ---------- */
.photo-ph {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .5) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, var(--c-sakura-soft), #f4e0d6);
  border: 2px dashed rgba(232, 122, 166, .45);
  border-radius: var(--radius);
  overflow: hidden;
}

.photo-ph__label,
.photo-ph__label-sm {
  font-family: var(--ff-round);
  font-weight: 700;
  color: var(--c-sakura-dark);
  background: rgba(255, 255, 255, .8);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: .92rem;
  box-shadow: var(--sh-sm);
}

.photo-ph__label-sm {
  font-size: .68rem;
  padding: 4px 8px;
}

/* =========================================================
   ヘッダー
   ========================================================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 18px rgba(216, 122, 166, .10);
  transition: transform .3s ease;
}

.header__inner {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.logo__mark {
  display: inline-flex;
  filter: drop-shadow(0 3px 6px rgba(232, 122, 166, .3));
}

.logo__text strong {
  font-family: var(--ff-round);
  font-weight: 900;
  font-size: 1.32rem;
  color: var(--c-sakura-dark);
  letter-spacing: .06em;
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1.1;
}

.logo__jp {
  font-size: .62rem;
  font-weight: 700;
  color: var(--c-sakura-deep);
  letter-spacing: .1em;
}

.logo__sub {
  font-size: .66rem;
  color: var(--c-ink-soft);
  letter-spacing: .06em;
  display: block;
}

.gnav {
  display: flex;
  gap: clamp(10px, 1.4vw, 22px);
  margin-left: auto;
}

.gnav a {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: .92rem;
  color: var(--c-ink);
  padding: 6px 2px;
  position: relative;
  transition: color .2s ease;
}

.gnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--c-sakura-deep);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.gnav a:hover {
  color: var(--c-sakura-dark);
}

.gnav a:hover::after {
  transform: scaleX(1);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header__tel {
  text-align: right;
  line-height: 1.25;
}

.header__tel-label {
  display: block;
  font-size: .64rem;
  color: var(--c-ink-soft);
}

.header__tel-num {
  display: block;
  font-family: var(--ff-round);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--c-sakura-dark);
  letter-spacing: .02em;
}

.header__tel-time {
  display: block;
  font-size: .62rem;
  color: var(--c-ink-soft);
}

/* ハンバーガー */
.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  position: relative;
  border-radius: 12px;
  background: var(--c-sakura-soft);
}

.hamburger span {
  position: absolute;
  left: 11px;
  width: 24px;
  height: 2.5px;
  background: var(--c-sakura-dark);
  border-radius: 2px;
  transition: .3s ease;
}

.hamburger span:nth-child(1) {
  top: 15px;
}

.hamburger span:nth-child(2) {
  top: 22px;
}

.hamburger span:nth-child(3) {
  top: 29px;
}

.hamburger.is-open span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

/* ドロワー */
.drawer {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 99;
  background: #fff;
  box-shadow: var(--sh-lg);
  padding: 18px 24px 26px;
  transform: translateY(-120%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  visibility: hidden;
}

.drawer.is-open {
  transform: translateY(0);
  visibility: visible;
}

.drawer__nav {
  display: flex;
  flex-direction: column;
}

.drawer__nav a {
  font-family: var(--ff-round);
  font-weight: 700;
  padding: 13px 6px;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-ink);
}

.drawer__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

/* =========================================================
   ヒーロー
   ========================================================= */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(30px, 5vw, 70px));
  padding-bottom: clamp(90px, 11vw, 150px);
  background: linear-gradient(165deg, #fde4ee 0%, #fff5f8 46%, #eff7ea 100%);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .55;
}

.blob--1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle at 30% 30%, #fbd3e2, transparent 70%);
}

.blob--2 {
  width: 360px;
  height: 360px;
  bottom: -100px;
  left: -90px;
  background: radial-gradient(circle at 60% 40%, #dcefd0, transparent 70%);
}

/* 桜の枝 */
.branch {
  position: absolute;
  width: clamp(220px, 30vw, 360px);
  height: auto;
}

.branch--tr {
  top: -10px;
  right: -10px;
}

.branch__blossoms use {
  animation: bloomSway 6s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.branch__blossoms use:nth-child(2n) {
  animation-duration: 7.5s;
  animation-delay: .6s;
}

.branch__blossoms use:nth-child(3n) {
  animation-duration: 5.5s;
  animation-delay: 1.1s;
}

@keyframes bloomSway {

  0%,
  100% {
    transform: rotate(-6deg) scale(1);
  }

  50% {
    transform: rotate(6deg) scale(1.06);
  }
}

.hero__inner {
  position: relative;
  z-index: 6;
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: .84rem;
  color: var(--c-sakura-dark);
  background: #fff;
  padding: 7px 18px 7px 8px;
  border-radius: var(--radius-pill);
  box-shadow: var(--sh-sm);
  margin-bottom: 22px;
}

.hero__open {
  display: inline-block;
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .04em;
  color: #fff;
  background: linear-gradient(135deg, #f6b24a, #ef7faa);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 3px 8px rgba(239, 127, 170, .4);
  animation: openPulse 2.6s ease-in-out infinite;
}

@keyframes openPulse {

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

  50% {
    transform: scale(1.06);
  }
}

.hero__title {
  font-family: var(--ff-round);
  margin-bottom: 24px;
}

.hero__title-sub {
  display: block;
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  font-weight: 700;
  color: var(--c-sakura-dark);
  line-height: 1.6;
  margin-bottom: 8px;
}

.hero__title-main {
  display: block;
  font-weight: 900;
  font-size: clamp(2.1rem, 6vw, 3.7rem);
  line-height: 1.3;
  color: var(--c-sakura-dark);
  letter-spacing: .01em;
}

.hero__title-main em {
  color: var(--c-sakura-deep);
  position: relative;
}

.hero__title-main em::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 4%;
  height: .4em;
  background: rgba(246, 196, 96, .45);
  z-index: -1;
  border-radius: 4px;
}

.hero__lead {
  color: var(--c-ink);
  font-size: clamp(.95rem, 1.6vw, 1.05rem);
  line-height: 2;
  margin-bottom: 22px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero__badges li {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: .86rem;
  color: var(--c-sakura-dark);
  background: #fff;
  padding: 8px 16px 8px 34px;
  border-radius: var(--radius-pill);
  box-shadow: var(--sh-sm);
  position: relative;
}

.hero__badges li::before {
  content: "🌸";
  position: absolute;
  left: 11px;
  font-size: .85em;
}

.hero__badges strong {
  color: var(--c-rose);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__actions .btn {
  flex: 1 1 250px;
  gap: 9px;
  padding-left: 22px;
  padding-right: 22px;
  font-size: 1.04rem;
}

.hero__actions .btn>span:not(.btn__icon) {
  white-space: nowrap;
}

.hero__note {
  margin-top: 16px;
  font-size: .8rem;
  color: var(--c-ink-soft);
}

/* ヒーロービジュアル */
.hero__visual {
  position: relative;
}

.hero__photo {
  aspect-ratio: 4/3.4;
  border-radius: 30px;
  box-shadow: var(--sh-lg);
}

.photo-ph--hero {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .45) 0 16px, transparent 16px 32px),
    linear-gradient(150deg, #fbd3e2, #dcefd0 90%);
  border-color: rgba(232, 122, 166, .4);
}

.hero__float-card {
  position: absolute;
  right: -14px;
  bottom: -26px;
  border-radius: 50% 50% 50% 14px;
  width: 168px;
  height: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--sh-lg);
  padding: 14px;
  background: radial-gradient(circle at 50% 30%, #fff, #fdeef4);
}

.hero__float-emoji {
  font-size: 1.7rem;
  margin-bottom: 4px;
}

.hero__float-card p {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: .78rem;
  color: var(--c-sakura-dark);
  line-height: 1.5;
}

.hero__float-card strong {
  color: var(--c-rose);
}

/* 波形 */
.wave {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 6;
}

.wave svg {
  width: 100%;
  height: clamp(50px, 7vw, 100px);
  display: block;
}

.wave--bottom {
  bottom: -5px;
}

.wave--top {
  top: -1px;
}

/* =========================================================
   お悩み（共感）
   ========================================================= */
.worry-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 880px;
  margin-inline: auto;
}

.worry-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-line);
}

.worry-card__check {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c-sakura-pale);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 3px 8px rgba(232, 122, 166, .25);
}

.worry-card p {
  font-size: 1rem;
  line-height: 1.65;
}

.worry-card b {
  color: var(--c-sakura-dark);
}

.worries__bridge {
  text-align: center;
  margin-top: clamp(36px, 5vw, 56px);
}

.worries__bridge-text {
  font-family: var(--ff-round);
  font-weight: 900;
  font-size: clamp(1.3rem, 3.6vw, 2rem);
  color: var(--c-sakura-dark);
  line-height: 1.6;
}

.worries__bridge-text em {
  color: var(--c-rose);
  background: linear-gradient(transparent 60%, rgba(246, 196, 96, .45) 60%);
}

.worries__bridge-sub {
  margin-top: 12px;
  color: var(--c-ink-soft);
}

/* =========================================================
   SAKURAについて
   ========================================================= */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}

.about__visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.photo-ph--about {
  border-radius: 22px;
}

.photo-ph--a {
  aspect-ratio: 3/4;
  margin-top: 24px;
}

.photo-ph--b {
  aspect-ratio: 3/4;
  margin-bottom: 24px;
}

.about__title {
  font-family: var(--ff-round);
  font-weight: 900;
  color: var(--c-sakura-dark);
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  line-height: 1.5;
  margin: 14px 0 22px;
}

.about__title em {
  color: var(--c-sakura-deep);
}

.about__text {
  margin-bottom: 16px;
  color: var(--c-ink);
  line-height: 2;
}

.about__text b {
  color: var(--c-sakura-dark);
}

/* =========================================================
   選ばれる理由
   ========================================================= */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.reason-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px 30px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-line);
  overflow: hidden;
}

.reason-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: var(--accent, var(--c-sakura));
}

.reason-card--pink {
  --accent: var(--c-sakura-deep);
  --tint: var(--c-sakura-pale);
}

.reason-card--green {
  --accent: var(--c-leaf-deep);
  --tint: var(--c-leaf-light);
}

.reason-card--blue {
  --accent: var(--c-bluebird);
  --tint: #e9f3fb;
}

.reason-card--cream {
  --accent: var(--c-gold);
  --tint: #fff4de;
}

.reason-card__icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--tint);
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}

.reason-card__no {
  font-family: var(--ff-round);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--accent);
  opacity: .85;
  line-height: 1;
  margin-bottom: 4px;
}

.reason-card__title {
  font-family: var(--ff-round);
  font-weight: 900;
  font-size: 1.14rem;
  color: var(--c-sakura-dark);
  margin-bottom: 12px;
}

.reason-card__text {
  font-size: .92rem;
  line-height: 1.85;
  color: var(--c-ink-soft);
}

.reason-card__text b {
  color: var(--c-ink);
}

/* =========================================================
   サービス内容
   ========================================================= */
.service__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 3vw, 40px);
}

.service__target,
.service__list-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-line);
}

.service__target {
  background: linear-gradient(160deg, #fff, var(--c-sakura-pale));
}

.service__sub {
  font-family: var(--ff-round);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--c-sakura-dark);
  margin-bottom: 18px;
  padding-left: 16px;
  position: relative;
}

.service__sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: .15em;
  bottom: .15em;
  width: 6px;
  border-radius: 3px;
  background: var(--c-sakura-deep);
}

.service__target-text {
  line-height: 2;
}

.service__target-text b {
  color: var(--c-sakura-dark);
}

.service__target-note {
  margin-top: 14px;
  font-size: .84rem;
  color: var(--c-ink-soft);
  background: var(--c-cream);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

.service__list li {
  display: flex;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--c-line);
  line-height: 1.6;
}

.service__list li:last-child {
  border-bottom: none;
}

.service__list li span {
  flex-shrink: 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* =========================================================
   サービス時間・SAKURA の1日
   ========================================================= */
.schedule {
  background: var(--c-sakura-pale);
  padding-block: 75px;
}

/* サービス時間テーブル */
.hours {
  max-width: 780px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}

.hours__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 6px;
  table-layout: fixed;
}

.hours__table th,
.hours__table td {
  text-align: center;
  padding: 15px 6px;
  border-radius: var(--radius-sm);
  font-family: var(--ff-round);
  font-size: 1.02rem;
  line-height: 1.3;
}

.hours__table th {
  background: var(--c-sakura-soft);
  color: var(--c-sakura-dark);
  font-weight: 700;
}

.hours__head-label,
.hours__time {
  width: 30%;
  white-space: nowrap;
}

.hours__th--sat { color: var(--c-bluebird); }
.hours__th--sun { color: var(--c-rose); }

.hours__table td {
  background: #fff;
  box-shadow: var(--sh-sm);
  color: var(--c-ink);
}

.hours__table td.hours__time {
  background: var(--c-cream);
  box-shadow: none;
  font-weight: 700;
}

.hours__rest { color: var(--c-ink-soft); }

.hours__mark {
  color: var(--c-sakura-deep);
  font-weight: 900;
  font-size: 1.25rem;
}

.hours__note {
  margin-top: 16px;
  text-align: center;
  font-size: .84rem;
  color: var(--c-ink-soft);
}

/* SAKURA の1日（タイムライン＋イメージ） */
.oneday {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: clamp(28px, 3.5vw, 48px);
  box-shadow: var(--sh-sm);
}

.timeline {
  list-style: none;
  margin-top: 18px;
  padding: 0;
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
  padding: 0 0 22px 26px;
  margin-left: 8px;
  border-left: 2px solid var(--c-sakura-soft);
}

.timeline__item:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 1px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--c-sakura-deep);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--c-sakura-soft);
}

.timeline__time {
  font-family: var(--ff-round);
  font-weight: 900;
  color: var(--c-sakura-dark);
  font-size: .98rem;
  white-space: nowrap;
  padding-top: 1px;
}

.timeline__act {
  line-height: 1.6;
}

.timeline__sub {
  display: block;
  font-size: .86rem;
  color: var(--c-ink-soft);
  margin-top: 3px;
}

.oneday__note {
  margin-top: 18px;
  font-size: .84rem;
  color: var(--c-ink-soft);
}

.oneday__photo {
  aspect-ratio: 4 / 3;
  width: 100%;
}

@media (max-width: 768px) {
  .oneday {
    grid-template-columns: 1fr;
  }
  .oneday__visual {
    order: -1;
  }
  .oneday__photo {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 560px) {
  .hours {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .hours__table {
    min-width: 480px;
  }
}

/* =========================================================
   ご利用の流れ
   ========================================================= */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.flow-step {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 22px 26px;
  box-shadow: var(--sh-sm);
  text-align: center;
  border: 1px solid var(--c-line);
}

.flow-step:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--c-sakura-deep);
  font-weight: 900;
  z-index: 2;
}

.flow-step__no {
  display: inline-block;
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: .72rem;
  color: var(--c-sakura-deep);
  letter-spacing: .1em;
}

.flow-step__no b {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--c-sakura-dark);
  margin-top: 2px;
}

.flow-step__body h3 {
  font-family: var(--ff-round);
  font-weight: 900;
  font-size: 1.08rem;
  color: var(--c-sakura-dark);
  margin: 14px 0 10px;
}

.flow-step__body p {
  font-size: .86rem;
  line-height: 1.8;
  color: var(--c-ink-soft);
}

.flow-step__free {
  display: inline-block;
  font-size: .66rem;
  background: var(--c-sakura-deep);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 2px 10px;
  margin-left: 6px;
  vertical-align: middle;
}

/* =========================================================
   ご家族の声
   ========================================================= */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.voice-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-line);
  margin: 0;
  position: relative;
}

.voice-card::before {
  content: "“";
  position: absolute;
  top: 6px;
  left: 20px;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--c-sakura-soft);
  line-height: 1;
}

.voice-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.voice-card blockquote {
  margin: 0 0 16px;
  font-size: .95rem;
  line-height: 1.95;
  color: var(--c-ink);
  position: relative;
  z-index: 1;
}

.voice-card figcaption {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: .84rem;
  color: var(--c-sakura-dark);
}

/* =========================================================
   中間CTAバンド
   ========================================================= */
.cta-band {
  background: linear-gradient(135deg, #f29ab8, #dd6a9b);
  color: #fff;
  padding-block: clamp(50px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}

.cta-band::before {
  width: 260px;
  height: 260px;
  top: -90px;
  left: -60px;
}

.cta-band::after {
  width: 200px;
  height: 200px;
  bottom: -80px;
  right: -40px;
}

.cta-band__inner {
  position: relative;
  z-index: 6;
  text-align: center;
}

.cta-band__lead {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 1.02rem;
  opacity: .96;
}

.cta-band__title {
  font-family: var(--ff-round);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  margin: 6px 0 30px;
}

.cta-band__title em {
  background: linear-gradient(transparent 60%, rgba(246, 196, 96, .55) 60%);
  padding: 0 .15em;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.cta-band__actions .btn {
  flex: 0 1 320px;
}

/* =========================================================
   採用バンド
   ========================================================= */
/* 次のFAQ（白いウェーブ）と段差が出ないよう、下端は白で終える */
.recruit {
  background: linear-gradient(180deg, var(--c-cream), #fff);
  padding-block: clamp(48px, 6vw, 84px);
}

.recruit__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  background: linear-gradient(135deg, #fdeef4, #eef6e7);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--sh-sm);
}

.recruit__title {
  font-family: var(--ff-round);
  font-weight: 900;
  font-size: clamp(1.3rem, 3.4vw, 1.9rem);
  color: var(--c-sakura-dark);
  line-height: 1.5;
  margin: 8px 0 12px;
}

.recruit__title em {
  color: var(--c-rose);
}

.recruit__lead {
  color: var(--c-ink-soft);
  margin-bottom: 14px;
}

.recruit__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.recruit__tags li {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: .82rem;
  color: var(--c-sakura-dark);
  background: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--sh-sm);
}

.recruit__btn {
  flex-shrink: 0;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-line);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 58px;
  position: relative;
  font-family: var(--ff-round);
  font-weight: 700;
  color: var(--c-sakura-dark);
  font-size: 1rem;
  line-height: 1.6;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "Q";
  position: absolute;
  left: 20px;
  top: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-sakura-deep);
  color: #fff;
  font-weight: 900;
  display: grid;
  place-items: center;
  font-size: .9rem;
}

.faq-item summary::after {
  content: "＋";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-sakura-deep);
  font-weight: 700;
  transition: transform .25s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item__a {
  padding: 0 24px 22px 58px;
  position: relative;
}

.faq-item__a::before {
  content: "A";
  position: absolute;
  left: 20px;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-gold);
  color: #fff;
  font-weight: 900;
  display: grid;
  place-items: center;
  font-size: .9rem;
}

.faq-item__a p {
  color: var(--c-ink-soft);
  line-height: 1.9;
  font-size: .94rem;
}

/* =========================================================
   お問い合わせ（電話 + フォーム）
   ========================================================= */
.contact {
  background: linear-gradient(160deg, #ec88ad, #cf5286);
  color: #fff;
}

.contact__free-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 8px 22px;
  box-shadow: var(--sh-md);
}

.contact__free-badge span {
  font-family: var(--ff-round);
  font-weight: 700;
  color: var(--c-sakura-dark);
  font-size: .9rem;
}

.contact__free-badge strong {
  font-family: var(--ff-round);
  font-weight: 900;
  color: var(--c-rose);
  font-size: 1.4rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
}

/* 電話ブロック */
.contact__tel-block {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 40px);
  text-align: center;
}

.contact__tel-lead {
  font-family: var(--ff-round);
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact__tel-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-round);
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: #fff;
  letter-spacing: .02em;
  line-height: 1.2;
}

.contact__tel-icon {
  font-size: .7em;
}

.contact__tel-time {
  font-size: .84rem;
  opacity: .92;
  margin-top: 6px;
}

.contact__tel-sub {
  font-size: .92rem;
  font-weight: 700;
  margin-top: 12px;
}

.contact__tel-sub-num {
  color: #fff;
  font-family: var(--ff-round);
  font-weight: 900;
  letter-spacing: .02em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact__points {
  margin-top: 22px;
  text-align: left;
  display: inline-block;
}

.contact__points li {
  position: relative;
  padding: 7px 0 7px 28px;
  font-size: .9rem;
}

.contact__points li::before {
  content: "🌸";
  position: absolute;
  left: 0;
  font-size: .85em;
}

/* フォーム */
.contact__form-block {
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 38px);
  box-shadow: var(--sh-lg);
  color: var(--c-ink);
}

.contact__form-lead {
  font-family: var(--ff-round);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--c-sakura-dark);
  margin-bottom: 22px;
}

.contact__form-lead small {
  font-size: .74rem;
  color: var(--c-ink-soft);
  font-weight: 500;
}

.cform__row {
  margin-bottom: 18px;
}

.cform__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cform label {
  display: block;
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: .9rem;
  color: var(--c-sakura-dark);
  margin-bottom: 7px;
}

.req {
  font-size: .66rem;
  background: var(--c-sakura-deep);
  color: #fff;
  border-radius: 4px;
  padding: 2px 7px;
  margin-left: 6px;
  vertical-align: middle;
  font-weight: 700;
}

.cform input,
.cform select,
.cform textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--c-ink);
  background: var(--c-sakura-pale);
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.cform input:focus,
.cform select:focus,
.cform textarea:focus {
  outline: none;
  border-color: var(--c-sakura-deep);
  box-shadow: 0 0 0 3px rgba(232, 122, 166, .2);
  background: #fff;
}

.cform textarea {
  resize: vertical;
}

.cform input.is-error,
.cform select.is-error {
  border-color: var(--c-rose);
  background: #fff6f8;
}

.cform__error {
  color: var(--c-rose);
  font-size: .78rem;
  margin-top: 5px;
  min-height: 0;
}

/* `.cform label{display:block}` より詳細度を上げて flex を確実に適用する */
.cform label.cform__agree {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 9px;
  font-weight: 500 !important;
  font-size: .88rem !important;
  color: var(--c-ink) !important;
  margin-bottom: 6px;
  cursor: pointer;
}

/* CF7（wpautop）が同意欄内に自動挿入する改行を無効化し、横並びを維持 */
.cform__agree br {
  display: none;
}

.cform__agree input {
  width: auto;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--c-sakura-deep);
}

.cform__policy-link {
  color: var(--c-rose);
  text-decoration: underline;
}

.cform__submit {
  margin-top: 14px;
}

.cform__note {
  font-size: .76rem;
  color: var(--c-ink-soft);
  margin-top: 14px;
  line-height: 1.7;
}

/* 送信完了 */
.cform__done {
  text-align: center;
  padding: 30px 10px;
}

.cform__done-icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-sakura-pale);
  font-size: 2rem;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(232, 122, 166, .3);
}

.cform__done h3 {
  font-family: var(--ff-round);
  font-weight: 900;
  color: var(--c-sakura-dark);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.cform__done p {
  color: var(--c-ink-soft);
  line-height: 1.9;
  font-size: .92rem;
}

.cform__done a {
  color: var(--c-rose);
  font-weight: 700;
  text-decoration: underline;
}

/* =========================================================
   アクセス
   ========================================================= */
.access__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
}

.access__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sh-md);
  min-height: 340px;
}

.access__map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

.access__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-line);
}

.access__table th,
.access__table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--c-line);
  vertical-align: top;
  font-size: .94rem;
}

.access__table tr:last-child th,
.access__table tr:last-child td {
  border-bottom: none;
}

.access__table th {
  width: 32%;
  font-family: var(--ff-round);
  font-weight: 700;
  color: var(--c-sakura-dark);
  background: var(--c-sakura-pale);
  white-space: nowrap;
}

.access__table td small {
  color: var(--c-ink-soft);
  font-size: .82rem;
}

.access__table a {
  color: var(--c-rose);
  text-decoration: underline;
}

/* =========================================================
   フッター（運営会社の補足）
   ========================================================= */
.footer {
  background: #5a3a48;
  color: #f3dde7;
  padding: clamp(40px, 5vw, 60px) 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px 40px;
  align-items: start;
  padding-bottom: 30px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__name {
  font-family: var(--ff-round);
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: .04em;
}

.footer__sub {
  font-size: .74rem;
  opacity: .82;
}

.footer__contact {
  font-size: .86rem;
  line-height: 1.9;
}

.footer__contact a {
  text-decoration: underline;
}

.footer__company {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 20px;
}

.footer__company-label {
  font-size: .68rem;
  letter-spacing: .12em;
  opacity: .7;
  margin-bottom: 4px;
}

.footer__company-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}

.footer__bluebird {
  display: inline-flex;
}

.footer__company-note {
  font-size: .78rem;
  opacity: .82;
  margin-top: 6px;
  line-height: 1.7;
}

.footer__nav {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 18px;
}

.footer__nav a {
  font-size: .86rem;
  opacity: .9;
  transition: opacity .2s;
}

.footer__nav a:hover {
  opacity: 1;
  color: #fff;
}

.footer__copy {
  text-align: center;
  font-size: .74rem;
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  opacity: .7;
  margin: 0;
}

/* =========================================================
   追従CTA（モバイル） / ページトップ
   ========================================================= */
.floating-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .2);
  box-shadow: 0 -4px 18px rgba(0, 0, 0, .14);
  transform: translateY(110%);
  transition: transform .35s ease;
}

.floating-cta.is-visible {
  transform: translateY(0);
}

.floating-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 8px;
  font-family: var(--ff-round);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.floating-cta a span:last-child {
  display: flex;
  flex-direction: column;
}

.floating-cta a small {
  font-size: .62rem;
  font-weight: 500;
  opacity: .92;
}

.floating-cta__tel {
  background: linear-gradient(135deg, #f8b6cf, #ef8fb4);
}

.floating-cta__form {
  background: linear-gradient(135deg, #ef7faa, #d9558a);
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 80;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  color: var(--c-rose);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: var(--sh-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .3s ease;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--c-sakura-deep);
  color: #fff;
}

/* =========================================================
   スクロール演出
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }

  .sakura-canvas {
    display: none;
  }
}

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width:1024px) {
  .gnav {
    display: none;
  }

  .header__cta .header__tel {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .header__cta {
    margin-left: auto;
  }

  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-step:nth-child(2)::after {
    display: none;
  }
}

@media (max-width:768px) {
  :root {
    --header-h: 66px;
  }

  body {
    padding-bottom: 64px;
  }

  /* 追従CTA分 */
  .header__cta .btn--sm {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    max-width: 440px;
    margin: 10px auto 0;
  }

  .hero__actions .btn {
    flex: 1 1 100%;
  }

  .branch--tr {
    width: 200px;
    opacity: .85;
  }

  .worry-list {
    grid-template-columns: 1fr;
  }

  .about__inner {
    grid-template-columns: 1fr;
  }

  .about__visual {
    max-width: 420px;
    margin-inline: auto;
  }

  .service__grid {
    grid-template-columns: 1fr;
  }

  .voice-grid {
    grid-template-columns: 1fr;
  }

  .recruit__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .recruit__btn {
    width: 100%;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .access__grid {
    grid-template-columns: 1fr;
  }

  .cta-band__actions .btn {
    flex: 1 1 100%;
  }

  .floating-cta {
    display: grid;
  }

  .to-top {
    bottom: 84px;
    right: 14px;
    width: 44px;
    height: 44px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }
}

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

  .flow-steps {
    grid-template-columns: 1fr;
  }

  .flow-step:not(:last-child)::after {
    content: "⌄";
    right: 50%;
    top: auto;
    bottom: -16px;
    transform: translateX(50%);
  }

  .footer__brand {
    justify-content: flex-start;
  }

  .cform__cols {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }
}
/* =========================================================
   写真差し込み（プレースホルダーへ実画像を配置）／館内ギャラリー
   ※ 画像反映に伴い追記
   ========================================================= */
.photo-ph.has-img {
  background: none;
  border: none;
}

.photo-ph .ph-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 館内のご案内 */
.facility {
  background: var(--c-sakura-pale);
  padding-block: clamp(56px, 8vw, 96px);
}

.facility-grid {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}

.facility-item {
  background: var(--c-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}

.facility-item__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.facility-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.facility-item:hover .facility-item__img img {
  transform: scale(1.05);
}

.facility-item__cap {
  font-family: var(--ff-round);
  font-weight: 700;
  color: var(--c-sakura-dark);
  font-size: .92rem;
  text-align: center;
  padding: 14px 12px 16px;
}

@media (prefers-reduced-motion: reduce) {
  .facility-item__img img { transition: none; }
}

/* =========================================================
   ヘッダー：ナビ項目追加に伴う横幅最適化（改行・窮屈の解消）
   ※ ヘッダー内をより広く使い、余白・文字を詰めて1行に収める
   ========================================================= */
.header__inner {
  width: 100%;
  max-width: 1840px;            /* 超ワイドでの開きすぎを抑える上限（中央寄せ） */
  margin-inline: auto;
  padding-inline: clamp(16px, 2vw, 32px);  /* 左右余白を詰めてヘッダーを広く使う */
  box-sizing: border-box;
  gap: clamp(12px, 1.5vw, 22px);
  flex-wrap: nowrap;
}

.gnav {
  gap: clamp(7px, 1vw, 16px);
  flex-wrap: nowrap;
}

.gnav a {
  font-size: clamp(.82rem, .95vw, .95rem);
  padding: 6px 1px;
}

.header__cta {
  gap: 10px;
}

/* 中間幅（ナビ表示の下限付近 980〜1120px）はさらに詰める */
@media (max-width: 1120px) {
  .header__inner { gap: 12px; }
  .gnav { gap: 8px; }
  .gnav a { font-size: .85rem; }
  .header__cta { gap: 8px; }
  .header__tel-label { display: none; } /* 電話の小ラベルを省きCTA域を圧縮 */
}

/* =========================================================
   館内ギャラリー：ライトボックス（拡大・スライド）
   ========================================================= */
/* 画像をボタン化したことによるリセット＋クリック可能の見た目 */
.facility-item__trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
}
.facility-item__trigger:focus-visible {
  outline: 3px solid var(--c-sakura-deep);
  outline-offset: 2px;
}

/* スクロールロック（ライトボックス表示中） */
body.is-lightbox-open {
  overflow: hidden;
}

/* オーバーレイ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}
.lightbox.is-open {
  display: block;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(60, 30, 45, .82);
  backdrop-filter: blur(3px);
}
.lightbox__dialog {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 56px);
}
.lightbox__figure {
  position: relative;
  margin: 0;
  max-width: min(1000px, 92vw);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox__img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  background: #fff;
  animation: lb-pop .25s ease;
}
@keyframes lb-pop {
  from { opacity: 0; transform: scale(.97); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox__cap {
  margin-top: 14px;
  color: #fff;
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: .92rem;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .4);
  max-width: 90%;
}

/* ボタン共通 */
.lightbox__btn {
  position: absolute;
  border: 0;
  padding: 0;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-sakura-dark);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
  transition: background .2s ease, transform .2s ease;
  z-index: 2;
}
.lightbox__btn:hover {
  background: #fff;
  transform: scale(1.06);
}
.lightbox__btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* 閉じる */
.lightbox__close {
  top: clamp(12px, 3vw, 28px);
  right: clamp(12px, 3vw, 28px);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
}

/* 前後ナビ（左右） */
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2rem;
}
.lightbox__nav:hover {
  transform: translateY(-50%) scale(1.08);
}
.lightbox__prev { left: clamp(8px, 2.5vw, 28px); }
.lightbox__next { right: clamp(8px, 2.5vw, 28px); }

/* 枚数表示 */
.lightbox__count {
  position: absolute;
  bottom: clamp(12px, 3vw, 26px);
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: .82rem;
  letter-spacing: .08em;
  background: rgba(0, 0, 0, .35);
  padding: 4px 12px;
  border-radius: 999px;
}

/* スマホ：ボタンを少し小さく、操作域を確保 */
@media (max-width: 600px) {
  .lightbox__nav { width: 44px; height: 44px; font-size: 1.7rem; }
  .lightbox__close { width: 42px; height: 42px; font-size: 1.4rem; }
  .lightbox__img { max-height: 70vh; }
}

/* モーション軽減 */
@media (prefers-reduced-motion: reduce) {
  .lightbox__img { animation: none; }
  .lightbox__btn { transition: none; }
}

/* ライトボックスのボタンアイコン（SVG）— viewBox中央配置で確実に中央 */
.lightbox__icon {
  width: 44%;
  height: 44%;
  display: block;
}

/* セクション境界の波を上下そろえる（片側だけ直線→上下とも波に） */
.service { position: relative; }
.voice   { position: relative; }
.service .wave path { fill: #fef0f5; }            /* 直上 reasons の裾色に合わせて継ぎ目を消す */
.voice .wave path   { fill: var(--c-sakura-bg); } /* 直上 flow の色に合わせて継ぎ目を消す */


/* =========================================================
   リデザイン・レイヤー｜参考: さくらさくみらい採用サイト に寄せる
   既存ルールを後置きで上書き（配色・フォント・ボタン・角丸・装飾）
   ========================================================= */

/* ---------- デザイントークン再定義（参考サイト準拠） ---------- */
:root {
  /* 桜ピンク系 */
  --c-sakura: #f4b9cb;
  --c-sakura-deep: #ef7191;   /* ローズピンク：主アクセント */
  --c-sakura-dark: #e40a72;   /* 濃い桜ピンク：強調・ラベル */
  --c-rose: #e40a72;
  --c-sakura-soft: #fbe0e8;
  --c-sakura-pale: #fdeff2;
  --c-sakura-bg: #f7eeeb;     /* セクション背景ピンク */
  /* 文字：温かいブラウン */
  --c-ink: #4f3b17;
  --c-ink-soft: #8d7a5f;
  --c-line: #efe2d9;
  /* 追加パステル＆アクセント */
  --c-orange: #fdb67f;        /* CTAボタン用オレンジ */
  --c-orange-deep: #f3974b;
  --c-yellow-bg: #faf4e3;
  --c-blue-bg: #d5e9e9;
  --c-green-bg: #deecc4;
  /* 形・影 */
  --radius: 28px;
  --radius-sm: 18px;
  --radius-pill: 50vw;
  --sh-sm: 0 6px 18px rgba(233, 84, 107, .10);
  --sh-lg: 0 14px 34px rgba(233, 84, 107, .14);
  /* 英字フォント */
  --ff-en: "Comfortaa", "Zen Maru Gothic", sans-serif;
}

/* 本文はブラウン基調 */
body { color: var(--c-ink); }

/* ---------- 見出し：英字ラベルは Comfortaa＋ローズ＋ドット ---------- */
.section-head__label {
  font-family: var(--ff-en);
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--c-sakura-deep);
  display: inline-flex;
  align-items: center;
  gap: .5em;
}
.section-head__label::before {
  content: "";
  width: .5em;
  height: .5em;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

/* タイトルはダークブラウン、<em> をローズで強調（リファレンス調） */
.section-head:not(.section-head--light) .section-head__title,
.about__title,
.recruit__title {
  color: var(--c-ink);
}
.section-head__title em,
.about__title em,
.recruit__title em {
  color: var(--c-sakura-dark);
  font-style: normal;
}

/* 明色（濃ピンク背景）セクションのラベルは白 */
.section-head--light .section-head__label { color: #fff; }

/* ---------- ボタン：ピル型＋フラット、ふわっと浮くホバー ---------- */
.btn {
  border-radius: var(--radius-pill);
  box-shadow: var(--sh-sm);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.btn--pink { background: var(--c-orange); color: #5b3c14; }
.btn--pink:hover { background: var(--c-orange-deep); color: #fff; }
.btn--rose { background: var(--c-sakura-deep); color: #fff; }
.btn--rose:hover { background: var(--c-sakura-dark); }
.btn--white { background: #fff; color: var(--c-sakura-dark); }

/* ---------- カード：大きめ角丸＋ソフトな影 ---------- */
.reason-card,
.facility-item,
.voice-card,
.work-item,
.flow-step,
.faq-item,
.cform,
.access__table,
.worry-card {
  border-radius: var(--radius);
}

/* ---------- セクション背景（多色パステルの一部 + 濃ピンクCTA） ---------- */
.hero {
  background: linear-gradient(170deg, #fde9ef 0%, #fff6f0 55%, #fdf3e8 100%);
}
.worries { background: var(--c-sakura-bg); }
.reasons { background: linear-gradient(180deg, var(--c-sakura-bg), var(--c-sakura-pale)); }
.service { background-color: #fff; }
.service .wave path { fill: var(--c-sakura-pale); }
.facility { background: var(--c-sakura-bg); }
.faq { background: var(--c-yellow-bg); }
.faq .wave path { fill: var(--c-yellow-bg); }
.cta-band { background: linear-gradient(135deg, var(--c-sakura-deep), var(--c-sakura-dark)); }
.contact { background: linear-gradient(160deg, var(--c-sakura-deep), var(--c-sakura-dark)); }

/* ---------- 装飾：やわらかいドット模様（白いセクションに） ---------- */
.service {
  background-image: radial-gradient(var(--c-sakura-soft) 1.6px, transparent 1.7px);
  background-size: 22px 22px;
}

/* ロゴ英字も Comfortaa */
.logo__text strong { font-family: var(--ff-en); }


/* =========================================================
   リデザイン Pass 2｜さくらさくみらい採用サイト寄せ（コンポーネント意匠）
   ・POINTカード（4つの安心）／丸番号バッジ
   ・カードのフラット角丸＆ホバー
   ・ドット/花びらの装飾、英字バッジ
   既存クラスへの後置き上書き（HTML構造は不変）
   ========================================================= */

/* ---------- 共通：英字に Comfortaa を効かせる小物 ---------- */
.hero__open,
.hero__eyebrow,
.reason-card__no,
.flow-step__no,
.cta-band__lead {
  font-family: var(--ff-en);
}

/* ---------- ヒーロー：OPENバッジをピル＆ローズに ---------- */
.hero__open {
  display: inline-block;
  background: var(--c-sakura-dark);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-right: 8px;
}
.hero__photo { border-radius: 30px; }
.hero__float-card { border: 3px solid #fff; }

/* ---------- POINTカード（reason-card を参考のPOINT意匠へ） ---------- */
.reason-grid {
  gap: clamp(18px, 2.4vw, 30px);
}
.reason-card {
  --rc: var(--c-sakura-deep);
  --rcbg: var(--c-sakura-pale);
  position: relative;
  background: #fff;
  border: 2px solid var(--rcbg);
  border-radius: var(--radius);
  padding: 54px 26px 30px;
  text-align: center;
  box-shadow: var(--sh-sm);
  overflow: visible;
  transition: transform .25s ease, box-shadow .25s ease;
}
.reason-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}
/* 上辺中央の丸番号バッジ */
.reason-card__no {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--rc);
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(233, 84, 107, .25);
  margin: 0;
}
.reason-card__no::before {
  content: "POINT";
  position: absolute;
  top: -1.35em;
  left: 50%;
  transform: translateX(-50%);
  font-size: .52rem;
  letter-spacing: .16em;
  color: var(--rc);
}
/* アイコンを丸いパステル地に乗せる */
.reason-card__icon {
  width: 84px;
  height: 84px;
  margin: 6px auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--rcbg);
}
.reason-card__title {
  color: var(--c-ink);
  font-weight: 700;
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.reason-card__text {
  color: var(--c-ink-soft);
  font-size: .94rem;
  line-height: 1.9;
}
/* カラー・バリエーション（参考のパステル） */
.reason-card--pink  { --rc: #ef7191; --rcbg: #fdeef1; }
.reason-card--green { --rc: #8bbf5a; --rcbg: #e6f1d6; }
.reason-card--blue  { --rc: #5fb0c9; --rcbg: #d8eef0; }
.reason-card--cream { --rc: #f0a93f; --rcbg: #fbf0d8; }

/* ---------- 各種カードのフラット角丸＆ホバー統一 ---------- */
.worry-card,
.voice-card,
.flow-step,
.faq-item,
.facility-item,
.work-item {
  border-radius: var(--radius);
  box-shadow: var(--sh-sm);
}
.worry-card,
.voice-card,
.flow-step,
.faq-item {
  border: 2px solid var(--c-line);
  background: #fff;
}
.voice-card:hover,
.facility-item:hover,
.work-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}

/* ご家族の声：丸アバターを白縁＋パステルに */
.voice-card__avatar {
  border: 3px solid #fff;
  background: var(--c-sakura-soft) !important;
  box-shadow: 0 4px 10px rgba(233, 84, 107, .18);
}

/* ---------- 装飾：やわらかい水玉と桜の花びら ---------- */
/* ピンク系セクションに淡い水玉 */
.worries,
.facility {
  background-image: radial-gradient(rgba(239, 113, 145, .12) 2px, transparent 2.2px);
  background-size: 26px 26px;
}
/* セクション見出しに桜の花びらアクセント（英字ラベルの上） */
.section-head { position: relative; }
.section-head__label {
  position: relative;
}
/* タイトル脇の小さな三点ドット装飾 */
.section-head__title::after {
  content: "❀";
  display: block;
  margin: 10px auto 0;
  font-size: 1rem;
  color: var(--c-sakura);
  line-height: 1;
}

/* ---------- 「ご利用の流れ」ステップ番号も丸バッジ風に ---------- */
.flow-step__no {
  color: var(--c-sakura-deep);
  font-weight: 700;
}

/* ---------- スクロール出現を少しリッチに（既存data-reveal） ---------- */
[data-reveal] {
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .3, 1);
}

/* ---------- モバイル微調整 ---------- */
@media (max-width: 600px) {
  .reason-card { padding: 50px 20px 26px; }
  .reason-card__no { width: 56px; height: 56px; font-size: 1.3rem; top: -20px; }
}


/* =========================================================
   リデザイン Pass 3｜ご家族の声 カルーセル
   ========================================================= */
.voice-carousel {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 10px;
}
.voice-carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius);
}
.voice-carousel__track {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}
.voice-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 14px;
}
.voice-carousel__track .voice-card {
  margin: 0;
  height: 100%;
}
.voice-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--c-sakura-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
  box-shadow: var(--sh-sm);
  z-index: 2;
  transition: background .2s ease, transform .2s ease, color .2s ease;
}
.voice-carousel__nav:hover {
  background: var(--c-sakura-deep);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.voice-carousel__nav svg { width: 42%; height: 42%; display: block; }
.voice-carousel__prev { left: -6px; }
.voice-carousel__next { right: -6px; }
.voice-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.voice-carousel__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--c-sakura-soft);
  transition: background .2s ease, transform .2s ease;
}
.voice-carousel__dot.is-active {
  background: var(--c-sakura-deep);
  transform: scale(1.25);
}
@media (max-width: 600px) {
  .voice-carousel__nav { width: 40px; height: 40px; }
  .voice-carousel__prev { left: -2px; }
  .voice-carousel__next { right: -2px; }
}


/* =========================================================
   リデザイン Pass 4｜多色パステル＆フラット境界＆ヒーロー意匠
   ・波の区切りを廃止し、参考サイト同様のフラットな色ブロックへ
   ・セクションを白／淡ピンク／イエロー／ブルーで塗り分け
   ・ヒーローはブロブ型マスク写真＋水玉背景
   ========================================================= */

/* 波の区切りを廃止（参考サイトはフラット境界） */
.wave { display: none !important; }

/* セクション背景：多色パステルでリズムを付ける */
.hero {
  background:
    radial-gradient(rgba(239, 113, 145, .10) 2px, transparent 2.4px) 0 0 / 26px 26px,
    linear-gradient(170deg, #fde9ef 0%, #fff6f0 55%, #fdf3e8 100%);
}
.worries  { background: var(--c-sakura-bg); }   /* 淡ピンク */
.about    { background: #ffffff; }
.reasons  { background: #fdeff2; }               /* ライトピンク（POINTカードが映える） */
.service  { background-color: #ffffff; }         /* 白＋水玉（Pass1） */
.facility { background: var(--c-sakura-bg); }    /* 淡ピンク＋水玉 */
.flow     { background: #e4f1f1; }               /* ライトブルー差し色 */
.voice    { background: var(--c-yellow-bg); }    /* イエロー差し色 */
.faq      { background: #fdeff2; }               /* ライトピンク */
.access   { background: #ffffff; }

/* ヒーロー：写真をブロブ型マスクに（参考サイト調） */
.hero__photo {
  border-radius: 47% 53% 52% 48% / 55% 47% 53% 45%;
}
.hero__float-card { border-radius: 50% 50% 50% 16px; }

/* セクション見出しの英字ラベルを少し主張（バッジ風の下線） */
.section-head__label::after {
  content: "";
  display: block;
}

/* 余白を少しゆったり（参考のエアリーさ） */
.worries, .about, .reasons, .service, .facility,
.flow, .voice, .faq {
  padding-block: clamp(64px, 9vw, 110px);
}


/* =========================================================
   リデザイン Pass 5｜装飾の散りばめ（花びら・ドット）＋ヒーロー英字
   ※ テキスト/CSSのみ（データURI不使用）で安全に
   ========================================================= */

/* ---------- ヒーロー：背景に大きな英字ウォーターマーク ---------- */
.hero { position: relative; overflow: hidden; }
.hero__inner { position: relative; z-index: 1; }
.hero::before {
  content: "for everyone";
  position: absolute;
  top: 2%;
  right: -1%;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: clamp(56px, 12vw, 168px);
  line-height: 1;
  color: rgba(239, 113, 145, .07);
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

/* ---------- 散りばめる桜の花びら（ディンバット文字で軽量に） ---------- */
.worries, .reasons, .service, .facility, .flow, .voice, .faq {
  position: relative;
  overflow: hidden;
}
.worries::before, .reasons::before, .service::before,
.facility::before, .flow::before, .voice::before, .faq::before,
.worries::after, .reasons::after, .voice::after, .faq::after {
  content: "❀";
  position: absolute;
  color: rgba(239, 113, 145, .16);
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}
/* 位置・大きさをばらけさせる */
.worries::before  { top: 8%;  left: 4%;  font-size: 34px; transform: rotate(-12deg); }
.worries::after   { bottom: 10%; right: 6%; font-size: 22px; color: rgba(233, 208, 98, .22); }
.reasons::before  { top: 12%; right: 5%; font-size: 28px; transform: rotate(10deg); }
.reasons::after   { bottom: 8%; left: 5%; font-size: 40px; color: rgba(95, 176, 201, .16); }
.service::before  { top: 14%; left: 6%;  font-size: 24px; transform: rotate(-8deg); }
.facility::before { bottom: 9%; right: 5%; font-size: 32px; transform: rotate(14deg); }
.flow::before     { top: 10%; right: 7%; font-size: 30px; color: rgba(239, 113, 145, .18); }
.voice::before    { top: 9%;  left: 5%;  font-size: 30px; transform: rotate(-10deg); }
.voice::after     { bottom: 12%; right: 5%; font-size: 22px; color: rgba(239, 113, 145, .2); }
.faq::before      { top: 12%; left: 6%;  font-size: 28px; color: rgba(233, 208, 98, .24); }
.faq::after       { bottom: 10%; right: 6%; font-size: 36px; transform: rotate(8deg); }

/* コンテンツは装飾より前面に */
.worries .container, .reasons .container, .service .container,
.facility .container, .flow .container, .voice .container,
.faq .container, .faq .container--narrow {
  position: relative;
  z-index: 1;
}

/* モーション軽減時は装飾を控えめに */
@media (prefers-reduced-motion: reduce) {
  .hero::before { opacity: .8; }
}


/* =========================================================
   リデザイン Pass 6｜ヒーロー細部の仕上げ（CSSのみ）
   ・特長バッジを白ピル＋チェック
   ・サブ見出しをローズのピル
   ・スクロールヒント
   ========================================================= */

/* サブ見出しをローズの小ピルに */
.hero__title-sub {
  display: inline-block;
  background: var(--c-sakura-pale);
  color: var(--c-sakura-dark);
  font-weight: 700;
  font-size: clamp(.82rem, 2.4vw, 1rem);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

/* 特長バッジ：白いピルチップ＋チェック */
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 22px 0;
}
.hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--c-ink);
  font-weight: 700;
  font-size: .9rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--sh-sm);
}
.hero__badges li::before {
  content: "✓";
  color: #fff;
  background: var(--c-sakura-deep);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
}
.hero__badges li strong { color: var(--c-sakura-dark); }

/* スクロールヒント（ヒーロー下中央） */
.hero::after {
  content: "SCROLL";
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  font-family: var(--ff-en);
  font-size: .6rem;
  letter-spacing: .22em;
  color: var(--c-sakura-deep);
  padding-bottom: 26px;
  z-index: 1;
  pointer-events: none;
}
.hero::after {
  background:
    linear-gradient(var(--c-sakura-deep), var(--c-sakura-deep)) bottom center / 1.5px 18px no-repeat;
}
@media (max-width: 768px) {
  .hero::after { display: none; }
}
@media (prefers-reduced-motion: no-preference) {
  .hero::after { animation: scrollHint 1.8s ease-in-out infinite; }
}
@keyframes scrollHint {
  0%, 100% { opacity: .4; }
  50% { opacity: 1; }
}


/* =========================================================
   リデザイン Pass 7｜構造リビルド：上部アナウンスバー＋ヒーロー強化
   ========================================================= */
:root { --topbar-h: 42px; }

/* 上部アナウンスバー（固定ヘッダーの最上段） */
.topbar {
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 16px;
  background: linear-gradient(90deg, var(--c-sakura-deep), var(--c-sakura-dark));
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .02em;
  white-space: nowrap;
  overflow: hidden;
}
.topbar__item--free {
  background: #fff;
  color: var(--c-sakura-dark);
  border-radius: var(--radius-pill);
  padding: 3px 12px;
  font-size: .76rem;
}
.topbar__tel {
  color: #fff;
  font-family: var(--ff-en);
  font-weight: 700;
}

/* 固定ヘッダーの占有高さを再計算（トップバー分を加味） */
.hero {
  padding-top: calc(var(--header-h) + var(--topbar-h) + clamp(30px, 5vw, 70px));
}
html {
  scroll-padding-top: calc(var(--header-h) + var(--topbar-h) + 12px);
}
.drawer {
  top: calc(var(--header-h) + var(--topbar-h));
}

/* ヒーロー強化（見出しと写真の存在感） */
.hero__title-main {
  font-size: clamp(1.9rem, 5.6vw, 3.2rem);
  line-height: 1.4;
}
.hero__photo {
  box-shadow: 0 24px 50px rgba(233, 84, 107, .18);
}

/* スマホ：トップバーを軽量化 */
@media (max-width: 600px) {
  :root { --topbar-h: 38px; }
  .topbar { gap: 10px; font-size: .72rem; }
  .topbar__item--free { display: none; }
}


/* =========================================================
   リデザイン Pass 8｜ヒーローKV強化（写真背後のブロブ・前面整理）
   ========================================================= */
.hero__visual { position: relative; }

/* 写真の背後に大きなミントのブロブ（参考KV調の主役感） */
.hero__visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 82%;
  aspect-ratio: 1 / 1;
  right: -7%;
  top: -9%;
  background: radial-gradient(circle at 50% 45%, #d7ebeb, #eef7f6);
  border-radius: 46% 54% 50% 50% / 54% 46% 54% 46%;
  opacity: .75;
  pointer-events: none;
}
/* 小さなイエローの円も添える */
.hero__visual::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 92px;
  height: 92px;
  left: -10px;
  bottom: 6%;
  background: radial-gradient(circle at 50% 40%, #fbe7a8, #f8eec3);
  border-radius: 50%;
  opacity: .85;
  pointer-events: none;
}
/* 写真とフローティングカードを前面に */
.hero__photo { position: relative; z-index: 1; }
.hero__float-card { z-index: 2; }


/* =========================================================
   リデザイン Pass 9｜4つの安心を参考のPOINT意匠へ
   ・楕円（円形）写真サムネ ・POINTバッジを左上に重ねる
   ・上下の千鳥配置 ・背後を流れるドットライン（視線誘導）
   ========================================================= */
.reasons { overflow: visible; }
.reason-grid {
  position: relative;
  align-items: start;
}

/* カードの“箱”をやめ、写真＋テキストだけに（参考と同じ） */
.reason-card {
  background: none;
  border: 0;
  box-shadow: none;
  padding: 0 12px;
  overflow: visible;
  text-align: center;
}
.reason-card:hover { transform: none; box-shadow: none; }

/* 楕円（ほぼ円）の写真サムネ */
.reason-card__photo {
  position: relative;
  width: 100%;
  max-width: 232px;
  margin: 0 auto 20px;
  aspect-ratio: 1 / 1.04;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(233, 84, 107, .16);
  z-index: 1;
}
.reason-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.reason-card:hover .reason-card__photo img { transform: scale(1.06); }

/* POINTバッジ（楕円サムネの左上に重ねる丸） */
.reason-card__no {
  position: absolute;
  top: 2px;
  left: 6%;
  width: 58px;
  height: 58px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fcecc0;
  color: var(--c-ink);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
  z-index: 3;
}
.reason-card__no::before {
  content: "POINT";
  position: static;
  transform: none;
  font-size: .46rem;
  letter-spacing: .14em;
  color: var(--c-sakura-dark);
  margin-bottom: 2px;
}
.reason-card--pink  .reason-card__no { background: #fde0e7; }
.reason-card--green .reason-card__no { background: #e7f1d8; }
.reason-card--blue  .reason-card__no { background: #d9eef0; }
.reason-card--cream .reason-card__no { background: #fbf0d6; }

.reason-card__title { margin-top: 4px; }

/* PC：上下の千鳥配置＋背後を流れるドットライン */
@media (min-width: 781px) {
  .reason-card:nth-child(even) { margin-top: 66px; }
  .reason-grid::before {
    content: "";
    position: absolute;
    left: 9%;
    right: 9%;
    top: 150px;
    border-top: 3px dotted rgba(233, 84, 107, .38);
    z-index: 0;
    pointer-events: none;
  }
}
@media (max-width: 780px) {
  .reason-card:nth-child(even) { margin-top: 0; }
  .reason-card__photo { max-width: 200px; }
}


/* =========================================================
   リデザイン Pass 10｜POINTサムネを横長楕円(やや四角)＋波打つ点線
   ========================================================= */
/* サムネ：横長で少し四角寄りの楕円に */
.reason-card__photo {
  max-width: 252px;
  aspect-ratio: 1.4 / 1;
  border-radius: 28% / 36%;
}

/* Pass9 の直線ドットラインは廃止 */
.reason-grid::before { content: none; }

/* カードを点線より前面に */
.reason-card { position: relative; z-index: 1; }

/* 波打つ点線コネクタ（PCのみ・背面） */
.reason-connector { display: none; }
@media (min-width: 781px) {
  .reason-connector {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 60px;
    width: 100%;
    height: 200px;
    z-index: 0;
    overflow: visible;
    pointer-events: none;
  }
}

/* =========================================================
   リデザイン Pass 11｜.reason-card::before を除去・波の向き反転(HTML側)
   ========================================================= */
.reason-card::before { content: none !important; display: none !important; }

/* =========================================================
   リデザイン Pass 12｜ヒーロー特長バッジのチェック重なり修正
   旧CSSの position:absolute / padding-left:26px を打ち消し、
   ✓ を flex の通常配置にしてテキストと重ならないように
   ========================================================= */
.hero__badges li {
  padding-left: 16px;
}
.hero__badges li::before {
  position: static;
  top: auto;
  left: auto;
  transform: none;
}

/* =========================================================
   リデザイン Pass 13｜FV画像マスクをウネウネ・流れ背景を白
   ========================================================= */
/* FVのブロブ写真マスクをモーフィング */
@keyframes fvBlobMorph {
  0%   { border-radius: 47% 53% 52% 48% / 55% 47% 53% 45%; }
  25%  { border-radius: 58% 42% 46% 54% / 48% 58% 42% 52%; }
  50%  { border-radius: 43% 57% 60% 40% / 57% 44% 56% 43%; }
  75%  { border-radius: 53% 47% 43% 57% / 45% 54% 46% 55%; }
  100% { border-radius: 47% 53% 52% 48% / 55% 47% 53% 45%; }
}
@keyframes fvBlobMorphRev {
  0%   { border-radius: 46% 54% 50% 50% / 54% 46% 54% 46%; }
  25%  { border-radius: 40% 60% 55% 45% / 55% 42% 58% 45%; }
  50%  { border-radius: 60% 40% 42% 58% / 43% 57% 43% 57%; }
  75%  { border-radius: 48% 52% 58% 42% / 56% 46% 54% 44%; }
  100% { border-radius: 46% 54% 50% 50% / 54% 46% 54% 46%; }
}
.hero__photo {
  animation: fvBlobMorph 14s ease-in-out infinite;
  will-change: border-radius;
}
.hero__visual::before {
  animation: fvBlobMorphRev 18s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero__photo,
  .hero__visual::before { animation: none; }
}

/* ご利用までの流れ：背景を白に */
.flow { background: #ffffff; }


/* =========================================================
   リデザイン Pass 14｜実ロゴ画像の反映（ヘッダー／フッター）
   ========================================================= */
/* ヘッダー：横型SAKURAロゴ */
.logo { gap: 10px; }
.logo__img {
  height: 75px;
  width: auto;
  display: block;
}
/* ヘッダー高さが 66px に縮む中間幅ではロゴもはみ出さないよう縮小 */
@media (max-width: 768px) {
  .logo__img { height: 50px; }
}
.logo__sub-tag {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: .62rem;
  color: var(--c-ink-soft);
  letter-spacing: .08em;
  border-left: 1.5px solid var(--c-line);
  padding-left: 10px;
}
@media (max-width: 600px) {
  .logo__img { height: 38px; }
  .logo__sub-tag { display: none; }
}

/* フッター：SAKURAロゴ */
.footer__logo-img {
  height: 50px;
  width: auto;
  display: block;
}
.footer__brand .logo__mark { display: inline-flex; }

/* フッター運営会社：Bluebird ロゴ（鳥＋文字の縦型なので小さめ） */
.footer__bluebird-img {
  height: 30px;
  width: auto;
  vertical-align: middle;
  margin-right: 8px;
}
.footer__company-name {
  display: flex;
  align-items: center;
}


/* =========================================================
   リデザイン Pass 15｜電話アイコンSVG＋FV桜マークの統一
   ========================================================= */
/* トップバーの電話アイコン（線画SVG） */
.topbar__tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar__tel-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* FVフローティングカードの桜マーク（他の❀装飾と色を合わせる） */
.hero__float-emoji {
  color: var(--c-sakura);
  line-height: 1;
}


/* =========================================================
   リデザイン Pass 16｜電話アイコン📞をSVG線画に統一
   ========================================================= */
.tel-svg {
  width: 1.1em;
  height: 1.1em;
  display: inline-block;
  vertical-align: -0.15em;
}
/* 連絡先ブロックの大きめ電話アイコン内のSVGは少し大きく */
.contact__tel-icon .tel-svg { width: 1em; height: 1em; }


/* =========================================================
   リデザイン Pass 17｜電話アイコンを Material Symbols(call) に
   ========================================================= */
.material-symbols {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: -0.18em;
}
/* 電話アイコン（call）はボタン文字サイズに追従 */
.mi-call { font-size: 1.2em; }
/* 連絡先ブロックの大きめ電話 */
.contact__tel-icon .mi-call { font-size: 1.1em; }
/* トップバーは小さめ */
.topbar__tel .mi-call { font-size: 1.05em; }


/* =========================================================
   リデザイン Pass 18｜プライバシーポリシー モーダル
   ========================================================= */
/* フォームのリンク（button化したのでリンク風に整える） */
.cform__policy-link {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: var(--c-sakura-dark);
  text-decoration: underline;
  cursor: pointer;
}
.cform__policy-link:hover { color: var(--c-sakura-deep); }
.cform__policy-link:focus-visible { outline: 2px solid var(--c-sakura-deep); outline-offset: 2px; }

body.is-modal-open { overflow: hidden; }

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
}
.policy-modal.is-open { display: block; }
.policy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(79, 59, 23, .5);
  backdrop-filter: blur(3px);
}
.policy-modal__dialog {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(720px, 92vw);
  max-height: 86vh;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--sh-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: policyPop .25s ease;
}
@keyframes policyPop {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to   { opacity: 1; transform: none; }
}
.policy-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--c-sakura-pale);
  color: var(--c-sakura-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .2s ease, transform .2s ease;
}
.policy-modal__close:hover { background: var(--c-sakura-soft); transform: scale(1.06); }
.policy-modal__body {
  overflow-y: auto;
  padding: clamp(28px, 5vw, 48px);
  -webkit-overflow-scrolling: touch;
}
.policy-modal__eyebrow {
  font-family: var(--ff-en);
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--c-sakura-deep);
  font-size: .78rem;
}
.policy-modal__title {
  font-family: var(--ff-round);
  font-weight: 900;
  color: var(--c-sakura-dark);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  margin: 4px 0 14px;
}
.policy-modal__lead {
  color: var(--c-ink);
  line-height: 1.9;
  font-size: .94rem;
  margin-bottom: 26px;
}
.policy-sec { margin-bottom: 22px; }
.policy-sec h3 {
  font-family: var(--ff-round);
  font-weight: 700;
  color: var(--c-ink);
  font-size: 1.04rem;
  margin-bottom: 8px;
  padding-left: 12px;
  border-left: 4px solid var(--c-sakura);
}
.policy-sec p,
.policy-sec li {
  color: var(--c-ink-soft);
  line-height: 1.9;
  font-size: .9rem;
}
.policy-sec ul {
  margin: 8px 0 0;
  padding-left: 1.2em;
}
.policy-sec li { margin-bottom: 4px; }
.policy-contact {
  background: var(--c-sakura-pale);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: 8px;
}
.policy-contact a { color: var(--c-sakura-dark); font-weight: 700; }
.policy-modal__date {
  color: var(--c-ink-soft);
  font-size: .82rem;
  text-align: right;
  margin: 18px 0 24px;
}
.policy-modal__foot {
  text-align: center;
  border-top: 1px solid var(--c-line);
  padding-top: 22px;
}
@media (prefers-reduced-motion: reduce) {
  .policy-modal__dialog { animation: none; }
}

/* =========================================================
   Contact Form 7 互換スタイル
   CF7 が出力するマークアップを LP のフォームデザイン(.cform)に合わせる
   ========================================================= */

/* フィールドのラッパ span をブロック化し、入力欄を全幅に */
.cform .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* CF7 のフォームコントロールにも .cform input 相当の幅を保証 */
.cform .wpcf7-form-control.wpcf7-text,
.cform .wpcf7-form-control.wpcf7-textarea,
.cform .wpcf7-form-control.wpcf7-select,
.cform .wpcf7-form-control.wpcf7-number,
.cform .wpcf7-form-control.wpcf7-date,
.cform .wpcf7-form-control.wpcf7-tel,
.cform .wpcf7-form-control.wpcf7-email {
  width: 100%;
}

/* 同意チェックボックス（acceptance） */
.cform__agree .wpcf7-form-control-wrap {
  display: inline-flex;
  align-items: center;
  width: auto;
  margin: 0;
  flex-shrink: 0;
}
.cform__agree .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.cform__agree .wpcf7-list-item-label {
  display: none; /* ラベル文言は LP 側の <span> で表示するため非表示 */
}

/* バリデーションエラー時の入力欄（.is-error 相当） */
.cform .wpcf7-not-valid {
  border-color: var(--c-rose) !important;
  background: #fff6f8 !important;
}

/* 各フィールド直下のエラーチップ（.cform__error 相当） */
.cform .wpcf7-not-valid-tip {
  color: var(--c-rose);
  font-size: .78rem;
  margin-top: 5px;
  display: block;
}

/* 送信時のスピナー位置調整 */
.cform .wpcf7-spinner {
  margin: 12px auto 0;
  display: block;
}

/* 送信結果メッセージ（成功・失敗の共通枠） */
.cform .wpcf7-response-output {
  margin: 18px 0 0 !important;
  padding: 14px 16px !important;
  border-radius: var(--radius-sm);
  border-width: 1.5px;
  font-size: .9rem;
  line-height: 1.8;
}

/* 送信成功 */
.cform.sent .wpcf7-response-output {
  border-color: var(--c-sakura-deep) !important;
  background: var(--c-sakura-pale) !important;
  color: var(--c-sakura-dark) !important;
}

/* 入力エラー・送信失敗 */
.cform.invalid .wpcf7-response-output,
.cform.unaccepted .wpcf7-response-output,
.cform.failed .wpcf7-response-output,
.cform.aborted .wpcf7-response-output {
  border-color: var(--c-rose) !important;
  background: #fff6f8 !important;
  color: var(--c-rose) !important;
}
