/* ============================================
   訪問看護ステーション 牡丹
   Design: デザイン1準拠 / 淡ピンク / 水彩イラスト
   ============================================ */


:root {
  --pink-30: #fffafb;
  --pink-50: #fff4f7;
  --pink-100: #ffe5eb;
  --pink-200: #ffc8d5;
  --pink-300: #f79ab0;
  --pink-500: #ef6f92;
  --pink-600: #dc547c;
  --rose-800: #7b3c49;
  --cream: #fffaf3;
  --ivory: #fffdf9;
  --green: #7fa478;
  --text: #4c3d42;
  --text-sub: #89767b;
  --line: #f4d8df;
  --shadow-soft: 0 14px 36px rgba(199, 102, 128, 0.14);
  --shadow-light: 0 8px 22px rgba(199, 102, 128, 0.10);
  --radius: 8px;
  --font: 'Zen Maru Gothic', 'Hiragino Maru Gothic ProN', 'Hiragino Sans', 'Yu Gothic UI', 'Meiryo', sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.85;
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
strong { font-weight: 900; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.94);
  border-top: 4px solid var(--pink-300);
  border-bottom: 1px solid rgba(244, 216, 223, 0.86);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}
.header-top {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  gap: 12px;
  color: var(--pink-600);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}
/* ヘッダーロゴ：マーク＋名称ロゴ画像（横並び） */
.logo { gap: 10px; }
.logo .logo-mark { height: 72px; width: auto; flex-shrink: 0; }
.logo .logo-name { height: 40px; width: auto; flex-shrink: 0; }
.logo .logo-placeholder {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 2px dashed var(--pink-400);
  border-radius: 8px;
  background: repeating-linear-gradient(
    45deg,
    var(--pink-50),
    var(--pink-50) 6px,
    rgba(247, 154, 176, 0.08) 6px,
    rgba(247, 154, 176, 0.08) 12px
  );
  color: var(--pink-600);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.3;
  flex-shrink: 0;
}
.logo small {
  margin-top: 4px;
  font-size: 10px;
  color: var(--text-sub);
  font-weight: 700;
  letter-spacing: .08em;
}
.header-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.35;
  color: var(--text-sub);
}
.header-tel .num {
  font-size: 20px;
  font-weight: 900;
  color: var(--pink-600);
}
.header-tel .num::before { content: "TEL "; font-size: 12px; letter-spacing: .08em; }
.header-tel .hours { font-size: 11px; }
.header-substation {
  align-self: center;
  padding: 10px 20px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
  color: var(--pink-600);
  text-decoration: none;
  background: var(--pink-50);
  border: 1.5px solid var(--pink-200);
  border-radius: 999px;
  box-shadow: var(--shadow-light);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.header-substation:hover {
  background: var(--pink-100);
  border-color: var(--pink-300);
  color: var(--pink-700);
}

.header-nav {
  border-top: 1px solid rgba(244, 216, 223, .7);
  background: rgba(255, 244, 247, .58);
}
.header-nav > ul {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 26px;
  list-style: none;
  scrollbar-width: none;
}
.header-nav > ul::-webkit-scrollbar { display: none; }
.header-nav li { position: relative; }
.header-nav a {
  display: inline-block;
  padding: 13px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: color .2s var(--ease), opacity .2s var(--ease);
}
.header-nav a:hover { color: var(--pink-600); }
.header-nav .has-sub > a::after {
  content: " ▾";
  color: var(--pink-500);
  font-size: 10px;
}
.submenu {
  position: absolute;
  left: -18px;
  top: calc(100% - 3px);
  min-width: 220px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: .2s var(--ease);
}
.has-sub:hover .submenu,
.has-sub:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu a {
  display: block;
  padding: 9px 20px;
  white-space: nowrap;
}
.submenu a:hover { background: var(--pink-50); }
.header-nav a.cta {
  margin: 6px 0;
  padding: 8px 18px;
  color: #fff;
  background: var(--pink-500);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(239, 111, 146, .24);
}
.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle__bar {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: var(--rose-800);
  border-radius: 2px;
  transition: transform .2s var(--ease), opacity .2s var(--ease), top .2s var(--ease);
}
.nav-toggle__bar:nth-child(1) { top: 14px; }
.nav-toggle__bar:nth-child(2) { top: 21px; }
.nav-toggle__bar:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  background: var(--pink-30);
}
.home-hero {
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(244, 216, 223, .72);
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, .28) 0%, rgba(255, 253, 249, .08) 42%, rgba(255, 253, 249, 0) 70%),
    linear-gradient(180deg, rgba(255, 253, 249, 0) 72%, var(--pink-30) 100%);
  pointer-events: none;
}
.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 24px 92px;
}
.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--pink-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}
.hero-identity { margin-bottom: 22px; }
.brand-line {
  margin: 0 0 10px;
  color: var(--rose-800);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 900;
  letter-spacing: .03em;
  text-shadow: 0 2px 14px rgba(255, 255, 255, .85);
}
.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--pink-300);
  border-radius: 999px;
  color: var(--rose-800);
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 900;
  letter-spacing: .04em;
  box-shadow: 0 6px 16px rgba(199, 102, 128, .14);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.area-pill .area-pin {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pink-500);
  color: #fff;
  font-size: 9px;
  flex-shrink: 0;
}
.hero h1 {
  margin: 0 0 18px;
  max-width: 640px;
  color: var(--rose-800);
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.42;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(255, 255, 255, .86);
}
.hero .sub {
  max-width: 580px;
  margin-bottom: 20px;
  color: #6c555c;
  font-size: 15px;
  font-weight: 700;
  text-shadow: 0 1px 16px rgba(255, 255, 255, .9);
}
.hero-actions,
.cta-actions,
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.actions { justify-content: center; margin-top: 34px; }
.btn,
.btn-outline-white,
.btn-line,
.btn-tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 28px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 900;
  line-height: 1.25;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.btn {
  color: #fff;
  background: linear-gradient(180deg, #f783a0, var(--pink-600));
  box-shadow: 0 12px 24px rgba(239, 111, 146, .25);
}
.btn::before { content: none; }
.btn.outline {
  color: var(--pink-600);
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--pink-200);
  box-shadow: 0 10px 20px rgba(199, 102, 128, .10);
}
.btn.outline::before { content: none; }
.btn-line {
  color: #fff;
  text-decoration: none;
  background: #06c755;
  box-shadow: 0 12px 24px rgba(6, 199, 85, .22);
}
.btn-line::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-right: 10px;
  background: url("../assets/img/line-icon.svg") center / contain no-repeat;
}
.btn:hover,
.btn-tel:hover,
.btn-line:hover,
.btn-outline-white:hover {
  transform: translateY(-2px);
}

