/* ==========================================================================
   Reset and Base Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Zen Maru Gothic', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
  overflow-x: hidden;
}
.sp-only {
  display: none;
}

.pc-only {
  display: inline;
}


/* ==========================================================================
   Design Tokens
   ========================================================================== */
:root {
  --text-pink: #FF95AC;
  --text-blue: #8C9FB9;
  --text-gray: #6D6D6D;
  --text-light-gray: #888888;
  --pink-50: #FEF2F2;
  --pink-200: #FFC8C8;
  --pink-300: #FFA2A2;
  --white: #FFFFFF;
  --corner-large: 16px;
  --space-100: 4px;
  --space-600: 24px;
  --space-800: 32px;
  --space-1200: 48px;
  --text-highlight: #FFAEC0;
  --shadow-color: rgba(231, 169, 169, 0.35);
  --button-shadow: rgba(133, 133, 133, 0.35);
}

/* ==========================================================================
   Layout Components
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title { display: inline-block; }

.section-title-en {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-pink);
}

.section-title-jp {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-pink);
  line-height: 1.5;
}

.section-title-jp span:nth-child(even) {
  color: var(--text-blue);
}

.section-title-jp span:nth-child(2),
.section-title-jp span:nth-child(4),
.section-title-jp span:nth-child(6) {
  color: #FFAEC0;
}

.highlight-text {
  color: #ffaec0 !important;
}

.star-icon {
  width: 44px;
  height: 12px;
}

.star-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  width: fit-content;
  background-color: var(--text-pink);
  color: var(--white);
  position: relative; /* z-indexを有効にするために必要 */
  z-index: 10;
}

.btn-primary:hover {
  background-color: var(--text-blue);
}

/* About section specific button */
.about-hero-content .btn-primary {
  background-color: #FF95AC;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
}

.about-hero-content .btn-primary:hover {
  background-color: #FFAEC0;
}

.btn-secondary {
  background-color: var(--text-blue);
  color: var(--white);
  border-radius: 8px 0 0 8px;
  box-shadow: 0 4px 4px rgba(133, 133, 133, 0.35);
}

.btn-secondary:hover {
  background-color: var(--text-pink);
}

.btn-arrow {
  width: 8px;
  height: 10px;
  background-color: var(--white);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.btn-line {
  background-color: #e9fff2;
  color: #06c755;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  max-width: 304px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  white-space: nowrap;
}

.btn-line img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.btn-line:hover {
  background-color: #d4f7e1;
}

/* ==========================================================================
   Header
   ========================================================================== */

/* モバイル用ハンバーガーメニュー */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 10px 8px;
  z-index: 1002;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #f8f8f8;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #666666;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .hamburger-line {
  background-color: var(--text-highlight);
}

/* ハンバーガーメニューオーバーレイ */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #FFAEC0;
  backdrop-filter: blur(10px);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.active .mobile-menu-container {
  transform: translateX(0);
}

/* モバイルメニューヘッダー */
.mobile-menu-header,
.mobile-menu-logo,
.mobile-logo-svg,
.mobile-logo-text,
.mobile-logo-title,
.mobile-logo-subtitle {
  display: none;
}

/* モバイルメニュー閉じるボタン */
.mobile-menu-close-container {
  display: flex;
  justify-content: flex-end;
  padding: 20px 36px;
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.close-line {
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: white;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.close-line:first-child {
  transform: rotate(45deg);
}

.close-line:last-child {
  transform: rotate(-45deg);
}

/* モバイルメニューナビゲーション */
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.mobile-menu-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-menu-item::after {
  display: none;
}

.mobile-menu-text-jp {
  font-size: 16px;
  font-weight: 500;
  color: white;
  margin-bottom: 4px;
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.mobile-menu-text-en {
  display: none;
}

/* モバイルメニューフッター */
.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.mobile-contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 280px;
}

.mobile-contact-text {
  display: none;
}

.mobile-contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

/* SNSアイコン */
.mobile-sns-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 8px;
}

.mobile-sns-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-sns-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.mobile-sns-icon:hover {
  background-color: var(--white);
  transform: scale(1.1);
}

.mobile-sns-icon:hover img {
  filter: brightness(0) saturate(100%) invert(70%) sepia(20%) saturate(1000%) hue-rotate(320deg) brightness(0.9) contrast(1);
}

.mobile-sns-divider {
  width: 1px;
  height: 40px;
  background: #fff;
  opacity: 0.6;
}

.mobile-btn-line {
  background-color: var(--white);
  color: #06c755;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  width: 100%;
  max-width: 304px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.mobile-btn-line img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.mobile-phone-number {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-phone-number img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.mobile-phone-text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: 1.04px;
  width: max-content;
}
.header {
  background-color: var(--white);
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /*position: relative;*/
  transition: transform 0.5s;
}

.header.is-hide {
  transform: translateY(-250%); /* ヘッダーの高さ分、上に隠す */
}

.header-container {
  display: flex;
  gap: 340px;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: 40px;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 112px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.nav-item:hover {
  opacity: 0.8;
}

.nav-text-jp {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-pink);
  line-height: normal;
}

.nav-text-en {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-pink);
  line-height: normal;
}

/* Header Logo Overlay */
.header-logo-overlay {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
}

.logo-container {
  width: 200px;
  height: 200px;
  background-color: #FFFFFF;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 15px 25px;
  text-decoration: none;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.logo-container:hover {
  transform: scale(1.05);
}

.logo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-svg {
  width: 90px;
  height: 90px;
  display: block;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.logo-title {
  font-size: 18px;
  font-weight: 500;
  color: #FF95AC;
  text-align: center;
}

.logo-subtitle {
  font-size: 7px;
  font-weight: 400;
  color: #FF95AC;
  text-align: center;
  opacity: 0.8;
  line-height: 1.2;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding: 0 32px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  width: 100%;
  position: relative;
}

.hero-text {
  flex: 1;
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 2.88px;
  line-height: 1.4;
}

.hero-title {
  font-size: 72px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title span:nth-child(1) { color: #ffbafd; }
.hero-title span:nth-child(2) { color: #c4d5ff; letter-spacing: 2.16px; }
.hero-title span:nth-child(3) { color: #a8d2aa; letter-spacing: -3.6px; }
.hero-title span:nth-child(4) { color: #e8e69b; letter-spacing: 5.76px; }
.hero-title span:nth-child(5) { color: #fe9eac; letter-spacing: -2.16px; }
.hero-title span:nth-child(6) { color: #ffbafd; letter-spacing: -1.44px; }

.hero-description {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.62px;
  line-height: 1.1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.vertical-text {
  writing-mode: sideways-lr;
  text-orientation: mixed;
  color: #FF95AC;
}

.sns-icons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  position: absolute;
  bottom: 40px;
  right: 40px;
}

.sns-icon {
  width: 24px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.sns-icon:hover {
  transform: scale(1.1);
}

.hero-side-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  opacity: 0.8;
  flex-shrink: 0;
}

.hero-main-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 40px;
}

.hero-image-pc {
  display: block;
}

.hero-image-sp {
  display: none;
}

.hero-sns-icons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}

.instagram-icon {
  background: url('assets/images/Instagram.svg') center center/contain no-repeat;
}

.line-icon {
  background: url('assets/images/LINE.svg') center center/contain no-repeat;
}

.thread-icon {
  background: url('assets/images/Threads.svg') center center/contain no-repeat;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFE3E2 30%, #FFE3E2 70%, #FEF2F2 100%);
  padding: 120px 180px 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-hero-container {
  display: flex;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  width: 100%
}

.about-hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-hero-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.strengths-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-header-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.works-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-header-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-hero-description {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-light-gray);
  line-height: 1.75;
  letter-spacing: 0.6px;
}

.about-hero-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light-gray);
  line-height: 1.75;
}

.about-hero-text strong {
  font-weight: 700;
}

/* 絶対配置の画像 */
.about-hero-absolute-image {
  position: absolute;
  z-index: 1;
}

.about-hero-absolute-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.about-hero-image-1 {
  top: 20%;
  right: 40%;
  transform: translateX(-40%);
  width: 161px;
  height: 161px;
}

.about-hero-image-2 {
  bottom: 22%;
  right: 30%;
  width: 37px;
  height: 37px;
}

.about-hero-image-3 {
  top: 28%;
  right: 10%;
  width: 63px;
  height: 63px;
}

.about-hero-image-4 {
  top: 18%;
  right: -4%;
  width: 619px;
  height: 619px;
  border-radius: 50%;
  overflow: hidden;
}

.about-hero-image-5 {
  bottom: 15%;
  right: 27%;
  width: 419px;
  height: 419px;
  border-radius: 50%;
  overflow: hidden;
}

.about-hero-image-6 {
  bottom: 8%;
  right: 35%;
  width: 153px;
  height: 153px;
}

.about-hero-image-7 {
  bottom: 14%;
  right: -2%;
  width: 194px;
  height: 194px;
  border-radius: 50%;
  overflow: hidden;
}

/* ==========================================================================
   Strengths Section
   ========================================================================== */
.strengths {
  background-color: var(--pink-50);
  padding: 120px 180px 60px;
  position: relative;
}

/* ==========================================================================
   Section Divider
   ========================================================================== */
.section-divider {
  width: 100%;
  max-height: 167px;
  overflow: hidden;
}

.section-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strengths-container {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.strengths-content {
  flex: 1;
}

.strengths-cards {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.strength-card {
  display: flex;
  gap: 40px;
  align-items: center;
  border-radius: 16px;
}

.strength-image {
  width: 364px;
  height: 215px;
  border-radius: 16px;
  border: 4px solid var(--pink-200);
  flex-shrink: 0;
  overflow: hidden;
}

.strength-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.strength-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-pink);
  margin-bottom: 8px;
}

.strength-content h4 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-pink);
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.strength-content p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  line-height: 1.75;
}

/* ==========================================================================
   Strengths Decoration Elements
   ========================================================================== */
.strengths-decoration {
  position: absolute;
  z-index: 10;
}

.strengths-decoration-1 {
  left: 4.3%;
  top: 33.7%;
  width: 441px;
  height: 460px;
}

.strengths-decoration-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strengths-decoration-2 {
  left: 84%;
  top: 4.8%;
  width: 125px;
  height: 125px;
}

.strengths-decoration-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strengths-decoration-3 {
  left: 90%;
  top: 50%;
  width: 109.592px;
  height: 164.388px;
  transform: rotate(6.969deg);
}

.strengths-decoration-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strengths-decoration-4 {
  left: 85%;
  top: 75%;
  width: 158.907px;
  height: 238.36px;
  transform: rotate(13.76deg);
}

.strengths-decoration-4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Service Section
   ========================================================================== */
.service {
  background-color: #FFE3E2;
  padding: 0 180px 120px;
}

.service-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.service-card {
  position: relative;
  border-radius: 16px;
  box-shadow: 0 0 50px rgba(231, 169, 169, 0.35);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 5px 60px rgba(231, 169, 169, 0.5);
}

.service-card:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  z-index: 1;
  pointer-events: none;
}

.service-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  width: calc(100% - 48px);
}

/* 新しいサービスカードスタイル */
.service-text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.service-text-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.service-text-header {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.service-text-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: var(--text-highlight);
  text-align: left;
  letter-spacing: 0.72px;
  white-space: nowrap;
}

.service-description {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-blue);
  text-align: left;
  max-width: 300px;
}

.service-icons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.service-icon {
  width: 120px;
  height: 120px;
  background-color: var(--white);
  border: 1px solid var(--text-blue);
  border-radius: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: -2px;
}

.icon-border {
  position: absolute;
  border: 1px solid var(--text-blue);
  border-radius: 80px;
  inset: 0;
  pointer-events: none;
}

.icon-content {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
}

.icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ベビーシッターアイコンの特定サイズ */
.icon-image[src*="icon-image.svg"] {
  width: 42px;
  height: 59px;
}

/* 小学校お受験アイコンの特定サイズ */
.icon-image[src*="elementary-exam.svg"] {
  width: 52.73px;
  height: 52px;
}

.icon-label {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  color: var(--text-highlight);
  text-align: center;
  white-space: nowrap;
}

.icon-label span {
  display: block;
  line-height: 1.2;
}

.icon-label span:first-child {
  margin-bottom: 0;
}

.service-button-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
  width: 156px;
}

