/* ==========================================================================
   Baby Sitter Page Styles
   トップページと統一した世界観・やさしい空気感
   ========================================================================== */

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
  --bs-color-main: #85CDCC;
  --bs-color-main2: #FBC78E;
  --bs-color-main3: #A7D676;
  --bs-color-text: #615344;
  --bs-color-body: #FBF7EE;
  --bs-color-accent: #F7C74D;
  --bs-color-white: #ffffff;
  --bs-color-white2: #EEF3F3;
  --bs-color-line: #06C755;
  --bs-color-back: #F9E2B0;
  --bs-font-family: 'Zen Maru Gothic', sans-serif;
  --bs-max-width: 1000px;
  /* 余白を+30%増量 */
  --bs-section-gap: clamp(100px, 12vw, 180px);
  --bs-content-gap: clamp(48px, 6vw, 80px);
  /* ゆっくりやさしいアニメーション - さらにゆったり */
  --bs-ease: cubic-bezier(0.16, 0.7, 0.2, 1);
  --bs-duration: 1s;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
.p-baby-sitter__fv,
.p-baby-sitter__intro,
.p-baby-sitter__service,
.p-baby-sitter__price,
.p-baby-sitter__transport,
.p-baby-sitter__info,
.p-baby-sitter__prepare,
.p-baby-sitter__apply,
.p-baby-sitter__staff,
.p-baby-sitter__contact {
  position: relative;
  overflow: hidden;
}

.p-baby-sitter__intro,
.p-baby-sitter__service,
.p-baby-sitter__price,
.p-baby-sitter__transport,
.p-baby-sitter__info,
.p-baby-sitter__prepare,
.p-baby-sitter__apply,
.p-baby-sitter__staff,
.p-baby-sitter__contact {
  padding: var(--bs-section-gap) 0;
}

.p-baby-sitter__intro-inner,
.p-baby-sitter__service-inner,
.p-baby-sitter__price-inner,
.p-baby-sitter__transport-inner,
.p-baby-sitter__info-inner,
.p-baby-sitter__prepare-inner,
.p-baby-sitter__apply-inner,
.p-baby-sitter__staff-inner,
.p-baby-sitter__contact-inner {
  display: grid;
  gap: var(--bs-content-gap);
  max-width: var(--bs-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1025px) {
  .p-baby-sitter__intro-inner,
  .p-baby-sitter__service-inner,
  .p-baby-sitter__price-inner,
  .p-baby-sitter__transport-inner,
  .p-baby-sitter__info-inner,
  .p-baby-sitter__prepare-inner,
  .p-baby-sitter__apply-inner,
  .p-baby-sitter__staff-inner,
  .p-baby-sitter__contact-inner {
    padding: 0 48px;
  }
}

/* ==========================================================================
   First View - 写真主役・感情寄りコピー
   ========================================================================== */
.p-baby-sitter__fv {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(120px, 15vh, 180px) 24px clamp(80px, 10vh, 120px);
}

.p-baby-sitter__fv-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* 装飾：雲 */
.p-baby-sitter__fv-cloud {
  position: absolute;
  z-index: 5;
  left: -5%;
  top: 10%;
  width: clamp(100px, 20vw, 280px);
  height: auto;
  opacity: 0.9;
  animation: float-gentle 6s ease-in-out infinite;
}

/* 装飾：太陽 */
.p-baby-sitter__fv-sun {
  position: absolute;
  z-index: 5;
  right: 5%;
  top: 5%;
  width: clamp(60px, 10vw, 120px);
  height: auto;
  opacity: 0.9;
  animation: sun-twinkle 8s ease-in-out infinite;
}

@keyframes sun-twinkle {
  0%, 85%, 100% {
    filter: brightness(1);
    transform: scale(1);
  }
  90% {
    filter: brightness(1.15);
    transform: scale(1.03);
  }
  95% {
    filter: brightness(1);
    transform: scale(1);
  }
}

@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* メインビジュアル */
.p-baby-sitter__fv-visual {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.p-baby-sitter__fv-img-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: clamp(32px, 5vw, 60px);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(97, 83, 68, 0.15);
}

.p-baby-sitter__fv-img-wrap.no-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bs-color-main) 0%, var(--bs-color-main3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-baby-sitter__fv-img-wrap.no-image::after {
  content: 'Baby Sitter';
  font-size: clamp(24px, 4vw, 48px);
  color: var(--bs-color-white);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.p-baby-sitter__fv-img {
  width: 100%;
  height: auto;
  display: block;
}

/* キャッチコピー */
.p-baby-sitter__fv-copy {
  text-align: center;
  position: relative;
  z-index: 10;
}

.p-baby-sitter__fv-copy-main {
  font-size: clamp(24px, 5vw, 48px);
  font-weight: 700;
  color: var(--bs-color-text);
  line-height: 1.6;
  margin-bottom: clamp(16px, 2vw, 24px);
  letter-spacing: 0.05em;
}

.p-baby-sitter__fv-copy-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--bs-color-text);
  line-height: 2;
  opacity: 0.85;
}