.hero-actions { padding-left: clamp(0px, 12vw, 180px); }

.cta-cloud {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 38px 60px;
  isolation: isolate;
  animation: cta-cloud-breath 4.6s ease-in-out infinite;
}
.cta-cloud .btn {
  position: relative;
  z-index: 1;
  padding: 18px 46px;
  min-height: 62px;
  font-size: 18px;
  letter-spacing: .08em;
}
.cta-cloud .btn::before { content: none; }
.cta-cloud__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 380px;
  height: 190px;
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: drop-shadow(0 12px 28px rgba(239, 111, 146, .20));
  pointer-events: none;
  animation: cta-cloud-float 5s ease-in-out infinite;
  border-radius: 50%;
  background:
    radial-gradient(circle at 25% 36%, rgba(255,255,255,.98) 0 42px, transparent 43px),
    radial-gradient(circle at 50% 26%, rgba(255,255,255,.98) 0 54px, transparent 55px),
    radial-gradient(circle at 75% 36%, rgba(255,255,255,.98) 0 42px, transparent 43px),
    radial-gradient(circle at 13% 58%, rgba(255,255,255,.98) 0 31px, transparent 32px),
    radial-gradient(circle at 87% 58%, rgba(255,255,255,.98) 0 31px, transparent 32px),
    radial-gradient(ellipse at 50% 58%, rgba(255,255,255,.98) 0 142px, transparent 143px),
    radial-gradient(ellipse at 50% 62%, rgba(255, 214, 224, .72) 0 164px, transparent 165px);
}
.cta-cloud__petal {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 0;
  pointer-events: none;
  border-radius: 72% 20% 72% 20%;
  background: #ffb3c5;
  filter: drop-shadow(0 1px 2px rgba(199, 102, 128, .18));
  will-change: transform, opacity;
}
.cta-cloud__petal--1 {
  top: 4px;
  left: 14%;
  animation: cta-petal-drift-1 9s ease-in-out infinite;
}
.cta-cloud__petal--2 {
  top: 12%;
  right: 10%;
  background: #ffc8d5;
  animation: cta-petal-drift-2 11s ease-in-out infinite -3.5s;
}
@keyframes cta-cloud-breath {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.025); }
}
@keyframes cta-cloud-float {
  0%, 100% { transform: translate(-50%, -50%); }
  50%      { transform: translate(-50%, calc(-50% - 6px)); }
}
@keyframes cta-petal-drift-1 {
  0%   { transform: translate(-4px, -8px) rotate(0deg);    opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translate(30px, 70px)  rotate(160deg);  opacity: 0; }
}
@keyframes cta-petal-drift-2 {
  0%   { transform: translate(4px, -6px)   rotate(0deg);    opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translate(-26px, 80px) rotate(-180deg); opacity: 0; }
}
@media (max-width: 480px) {
  .cta-cloud { padding: 28px 36px; }
  .cta-cloud__bg { width: 300px; height: 150px; }
  .cta-cloud .btn { padding: 14px 34px; min-height: 54px; font-size: 16px; }
  .cta-cloud__petal { width: 18px; height: 18px; }
  .hero-actions { padding-left: clamp(0px, 6vw, 60px); }
}
@media (prefers-reduced-motion: reduce) {
  .cta-cloud,
  .cta-cloud__bg { animation: none; }
  .cta-cloud__petal { display: none; }
}

main { background: linear-gradient(180deg, #fff 0%, var(--ivory) 100%); }
section { margin: 0; }
h2 {
  margin: 0 0 20px;
  color: var(--rose-800);
  font-size: clamp(21px, 3vw, 38px);
  line-height: 1.55;
  font-weight: 900;
  letter-spacing: 0;
}
h3 {
  margin: 0 0 10px;
  color: var(--rose-800);
  font-size: 20px;
  line-height: 1.5;
}

/* Home intro: 左=できること / 右=お知らせ＋About のスプリット */
.home-intro {
  padding: 64px 0 60px;
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .72fr);
  gap: 34px;
  align-items: stretch;
}
.intro-main {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  padding: 42px 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,250,251,.9));
  box-shadow: var(--shadow-light);
}
.intro-main > h2,
.intro-main > p,
.intro-main > .check-list,
.intro-main > .btn {
  position: relative;
  z-index: 2;
}
.intro-main h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  margin-bottom: 14px;
  max-width: 600px;
}
.intro-main > p {
  margin-bottom: 26px;
  color: var(--text);
  font-size: 15px;
  max-width: 610px;
}
.care-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}
.care-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.care-item:hover {
  transform: translateY(-3px);
  border-color: var(--pink-300);
}
.care-num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pink-100);
  color: var(--pink-600);
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}
.care-item h3 {
  margin: 0 0 6px;
  font-size: 17px;
  color: var(--rose-800);
}
.care-item p {
  margin: 0;
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.75;
}

/* 右サイド */
.intro-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.side-box {
  padding: 28px 30px;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-light);
}
.side-box .section-kicker {
  margin-bottom: 6px;
}
.side-box h3 {
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--pink-200);
  font-size: 17px;
  color: var(--rose-800);
  line-height: 1.45;
}
.side-news {
  list-style: none;
  padding: 0;
  margin: 0;
}
.side-news li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.side-news li:last-child { border-bottom: 0; padding-bottom: 0; }
.side-news li:first-child { padding-top: 0; }
.side-news .date {
  display: block;
  color: var(--pink-600);
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 2px;
  letter-spacing: .04em;
}
.side-news li > span:not(.date) {
  font-size: 13px;
  color: var(--text);
}
.about-box p {
  font-size: 13px;
  color: var(--text-sub);
  margin: 0 0 12px;
  line-height: 1.75;
}

/* ご利用案内の背景装飾イラスト */
.intro-decor-art {
  position: absolute;
  right: -34px;
  bottom: -38px;
  z-index: 1;
  width: min(46%, 360px);
  opacity: .58;
  pointer-events: none;
}
.intro-decor-art::before {
  content: "";
  position: absolute;
  inset: -18px;
  background: radial-gradient(circle, rgba(255,255,255,.64) 0%, rgba(255,255,255,0) 68%);
}
.intro-decor-art img {
  position: relative;
  width: 100%;
  display: block;
  filter: saturate(.94);
}