.view-more-button {
  background-color: var(--text-highlight);
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 8px;
  box-shadow: 0px 4px 4px 0px var(--button-shadow);
  width: 100%;
}

.button-text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: var(--white);
  text-align: left;
  letter-spacing: 0.42px;
  white-space: nowrap;
}

.button-arrow {
  width: 10px;
  height: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* メインサービスカード */
.main-service {
  border-radius: 16px;
  box-shadow: 0px 0px 50px 0px var(--shadow-color);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-service-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.educational-service-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.event-service-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.consultation-service-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* 知育シッターサービスカード */
.educational-service {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.educational-service .service-text-title {
  align-self: flex-end;
}

/* 2つ目の知育シッターサービスカード */
.educational-service-2 {
  background-image: url('assets/images/sitter-service-01.png');
  background-position: center;
  background-size: cover;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  padding: 0 0 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* 知育シッター追加アイコン */
.service-additional-icons {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 16px;
}

.service-additional-icon {
  background-color: var(--white);
  border: 1px solid var(--text-blue);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  min-height: 32px;
  width: 132px;
}

.additional-icon-border {
  position: absolute;
  border: 1px solid var(--text-blue);
  border-radius: 7px;
  inset: 0;
  pointer-events: none;
}

.additional-icon-label {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  color: var(--text-highlight);
  text-align: center;
  white-space: normal;
}

/* 託児所イベントシッターサービスカード */
.event-service {
  border-radius: 16px;
  box-shadow: 0px 0px 50px 0px var(--shadow-color);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 育児相談サービスカード */
.consultation-service {
  border-radius: 16px;
  box-shadow: 0px 0px 50px 0px var(--shadow-color);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* サービスカード横並び */
.service-row {
  display: flex;
  gap: 40px;
}

.service-row .service-card {
  flex: 1;
}

/* 人気バッジ */
.popular-badge {
  width: 65px;
  height: 70px;
  position: relative;
}

.popular-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-wrapper {
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 40px;
}

.service-wrapper-1 {
  background-image: url('assets/images/sitter-service-01.png');
}

.service-wrapper-2 {
  background-image: url('assets/images/sitter-service-02.png');
}

.service-wrapper-3 {
  background-image: url('assets/images/sitter-service-03.png');
}

.service-wrapper-4 {
  background-image: url('assets/images/sitter-service-04.png');
}

.service-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-blue);
  margin-bottom: 16px;
  letter-spacing: 0.72px;
}

.service-description {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-blue);
  line-height: 1.75;
  max-width: 393px;
}

.service-icons {
  display: flex;
  gap: 16px;
}

.service-icon {
  width: 120px;
  height: 120px;
  background-color: var(--white);
  border: 1px solid var(--text-blue);
  border-radius: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.service-icon-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-blue);
  text-align: center;
}

.service-icon img {
  display: block;
  object-fit: contain;
}

/* ==========================================================================
   Works Section
   ========================================================================== */
.works {
  background-color: var(--white);
  padding: 80px 180px 120px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.works-container {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  position: relative;
}

.works-content {
  flex: 1;
}

.works-grid {
  flex: 2;
  display: flex;
  gap: 40px;
}

.work-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.work-image {
  width: 100%;
  height: 215px;
  border-radius: 16px;
  border: 4px solid #ffe3e2;
  overflow: hidden;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  line-height: 1.75;
}

.work-author {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: normal;
}

/* ==========================================================================
   Works Decoration Elements
   ========================================================================== */
.works-decoration {
  position: absolute;
  z-index: 10;
}

.works-decoration-1 {
  left: -60px;
  bottom: 0;
  transform: rotate(0.321deg);
}

.works-decoration-1 img {
  width: 186px;
  height: 189px;
  object-fit: cover;
}

.works-decoration-2 {
  left: 120px;
  bottom: 0;
  transform: rotate(9.62deg) skewX(359.929deg);
}

.works-decoration-2 img {
  width: 136px;
  height: 91px;
  object-fit: cover;
}

.works-decoration-3 {
  left: 80px;
  top: 220px;
  width: 192px;
  height: 72px;
}

.works-decoration-3 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact {
  background-color: var(--white);
  padding: 80px 180px 0;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  max-width: 1200px;
  width: 100%;
}

.contact-background {
  background-image: url('assets/images/contact.png');
  background-position: center;
  background-size: cover;
  border-radius: 80px;
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}

.contact-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  flex-shrink: 0;
}

.contact-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.48px;
}

.contact-subtitle {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  letter-spacing: 0.96px;
}

.contact-star {
  width: 44px;
  height: 12px;
}

.contact-star img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Service page contact section title styles */
.service-page .contact .section-title-en,
.service-page .contact .section-title-jp {
  color: #fff;
}

/* Contact section title styles to match index.html */
.contact .section-title-en,
.contact .section-title-jp {
  color: #fff;
}

.contact .section-title-jp span {
  color: #fff !important;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: fit-content;
  flex-shrink: 0;
}

.contact-description {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.5;
  letter-spacing: 1.28px;
  text-align: center;
}

.contact-button-group {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  /* width: 100%; */
}



.phone-number {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-number img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.phone-text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: 1.04px;
  width: max-content;
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */

/* About Hero Section */
.about-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(90deg, rgba(135, 37, 132, 0.3) 0%, rgba(135, 37, 132, 0.3) 100%), url('assets/images/about-background.png');
  background-position: 0% 0%, 0% 0%, center center;
  background-size: auto, auto, cover;
  background-repeat: no-repeat;
  padding: 120px 40px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Flow Hero Section */
.flow-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(90deg, rgba(135, 37, 132, 0.3) 0%, rgba(135, 37, 132, 0.3) 100%), url('assets/images/hero-background.png');
  background-position: 0% 0%, 0% 0%, center center;
  background-size: auto, auto, cover;
  background-repeat: no-repeat;
  padding: 120px 40px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-container {
  max-width: 1200px;
  width: 100%;
}

/* About page specific styles */

/* About page specific styles */
.about-page-hero-content {
  text-align: center;
}

.about-page-hero-text {
  text-align: center;
}

  .about-page-hero-text h1 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
  }

  .about-page-hero-text h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.5;
  }



.about-hero-text h1 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.about-hero-text h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
}