/* 波線装飾 */
.p-baby-sitter__fv-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: clamp(40px, 8vw, 80px);
  background: var(--bs-color-body);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* ==========================================================================
   Intro Section
   ========================================================================== */
.p-baby-sitter__intro {
  background: var(--bs-color-body);
}

.p-baby-sitter__intro-text {
  max-width: 720px;
  margin: 0 auto;
}

.p-baby-sitter__intro-text p {
  line-height: 2.4;
}

/* 居宅訪問型説明 - 読み飛ばせる控えめなスタイル */
.p-baby-sitter__intro-desc {
  line-height: 2.8;
  opacity: 0.75;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.p-baby-sitter__intro-message {
  line-height: 2.2;
}

/* ==========================================================================
   Service Section
   ========================================================================== */
.p-baby-sitter__service {
  position: relative;
}

/* 装飾：草 */
.p-baby-sitter__dec-grass-left {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 30%;
  width: clamp(80px, 15vw, 200px);
  height: auto;
  opacity: 0.7;
}

.p-baby-sitter__dec-grass-right {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 10%;
  width: clamp(80px, 15vw, 200px);
  height: auto;
  opacity: 0.7;
}

.p-baby-sitter__service-card {
  position: relative;
  z-index: 10;
  background: var(--bs-color-white);
  border-radius: clamp(24px, 4vw, 40px);
  padding: clamp(40px, 6vw, 64px);
  box-shadow: 0 8px 40px rgba(97, 83, 68, 0.08);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.p-baby-sitter__service-card p {
  line-height: 2.2;
}

/* ==========================================================================
   Price Section - やさしい情報カード
   ========================================================================== */
.p-baby-sitter__price {
  background: linear-gradient(180deg, var(--bs-color-white2) 0%, var(--bs-color-body) 100%);
}

.p-baby-sitter__price-content {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .p-baby-sitter__price-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-baby-sitter__price-card {
  background: var(--bs-color-white);
  border-radius: clamp(24px, 4vw, 32px);
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 40px);
  text-align: center;
  box-shadow: 0 8px 32px rgba(97, 83, 68, 0.06);
  border: 3px solid var(--bs-color-main);
}

/* 料金の意味づけテキスト */
.p-baby-sitter__price-context {
  font-size: clamp(12px, 1.5vw, 14px);
  color: var(--bs-color-main);
  margin-bottom: clamp(12px, 2vw, 16px);
  font-weight: 500;
}

.p-baby-sitter__price-card.evening .p-baby-sitter__price-context {
  color: var(--bs-color-main2);
}

.p-baby-sitter__price-card.evening {
  border-color: var(--bs-color-main2);
}

.p-baby-sitter__price-label {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--bs-color-text);
  opacity: 0.7;
  margin-bottom: 8px;
}

.p-baby-sitter__price-time {
  font-size: clamp(13px, 1.5vw, 15px);
  color: var(--bs-color-text);
  opacity: 0.6;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.p-baby-sitter__price-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.p-baby-sitter__price-num {
  font-size: clamp(40px, 7vw, 56px);
  font-weight: 700;
  color: var(--bs-color-main);
  line-height: 1;
}

.p-baby-sitter__price-card.evening .p-baby-sitter__price-num {
  color: var(--bs-color-main2);
}

.p-baby-sitter__price-unit {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  color: var(--bs-color-text);
}

.p-baby-sitter__price-unit small {
  font-size: clamp(12px, 1.5vw, 14px);
  opacity: 0.7;
}

/* 兄弟割引 */
.p-baby-sitter__price-sibling {
  margin-top: clamp(32px, 4vw, 48px);
}

.p-baby-sitter__price-sibling-inner {
  background: linear-gradient(135deg, rgba(251, 199, 142, 0.15) 0%, rgba(251, 199, 142, 0.05) 100%);
  border-radius: clamp(20px, 3vw, 28px);
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.p-baby-sitter__price-sibling-title {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--bs-color-text);
  opacity: 0.7;
  margin-bottom: 12px;
}

.p-baby-sitter__price-sibling-text {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--bs-color-text);
  margin-bottom: 12px;
}

.p-baby-sitter__price-highlight {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  color: var(--bs-color-main2);
}

/* ==========================================================================
   Transport Section
   ========================================================================== */
.p-baby-sitter__transport {
  position: relative;
}

.p-baby-sitter__transport-lead {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.p-baby-sitter__transport-list {
  background: var(--bs-color-white);
  border-radius: clamp(20px, 3vw, 32px);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(97, 83, 68, 0.06);
  max-width: 600px;
  margin: 0 auto;
}

.p-baby-sitter__transport-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(20px, 2.5vw, 24px) clamp(20px, 3vw, 32px);
  border-bottom: 1px solid rgba(97, 83, 68, 0.08);
  gap: 16px;
}

@media (max-width: 480px) {
  .p-baby-sitter__transport-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px;
  }
}