/* intro-main 内の check-list 微調整 */
.intro-main .check-list {
  margin-top: 22px;
  margin-bottom: 28px;
}
.intro-main h2 {
  line-height: 1.5;
}

/* About 牡丹 セクション（旧 promises の位置） */
.home-about-block {
  padding: 70px 24px 64px;
  background: linear-gradient(180deg, #fff, var(--pink-30));
}
.about-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.about-inner h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  margin-bottom: 24px;
  line-height: 1.45;
}
.about-body {
  text-align: left;
  margin-bottom: 28px;
}
.about-body p {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.95;
}
.about-body p:last-child { margin-bottom: 0; }
.about-emphasis {
  color: var(--rose-800);
  font-weight: 700;
}

/* ============================================
   ご利用案内ページ（カード控えめ・タイポ主体）
   ============================================ */
.guide-page { max-width: 1000px; }
.guide-page section { margin-bottom: 64px; }
.guide-page section:last-child { margin-bottom: 0; }
.guide-page h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--pink-200);
  color: var(--rose-800);
}
.guide-page .lead-text {
  color: var(--text-sub);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
}

.guide-overview {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: grid;
  align-items: center;
  padding: 46px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.96) 56%, rgba(255,250,251,.50) 100%);
}
.guide-overview-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.guide-overview-copy h2 {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 16px;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.5;
}
.guide-overview-copy p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.95;
}
.guide-overview-art {
  position: absolute;
  right: -58px;
  bottom: -46px;
  width: min(44%, 430px);
  margin: 0;
  opacity: .42;
  pointer-events: none;
}
.guide-overview-art::before {
  content: "";
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(255,255,255,.70) 0%, rgba(255,255,255,0) 68%);
}
.guide-overview-art img {
  position: relative;
  width: 100%;
  max-height: 330px;
  object-fit: cover;
  object-position: center;
  filter: saturate(.95);
  -webkit-mask-image: radial-gradient(ellipse at 62% 58%, #000 0%, #000 50%, rgba(0,0,0,.75) 62%, transparent 78%);
          mask-image: radial-gradient(ellipse at 62% 58%, #000 0%, #000 50%, rgba(0,0,0,.75) 62%, transparent 78%);
}
.guide-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 26px;
  max-width: 590px;
  padding-top: 20px;
  border-top: 1px solid var(--pink-100);
}
.guide-quick-links a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 36px;
  padding: 6px 15px;
  border: 1px solid var(--pink-200);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: var(--rose-800);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 5px 14px rgba(199, 102, 128, .08);
}
.guide-quick-links a:hover {
  color: var(--pink-600);
  border-color: var(--pink-300);
}

.recommend-intro {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  display: grid;
  align-items: center;
  padding: 54px 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.96) 46%, rgba(255,250,251,.62) 100%);
}
.recommend-intro-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.recommend-intro-copy h2 {
  margin-bottom: 14px;
  padding-bottom: 0;
  border-bottom: 0;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.55;
}
.recommend-intro-copy .lead {
  color: var(--rose-800);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 900;
  line-height: 1.65;
}
.recommend-intro-copy p {
  font-size: 15px;
  line-height: 1.95;
}
.recommend-cues {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 18px;
  margin: 26px 0 0;
  padding: 18px 0 0;
  list-style: none;
  border-top: 1px solid var(--pink-100);
}
.recommend-cues li {
  color: var(--rose-800);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.6;
}
.recommend-cues li::before {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin-bottom: 8px;
  background: var(--pink-300);
}
.recommend-intro-art {
  position: absolute;
  right: -72px;
  bottom: -54px;
  width: min(58%, 620px);
  margin: 0;
  opacity: .78;
  pointer-events: none;
}
.recommend-intro-art::before {
  content: "";
  position: absolute;
  inset: -36px;
  background: radial-gradient(circle, rgba(255,255,255,.76) 0%, rgba(255,255,255,0) 70%);
}
.recommend-intro-art img {
  position: relative;
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: radial-gradient(ellipse at 58% 56%, #000 0%, #000 54%, rgba(0,0,0,.72) 65%, transparent 82%);
          mask-image: radial-gradient(ellipse at 58% 56%, #000 0%, #000 54%, rgba(0,0,0,.72) 65%, transparent 82%);
}

/* リード文 */
.guide-lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px !important;
}
.guide-lead p {
  font-size: 15px;
  line-height: 1.95;
}

/* 3つの安心ポイント — カードなし、横線区切り */
.guide-points dl {
  margin: 0;
  padding: 0;
}
.guide-points .point {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(0, 2fr);
  gap: 20px 36px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--pink-100);
}
.guide-points .point:last-child { border-bottom: 0; }
.guide-points .point:first-child { padding-top: 0; }
.guide-points dt {
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--rose-800);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 900;
  line-height: 1.4;
  margin: 0;
}
.guide-points .point-title {
  flex: 1;
  min-width: 0;
}
.guide-points dt strong {
  color: var(--pink-600);
  font-size: 1.25em;
  white-space: nowrap;
}
.guide-points .point-no {
  flex-shrink: 0;
  font-family: 'Georgia', serif;
  font-size: 32px;
  color: var(--pink-300);
  letter-spacing: 0;
  line-height: 1;
}
.guide-points dd {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.85;
}

/* 流れ — タイムライン */
.guide-flow-line .timeline {
  list-style: none;
  padding: 24px 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  position: relative;
}
.guide-flow-line .timeline::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: var(--pink-200);
  z-index: 0;
}
.guide-flow-line .timeline li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 4px;
}
.guide-flow-line .timeline .dot {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--pink-300);
  color: var(--pink-600);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}
.guide-flow-line .timeline strong {
  font-size: 13px;
  color: var(--rose-800);
  line-height: 1.4;
  margin-bottom: 4px;
}
.guide-flow-line .timeline .tl-note {
  font-size: 11.5px;
  color: var(--text-sub);
  line-height: 1.5;
}