/* About Value Section */
.about-value {
  background-color: transparent;
  padding: 80px 0;
  position: relative;
  background-image: url('assets/images/Value-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-value-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 180px;
  display: flex;
  gap: 80px;
  align-items: center;
}

.about-value-content {
  display: flex;
  align-items: center;
  width: 100%;
}

.about-value-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.value-tagline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-tag {
  background-color: var(--pink-50);
  color: var(--text-highlight);
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 19px;
  width: fit-content;
  letter-spacing: 0.96px;
}

.value-keyword {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.value-subtitle {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #888888;
  letter-spacing: 1.62px;
  line-height: 1.4;
}

/* About page specific styles */
.about-value-tagline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-value-tag {
  background: linear-gradient(90deg, #EF9884 0%, #EA709E 100%);
  color: #FEF2F2;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 19px;
  width: fit-content;
  letter-spacing: 0.96px;
}

.about-value-keyword {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-value-subtitle {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #888888;
  letter-spacing: 1.62px;
  line-height: 1.4;
}

.value-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 32px;
  font-weight: 500;
  background: linear-gradient(135deg, #FFAEC0 0%, #FFA2A2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2.88px;
  line-height: 1.4;
}

/* About page specific styles */
.about-value-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 32px;
  font-weight: 500;
  background: linear-gradient(77.84deg, rgba(239, 152, 132, 1) 0.67%, rgba(234, 112, 158, 1) 96.97%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2.88px;
  line-height: 1.4;
}

.about-value-title span {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-image: linear-gradient(77.84deg, rgba(239, 152, 132, 1) 0.67%, rgba(234, 112, 158, 1) 96.97%);
}

.about-value-title .letter-spacing-1 {
  letter-spacing: 0.96px;
}

.about-value-title .letter-spacing-2 {
  letter-spacing: -1.6px;
}

.about-value-title .letter-spacing-3 {
  letter-spacing: 2.56px;
}

.about-value-title .letter-spacing-4 {
  letter-spacing: -0.96px;
}

.about-value-title .letter-spacing-5 {
  letter-spacing: -0.64px;
}

.about-value-title .letter-spacing-6 {
  letter-spacing: -6.4px;
}

.about-value-title .letter-spacing-7 {
  letter-spacing: -1.6px;
}

.about-value-title .letter-spacing-8 {
  letter-spacing: 0.64px;
}

/* ミッションセクションのグラデーション */
.about-value-tagline:nth-of-type(2) .about-value-title {
  background: linear-gradient(83.85deg, rgba(239, 152, 132, 1) 0.67%, rgba(234, 112, 158, 1) 96.97%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-value-tagline:nth-of-type(2) .about-value-title span {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-image: linear-gradient(83.85deg, rgba(239, 152, 132, 1) 0.67%, rgba(234, 112, 158, 1) 96.97%);
}

.about-value-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 -180px;
  overflow: hidden;
}

.about-value-visual img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  max-width: none;
}

.value-circles {
  position: relative;
  width: 616px;
  height: 616px;
  border: 1px solid #ef9884;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-circles::before {
  content: '';
  position: absolute;
  width: 556px;
  height: 556px;
  border: 1px solid #ef9884;
  border-radius: 50%;
}

.value-circles::after {
  content: '';
  position: absolute;
  width: 496px;
  height: 496px;
  border: 1px solid #ef9884;
  border-radius: 50%;
  box-shadow: 0px 0px 84px 0px rgba(240, 185, 165, 0.25);
}

.value-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: #e7a9a9 0px 0px 50px;
}

.value-circle-1 {
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
}

.value-circle-2 {
  bottom: 100px;
  left: 35%;
  transform: translateX(-50%);
}

.value-circle-3 {
  bottom: 100px;
  left: 65%;
  transform: translateX(-50%);
}

.circle-content {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px;
  font-weight: 500;
  background: linear-gradient(135deg, var(--text-highlight) 0%, var(--pink-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1.92px;
  line-height: 1.1;
}

/* About page specific styles */
.about-circle-content {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px;
  font-weight: 500;
  background: linear-gradient(135deg, #FFAEC0 0%, #FFA2A2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1.92px;
  line-height: 1.1;
}

/* About Works Section */
.about-works {
  background-color: #ffeaea;
  padding: 0 180px;
}

.about-works-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 80px;
  border-radius: 24px;
  background: 
    url('data:image/svg+xml;utf8,<svg viewBox="0 0 1080 349" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><rect x="0" y="0" height="100%" width="100%" fill="url(%23grad)" opacity="0.3499999940395355"/><defs><radialGradient id="grad" gradientUnits="userSpaceOnUse" cx="0" cy="0" r="10" gradientTransform="matrix(2.7819e-16 -46.85 46.807 1.5269e-12 515.02 349)"><stop stop-color="rgba(255,255,255,1)" offset="0.11538"/><stop stop-color="rgba(255,255,255,0)" offset="1"/></radialGradient></defs></svg>'),
    linear-gradient(2.60458e-07deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%),
    linear-gradient(86.8197deg, rgba(239, 152, 132, 0.9) 0.66696%, rgba(234, 112, 158, 0.9) 96.974%);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.about-works-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.about-works-header {
  text-align: center;
  color: var(--white);
}

.about-works-header h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 2.88px;
  line-height: 1.4;
}

.about-works-header p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.44px;
  line-height: 1.4;
}

.about-works-items {
  display: flex;
  gap: 24px;
  width: 100%;
  box-shadow: 0px 0px 84px 0px rgba(240, 185, 165, 0.25);
}

.about-works-item {
  flex: 1;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 24px;
  border: 1px solid var(--white);
  border-radius: 16px;
  background-color: transparent;
}

.works-item-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--white);
  border-radius: 64.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-content {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.works-item-text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
}

/* About page specific styles */
.about-works-item-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--white);
  border-radius: 64.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-works-icon-content {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.about-works-item-text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
}

/* About Message Section */
.about-message {
  background-color: var(--pink-200);
  padding: 120px 180px;
  position: relative;
  background-image: 
    url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 672" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><rect x="0" y="0" height="100%" width="100%" fill="url(%23grad)" opacity="0.20000000298023224"/><defs><radialGradient id="grad" gradientUnits="userSpaceOnUse" cx="0" cy="0" r="10" gradientTransform="matrix(4.4087e-15 33.6 -72 2.0574e-15 720 336)"><stop stop-color="rgba(255,255,255,0)" offset="0"/><stop stop-color="rgba(255,255,255,1)" offset="1"/></radialGradient></defs></svg>'),
    url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 672" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><rect x="0" y="0" height="100%" width="100%" fill="url(%23grad)" opacity="0.20000000298023224"/><defs><radialGradient id="grad" gradientUnits="userSpaceOnUse" cx="0" cy="0" r="10" gradientTransform="matrix(-27.531 -28.999 12.281 -17.117 177.38 169.51)"><stop stop-color="rgba(255,255,255,0)" offset="0"/><stop stop-color="rgba(255,255,255,1)" offset="1"/></radialGradient></defs></svg>'),
    url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 672" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><rect x="0" y="0" height="100%" width="100%" fill="url(%23grad)" opacity="0.5"/><defs><radialGradient id="grad" gradientUnits="userSpaceOnUse" cx="0" cy="0" r="10" gradientTransform="matrix(43.72 -80.519 87.423 28.459 811.94 805.19)"><stop stop-color="rgba(255,255,255,0)" offset="0"/><stop stop-color="rgba(255,255,255,1)" offset="1"/></radialGradient></defs></svg>'),
    url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 672" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><rect x="0" y="0" height="100%" width="100%" fill="url(%23grad)" opacity="0.20000000298023224"/><defs><radialGradient id="grad" gradientUnits="userSpaceOnUse" cx="0" cy="0" r="10" gradientTransform="matrix(-32.527 7.0875 -15.187 -39.262 1045.3 601.13)"><stop stop-color="rgba(255,255,255,0)" offset="0"/><stop stop-color="rgba(255,255,255,1)" offset="1"/></radialGradient></defs></svg>');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.about-message-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-end;
}

.about-message-content {
  display: flex;
  gap: 80px;
  align-items: flex-end;
  width: 100%;
}

.about-message-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
}

.message-tag {
  background-color: var(--pink-50);
  color: var(--text-highlight);
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 19px;
  width: fit-content;
  letter-spacing: 0.96px;
}

.message-subtitle {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-gray);
  letter-spacing: 1.62px;
  line-height: 1.4;
  padding: 24px 0;
}

.message-body {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-gray);
  letter-spacing: 0.64px;
  line-height: 1.75;
}

.message-body p {
  margin: 0;
}

.message-author {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-gray);
  letter-spacing: 1.17px;
  line-height: 1.75;
}

/* About page specific styles */
.about-message-tag {
  background: linear-gradient(90deg, #EF9884 0%, #EA709E 100%);
  color: #FEF2F2;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 19px;
  width: fit-content;
  letter-spacing: 0.96px;
}

.about-message-subtitle {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-gray);
  letter-spacing: 1.62px;
  line-height: 1.4;
  padding: 24px 0;
}

.about-message-body {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-gray);
  letter-spacing: 0.64px;
  line-height: 1.75;
}

.about-message-body p {
  margin: 0;
}

.about-message-author {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-gray);
  letter-spacing: 1.17px;
  line-height: 1.75;
}

.about-message-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
}

.message-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: auto;
  overflow: hidden;
}

.message-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Service Page Styles
   ========================================================================== */

/* ==========================================================================
   Price Page Styles
   ========================================================================== */

/* Price Page Hero Section */
.price-page-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(90deg, rgba(135, 37, 132, 0.3) 0%, rgba(135, 37, 132, 0.3) 100%), url('assets/images/price-background.png');
  background-position: 0% 0%, 0% 0%, center center;
  background-size: auto, auto, cover;
  background-repeat: no-repeat;
  padding: 120px 40px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-page-hero-container {
  max-width: 1200px;
  width: 100%;
}

.price-page-hero-content {
  text-align: center;
}

.price-page-hero-text {
  text-align: center;
}

.price-page-hero-text h1 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.price-page-hero-text h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}

/* Service Page Hero Section */
.service-page-hero {
  background-image: url('assets/images/Service_FV.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 120px 40px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-page-hero-container {
  max-width: 1200px;
  width: 100%;
}

.service-page-hero-content {
  text-align: center;
}

.service-page-hero-text {
  text-align: center;
}

.service-page-hero-text h1 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.service-page-hero-text h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}

/* Service Page Intro Section */
.service-page-intro {
  padding: 80px 0;
  background-color: #fff9f9;
}

.service-page-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 180px;
  box-sizing: border-box;
}

.service-page-intro-content {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.service-page-intro-star {
  position: absolute;
  width: 350px;
  height: 350px;
  pointer-events: none;
}

.service-page-intro-star-left {
  left: -100px;
  top: -27px;
}

.service-page-intro-star-right {
  right: -100px;
  top: 84px;
}

.service-page-intro-star img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-page-intro-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.service-page-intro-main-text {
  text-align: center;
}

.service-page-intro-quote {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #FFAEC0;
  line-height: 1.8;
  margin: 0;
}

.service-page-intro-subtitle {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #FFAEC0;
  line-height: 1.8;
  margin: 0;
}

.service-page-intro-description {
  text-align: center;
}

.service-page-intro-description p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #8C9FB9;
  line-height: 2;
  margin: 0;
}

/* Service Page Sitter Section */
.service-page-sitter {
  padding: 0 0 120px 0;
  background-color: #fff9f9;
  position: relative;
}

.service-page-sitter-container {
  width: 100%;
  padding: 0 180px;
  position: relative;
  box-sizing: border-box;
}

.service-page-sitter-star {
  position: absolute;
  right: -100px;
  top: -108px;
  width: 350px;
  height: 350px;
  pointer-events: none;
}

.service-page-sitter-star img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-page-sitter-header {
  background-image: linear-gradient(90deg, #FFAEC0 32.894%, rgba(255, 174, 192, 0) 65.787%), url('assets/images/sitter-service-01.png');
  background-position: 0% 0%, 50% 50%;
  background-size: auto, cover;
  background-repeat: no-repeat;
  border: 1px solid #FFAEC0;
  border-radius: 16px;
  padding: 40px 48px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-page-sitter-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-page-sitter-text h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.72px;
  line-height: 1.3;
}

.service-page-sitter-text p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.75;
  margin: 0;
  max-width: 360px;
}

.service-page-sitter-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.service-page-sitter-card {
  flex: 1;
  min-width: 333px;
  max-width: 333px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #FFAEC0;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-page-sitter-card-header {
  display: flex;
  gap: 0;
  align-items: flex-start;
}

.service-page-sitter-card-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-page-sitter-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ベビーシッターアイコンの特定サイズ */
.service-page-sitter-card-icon img[src*="babysitter-icon.svg"] {
  width: 42px;
  height: 59px;
}

.service-page-sitter-card-title {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-page-sitter-card-title h4 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFAEC0;
  margin: 0;
  letter-spacing: 0.72px;
  line-height: 1.3;
}