.p-baby-sitter__transport-item:last-child {
  border-bottom: none;
}

.p-baby-sitter__transport-item:nth-child(odd) {
  background: rgba(133, 205, 204, 0.04);
}

.p-baby-sitter__transport-area {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--bs-color-text);
  line-height: 1.6;
}

.p-baby-sitter__transport-fee {
  font-size: clamp(20px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--bs-color-main);
  white-space: nowrap;
}

@media (max-width: 480px) {
  .p-baby-sitter__transport-fee {
    align-self: flex-end;
  }
}

.p-baby-sitter__transport-notes {
  margin-top: clamp(24px, 3vw, 32px);
  text-align: center;
  opacity: 0.75;
}

.p-baby-sitter__transport-notes p {
  line-height: 2;
}

/* ==========================================================================
   Info Section
   ========================================================================== */
.p-baby-sitter__info {
  background: linear-gradient(180deg, var(--bs-color-body) 0%, var(--bs-color-white2) 100%);
}

.p-baby-sitter__info-grid {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
}

@media (min-width: 600px) {
  .p-baby-sitter__info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-baby-sitter__info-card {
  background: var(--bs-color-white);
  border-radius: clamp(24px, 4vw, 36px);
  padding: clamp(36px, 5vw, 56px) clamp(24px, 3vw, 40px);
  text-align: center;
  box-shadow: 0 8px 32px rgba(97, 83, 68, 0.06);
}

.p-baby-sitter__info-label {
  font-size: clamp(13px, 1.5vw, 15px);
  color: var(--bs-color-text);
  opacity: 0.6;
  margin-bottom: clamp(12px, 2vw, 16px);
}

.p-baby-sitter__info-value {
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  color: var(--bs-color-text);
  line-height: 1.5;
}

/* 対象情報の想い補足 */
.p-baby-sitter__info-note {
  margin-top: clamp(24px, 3vw, 40px);
  opacity: 0.75;
}

/* ==========================================================================
   Prepare Section
   ========================================================================== */
.p-baby-sitter__prepare-content {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.p-baby-sitter__prepare-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, 2vw, 16px);
  margin-bottom: clamp(24px, 3vw, 32px);
}

.p-baby-sitter__prepare-item {
  display: inline-flex;
  align-items: center;
  padding: clamp(14px, 2vw, 18px) clamp(28px, 4vw, 40px);
  background: var(--bs-color-white);
  border-radius: 100px;
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 500;
  color: var(--bs-color-text);
  box-shadow: 0 4px 16px rgba(97, 83, 68, 0.06);
}

.p-baby-sitter__prepare-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--bs-color-main);
  border-radius: 50%;
  margin-right: 10px;
}

/* ==========================================================================
   Apply Section
   ========================================================================== */
.p-baby-sitter__apply {
  background: var(--bs-color-white2);
}

.p-baby-sitter__apply-content {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 500px) {
  .p-baby-sitter__apply-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-baby-sitter__apply-card {
  background: var(--bs-color-white);
  border-radius: clamp(24px, 4vw, 32px);
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 32px);
  text-align: center;
  box-shadow: 0 8px 32px rgba(97, 83, 68, 0.06);
}