/* 項目別 — dl 形式（テキスト＋リンク主体） */
.toc-list { margin: 0; }
.toc-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr);
  gap: 16px 28px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--pink-100);
}
.toc-row:last-child { border-bottom: 0; }
.toc-row dt {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
}
.toc-row dt a {
  color: var(--rose-800);
  border-bottom: 1px solid var(--pink-200);
  padding-bottom: 2px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.toc-row dt a::after {
  content: " >";
  color: var(--pink-500);
  font-size: 13px;
}
.toc-row dt a:hover {
  color: var(--pink-600);
  border-bottom-color: var(--pink-500);
}
.toc-row dd {
  margin: 0;
  color: var(--text-sub);
  font-size: 13.5px;
  line-height: 1.85;
}

/* FAQ — dl 形式（カードなし） */
.faq-dl { margin: 0; padding: 0; }
.faq-dl dt {
  margin-top: 22px;
  padding: 0;
  color: var(--rose-800);
  font-size: 15.5px;
  font-weight: 900;
}
.faq-dl dt:first-child { margin-top: 0; }
.faq-dl dt::before {
  content: "Q. ";
  color: var(--pink-500);
  margin-right: 2px;
}
.faq-dl dd {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.9;
}
.faq-dl dd::before {
  content: "A. ";
  color: var(--pink-400);
  font-weight: 900;
  margin-right: 2px;
}

@media (max-width: 800px) {
  .recommend-intro {
    min-height: 0;
    padding: 38px 28px 190px;
  }
  .recommend-intro-copy { max-width: none; }
  .recommend-cues {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .recommend-cues li {
    display: flex;
    gap: 10px;
    align-items: baseline;
  }
  .recommend-cues li::before {
    flex: 0 0 auto;
    margin: 0;
  }
  .recommend-intro-art {
    width: min(96%, 470px);
    right: -118px;
    bottom: -116px;
    opacity: .46;
  }
  .guide-overview {
    min-height: 0;
    padding: 34px 0 210px;
  }
  .guide-overview-copy { max-width: none; }
  .guide-overview-art {
    width: min(78%, 390px);
    right: -86px;
    bottom: -84px;
    opacity: .32;
  }
  .guide-points .point,
  .toc-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .guide-flow-line .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 8px;
  }
  .guide-flow-line .timeline::before { display: none; }
}
@media (max-width: 480px) {
  .recommend-intro {
    padding: 32px 24px 170px;
  }
  .recommend-intro-copy h2 {
    font-size: 23px;
    line-break: anywhere;
  }
  .recommend-intro-copy .lead {
    font-size: 18px;
  }
  .recommend-intro-copy p {
    word-break: break-all;
    line-break: anywhere;
  }
  .recommend-intro-art {
    width: 122%;
    right: -170px;
    bottom: -118px;
  }
  .guide-overview {
    padding: 30px 0 190px;
  }
  .guide-overview-copy h2 {
    font-size: 23px;
    line-break: anywhere;
    word-break: break-all;
  }
  .guide-quick-links {
    gap: 7px;
  }
  .guide-quick-links a {
    min-height: 34px;
    padding: 5px 12px;
    font-size: 12px;
  }
  .guide-overview-art {
    width: 112%;
    right: -160px;
    bottom: -112px;
  }
  .guide-flow-line .timeline { grid-template-columns: 1fr; }
}

.home-about {
  max-width: 760px;
  margin: 0 auto;
  padding: 68px 24px 60px;
  text-align: center;
}
.home-about h2 { font-size: clamp(22px, 2.6vw, 30px); }
.home-about p:not(.section-kicker) {
  color: var(--text);
  font-size: 15px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  color: var(--pink-600);
  font-size: 15px;
  font-weight: 900;
  border-bottom: 1px solid var(--pink-200);
}
.text-link::after { content: ">"; }
.text-link-wrap {
  text-align: center;
  margin-top: 30px;
}

.home-promises {
  padding: 64px 24px;
  background: var(--pink-30);
  border-top: 1px solid var(--line);
}
.home-promises .inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.home-promises h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  margin-bottom: 28px;
}
.promise-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: left;
}
.promise-card {
  padding: 26px 22px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
}
.promise-num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--pink-100);
  color: var(--pink-600);
  font-size: 12px;
  font-weight: 900;
}
.promise-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--rose-800);
  font-size: 17px;
  line-height: 1.5;
}
.promise-card p {
  margin: 0;
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.75;
}

.service-overview {
  max-width: 1080px;
  margin: 0 auto 64px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: stretch;
  min-height: 340px;
}
.overview-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 36px 32px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.overview-copy h2 {
  font-size: clamp(20px, 2.1vw, 26px);
}
.overview-art {
  margin-left: -60px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.overview-art img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}
.check-list {
  padding: 0;
  margin: 14px 0 20px;
  list-style: none;
}
.check-list li {
  position: relative;
  padding: 6px 0 6px 24px;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink-500);
  box-shadow: inset 0 0 0 2.5px #fff;
}

.home-worries {
  padding: 64px 24px;
  background:
    linear-gradient(rgba(255, 250, 251, .88), rgba(255, 250, 251, .88)),
    url("../assets/img/hero-mother-baby-nurse-watercolor.webp") center/cover fixed;
}
.home-worries .inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 38px;
  align-items: center;
}
.home-worries h2 { font-size: clamp(21px, 2.4vw, 28px); }
.worries-copy p:last-child {
  color: var(--text-sub);
  font-weight: 700;
  font-size: 14px;
}
.worries-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.worries-list li {
  position: relative;
  padding: 11px 14px 11px 34px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(199, 102, 128, .08);
}
.worries-list li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 19px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink-500);
}

.home-flow {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 24px;
  text-align: center;
}
.home-flow h2 { font-size: clamp(22px, 2.6vw, 30px); }
.flow-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.flow-step {
  position: relative;
  min-height: 150px;
  padding: 22px 20px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
}
.flow-step span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--pink-600);
  font-size: 12px;
  font-weight: 900;
}
.flow-step strong {
  display: block;
  margin-bottom: 6px;
  color: var(--rose-800);
  font-size: 17px;
}
.flow-step p {
  margin: 0;
  color: var(--text-sub);
  font-size: 13px;
}