.service-page-sitter-card-tag {
  border: 1px solid #FFAEC0;
  border-radius: 4px;
  padding: 1px 8px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #FFAEC0;
  line-height: 1.75;
  width: 100%;
  text-align: center;
}

.service-page-sitter-card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-page-sitter-card-content p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #8C9FB9;
  line-height: 1.75;
  margin: 0;
}

.service-page-sitter-card-divider {
  height: 1px;
  background-color: #e0e0e0;
  width: 100%;
}

.service-page-sitter-card-price {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #8C9FB9;
  line-height: 1.75;
  margin: 0;
}

.service-page-sitter-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.service-page-sitter-tag {
  border: 1px solid #8C9FB9;
  border-radius: 20px;
  padding: 1px 12px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #8C9FB9;
  line-height: 1.75;
  white-space: nowrap;
}

/* Service Page Education Section */
.service-page-education {
  padding: 0 0 120px 0;
  background-color: #fff9f9;
  position: relative;
}

.service-page-education-container {
  width: 100%;
  padding: 0 180px;
  position: relative;
  box-sizing: border-box;
}

.service-page-education-star {
  position: absolute;
  left: -170px;
  top: 195px;
  width: 350px;
  height: 350px;
  pointer-events: none;
}

.service-page-education-star img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-page-education-header {
  background-image: linear-gradient(90deg, #FFAEC0 34.583%, rgba(255, 174, 192, 0.09) 56.62%), url('assets/images/education-background.png');
  background-position: 0% 0%, 100% 75.37%;
  background-size: auto, 64.2% 236.5%;
  background-repeat: no-repeat;
  border: 1px solid #FFAEC0;
  border-radius: 16px;
  padding: 0 48px 40px 48px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-page-education-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-page-education-title {
  display: flex;
  gap: 32px;
  align-items: flex-end;
  width: 100%;
}

.service-page-education-title h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.72px;
  line-height: 1.3;
}

.service-page-education-popular {
  position: relative;
  width: 70px;
  height: 70px;
}

.service-page-education-popular-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
}

.service-page-education-popular-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-page-education-popular-text {
  position: absolute;
  top: 13px;
  left: 16px;
  display: flex;
  flex-direction: column;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FF95AC;
  line-height: 1.2;
  z-index: 1;
}

.service-page-education-text p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.75;
  margin: 0;
  max-width: 360px;
}

.service-page-education-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.service-page-education-card {
  flex: 0 0 333px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #FFAEC0;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-page-education-card-header {
  display: flex;
  gap: 0;
  align-items: flex-start;
}

.service-page-education-card-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-page-education-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-page-education-card-icon img[src*="elementary-exam.svg"] {
  width: 52.73px;
  height: 52px;
}

.service-page-education-card-icon img[src*="habit-formation-lesson-icon.svg"] {
  width: 57.39px;
  height: 44.96px;
}

.service-page-education-card-icon img[src*="online-consultation-lesson-icon.svg"] {
  width: 59.87px;
  height: 56.58px;
}

.service-page-education-card-icon img[src*="education-icon-1.svg"] {
  width: 60px;
  height: 60px;
}

.service-page-education-card-icon img[src*="education-icon-2.svg"] {
  width: 60px;
  height: 60px;
}

.service-page-education-card-title {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-page-education-card-title h4 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFAEC0;
  margin: 0;
  letter-spacing: 0.72px;
  line-height: 1.3;
}

.service-page-education-card-tag {
  border: 1px solid #FFAEC0;
  border-radius: 4px;
  padding: 1px 8px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #FFAEC0;
  line-height: 1.75;
  width: 100%;
  text-align: center;
}

.service-page-education-card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-page-education-card-content p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #8C9FB9;
  line-height: 1.75;
  margin: 0;
}

.service-page-education-card-divider {
  height: 1px;
  background-color: #e0e0e0;
  width: 100%;
}

.service-page-education-card-price {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #8C9FB9;
  line-height: 1.75;
  margin: 0;
}

.service-page-education-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.service-page-education-tag {
  border: 1px solid #8C9FB9;
  border-radius: 20px;
  padding: 1px 12px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #8C9FB9;
  line-height: 1.75;
  white-space: nowrap;
}

/* Service Page Event Sitter Section */
.service-page-event-sitter {
  padding: 0 0 80px 0;
  background-color: #fff9f9;
  position: relative;
}

.service-page-event-sitter-container {
  margin: 0 auto;
  padding: 0 180px;
  position: relative;
}

.service-page-event-sitter-star {
  position: absolute;
  right: -100px;
  top: 195px;
  width: 350px;
  height: 350px;
  pointer-events: none;
}

.service-page-event-sitter-star img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-page-event-sitter-header {
  background-image: linear-gradient(90deg, #FFAEC0 32.894%, rgba(255, 174, 192, 0) 65.787%), url('assets/images/event-background.png');
  background-position: 0% 0%, 70% 50%;
  background-size: auto, cover;
  background-repeat: no-repeat;
  border: 1px solid #FFAEC0;
  border-radius: 16px;
  padding: 40px 48px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-page-event-sitter-image {
  flex: 0 0 300px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}

.service-page-event-sitter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-page-event-sitter-text h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-page-event-sitter-text p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.service-page-event-sitter-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-page-event-sitter-text h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.72px;
  line-height: 1.3;
}

.service-page-event-sitter-text p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.75;
  margin: 0;
  max-width: 360px;
}

.service-page-event-sitter-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.service-page-event-sitter-card {
  flex: 0 0 333px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #FFAEC0;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-page-event-sitter-card-header {
  display: flex;
  gap: 0;
  align-items: flex-start;
}

.service-page-event-sitter-card-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.service-page-event-sitter-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* イベント託児所アイコン（Figma準拠サイズ） */
.service-page-education-card-icon img[src*="event-childcare-icon.svg"] {
  width: 69.888px;
  height: 69.888px;
}

/* 出張託児所アイコン（縦横54.52） */
.service-page-education-card-icon img[src*="business-trip-childcare-icon.svg"] {
  width: 54.52px;
  height: 54.52px;
}

.service-page-event-sitter-card-title {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-page-event-sitter-card-title h4 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFAEC0;
  margin: 0;
  letter-spacing: 0.72px;
  line-height: 1.3;
}

.service-page-event-sitter-card-tag {
  border: 1px solid #FFAEC0;
  border-radius: 4px;
  padding: 1px 8px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #FFAEC0;
  line-height: 1.75;
  width: 100%;
  text-align: center;
}

.service-page-event-sitter-card-content p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #8C9FB9;
  line-height: 1.75;
  margin: 0;
}

.service-page-event-sitter-card-divider {
  height: 1px;
  background-color: #e0e0e0;
  width: 100%;
}

.service-page-event-sitter-card-price {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #8C9FB9;
  line-height: 1.75;
  margin: 0;
}

.service-page-event-sitter-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.service-page-event-sitter-tag {
  border: 1px solid #8C9FB9;
  border-radius: 20px;
  padding: 1px 12px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #8C9FB9;
  line-height: 1.75;
  white-space: nowrap;
}

/* Service Page Housework Section */
.service-page-housework {
  padding: 80px 0;
  background-color: var(--white);
}

.service-page-housework-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.service-page-housework-header {
  background-color: var(--text-pink);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  color: var(--white);
}

.service-page-housework-image {
  flex: 0 0 300px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}

.service-page-housework-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-page-housework-text h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-page-housework-text p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.service-page-housework-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-page-housework-card {
  background-color: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
}

.service-page-housework-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-page-housework-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-page-housework-card h4 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.service-page-housework-card p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Service Page Parenting Consultation Section */
.service-page-parenting-consultation {
  padding: 0 0 80px 0;
  background-color: #fff9f9;
  position: relative;
}

.service-page-parenting-consultation-container {
  margin: 0 auto;
  padding: 0 180px;
  position: relative;
}

.service-page-parenting-consultation-star {
  position: absolute;
  left: -170px;
  top: 295px;
  width: 350px;
  height: 350px;
  pointer-events: none;
}

.service-page-parenting-consultation-star img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-page-parenting-consultation-header {
  background-image: linear-gradient(90deg, #FFAEC0 32.894%, rgba(255, 174, 192, 0) 65.787%), url('assets/images/sitter-service-04.png');
  background-position: 0% 0%, 50% 50%;
  background-size: auto, cover;
  background-repeat: no-repeat;
  border: 1px solid #FFAEC0;
  border-radius: 16px;
  padding: 40px 48px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-page-parenting-consultation-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-page-parenting-consultation-text h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.72px;
  line-height: 1.3;
}

.service-page-parenting-consultation-text p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.75;
  margin: 0;
  max-width: 360px;
}

.service-page-parenting-consultation-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.service-page-parenting-consultation-card {
  flex: 0 0 333px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #FFAEC0;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Service Page Maternity Section */
.service-page-maternity {
  padding: 80px 0;
  background-color: #F3E5F5;
}

.service-page-maternity-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.service-page-maternity-header {
  background-color: var(--text-pink);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  color: var(--white);
}

.service-page-maternity-image {
  flex: 0 0 300px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}

.service-page-maternity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-page-maternity-text h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-page-maternity-text p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.service-page-maternity-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-page-maternity-item {
  background-color: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
}

.service-page-maternity-item-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-page-maternity-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-page-maternity-item-content h4 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.service-page-maternity-item-content p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.6;
  text-align: left;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--white);
}

.footer-main {
  padding: 80px 180px;
  display: flex;
  gap: 56px;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.logo-image {
  width: 90px;
  height: 90px;
  overflow: hidden;
}

.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.logo-text {
  font-size: 24px;
  font-weight: 500;
  color: #56779c;
}

.footer-nav {
  display: flex;
  gap: 40px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  letter-spacing: 0.42px;
}

.footer-nav a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding-left: 16px;
}

.footer-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1em;
  background-color: var(--text-gray);
}

.footer-nav a:hover {
  color: var(--text-pink);
}

.footer-bottom {
  background-color: var(--text-pink);
  padding: 12px 0;
  text-align: center;
}