.p-baby-sitter__apply-label {
  font-size: clamp(13px, 1.5vw, 15px);
  color: var(--bs-color-text);
  opacity: 0.6;
  margin-bottom: clamp(12px, 2vw, 16px);
}

.p-baby-sitter__apply-text {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--bs-color-text);
  line-height: 1.6;
}

.p-baby-sitter__apply-highlight {
  display: block;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  color: var(--bs-color-main2);
  margin-top: 8px;
}

.p-baby-sitter__apply-methods {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 24px);
}

.p-baby-sitter__apply-method {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: var(--bs-color-text);
}

/* ==========================================================================
   Staff Section
   ========================================================================== */
.p-baby-sitter__staff-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.p-baby-sitter__staff-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 16px);
  margin-bottom: clamp(28px, 4vw, 40px);
}

.p-baby-sitter__staff-badge {
  display: inline-flex;
  align-items: center;
  padding: clamp(12px, 1.5vw, 14px) clamp(28px, 4vw, 36px);
  background: linear-gradient(135deg, var(--bs-color-main) 0%, var(--bs-color-main3) 100%);
  color: var(--bs-color-white);
  border-radius: 100px;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
}

.p-baby-sitter__staff-content > p {
  line-height: 2.2;
}

/* スタッフ補足（はじめての方向け） */
.p-baby-sitter__staff-note {
  margin-top: clamp(24px, 3vw, 36px);
  opacity: 0.75;
  background: rgba(133, 205, 204, 0.1);
  padding: clamp(16px, 2vw, 20px) clamp(24px, 3vw, 32px);
  border-radius: 100px;
  display: inline-block;
}

/* ==========================================================================
   Contact Section - 相談ベース
   ========================================================================== */
.p-baby-sitter__contact-card {
  position: relative;
  background: linear-gradient(135deg, var(--bs-color-main) 0%, #6BB5B4 100%);
  border-radius: clamp(32px, 5vw, 48px);
  padding: clamp(48px, 7vw, 80px) clamp(32px, 5vw, 64px);
  text-align: center;
  box-shadow: 0 16px 48px rgba(133, 205, 204, 0.3);
  overflow: hidden;
}

.p-baby-sitter__contact-cloud {
  position: absolute;
  z-index: 1;
  left: -10%;
  top: -10%;
  width: clamp(100px, 20vw, 200px);
  height: auto;
  opacity: 0.3;
}

.p-baby-sitter__contact-card .p-title__wrap {
  position: relative;
  z-index: 10;
}

.p-baby-sitter__contact-card .p-title__wrap--en::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='8' viewBox='0 0 48 8'%3E%3Cpath d='M0 4 Q12 0 24 4 T48 4' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E") !important;
}

.p-baby-sitter__contact-content {
  position: relative;
  z-index: 10;
  display: grid;
  gap: clamp(28px, 4vw, 40px);
  margin-top: clamp(36px, 5vw, 56px);
}

.p-baby-sitter__contact-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* QRコード上部の相談OKテキスト */
.p-baby-sitter__contact-qr-note {
  opacity: 0.9;
  font-weight: 500;
}

.p-baby-sitter__contact-qr-img {
  width: clamp(160px, 20vw, 200px);
  height: clamp(160px, 20vw, 200px);
  background: var(--bs-color-white);
  border-radius: 20px;
  padding: 12px;
  object-fit: contain;
}

.p-baby-sitter__contact-qr-placeholder {
  width: clamp(100px, 15vw, 140px);
  height: clamp(100px, 15vw, 140px);
  background: var(--bs-color-white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-color-text);
  opacity: 0.5;
  font-size: 14px;
}

.p-baby-sitter__contact-qr-text {
  opacity: 0.9;
  line-height: 1.6;
}

.p-baby-sitter__contact-text {
  line-height: 2;
}

.p-baby-sitter__contact-text p + p {
  margin-top: 8px;
  opacity: 0.85;
}

.p-baby-sitter__contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, 2vw, 16px);
}

.p-baby-sitter__contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: clamp(16px, 2vw, 20px) clamp(28px, 4vw, 40px);
  border-radius: 100px;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.4s var(--bs-ease), box-shadow 0.4s var(--bs-ease);
}

.p-baby-sitter__contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.p-baby-sitter__contact-btn.line {
  background: var(--bs-color-white);
  color: var(--bs-color-line);
}