.home-price-area {
  max-width: 1080px;
  margin: 0 auto 64px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.price-note,
.area-note {
  padding: 30px 30px;
  background: linear-gradient(180deg, #fff, var(--pink-30));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
}
.price-note h2,
.area-note h2 {
  font-size: clamp(20px, 2.1vw, 26px);
}
.price-note p,
.area-note p {
  color: var(--text-sub);
  font-weight: 700;
  font-size: 14px;
}
.price-note .price-lead {
  margin: 0 0 4px;
  color: var(--text-sub);
  font-weight: 700;
  font-size: 13px;
}
.price-note .price-amount {
  margin: 0 0 14px;
  color: var(--rose-800);
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 900;
  line-height: 1.3;
}
.price-note .price-amount strong {
  display: inline-block;
  margin-left: 8px;
  color: var(--pink-600);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  letter-spacing: -0.01em;
}
.area-note .area-lead {
  margin: 0 0 4px;
  color: var(--text-sub);
  font-weight: 700;
  font-size: 13px;
}
.area-note .area-distance {
  margin: 0 0 14px;
  color: var(--rose-800);
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 900;
  line-height: 1.3;
}
.area-note .area-distance strong {
  display: inline-block;
  margin-left: 6px;
  color: var(--pink-600);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  letter-spacing: -0.01em;
}
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}
.area-pills li {
  padding: 5px 13px;
  background: var(--pink-100);
  color: var(--pink-700);
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  list-style: none;
}

.home-himeji {
  padding: 40px 24px 56px;
  text-align: center;
}
.home-himeji .himeji-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 34px 30px;
  background: linear-gradient(180deg, #fff, var(--pink-30));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
}
.home-himeji .himeji-lead {
  margin: 0 0 6px;
  font-size: clamp(16px, 1.9vw, 20px);
  font-weight: 900;
  color: var(--rose-800);
}
.home-himeji .himeji-lead strong { color: var(--pink-600); }
.home-himeji .himeji-sub {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-sub);
}

.home-news {
  padding: 56px 24px 64px;
  background: var(--pink-50);
  border-top: 1px solid var(--line);
}
.home-news .inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.home-news h2 { font-size: clamp(20px, 2.1vw, 26px); }
.home-news ul {
  margin: 22px 0 0;
  padding: 6px 26px;
  list-style: none;
  text-align: left;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.home-news li {
  display: flex;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.home-news li:last-child { border-bottom: 0; }
.home-news .date {
  min-width: 90px;
  color: var(--pink-600);
  font-weight: 900;
  font-size: 13px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 24px 86px;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(255, 250, 251, .9), rgba(255, 244, 247, .82)),
    url("../assets/img/service-baby-items-watercolor.webp") center/cover;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  margin: 0 0 8px;
  color: var(--rose-800);
  font-size: clamp(30px, 4vw, 44px);
}
.page-hero h1::before {
  content: none;
}
.page-hero .crumb {
  margin: 0;
  color: var(--text-sub);
  font-size: 12px;
  font-weight: 900;
}
main > .container {
  padding-top: 72px;
  padding-bottom: 88px;
}
main > .container section { margin-bottom: 68px; }
main > .container section:last-child { margin-bottom: 0; }
.section-title {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}
.section-title h2 {
  padding: 0;
  border: 0;
}
.section-title h2::before,
.section-title h2::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin: 0 14px 8px;
  background: var(--pink-200);
}
.section-title p { color: var(--text-sub); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.cards-2col { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card,
.faq-item,
.notice,
.message-block,
dl.info-table,
form.contact-form,
.placeholder-img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.card {
  padding: 26px;
  background: #fff;
  box-shadow: var(--shadow-light);
}
.card-soft { background: var(--pink-30); }
.card .icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--pink-100);
  color: var(--pink-600);
  font-size: 21px;
}
.placeholder-img {
  padding: 48px 24px;
  margin: 24px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--pink-30), #fff);
  color: var(--text-sub);
  border-style: dashed;
  font-weight: 700;
}
.placeholder-img.small { padding: 28px 18px; }