.footer-copyright {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
/* デスクトップのみ表示 */
.desktop-only {
  display: inline;
}

/* モバイルのみ表示 */
.sp-only {
  display: none;
}

br.sp-only {
  display: none;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1200px) {
  .about-hero-container,
  .strengths-container,
  .works-container {
    flex-direction: column;
    gap: 40px;
  }

/* ==========================================================================
   Section Divider
   ========================================================================== */
.section-divider {
  width: 100%;
  height: 87px;
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
}

.section-divider img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.strengths-container {
    align-items: center;
    text-align: center;
  }

  .hero {
    padding: 0 20px 60px;
  }

  .about,
  .strengths,
  .service,
  .works,
  .contact,
  .footer-main {
    padding: 60px 20px;
  }

  .service-page-sitter-container,
  .service-page-education-container,
  .service-page-housework-container,
  .service-page-maternity-container,
  .service-page-event-sitter-container,
  .service-page-parenting-consultation-container {
    padding: 0 20px;
}

  .service {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .service-container {
    max-width: 900px;
    width: 100%;
  }

  .works-container {
    max-width: 900px;
  }

  .star-icon {
    align-self: center;
  }

  .section-title {
    align-self: center;
  }

  .star-icon {
    align-self: center;
  }

  .strengths-content {
    align-items: center;
  }

  .works-content {
    align-items: center;
    align-self: center;
  }

  .service-header {
    align-items: center;
  }

  .strengths-header {
    align-items: center;
  }

  .service-header-content {
    align-items: center;
  }

  .works-header {
    align-items: center;
  }

  .contact-header-content {
    align-items: center;
  }

  .section-title-en {
    text-align: center;
  }

  .about-hero {
    background-size: cover;
    background-position: center center;
    min-height: 400px;
  }

  .about-hero-container {
    margin-top: 280px;
  }

  .about-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-value-content {
    flex-direction: column;
  }

  .about-value-tagline {
    align-items: center;
    text-align: center;
  }

  .about-message-content {
    flex-direction: column;
    align-items: center;
  }

  .about-message-tag {
    align-self: center;
  }

  .about-works-items {
    flex-direction: column;
  }

  .about-value-visual {
    overflow: visible;
    margin: 0;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .about-value-visual img {
    width: 616px;
    height: auto;
  }

  .about-hero-image-1 {
    top: 20%;
    left: 10%;
    transform: translateX(-40%);
    width: 161px;
    height: 161px;
  }

  .about-hero-image-2 {
    top: 10%;
    right: 10%;
    width: 37px;
    height: 37px;
  }

  .about-hero-image-3 {
    top: 30%;
    right: 25%;
    width: 50px;
    height: 50px;
  }

  .about-hero-image-4 {
    top: 6%;
    right: 28%;
    width: 293px;
    height: 293px;
    border-radius: 50%;
    overflow: hidden;
  }

  .about-hero-image-5 {
    top: 18%;
    left: 34%;
    width: 198px;
    height: 198px;
    border-radius: 50%;
    overflow: hidden;
  }

  .about-hero-image-6 {
    bottom: 12%;
    left: 14%;
    width: 153px;
    height: 153px;
  }

  .about-hero-image-7 {
    bottom: 25%;
    right: -2%;
    width: 194px;
    height: 194px;
    border-radius: 50%;
    overflow: hidden;
  }

  .btn {
    width: 216px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }



  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .section-title-jp {
    font-size: 24px;
  }

  .service {
    align-items: center;
  }

  .service-container {
    max-width: 900px;
  }

  .strength-card {
    text-align: center;
  }

  .strength-content {
    text-align: left;
  }

  .strength-image {
    width: 100%;
    max-width: 300px;
  }


  .works-decoration {
    display: none;
  }

  .strengths-decoration {
    display: none;
  }

  .work-image img[src*="voice-01.png"] {
    content: url('assets/images/voice01_SP.png');
  }

  .work-image img[src*="voice-02.png"] {
    content: url('assets/images/voice02_SP.png');
  }

  .work-image img[src*="voice-03.png"] {
    content: url('assets/images/voice03_SP.png');
  }

  .contact-container {
    flex-direction: column;
    gap: 40px;
  }

  .contact-buttons {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .contact-background {
    flex-direction: column;
    gap: 40px;
    padding: 40px;
    justify-content: center;
  }
  .contact-button-group {
    flex-direction: column;
  }

  .hero-side-text {
    display: none;
  }

  .hero-sns-icons {
    display: none;
  }

  .contact-header {
    align-items: center;
    text-align: center;
  }

  .contact-subtitle {
    width: auto;
  }

  .footer-main {
    flex-direction: column;
    gap: 40px;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* モバイル対応：セクション区切り線の高さ調整 */
  .section-divider {
    height: 60px;
  }
}

@media (max-width: 820px) {
  .sp-only {
    display: inline;
  }

  .pc-only {
    display: none;
  }
  
  .header {
    justify-content: flex-end;
    padding: 0 20px;
  }

  .header-logo-overlay {
    top: -90px;
  }

  .header-container {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .logo-container {
    width: 192px;
    height: 192px;
    padding: 0 10px 20px;
  }

  .logo-svg {
    width: 70px;
    height: 70px;
  }

  .logo-title {
    font-size: 10px;
  }

  .logo-subtitle {
    font-size: 6px;
  }

  .hero {
    padding: 0 20px;
    min-height: auto;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-content {
    flex-direction: column;
    gap: 20px;
  }

  .hero-main-image {
    max-width: 100%;
  }

  .hero-image-pc {
    display: none;
  }

  .hero-image-sp {
    display: block;
    margin-top: 60px;
  }


  .hero-sns-icons {
    justify-content: center;
  }

  .sns-icons {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 40px;
  }

  .section-title-jp {
    font-size: 20px;
  }

  .about-hero-description {
    font-size: 16px;
  }

  .about-hero-image-1 {
    width: 80px;
    height: 80px;
    right: 20%;
    top: 15%;
  }

  .about-hero-image-2 {
    width: 20px;
    height: 20px;
    bottom: 15%;
    right: 20%;
  }

  .about-hero-image-3 {
    width: 32px;
    height: 32px;
    top: 30%;
    right: 25%;
  }

  .about-hero-image-4 {
    width: 300px;
    height: 300px;
    top: 5%;
    right: 12%;
  }

  .about-hero-image-5 {
    width: 200px;
    height: 200px;
    bottom: 8%;
    left: 24%;
  }

  .about-hero-image-6 {
    width: 153px;
    height: 153px;
    bottom: 4%;
    left: 8%;
  }

  .about-hero-image-7 {
    width: 100px;
    height: 100px;
    bottom: 26%;
    right: -2%;
  }

  .strength-card {
    flex-direction: column;
  }

  .strength-content h3,
  .strength-content h4 {
    text-align: center;
  }

  .strength-image {
    max-width: none;
  }

  .service-icons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-icon {
    width: 100px;
    height: 100px;
  }

  .service-row {
    flex-direction: column;
  }

  .works-grid {
    flex-direction: column;
  }

  /* 768px以下でサービスカードの画像をSP版に切り替え */
  .main-service-image[src*="service-card01_PC.png"] {
    content: url('assets/images/service-card01_SP.png');
  }

  .educational-service-image[src*="service-card02_PC.png"] {
    content: url('assets/images/service-card02_SP.png');
  }

  .event-service-image[src*="service-card03_PC.png"] {
    content: url('assets/images/service-card03_SP.png');
  }

  .consultation-service-image[src*="service-card04_PC.png"] {
    content: url('assets/images/service-card04_SP.png');
  }

  .phone-text {
    font-size: 32px;
  }

  .contact {
    padding: 40px 20px;
  }

  .contact-background {
    padding: 20px;
    border-radius: 40px;
  }

  .contact-subtitle {
    font-size: 24px;
  }

  .contact-description {
    font-size: 14px;
  }

  /* スマートフォン対応：セクション区切り線の高さ調整 */
  .section-divider {
    height: 45px;
  }

  .contact-button-group {
    flex-direction: column;
    gap: 20px;
  }

  .btn-line {
    max-width: none;
    width: 100%;
  }



  .phone-text {
    font-size: 24px;
    width: auto;
  }

  /* About page 768px以下 */
  .about-hero {
    padding: 40px 20px;
    background-size: cover;
    background-position: center center;
    min-height: 300px;
  }

  .about-page-hero-text h1 {
    font-size: 14px;
  }

  .about-page-hero-text h2 {
    font-size: 28px;
  }

  .about-value {
    padding: 40px 0;
  }

  .about-value-container {
    padding: 0;
    overflow: hidden;
  }

  .about-value-text {
    padding: 0 20px;
  }

  .about-works {
    padding: 0 20px;
  }

  .about-works-container {
    padding: 50px 20px;
  }

  .about-message {
    padding: 40px 20px;
  }

  /* Service Page 768px以下 */
  .service-page-hero {
    padding: 40px 20px;
    background-size: cover;
    background-position: center center;
    min-height: 300px;
  }

  .service-page-hero-text h2 {
    font-size: 40px;
  }

  .service-page-intro {
    padding: 60px 0;
  }

  .service-page-intro-container {
    padding: 0 20px;
  }

  .service-page-intro-star {
    display: none;
  }

  .service-page-intro-quote {
    font-size: 40px;
  }

  .service-page-intro-subtitle {
    font-size: 24px;
  }

  .service-page-intro-description p {
    font-size: 14px;
  }

  .service-page-sitter,
  .service-page-education,
  .service-page-housework,
  .service-page-maternity {
    padding: 60px 0;
  }

  .service-page-sitter-container,
  .service-page-education-container,
  .service-page-housework-container,
  .service-page-maternity-container,
  .service-page-event-sitter-container {
    padding: 0 20px;
  }
  
  /* より具体的なセレクタで確実に適用 */
  .service-page-education .service-page-education-container {
    padding: 0 20px;
  }

  .service-page-sitter-star {
    display: none;
  }

  .service-page-sitter-header {
    padding: 32px;
    height: 336px;
    background-image: url('assets/images/service-header-SP.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid #FFAEC0;
    border-radius: 16px;
    box-shadow: 0px 0px 50px 0px rgba(231,169,169,0.35);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  /* 768px以下でのヘッダー背景画像とテキストスタイル統一 */
  .service-page-sitter-header {
    padding: 32px;
    height: 336px;
    background-image: url('assets/images/service-header-SP.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid #FFAEC0;
    border-radius: 16px;
    box-shadow: 0px 0px 50px 0px rgba(231,169,169,0.35);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .service-page-sitter-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.72px;
    line-height: 1.3;
    margin: 0;
  }

  .service-page-sitter-text p {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.75;
    margin: 0;
  }

  .service-page-parenting-consultation-header {
    padding: 32px;
    height: 336px;
    background-image: url('assets/images/service-parenting-consultation-header.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid #FFAEC0;
    border-radius: 16px;
    box-shadow: 0px 0px 50px 0px rgba(231,169,169,0.35);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .service-page-parenting-consultation-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.72px;
    line-height: 1.3;
    margin: 0;
  }

  .service-page-parenting-consultation-text p {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.75;
    margin: 0;
  }

  .service-page-education-header {
    padding: 32px;
    height: 336px;
    background-image: url('assets/images/service-education-header.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid #FFAEC0;
    border-radius: 16px;
    box-shadow: 0px 0px 50px 0px rgba(231,169,169,0.35);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .service-page-education-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.72px;
    line-height: 1.3;
    margin: 0;
  }

  .service-page-education-text p {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.75;
    margin: 0;
  }

  .service-page-education-popular {
    display: none;
  }

  .service-page-event-sitter-star,
  .service-page-parenting-consultation-star {
    display: none;
  }

  .service-page-event-sitter-header {
    padding: 32px;
    height: 336px;
    background-image: url('assets/images/service-event-sitter.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid #FFAEC0;
    border-radius: 16px;
    box-shadow: 0px 0px 50px 0px rgba(231,169,169,0.35);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .service-page-event-sitter-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.72px;
    line-height: 1.3;
    margin: 0;
  }

  .service-page-event-sitter-text p {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.75;
    margin: 0;
  }

  .service-page-sitter-cards {
    flex-direction: column;
    gap: 30px;
  }

  /* 768px以下でのサービスセクションpadding調整 */
  .service-page-education,
  .service-page-event-sitter {
    padding: 0 0 80px 0;
  }

  /* 最後のセクション（育児相談）のみpadding-bottom: 24px */
  .service-page-parenting-consultation {
    padding: 0 0 80px 0;
  }

  .price-page-hero {
    padding: 40px 20px;
    background-size: auto, auto, cover;
    background-position: 0% 0%, 0% 0%, center center;
    min-height: 300px;
  }

  .price-page-hero-text h1 {
    font-size: 14px;
  }

  .price-page-hero-text h2 {
    font-size: 32px;
  }

  .price-page-main {
    padding: 40px 0;
  }

  .price-page-main-container {
    padding: 0 20px !important;
  }

  .price-page-intro {
    margin-bottom: 40px;
  }

  .price-page-intro h2 {
    font-size: 24px;
  }

  .price-tables-section {
  margin-bottom: 60px;
}

.price-table-container {
  flex: 1;
  margin-bottom: 40px;
}

.option-table-container {
  margin-top: 40px;
}

  .price-tables-row {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .price-table {
    padding: 24px;
  }

  .price-table-tag {
    font-size: 12px;
    padding: 3px 16px 4px;
  }

  .service-name,
  .service-price {
    font-size: 14px;
  }

  .visitor-fee {
    font-size: 14px;
    padding: 12px;
  }

  .annual-fee-group {
    flex-direction: column;
    gap: 8px;
  }

  .pricing-plans-container {
    flex-direction: column;
    gap: 40px !important;
  }

  .formula-group {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .formula-item {
    font-size: 14px;
    padding: 8px 16px;
    min-width: auto;
    width: 100%;
  }

  .pricing-plan-header {
    padding: 8px 16px;
  }

  .pricing-plan-header h3 {
    font-size: 18px;
  }

  .pricing-plan-header p {
    font-size: 12px;
  }

  .pricing-plan-content {
    padding: 16px 20px;
  }

  .terms-section {
    margin-bottom: 60px;
  }

  .terms-section h2,
  .cancel-policy-section h2 {
    font-size: 20px;
  }

  .terms-content,
  .cancel-policy-content {
    padding: 20px;
  }

  .service-page-sitter-card-title h4 {
    font-size: 20px;
  }

  .service-page-education-header,
  .service-page-housework-header,
  .service-page-maternity-header {
    flex-direction: column;
    gap: 30px;
    padding: 30px;
  }

  .service-page-education-image,
  .service-page-housework-image,
  .service-page-maternity-image {
    flex: none;
    width: 100%;
    height: 150px;
  }

  .service-page-housework-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .service-page-education-items {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-page-maternity-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .sp-only {
    display: inline;
  }

  .pc-only {
    display: none;
  }

  .about-hero {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(90deg, rgba(135, 37, 132, 0.3) 0%, rgba(135, 37, 132, 0.3) 100%), url('assets/images/about-background-sp.png');
  }

  .price-page-hero {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(90deg, rgba(135, 37, 132, 0.3) 0%, rgba(135, 37, 132, 0.3) 100%), url('assets/images/price-background-sp.png');
    background-size: auto, auto, cover;
    background-position: 0% 0%, 0% 0%, center center;
    padding: 40px 20px;
    min-height: 300px;
  }

  .about-hero-image-4 {
    width: 293px;
    height: 293px;
    top:0%;
    right:-2%;
  }

  .about-hero-image-5 {
    width: 198px;
    height: 198px;
    bottom: 8%;
    left: 10%;
  }
}

@media (max-width: 430px) {
  /* モバイル用ユーティリティクラス（430px以下） */
  .desktop-only {
    display: none;
  }

  .sp-only {
    display: inline;
  }

  br.sp-only {
    display: block;
  }
}

@media (max-width: 500px) {
  .sp-only {
    display: inline;
  }

  .pc-only {
    display: none;
  }

  .service-page-hero {
    background-image: url('assets/images/service_FV_SP.png') !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }

  .option-grid {
    display: flex !important;
    flex-direction: column;
    gap: 0;
  }

  .option-grid .price-list-item {
    min-width: auto;
    max-width: none;
  }
}

@media (max-width: 745px) {
  .service-page-sitter-card {
    min-width: 100%;
    max-width: 100%;
  }

  .service-page-education-card {
    flex: 0 0 100%;
  }

  .service-page-event-sitter-card {
    flex: 0 0 100%;
  }

  .service-page-parenting-consultation-card {
    flex: 0 0 100%;
  }
}

@media (max-width: 820px) {
  .price-tables-row {
    flex-direction: column;
  }
  
  .option-grid {
    display: flex !important;
    flex-direction: column;
    gap: 0;
  }
  
  .option-grid .price-list-item {
    min-width: auto;
    max-width: none;
  }
  
  .pricing-plans-container {
    flex-direction: column;
  }
  
  .terms-content {
    flex-direction: column;
    gap: 32px;
    padding: 24px;
  }
  
  .terms-column ul {
    margin: 0;
  }
}

@media (max-width: 600px) {
  .terms-content {
    flex-direction: column;
    gap: 32px;
    padding: 24px;
  }
  
  .terms-column ul {
    margin: 0;
  }
  
  .option-grid {
    display: flex !important;
    flex-direction: column;
    gap: 0;
  }
  
  .option-grid .price-list-item {
    min-width: auto;
    max-width: none;
  }
}

@media (max-width: 375px) {
  .about-hero-image-1 {
    width: 80px;
    height: 80px;
    right: -5%;
    top: 15%;
  }

  .about-hero-image-2 {
    width: 20px;
    height: 20px;
    bottom: 15%;
    right: 20%;
  }

  .about-hero-image-3 {
    width: 32px;
    height: 32px;
    top: 26%;
    right: 25%;
  }

  .about-hero-image-4 {
    width: 283px;
    height: 283px;
    top: -5%;
    right: -8%;
  }

  .about-hero-image-5 {
    width: 188px;
    height: 188px;
    top: 3%;
    left: 8%;
  }

  .about-hero-image-6 {
    width: 153px;
    height: 153px;
    bottom: 12%;
    left: -14%;
  }

  .about-hero-image-7 {
    width: 100px;
    height: 100px;
    bottom: 48%;
    right: -4%;
  }

  /* Price Page Hero 375px以下 */
  .price-page-hero {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(90deg, rgba(135, 37, 132, 0.3) 0%, rgba(135, 37, 132, 0.3) 100%), url('assets/images/price-background-sp.png') !important;
    background-size: auto, auto, cover !important;
    background-position: 0% 0%, 0% 0%, center center !important;
    background-repeat: no-repeat !important;
    padding: 20px 16px;
  }

  /* Price wrapper 375px以下でflex-directionをcolumnに変更 */
  .price-wrapper {
    flex-direction: column;
    gap: 4px;
  }

  /* Price table 375px以下でpaddingを調整 */
  .price-table {
    padding: 32px 20px 24px 20px !important;
  }

  /* Flow page 375px以下 */
  .flow-page-hero {
    padding: 60px 20px;
    background-size: auto, cover;
    background-position: 0% 0%, center center;
    height: 250px;
  }

  .flow-page-hero-text h1 {
    font-size: 14px;
  }

  .flow-page-hero-text h2 {
    font-size: 24px;
  }

  .flow-page-intro {
    padding: 60px 0;
  }

  .flow-page-intro-container {
    padding: 0 20px;
  }

  .flow-page-intro-text h2 {
    font-size: 24px;
  }

  .flow-page-intro-text p {
    font-size: 14px;
  }

  .flow-steps {
    padding: 60px 0;
  }

  .flow-steps-container {
    padding: 0 20px;
  }

  .flow-steps-header {
    margin-bottom: 60px;
  }

  .flow-steps-header h2 {
    font-size: 24px;
    color: #FF95AC;
  }

  .flow-steps-header p {
    font-size: 14px;
  }

  .flow-steps-content {
    gap: 60px;
  }

  .flow-step {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .flow-step-number {
    font-size: 48px;
    width: auto;
  }

  .flow-step-content {
    flex-direction: column;
    gap: 24px;
  }

  .flow-step-icon {
    width: 60px;
    height: 60px;
  }

  .flow-step-icon img {
    width: 30px;
    height: 30px;
  }

  .flow-step-text h3 {
    font-size: 20px;
  }

  .flow-step-text p {
    font-size: 14px;
  }

  .flow-details {
    padding: 60px 0;
  }

  .flow-details-container {
    padding: 0 20px;
  }

  .flow-details-content h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .flow-detail-item {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
    text-align: center;
  }

  .flow-detail-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
  }

  .flow-detail-icon img {
    width: 25px;
    height: 25px;
  }

  .flow-detail-text h3 {
    font-size: 18px;
  }

  .flow-detail-text li {
    font-size: 14px;
    text-align: left;
  }

  /* 375px以下のシッターサービス紹介セクション */
  .service {
    padding: 80px 20px;
  }

  .service-container {
    gap: 40px;
  }

  .service-header {
    align-items: center;
    text-align: center;
  }

  .service-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .service-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }

  .service-text-section {
    gap: 16px;
  }

  .service-text-title {
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 0.72px;
  }

  .service-description {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-blue);
  }

  .service-icons {
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .service-icon {
    width: 92px;
    height: 92px;
    gap: 2.5px;
  }

  .icon-content {
    width: 53.6px;
    height: 53.6px;
  }

  .icon-label {
    font-size: 12px;
    line-height: 1.2;
  }

  .service-additional-icons {
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .service-additional-icon {
    width: 132px;
    min-height: 32px;
    padding: 8px 16px;
  }

  .additional-icon-label {
    font-size: 12px;
    line-height: 1.2;
  }

  .service-button-section {
    width: 100%;
    align-items: center;
  }

  .view-more-button {
    width: 100%;
    padding: 16px 32px;
    gap: 16px;
  }

  .button-text {
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.42px;
  }

  .button-arrow {
    width: 8px;
    height: 10px;
  }

  /* 人気バッジの調整 */
  .popular-badge {
    width: 65px;
    height: 70px;
  }

  .popular-badge img {
    width: 100%;
    height: 100%;
  }

  /* About page 375px以下 */
  .about-hero {
    padding: 20px 16px;
    background-size: cover;
    background-position: center center;
  }

  .about-hero-container {
    margin-top: 120px;
  }

  .about-page-hero-text h1 {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
  }

  .about-page-hero-text h2 {
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 0.72px;
  }

  .about-value {
    padding: 40px 0;
  }

  .about-value-container {
    padding: 30px 0;
    overflow: hidden;
  }

  .about-value-content {
    gap: 30px;
  }

  .about-value-tag {
    font-size: 10px;
    padding: 3px 12px;
  }

  .about-value-subtitle {
    font-size: 14px;
    line-height: 1.4;
  }

  .about-value-title {
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 1.44px;
    background: linear-gradient(77.84deg, rgba(239, 152, 132, 1) 0.67%, rgba(234, 112, 158, 1) 96.97%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .about-value-title span {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-image: linear-gradient(77.84deg, rgba(239, 152, 132, 1) 0.67%, rgba(234, 112, 158, 1) 96.97%);
  }

  /* ミッションセクションのグラデーション（モバイル） */
  .about-value-tagline:nth-of-type(2) .about-value-title {
    background: linear-gradient(83.85deg, rgba(239, 152, 132, 1) 0.67%, rgba(234, 112, 158, 1) 96.97%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .about-value-tagline:nth-of-type(2) .about-value-title span {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-image: linear-gradient(83.85deg, rgba(239, 152, 132, 1) 0.67%, rgba(234, 112, 158, 1) 96.97%);
  }

  .about-value-visual {
    overflow: visible;
    margin: 0;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .about-value-visual img {
    width: 616px;
    height: auto;
  }

  .about-works {
    padding: 40px 20px;
  }

  .about-works-container {
    padding: 30px 20px;
  }

  .about-works-header h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .about-works-header p {
    font-size: 14px;
    line-height: 1.6;
  }

  .about-works-item {
    gap: 16px;
  }

  .about-works-item-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .about-message {
    padding: 40px 20px;
  }

  .about-message-content {
    gap: 30px;
  }

  .about-message-tag {
    font-size: 10px;
    padding: 3px 12px;
  }

  .about-message-subtitle {
    font-size: 16px;
    line-height: 1.4;
    padding: 16px 0;
  }

  .about-message-body {
    font-size: 14px;
    line-height: 1.6;
  }

  .about-message-author {
    font-size: 12px;
    line-height: 1.5;
  }

  .about-message-image {
    max-width: 100%;
  }

  .message-image-container {
    max-width: 100%;
  }

  /* Footer 375px以下 */
  .footer-main {
    padding: 40px 20px;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .logo-image {
    width: 70px;
    height: 70px;
  }

  .logo-text {
    font-size: 18px;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 24px;
    font-size: 12px;
    letter-spacing: 0.36px;
    justify-content: center;
    max-width: 280px;
  }



  .footer-bottom {
    padding: 8px 0;
  }

  .footer-copyright {
    font-size: 10px;
  }

  /* Service Page 375px以下 */
  .service-page-hero {
    padding: 20px 16px;
    background-size: cover;
    background-position: center center;
  }

  .service-page-hero-text h1 {
    font-size: 14px;
  }

  .service-page-hero-text h2 {
    font-size: 28px;
  }

  .service-page-intro {
    padding: 50px 0;
  }

  .service-page-intro-container {
    padding: 0 20px;
  }

  .service-page-intro-star {
    display: none;
  }

  .service-page-intro-quote {
    font-size: 32px;
  }

  .service-page-intro-subtitle {
    font-size: 20px;
  }

  .service-page-intro-description p {
    font-size: 12px;
  }

  .service-page-sitter,
  .service-page-education,
  .service-page-housework,
  .service-page-maternity {
    padding: 50px 0;
  }

  .service-page-sitter-container,
  .service-page-education-container,
  .service-page-housework-container,
  .service-page-maternity-container {
    padding: 0 20px !important;
  }
  
  /* より具体的なセレクタで確実に適用 */
  .service-page-education .service-page-education-container {
    padding: 0 20px !important;
  }

  .service-page-sitter-star {
    display: none;
  }

  .service-page-sitter-header {
    padding: 20px;
  }

  .service-page-sitter-text h3 {
    font-size: 18px;
  }

  .service-page-sitter-text p {
    font-size: 12px;
  }

  .service-page-sitter-card {
    padding: 20px;
    min-width: unset;
  }

  .service-page-sitter-card-title h4 {
    font-size: 18px;
  }

  .service-page-sitter-card-tag {
    font-size: 10px;
  }

  .service-page-sitter-card-content p {
    font-size: 12px;
  }

  .service-page-sitter-card-price {
    font-size: 11px;
  }

  .service-page-sitter-tag {
    font-size: 11px;
  }

  .service-page-education-header,
  .service-page-housework-header,
  .service-page-maternity-header {
    padding: 20px;
  }

  .service-page-education-image,
  .service-page-housework-image,
  .service-page-maternity-image {
    height: 120px;
  }

  .service-page-education-text h3,
  .service-page-housework-text h3,
  .service-page-maternity-text h3 {
    font-size: 18px;
  }

  .service-page-education-text p,
  .service-page-housework-text p,
  .service-page-maternity-text p {
    font-size: 12px;
  }

  .service-page-housework-cards,
  .service-page-education-items,
  .service-page-maternity-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-page-housework-card,
  .service-page-education-item,
  .service-page-maternity-item {
    padding: 20px;
  }

  /* 375px以下でのサービスカード間gap調整 */
  .service-page-sitter-cards,
  .service-page-education-cards,
  .service-page-event-sitter-cards,
  .service-page-parenting-consultation-cards {
    gap: 20px;
  }

  /* Price Page 768px以下 */
  .price-page-hero {
    padding: 40px 20px;
    background-size: auto, cover;
    background-position: 0% 0%, center center;
    min-height: 300px;
  }

  /* Flow Page 768px以下 */
  .flow-page-hero {
    padding: 80px 20px;
    background-size: auto, cover;
    background-position: 0% 0%, center center;
    height: 300px;
  }

  .flow-page-hero-text h2 {
    font-size: 28px;
  }

  .flow-page-intro {
    padding: 60px 0;
  }

  .flow-page-intro-container {
    padding: 0 20px;
  }

  .flow-page-intro-text h2 {
    font-size: 28px;
  }

  .flow-page-intro-text p {
    font-size: 14px;
  }

  .flow-steps {
    padding: 60px 0;
  }

  .flow-steps-container {
    padding: 0 20px;
  }

  .flow-steps-header {
    margin-bottom: 60px;
  }

  .flow-steps-header h2 {
    font-size: 28px;
    color: #FF95AC;
  }

  .flow-steps-header p {
    font-size: 15px;
  }

  .flow-steps-content {
    gap: 60px;
  }

  .flow-step {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .flow-step-number {
    font-size: 56px;
    width: auto;
  }

  .flow-step-content {
    flex-direction: column;
    gap: 24px;
  }

  .flow-step-icon {
    width: 70px;
    height: 70px;
  }

  .flow-step-icon img {
    width: 35px;
    height: 35px;
  }

  .flow-step-text h3 {
    font-size: 22px;
  }

  .flow-step-text p {
    font-size: 15px;
  }

  .flow-details {
    padding: 60px 0;
  }

  .flow-details-container {
    padding: 0 20px;
  }

  .flow-details-content h2 {
    font-size: 28px;
    margin-bottom: 50px;
  }

  .flow-detail-item {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 50px;
    text-align: center;
  }

  .flow-detail-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto;
  }

  .flow-detail-icon img {
    width: 28px;
    height: 28px;
  }

  .flow-detail-text h3 {
    font-size: 19px;
  }

  .flow-detail-text li {
    font-size: 15px;
    text-align: left;
  }

  .price-page-hero-text h2 {
    font-size: 32px;
  }

  .price-page-main-container {
    padding: 0 20px;
  }

  .price-page-intro {
    margin-bottom: 60px;
  }

  .price-tables-row {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
  }

  .option-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pricing-plans-container {
    flex-direction: column;
    gap: 32px;
  }

  .terms-content {
    flex-direction: column;
    gap: 32px !important;
    padding: 24px;
  }

  .terms-column ul {
    margin: 0 !important;
  }

  .cancel-policy-content {
    padding: 24px;
  }


}

/* ==========================================================================
   Flow Page Styles
   ========================================================================== */

/* Flow Page Hero Section */
.flow-page-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(90deg, rgba(135, 37, 132, 0.3) 0%, rgba(135, 37, 132, 0.3) 100%), url('assets/images/hero-background.png');
  background-position: 0% 0%, 0% 0%, center center;
  background-size: auto, auto, cover;
  background-repeat: no-repeat;
  height: 400px;
  padding: 159px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-page-hero-container {
  max-width: 1200px;
  width: 100%;
}

.flow-page-hero-content {
  text-align: center;
  width: 1440px;
}

.flow-page-hero-text {
  text-align: center;
}

.flow-page-hero-text h1 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.flow-page-hero-text h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 3.84px;
}



/* Flow Page Intro Section */
.flow-page-intro {
  padding: 80px 0;
  background-color: #fff9f9;
}

.flow-page-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 180px;
  box-sizing: border-box;
}

.flow-page-intro-content {
  text-align: center;
}

.flow-page-intro-text h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #FF95AC;
  margin-bottom: 24px;
  line-height: 1.5;
}

.flow-page-intro-text p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #8C9FB9;
  line-height: 1.75;
}

/* Flow Steps Section */
.flow-steps {
  padding: 80px 0;
  background-color: #FFC8C8;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%),
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%),
    radial-gradient(circle at 70% 90%, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
}

.flow-steps-container {
  width: 100%;
  padding: 0 180px;
}

.flow-steps-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.flow-steps-header h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #FF95AC;
  margin-bottom: 24px;
  line-height: 1.5;
}

.flow-steps-description {
  max-width: 800px;
  margin: 0 auto;
}

.flow-steps-description p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.flow-steps-description p:last-child {
  margin-bottom: 0;
}

.flow-steps-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.flow-consultation-note {
  margin-top: 40px;
  width: 100%;
  text-align: left;
}

.flow-consultation-note p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #8C9FB9;
  line-height: 1.5;
  letter-spacing: 0.4px;
}

.flow-steps-row {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.flow-arrow.flow-arrow-down {
  display: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: 24px;
}

.flow-arrow-down img {
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
}

/* Flow Details Section */
.flow-details {
  padding: 80px 0;
  background-color: #fff9f9;
}

.flow-details-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 180px;
}

.flow-details-content h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #FF95AC;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.96px;
  line-height: 1.5;
}

.flow-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 60px;
}

.flow-detail-item:last-child {
  margin-bottom: 0;
}

.flow-detail-icon {
  width: 60px;
  height: 60px;
  background-color: #FF95AC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-detail-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.flow-detail-text h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FF95AC;
  margin-bottom: 16px;
  letter-spacing: 0.6px;
  line-height: 1.4;
}

.flow-detail-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flow-detail-text li {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #8C9FB9;
  line-height: 1.75;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.flow-detail-text li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: #FF95AC;
  border-radius: 50%;
}

.flow-detail-text li:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Price Page Styles
   ========================================================================== */



/* Price Page Main Section */
.price-page-main {
  background-color: #ffc8c8;
  background-image: 
    radial-gradient(ellipse 144.25px 144.25px at 720px 1442.5px, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%),
    radial-gradient(ellipse 124.5px 27.531px at 177.38px 727.75px, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%),
    radial-gradient(ellipse 345.68px 43.72px at 811.94px 3456.8px, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%),
    radial-gradient(ellipse 30.428px 32.527px at 1045.3px 2580.7px, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%);
  padding: 80px 0;
}

.price-page-main-container {
  width: 100%;
  padding: 0 180px;
}

.price-page-intro {
  text-align: center;
  margin-bottom: 80px;
}

.price-page-intro h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #FFAEC0;
  margin-bottom: 16px;
  line-height: 1.5;
}

.price-page-intro p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #8C9FB9;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

/* Price Tables Section */
.price-tables-section {
  margin-bottom: 80px;
}

.price-tables-row {
  display: flex;
  gap: 56px;
  margin-bottom: 80px;
  align-items: stretch;
}

.price-table-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.option-table-container {
  flex: none;
  width: 100%;
}

.price-table {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #ffffff;
  border-radius: 19px;
  padding: 32px 32px 24px 32px;
  width: 100%;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.price-table-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFAEC0;
  color: #FEF2F2;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 24px 5px;
  border-radius: 19px;
  letter-spacing: 1.12px;
  line-height: 1.4;
}

.price-table-content {
  flex: 1;
}

.price-list-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #FFE3E3;
  gap: 10px;
}

.price-list-item:last-child {
  border-bottom: none;
}

.service-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FF95AC;
  letter-spacing: 1.28px;
  line-height: 1.4;
  flex: 1;
}

.price-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: right;
}

.service-price {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #8C9FB9;
  letter-spacing: 1.28px;
  line-height: 1.4;
  white-space: nowrap;
}

.regular-price {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #8C9FB9;
  letter-spacing: 1.12px;
  line-height: 1.4;
}

.visitor-fee {
  border: 1px solid #8C9FB9;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #8C9FB9;
  letter-spacing: 1.28px;
  line-height: 1.4;
  margin-top: 20px;
}

.service-group {
  margin-bottom: 24px;
}

.service-group:last-child {
  margin-bottom: 0;
}

.service-group-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FF95AC;
  letter-spacing: 1.28px;
  line-height: 1.4;
  padding: 16px 0;
  border-bottom: 1px solid #FFE3E3;
}

.service-group .price-list-item .service-name {
  color: #8C9FB9;
}

.combo-plan .service-name {
  line-height: 1.4;
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
}

.option-grid .price-list-item:last-child {
  border-bottom: 1px solid #FFE3E3;
}

.price-table-note {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #888888;
  line-height: 1.4;
  letter-spacing: 0.96px;
  text-align: left;
}

/* Pricing Plans Section */
.pricing-plans-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 80px;
}

.pricing-plans-container {
  display: flex;
  gap: 56px;
  width: 100%;
}

.pricing-plan {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
}

.pricing-plan-header {
  padding: 12px 24px;
  text-align: center;
}

.visitor-plan .pricing-plan-header {
  background-color: #FFAEC0;
}

.member-plan .pricing-plan-header {
  background: linear-gradient(90deg, #EF9884 0%, #FFAEC0 100%);
}

.pricing-plan-header h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: 1.6px;
  line-height: 1.2;
}

.pricing-plan-header p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: 1.12px;
  line-height: 1.2;
}

.member-plan .pricing-plan-header p {
  letter-spacing: 0.56px;
}

.pricing-plan-content {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 24px 32px;
  border-left: 2px solid #FFAEC0;
  border-right: 2px solid #FFAEC0;
  border-bottom: 2px solid #FFAEC0;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.member-plan .pricing-plan-content {
  border-left: 2px solid #EF9884;
  border-right: 2px solid #EF9884;
  border-bottom: 2px solid #EF9884;
}

.pricing-formula {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.visitor-plan .pricing-formula > .formula-item {
  width: 100%;
}

.formula-item {
  border: 2px solid #FFAEC0;
  border-radius: 8px;
  padding: 12px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFAEC0;
  text-align: center;
  min-width: 150px;
}

.annual-fee-group {
  display: flex;
  gap: 16px;
  width: 100%;
  margin-bottom: 8px;
}

.annual-fee-group .formula-item {
  flex: 1;
}

.member-rate {
  background: linear-gradient(90deg, #EF9884 0%, #FFAEC0 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  border: 2px solid #EF9884 !important;
  color: transparent !important;
}

.formula-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.formula-group .formula-item {
  min-width: 120px;
}

.plus {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFAEC0;
  letter-spacing: 1.28px;
}

.pricing-note {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #888888;
  line-height: 1.4;
  text-align: left;
  margin-top: 16px;
  width: 100%;
}

/* Terms Section */
.terms-section {
  margin-bottom: 80px;
}

.terms-section h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFAEC0;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 0.72px;
  line-height: 1.3;
}

.terms-content {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #ffffff;
  border-radius: 19px;
  padding: 32px;
  display: flex;
  gap: 56px;
}

.terms-column {
  flex: 1;
}

.terms-column h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #888888;
  margin-bottom: 16px;
  letter-spacing: 1.28px;
  line-height: 1.4;
}

.terms-column ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.terms-column li,
.terms-column p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  line-height: 1.4;
  letter-spacing: 1.12px;
  margin-bottom: 4px;
}

.terms-column p {
  margin-bottom: 24px;
}

/* Cancel Policy Section */
.cancel-policy-section h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFAEC0;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 0.72px;
  line-height: 1.3;
}

.cancel-policy-content {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #ffffff;
  border-radius: 19px;
  padding: 32px;
}

.cancel-policy-content p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  line-height: 1.5;
  letter-spacing: 1.12px;
  margin-bottom: 16px;
}

.cancel-policy-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.cancel-policy-content li {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  line-height: 1.5;
  letter-spacing: 1.12px;
  margin-bottom: 4px;
} 

/* Flow Steps Grid Layout */
.flow-step-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  width: 330px;
  min-width: 330px;
  max-width: 330px;
  position: relative;
  flex-shrink: 0;
}



.flow-step-number {
  background: #FFAEC0;
  color: white;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 999px;
  display: inline-block;
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
}

.flow-step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.flow-step-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flow-step-text h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #FF95AC;
  margin-bottom: 16px;
  line-height: 1.75;
}

.flow-step-text p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #8C9FB9;
  line-height: 1.75;
  margin: 0;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: 24px;
}

.flow-arrow img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.flow-note {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 32px;
  padding: 16px;
  background: #FFF;
  border-radius: 8px;
  border: 1px solid #FFE5EA;
}

.flow-note p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin: 0;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 180px;
}