.p-baby-sitter__contact-btn.phone {
  background: rgba(255, 255, 255, 0.15);
  color: var(--bs-color-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.p-baby-sitter__contact-btn-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
}

.p-baby-sitter__contact-btn-icon.line {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2306C755'%3E%3Cpath d='M19.365 9.863c.349 0 .63.285.63.631 0 .345-.281.63-.63.63H17.61v1.125h1.755c.349 0 .63.283.63.63 0 .344-.281.629-.63.629h-2.386c-.345 0-.627-.285-.627-.629V8.108c0-.345.282-.63.63-.63h2.386c.346 0 .627.285.627.63 0 .349-.281.63-.63.63H17.61v1.125h1.755zm-3.855 3.016c0 .27-.174.51-.432.596-.064.021-.133.031-.199.031-.211 0-.391-.09-.51-.25l-2.443-3.317v2.94c0 .344-.279.629-.631.629-.346 0-.626-.285-.626-.629V8.108c0-.27.173-.51.43-.595.06-.023.136-.033.194-.033.195 0 .375.104.495.254l2.462 3.33V8.108c0-.345.282-.63.63-.63.345 0 .63.285.63.63v4.771zm-5.741 0c0 .344-.282.629-.631.629-.345 0-.627-.285-.627-.629V8.108c0-.345.282-.63.63-.63.346 0 .628.285.628.63v4.771zm-2.466.629H4.917c-.345 0-.63-.285-.63-.629V8.108c0-.345.285-.63.63-.63.348 0 .63.285.63.63v4.141h1.756c.348 0 .629.283.629.63 0 .344-.282.629-.629.629M24 10.314C24 4.943 18.615.572 12 .572S0 4.943 0 10.314c0 4.811 4.27 8.842 10.035 9.608.391.082.923.258 1.058.59.12.301.079.766.038 1.08l-.164 1.02c-.045.301-.24 1.186 1.049.645 1.291-.539 6.916-4.078 9.436-6.975C23.176 14.393 24 12.458 24 10.314'/%3E%3C/svg%3E");
  background-size: contain;
}

.p-baby-sitter__contact-btn-icon.phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  background-size: contain;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.c-text--white {
  color: var(--bs-color-white) !important;
}

@media (max-width: 1024px) {
  .pc { display: none !important; }
}

@media (min-width: 1025px) {
  .sp { display: none !important; }
}

/* ==========================================================================
   Animation - ゆっくり・やさしい動き
   ========================================================================== */
.p-baby-sitter__fv .animation,
.p-baby-sitter__intro .animation,
.p-baby-sitter__service .animation,
.p-baby-sitter__price .animation,
.p-baby-sitter__transport .animation,
.p-baby-sitter__info .animation,
.p-baby-sitter__prepare .animation,
.p-baby-sitter__apply .animation,
.p-baby-sitter__staff .animation,
.p-baby-sitter__contact .animation {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity var(--bs-duration) var(--bs-ease),
    transform var(--bs-duration) var(--bs-ease);
}

/* 段階的表示のためのディレイ - 見出し→本文→カードの順 */
.p-baby-sitter__fv .animation[data-offset="-100"] { transition-delay: 0s; }
.p-baby-sitter__fv .animation[data-offset="0"] { transition-delay: 0.5s; }

.animation[data-offset="50"] { transition-delay: 0s; }     /* 見出し */
.animation[data-offset="100"] { transition-delay: 0.3s; }  /* 本文 */
.animation[data-offset="150"] { transition-delay: 0.5s; }  /* カード1 */
.animation[data-offset="200"] { transition-delay: 0.7s; }  /* カード2 */
.animation[data-offset="250"] { transition-delay: 0.9s; }  /* 補足 */

.p-baby-sitter__fv .animation.active,
.p-baby-sitter__intro .animation.active,
.p-baby-sitter__service .animation.active,
.p-baby-sitter__price .animation.active,
.p-baby-sitter__transport .animation.active,
.p-baby-sitter__info .animation.active,
.p-baby-sitter__prepare .animation.active,
.p-baby-sitter__apply .animation.active,
.p-baby-sitter__staff .animation.active,
.p-baby-sitter__contact .animation.active {
  opacity: 1;
  transform: translateY(0);
}

.page-baby-sitter .p-text__title--jp {
  font-size: clamp(28px, 5vw, 32px);

}
.page-baby-sitter .p-text__title--jp-min {
  font-size: clamp(20px, 5vw, 24px);

}