.sub-lead {
  max-width: 760px;
  margin: 0 auto 34px;
  color: var(--text-sub);
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}
.image-split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
}
.image-split > *,
.price-hero-note > * {
  min-width: 0;
}
.image-split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}
.image-split.reverse .watercolor-panel { order: 2; }
.watercolor-panel {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--pink-30);
  box-shadow: var(--shadow-light);
}
.watercolor-panel img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}
.watercolor-panel.soft img { opacity: .94; }
.text-panel {
  position: relative;
  padding: 28px 0;
}
.text-panel h2 {
  font-size: clamp(22px, 2.5vw, 30px);
}
.text-panel .lead {
  color: var(--rose-800);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  line-height: 1.65;
  overflow-wrap: anywhere;
}
.lined-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--pink-100);
}
.lined-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--pink-100);
}
.lined-list strong {
  display: block;
  color: var(--rose-800);
  font-size: 16px;
}
.lined-list span,
.lined-list p {
  display: block;
  margin: 4px 0 0;
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.85;
}
.lined-list.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 32px;
  border-top: 0;
}
.lined-list.two-col li {
  border-top: 1px solid var(--pink-100);
}
.lined-list + h3 {
  margin-top: 40px;
}
.service-menu-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0 12px;
  font-size: 22px;
}
.service-menu-heading > span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}
.lined-list + .service-menu-heading {
  margin-top: 42px;
}
.service-menu-icon {
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  padding: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 30px rgba(189, 117, 132, .16);
}
.service-menu-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.quiet-box {
  padding: 30px 32px;
  border-left: 5px solid var(--pink-300);
  background: linear-gradient(90deg, var(--pink-30), rgba(255,255,255,.72));
  border-radius: var(--radius);
}
.quiet-box p:last-child { margin-bottom: 0; }
.statement {
  padding: 42px 34px;
  text-align: center;
  background: linear-gradient(180deg, #fff, var(--pink-30));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.statement .lead {
  color: var(--rose-800);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
}
.profile-sign {
  text-align: right;
  color: var(--text-sub);
  font-weight: 700;
}
@media (max-width: 640px) {
  .profile-sign {
    font-size: 13px;
    letter-spacing: -0.01em;
  }
}
.price-hero-note {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
}
.price-large {
  padding: 38px 28px;
  color: var(--rose-800);
  text-align: center;
  background: linear-gradient(180deg, #fff, var(--pink-30));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
}
.price-large span {
  display: block;
  color: var(--text-sub);
  font-weight: 900;
}
.price-large strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--pink-600);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.15;
}
.contact-methods-clean {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--pink-100);
  border-bottom: 1px solid var(--pink-100);
}
.contact-methods-clean > div {
  padding: 24px 26px;
  border-right: 1px solid var(--pink-100);
}
.contact-methods-clean > div:last-child { border-right: 0; }
.contact-methods-clean h3 {
  color: var(--rose-800);
}
.contact-methods-clean .phone-num {
  color: var(--pink-600);
  font-size: 22px;
  font-weight: 900;
}
.map-figure img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}
.map-note {
  margin-top: 12px;
  color: var(--text-sub);
  font-size: 12px;
  text-align: center;
}
.policy-body {
  max-width: 860px;
  margin: 0 auto;
}
.policy-body section {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--pink-100);
}
.policy-body section:last-child { border-bottom: 0; }
.policy-body h2 {
  font-size: clamp(20px, 2vw, 25px);
}
.message-block {
  padding: 42px 34px;
  text-align: center;
  background: linear-gradient(180deg, #fff, var(--pink-30));
}
.message-block .lead {
  color: var(--rose-800);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
}
.callout {
  padding: 36px 30px;
  color: #fff;
  text-align: center;
  background: linear-gradient(180deg, #f783a0, var(--pink-600));
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.callout .big {
  display: block;
  margin: 8px 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
}
.callout-soft {
  color: var(--text);
  background: var(--pink-30);
  border: 1px solid var(--line);
}
.callout-soft .big { color: var(--pink-600); }
.notice {
  padding: 18px 22px;
  color: #66501b;
  background: #fff8df;
  border-left: 5px solid #e8b94c;
}
.steps {
  display: grid;
  gap: 14px;
}
.step {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
}
.step .num {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--pink-500);
  font-weight: 900;
}
.flow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 900px;
  margin-inline: auto;
}
.flow-steps > .flow-step {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  gap: 34px;
  min-height: 0;
  padding: 36px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--pink-100);
  border-radius: 0;
  box-shadow: none;
  align-items: center;
}
.flow-steps > .flow-step:first-child { padding-top: 6px; }
.flow-steps > .flow-step:last-child { border-bottom: 0; padding-bottom: 8px; }
.flow-step-visual {
  position: relative;
  width: 148px;
  height: 148px;
  padding: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 44px rgba(189, 117, 132, .18);
}
.flow-step-visual img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.flow-steps .flow-step-body {
  min-width: 0;
}
.flow-steps .flow-step-num {
  position: absolute;
  left: -10px;
  top: 6px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  background: var(--pink-500);
  border: 4px solid #fff;
  box-shadow: 0 10px 24px rgba(189, 117, 132, .24);
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}
.flow-steps .flow-step-body h3 {
  margin: 0 0 10px;
  color: var(--rose-800);
  font-size: 22px;
  line-height: 1.5;
}
.flow-steps .flow-step-body p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.95;
  overflow-wrap: anywhere;
}
.flow-note {
  margin: 48px auto 0;
  max-width: 640px;
  padding-top: 28px;
  border-top: 1px solid var(--pink-200);
  text-align: center;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-sub);
}
.flow-note strong { color: var(--rose-800); }
.map-embed {
  margin: 24px 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}