.faq-header {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFAEC0;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.72px;
}

.faq-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
}

.faq-border {
  height: 1px;
  width: 100%;
  background-color: rgba(255, 174, 192, 0.5);
  margin: 0;
}

.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 32px;
}

.faq-q, .faq-a {
  background: #FF95AC;
  color: white;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  width: 28px;
  height: 28px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 14px 14px 15px 14px;
  letter-spacing: 1.28px;
}

.faq-a {
  background: #8C9FB9;
}

.faq-text p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FF95AC;
  line-height: 1.2;
  margin: 0;
  letter-spacing: 1.28px;
}

.faq-answer .faq-text p {
  font-size: 14px;
  font-weight: 700;
  color: #8C9FB9;
  line-height: 1.5;
  letter-spacing: 1.12px;
}

/* Responsive Design for Flow Steps */
@media (max-width: 1200px) {
  .flow-steps-container {
    padding: 0 20px;
  }
}

@media (max-width: 820px) {
  .flow-steps-grid {
    gap: 16px;
  }

  .flow-steps-row {
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .flow-arrow-down {
    display: flex;
  }

  .flow-arrow.flow-arrow-down {
    display: flex;
    transform: rotate(0deg);
  }

  .flow-step-card {
    width: 280px;
    min-width: 280px;
    max-width: 280px;
    padding: 32px 20px;
  }

  .flow-step-text h3 {
    font-size: 16px;
  }

  .flow-step-text p {
    font-size: 13px;
  }

  .flow-steps-container {
    padding: 0 16px;
  }

  .flow-steps-header h2 {
    font-size: 28px;
  }

  .flow-steps-description p {
    font-size: 14px;
  }
}

@media (max-width: 375px) {
  .flow-steps-grid {
    padding: 0 16px;
    gap: 12px;
  }

  .flow-step-card {
    padding: 20px 16px;
  }

  .flow-step-number {
    font-size: 12px;
    padding: 6px 12px;
  }

  .flow-step-icon {
    width: 40px;
    height: 40px;
  }

  .flow-step-text h3 {
    font-size: 15px;
  }

  .flow-step-text p {
    font-size: 12px;
  }

  .faq-container {
    padding: 0 16px;
  }

  .faq-item {
    padding: 20px 16px;
  }

  .faq-header h2 {
    font-size: 28px;
  }

  .faq-text p {
    font-size: 14px;
  }
}