@media (max-width: 600px) {
  .flow-steps > .flow-step {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
    padding: 34px 0;
    text-align: center;
  }
  .flow-step-visual {
    width: 132px;
    height: 132px;
  }
  .flow-steps .flow-step-num {
    left: -8px;
    top: 4px;
    width: 48px;
    height: 48px;
    font-size: 15px;
  }
  .flow-steps .flow-step-body h3 { font-size: 18px; }
  .flow-steps .flow-step-body p {
    text-align: left;
  }
}
dl.info-table {
  padding: 24px 30px;
  background: #fff;
  box-shadow: var(--shadow-light);
}
dl.info-table dt {
  padding-top: 13px;
  color: var(--pink-600);
  font-weight: 900;
  border-top: 1px solid var(--line);
}
dl.info-table dt:first-of-type { border-top: 0; padding-top: 0; }
dl.info-table dd { margin: 4px 0 13px; }
.emp-type-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 40px 0 14px;
  color: var(--rose-800);
  font-size: 21px;
  font-weight: 900;
}
.emp-type-heading::before {
  content: "";
  width: 8px;
  height: 26px;
  border-radius: 4px;
  background: linear-gradient(180deg, #f783a0, var(--pink-600));
}
.section-title + .emp-type-heading { margin-top: 10px; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  padding: 22px 24px;
  background: #fff;
  box-shadow: var(--shadow-light);
}
.faq-item .q {
  margin: 0 0 10px;
  color: var(--rose-800);
  font-weight: 900;
}
.faq-item .q::before {
  content: "Q";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  border-radius: 50%;
  color: #fff;
  background: var(--pink-500);
}
.faq-item .a { margin: 0; color: var(--text-sub); }
.news-list {
  padding: 8px 28px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.news-list li {
  display: flex;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px dashed var(--line);
}
.news-list li:last-child { border-bottom: 0; }
.news-list .date { min-width: 96px; color: var(--pink-600); font-weight: 900; }
form.contact-form {
  padding: 34px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
form .row { margin-bottom: 22px; }
form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}
form .req {
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--pink-500);
  font-size: 10px;
}
form input,
form textarea,
form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--pink-30);
  color: var(--text);
  font: inherit;
}
form textarea { min-height: 150px; resize: vertical; }
form input:focus,
form textarea:focus,
form select:focus {
  outline: 0;
  border-color: var(--pink-500);
  box-shadow: 0 0 0 4px rgba(239, 111, 146, .12);
  background: #fff;
}
form .check {
  display: flex;
  gap: 9px;
  align-items: center;
}
form .check input { width: auto; }
form button[type="submit"] {
  min-height: 50px;
  padding: 12px 34px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--pink-500);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.pre-footer-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 62px 24px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(122, 54, 71, .72) 0%, rgba(220, 84, 124, .66) 48%, rgba(220, 84, 124, .48) 100%),
    url("../assets/img/cta-watercolor-bg.webp") center/cover;
  border-top: 1px solid rgba(244, 216, 223, .72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28);
}
.pre-footer-cta .section-kicker { color: #fff; }
.pre-footer-cta h2 {
  max-width: 760px;
  margin: 0 auto 26px;
  color: #fff;
  font-size: clamp(22px, 3vw, 32px);
  text-shadow: 0 2px 18px rgba(86, 38, 50, .34);
}
.cta-actions { justify-content: center; }
.btn-tel {
  flex-direction: column;
  min-width: 250px;
  color: var(--pink-600);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-tel::before { content: "TEL"; font-size: 11px; letter-spacing: .08em; }
.btn-tel small {
  margin-top: 3px;
  color: var(--text-sub);
  font-size: 11px;
}
.btn-outline-white {
  color: #fff;
  border: 1px solid rgba(255,255,255,.9);
  background: rgba(255,255,255,.16);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.site-footer {
  padding: 58px 0 22px;
  color: #fff;
  background: #5b3942;
}
.site-footer .inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 34px;
}
.site-footer h4 {
  margin: 0 0 14px;
  color: #ffd5de;
}
.site-footer p,
.site-footer li {
  margin: 0 0 7px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  list-style: none;
}
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer a:hover { color: #ffd5de; }
.site-footer .logo-block strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
}
/* .site-footer .logo-block strong::before は先方ロゴ完成まで非表示 */
.copy {
  margin: 38px 24px 0;
  padding-top: 18px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.62);
  font-size: 12px;
}

@media (max-width: 980px) {
  .header-top { padding: 12px 18px 8px; }
  .nav-toggle { display: block; }
  .header-substation { font-size: 13px; padding: 7px 14px; margin-right: 4px; }
  .header-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(255, 253, 249, 0.98);
    -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 38px rgba(199, 102, 128, .12);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  .header-nav[data-open="true"] {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .header-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 24px;
    width: auto;
    max-width: none;
    overflow-x: visible;
    white-space: normal;
  }
  .header-nav li { width: 100%; }
  .header-nav a {
    display: block;
    padding: 14px 8px;
    font-size: 15px;
    border-bottom: 1px solid var(--pink-100);
  }
  .header-nav .has-sub > a::after { float: right; }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: var(--pink-30);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s var(--ease);
  }
  .has-sub[data-sub-open="true"] .submenu { max-height: 500px; }
  .submenu a { padding-left: 28px; font-size: 14px; }
  .header-nav a.cta {
    margin: 14px 8px 0;
    text-align: center;
    border-radius: 999px;
    padding: 14px 18px;
    border-bottom: 0;
  }
  .intro-art-bg .watercolor-panel { display: none; }
  .intro-art-bg .text-panel {
    position: relative;
    padding: 28px 16px;
    background:
      linear-gradient(rgba(255, 253, 249, 0.72), rgba(255, 253, 249, 0.72)),
      var(--intro-bg, none) center/cover no-repeat;
    border-radius: var(--radius);
  }
  .hero { min-height: 590px; }
  .hero-copy { padding: 62px 20px 112px; }
  .hero h1 { max-width: 520px; }
  .hero .sub { max-width: 470px; }
  .home-service-strip,
  .flow-row,
  .home-price-area,
  .promise-cards,
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .home-intro { padding: 50px 0; }
  .intro-grid { gap: 24px; }
  .service-overview {
    grid-template-columns: 1fr;
    margin-bottom: 66px;
  }
  .image-split,
  .image-split.reverse,
  .price-hero-note {
    grid-template-columns: 1fr;
  }
  .image-split .text-panel { order: 1; }
  .image-split .watercolor-panel,
  .image-split.reverse .watercolor-panel { order: 2; }
  .contact-methods-clean { grid-template-columns: 1fr; }
  .contact-methods-clean > div {
    border-right: 0;
    border-bottom: 1px solid var(--pink-100);
  }
  .contact-methods-clean > div:last-child { border-bottom: 0; }
  .overview-art { margin-left: 0; margin-top: 14px; }
  .overview-art img { min-height: 300px; }
  .home-worries .inner { grid-template-columns: 1fr; }
  .site-footer .inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { line-height: 1.78; }
  .header-top {
    align-items: center;
    gap: 12px;
  }
  .header-top { flex-wrap: wrap; }
  .header-tel { display: none; }
  .logo { order: 1; }
  .nav-toggle { order: 2; }
  .header-substation { order: 3; flex: 0 0 100%; text-align: center; margin: 8px 0 0; font-size: 12px; padding: 7px 14px; }
  .logo .logo-mark { height: 48px; }
  .logo .logo-name { height: 27px; }
  .section-title h2::before,
  .section-title h2::after {
    width: 16px;
    margin: 0 8px 6px;
  }
  .hero {
    min-height: 0;
    background: var(--pink-30);
  }
  .home-hero::after {
    background:
      linear-gradient(180deg, rgba(255, 253, 249, .96) 0%, rgba(255, 253, 249, .9) 34%, rgba(255, 253, 249, .3) 52%, rgba(255, 253, 249, 0) 68%, var(--pink-30) 100%);
  }
  .hero-art {
    top: auto;
    bottom: 0;
    height: 330px;
  }
  .hero-art img {
    object-fit: cover;
    object-position: center 42%;
  }
  .hero-copy {
    align-self: start;
    padding: 20px 20px 300px;
  }
  .hero .brand-line { display: none; }
  .hero-identity { margin-bottom: 12px; }
  .hero h1 {
    font-size: 25px;
    line-height: 1.38;
    margin-bottom: 10px;
  }
  .hero .sub { margin-bottom: 10px; }
  .hero-actions {
    padding-left: 0;
    justify-content: center;
  }
  .cta-cloud { padding: 16px 36px; }
  .cta-cloud__bg {
    width: 270px;
    height: 118px;
  }
  .cta-cloud .btn {
    padding: 14px 38px;
    min-height: 54px;
    font-size: 17px;
  }
  .home-service-strip { margin-top: -42px; }
  .home-about { padding: 68px 22px; }
  .overview-copy { padding: 32px 24px; }
  .home-worries { padding: 66px 20px; background-attachment: scroll; }
  .worries-list { grid-template-columns: 1fr; }
  .home-flow,
  .home-news { padding: 62px 20px; }
  .home-news li,
  .news-list li { flex-direction: column; gap: 3px; }
  .intro-main {
    min-height: 0;
    padding: 30px 24px 34px;
  }
  .intro-main h2 { font-size: 23px; }
  .intro-decor-art {
    right: -46px;
    bottom: -32px;
    width: 58%;
    opacity: .32;
  }
  .side-box {
    padding: 24px;
  }
  main > .container { padding-top: 56px; padding-bottom: 70px; }
  main > .container section { margin-bottom: 52px; }
  .cards,
  .cards-2col { grid-template-columns: 1fr; }
  .lined-list.two-col { grid-template-columns: 1fr; }
  .service-menu-heading {
    gap: 12px;
    font-size: 19px;
  }
  .service-menu-icon {
    width: 58px;
    height: 58px;
  }
  .watercolor-panel img { min-height: 260px; }
  .text-panel { padding: 12px 0 0; }
  .text-panel .lead,
  .text-panel h2 {
    word-break: break-all;
    line-break: anywhere;
  }
  .quiet-box,
  .statement { padding: 28px 22px; }
  .step { flex-direction: column; }
  form.contact-form { padding: 24px 18px; }
  .site-footer .inner { grid-template-columns: 1fr; }
}

/* ============================================================
   モーション（js/motion.js と連動・prefers-reduced-motion 対応）
   ============================================================ */

/* スクロールフェードイン（.reveal は JS が付与するため、JS無効時は影響なし） */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity .75s var(--ease),
      transform .75s var(--ease);
    transition-delay: var(--reveal-delay, 0s);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* 桜の花びら（要素は JS が生成） */
.page-hero { position: relative; overflow: hidden; }
.petals {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.petal {
  position: absolute;
  top: 0;
  width: 16px;
  height: 14px;
  animation: petal-fall linear infinite;
}
.petal i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fcd9e2, #f5a7bc);
  border-radius: 100% 6% 100% 6%;
  opacity: .75;
  box-shadow: 0 0 6px rgba(246, 169, 189, .35);
  animation: petal-sway ease-in-out infinite alternate;
}
@keyframes petal-fall {
  from { transform: translate3d(0, -44px, 0); }
  to   { transform: translate3d(var(--drift, 40px), var(--fall, 560px), 0); }
}
@keyframes petal-sway {
  from { transform: rotate(-30deg) translateX(-6px); }
  to   { transform: rotate(46deg) translateX(8px); }
}
@media (prefers-reduced-motion: reduce) {
  .petals { display: none; }
}

/* ホバーの動き */
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .card,
  .promise-card,
  .price-note,
  .area-note,
  .toc-row,
  .step {
    transition: transform .28s var(--ease), box-shadow .28s var(--ease);
  }
  .card:hover,
  .promise-card:hover,
  .price-note:hover,
  .area-note:hover,
  .toc-row:hover,
  .step:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(199, 102, 128, .16);
  }
  .watercolor-panel img { transition: transform 1.4s var(--ease); }
  .watercolor-panel:hover img { transform: scale(1.035); }
  .btn:hover,
  .btn-tel:hover,
  .btn-line:hover,
  .btn-outline-white:hover {
    transform: translateY(-3px) scale(1.02);
  }
}

/* スクロールでヘッダーを縮める（.is-scrolled は JS が付与） */
.site-header { transition: box-shadow .3s var(--ease); }
.header-top { transition: padding .3s var(--ease); }
.logo .logo-mark,
.logo .logo-name { transition: height .3s var(--ease); }
.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(199, 102, 128, .14); }
.site-header.is-scrolled .header-top { padding-top: 6px; padding-bottom: 4px; }
.site-header.is-scrolled .logo .logo-mark { height: 50px; }
.site-header.is-scrolled .logo .logo-name { height: 30px; }

/* 採用ページ：お祝い金バナー（白基調・上品） */
.bonus-banner {
  max-width: 720px;
  margin: 0 auto;
  padding: 46px 32px 40px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--pink-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
}
.bonus-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
  color: var(--pink-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
}
.bonus-label::before,
.bonus-label::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--pink-300);
}
.bonus-amount {
  margin: 0;
  color: var(--rose-800);
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 900;
  letter-spacing: .04em;
}
.bonus-amount strong {
  display: inline-block;
  margin-left: 14px;
  color: var(--pink-600);
  font-size: clamp(44px, 5.4vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .02em;
}
.bonus-amount strong span {
  margin-left: 2px;
  font-size: .5em;
}
.bonus-note {
  margin: 14px 0 0;
  color: var(--text-sub);
  font-size: 13px;
}

/* 採用ページ：5つの安心（罫線リスト・箱なし） */
.assurance-list {
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 64px;
}
.assurance-list li {
  display: flex;
  gap: 20px;
  padding: 28px 4px;
  border-top: 1px solid var(--pink-100);
}
.assurance-list li:nth-child(-n+2) { border-top: 0; padding-top: 8px; }
.assurance-num {
  flex-shrink: 0;
  padding-top: 3px;
  color: var(--pink-300);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}
.assurance-list h3 {
  margin: 0 0 7px;
  padding: 0;
  border: 0;
  color: var(--rose-800);
  font-size: 17px;
}
.assurance-list p {
  margin: 0;
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.85;
}
@media (max-width: 700px) {
  .assurance-list { grid-template-columns: 1fr; gap: 0; }
  .assurance-list li:nth-child(2) { border-top: 1px solid var(--pink-100); padding-top: 28px; }
  .bonus-banner { padding: 36px 22px 32px; }
  .bonus-amount strong { display: block; margin: 6px 0 0; }
}

/* LINE・電話ボタンの視線誘導（数秒おきにぷるっと揺れる） */
@media (prefers-reduced-motion: no-preference) {
  .btn-line:not(:hover),
  .btn-tel:not(:hover) {
    animation: gentle-buzz 7s ease-in-out infinite;
  }
}
@keyframes gentle-buzz {
  0%, 84%, 100% { transform: rotate(0); }
  86% { transform: rotate(-2.4deg) scale(1.02); }
  88% { transform: rotate(2.2deg); }
  90% { transform: rotate(-1.8deg); }
  92% { transform: rotate(1.4deg) scale(1.01); }
  94% { transform: rotate(-.8deg); }
  96% { transform: rotate(0); }
}

/* ============================================
   モバイル固定CTAバー（js/nav.jsで全ページに注入）
   ============================================ */
.mobile-cta-bar { display: none; }
@media (max-width: 640px) {
  .mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 18px rgba(199, 102, 128, .14);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-cta-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-height: 58px;
    padding: 8px 4px;
    background: #fff;
    color: var(--pink-600);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none;
  }
  .mobile-cta-bar .bar-icon {
    width: 20px;
    height: 20px;
    display: block;
  }
  .mobile-cta-bar .bar-line {
    background: #06c755;
    color: #fff;
  }
  .mobile-cta-bar .bar-form {
    background: linear-gradient(180deg, #f783a0, var(--pink-600));
    color: #fff;
  }
  body { padding-bottom: calc(58px + env(safe-area-inset-bottom)); }
}
