﻿@charset "utf-8";

/* ==========================================
   JS制御クラス保持メモ
   ==========================================
   JavaScriptが操作する状態クラスは削除・改名禁止:
   active, is-flipped, is-scrolled, scroll-menu-open, is-active,
   is-ready, is-show, is-hidden, is-hide, is-mobile-course-open,
   fadeout, hero-wave
*/

/* ==========================================
   ベース（全体・リセット）
   ========================================== */
:root {
  --font: "Zen Maru Gothic", sans-serif;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", serif;
  --text: #4a4a4a;
  --muted: #756d69;
  --pink: #e88d83;
  --pink-dark: #d97884;
  --pink-soft: #f4c3bb;
  --pink-bg: #fff4f4;
  --cream: #fdfbf7;
  --white: #ffffff;
  --line: #efdada;
  --shadow: 0 14px 34px rgba(130, 92, 82, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  min-width: 0;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.sp-only {
  display: none;
}

@media (max-width: 560px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}

@media (max-width: 1024px) {
  .pc-only {
    display: none !important;
  }
}

.site {
  width: 100%;
  overflow-x: hidden;
}

.container {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
}

.wave-section {
  position: relative;
}

/* ==========================================
   ヘッダー（Header）
   ========================================== */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.header__inner {
  width: min(100% - 48px, 1500px);
  height: 90px;
  margin-inline: auto;
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: -25px;
}

.logo img {
  width: 125px;
  max-height: 72px;
  object-fit: contain;
}

.logo__name {
  color: #df7f8b;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
  font-family: "Kiwi Maru", serif;
}

.menu-check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.menu-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pink-bg);
  cursor: pointer;
}

.menu-btn span,
.menu-btn::before,
.menu-btn::after {
  content: "";
  position: absolute;
  left: 12px;
  width: 18px;
  height: 1px;
  background: var(--pink-dark);
}

.menu-btn span {
  top: 21px;
}

.menu-btn::before {
  top: 15px;
}

.menu-btn::after {
  top: 27px;
}

.nav {
  position: fixed;
  top: 82px;
  left: 16px;
  right: 16px;
  display: none;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.menu-check:checked ~ .nav {
  display: grid;
  gap: 18px;
}

.nav a {
  font-size: 15px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .header__inner {
    height: 90px;
  }

  .menu-btn {
    display: none;
  }

  .nav {
    position: static;
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 34px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  @media (max-width: 767px) {
    .logo {
      gap: 8px;
    }

    .logo img {
      width: 68px;
    }

    .logo__name {
      font-size: 20px;
      letter-spacing: 0.05em;
    }
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(217, 120, 132, 0.24);
}

.btn--small {
  min-height: 46px;
  padding: 10px 20px;
  font-size: 13px;
}

.info-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
}

.info-btn--line {
  background: #43c33f;
  color: #fff;
}

.info-btn--outline {
  background: #fff;
  border: 1px solid var(--pink);
  color: var(--pink);
}

@media (max-width: 374px) {
  .btn {
    width: 100%;
    padding-inline: 16px;
  }
}

/* ==========================================
   メインコンテンツ（Main）
   ========================================== */

.hero {
  position: relative;
  padding-top: 90px;
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 6% 14%,
      rgba(248, 210, 211, 0.45) 0 64px,
      transparent 65px
    ),
    radial-gradient(
      circle at 8% 28%,
      rgba(248, 210, 211, 0.32) 0 100px,
      transparent 101px
    ),
    radial-gradient(
      circle at 78% 48%,
      rgba(255, 226, 231, 0.58) 0%,
      rgba(255, 241, 243, 0.36) 36%,
      rgba(255, 255, 255, 0) 73%
    ),
    linear-gradient(90deg, #fff7f4 0%, #fffdfb 44%, #fff 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: 4%;
  top: 180px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(244, 210, 210, 0.2);
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.1) 38%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 80px, 1360px);
  min-height: calc(100vh - 90px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: center;
  gap: clamp(36px, 4vw, 80px);
}

.hero__body {
  position: relative;
  z-index: 8;
  padding: 0;
  text-align: left;
  padding-left: 60px;
}

.hero__label {
  margin: 0 0 24px;
  color: var(--pink-dark);
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.08em;
}

.hero__title {
  margin: 0 0 32px;
  color: var(--text);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.hero__title span {
  display: block;
  white-space: nowrap;
}

.hero__line {
  width: 360px;
  max-width: 100%;
  margin: 0 0 20px;
  border-top: 2px dotted rgba(232, 141, 131, 0.35);
}

.hero__copy {
  margin: 0;
  color: #444;
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.12em;
}

.hero__visual {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  transform: translateX(10px);
}

.hero-photo-wrap {
  position: relative;
  width: min(48vw, 650px);
  aspect-ratio: 1 / 1;
  overflow: visible;
  isolation: isolate;
}

.hero-photo-frame {
  position: absolute;
  inset: 0;
  z-index: 10;
  overflow: hidden;
  border-radius: 58% 42% 47% 53% / 45% 57% 43% 55%;
  background: transparent;
  box-shadow:
    0 0 0 10px rgba(255, 226, 231, 0.88),
    0 0 0 24px rgba(255, 196, 209, 0.46),
    0 0 0 38px rgba(255, 239, 242, 0.42),
    0 18px 46px rgba(205, 115, 116, 0.14),
    0 0 64px rgba(232, 141, 131, 0.14);
  animation: heroBlobMorph 14s ease-in-out 1;
  animation-fill-mode: forwards;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.055);
}

.hero-ripple {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border-radius: 58% 42% 47% 53% / 45% 57% 43% 55%;
  transform: translate(-50%, -50%) scale(0.64);
  opacity: 0;
  pointer-events: none;
  background: transparent;
  transform-origin: center center;
  will-change: transform, opacity, border-radius, filter;
}

.ripple-1 {
  z-index: 6;
  border: 4px solid rgba(236, 128, 137, 0.92);
  background: radial-gradient(
    closest-side,
    rgba(255, 255, 255, 0) 54%,
    rgba(255, 232, 236, 0.24) 68%,
    rgba(255, 178, 197, 0.4) 82%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow:
    0 0 0 10px rgba(255, 214, 222, 0.35),
    0 0 46px rgba(236, 128, 137, 0.34),
    0 0 110px rgba(255, 190, 200, 0.22);
  animation: heroRippleWave 5s ease-out forwards;
}

.ripple-2 {
  z-index: 5;
  border: 3px solid rgba(255, 145, 172, 0.78);
  background: radial-gradient(
    closest-side,
    rgba(255, 255, 255, 0) 58%,
    rgba(255, 232, 236, 0.2) 74%,
    rgba(255, 190, 204, 0.24) 90%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow:
    0 0 54px rgba(255, 145, 172, 0.26),
    0 0 116px rgba(255, 190, 200, 0.15);
  animation: heroRippleWave 5s ease-out 0.8s forwards;
}

.ripple-3 {
  z-index: 4;
  border: 3px dashed rgba(232, 92, 114, 0.86);
  background: radial-gradient(
    closest-side,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 224, 229, 0.2) 78%,
    rgba(236, 128, 137, 0.17) 94%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow:
    0 0 48px rgba(232, 92, 114, 0.25),
    0 0 118px rgba(255, 190, 200, 0.13);
  animation: heroRippleWave 5s ease-out 1.6s forwards;
}

.ripple-4 {
  z-index: 3;
  border: 2px solid rgba(255, 190, 210, 0.78);
  background: radial-gradient(
    closest-side,
    rgba(255, 255, 255, 0) 62%,
    rgba(255, 238, 240, 0.18) 80%,
    rgba(255, 194, 205, 0.13) 96%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow:
    0 0 64px rgba(238, 143, 149, 0.17),
    0 0 140px rgba(255, 200, 210, 0.1);
  animation: heroRippleWave 5s ease-out 2.4s forwards;
}

@keyframes heroRippleWave {
  0% {
    transform: translate(-50%, -50%) scale(0.64) rotate(0deg);
    opacity: 0;
    filter: blur(0);
    border-radius: 58% 42% 47% 53% / 45% 57% 43% 55%;
  }
  9% {
    opacity: 1;
  }
  40% {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(1.75) rotate(5deg);
    border-radius: 44% 56% 60% 40% / 60% 40% 52% 48%;
    filter: blur(0.2px);
  }
  72% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(2.85) rotate(-4deg);
    border-radius: 55% 45% 44% 56% / 47% 53% 58% 42%;
    filter: blur(0.8px);
  }
  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0.12;
  }
}

@keyframes heroBlobMorph {
  0% {
    border-radius: 58% 42% 47% 53% / 45% 57% 43% 55%;
  }
  25% {
    border-radius: 52% 48% 57% 43% / 51% 47% 53% 49%;
  }
  50% {
    border-radius: 44% 56% 60% 40% / 60% 40% 52% 48%;
  }
  75% {
    border-radius: 55% 45% 44% 56% / 47% 53% 58% 42%;
  }
  100% {
    border-radius: 58% 42% 47% 53% / 45% 57% 43% 55%;
  }
}

@media (max-width: 767px) {
  .hero {
    padding-top: 88px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 680px);
    min-height: auto;
    margin: 0 auto;
    padding: 40px 0 80px;
    gap: 40px;
  }

  .hero__body {
    padding: 34px 0 0;
    text-align: left;
  }

  .hero__title {
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.65;
  }

  .hero__visual {
    width: 100%;
    height: auto;
    padding: 0 0 70px;
    overflow: visible;
    transform: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-photo-wrap {
    width: min(96vw, 460px);
    margin: 0 auto;
  }

  .hero-photo-frame {
    box-shadow:
      0 0 0 7px rgba(255, 226, 231, 0.82),
      0 0 0 15px rgba(255, 196, 209, 0.36),
      0 0 0 25px rgba(255, 239, 242, 0.3),
      0 10px 28px rgba(205, 115, 116, 0.1),
      0 0 40px rgba(232, 141, 131, 0.1);
  }

  .ripple-1 {
    border-width: 2.5px;
  }

  .ripple-2,
  .ripple-3 {
    border-width: 2px;
  }

  .ripple-4 {
    border-width: 1.5px;
  }

  .hero-ripple {
    animation-duration: 6.8s;
  }
}

@media (max-width: 374px) {
  .hero__title {
    font-size: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo-frame,
  .hero-ripple {
    animation: none !important;
  }

  .ripple-1 {
    opacity: 0.75;
    transform: translate(-50%, -50%) scale(1.22);
  }

  .ripple-2 {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(1.48);
  }

  .ripple-3 {
    opacity: 0.42;
    transform: translate(-50%, -50%) scale(1.74);
  }

  .ripple-4 {
    opacity: 0.32;
    transform: translate(-50%, -50%) scale(2);
  }
}

.section {
  padding: 76px 0;
}

.section-title {
  position: relative;
  text-align: center;
  margin: 0 0 56px;
  padding-bottom: 18px;
  color: var(--text);
  font-size: clamp(26px, 2.2vw, 36px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  /* アニメーション初期状態（JSでis-showを付与） */
  opacity: 0;
  transform: translateY(36px);
  filter: blur(8px);
  transition:
    opacity 1.1s ease,
    transform 1.1s ease,
    filter 1.1s ease;
}

.section-title.is-show {
  animation: sectionTitleFadeUp 1.2s ease forwards;
}

@keyframes sectionTitleFadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 44px;
  height: 2px;
  transform: translateX(-50%);
  background: var(--pink);
  transition: transform 0.8s ease 0.3s;
}

.section-title span {
  color: #df8f8f;
}

.section-title--center {
  text-align: center;
}

.worries,
.voice {
  background: var(--cream);
}

.faq-reservation {
  background: #fff;
}

@media (max-width: 767px) {
  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: clamp(25px, 6vw, 34px);
    line-height: 1.6;
    margin-bottom: 42px;
  }
}

.worries__grid {
  display: grid;
  gap: 24px;
}

.worry-card {
  padding: 26px 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.worry-card img {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.worry-card h3 {
  margin: 0 0 12px;
  color: var(--pink-dark);
  font-size: 18px;
  font-weight: 600;
}

.worry-card p {
  margin: 0;
  font-size: 17px;
  line-height: 2;
}

@media (max-width: 1024px) {
  section#worries .container {
    width: calc(100% - 24px);
    max-width: 100%;
    padding: 0;
  }

  section#worries .worries__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
  }

  section#worries .worry-card {
    padding: 18px 8px;
    border-radius: 16px;
  }

  section#worries .worry-card img {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
  }

  section#worries .worry-card h3 {
    font-size: 13px;
    margin-bottom: 8px;
  }

  section#worries .worry-card p {
    font-size: 11px;
    line-height: 1.7;
  }
}

@media (min-width: 768px) {
  .worries__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.magazine-menu__head {
  position: relative;
  z-index: 1;
  margin-bottom: 58px;
  text-align: center;
}

.magazine-menu__lead {
  margin: 26px auto 0;
  font-size: 17px;
  line-height: 2.1;
}

.magazine-menu__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.magazine-card {
  position: relative;
}

.magazine-card__link {
  display: grid;
  grid-template-columns: 1fr;
  color: inherit;
}

.magazine-card__image {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  height: 340px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(130, 92, 82, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.magazine-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% top;
  transition: transform 0.35s ease;
}

.magazine-card:first-child .magazine-card__image img {
  object-position: 15% center;
}

.magazine-card__body {
  position: relative;
  z-index: 3;
  width: calc(100% - 36px);
  margin: -52px auto 0;
  padding: 28px 28px 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(130, 92, 82, 0.09);
  backdrop-filter: blur(10px);
}

.voice {
  background: var(--cream);
  display: inline-block;
  margin: 0 0 14px;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--pink-bg);
  color: var(--pink);
  font-size: 12px;
  font-weight: 600;
}

.magazine-card h3 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.magazine-card__text {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 2.05;
}

.magazine-card__price {
  margin: 0 0 24px;
  color: var(--pink);
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
}

.magazine-card__more {
  display: inline-flex;
  align-items: center;
  color: var(--pink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.magazine-card__link:hover .magazine-card__image {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(130, 92, 82, 0.12);
}

.magazine-card__link:hover .magazine-card__image img {
  transform: scale(1.03);
}

@media (min-width: 768px) {
  .magazine-menu__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
  }

  .magazine-card:nth-child(2) {
    margin-top: 42px;
  }

  .magazine-card__body {
    min-height: 360px;
  }
}

.voice {
  background: var(--cream);
}

.voice__layout {
  max-width: 980px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.voice__flower {
  display: none;
}

.voice__flower img {
  display: block;
  width: 130px;
  max-width: 100%;
  opacity: 0.28;
  filter: saturate(0.85);
}

.voice-card {
  position: relative;
  padding: 54px 34px 34px;
  border-radius: 10px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.98),
    rgba(252, 250, 248, 0.98)
  );
  box-shadow:
    0 12px 30px rgba(130, 92, 82, 0.08),
    0 2px 4px rgba(130, 92, 82, 0.04);
  transform: rotate(-0.8deg);
}

.voice-card:nth-child(2) {
  transform: rotate(0.7deg);
}

.voice-card:nth-child(3) {
  transform: rotate(-0.5deg);
}

.voice-card::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 92px;
  height: 28px;
  transform: translateX(-50%) rotate(-4deg);
  border-radius: 4px;
  background: linear-gradient(
    135deg,
    rgba(255, 217, 170, 0.95),
    rgba(255, 235, 196, 0.92)
  );
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.voice-card p {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 2.3;
}

.voice-card span {
  color: var(--pink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

@media (min-width: 768px) {
  .voice-card {
    min-height: 250px;
    padding: 58px 34px 36px;
  }

  .voice__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .voice__flower {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 180px;
  }
}

@media (min-width: 1024px) {
  .voice__layout {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 34px 28px;
    align-items: center;
  }

  .voice__layout > .voice-card {
    grid-column: span 2;
  }

  .voice__layout > .voice-card--bottom-left {
    grid-column: 1 / span 2;
  }

  .voice__layout > .voice__flower {
    grid-column: 3 / span 2;
  }

  .voice__layout > .voice-card--bottom-right {
    grid-column: 5 / span 2;
  }

  .voice__flower img {
    width: 160px;
    opacity: 0.3;
  }
}

.info-panels {
  width: 100%;
  padding: 90px 0 120px;
  background: #fff;
}

.info-panels__inner {
  width: min(100% - 40px, 1480px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}

.info-card {
  width: 100%;
  min-height: 420px;
  padding: 52px;
  border-radius: 26px;
  background: #fffdfb;
  box-shadow: 0 14px 40px rgba(130, 92, 82, 0.08);
}

.info-card__title {
  position: relative;
  margin: 0 0 34px;
  padding-bottom: 12px;
  color: var(--text);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 42px;
}

.info-card__title {
  text-align: center;
  margin-bottom: 42px;
}

.info-card__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 42px;
  height: 2px;
  background: var(--pink);
  transform: translateX(-50%);
}

.info-hours-table {
  width: 100%;
  border: 1px solid var(--line);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

.info-hours-table th,
.info-hours-table td {
  padding: 14px 10px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.info-hours-table th:last-child,
.info-hours-table td:last-child {
  border-right: none;
}

.info-hours-table tbody tr:last-child th,
.info-hours-table tbody tr:last-child td {
  border-bottom: none;
}

.info-hours-table thead th {
  background: var(--pink-bg);
  font-weight: 600;
}

.info-hours-table tbody th {
  width: 130px;
  font-weight: 600;
}

.info-hours-table span {
  font-size: 13px;
}

.info-note {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.8;
}

.info-card__buttons {
  display: grid;
  gap: 18px;
  max-width: 300px;
}

@media (min-width: 768px) {
  .info-panels__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .info-panels {
    padding: 70px 0 90px;
  }

  .info-panels__inner {
    width: min(100% - 28px, 680px);
  }

  .info-card {
    min-height: auto;
    padding: 32px 24px;
  }

  .info-hours-table {
    font-size: 13px;
  }

  .info-hours-table th,
  .info-hours-table td {
    padding: 10px 6px;
  }
}

.temari-feature {
  background: var(--cream);
  padding: 90px 0;
}

.temari-feature__lead {
  text-align: center;
  margin: 28px auto 64px;
  font-size: 16px;
  line-height: 2.2;
}

.temari-feature__grid {
  max-width: 920px;
  margin: 0 auto;
}

.temari-feature__item {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding-bottom: 64px;
}

.temari-feature__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 72px;
  bottom: -8px;
  width: 1px;
  background: #efdada;
}

.temari-feature__num {
  width: 72px;
  height: 72px;
  border: 1px solid #efdada;
  border-radius: 50%;
  background: #fff;
  color: #e88d83;
  display: grid;
  place-items: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.temari-feature__text h3 {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 400;
}

.temari-feature__text p {
  margin: 0;
  font-size: 16px;
  line-height: 2.2;
}

@media (max-width: 768px) {
  .temari-feature__item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .temari-feature__item::before {
    display: none;
  }
}

.view-more-wrap {
  display: flex;
}

.view-more-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 32px;
  margin-left: auto;
  color: #4a4a4a;
  font-family: "Times New Roman", "Yu Mincho", serif;
  text-decoration: none;
}

.view-more-circle {
  width: 105px;
  height: 98px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #4a4a4a;
  border-radius: 48% 52% 50% 46% / 52% 45% 55% 48%;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.14em;
  transition:
    transform 0.45s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease;
}

.view-more-line {
  width: 75px;
  height: 1px;
  margin-left: -6px;
  background: #4a4a4a;
  transition:
    width 0.45s ease,
    transform 0.45s ease,
    background 0.35s ease;
}

.view-more-btn:hover .view-more-circle {
  transform: rotate(8deg) scale(1.04);
  background: #fff5f5;
  border-color: var(--pink-dark);
  color: var(--pink-dark);
}

.view-more-btn:hover .view-more-line {
  width: 135px;
  transform: translateX(8px);
  background: var(--pink-dark);
}

@media (max-width: 767px) {
  .view-more-wrap {
    justify-content: flex-end;
  }

  .view-more-btn {
    margin-left: auto;
  }

  .view-more-circle {
    animation: viewMoreCircleSP 4.2s ease-in-out infinite;
  }

  .view-more-line {
    animation: viewMoreLineSP 4.2s ease-in-out infinite;
  }
}

@keyframes viewMoreCircleSP {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
    border-color: #4a4a4a;
    color: #4a4a4a;
    background: transparent;
  }
  50% {
    transform: rotate(8deg) scale(1.04);
    background: #fff5f5;
    border-color: #d97b7b;
    color: #d97b7b;
  }
}

@keyframes viewMoreLineSP {
  0%,
  100% {
    width: 75px;
    transform: translateX(0);
    background: #4a4a4a;
  }
  50% {
    width: 135px;
    transform: translateX(8px);
    background: #d97b7b;
  }
}

.intro-page {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 18% 28%,
      rgba(255, 226, 224, 0.52),
      transparent 30%
    ),
    radial-gradient(
      circle at 82% 76%,
      rgba(255, 241, 232, 0.62),
      transparent 28%
    ),
    radial-gradient(
      circle at 48% 48%,
      rgba(255, 255, 255, 0.92),
      rgba(255, 249, 247, 0.95) 58%,
      #fff 100%
    );
}

.intro-logo-wrap {
  position: relative;
  z-index: 3;
  text-align: center;
}

.intro-logo {
  width: min(420px, 70vw);
  transform-origin: center top;
  animation:
    introSwing 5s ease-in-out infinite,
    introFade 2.5s ease;
}

.intro-copy {
  margin-top: 42px;
  color: #df7f8b;
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 42px);
  line-height: 1.9;
  letter-spacing: 0.18em;
  opacity: 0;
  animation: introCopy 2s ease forwards 1.2s;
}

.intro-copy span {
  display: block;
}

.intro-page.fadeout {
  opacity: 0;
  transition: opacity 1.5s ease;
}

@keyframes introSwing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}

@keyframes introFade {
  from {
    opacity: 0;
    transform: translateY(20px) rotate(0deg);
  }
  to {
    opacity: 1;
  }
}

@keyframes introCopy {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .intro-logo {
    width: min(300px, 72vw);
  }

  .intro-copy {
    margin-top: 34px;
    font-size: 22px;
    letter-spacing: 0.12em;
  }
}

.about-page {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 48%, #fff 100%);
  overflow: hidden;
}

.about-label {
  margin: 0 0 14px;
  color: #ea8f83;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.about-hero {
  position: relative;
  padding-top: 120px;
  background:
    radial-gradient(
      circle at 12% 24%,
      rgba(255, 232, 235, 0.75),
      transparent 28%
    ),
    #fff;
}

.about-hero__inner {
  min-height: 620px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-hero__text h1,
.contact-hero__text h1 {
  margin: 0 0 28px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.about-hero__text p:last-child,
.contact-hero__text p:last-child {
  font-size: 17px;
  line-height: 2;
}

.about-hero__text p:last-child {
  margin: 0;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 2;
}

.about-hero__image {
  position: relative;
}

.about-hero__image::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: 0;
  background: #fff1f1;
  border-radius: 58% 42% 48% 52% / 52% 58% 42% 48%;
}

.about-hero__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  border-radius: 58% 42% 48% 52% / 52% 58% 42% 48%;
  box-shadow: 0 18px 44px rgba(130, 92, 82, 0.12);
}

.about-greeting {
  background: var(--cream);
}

.about-greeting__inner {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 76px;
  align-items: center;
}

.about-photo-frame {
  position: relative;
  width: min(100%, 420px);
  margin: 0 auto;
  aspect-ratio: 0.78 / 1;
}

.about-photo-bg {
  position: absolute;
  inset: 18px -18px -18px 18px;
  background: #f8e1df;
  border-radius: 46% 54% 48% 52% / 58% 48% 52% 42%;
  z-index: 0;
}

.about-photo-frame > img:first-of-type {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 46% 54% 48% 52% / 58% 48% 52% 42%;
  box-shadow: 0 18px 42px rgba(130, 92, 82, 0.14);
}

.about-greeting__text p {
  margin: 0 0 24px;
  text-align: left;
}

.about-greeting__text {
  max-width: 650px;
}

.about-greeting__text p {
  margin: 0 0 24px;
  text-align: left;
  max-width: none;
}

.about-message {
  background: #fff;
}

.about-message__box {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 72px 70px;
  border-radius: 34px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.92)),
    url("asset/annagiang-stone.png") center / cover no-repeat;
  text-align: center;
  box-shadow: 0 16px 42px rgba(130, 92, 82, 0.08);
  overflow: hidden;
}

.about-message__box h2 {
  margin: 0 0 34px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.7;
}

.about-message__box p {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 24px;
  font-size: 17px;
  line-height: 2.2;
}

.about-leaf {
  position: absolute;
  width: 190px;
  opacity: 0.28;
  pointer-events: none;
}

.about-leaf--left {
  left: -42px;
  bottom: -44px;
}

.about-leaf--right {
  right: -56px;
  top: -42px;
  transform: rotate(180deg);
}

.about-profile {
  background: var(--cream);
}

.about-profile__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  margin-top: 60px;
}

.about-card {
  position: relative;
  padding: 46px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(130, 92, 82, 0.09);
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--pink-bg);
}

.about-card__label {
  margin: 0 0 8px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.about-card h3 {
  position: relative;
  margin: 0 0 28px;
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
}

.about-card ul {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-card--license li {
  position: relative;
  padding: 16px 0 16px 38px;
  border-bottom: 1px solid var(--line);
  font-size: 22px;
  font-weight: 600;
  color: var(--pink-dark);
}

.about-card--license li::before {
  content: "✿";
  position: absolute;
  left: 0;
  color: var(--pink);
}

.about-note {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.about-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-timeline li {
  position: relative;
  padding: 0 0 18px 24px;
  font-size: 16px;
  line-height: 1.9;
}

.about-timeline li::before {
  content: "✿";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pink);
  font-size: 14px;
}

.about-family {
  background: #fff;
}

.about-family__inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 70px;
  align-items: center;
}

.about-family__text p {
  margin: 0;
  font-size: 17px;
  line-height: 2.2;
}

.about-family__image img {
  width: 100%;
  aspect-ratio: 1.05 / 1;
  object-fit: cover;
  border-radius: 50% 50% 46% 54% / 52% 46% 54% 48%;
  box-shadow: 0 18px 42px rgba(130, 92, 82, 0.12);
}

.about-cta {
  background: var(--cream);
}

.about-cta__box {
  max-width: 920px;
  margin: 0 auto;
  padding: 66px 40px;
  border-radius: 34px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.9)),
    url("asset/memo.jpg") center / cover no-repeat;
  text-align: center;
  box-shadow: 0 14px 40px rgba(130, 92, 82, 0.08);
}

.about-cta__box h2 {
  margin: 0 0 22px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.7;
}

.about-cta__box p {
  max-width: 720px;
  margin: 0 auto 34px;
  font-size: 17px;
  line-height: 2.1;
}

.about-cta__buttons {
  margin: 0 auto;
  max-width: 360px;
  display: grid;
  gap: 16px;
}

.about-fade {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.about-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .about-hero__inner,
  .about-greeting__inner,
  .about-profile__grid,
  .about-family__inner {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding-top: 100px;
  }

  .about-hero__inner {
    min-height: auto;
    gap: 42px;
    padding: 48px 0 60px;
  }

  .about-hero__text {
    text-align: center;
  }

  .about-greeting__inner,
  .about-family__inner {
    gap: 44px;
  }

  .about-greeting__image {
    order: 2;
  }

  .about-greeting__text {
    order: 1;
  }

  .about-message__box {
    padding: 54px 26px;
  }

  .about-profile__grid {
    margin-top: 42px;
  }

  .about-card {
    padding: 34px 26px;
  }

  .about-family__image {
    max-width: 420px;
    margin: 0 auto;
  }
}

.contact-page {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 52%, #fff 100%);
  overflow: hidden;
}

.contact-label {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.contact-label--center {
  text-align: center;
}

.contact-hero {
  position: relative;
  padding-top: 120px;
  background:
    radial-gradient(
      circle at 12% 24%,
      rgba(255, 232, 235, 0.75),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 70%,
      rgba(255, 238, 226, 0.7),
      transparent 24%
    ),
    #fff;
}

.contact-hero__inner {
  min-height: 620px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.contact-hero__text h1 {
  margin: 0 0 28px;
  font-size: clamp(38px, 4.8vw, 66px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.12em;
}

.contact-hero__text p:last-child {
  margin: 0;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 2;
}

.contact-hero__image {
  position: relative;
}

.contact-hero__image::before {
  content: "";
  position: absolute;
  inset: -18px;
  background: #fff1f1;
  border-radius: 54% 46% 50% 50% / 56% 46% 54% 44%;
}

.contact-hero__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border-radius: 54% 46% 50% 50% / 56% 46% 54% 44%;
  box-shadow: 0 18px 44px rgba(130, 92, 82, 0.12);
}

.contact-intro {
  background: var(--cream);
}

.contact-intro__box {
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 52px;
  border-radius: 34px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.94)),
    url("asset/annagiang-stone.png") center / cover no-repeat;
  text-align: center;
  box-shadow: 0 16px 42px rgba(130, 92, 82, 0.08);
}

.contact-intro__box h2 {
  margin: 0 0 28px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.7;
}

.contact-intro__box p {
  max-width: 760px;
  margin: 0 auto 20px;
  font-size: 17px;
  line-height: 2.15;
}

.contact-buttons {
  display: grid;
  gap: 18px;
  max-width: 360px;
  margin: 34px auto 0;
}

.contact-guide {
  background: #fff;
}

.contact-guide__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 58px;
}

.contact-guide-card {
  position: relative;
  padding: 40px 30px;
  border-radius: 26px;
  background: #fff;
  text-align: center;
  box-shadow: 0 14px 36px rgba(130, 92, 82, 0.09);
  overflow: hidden;
}

.contact-guide-card::before {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -44px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--pink-bg);
}

.contact-guide-card span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 18px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.contact-guide-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: var(--pink-dark);
  font-size: 22px;
  font-weight: 600;
}

.contact-guide-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 16px;
  line-height: 2;
}

.contact-faq {
  background: var(--cream);
}

.contact-faq details {
  margin-bottom: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 28px rgba(130, 92, 82, 0.07);
  overflow: hidden;
}

.contact-faq summary {
  position: relative;
  cursor: pointer;
  padding: 24px 64px 24px 30px;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
  list-style: none;
}

.contact-faq summary::-webkit-details-marker {
  display: none;
}

.contact-faq summary::before {
  content: "Q";
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-right: 14px;
  border-radius: 50%;
  background: var(--pink-bg);
  color: var(--pink-dark);
  .contact-faq .faq-item {
    margin-bottom: 24px;
  }
  .contact-faq .faq-item summary {
    line-height: 2;
  }
  .contact-faq .faq-answer {
    padding: 0 34px 30px 80px;
  }
  .contact-faq .faq-answer p,
  .contact-faq .faq-answer li {
    line-height: 2.05;
  }
  .contact-faq .faq-answer p {
    padding: 0;
    margin: 0 0 14px;
  }
  .contact-faq .faq-answer p:last-child {
    margin-bottom: 0;
  }
  .contact-faq .faq-answer ul {
    margin: 10px 0 16px;
    padding-left: 1.4em;
  }
  .contact-faq .faq-answer li + li {
    margin-top: 8px;
  }
  @media (max-width: 560px) {
    .contact-faq .faq-item {
      margin-bottom: 22px;
    }
    .contact-faq .faq-answer {
      padding: 0 22px 28px;
    }
    .contact-faq .faq-answer p,
    .contact-faq .faq-answer li {
      line-height: 2;
    }
  }
  font-size: 15px;
  font-weight: 700;
}

.contact-faq summary::after {
  content: "+";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pink);
  font-size: 28px;
  font-weight: 300;
}

.contact-faq details[open] summary::after {
  content: "−";
}

.contact-faq details p {
  margin: 0;
  padding: 0 34px 28px 80px;
  color: var(--muted);
  font-size: 16px;
  line-height: 2.15;
}

@media (max-width: 900px) {
  .contact-hero__inner,
  .contact-guide__grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding-top: 100px;
  }

  .contact-hero__inner {
    min-height: auto;
    gap: 42px;
    padding: 48px 0 60px;
  }

  .contact-hero__text {
    text-align: center;
  }

  .contact-hero__image {
    max-width: 520px;
    margin: 0 auto;
  }

  .contact-guide__grid {
    margin-top: 42px;
  }
}

@media (max-width: 560px) {
  .contact-page {
    text-align: center;
  }

  .contact-label {
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.12em;
  }

  .contact-hero {
    padding-top: 90px;
  }

  .contact-hero__inner {
    gap: 32px;
    padding: 32px 0 50px;
  }

  .contact-hero__text h1 {
    font-size: 32px;
    line-height: 1.8;
  }

  .contact-hero__text p:last-child {
    font-size: 15px;
  }

  .contact-intro__box {
    padding: 44px 22px;
    border-radius: 26px;
  }

  .contact-intro__box h2 {
    font-size: 26px;
  }

  .contact-intro__box p {
    font-size: 15px;
    text-align: center;
  }

  .contact-guide-card {
    padding: 34px 22px;
  }

  .contact-guide-card h3 {
    font-size: 20px;
  }

  .contact-guide-card p {
    font-size: 15px;
  }

  .contact-faq summary {
    padding: 22px 22px 18px;
    font-size: 16px;
    text-align: center;
  }

  .contact-faq summary::before {
    display: block;
    margin: 0 auto 10px;
  }

  .contact-faq summary::after {
    position: static;
    display: block;
    transform: none;
    margin-top: 6px;
  }

  .contact-faq details p {
    padding: 0 22px 26px;
    font-size: 15px;
    text-align: center;
  }

  .contact-buttons {
    margin-top: 28px;
  }
}

.privacy-page {
  background: #fff;
}

.privacy-label {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.privacy-hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 60px;
  background:
    radial-gradient(
      circle at 12% 24%,
      rgba(255, 232, 235, 0.6),
      transparent 28%
    ),
    #fff;
}

.privacy-hero .container {
  text-align: center;
}

.privacy-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.12em;
}

.privacy-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.privacy-section {
  background: #fff;
}

.privacy-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 52px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 40px rgba(130, 92, 82, 0.07);
}

.privacy-card h2 {
  margin: 42px 0 16px;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  color: var(--pink-dark);
  letter-spacing: 0.06em;
}

.privacy-card h2:first-of-type {
  margin-top: 0;
}

.privacy-card p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 2.1;
  color: var(--text);
}

.privacy-card ul,
.privacy-card ol {
  margin: 0 0 20px;
  padding-left: 1.6em;
  font-size: 16px;
  line-height: 2.1;
}

.privacy-contact {
  margin-top: 34px;
  padding: 28px 30px;
  border-radius: 18px;
  background: var(--pink-bg);
}

.privacy-contact p {
  margin: 0 0 10px;
  font-size: 15px;
}

.privacy-contact p:last-child {
  margin: 0;
}

.privacy-contact a {
  color: var(--pink-dark);
  text-decoration: underline;
}

.privacy-date {
  margin-top: 42px;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 767px) {
  .privacy-hero {
    padding-top: 100px;
    padding-bottom: 48px;
  }

  .privacy-card {
    padding: 36px 22px;
  }

  .privacy-card h2 {
    font-size: 20px;
    margin-top: 34px;
  }
}

.privacy-card h2 {
  margin: 42px 0 16px;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  color: var(--pink-dark);
  letter-spacing: 0.03em;
  word-break: keep-all;
  overflow-wrap: normal;
}

@media (max-width: 767px) {
  .privacy-card h2 {
    font-size: 18px;
    margin-top: 34px;
    white-space: nowrap;
  }
}

:root {
  --tm-bg: #fff8f5;
  --tm-paper: #fffdfb;
  --tm-ink: #4d3f3a;
  --tm-sub: #7f716c;
  --tm-main: #dc7f82;
  --tm-main-soft: #f4c3bb;
  --tm-pale: #fff1ed;
  --tm-line: #eadbd7;
  --tm-shadow: 0 18px 48px rgba(111, 75, 66, 0.13);
}

.tm-service-page {
  background: #fff;
}

.tm-top-nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.tm-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--tm-ink);
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  letter-spacing: 0.08em;
}

.tm-logo small {
  display: block;
  color: var(--tm-main);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
}

.tm-logo-mark {
  width: 34px;
  height: 48px;
  opacity: 0.85;
}

.tm-nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tm-nav-links a {
  border-radius: 999px;
  padding: 9px 15px;
  text-decoration: none;
  color: var(--tm-ink);
  font-weight: 700;
  font-size: 13px;
}

.tm-nav-links a.active,
.tm-nav-links a:hover {
  background: var(--tm-pale);
  color: var(--tm-main);
}

.tm-service-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 20px 62px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 56px;
  align-items: center;
}

.tm-eyebrow {
  display: inline-block;
  position: relative;
  margin: 0 0 14px;
  color: var(--tm-main);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.tm-hero-copy p:last-child {
  margin: 22px 0 0;
  color: var(--tm-sub);
  font-weight: 500;
}

.tm-hero-image {
  position: relative;
}

.tm-hero-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  background: radial-gradient(circle, #fff 0%, #fff4ef 58%, transparent 70%);
  border-radius: 55% 45% 52% 48%;
  z-index: -1;
}

.tm-hero-image img {
  width: 100%;
  aspect-ratio: 1.24 / 1;
  object-fit: cover;
  border-radius: 56% 44% 48% 52%;
  box-shadow: 0 18px 44px rgba(201, 128, 118, 0.18);
}

.tm-badge {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--tm-pale);
  color: var(--tm-main);
  font-size: 13px;
  font-weight: 700;
}

.tm-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.tm-info-row div {
  padding: 18px;
  border: 1px solid var(--tm-line);
  border-radius: 18px;
  background: #fff7f4;
}

.tm-info-row b {
  display: block;
  color: var(--tm-main);
  font-size: 14px;
}

.tm-info-row span {
  display: block;
  color: var(--tm-ink);
  font-size: 14px;
}

.tm-list-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.tm-list-card {
  padding: 21px 23px;
  border: 1px solid var(--tm-line);
  border-radius: 22px;
  background: #fff;
}

.tm-list-card.can {
  border-top: 5px solid var(--tm-main-soft);
}

.tm-list-card.cannot {
  border-top: 5px solid #8ca98b;
}

.tm-list-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.tm-list-card ul {
  margin: 0;
  padding-left: 1.2em;
  font-size: 16px;
  line-height: 2;
}

.tm-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--tm-main);
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(220, 127, 130, 0.24);
  transition: 0.25s;
}

.tm-button:hover {
  transform: translateY(-2px);
  opacity: 0.94;
}

.tm-bookshelf {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 80px;
  min-height: 880px;
  perspective: 2800px;
}

.tm-book-card {
  display: none;
}

.tm-book-card.active {
  display: block;
}

.tm-book {
  position: relative;
  max-width: 1080px;
  min-height: 880px;
  margin: 0 auto;
  border-radius: 32px;
  transform-style: preserve-3d;
  filter: drop-shadow(0 24px 40px rgba(111, 75, 66, 0.16));
  cursor: pointer;
}

.tm-book-spine {
  position: absolute;
  left: 0;
  top: 26px;
  bottom: 26px;
  width: 24px;
  border-radius: 22px 0 0 22px;
  background: linear-gradient(90deg, #ca7377, #f0b9b0);
  z-index: 5;
}

.tm-page {
  position: absolute;
  inset: 0;
  min-height: 880px;
  overflow: hidden;
  border: 1px solid var(--tm-line);
  border-radius: 32px;
  background:
    linear-gradient(
      90deg,
      rgba(220, 127, 130, 0.14),
      transparent 9%,
      transparent 92%,
      rgba(220, 127, 130, 0.06)
    ),
    radial-gradient(
      circle at 92% 12%,
      rgba(244, 195, 187, 0.28),
      transparent 26%
    ),
    var(--tm-paper);
  box-shadow: var(--tm-shadow);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.tm-page::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 34px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(220, 127, 130, 0.28),
    transparent
  );
  z-index: 3;
  pointer-events: none;
}

.tm-page::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -22px;
  width: 150px;
  height: 220px;
  opacity: 0.32;
  pointer-events: none;
}

.tm-page-inner {
  position: relative;
  z-index: 5;
  min-height: 880px;
  padding: 46px 52px 42px 66px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.tm-page-kicker {
  margin: 0;
  color: var(--tm-main);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tm-book-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 34px;
  align-items: center;
}

.tm-book-head p {
  margin: 14px 0 0;
  color: var(--tm-sub);
}

.tm-midwife-img {
  width: 230px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 999px;
  border: 10px solid #fff4ef;
  box-shadow: 0 16px 36px rgba(111, 75, 66, 0.13);
}

.tm-back {
  z-index: 5;
  transform: none !important;
}

.tm-front {
  z-index: 30;
  transform-origin: left center;
  transform: rotateY(0deg) translateZ(0) skewY(0deg) scaleX(1);
  transition:
    transform 4.2s cubic-bezier(0.12, 0.72, 0.16, 1),
    box-shadow 4.2s ease,
    filter 4.2s ease;
  will-change: transform;
}

.tm-book.is-flipped .tm-front {
  transform: rotateY(-178deg) translateZ(24px) skewY(-1.2deg) scaleX(0.985);
  box-shadow:
    -36px 24px 54px rgba(90, 55, 50, 0.22),
    inset 24px 0 30px rgba(180, 100, 95, 0.16);
  filter: brightness(0.98);
}

.tm-front .tm-page-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.18) 38%,
    rgba(120, 70, 65, 0.2) 100%
  );
  transition: opacity 4.2s ease;
}

.tm-book.is-flipped .tm-front .tm-page-inner::before {
  opacity: 0.9;
}

.tm-timeline {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.tm-timeline li {
  position: relative;
  padding: 15px 18px 15px 94px;
  border: 1px solid var(--tm-line);
  border-radius: 18px;
  background: #fff7f4;
}

.tm-timeline span {
  position: absolute;
  left: 18px;
  top: 15px;
  color: var(--tm-main);
  font-weight: 700;
}

.tm-note {
  padding: 18px 20px;
  border-left: 5px solid var(--tm-main-soft);
  border-radius: 16px;
  background: #fff;
  color: var(--tm-sub);
  font-size: 15px;
  line-height: 1.9;
}

.tm-course-accordion {
  display: none;
}

.tm-button {
  position: relative;
  z-index: 60;
}

.tm-button.flip {
  align-self: flex-end;
  width: fit-content;
  margin-top: auto;
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 1024px) {
  .tm-bookshelf {
    min-height: auto !important;
    height: auto;
    padding: 0 16px 56px;
    perspective: none;
    overflow: visible;
  }

  .tm-book {
    position: relative;
    max-width: 720px;
    min-height: 0;
    height: auto;
    margin: 0 auto;
    transform: none;
    filter: none;
  }

  .tm-book-spine {
    display: none;
  }

  .tm-page {
    position: relative;
    inset: auto;
    min-height: 0;
    height: auto;
    overflow: visible;
    transform: none;
    border-radius: 28px;
  }

  .tm-front {
    z-index: auto;
  }

  .tm-back {
    display: none !important;
  }

  .tm-book.is-flipped .tm-front,
  .tm-book.is-flipped .tm-back {
    transform: none !important;
  }

  .tm-page-inner {
    min-height: 0;
    height: auto;
    padding: 34px 24px;
    overflow: visible;
  }

  .tm-page::before,
  .tm-page::after,
  .tm-front .tm-page-inner::before,
  .tm-front .tm-page-inner::after {
    display: none;
  }

  .tm-button.flip {
    display: none !important;
  }

  .tm-course-accordion {
    display: block;
    margin: 34px auto 0;
  }

  .tm-course-accordion summary {
    width: fit-content;
    margin: 0 auto;
    padding: 14px 32px;
    border-radius: 999px;
    background: #df7f86;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
  }

  .tm-course-accordion summary::-webkit-details-marker {
    display: none;
  }

  .tm-course-accordion[open] summary span {
    transform: rotate(90deg);
    display: inline-block;
  }

  .tm-course-panel {
    display: block;
    position: relative;
    margin-top: 24px;
    overflow: visible;
  }

  .tm-course-panel .tm-page-inner {
    min-height: auto;
    padding: 28px 22px;
  }
}

@media (max-width: 560px) {
  .tm-bookshelf {
    padding: 0 12px 48px;
  }

  .tm-page-inner {
    padding: 28px 18px;
  }

  .tm-info-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .tm-bookshelf,
  .tm-book-card,
  .tm-book,
  .tm-page,
  .tm-front,
  .tm-back,
  .tm-page-inner,
  .tm-book-head,
  .tm-info-row,
  .tm-list-row,
  .tm-list-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .tm-page,
  .tm-front,
  .tm-back {
    position: relative;
    inset: auto;
    transform: none;
  }

  .tm-page-inner {
    min-height: auto;
    padding: 32px 16px;
  }

  .tm-book-head,
  .tm-info-row,
  .tm-list-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .tm-list-card {
    padding: 18px 16px;
  }

  .tm-timeline li {
    padding-left: 16px;
  }

  .tm-timeline span {
    position: static;
    display: block;
    margin-bottom: 3px;
  }
}

@media (max-width: 760px) {
  .tm-top-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .tm-top-nav {
    position: relative;
  }

  .tm-nav-links {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 0;
    padding: 0 12px;
    margin-top: 16px;
  }

  .tm-nav-links a {
    flex: 1;
    text-align: center;
    font-size: 15px;
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .tm-service-hero {
    padding: 64px 20px 44px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tm-hero-image {
    max-width: 460px;
    margin: auto;
  }
}

/* ==========================================
   フッター（Footer）
   ========================================== */

.temari-flower-footer {
  position: relative;
  background: #fdf6f3;
  overflow: hidden;
}

.footer-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.deco-1 {
  top: 0;
  left: 0;
  width: 230px;
}

.deco-2 {
  top: 0;
  right: 0;
  width: 230px;
}

.deco-3,
.deco-4 {
  display: none;
}

.footer-deco img {
  display: block;
  width: 100%;
  height: auto;
}

.temari-flower-footer__inner {
  position: relative;
  z-index: 3;
  width: min(760px, 80vw);
  margin: 0 auto;
  padding: 64px 0 48px;
  text-align: center;
}

.footer-brand img {
  width: 70px;
  margin: 0 auto 12px;
}

.footer-brand h2 {
  margin: 0;
  color: #4a332f;
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.16em;
}

.footer-dot-line {
  width: min(580px, 100%);
  height: 2px;
  margin: 28px auto 32px;
  background-image: radial-gradient(#efaaaa 2px, transparent 2px);
  background-size: 16px 2px;
}

.footer-hours-title {
  margin: 0 0 18px;
  color: #4a3a36;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.footer-hours-title span {
  color: #ef6f68;
  margin-right: 10px;
}

.flower-hours-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #f1bcbc;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.flower-hours-table th,
.flower-hours-table td {
  border-right: 1px solid #f1caca;
  border-bottom: 1px solid #f1caca;
  padding: 14px 10px;
  text-align: center;
  font-weight: 400;
}

.flower-hours-table thead th {
  background: rgba(255, 239, 239, 0.88);
  font-weight: 600;
}

.flower-hours-table tr:last-child th,
.flower-hours-table tr:last-child td {
  border-bottom: none;
}

.flower-hours-table th:last-child,
.flower-hours-table td:last-child {
  border-right: none;
}

.flower-hours-table tbody th {
  width: 120px;
}

.footer-notice {
  display: inline-block;
  margin: 28px auto 0;
  padding: 0;
  max-width: 680px;
  list-style: none;
  text-align: left;
}

.footer-notice li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 30px;
  color: #4a3a36;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.footer-notice li::before {
  content: "✿";
  position: absolute;
  left: 0;
  color: #ef6f68;
}

.footer-contact-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4a3a36;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.footer-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-icon--line {
  background: #06c755;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.footer-icon--instagram {
  color: #e1306c;
  font-size: 25px;
  background: transparent;
}

.footer-icon--mail {
  color: #e9a7a8;
  font-size: 24px;
  background: transparent;
}

.footer-bottom-wave {
  position: relative;
  z-index: 4;
  height: 24px;
  background: radial-gradient(
      circle at 12px -1px,
      transparent 12px,
      #ffe4e4 13px
    )
    0 0 / 24px 24px repeat-x;
}

.footer-bottom {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  padding: 22px 20px 26px;
  background: linear-gradient(180deg, #ffe4e4, #ffdddd);
  color: #4a3a36;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
}

.footer-bottom span {
  width: 1px;
  height: 28px;
  background: #e8bcbc;
}

@media (max-width: 1024px) {
  .temari-flower-footer__inner {
    width: auto;
    padding: 150px 32px 48px;
  }

  .deco-1 {
    width: 260px;
    top: -20px;
    left: -30px;
  }

  .deco-2 {
    width: 260px;
    top: -20px;
    right: -30px;
  }

  .footer-brand h2 {
    font-size: 40px;
  }

  .footer-contact-links {
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom span {
    width: 24px;
    height: 1px;
  }
}

@media (max-width: 600px) {
  .temari-flower-footer {
    width: 100%;
    margin-top: 0;
  }

  .temari-flower-footer__inner {
    padding: 130px 16px 36px;
  }

  .deco-1 {
    width: 220px;
    top: -18px;
    left: -32px;
  }

  .deco-2 {
    width: 210px;
    top: -18px;
    right: -32px;
  }

  .footer-brand img {
    width: 64px;
  }

  .footer-brand h2 {
    font-size: 28px;
    letter-spacing: 0.12em;
  }

  .footer-dot-line {
    margin: 24px auto 28px;
  }

  .footer-hours-title {
    font-size: 16px;
  }

  .flower-hours-table {
    font-size: 12px;
  }

  .flower-hours-table th,
  .flower-hours-table td {
    padding: 10px 4px;
  }

  .flower-hours-table tbody th {
    width: 86px;
  }

  .footer-notice li,
  .footer-contact-link {
    font-size: 13px;
  }

  .footer-bottom {
    padding: 22px 16px 26px;
    font-size: 12px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}

.scroll-menu-button {
  position: fixed;
  top: 22px;
  right: 34px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: rgba(232, 141, 131, 0.95);
  box-shadow: 0 12px 28px rgba(217, 120, 132, 0.28);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition:
    opacity 0.9s ease,
    transform 0.9s ease,
    background 0.4s ease;
}

.scroll-menu-button span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: 0.3s ease;
}

.scroll-menu-panel {
  position: fixed;
  top: 92px;
  right: 34px;
  z-index: 9998;
  width: 280px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(130, 92, 82, 0.16);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease,
    transform 0.8s ease;
}

.scroll-menu-panel a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.header .nav {
  transition:
    opacity 0.9s ease,
    visibility 0.9s ease;
}

@media (min-width: 768px) {
  body.is-scrolled .header .nav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  body.is-scrolled .scroll-menu-button {
    display: flex;
  }
}

body.scroll-menu-open .scroll-menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body.scroll-menu-open .scroll-menu-button span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.scroll-menu-open .scroll-menu-button span:nth-child(2) {
  opacity: 0;
}

body.scroll-menu-open .scroll-menu-button span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@keyframes menuSoftAppear {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

body.is-scrolled .scroll-menu-button {
  animation: menuSoftAppear 0.9s ease forwards;
}

@media (max-width: 767px) {
  .scroll-menu-button,
  .scroll-menu-panel {
    display: none !important;
  }
}

@media (max-width: 767px) {
  html,
  body,
  .site {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  img,
  video,
  iframe,
  table {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 28px, 680px);
  }
}

.hero {
  overflow: hidden;
}

.hero__body {
  position: relative;
  z-index: 20;
}

.hero__visual {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-wrap {
  position: relative;
  width: min(48vw, 650px);
  aspect-ratio: 1 / 1;
  isolation: isolate;
  overflow: visible;
}

.hero-photo-wrap::before,
.hero-photo-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 130%;
  height: 130%;
  z-index: 1;
  pointer-events: none;
  border-radius: 58% 42% 47% 53% / 45% 57% 43% 55%;
  background: radial-gradient(
    ellipse at center,
    rgba(232, 141, 131, 0.24) 0%,
    rgba(255, 205, 215, 0.16) 28%,
    rgba(255, 230, 235, 0.08) 54%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translate(-50%, -50%) scale(0.25);
  opacity: 0;
  animation: heroWaterRipple 22s ease-out infinite;
}

.hero-photo-wrap::after {
  animation-delay: 7s;
  border-radius: 46% 54% 58% 42% / 56% 44% 52% 48%;
}

.hero-photo-frame {
  border-radius: 59% 41% 53% 47% / 45% 58% 42% 55%;
  animation:
    heroOrganicBlob 20s ease-in-out infinite,
    heroSlowFloat 14s ease-in-out infinite;
  box-shadow:
    0 0 80px rgba(232, 141, 131, 0.22),
    0 0 180px rgba(255, 210, 220, 0.2),
    0 0 320px rgba(255, 235, 240, 0.14);
}

.hero-photo-frame img {
  animation: heroGentleZoom 24s ease-in-out infinite;
}

@keyframes heroWaterRipple {
  0% {
    transform: translate(-50%, -50%) scale(0.25) rotate(0deg);
    opacity: 0;
  }
  12% {
    opacity: 0.72;
  }
  55% {
    opacity: 0.32;
    transform: translate(-50%, -50%) scale(3.6) rotate(7deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(8.2) rotate(-6deg);
  }
}

@keyframes heroOrganicBlob {
  0%,
  100% {
    border-radius: 59% 41% 53% 47% / 45% 58% 42% 55%;
  }
  25% {
    border-radius: 48% 52% 44% 56% / 59% 40% 60% 41%;
  }
  50% {
    border-radius: 42% 58% 57% 43% / 46% 61% 39% 54%;
  }
  75% {
    border-radius: 54% 46% 39% 61% / 58% 43% 57% 42%;
  }
}

@keyframes heroSlowFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes heroGentleZoom {
  0%,
  100% {
    transform: scale(1.055);
  }
  50% {
    transform: scale(1.1);
  }
}

@media (max-width: 767px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero__body {
    padding-bottom: 0;
  }

  .hero__visual {
    transform: none;
  }

  .hero-photo-wrap {
    width: 88vw;
    max-width: 420px;
  }
}

.hero-photo-wrap {
  position: relative;
  overflow: visible;
}

.hero-photo-frame {
  animation:
    heroBlobMove 9s ease-in-out infinite,
    heroFloatMove 6s ease-in-out infinite;
}

.hero-photo-frame img {
  animation: heroImageZoom 10s ease-in-out infinite;
}

@keyframes heroFloatMove {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes heroImageZoom {
  0%,
  100% {
    transform: scale(1.055);
  }
  50% {
    transform: scale(1.11);
  }
}

@keyframes heroBlobMove {
  0%,
  100% {
    border-radius: 58% 42% 47% 53% / 45% 57% 43% 55%;
  }
  25% {
    border-radius: 52% 48% 57% 43% / 51% 47% 53% 49%;
  }
  50% {
    border-radius: 44% 56% 60% 40% / 60% 40% 52% 48%;
  }
  75% {
    border-radius: 55% 45% 44% 56% / 47% 53% 58% 42%;
  }
}

.hero-photo-wrap {
  position: relative;
  overflow: visible !important;
  isolation: auto !important;
}

.hero-photo-frame {
  border-radius: 59% 41% 53% 47% / 45% 58% 42% 55% !important;
  animation:
    heroOrganicBlobFinal 18s ease-in-out infinite,
    heroFloatFinal 12s ease-in-out infinite !important;
}

.hero-photo-frame img {
  animation: heroZoomFinal 20s ease-in-out infinite !important;
}

.hero-ripple {
  display: block !important;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120%;
  height: 120%;
  opacity: 0;
  pointer-events: none;
  border: none !important;
  box-shadow: none !important;
  z-index: 2;
  border-radius: 58% 42% 47% 53% / 45% 57% 43% 55%;
  background: radial-gradient(
    ellipse at center,
    rgba(232, 141, 131, 0.28) 0%,
    rgba(255, 205, 215, 0.18) 30%,
    rgba(255, 230, 235, 0.08) 58%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: heroRippleFinal 20s ease-out infinite !important;
}

.ripple-1 {
  animation-delay: 0s !important;
}

.ripple-2 {
  animation-delay: 5s !important;
  border-radius: 46% 54% 58% 42% / 56% 44% 52% 48%;
}

.ripple-3 {
  animation-delay: 10s !important;
  border-radius: 62% 38% 45% 55% / 48% 60% 40% 52%;
}

.ripple-4 {
  animation-delay: 15s !important;
  border-radius: 50% 50% 60% 40% / 42% 58% 45% 55%;
}

@keyframes heroRippleFinal {
  0% {
    transform: translate(-50%, -50%) scale(0.25) rotate(0deg);
    opacity: 0;
  }
  14% {
    opacity: 0.7;
  }
  55% {
    transform: translate(-50%, -50%) scale(3.6) rotate(7deg);
    opacity: 0.28;
  }
  100% {
    transform: translate(-50%, -50%) scale(7.8) rotate(-6deg);
    opacity: 0;
  }
}

@keyframes heroOrganicBlobFinal {
  0%,
  100% {
    border-radius: 59% 41% 53% 47% / 45% 58% 42% 55%;
  }
  25% {
    border-radius: 48% 52% 44% 56% / 59% 40% 60% 41%;
  }
  50% {
    border-radius: 42% 58% 57% 43% / 46% 61% 39% 54%;
  }
  75% {
    border-radius: 54% 46% 39% 61% / 58% 43% 57% 42%;
  }
}

@keyframes heroFloatFinal {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes heroZoomFinal {
  0%,
  100% {
    transform: scale(1.055);
  }
  50% {
    transform: scale(1.1);
  }
}

.postnatal-flow__line {
  flex-shrink: 0;
  min-width: 300px;
  background: #79a863;
  color: #fff;
  border-radius: 8px;
  padding: 14px 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
}

.postnatal-flow__line span {
  background: #fff;
  color: #79a863;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 12px;
}

.postnatal-flow__line b {
  font-size: 28px;
  line-height: 1;
}

@media (max-width: 900px) {
  .postnatal-flow__line {
    width: 100%;
    min-width: auto;
    font-size: 16px;
  }

  .sp-only {
    display: block;
  }
}

.postnatal-flow__line {
  flex-shrink: 0;
  min-width: 300px;
  min-height: 58px;
  background: #79a863;
  color: #fff;
  border-radius: 8px;
  padding: 14px 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.postnatal-flow__line span {
  background: #fff;
  color: #79a863;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
  line-height: 1;
}

@media (max-width: 768px) {
  .privacy-hero h1 {
    font-size: 30px;
    line-height: 1.6;
    letter-spacing: 0.08em;
    word-break: keep-all;
  }

  .privacy-hero p,
  .privacy-lead {
    max-width: 320px;
    margin-inline: auto;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.04em;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: normal;
  }
}

@media (max-width: 768px) {
  .postnatal-flow__line {
    width: 100%;
  }
}

.postnatal-flow__line {
  width: 270px;
  height: 56px;
  padding: 0 20px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.postnatal-flow__line {
  gap: 10px;
}

.postnatal-flow__line span {
  flex-shrink: 0;
  margin: 0;
}

.postnatal-flow__line b {
  flex-shrink: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .postnatal-flow__line {
    width: 100%;
    max-width: 320px;
  }
}

.tm-single .tm-page-inner {
  position: relative;
  padding-bottom: 120px;
}

.tm-single .tm-button.flip {
  position: static !important;
  transform: none !important;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .tm-book-head {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tm-midwife-img {
    display: block;
    margin: 32px auto 0;
  }
}

@media (max-width: 768px) {
  .tm-page-inner.tm-course {
    min-height: auto;
    padding-bottom: 32px;
  }
}

.magazine-card__more {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: 0.3s;
}

.magazine-card:hover .magazine-card__more {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.about-hero__text h1 {
  margin: 0 0 28px;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .about-hero__text h1 {
    font-size: 42px;
  }
}

.about-hero__text h1,
.contact-hero__text h1 {
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.12em;
}

.about-hero__text p:last-child,
.contact-hero__text p:last-child {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 2;
}

.about-hero__text h1,
.contact-hero__text h1 {
  margin: 0 0 28px !important;
  font-size: clamp(28px, 3vw, 42px) !important;
  font-weight: 500 !important;
  line-height: 1.7 !important;
  letter-spacing: 0.08em !important;
}

.about-hero__text p:last-child,
.contact-hero__text p:last-child {
  font-size: 17px !important;
  line-height: 2 !important;
}

@media (max-width: 767px) {
  .about-hero__text h1,
  .contact-hero__text h1 {
    font-size: clamp(26px, 7vw, 34px) !important;
    line-height: 1.7 !important;
    letter-spacing: 0.08em !important;
  }

  .about-hero__text p:last-child,
  .contact-hero__text p:last-child {
    font-size: 15px !important;
  }
}

.about-leaf {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
  filter: blur(0.3px);
}

.section-transition {
  position: relative;
  z-index: 1;
}

.section-transition::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 220px;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.65) 40%,
    rgba(255, 255, 255, 0.25) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: blur(30px);
}

.section-transition > * {
  position: relative;
  z-index: 2;
}

body {
  background: linear-gradient(
    180deg,
    #faf8f5 0%,
    #fbf9f6 20%,
    #ffffff 40%,
    #fcfbf9 60%,
    #ffffff 80%,
    #faf8f5 100%
  );
}

.about-family__text h2 {
  margin: 0 0 40px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.12em;
  color: #555;
}

.about-family__text p {
  font-size: 1rem;
  line-height: 2.2;
  color: #666;
  max-width: 680px;
}

.about-family .section-title {
  text-align: left;
  margin-bottom: 40px;
}

.about-greeting__text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-label {
  margin-bottom: 12px;
}

.about-greeting__text .section-title {
  margin-top: 0;
}

body .about-message .about-message__box h2.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem) !important;
  line-height: 1.7 !important;
  letter-spacing: 0.12em !important;
  font-weight: 400 !important;
}

.about-greeting__text .about-label {
  text-align: center;
  margin-bottom: 18px;
}

.about-greeting__text .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.about-greeting__text p {
  width: 100%;
  max-width: 620px;
  margin: 0 auto 24px;
  text-align: left;
  line-height: 2.1;
}

.about-hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-hero__text .about-label {
  text-align: center;
  margin-bottom: 18px;
}

.about-hero__text .section-title {
  text-align: center;
  margin-bottom: 20px;
}

.about-family__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-family__text .about-label {
  text-align: center;
  margin-bottom: 18px;
}

.about-family__text .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.about-family__text p:not(.about-label) {
  max-width: 680px;
  text-align: left;
  margin: 0 auto;
  line-height: 2.2;
}

.about-family .about-family__text > p.about-label {
  color: #ea8f83 !important;
}

.info-btn--line,
.about-cta .info-btn--line {
  background: #79a863;
  border: 1px solid #79a863;
  color: #fff;
}

.info-btn--line:hover,
.about-cta .info-btn--line:hover {
  background: #6e9a59;
  border-color: #6e9a59;
}

.section-title {
  text-align: center;
}

.section-title::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
}

.hero-photo-frame {
  animation: heroBlobYurayura 8s ease-in-out infinite;
}

.hero-ripple {
  border-radius: 58% 42% 47% 53% / 45% 57% 43% 55%;
  border: 6px solid rgba(236, 128, 137, 0.9);
  background: radial-gradient(
    closest-side,
    rgba(255, 255, 255, 0) 52%,
    rgba(255, 232, 236, 0.3) 62%,
    rgba(255, 178, 197, 0.5) 76%,
    rgba(236, 128, 137, 0.38) 88%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow:
    0 0 0 12px rgba(255, 214, 222, 0.35),
    0 0 46px rgba(236, 128, 137, 0.34),
    0 0 110px rgba(255, 190, 200, 0.22);
  opacity: 0;
  animation: heroRippleSoft3 15s linear 1 forwards;
}

.ripple-1 {
  animation-delay: 0s;
}

.ripple-2 {
  animation-delay: 5s;
}

.ripple-3 {
  animation-delay: 10s;
}

.ripple-4 {
  display: none;
}

@keyframes heroRippleSoft3 {
  0% {
    transform: translate(-50%, -50%) scale(0.64) rotate(0deg);
    opacity: 0;
  }
  9% {
    opacity: 1;
  }
  40% {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(1.75) rotate(5deg);
    border-radius: 44% 56% 60% 40% / 60% 40% 52% 48%;
  }
  72% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(3.2) rotate(-4deg);
    border-radius: 55% 45% 44% 56% / 47% 53% 58% 42%;
  }
  100% {
    transform: translate(-50%, -50%) scale(4.8) rotate(0deg);
    opacity: 0;
  }
}

@keyframes heroBlobYurayura {
  0%,
  100% {
    border-radius: 58% 42% 47% 53% / 45% 57% 43% 55%;
  }
  50% {
    border-radius: 52% 48% 56% 44% / 53% 48% 52% 47%;
  }
}

@media (min-width: 768px) {
  .nav {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 30px !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .nav a {
    display: inline-flex !important;
    align-items: center;
    white-space: nowrap;
  }
}

.floating-reserve-button {
  position: fixed;
  right: 34px;
  bottom: 34px;
  z-index: 9999;
  display: block;
  width: 170px;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    visibility 0.7s ease;
  animation: floatingReserveYurayura 4s ease-in-out infinite;
}

.floating-reserve-button img {
  width: 100%;
  height: auto;
  display: block;
}

.floating-reserve-button.is-hide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.92);
  pointer-events: none;
}

@keyframes floatingReserveYurayura {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-10px) rotate(3deg);
  }
}

.page-top-button {
  position: fixed;
  right: 42px;
  bottom: 42px;
  z-index: 9998;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 141, 131, 0.92);
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(217, 120, 132, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.9);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    visibility 0.55s ease;
}

.page-top-button.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.page-top-button:hover {
  background: #d97884;
  transform: translateY(-4px) scale(1.04);
}

@media (max-width: 767px) {
  .floating-reserve-button {
    right: 16px;
    bottom: 18px;
    width: 128px;
  }

  .page-top-button {
    right: 24px;
    bottom: 24px;
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

.about-greeting__text {
  text-align: center;
}

.about-greeting__text p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.about-family__text {
  text-align: center;
}

.about-family__text p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .about-family__text {
    text-align: center !important;
  }

  .about-family__text p {
    width: 100%;
    max-width: 32em;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
}

.about-family__text,
.about-family__text * {
  text-align: center !important;
}

.contact-intro__box h2 {
  position: relative;
  padding-bottom: 24px;
}

.contact-intro__box h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background: #f0a3a3;
  border-radius: 999px;
}

.tm-hero-copy h1 {
  position: relative;
  margin-bottom: 12px;
}

.tm-hero-copy h1::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  background: var(--tm-main-soft);
  margin: 8px auto 0;
  border-radius: 999px;
}

.hero-photo-wrap {
  position: relative;
  width: min(58vw, 780px);
  aspect-ratio: 1 / 1;
  overflow: visible;
  margin: 0 auto;
  isolation: isolate;
}

@media (max-width: 768px) {
  .hero-photo-wrap {
    width: min(84vw, 380px);
  }
}

@media (max-width: 767px) {
  .floating-reserve-button {
    width: 140px !important;
    right: 16px !important;
    bottom: 16px !important;
  }

  .floating-reserve-button img {
    width: 100% !important;
    height: auto !important;
    display: block;
  }
}

.info-btn--line {
  background: #79a863;
  border: 1px solid #79a863;
  color: #fff;
}

.info-btn--line:hover {
  background: #6e9a59;
  border-color: #6e9a59;
}

.nav a {
  position: relative;
  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.nav a:not(.btn):hover {
  color: #df7f8b;
}

.nav a.btn:hover,
.nav a.btn--small:hover {
  color: #fff;
  background: #d5747d;
  display: none;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #df7f8b;
  border-radius: 999px;
  transition: all 0.35s ease;
  transform: translateX(-50%);
}

.nav a:hover::after {
  width: 100%;
}

.btn--small {
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn--small:hover {
  background: #d5747d;
  color: #fffbea;
  transform: translateY(-2px);
  box-shadow:
    0 10px 24px rgba(213, 116, 125, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  /* =====================================
   ヘッダー予約ボタン
===================================== */
  .header-reserve,
  .btn--small,
  .header-contact-btn {
    color: #fff !important;
  }
  .header-reserve:hover,
  .btn--small:hover,
  .header-contact-btn:hover {
    color: #fff !important;
    background: #d5747d;
  }
}

.info-btn--line {
  min-width: 300px;
  min-height: 54px;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 700;
  background: #79a863;
  border: 1px solid #79a863;
  color: #fff;
}

.info-card--hours {
  text-align: center;
}

.info-card--hours .info-hours-table {
  margin-left: auto;
  margin-right: auto;
}

.info-card--hours .info-note {
  text-align: center;
}

.hero-achievements {
  display: flex;
  align-items: stretch;
  gap: 40px;
  margin-top: 40px;
  max-width: 620px;
}

.hero-achievement {
  flex: 1;
  min-width: 0;
}

.hero-achievement__small {
  margin: 12px 0 8px;
  color: #e88d83;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}

.hero-achievement__large {
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

.hero-achievement__large--sub {
  font-size: 17px;
  line-height: 1.9;
}

.hero-achievements {
  display: flex;
  gap: 28px;
  margin-top: 42px;
  width: 100%;
  max-width: 560px;
  transform: translateX(-25px);
}

.hero-achievement {
  flex: 1;
}

.laurel-frame {
  position: relative;
  text-align: center;
  padding: 24px 40px;
}

.laurel-frame::before,
.laurel-frame::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 150px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.75;
}

.laurel-frame::before {
  left: 0;
}

.laurel-frame::after {
  right: 0;
}

.laurel-frame i {
  color: #e88d83;
  font-size: 32px;
  margin-bottom: 12px;
}

.hero-achievement__small {
  color: #e88d83;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
  margin: 8px 0;
}

.hero-achievement__large {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

.hero-achievement__large--sub {
  font-size: 17px;
}

.hero-photo-frame {
  position: absolute;
  inset: 0;
  z-index: 10;
  overflow: hidden;
  border-radius: 58% 42% 47% 53% / 45% 57% 43% 55%;
  background: transparent;
  box-shadow:
    0 0 0 10px rgba(255, 226, 231, 0.78),
    0 0 0 22px rgba(255, 196, 209, 0.26),
    0 18px 46px rgba(205, 115, 116, 0.12);
  animation: none;
}

@media (max-width: 767px) {
  .hero-photo-wrap {
    width: min(92vw, 430px);
  }

  .hero-photo-frame {
    box-shadow:
      0 0 0 7px rgba(255, 226, 231, 0.74),
      0 0 0 15px rgba(255, 196, 209, 0.22),
      0 10px 28px rgba(205, 115, 116, 0.1);
  }
}

.tm-bookshelf {
  min-height: 1040px !important;
  padding-bottom: 120px !important;
  overflow: visible !important;
}

.tm-book {
  min-height: 1040px !important;
  overflow: visible !important;
}

.tm-page {
  min-height: 1040px !important;
  overflow: visible !important;
}

.tm-page-inner {
  min-height: 1040px !important;
  padding-bottom: 90px !important;
}

.tm-button,
.tm-button.flip {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 80 !important;
}

.tm-button.flip {
  margin-top: 42px !important;
  margin-left: auto !important;
}

@media (max-width: 1024px) {
  .tm-bookshelf,
  .tm-book,
  .tm-page,
  .tm-page-inner {
    min-height: 0 !important;
    height: auto !important;
    overflow: visible !important;
  }

  .tm-page-inner {
    padding-bottom: 56px !important;
  }

  .tm-button.flip {
    margin-top: 32px !important;
  }
}

.tm-page ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.tm-page ul li {
  margin-bottom: 14px;
}

.first-guide {
  width: min(100% - 28px, 1120px);
  margin: 64px auto 0;
  padding: 58px clamp(18px, 5vw, 46px);
  border: 1px solid rgba(239, 215, 214, 0.9);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
  box-shadow: 0 18px 45px rgba(146, 96, 88, 0.14);
}

.first-guide__intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.first-guide .eyebrow {
  margin: 0 0 8px;
  color: #7a706b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.first-guide h2 {
  margin: 0;
  color: #4f4743;
  font-family: "Kiwi Maru", "Zen Maru Gothic", sans-serif;
  font-size: clamp(25px, 7vw, 36px);
  font-weight: 700;
  line-height: 1.45;
}

.first-guide p {
  margin: 16px 0 0;
  color: #7a706b;
  font-size: 16px;
  line-height: 1.9;
}

.guide-flow,
.guide-notes {
  display: grid;
  gap: 16px;
}

.guide-flow {
  margin-top: 34px;
}

.guide-notes {
  margin-top: 18px;
}

.guide-flow article,
.guide-notes section {
  padding: 22px;
  border: 1px solid rgba(239, 215, 214, 0.82);
  border-radius: 8px;
  background: #fffdf8;
}

.guide-notes section {
  background: #fff;
}

.guide-flow span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #d87380;
  font-weight: 700;
}

.guide-flow h3,
.guide-notes h3 {
  margin: 0 0 8px;
  color: #d87380;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.guide-flow p,
.guide-notes p {
  margin: 0;
  color: #7a706b;
}

.guide-notes small {
  display: block;
  margin-top: 10px;
  color: #7a706b;
  font-size: 14px;
  line-height: 1.8;
}

.guide-notes ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-notes li {
  position: relative;
  padding-left: 24px;
  color: #7a706b;
  line-height: 1.9;
}

.guide-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e88991;
}

@media (min-width: 700px) {
  .guide-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .guide-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .first-guide {
    width: min(100% - 22px, 1120px);
    margin-top: 48px;
    padding: 42px 18px;
  }

  .first-guide p,
  .guide-flow p,
  .guide-notes p,
  .guide-notes li {
    font-size: 15px;
  }
}

.tm-back-btn-wrap {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 32px;
}

.tm-back-btn-wrap .tm-button,
.tm-back-btn-wrap .tm-button.flip {
  width: auto;
  min-width: 180px;
  margin-left: auto;
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  background: #8aaa8f;
  color: #fff;
  box-shadow: 0 14px 30px rgba(138, 170, 143, 0.28);
}

.tm-back-btn-wrap .tm-button:hover,
.tm-back-btn-wrap .tm-button.flip:hover {
  background: #789b7e;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .tm-back-btn-wrap {
    justify-content: center;
  }

  .tm-back-btn-wrap .tm-button,
  .tm-back-btn-wrap .tm-button.flip {
    width: 100%;
    max-width: 320px;
    margin-left: 0;
  }
}

.first-guide {
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(255, 226, 229, 0.75) 0 90px,
      transparent 91px
    ),
    radial-gradient(
      circle at 88% 92%,
      rgba(255, 238, 220, 0.8) 0 120px,
      transparent 121px
    ),
    linear-gradient(180deg, #fffafa 0%, #fff5f6 100%);
  border: 1px solid rgba(244, 198, 198, 0.75);
  box-shadow:
    0 18px 45px rgba(196, 132, 132, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.first-guide .eyebrow {
  color: #e88991;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.first-guide h2 {
  color: #4f4743;
}

.first-guide__intro p {
  color: #7d716c;
}

.guide-flow article,
.guide-notes section {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(244, 198, 198, 0.65);
  box-shadow: 0 12px 28px rgba(196, 132, 132, 0.08);
}

.guide-flow article {
  position: relative;
  overflow: hidden;
}

.guide-flow article::before {
  content: "";
  position: absolute;
  top: -32px;
  right: -32px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(255, 226, 229, 0.65);
}

.guide-flow span {
  position: relative;
  z-index: 1;
  color: #e88991;
}

.guide-flow h3,
.guide-notes h3 {
  position: relative;
  z-index: 1;
  color: #e88991;
}

.guide-flow p,
.guide-notes p,
.guide-notes li,
.guide-notes small {
  color: #756b67;
}

.guide-notes li::before {
  background: #e88991;
}

.tm-service-page .tm-hero-image {
  position: relative;
  width: min(42vw, 520px);
  max-width: 100%;
  margin: 0 auto;
  isolation: isolate;
}

.tm-service-page .tm-hero-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  background: #fde9eb;
  filter: drop-shadow(0 18px 38px rgba(232, 141, 145, 0.12));
}

.tm-service-page .tm-hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

body:has(a[href="postpartum-care.html"].active) .tm-hero-image::before,
body:has(a[href="postpartum-care.html"].active) .tm-hero-image img {
  border-radius: 58% 42% 47% 53% / 45% 57% 43% 55%;
}

body:has(a[href="babysitter.html"].active) .tm-hero-image::before,
body:has(a[href="babysitter.html"].active) .tm-hero-image img {
  border-radius: 51% 49% 56% 44% / 48% 42% 58% 52%;
}

body:has(a[href="homecare.html"].active) .tm-hero-image::before,
body:has(a[href="homecare.html"].active) .tm-hero-image img {
  border-radius: 44% 56% 50% 50% / 56% 46% 54% 44%;
}

.tm-service-page .tm-hero-image::before,
.tm-service-page .tm-hero-image img {
  border-radius: 56% 44% 52% 48% / 48% 54% 46% 52%;
}

.tm-service-page .tm-hero-image br {
  display: none;
}

@media (max-width: 1024px) {
  .tm-service-page .tm-hero-image {
    width: min(72vw, 460px);
  }
}

@media (max-width: 767px) {
  .tm-service-page .tm-hero-image {
    width: min(86vw, 360px);
    margin-top: 24px;
  }

  .tm-service-page .tm-hero-image::before {
    inset: -12px;
  }
}

@media (max-width: 767px) {
  .tm-button.flip.pc-only,
  button.tm-button.flip.pc-only {
    display: none !important;
  }

  .tm-course-accordion {
    display: block;
    width: 100%;
    margin: 28px 0 0;
    padding: 0;
  }

  .tm-course-accordion summary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 260px);
    min-height: 48px;
    margin: 0 auto;
    padding: 13px 24px;
    border-radius: 999px;
    background: #df7f8b;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    list-style: none;
    box-shadow: 0 14px 30px rgba(217, 120, 132, 0.26);
    cursor: pointer;
  }

  .tm-course-accordion summary::-webkit-details-marker {
    display: none;
  }

  .tm-course-panel {
    margin-top: 28px;
  }

  .tm-page-inner .tm-button.flip,
  .tm-button.flip {
    margin-left: auto;
    margin-right: auto;
  }

  .tm-back-btn-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 28px;
  }

  .tm-back-btn-wrap .tm-button.flip {
    width: min(100%, 260px);
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .tm-service-page .tm-book-card:first-of-type .tm-button.flip.pc-only {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: min(100%, 260px);
    min-height: 48px;
    margin: 28px auto 0 !important;
    padding: 13px 24px;
    border-radius: 999px;
    background: #df7f8b;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 14px 30px rgba(217, 120, 132, 0.26);
  }
}

@media (max-width: 767px) {
  .tm-page-inner {
    padding-bottom: 72px !important;
  }

  .tm-list-row,
  .tm-info-row {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 767px) {
  .tm-button.flip.pc-only {
    display: none !important;
  }

  .tm-course-accordion {
    display: block !important;
    width: 100%;
    margin: 32px 0 0 !important;
    padding: 0;
  }

  .tm-course-accordion summary {
    position: static !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 260px);
    min-height: 48px;
    margin: 0 auto;
    padding: 13px 24px;
    border-radius: 999px;
    background: #df7f8b;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    list-style: none;
    box-shadow: 0 14px 30px rgba(217, 120, 132, 0.26);
    cursor: pointer;
  }
}

@media (max-width: 767px) {
  .tm-course-accordion:not([open]) .tm-course-panel {
    display: none !important;
    height: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  .tm-course-accordion[open] .tm-course-panel {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 28px;
  }
}

@media (max-width: 767px) {
  .tm-page.tm-back {
    display: none !important;
  }

  .tm-course-accordion {
    display: block !important;
    width: 100%;
    margin: 32px 0 0 !important;
  }

  .tm-course-accordion summary {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: min(100%, 260px);
    min-height: 48px;
    margin: 0 auto;
    padding: 13px 24px;
    border-radius: 999px;
    background: #df7f8b;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    list-style: none;
    box-shadow: 0 14px 30px rgba(217, 120, 132, 0.26);
    cursor: pointer;
  }

  .tm-course-accordion:not([open]) .tm-course-panel {
    display: none !important;
  }

  .tm-course-accordion[open] .tm-course-panel {
    display: block !important;
    margin-top: 28px;
  }

  .tm-course-accordion .tm-page-inner {
    min-height: 0 !important;
    padding: 32px 0 0 !important;
  }
}

.dot-frame-message {
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: calc(100% - 40px);
  margin: 40px auto;
  padding: 24px 38px;
  background: #f6d0c2;
  text-align: center;
}

.dot-frame-message::before {
  content: "";
  position: absolute;
  inset: -15px;
  border: 5px dotted #5f9997;
  pointer-events: none;
}

.dot-frame-message p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #6f6f6f;
  font-size: clamp(16px, 4.2vw, 21px);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

@media (max-width: 560px) {
  .dot-frame-message {
    padding: 20px 22px;
  }

  .dot-frame-message::before {
    inset: -11px;
    border-width: 4px;
  }
}

.faq-contact {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 64px auto 0;
  padding: 24px 16px 0;
  text-align: center;
}

.dot-frame-message {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: min(100%, 620px);
  max-width: calc(100% - 40px);
  margin: 0 auto;
  padding: 34px 56px 30px;
  background: #f6d0c2;
  text-align: center;
}

.dot-frame-message p {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: #6f6f6f;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.08em;
  text-align: center;
}

.dot-frame-message a {
  position: relative;
  z-index: 1;
  margin-inline: auto;
}

@media (max-width: 560px) {
  .faq-contact {
    margin-top: 52px;
    padding-inline: 20px;
  }

  .dot-frame-message {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 28px 20px 26px;
  }

  .dot-frame-message p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.85;
  }
}

.faq-contact {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 48px 20px 76px !important;
  display: flex !important;
  justify-content: center !important;
  text-align: center !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.faq-contact .dot-frame-message {
  position: relative;
  width: min(760px, calc(100vw - 56px)) !important;
  max-width: 760px !important;
  margin: 0 auto !important;
  padding: 40px 56px 36px !important;
  background: #f6d0c2;
  text-align: center;
}

.faq-contact .dot-frame-message::before {
  content: "";
  position: absolute;
  inset: -15px;
  border: 5px dotted #5f9997;
  pointer-events: none;
}

.faq-contact .dot-frame-message p {
  margin: 0 0 22px;
  color: #6f6f6f;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.08em;
  text-align: center;
}

@media (max-width: 560px) {
  .faq-contact {
    padding: 42px 18px 64px !important;
  }

  .faq-contact .dot-frame-message {
    width: calc(100vw - 48px) !important;
    padding: 30px 20px 28px !important;
  }

  .faq-contact .dot-frame-message::before {
    inset: -11px;
    border-width: 4px;
  }
}

html {
  scroll-behavior: smooth;
}

.midwife-service-guide {
  padding: 56px 20px 48px;
  background: #fffaf7;
  color: #4a403a;
}

@media (max-width: 840px) {
  .midwife-service-guide {
    padding: 42px 16px 38px;
  }
}

body {
  word-break: normal;
  overflow-wrap: break-word;
  line-break: strict;
}

p,
li,
dd,
td,
th,
.magazine-card__text,
.magazine-card__price,
.worry-card p,
.temari-feature__text p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
.section-title,
.hero__title,
.magazine-card h3 {
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

@media (max-width: 767px) {
  body {
    letter-spacing: 0.035em;
  }

  .hero__label,
  .hero__copy,
  .magazine-menu__lead,
  .temari-feature__lead {
    word-break: normal;
    overflow-wrap: break-word;
  }

  .hero__title span {
    white-space: normal;
  }
}

.hero-photo-frame {
  position: absolute;
  inset: 0;
  z-index: 10;
  overflow: hidden;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#kawasaki-postpartum-care,
#babysitter,
#home-visit-care {
  scroll-margin-top: 120px;
}

.magazine-card__number {
  display: inline-block;
  margin: 0 0 8px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.magazine-card__category {
  display: inline-block;
  margin: 0 0 14px;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--pink-bg);
  color: var(--pink);
  font-size: 12px;
  font-weight: 600;
}

.voice {
  display: block;
  margin: 0;
  padding: 76px 0;
  border-radius: 0;
  background: var(--cream);
  color: var(--text);
}

@media (max-width: 767px) {
  .hero-photo-wrap {
    width: min(92vw, 430px);
    margin-inline: auto;
  }

  .hero__visual {
    padding-bottom: 52px;
  }
}

.midwife-service-guide {
  padding: 72px 0 64px;
  background: #fffdfb;
}

@media (max-width: 767px) {
  .midwife-service-guide {
    padding: 56px 0 52px;
  }
}

.watercolor-guide {
  position: relative;
  padding: 82px 0 0;
  background: linear-gradient(180deg, #fffdfb 0%, #fff 72%, #fff8f5 100%);
  overflow: hidden;
}

.watercolor-guide__inner {
  width: min(100% - 48px, 1440px);
  margin-inline: auto;
  text-align: center;
}

.watercolor-guide__small {
  margin: 0 0 10px;
  color: #df827d;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.watercolor-guide__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.watercolor-card {
  position: relative;
  min-height: 430px;
  padding: 72px 34px 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 220px 220px 28px 28px;
  border: 1px solid rgba(190, 160, 150, 0.24);
  box-shadow: 0 20px 44px rgba(120, 90, 80, 0.08);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.watercolor-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 210px 210px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  pointer-events: none;
}

.watercolor-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 26% 28%,
      rgba(255, 255, 255, 0.72),
      transparent 24%
    ),
    radial-gradient(
      circle at 70% 42%,
      rgba(255, 255, 255, 0.42),
      transparent 30%
    ),
    radial-gradient(
      circle at 38% 78%,
      rgba(255, 255, 255, 0.62),
      transparent 34%
    );
  opacity: 0.75;
  pointer-events: none;
}

.watercolor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 58px rgba(120, 90, 80, 0.12);
}

.watercolor-card--pink {
  background:
    radial-gradient(
      circle at 25% 30%,
      rgba(255, 215, 214, 0.75),
      transparent 34%
    ),
    radial-gradient(
      circle at 75% 72%,
      rgba(255, 238, 232, 0.9),
      transparent 40%
    ),
    #fff7f6;
}

.watercolor-card--green {
  background:
    radial-gradient(
      circle at 25% 32%,
      rgba(220, 235, 210, 0.75),
      transparent 34%
    ),
    radial-gradient(
      circle at 72% 72%,
      rgba(246, 250, 241, 0.9),
      transparent 42%
    ),
    #f7fbf6;
}

.watercolor-card--blue {
  background:
    radial-gradient(
      circle at 28% 32%,
      rgba(220, 238, 248, 0.78),
      transparent 35%
    ),
    radial-gradient(
      circle at 74% 72%,
      rgba(246, 251, 255, 0.92),
      transparent 42%
    ),
    #f8fbfe;
}

.watercolor-card__icon {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  margin-bottom: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 0 0 1px rgba(190, 160, 150, 0.18),
    0 8px 20px rgba(120, 90, 80, 0.06);
  font-size: 42px;
}

.watercolor-card--pink .watercolor-card__icon,
.watercolor-card--pink .watercolor-card__button {
  color: #d77c82;
  border-color: rgba(215, 124, 130, 0.65);
}

.watercolor-card--green .watercolor-card__icon,
.watercolor-card--green .watercolor-card__button {
  color: #7d9b77;
  border-color: rgba(125, 155, 119, 0.65);
}

.watercolor-card--blue .watercolor-card__icon,
.watercolor-card--blue .watercolor-card__button {
  color: #7ea3c3;
  border-color: rgba(126, 163, 195, 0.65);
}

.watercolor-card__main {
  position: relative;
  z-index: 2;
  margin-bottom: 54px;
  color: #3f302c;
  font-size: clamp(20px, 1.8vw, 29px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.watercolor-card__button {
  position: relative;
  z-index: 2;
  min-width: 250px;
  padding: 14px 28px;
  border: 1.5px solid;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.watercolor-guide__divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  margin: 48px auto 0;
}

.watercolor-guide__divider span {
  display: block;
  border-top: 4px dotted rgba(232, 141, 131, 0.35);
}

.watercolor-guide__divider img {
  width: 120px;
  opacity: 0.82;
}

.watercolor-guide__point {
  margin-top: 28px;
  padding: 34px 0 36px;
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: center;
  gap: 34px;
  background: rgba(255, 244, 242, 0.78);
}

.watercolor-guide__point-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #df827d;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.watercolor-guide__point-title i {
  font-size: 34px;
}

.watercolor-guide__point ul {
  margin: 0;
  padding: 0 24px 0 34px;
  text-align: left;
  border-left: 2px dotted rgba(232, 141, 131, 0.35);
  color: #4a3a35;
  font-size: 17px;
  line-height: 2.1;
}

.watercolor-guide__point li {
  margin: 0;
}

@media (max-width: 767px) {
  .watercolor-guide {
    padding: 56px 0 0;
  }

  .watercolor-guide__inner {
    width: min(100% - 28px, 520px);
  }

  .watercolor-guide__small {
    font-size: 14px;
  }

  .watercolor-guide__list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .watercolor-card {
    min-height: auto;
    padding: 28px 22px;
    border-radius: 48px 48px 22px 22px;
  }

  .watercolor-card::before {
    inset: 8px;
    border-radius: 42px 42px 18px 18px;
  }

  .watercolor-card__icon {
    width: 66px;
    height: 66px;
    margin-bottom: 18px;
    font-size: 28px;
  }

  .watercolor-card__main {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .watercolor-card__button {
    min-width: 0;
    width: 100%;
    max-width: 260px;
    padding: 10px 20px;
    font-size: 15px;
  }

  .watercolor-guide__divider {
    gap: 14px;
    margin-top: 34px;
  }

  .watercolor-guide__divider img {
    width: 76px;
  }

  .watercolor-guide__point {
    margin-inline: calc(50% - 50vw);
    padding: 28px 24px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .watercolor-guide__point-title {
    font-size: 18px;
  }

  .watercolor-guide__point-title i {
    font-size: 26px;
  }

  .watercolor-guide__point ul {
    padding: 0;
    border-left: none;
    font-size: 14px;
    line-height: 2;
  }
}

.watercolor-guide {
  padding-top: 64px;
}

.watercolor-guide__small {
  font-size: 14px;
}

.watercolor-card {
  min-height: 340px;
  padding: 52px 28px 40px;
}

.watercolor-card__icon {
  width: 76px;
  height: 76px;
  margin-bottom: 40px;
  font-size: 32px;
}

.watercolor-card__main {
  margin-bottom: 34px;
  font-size: clamp(18px, 1.45vw, 24px);
}

.watercolor-card__button {
  min-width: 200px;
  padding: 10px 22px;
  font-size: 15px;
}

.watercolor-guide__divider {
  margin-top: 38px;
}

.watercolor-guide__point {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  padding: 30px 40px;
  background: rgba(255, 247, 245, 0.96);
  color: #4a3a35;
  opacity: 1;
}

.watercolor-guide__point-title {
  color: #df827d;
  opacity: 1;
}

.watercolor-guide__point-title span,
.watercolor-guide__point-title i {
  opacity: 1;
}

.watercolor-guide__point ul {
  color: #4a3a35;
  opacity: 1;
}

.watercolor-guide__point li {
  color: #4a3a35;
  opacity: 1;
}

.watercolor-guide::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(255, 248, 245, 0) 0%, #ffffff 100%);
  pointer-events: none;
  z-index: 1;
}

.watercolor-guide__inner {
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .watercolor-guide {
    padding-top: 48px;
  }

  .watercolor-card {
    padding: 26px 20px;
  }

  .watercolor-card__main {
    font-size: 17px;
  }

  .watercolor-guide__point {
    padding: 26px 22px 38px;
  }
}

.watercolor-guide__small {
  display: inline-block;
  margin: 0 0 16px;
  color: #ef8b84;
  /* サイト共通のアクセントピンク */
  font-family: inherit;
  /* 他のセクションと同じ */
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: none;
}

@media (max-width: 767px) {
  .watercolor-guide__small {
    font-size: 15px;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
  }
}

.watercolor-guide__small {
  margin: 0 0 8px;
  color: #ef8b84;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
}

.magazine-card h3 {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 12px;
  color: var(--text);
  font-family: "Kiwi Maru", serif;
  font-size: clamp(19px, 1.45vw, 23px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.03em;
  /* 長いタイトルでも自然に折り返す */
  text-wrap: balance;
  word-break: keep-all;
}

.magazine-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--pink);
  opacity: 0.75;
  margin-top: 10px;
}

.magazine-card__category {
  margin-bottom: 18px;
}

.magazine-card__text {
  color: #5d5551;
  font-size: 16px;
  line-height: 2;
}

@media (max-width: 767px) {
  .magazine-card h3 {
    font-size: 20px;
    line-height: 1.45;
  }
}

body:has(a[href="faq.html"]) > .site > .tm-service-hero,
body:has(a[href="faq.html"]) .site > .tm-service-hero {
  padding-top: 150px;
  padding-bottom: 88px;
  align-items: center;
}

body:has(a[href="faq.html"]) .tm-service-hero .tm-hero-image {
  align-self: center;
  margin-top: 0;
}

body:has(a[href="faq.html"]) .tm-service-hero .tm-hero-image img {
  display: block;
  max-height: 430px;
  object-position: center 42%;
}

body:has(a[href="faq.html"]) .contact-faq {
  padding-top: 82px;
}

body:has(a[href="faq.html"]) .contact-faq details,
body:has(a[href="faq.html"]) .contact-faq .faq-item {
  margin-bottom: 26px;
}

body:has(a[href="faq.html"]) .contact-faq summary,
body:has(a[href="faq.html"]) .contact-faq .faq-item summary {
  padding-top: 30px;
  padding-bottom: 30px;
  line-height: 2.05;
}

body:has(a[href="faq.html"]) .contact-faq .faq-answer {
  padding: 0 40px 34px 82px;
}

body:has(a[href="faq.html"]) .contact-faq details p,
body:has(a[href="faq.html"]) .contact-faq .faq-answer p {
  padding: 0;
  margin: 0 0 16px;
  line-height: 2.15;
}

body:has(a[href="faq.html"]) .contact-faq .faq-answer p:last-child {
  margin-bottom: 0;
}

body:has(a[href="faq.html"]) .contact-faq .faq-answer ul {
  margin: 12px 0 18px;
  padding-left: 1.45em;
}

body:has(a[href="faq.html"]) .contact-faq .faq-answer li {
  line-height: 2.1;
}

body:has(a[href="faq.html"]) .contact-faq .faq-answer li + li {
  margin-top: 10px;
}

@media (max-width: 900px) {
  body:has(a[href="faq.html"]) > .site > .tm-service-hero,
  body:has(a[href="faq.html"]) .site > .tm-service-hero {
    padding-top: 132px;
    padding-bottom: 72px;
  }
}

@media (max-width: 560px) {
  body:has(a[href="faq.html"]) > .site > .tm-service-hero,
  body:has(a[href="faq.html"]) .site > .tm-service-hero {
    padding-top: 112px;
    padding-bottom: 56px;
    gap: 30px;
  }

  body:has(a[href="faq.html"]) .tm-service-hero .tm-hero-image img {
    max-height: none;
  }

  body:has(a[href="faq.html"]) .contact-faq {
    padding-top: 58px;
  }

  body:has(a[href="faq.html"]) .contact-faq summary,
  body:has(a[href="faq.html"]) .contact-faq .faq-item summary {
    padding: 26px 22px 24px;
    line-height: 1.95;
  }

  body:has(a[href="faq.html"]) .contact-faq .faq-answer {
    padding: 0 22px 30px;
  }

  body:has(a[href="faq.html"]) .contact-faq details p,
  body:has(a[href="faq.html"]) .contact-faq .faq-answer p,
  body:has(a[href="faq.html"]) .contact-faq .faq-answer li {
    line-height: 2.05;
  }
}

.faq-contact .dot-frame-message {
  border-radius: 18px !important;
}

.faq-contact .dot-frame-message::before {
  border-radius: 24px !important;
}

.section-title,
.first-guide h2,
.contact-intro__box h2,
.about-message__box h2,
.privacy-card h2,
.tm-book-head h2,
.tm-course h2 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 22px;
  text-align: center;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.12em;
}

.section-title::before,
.first-guide h2::before,
.contact-intro__box h2::before,
.about-message__box h2::before,
.privacy-card h2::before,
.tm-book-head h2::before,
.tm-course h2::before {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto 2px;
  background: url("asset/flower1.png") center / contain no-repeat;
  flex: 0 0 auto;
}

.section-title::after,
.first-guide h2::after,
.contact-intro__box h2::after,
.about-message__box h2::after,
.privacy-card h2::after,
.tm-book-head h2::after,
.tm-course h2::after {
  content: "";
  position: static;
  display: block;
  width: 38px;
  height: 2px;
  margin: 2px auto 0;
  transform: none;
  background: var(--pink);
  opacity: 0.72;
}

.contact-label,
.tm-eyebrow,
.first-guide .eyebrow,
.hero__label,
.privacy-label,
.about-label {
  display: block;
  margin: 0 0 12px;
  text-align: center;
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tm-hero-copy .tm-eyebrow,
.hero__body .hero__label {
  text-align: left;
}

.page-top-button {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  color: transparent !important;
  font-size: 0 !important;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(104, 150, 126, 0.28);
}

.page-top-button:hover {
  transform: translateY(-4px) scale(1.05);
}

@media (max-width: 767px) {
  .section-title::before,
  .first-guide h2::before,
  .contact-intro__box h2::before,
  .about-message__box h2::before,
  .privacy-card h2::before,
  .tm-book-head h2::before,
  .tm-course h2::before {
    width: 30px;
    height: 30px;
  }

  .page-top-button {
    width: 56px;
    height: 56px;
  }
}

.section-title,
.first-guide h2,
.contact-intro__box h2,
.about-message__box h2,
.privacy-card h2,
.tm-book-head h2,
.tm-course h2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  row-gap: 8px;
}

.section-title::before,
.first-guide h2::before,
.contact-intro__box h2::before,
.about-message__box h2::before,
.privacy-card h2::before,
.tm-book-head h2::before,
.tm-course h2::before {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0;
  transform: translateY(1px);
  flex: 0 0 auto;
}

.section-title::after,
.first-guide h2::after,
.contact-intro__box h2::after,
.about-message__box h2::after,
.privacy-card h2::after,
.tm-book-head h2::after,
.tm-course h2::after {
  flex-basis: 100%;
}

@media (max-width: 767px) {
  .section-title::before,
  .first-guide h2::before,
  .contact-intro__box h2::before,
  .about-message__box h2::before,
  .privacy-card h2::before,
  .tm-book-head h2::before,
  .tm-course h2::before {
    width: 26px;
    height: 26px;
  }
}

.section-title,
.first-guide h2,
.contact-intro__box h2,
.about-message__box h2,
.privacy-card h2,
.tm-book-head h2,
.tm-course h2 {
  padding-bottom: 22px;
}

.section-title::after,
.first-guide h2::after,
.contact-intro__box h2::after,
.about-message__box h2::after,
.privacy-card h2::after,
.tm-book-head h2::after,
.tm-course h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: 44px;
  height: 2px;
  margin: 0;
  transform: translateX(-50%);
  flex-basis: auto;
  background: var(--pink);
  opacity: 0.72;
}

.section-title::before,
.first-guide h2::before,
.contact-intro__box h2::before,
.about-message__box h2::before,
.privacy-card h2::before,
.tm-book-head h2::before,
.tm-course h2::before {
  width: 38px !important;
  height: 38px !important;
  margin: 0 4px 0 0 !important;
  transform: translateY(2px) !important;
}

@media (max-width: 767px) {
  .section-title,
  .first-guide h2,
  .contact-intro__box h2,
  .about-message__box h2,
  .privacy-card h2,
  .tm-book-head h2,
  .tm-course h2 {
    flex-direction: column !important;
    row-gap: 10px !important;
  }

  .section-title::before,
  .first-guide h2::before,
  .contact-intro__box h2::before,
  .about-message__box h2::before,
  .privacy-card h2::before,
  .tm-book-head h2::before,
  .tm-course h2::before {
    width: 34px !important;
    height: 34px !important;
    margin: 0 auto 2px !important;
    transform: none !important;
  }
}

.page-top-button {
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  background: rgba(232, 141, 131, 0.92) !important;
  color: #fff !important;
  font-size: 26px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  box-shadow: 0 12px 28px rgba(217, 120, 132, 0.28) !important;
}

.page-top-button:hover {
  background: #d97884 !important;
  transform: translateY(-4px) scale(1.04) !important;
}

.floating-reserve-button {
  width: 142px !important;
  height: 142px !important;
}

.floating-reserve-button img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

@media (max-width: 767px) {
  .floating-reserve-button {
    width: 116px !important;
    height: 116px !important;
    right: 14px !important;
    bottom: 14px !important;
  }
}

@media (max-width: 767px) {
  .header__inner {
    width: calc(100% - 28px) !important;
    height: 82px !important;
    justify-content: space-between !important;
    gap: 10px !important;
  }

  .logo {
    min-width: 0 !important;
    flex: 1 1 auto !important;
    gap: 8px !important;
    padding-right: 12px !important;
  }

  .logo img {
    width: 58px !important;
    height: auto !important;
    flex: 0 0 auto !important;
  }

  .logo__name {
    display: block !important;
    min-width: 0 !important;
    max-width: calc(100vw - 132px) !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    font-size: clamp(22px, 7vw, 34px) !important;
    letter-spacing: 0.04em !important;
  }

  .menu-btn {
    position: relative !important;
    flex: 0 0 44px !important;
    width: 44px !important;
    height: 44px !important;
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .tm-course-accordion {
    display: none !important;
  }

  .tm-button.flip.pc-only,
  button.tm-button.flip.pc-only {
    display: inline-flex !important;
  }
}

@media (max-width: 767px) {
  .tm-button.flip.pc-only,
  button.tm-button.flip.pc-only,
  .tm-back-btn-wrap .tm-button.flip {
    display: none !important;
  }

  .tm-course-accordion {
    display: block !important;
  }
}

body:has(a[href="faq.html"]) .tm-hero-copy {
  text-align: center !important;
}

body:has(a[href="faq.html"]) .tm-hero-copy .tm-eyebrow {
  text-align: center !important;
}

body:has(a[href="faq.html"]) .tm-hero-copy p:last-child {
  max-width: 620px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  line-height: 2.1 !important;
}

body:has(a[href="faq.html"]) .faq-group {
  margin-top: 72px !important;
}

body:has(a[href="faq.html"]) .faq-group + .faq-group {
  margin-top: 92px !important;
}

body:has(a[href="faq.html"]) .faq-group h3 {
  position: relative !important;
  display: inline-block !important;
  margin: 0 0 30px !important;
  padding: 0 0.35em !important;
  z-index: 0 !important;
}

body:has(a[href="faq.html"]) .faq-group h3::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.62em;
  background: rgba(246, 208, 194, 0.58);
  border-radius: 999px;
  z-index: -1;
}

.hero-achievements {
  position: relative !important;
}

.hero-achievements::before,
.hero-achievements::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  background: url("asset/flower1.png") center / contain no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.hero-achievements::before {
  left: -34px;
  top: -28px;
}

.hero-achievements::after {
  right: -28px;
  bottom: -34px;
  transform: rotate(18deg) scale(0.86);
}

.hero-achievement {
  position: relative !important;
  overflow: visible !important;
}

.hero-achievement::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(255, 226, 231, 0.42),
    transparent 70%
  );
  z-index: -1;
}

.postpartum-care-page-body .tm-hero-copy h1,
.babysitter-page-body .tm-hero-copy h1,
.homecare-page-body .tm-hero-copy h1,
.faq-page-body .tm-hero-copy h1,
.contact-page-body .contact-hero__text h1 {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  width: auto !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-bottom: 22px !important;
  text-align: center !important;
}

.postpartum-care-page-body .tm-hero-copy,
.babysitter-page-body .tm-hero-copy,
.homecare-page-body .tm-hero-copy,
.faq-page-body .tm-hero-copy,
.contact-page-body .contact-hero__text {
  text-align: center !important;
}

.postpartum-care-page-body .tm-hero-copy h1::before,
.babysitter-page-body .tm-hero-copy h1::before,
.homecare-page-body .tm-hero-copy h1::before,
.faq-page-body .tm-hero-copy h1::before,
.contact-page-body .contact-hero__text h1::before {
  content: "" !important;
  display: inline-block !important;
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  margin: 0 !important;
  background: url("asset/flower1.png") center / contain no-repeat !important;
  transform: translateY(2px) !important;
  opacity: 1 !important;
  flex: 0 0 auto !important;
}

.postpartum-care-page-body .tm-hero-copy h1::after,
.babysitter-page-body .tm-hero-copy h1::after,
.homecare-page-body .tm-hero-copy h1::after,
.faq-page-body .tm-hero-copy h1::after,
.contact-page-body .contact-hero__text h1::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: 0 !important;
  display: block !important;
  width: 44px !important;
  height: 2px !important;
  margin: 0 !important;
  transform: translateX(-50%) !important;
  background: var(--pink) !important;
  opacity: 0.72 !important;
}

.contact-page-body .contact-hero__text p:last-child {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.postpartum-care-page-body .tm-book-head h2::before,
.babysitter-page-body .tm-book-head h2::before,
.homecare-page-body .tm-book-head h2::before,
.postpartum-care-page-body .tm-course h2::before,
.babysitter-page-body .tm-course h2::before,
.homecare-page-body .tm-course h2::before,
.contact-page-body .contact-intro__box h2::before {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  min-width: 0 !important;
  margin: 0 !important;
  background: none !important;
}

.contact-page-body .contact-intro__box h2 {
  display: block !important;
  text-align: center !important;
}

@media (max-width: 767px) {
  .postpartum-care-page-body .tm-hero-copy h1,
  .babysitter-page-body .tm-hero-copy h1,
  .homecare-page-body .tm-hero-copy h1,
  .faq-page-body .tm-hero-copy h1,
  .contact-page-body .contact-hero__text h1 {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .postpartum-care-page-body .tm-hero-copy h1::before,
  .babysitter-page-body .tm-hero-copy h1::before,
  .homecare-page-body .tm-hero-copy h1::before,
  .faq-page-body .tm-hero-copy h1::before,
  .contact-page-body .contact-hero__text h1::before {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    transform: none !important;
  }
}

.voice-page-body .contact-hero__inner {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  min-height: 520px !important;
  text-align: center !important;
}

.voice-page-body .contact-hero__image {
  display: none !important;
}

.voice-page-body .contact-hero__text {
  width: min(100%, 760px) !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.voice-page-body .contact-hero__text .contact-label {
  display: block !important;
  margin: 0 0 28px !important;
  text-align: center !important;
  color: var(--pink-dark) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.6 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
}

.voice-page-body .contact-hero__text h1 {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 0 auto 34px !important;
  padding-bottom: 28px !important;
  color: var(--text) !important;
  font-size: clamp(34px, 4vw, 54px) !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  letter-spacing: 0.1em !important;
  text-align: center !important;
}

.voice-page-body .contact-hero__text h1::before {
  content: "" !important;
  display: inline-block !important;
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  margin: 0 !important;
  background: url("asset/flower1.png") center / contain no-repeat !important;
  transform: translateY(2px) !important;
  flex: 0 0 auto !important;
}

.voice-page-body .contact-hero__text h1::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: 0 !important;
  display: block !important;
  width: 46px !important;
  height: 2px !important;
  margin: 0 !important;
  transform: translateX(-50%) !important;
  background: var(--pink) !important;
  opacity: 0.72 !important;
}

.voice-page-body .contact-hero__text p:last-child {
  max-width: 680px !important;
  margin: 0 auto !important;
  text-align: center !important;
  color: var(--muted) !important;
  font-size: clamp(15px, 1.5vw, 18px) !important;
  line-height: 2.15 !important;
  letter-spacing: 0.08em !important;
}

@media (max-width: 767px) {
  .voice-page-body .contact-hero__inner {
    min-height: 440px !important;
  }

  .voice-page-body .contact-hero__text h1 {
    flex-direction: row !important;
    gap: 10px !important;
    font-size: clamp(30px, 8vw, 40px) !important;
  }

  .voice-page-body .contact-hero__text h1::before {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
  }
}

@media (min-width: 768px) {
  .floating-reserve-button {
    width: 190px !important;
    height: 190px !important;
    right: 34px !important;
    bottom: 34px !important;
  }

  .floating-reserve-button img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }
}

@media (max-width: 767px) {
  .index-page-body .hero__inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .index-page-body .hero__body {
    display: contents !important;
  }

  .index-page-body .hero__label {
    order: 1 !important;
  }

  .index-page-body .hero__title {
    order: 2 !important;
  }

  .index-page-body .hero__line {
    order: 3 !important;
  }

  .index-page-body .hero__copy {
    order: 4 !important;
  }

  .index-page-body .hero__visual {
    order: 5 !important;
    width: 100% !important;
  }

  .index-page-body .hero-achievements {
    order: 6 !important;
    width: min(100%, 360px) !important;
    margin: 22px auto 0 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .index-page-body .hero-achievement {
    min-width: 0 !important;
    text-align: center !important;
  }
}

.index-page-body .hero-achievements {
  position: relative !important;
  isolation: isolate !important;
  overflow: visible !important;
}

.index-page-body .hero-achievements::before,
.index-page-body .hero-achievements::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  width: clamp(72px, 10vw, 132px) !important;
  height: clamp(128px, 18vw, 220px) !important;
  opacity: 0.42 !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

.index-page-body .hero-achievements::before {
  left: clamp(-72px, -7vw, -36px) !important;
  transform: translateY(-50%) rotate(-16deg) !important;
}

.index-page-body .hero-achievements::after {
  right: clamp(-72px, -7vw, -36px) !important;
  transform: translateY(-50%) scaleX(-1) rotate(-16deg) !important;
}

.index-page-body .hero-achievement::before,
.index-page-body .hero-achievement::after,
.index-page-body .laurel-frame::before,
.index-page-body .laurel-frame::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

@media (max-width: 767px) {
  .index-page-body .hero-achievements::before,
  .index-page-body .hero-achievements::after {
    width: 64px !important;
    height: 116px !important;
    opacity: 0.34 !important;
  }

  .index-page-body .hero-achievements::before {
    left: -34px !important;
  }

  .index-page-body .hero-achievements::after {
    right: -34px !important;
  }
}

.postpartum-care-page-body .tm-hero-copy h1 {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  width: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-bottom: 22px !important;
  text-align: center !important;
}

.postpartum-care-page-body .tm-hero-copy h1::before {
  content: "" !important;
  display: inline-block !important;
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  margin: 0 !important;
  background: url("asset/flower1.png") center / contain no-repeat !important;
  transform: translateY(2px) !important;
  flex: 0 0 auto !important;
}

.postpartum-care-page-body .tm-book-head h2::before,
.postpartum-care-page-body .tm-course h2::before {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  min-width: 0 !important;
  margin: 0 !important;
  background: none !important;
}

.index-page-body .hero-achievements::before,
.index-page-body .hero-achievements::after {
  content: none !important;
  display: none !important;
}

.index-page-body .hero-achievement {
  position: relative !important;
  isolation: isolate !important;
  overflow: visible !important;
}

.index-page-body .hero-achievement::before,
.index-page-body .hero-achievement::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  width: clamp(38px, 5vw, 68px) !important;
  height: clamp(76px, 10vw, 126px) !important;
  opacity: 0.42 !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

.index-page-body .hero-achievement::before {
  left: clamp(-28px, -3vw, -14px) !important;
  transform: translateY(-50%) rotate(-14deg) !important;
}

.index-page-body .hero-achievement::after {
  right: clamp(-28px, -3vw, -14px) !important;
  transform: translateY(-50%) scaleX(-1) rotate(-14deg) !important;
}

@media (max-width: 767px) {
  .index-page-body .hero-achievement::before,
  .index-page-body .hero-achievement::after {
    width: 34px !important;
    height: 68px !important;
    opacity: 0.36 !important;
  }

  .index-page-body .hero-achievement::before {
    left: -18px !important;
  }

  .index-page-body .hero-achievement::after {
    right: -18px !important;
  }
}

.voice-page-body .contact-hero__inner {
  display: grid !important;
  grid-template-columns: 46% 54% !important;
  align-items: center !important;
  gap: clamp(36px, 4vw, 80px) !important;
  text-align: left !important;
}

.voice-page-body .contact-hero__image {
  display: block !important;
  position: relative !important;
}

.voice-page-body .contact-hero__text {
  text-align: center !important;
}

@media (max-width: 900px) {
  .voice-page-body .contact-hero__inner {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .voice-page-body .contact-hero__image {
    max-width: 520px !important;
    margin: 0 auto !important;
  }
}

@media (min-width: 768px) {
  .postpartum-care-page-body .tm-course-accordion,
  .babysitter-page-body .tm-course-accordion,
  .homecare-page-body .tm-course-accordion {
    display: none !important;
  }

  .postpartum-care-page-body .tm-button.flip.pc-only,
  .babysitter-page-body .tm-button.flip.pc-only,
  .homecare-page-body .tm-button.flip.pc-only,
  .postpartum-care-page-body .tm-back-btn-wrap .tm-button.flip,
  .babysitter-page-body .tm-back-btn-wrap .tm-button.flip,
  .homecare-page-body .tm-back-btn-wrap .tm-button.flip {
    display: inline-flex !important;
  }
}

@media (max-width: 767px) {
  .postpartum-care-page-body .tm-button.flip.pc-only,
  .babysitter-page-body .tm-button.flip.pc-only,
  .homecare-page-body .tm-button.flip.pc-only,
  .postpartum-care-page-body .tm-back-btn-wrap .tm-button.flip,
  .babysitter-page-body .tm-back-btn-wrap .tm-button.flip,
  .homecare-page-body .tm-back-btn-wrap .tm-button.flip {
    display: none !important;
  }

  .postpartum-care-page-body .tm-course-accordion,
  .babysitter-page-body .tm-course-accordion,
  .homecare-page-body .tm-course-accordion {
    display: block !important;
  }
}

@media (min-width: 1025px) {
  .postpartum-care-page-body .tm-course-accordion,
  .babysitter-page-body .tm-course-accordion,
  .homecare-page-body .tm-course-accordion {
    display: none !important;
  }

  .postpartum-care-page-body .tm-button.flip.pc-only,
  .babysitter-page-body .tm-button.flip.pc-only,
  .homecare-page-body .tm-button.flip.pc-only,
  .postpartum-care-page-body .tm-back-btn-wrap .tm-button.flip,
  .babysitter-page-body .tm-back-btn-wrap .tm-button.flip,
  .homecare-page-body .tm-back-btn-wrap .tm-button.flip {
    display: inline-flex !important;
  }
}

@media (max-width: 1024px) {
  .postpartum-care-page-body .tm-button.flip.pc-only,
  .babysitter-page-body .tm-button.flip.pc-only,
  .homecare-page-body .tm-button.flip.pc-only,
  .postpartum-care-page-body .tm-back-btn-wrap .tm-button.flip,
  .babysitter-page-body .tm-back-btn-wrap .tm-button.flip,
  .homecare-page-body .tm-back-btn-wrap .tm-button.flip {
    display: none !important;
  }

  .postpartum-care-page-body .tm-course-accordion,
  .babysitter-page-body .tm-course-accordion,
  .homecare-page-body .tm-course-accordion {
    display: block !important;
    width: 100% !important;
  }

  .postpartum-care-page-body .tm-course-accordion summary,
  .babysitter-page-body .tm-course-accordion summary,
  .homecare-page-body .tm-course-accordion summary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: min(100%, 280px) !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 1024px) {
  body.postpartum-care-page-body
    .tm-service-page
    .tm-book-card:first-of-type
    button.tm-button.flip.pc-only,
  body.babysitter-page-body
    .tm-service-page
    .tm-book-card:first-of-type
    button.tm-button.flip.pc-only,
  body.homecare-page-body
    .tm-service-page
    .tm-book-card:first-of-type
    button.tm-button.flip.pc-only,
  body.postpartum-care-page-body .tm-book button.tm-button.flip[data-flip],
  body.babysitter-page-body .tm-book button.tm-button.flip[data-flip],
  body.homecare-page-body .tm-book button.tm-button.flip[data-flip],
  body.postpartum-care-page-body .tm-back-btn-wrap,
  body.babysitter-page-body .tm-back-btn-wrap,
  body.homecare-page-body .tm-back-btn-wrap {
    display: none !important;
    visibility: hidden !important;
  }

  body.postpartum-care-page-body .tm-course-accordion,
  body.babysitter-page-body .tm-course-accordion,
  body.homecare-page-body .tm-course-accordion {
    display: block !important;
    visibility: visible !important;
    width: 100% !important;
  }

  body.postpartum-care-page-body .tm-course-accordion summary,
  body.babysitter-page-body .tm-course-accordion summary,
  body.homecare-page-body .tm-course-accordion summary {
    display: flex !important;
    visibility: visible !important;
    align-items: center !important;
    justify-content: center !important;
    width: min(100%, 280px) !important;
    margin: 0 auto !important;
  }
}

.postpartum-care-page-body .postpartum-application-flow {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 104px) clamp(18px, 4vw, 40px);
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(255, 255, 255, 0.48),
      transparent 24%
    ),
    linear-gradient(135deg, #f1d5bd 0%, #efd3bd 52%, #f5dfcc 100%);
  color: #615851;
}

.postpartum-care-page-body .postpartum-application-flow__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

@media (max-width: 520px) {
  .postpartum-care-page-body .postpartum-application-flow {
    padding: 56px 16px 64px;
  }
}

.postpartum-care-page-body .postpartum-application-flow {
  padding: clamp(68px, 8vw, 112px) clamp(18px, 4vw, 40px)
    clamp(76px, 9vw, 120px) !important;
  background:
    radial-gradient(
      circle at 8% 16%,
      rgba(246, 214, 214, 0.45),
      transparent 26%
    ),
    radial-gradient(
      circle at 88% 8%,
      rgba(235, 245, 229, 0.55),
      transparent 25%
    ),
    linear-gradient(180deg, #fffdfa 0%, #fff7f4 52%, #fff 100%) !important;
  color: #514944 !important;
}

.postpartum-care-page-body .postpartum-application-flow__inner {
  width: min(100%, 1120px) !important;
  margin: 0 auto !important;
}

@media (max-width: 767px) {
  .header__inner {
    width: calc(100% - 24px) !important;
    height: 78px !important;
    gap: 8px !important;
  }

  .logo {
    margin-left: 0 !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
    gap: 7px !important;
    padding-right: 4px !important;
  }

  .logo img {
    width: clamp(44px, 12vw, 52px) !important;
    max-height: 54px !important;
    flex: 0 0 auto !important;
    object-fit: contain !important;
  }

  .logo__name {
    display: block !important;
    min-width: 0 !important;
    max-width: none !important;
    overflow: visible !important;
    white-space: nowrap !important;
    text-overflow: clip !important;
    font-size: clamp(20px, 6.1vw, 26px) !important;
    line-height: 1.2 !important;
    letter-spacing: 0.02em !important;
  }

  .menu-btn {
    flex: 0 0 42px !important;
    width: 42px !important;
    height: 42px !important;
    margin-left: 4px !important;
  }

  .nav {
    top: 76px !important;
    z-index: 1001 !important;
  }

  .nav .btn.btn--small {
    display: flex !important;
    width: 100% !important;
    min-height: 48px !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: auto !important;
  }
}

.floating-reserve-button {
  display: block !important;
  width: 158px !important;
  height: 158px !important;
  right: 26px !important;
  bottom: 26px !important;
  z-index: 9999 !important;
  filter: drop-shadow(0 12px 22px rgba(222, 116, 130, 0.22)) !important;
}

@media (max-width: 767px) {
  .floating-reserve-button {
    width: 104px !important;
    height: 104px !important;
    right: 12px !important;
    bottom: 12px !important;
  }
}

.privacy-page-body .floating-reserve-button {
  display: none !important;
}

.reservation-highlight,
.reservation-highlight-block {
  display: inline;
  padding: 0 0.08em 0.08em;
  font-weight: 800;
  background: linear-gradient(transparent 54%, rgba(235, 126, 135, 0.36) 54%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.reservation-highlight-block {
  line-height: 2.05;
}

.contact-page-body .contact-guide > .container > p {
  max-width: 760px;
  margin: -22px auto 48px;
  text-align: center;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 2;
}

.contact-page-body .contact-guide__grid {
  margin-top: 0 !important;
}

.reservation-highlight,
.reservation-highlight-block {
  background: linear-gradient(transparent 58%, #f7d8cf 58%) !important;
}

.voice-page-body .floating-reserve-button {
  display: none !important;
}

.dot-frame-message .reservation-highlight-block {
  background: none !important;
  padding-bottom: 0 !important;
}

.tm-list-card ul {
  list-style: none !important;
  padding-left: 0 !important;
}

.tm-list-card li {
  position: relative;
  padding-left: 1.25em;
}

.tm-list-card li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--tm-main);
  font-weight: 700;
}

.tm-list-card.cannot li::before {
  color: #7f9f79;
}

.tm-list-card .tm-list-note {
  display: block;
  margin-top: 0.25em;
  color: #777;
  font-size: 0.92em;
  line-height: 1.8;
}

.postpartum-round-flow__button[aria-disabled="true"] {
  cursor: default !important;
  pointer-events: none !important;
  opacity: 0.78;
  box-shadow: none !important;
}

.first-guide-highlight {
  display: inline;
  padding: 0 0.08em 0.08em;
  font-weight: 800;
  background: linear-gradient(transparent 58%, #f7d8cf 58%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.floating-reserve-button {
  width: 210px !important;
  height: 210px !important;
  right: 30px !important;
  bottom: 30px !important;
}

@media (max-width: 1024px) {
  .floating-reserve-button {
    width: 170px !important;
    height: 170px !important;
    right: 22px !important;
    bottom: 22px !important;
  }
}

@media (max-width: 767px) {
  .floating-reserve-button {
    width: 128px !important;
    height: 128px !important;
    right: 10px !important;
    bottom: 10px !important;
  }
}

.faq-page-body .tm-service-hero {
  max-width: 1180px !important;
  width: min(100% - 40px, 1180px) !important;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px) !important;
  gap: clamp(42px, 6vw, 84px) !important;
}

.faq-page-body .tm-hero-image {
  width: min(42vw, 520px) !important;
  max-width: 100% !important;
}

.faq-page-body .tm-hero-image img,
.babysitter-page-body .tm-hero-image img,
.postpartum-care-page-body .tm-hero-image img {
  object-fit: cover !important;
}

.faq-page-body .tm-hero-image img {
  aspect-ratio: 1 / 1 !important;
  object-position: center center !important;
}

.postpartum-care-page-body .tm-hero-image img {
  object-position: center 84% !important;
}

.babysitter-page-body .tm-hero-image img {
  object-position: center 56% !important;
}

@media (max-width: 900px) {
  .faq-page-body .tm-service-hero {
    width: min(100% - 40px, 760px) !important;
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .faq-page-body .tm-hero-image {
    width: min(86vw, 460px) !important;
    margin: 24px auto 0 !important;
  }
}

.faq-page-body .tm-service-hero {
  max-width: 1180px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 90px 20px 62px !important;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px) !important;
  gap: 56px !important;
  align-items: center !important;
}

.faq-page-body .tm-hero-image {
  width: 100% !important;
  max-width: 520px !important;
  justify-self: center !important;
}

.faq-page-body .tm-hero-image img {
  aspect-ratio: 1.24 / 1 !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 56% 44% 48% 52% !important;
}

.contact-page-body .contact-hero__text h1,
.voice-page-body .contact-hero__text h1 {
  font-size: clamp(30px, 3vw, 42px) !important;
  line-height: 1.55 !important;
}

@media (max-width: 900px) {
  .faq-page-body .tm-service-hero {
    width: 100% !important;
    max-width: 760px !important;
    padding: 64px 20px 44px !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    text-align: center !important;
  }

  .faq-page-body .tm-hero-image {
    width: min(86vw, 360px) !important;
    max-width: 360px !important;
    margin: 22px auto 0 !important;
  }
}

@media (max-width: 767px) {
  .contact-page-body .contact-hero__text h1,
  .voice-page-body .contact-hero__text h1 {
    font-size: clamp(28px, 8vw, 36px) !important;
    line-height: 1.65 !important;
  }
}

.faq-page-body .tm-service-hero {
  width: min(100% - 40px, 1320px) !important;
  max-width: 1320px !important;
  min-height: 620px !important;
  margin-inline: auto !important;
  padding: 120px 0 62px !important;
  display: grid !important;
  grid-template-columns: 0.92fr 1.08fr !important;
  gap: clamp(58px, 5.4vw, 82px) !important;
  align-items: center !important;
}

.faq-page-body .tm-hero-copy {
  text-align: center !important;
}

.faq-page-body .tm-hero-copy h1 {
  font-size: clamp(28px, 3vw, 42px) !important;
  font-weight: 500 !important;
  line-height: 1.7 !important;
  letter-spacing: 0.08em !important;
}

.faq-page-body .tm-hero-copy p:last-child {
  font-size: 17px !important;
  line-height: 2 !important;
}

.faq-page-body .tm-hero-image {
  position: relative !important;
  width: 100% !important;
  max-width: 610px !important;
  justify-self: center !important;
  z-index: 0 !important;
}

.faq-page-body .tm-hero-image::before {
  content: "" !important;
  position: absolute !important;
  inset: -20px !important;
  z-index: 0 !important;
  display: block !important;
  background: #fff1f1 !important;
  border-radius: 51% 49% 48% 52% / 54% 56% 44% 46% !important;
}

.faq-page-body .tm-hero-image img {
  position: relative !important;
  z-index: 1 !important;
  width: 100% !important;
  max-height: none !important;
  aspect-ratio: 1.08 / 1 !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 51% 49% 48% 52% / 54% 56% 44% 46% !important;
  box-shadow: 0 18px 44px rgba(130, 92, 82, 0.12) !important;
}

@media (max-width: 900px) {
  .faq-page-body .tm-service-hero {
    width: min(100% - 40px, 1320px) !important;
    max-width: 1320px !important;
    min-height: auto !important;
    padding: 100px 0 60px !important;
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }

  .faq-page-body .tm-hero-image {
    width: min(100%, 620px) !important;
    max-width: 620px !important;
    justify-self: center !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 767px) {
  .faq-page-body .tm-service-hero {
    width: calc(100% - 32px) !important;
    padding-top: 96px !important;
    gap: 34px !important;
  }

  .faq-page-body .tm-hero-copy h1 {
    font-size: clamp(26px, 7vw, 34px) !important;
    line-height: 1.7 !important;
  }
}

.postpartum-care-page-body .tm-hero-image::before {
  border-radius: 53% 47% 49% 51% / 55% 50% 50% 45% !important;
}

.postpartum-care-page-body .tm-hero-image img {
  aspect-ratio: 0.98 / 1 !important;
  max-height: none !important;
  object-position: 24% 100% !important;
  border-radius: 53% 47% 49% 51% / 55% 50% 50% 45% !important;
}

@media (max-width: 1024px) {
  .floating-reserve-button {
    width: 190px !important;
    height: 190px !important;
    right: 18px !important;
    bottom: 18px !important;
  }
}

@media (max-width: 767px) {
  .floating-reserve-button {
    width: 148px !important;
    height: 148px !important;
    right: 8px !important;
    bottom: 8px !important;
  }
}

@media (max-width: 767px) {
  .index-page-body .hero__label,
  .index-page-body .hero__title,
  .index-page-body .hero__copy {
    width: min(100% - 32px, 360px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .index-page-body .hero__title {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .index-page-body .hero__title-line {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
  }

  .index-page-body .hero__line {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

.index-page-body .hero-achievement::before,
.index-page-body .hero-achievement::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

.index-page-body .hero-achievement::before {
  width: clamp(178px, 20vw, 260px) !important;
  height: clamp(118px, 14vw, 178px) !important;
  left: 50% !important;
  top: 50% !important;
  border-radius: 64% 36% 58% 42% / 48% 60% 40% 52% !important;
  background:
    radial-gradient(
      ellipse at 74% 30%,
      rgba(255, 255, 255, 0.34),
      transparent 0 25%
    ),
    radial-gradient(
      ellipse at 30% 70%,
      rgba(255, 236, 230, 0.28),
      transparent 0 34%
    ),
    linear-gradient(
      135deg,
      rgba(239, 168, 150, 0.43),
      rgba(250, 211, 196, 0.24)
    ) !important;
  transform: translate(-50%, -50%) rotate(-10deg) skewX(-4deg) !important;
}

.index-page-body .hero-achievement::after {
  width: clamp(92px, 11vw, 138px) !important;
  height: clamp(84px, 10vw, 128px) !important;
  right: 4% !important;
  bottom: 2% !important;
  border-radius: 56% 44% 47% 53% / 44% 58% 42% 56% !important;
  background:
    radial-gradient(
      circle at 36% 34%,
      rgba(255, 255, 255, 0.3),
      transparent 0 24%
    ),
    linear-gradient(145deg, rgba(232, 141, 131, 0.28), rgba(247, 190, 168, 0.2)) !important;
  transform: rotate(12deg) !important;
}

.index-page-body .hero-achievement:nth-child(2)::before {
  border-radius: 58% 42% 50% 50% / 45% 56% 44% 55% !important;
  background:
    radial-gradient(
      circle at 30% 32%,
      rgba(255, 255, 255, 0.32),
      transparent 0 28%
    ),
    linear-gradient(135deg, rgba(242, 165, 145, 0.4), rgba(250, 214, 198, 0.28)) !important;
  transform: translate(-50%, -50%) rotate(9deg) !important;
}

.index-page-body .hero-achievement:nth-child(2)::after {
  left: 0 !important;
  right: auto !important;
  bottom: 6% !important;
  background:
    radial-gradient(
      circle at 60% 30%,
      rgba(255, 255, 255, 0.3),
      transparent 0 24%
    ),
    linear-gradient(145deg, rgba(232, 141, 131, 0.27), rgba(245, 187, 166, 0.2)) !important;
  transform: rotate(-14deg) !important;
}

.index-page-body .hero-achievement .laurel-frame {
  position: relative !important;
  z-index: 1 !important;
}

.babysitter-page-body .tm-hero-image img {
  object-position: center center !important;
}

.voice-page-body .contact-hero__image {
  width: min(44vw, 560px) !important;
  max-width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  background: #fffaf7 !important;
  border-radius: 50% !important;
  overflow: hidden !important;
}

.voice-page-body .contact-hero__image::before {
  inset: -18px !important;
  border-radius: 50% !important;
}

.voice-page-body .contact-hero__image img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #fffaf7 !important;
  border-radius: 50% !important;
}

@media (max-width: 900px) {
  .voice-page-body .contact-hero__image {
    width: min(86vw, 520px) !important;
  }
}

.index-page-body .hero-photo-wrap {
  isolation: isolate !important;
}

.index-page-body .hero-photo-frame {
  position: relative !important;
  z-index: 2 !important;
  box-shadow:
    0 0 0 32px rgba(255, 222, 230, 0.84),
    0 0 0 52px rgba(255, 238, 242, 0.54),
    0 24px 72px rgba(224, 158, 164, 0.18) !important;
}

.index-page-body .hero-ripple {
  display: block !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 104% !important;
  height: 104% !important;
  z-index: 1 !important;
  border: 9px solid rgba(245, 178, 190, 0.36) !important;
  border-radius: 59% 41% 53% 47% / 45% 58% 42% 55% !important;
  background: radial-gradient(
    closest-side,
    transparent 68%,
    rgba(255, 226, 232, 0.3) 78%,
    rgba(245, 178, 190, 0.16) 90%,
    transparent 100%
  ) !important;
  box-shadow:
    0 0 0 8px rgba(255, 232, 237, 0.46),
    0 0 34px rgba(245, 178, 190, 0.24) !important;
  pointer-events: none !important;
  opacity: 0;
  animation: heroRippleGentleOnce 8.8s ease-out 1 forwards !important;
}

.index-page-body .ripple-1 {
  animation-delay: 0s !important;
}

.index-page-body .ripple-2 {
  animation-delay: 4.2s !important;
  border-radius: 48% 52% 58% 42% / 56% 44% 52% 48% !important;
}

.index-page-body .ripple-3 {
  animation-delay: 8.4s !important;
  border-radius: 62% 38% 45% 55% / 48% 60% 40% 52% !important;
}

.index-page-body .ripple-4 {
  display: block !important;
  animation-delay: 12.6s !important;
  border-radius: 50% 50% 60% 40% / 42% 58% 45% 55% !important;
}

.index-page-body .ripple-5 {
  display: block !important;
  animation-delay: 16.8s !important;
  border-radius: 55% 45% 48% 52% / 52% 46% 54% 48% !important;
}

@keyframes heroRippleGentleOnce {
  0% {
    transform: translate(-50%, -50%) scale(0.9) rotate(0deg);
    opacity: 0;
  }
  14% {
    opacity: 0.62;
  }
  58% {
    transform: translate(-50%, -50%) scale(1.54) rotate(4deg);
    opacity: 0.34;
  }
  82% {
    opacity: 0.12;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.08) rotate(-5deg);
    opacity: 0;
  }
}

.index-page-body .hero-achievement:first-child::after {
  content: none !important;
  display: none !important;
}

.index-page-body .hero-achievement:first-child::before {
  width: clamp(188px, 22vw, 280px) !important;
  height: clamp(122px, 15vw, 188px) !important;
  border-radius: 62% 38% 70% 30% / 44% 63% 37% 56% !important;
  transform: translate(-50%, -50%) rotate(-7deg) skewX(-8deg) !important;
}

.tm-hero-image::before,
.about-hero__image::before,
.contact-hero__image::before {
  background: #fff1f1 !important;
}

.index-page-body .hero-photo-frame {
  box-shadow:
    0 0 0 32px #fff1f1,
    0 0 0 52px rgba(255, 241, 241, 0.56),
    0 24px 72px rgba(224, 158, 164, 0.16) !important;
}

.index-page-body .hero-ripple {
  border-color: rgba(255, 241, 241, 0.74) !important;
  background: radial-gradient(
    closest-side,
    transparent 68%,
    rgba(255, 241, 241, 0.46) 78%,
    rgba(255, 241, 241, 0.2) 90%,
    transparent 100%
  ) !important;
  box-shadow:
    0 0 0 8px rgba(255, 241, 241, 0.5),
    0 0 34px rgba(255, 220, 226, 0.22) !important;
}

.voice-page-body .contact-hero__image {
  width: min(52vw, 610px) !important;
  aspect-ratio: 1.08 / 1 !important;
  background: transparent !important;
  border-radius: 51% 49% 48% 52% / 54% 56% 44% 46% !important;
  overflow: visible !important;
}

.voice-page-body .contact-hero__image::before {
  inset: -20px !important;
  background: #fff1f1 !important;
  border-radius: 51% 49% 48% 52% / 54% 56% 44% 46% !important;
  z-index: 0 !important;
}

.voice-page-body .contact-hero__image img {
  position: relative !important;
  z-index: 1 !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1.08 / 1 !important;
  object-fit: cover !important;
  object-position: 42% center !important;
  background: transparent !important;
  border-radius: 51% 49% 48% 52% / 54% 56% 44% 46% !important;
  box-shadow: 0 18px 44px rgba(130, 92, 82, 0.12) !important;
}

.index-page-body .hero-achievement:nth-child(2)::before,
.index-page-body .hero-achievement:nth-child(2)::after {
  top: 50% !important;
  width: clamp(38px, 5vw, 68px) !important;
  height: clamp(76px, 10vw, 126px) !important;
  border-radius: 0 !important;
  opacity: 0.42 !important;
}

.index-page-body .hero-achievement:nth-child(2)::before {
  left: clamp(-28px, -3vw, -14px) !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateY(-50%) rotate(-14deg) !important;
}

.index-page-body .hero-achievement:nth-child(2)::after {
  right: clamp(-28px, -3vw, -14px) !important;
  left: auto !important;
  bottom: auto !important;
  transform: translateY(-50%) scaleX(-1) rotate(-14deg) !important;
}

@media (max-width: 900px) {
  .voice-page-body .contact-hero__image {
    width: min(86vw, 620px) !important;
  }
}

@media (max-width: 767px) {
  .index-page-body .hero-achievement:nth-child(2)::before,
  .index-page-body .hero-achievement:nth-child(2)::after {
    width: 34px !important;
    height: 68px !important;
    opacity: 0.36 !important;
  }

  .index-page-body .hero-achievement:nth-child(2)::before {
    left: -18px !important;
  }

  .index-page-body .hero-achievement:nth-child(2)::after {
    right: -18px !important;
  }
}

.index-page-body .hero-photo-frame {
  box-shadow:
    0 0 0 32px #ffe3eb,
    0 0 0 52px rgba(255, 229, 236, 0.64),
    0 24px 72px rgba(224, 158, 164, 0.18) !important;
}

.index-page-body .hero-ripple {
  border-color: rgba(255, 218, 228, 0.82) !important;
  background: radial-gradient(
    closest-side,
    transparent 68%,
    rgba(255, 226, 234, 0.54) 78%,
    rgba(255, 218, 228, 0.24) 90%,
    transparent 100%
  ) !important;
  box-shadow:
    0 0 0 8px rgba(255, 229, 236, 0.56),
    0 0 34px rgba(255, 204, 218, 0.24) !important;
}

.index-page-body .hero-achievement:nth-child(2)::before {
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  width: clamp(188px, 22vw, 280px) !important;
  height: clamp(118px, 14vw, 178px) !important;
  border-radius: 58% 42% 50% 50% / 45% 56% 44% 55% !important;
  background:
    radial-gradient(
      circle at 30% 32%,
      rgba(255, 255, 255, 0.32),
      transparent 0 28%
    ),
    linear-gradient(
      135deg,
      rgba(242, 165, 145, 0.34),
      rgba(250, 214, 198, 0.24)
    ) !important;
  opacity: 1 !important;
  transform: translate(-50%, -50%) rotate(9deg) !important;
}

.index-page-body .hero-achievement:nth-child(2)::after {
  top: auto !important;
  left: 4% !important;
  right: auto !important;
  bottom: 6% !important;
  width: clamp(92px, 11vw, 138px) !important;
  height: clamp(84px, 10vw, 128px) !important;
  border-radius: 56% 44% 47% 53% / 44% 58% 42% 56% !important;
  background:
    radial-gradient(
      circle at 60% 30%,
      rgba(255, 255, 255, 0.3),
      transparent 0 24%
    ),
    linear-gradient(
      145deg,
      rgba(232, 141, 131, 0.23),
      rgba(245, 187, 166, 0.18)
    ) !important;
  opacity: 1 !important;
  transform: rotate(-14deg) !important;
}

@media (max-width: 767px) {
  .index-page-body .hero {
    padding-bottom: 56px !important;
  }

  .index-page-body .hero__copy {
    position: relative !important;
    z-index: 5 !important;
    margin-bottom: 28px !important;
  }

  .index-page-body .hero__visual {
    margin-top: 14px !important;
  }

  .index-page-body .hero-photo-wrap {
    width: min(68vw, 300px) !important;
    margin: 0 auto !important;
  }

  .index-page-body .hero-ripple {
    width: 94% !important;
    height: 94% !important;
    border-width: 6px !important;
  }

  .index-page-body .hero-achievements {
    width: min(100% - 28px, 360px) !important;
    margin-top: 34px !important;
    gap: 16px !important;
  }

  .index-page-body .hero-achievement:nth-child(2)::before {
    width: clamp(138px, 44vw, 178px) !important;
    height: clamp(96px, 30vw, 122px) !important;
  }

  .index-page-body .hero-achievement:nth-child(2)::after {
    left: -4px !important;
    bottom: -8px !important;
    width: 72px !important;
    height: 64px !important;
  }
}

:root {
  --tm-fv-bg: #fdf6f3;
  --tm-body-bg: #fdfbf7;
  --tm-line-green: #b4c4ac;
  --tm-deep-pink: #e5c5c0;
}

body {
  background: var(--tm-body-bg) !important;
}

.header,
.temari-flower-footer {
  background: var(--tm-fv-bg) !important;
  border-color: rgba(229, 197, 192, 0.34) !important;
  box-shadow: 0 10px 28px rgba(190, 150, 145, 0.08) !important;
}

.header {
  backdrop-filter: blur(10px);
}

.hero,
.about-hero,
.contact-hero,
.privacy-hero,
.tm-service-hero,
.faq-page-body .tm-service-hero {
  background:
    radial-gradient(
      circle at 10% 16%,
      rgba(229, 197, 192, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 78%,
      rgba(253, 246, 243, 0.74),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #fdf6f3 0%,
      #fdf6f3 72%,
      rgba(253, 251, 247, 0.94) 100%
    ) !important;
}

.site,
.tm-service-page,
.about-page,
.contact-page,
.privacy-page,
.section,
.worries,
.faq-reservation,
.voice,
.info-panels,
.about-greeting,
.about-message,
.about-profile,
.about-family,
.about-cta,
.contact-intro,
.contact-guide,
.tm-bookshelf,
.tm-course,
.first-guide,
.midwife-service-guide,
.watercolor-guide,
.postpartum-application-flow {
  background: var(--tm-body-bg) !important;
}

.section,
.worries,
.faq-reservation,
.voice,
.info-panels,
.about-greeting,
.about-message,
.about-profile,
.about-family,
.about-cta,
.contact-intro,
.contact-guide,
.tm-bookshelf,
.tm-course,
.first-guide,
.midwife-service-guide,
.watercolor-guide,
.postpartum-application-flow {
  position: relative;
  isolation: isolate;
}

.section::before,
.worries::before,
.faq-reservation::before,
.voice::before,
.info-panels::before,
.about-greeting::before,
.about-message::before,
.about-profile::before,
.about-family::before,
.about-cta::before,
.contact-intro::before,
.contact-guide::before,
.tm-bookshelf::before,
.tm-course::before,
.first-guide::before,
.midwife-service-guide::before,
.watercolor-guide::before,
.postpartum-application-flow::before {
  content: "";
  position: absolute;
  inset: -80px 0 auto;
  height: 160px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(253, 246, 243, 0),
    rgba(253, 246, 243, 0.78) 38%,
    rgba(253, 251, 247, 0.96) 78%,
    rgba(253, 251, 247, 0)
  );
}

.worry-card,
.magazine-card,
.voice-card,
.info-card,
.about-card,
.privacy-card,
.contact-intro__box,
.tm-book-card,
.guide-notes section,
.watercolor-card {
  background-color: rgba(255, 255, 255, 0.72) !important;
  border-color: rgba(229, 197, 192, 0.42) !important;
  box-shadow: 0 14px 32px rgba(190, 150, 145, 0.08) !important;
}

.section-title::after,
.first-guide h2::after,
.tm-hero-copy h1::after,
.contact-hero__text h1::after,
.voice-page-body .contact-hero__text h1::after,
.hero__line,
.footer-dot-line {
  border-color: rgba(229, 197, 192, 0.55) !important;
  background-color: var(--tm-deep-pink) !important;
}

.btn,
.btn--small,
.tm-button,
.view-more-circle {
  background: linear-gradient(135deg, #e5c5c0 0%, #d8aca8 100%) !important;
  border-color: rgba(229, 197, 192, 0.8) !important;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(190, 150, 145, 0.18) !important;
}

.info-btn--outline,
.info-btn--line,
.postnatal-flow__line,
.postpartum-round-flow__button--line,
a[href*="lin.ee"].info-btn,
a[href*="lin.ee"].postnatal-flow__line,
a[href*="lin.ee"].postpartum-round-flow__button {
  background: #b4c4ac !important;
  border-color: #b4c4ac !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(142, 166, 132, 0.24) !important;
}

.footer-contact-link,
.footer-contact-link span,
.footer-icon--line {
  background: inherit;
}

.footer-icon--line {
  background: #06c755 !important;
  border-color: #06c755 !important;
  color: #fff !important;
}

.tm-hero-image::before,
.about-hero__image::before,
.contact-hero__image::before,
.faq-page-body .tm-hero-image::before,
.voice-page-body .contact-hero__image::before {
  background: #fdf6f3 !important;
}

.index-page-body .hero-photo-frame {
  box-shadow:
    0 0 0 32px #fdf6f3,
    0 0 0 52px rgba(229, 197, 192, 0.38),
    0 24px 72px rgba(190, 150, 145, 0.15) !important;
}

.index-page-body .hero-ripple {
  border-color: rgba(229, 197, 192, 0.66) !important;
  background: radial-gradient(
    closest-side,
    transparent 68%,
    rgba(253, 246, 243, 0.58) 78%,
    rgba(229, 197, 192, 0.18) 90%,
    transparent 100%
  ) !important;
  box-shadow:
    0 0 0 8px rgba(253, 246, 243, 0.56),
    0 0 34px rgba(229, 197, 192, 0.2) !important;
}

.index-page-body .hero-photo-frame {
  box-shadow:
    0 0 0 32px #ffe2e6,
    0 0 0 52px #f2d6d6,
    0 24px 72px rgba(242, 214, 214, 0.18) !important;
}

.index-page-body .hero-ripple {
  border-color: #f2d6d6 !important;
  background: radial-gradient(
    closest-side,
    transparent 68%,
    rgba(255, 226, 230, 0.62) 78%,
    rgba(242, 214, 214, 0.28) 90%,
    transparent 100%
  ) !important;
  box-shadow:
    0 0 0 8px rgba(255, 226, 230, 0.58),
    0 0 34px rgba(242, 214, 214, 0.24) !important;
}

.postpartum-care-page-body .tm-service-page,
.babysitter-page-body .tm-service-page,
.homecare-page-body .tm-service-page,
.faq-page-body .site {
  background: linear-gradient(
    180deg,
    #fdf6f3 0,
    #fdf6f3 650px,
    rgba(253, 246, 243, 0.88) 720px,
    #fdfbf7 860px,
    #fdfbf7 100%
  ) !important;
}

.postpartum-care-page-body .tm-service-hero,
.babysitter-page-body .tm-service-hero,
.homecare-page-body .tm-service-hero,
.faq-page-body .tm-service-hero {
  background:
    radial-gradient(
      circle at 10% 16%,
      rgba(255, 226, 230, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 76%,
      rgba(253, 246, 243, 0.72),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #fdf6f3 0%,
      #fdf6f3 78%,
      rgba(253, 246, 243, 0) 100%
    ) !important;
}

.index-page-body .hero-photo-frame {
  box-shadow:
    0 0 0 32px #ffe2e6,
    0 0 0 52px rgba(255, 226, 230, 0.36),
    0 24px 72px rgba(255, 226, 230, 0.16) !important;
}

.index-page-body .hero-ripple {
  border-color: rgba(255, 226, 230, 0.52) !important;
  background: radial-gradient(
    closest-side,
    transparent 70%,
    rgba(255, 226, 230, 0.34) 82%,
    rgba(255, 226, 230, 0.12) 92%,
    transparent 100%
  ) !important;
  box-shadow:
    0 0 0 8px rgba(255, 226, 230, 0.28),
    0 0 34px rgba(255, 226, 230, 0.16) !important;
}

:root {
  --tm-deep-pink: var(--pink);
}

.section-title::after,
.first-guide h2::after,
.tm-hero-copy h1::after,
.contact-hero__text h1::after,
.voice-page-body .contact-hero__text h1::after,
.hero__line,
.footer-dot-line {
  border-color: rgba(232, 141, 131, 0.55) !important;
  background-color: var(--pink) !important;
}

.btn,
.btn--small,
.tm-button {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark)) !important;
  border-color: rgba(232, 141, 131, 0.68) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(217, 120, 132, 0.24) !important;
}

.btn--small:hover,
.nav a.btn--small:hover,
.tm-button:hover {
  background: #d5747d !important;
  border-color: #d5747d !important;
  color: #fff !important;
}

.view-more-circle {
  background: transparent !important;
  border-color: #4a4a4a !important;
  color: #4a4a4a !important;
  box-shadow: none !important;
}

.info-btn--line,
.postnatal-flow__line,
.postpartum-round-flow__button--line,
a[href*="lin.ee"].info-btn,
a[href*="lin.ee"].postnatal-flow__line,
a[href*="lin.ee"].postpartum-round-flow__button {
  background: #b4c4ac !important;
  border-color: #b4c4ac !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(142, 166, 132, 0.24) !important;
}

:root {
  --font: "Kiwi Maru", serif;
  --serif: "Kiwi Maru", serif;
}

html,
body,
input,
textarea,
select,
button {
  font-family: "Kiwi Maru", serif !important;
}

.about-page-body .about-hero__image::before,
.contact-page-body .contact-hero__image::before,
.voice-page-body .contact-hero__image::before,
.postpartum-care-page-body .tm-hero-image::before,
.babysitter-page-body .tm-hero-image::before,
.homecare-page-body .tm-hero-image::before,
.faq-page-body .tm-hero-image::before {
  background: #f2d6d6 !important;
}

.index-page-body .watercolor-guide__point {
  background: rgba(255, 241, 238, 0.98) !important;
  border-color: rgba(232, 141, 131, 0.28) !important;
  box-shadow: 0 16px 34px rgba(216, 150, 142, 0.09) !important;
}

.index-page-body .hero::before {
  background: rgba(244, 196, 203, 0.36) !important;
}

.index-page-body .hero__label {
  font-size: clamp(14px, 1.22vw, 17px) !important;
  line-height: 1.9 !important;
}

.index-page-body .hero__line {
  height: 0 !important;
  border-top: 2px dotted rgba(232, 141, 131, 0.72) !important;
  background: transparent !important;
}

.about-cta a[href*="instagram.com"].info-btn--outline,
.contact-buttons a[href*="instagram.com"].info-btn--outline,
a[href*="instagram.com"].info-btn--outline {
  background: #fff !important;
  border: 1.5px solid var(--pink) !important;
  color: var(--pink) !important;
  box-shadow: none !important;
}

.about-cta a[href*="instagram.com"].info-btn--outline:hover,
.contact-buttons a[href*="instagram.com"].info-btn--outline:hover,
a[href*="instagram.com"].info-btn--outline:hover {
  background: #fff7f4 !important;
  border-color: var(--pink-dark) !important;
  color: var(--pink-dark) !important;
}

.postpartum-care-page-body .postpartum-round-flow__title {
  color: #df858d !important;
}

.postpartum-care-page-body .postpartum-round-flow__number,
.postpartum-care-page-body .postpartum-round-flow__mark i {
  color: #e69aa1 !important;
}

.about-page-body .about-hero__image::before,
.contact-page-body .contact-hero__image::before,
.voice-page-body .contact-hero__image::before,
.postpartum-care-page-body .tm-hero-image::before,
.babysitter-page-body .tm-hero-image::before,
.homecare-page-body .tm-hero-image::before,
.faq-page-body .tm-hero-image::before {
  background: #efc8cf !important;
}

@media (max-width: 767px) {
  .header__inner {
    position: relative !important;
    justify-content: center !important;
  }

  .logo {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    flex: 0 0 auto !important;
    width: max-content !important;
    max-width: calc(100% - 92px) !important;
    margin: 0 !important;
    padding: 0 !important;
    justify-content: center !important;
  }

  .logo__name {
    text-align: center !important;
    font-size: clamp(21px, 6.2vw, 26px) !important;
  }

  .menu-btn {
    margin-left: auto !important;
    position: relative !important;
    z-index: 2 !important;
  }

  .logo img {
    position: absolute !important;
    right: calc(50% + 94px) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: clamp(44px, 12vw, 52px) !important;
    max-width: none !important;
    max-height: 54px !important;
  }

  .logo__name {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: max-content !important;
    max-width: calc(100vw - 140px) !important;
    text-align: center !important;
  }

  .index-page-body .hero__label {
    font-size: 15px !important;
    line-height: 1.8 !important;
  }

  .index-page-body .hero__visual {
    margin-top: 16px !important;
    padding-bottom: 40px !important;
  }

  .index-page-body .hero-photo-wrap {
    width: min(78vw, 340px) !important;
    max-width: calc(100vw - 56px) !important;
    margin-inline: auto !important;
  }

  .index-page-body .hero-ripple {
    width: 96% !important;
    height: 96% !important;
  }

  .index-page-body .hero-achievements {
    width: min(calc(100% - 36px), 344px) !important;
    margin: 30px auto 0 !important;
    transform: none !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    justify-content: center !important;
    justify-items: center !important;
    align-items: start !important;
    gap: 14px !important;
  }

  .index-page-body .hero-achievement {
    width: 100% !important;
    min-width: 0 !important;
    text-align: center !important;
  }

  .index-page-body .hero-achievement::before {
    left: 50% !important;
    top: 50% !important;
    width: clamp(140px, 42vw, 172px) !important;
    height: clamp(100px, 30vw, 124px) !important;
    transform: translate(-50%, -50%) rotate(-7deg) skewX(-4deg) !important;
  }

  .index-page-body .hero-achievement:nth-child(2)::before {
    transform: translate(-50%, -50%) rotate(7deg) !important;
  }

  .index-page-body .hero-achievement::after {
    width: clamp(52px, 16vw, 68px) !important;
    height: clamp(46px, 14vw, 62px) !important;
    right: 2% !important;
    bottom: -10px !important;
  }
}

.index-page-body .hero-achievement .laurel-frame {
  position: relative !important;
  z-index: 2 !important;
}

.index-page-body .hero-achievement::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  z-index: -1 !important;
  width: clamp(188px, 17vw, 238px) !important;
  height: clamp(166px, 15vw, 214px) !important;
  border-radius: 55% 45% 52% 48% / 48% 54% 46% 52% !important;
  background:
    radial-gradient(
      circle at 36% 34%,
      rgba(255, 255, 255, 0.32),
      transparent 0 30%
    ),
    linear-gradient(
      145deg,
      rgba(255, 226, 219, 0.82),
      rgba(248, 190, 178, 0.36)
    ) !important;
  box-shadow: 0 18px 42px rgba(216, 150, 142, 0.08) !important;
  opacity: 1 !important;
  pointer-events: none !important;
  transform: translate(-50%, -50%) rotate(-7deg) !important;
}

.index-page-body .hero-achievement::after {
  content: none !important;
  display: none !important;
}

.index-page-body .hero-achievement:nth-child(2)::before {
  width: clamp(190px, 18vw, 248px) !important;
  height: clamp(168px, 15vw, 218px) !important;
  border-radius: 54% 46% 50% 50% / 56% 46% 54% 44% !important;
  background:
    radial-gradient(
      circle at 38% 34%,
      rgba(255, 255, 255, 0.28),
      transparent 0 30%
    ),
    linear-gradient(
      145deg,
      rgba(255, 224, 216, 0.84),
      rgba(247, 186, 174, 0.38)
    ) !important;
  transform: translate(-50%, -50%) rotate(5deg) !important;
}

.index-page-body .hero-achievement:nth-child(2)::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: -2% !important;
  top: 52% !important;
  z-index: -2 !important;
  width: clamp(86px, 8vw, 116px) !important;
  height: clamp(86px, 8vw, 116px) !important;
  border-radius: 50% !important;
  background: rgba(245, 178, 168, 0.28) !important;
  box-shadow: 0 14px 34px rgba(216, 150, 142, 0.07) !important;
  opacity: 1 !important;
  pointer-events: none !important;
  transform: translateY(-50%) !important;
}

@media (max-width: 767px) {
  .index-page-body .hero-achievement::before {
    width: clamp(138px, 40vw, 166px) !important;
    height: clamp(122px, 35vw, 150px) !important;
    transform: translate(-50%, -50%) rotate(-6deg) !important;
  }

  .index-page-body .hero-achievement:nth-child(2)::before {
    width: clamp(142px, 41vw, 170px) !important;
    height: clamp(124px, 36vw, 154px) !important;
    transform: translate(-50%, -50%) rotate(5deg) !important;
  }

  .index-page-body .hero-achievement:nth-child(2)::after {
    left: -8px !important;
    top: 58% !important;
    width: clamp(54px, 17vw, 72px) !important;
    height: clamp(54px, 17vw, 72px) !important;
  }
}

.index-page-body .hero-achievement::before {
  background:
    radial-gradient(
      circle at 34% 30%,
      rgba(255, 255, 255, 0.5),
      transparent 0 34%
    ),
    linear-gradient(
      145deg,
      rgba(252, 235, 235, 0.78),
      rgba(248, 218, 216, 0.38)
    ) !important;
  box-shadow: 0 18px 46px rgba(226, 185, 181, 0.08) !important;
}

.index-page-body .hero-achievement:nth-child(2)::before {
  background:
    radial-gradient(
      circle at 38% 34%,
      rgba(255, 255, 255, 0.42),
      transparent 0 32%
    ),
    linear-gradient(145deg, rgba(252, 235, 235, 0.8), rgba(248, 218, 216, 0.4)) !important;
}

.index-page-body .hero-achievement:nth-child(2)::after {
  background: rgba(248, 218, 216, 0.34) !important;
}

.index-page-body .magazine-card__image {
  background: transparent !important;
  box-shadow: none !important;
}

.index-page-body .magazine-card__image::after {
  content: none !important;
  display: none !important;
}

.index-page-body .magazine-card__body {
  box-shadow: 0 16px 34px rgba(130, 92, 82, 0.08) !important;
}

.temari-flower-footer {
  margin: 72px auto 0 !important;
  width: min(100% - 48px, 1320px) !important;
  border-radius: 16px !important;
  background:
    linear-gradient(rgba(255, 253, 250, 0.9), rgba(255, 253, 250, 0.92)),
    #fffdf8 !important;
  box-shadow: 0 16px 42px rgba(124, 79, 66, 0.08) !important;
  overflow: hidden !important;
}

.temari-flower-footer::before,
.temari-flower-footer::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background-repeat: no-repeat !important;
  opacity: 0.96 !important;
}

.temari-flower-footer::before {
  background-size: min(42vw, 520px) auto !important;
  background-position: left -62px top -42px !important;
}

.temari-flower-footer::after {
  background-size: min(45vw, 560px) auto !important;
  background-position: right -76px bottom 74px !important;
  transform: scaleX(-1) !important;
}

.footer-deco {
  z-index: 2 !important;
  opacity: 0 !important;
}

.temari-flower-footer__inner {
  width: min(760px, 72vw) !important;
  padding: 88px 0 62px !important;
}

.footer-bottom-wave {
  height: 28px !important;
  background: radial-gradient(
      circle at 12px -2px,
      transparent 12px,
      #ffe4e6 13px
    )
    repeat-x !important;
  background-size: 24px 28px !important;
}

.footer-bottom {
  background: linear-gradient(180deg, #ffe4e6 0%, #ffdddd 100%) !important;
}

.tm-hero-image::before,
.about-hero__image::before,
.contact-hero__image::before,
.faq-page-body .tm-hero-image::before,
.voice-page-body .contact-hero__image::before,
.postpartum-care-page-body .tm-hero-image::before,
.babysitter-page-body .tm-hero-image::before,
.homecare-page-body .tm-hero-image::before {
  background:
    radial-gradient(
      circle at 42% 38%,
      rgba(255, 255, 255, 0.46),
      transparent 0 32%
    ),
    linear-gradient(
      145deg,
      rgba(245, 247, 248, 0.9) 0%,
      rgba(244, 247, 248, 0.84) 58%,
      rgba(255, 221, 226, 0.98) 100%
    ) !important;
  box-shadow:
    16px 20px 0 rgba(255, 220, 226, 0.96),
    0 22px 58px rgba(226, 185, 181, 0.12) !important;
}

.index-page-body .hero-photo-frame {
  box-shadow:
    16px 20px 0 rgba(255, 220, 226, 0.96),
    0 0 0 22px rgba(255, 229, 234, 0.62),
    0 0 0 46px rgba(255, 240, 243, 0.44),
    0 24px 72px rgba(226, 185, 181, 0.17) !important;
}

.index-page-body .hero-ripple {
  border-color: rgba(255, 220, 226, 0.5) !important;
  background: radial-gradient(
    closest-side,
    transparent 66%,
    rgba(255, 229, 234, 0.42) 78%,
    rgba(255, 220, 226, 0.22) 90%,
    transparent 100%
  ) !important;
  box-shadow:
    0 0 0 10px rgba(255, 238, 241, 0.32),
    0 0 42px rgba(255, 220, 226, 0.24) !important;
}

.index-page-body .ripple-2 {
  border-color: rgba(255, 229, 234, 0.44) !important;
}

.index-page-body .ripple-3,
.index-page-body .ripple-4,
.index-page-body .ripple-5 {
  border-color: rgba(255, 240, 243, 0.38) !important;
}

@media (max-width: 1024px) {
  .temari-flower-footer {
    width: min(100% - 32px, 760px) !important;
    margin-top: 56px !important;
    border-radius: 16px !important;
  }

  .temari-flower-footer::before {
    background-size: min(72vw, 430px) auto !important;
    background-position: left -80px top -36px !important;
  }

  .temari-flower-footer::after {
    background-size: min(78vw, 460px) auto !important;
    background-position: right -118px bottom 128px !important;
  }

  .temari-flower-footer__inner {
    width: auto !important;
    padding: 150px 28px 52px !important;
  }
}

@media (max-width: 600px) {
  .temari-flower-footer {
    width: min(100% - 24px, 420px) !important;
    margin-top: 44px !important;
    border-radius: 14px !important;
  }

  .temari-flower-footer::before {
    background-size: 290px auto !important;
    background-position: left -94px top -28px !important;
    opacity: 0.98 !important;
  }

  .temari-flower-footer::after {
    background-size: 300px auto !important;
    background-position: right -126px bottom 184px !important;
    opacity: 0.9 !important;
  }

  .temari-flower-footer__inner {
    padding: 132px 16px 40px !important;
  }

  .index-page-body .hero-photo-frame {
    box-shadow:
      9px 12px 0 rgba(255, 220, 226, 0.96),
      0 0 0 14px rgba(255, 229, 234, 0.62),
      0 0 0 28px rgba(255, 240, 243, 0.44),
      0 18px 48px rgba(226, 185, 181, 0.14) !important;
  }
}

.about-page-body .about-hero__image::before,
.contact-page-body .contact-hero__image::before,
.voice-page-body .contact-hero__image::before,
.postpartum-care-page-body .tm-hero-image::before,
.babysitter-page-body .tm-hero-image::before,
.homecare-page-body .tm-hero-image::before,
.faq-page-body .tm-hero-image::before {
  background: #efc8cf !important;
  box-shadow: none !important;
}

.temari-flower-footer {
  width: 100% !important;
  max-width: none !important;
  margin: 72px 0 0 !important;
  border-radius: 16px !important;
  background: #fffdf9 !important;
  box-shadow: 0 16px 42px rgba(124, 79, 66, 0.08) !important;
  overflow: hidden !important;
}

.temari-flower-footer::before,
.temari-flower-footer::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

.footer-deco {
  display: block !important;
  position: absolute !important;
  z-index: 1 !important;
  opacity: 1 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

.footer-deco img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.deco-1 {
  left: 0 !important;
  top: 0 !important;
  bottom: 86px !important;
  width: min(32vw, 390px) !important;
}

.deco-1 img {
  object-position: left top !important;
}

.deco-2 {
  right: 0 !important;
  top: 0 !important;
  bottom: 86px !important;
  width: min(29vw, 350px) !important;
}

.deco-2 img {
  object-position: right top !important;
}

.deco-3,
.deco-4 {
  display: block !important;
  width: min(18vw, 220px) !important;
  height: min(18vw, 220px) !important;
  border-radius: 50% !important;
  background: radial-gradient(
    circle,
    rgba(244, 134, 127, 0.78) 0 36%,
    rgba(244, 134, 127, 0.32) 37% 62%,
    transparent 63%
  ) !important;
  opacity: 0.16 !important;
  filter: blur(0.2px) !important;
}

.deco-3 {
  left: 6% !important;
  bottom: 108px !important;
}

.deco-4 {
  right: 9% !important;
  top: 150px !important;
}

.temari-flower-footer__inner {
  position: relative !important;
  z-index: 4 !important;
  width: min(760px, 58vw) !important;
  margin: 0 auto !important;
  padding: 94px 0 72px !important;
  text-align: center !important;
}

.footer-brand img {
  width: 74px !important;
  margin-bottom: 12px !important;
}

.footer-brand h2 {
  font-size: clamp(38px, 3.6vw, 54px) !important;
  letter-spacing: 0.18em !important;
}

.footer-dot-line {
  width: min(560px, 100%) !important;
  height: 3px !important;
  margin: 30px auto 34px !important;
  border: 0 !important;
  background-color: transparent !important;
  background-image: radial-gradient(#efaaaa 2px, transparent 2.2px) !important;
  background-size: 16px 3px !important;
  background-repeat: repeat-x !important;
}

.footer-hours-title {
  margin-bottom: 22px !important;
  font-size: 20px !important;
  letter-spacing: 0.14em !important;
}

.flower-hours-table {
  background: rgba(255, 255, 255, 0.78) !important;
  border-color: #f0bfc0 !important;
  box-shadow: none !important;
}

.flower-hours-table th,
.flower-hours-table td {
  border-color: #f1caca !important;
  padding: 16px 12px !important;
}

.flower-hours-table thead th {
  background: rgba(255, 237, 237, 0.86) !important;
}

.footer-notice {
  margin-top: 32px !important;
}

.footer-contact-links {
  margin-top: 28px !important;
  gap: 42px !important;
}

.footer-bottom-wave {
  position: relative !important;
  z-index: 5 !important;
  height: 28px !important;
  background: radial-gradient(
      circle at 12px -2px,
      transparent 12px,
      #ffe0e1 13px
    )
    repeat-x !important;
  background-size: 24px 28px !important;
}

.footer-bottom {
  position: relative !important;
  z-index: 5 !important;
  background: linear-gradient(180deg, #ffe0e1 0%, #ffd7d8 100%) !important;
  padding: 24px 20px 30px !important;
}

@media (max-width: 1024px) {
  .temari-flower-footer {
    width: 100% !important;
    max-width: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    margin-top: 56px !important;
  }

  .deco-1 {
    top: 0 !important;
    left: 0 !important;
    bottom: auto !important;
    width: 250px !important;
    height: 260px !important;
  }

  .deco-2 {
    top: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: 250px !important;
    height: 300px !important;
  }

  .deco-3,
  .deco-4 {
    display: none !important;
  }

  .temari-flower-footer__inner {
    width: auto !important;
    padding: 150px 28px 58px !important;
  }

  .footer-brand h2 {
    font-size: clamp(34px, 6vw, 44px) !important;
  }
}

@media (max-width: 600px) {
  .temari-flower-footer {
    width: 100% !important;
    max-width: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    border-radius: 14px !important;
    margin-top: 44px !important;
  }

  .deco-1 {
    width: 118px !important;
    height: 270px !important;
    left: 0 !important;
    top: -2px !important;
    z-index: 4 !important;
  }

  .deco-2 {
    width: 126px !important;
    height: 292px !important;
    right: 0 !important;
    top: -2px !important;
    z-index: 4 !important;
  }

  .temari-flower-footer__inner {
    padding: 132px 16px 42px !important;
  }

  .footer-brand img {
    width: 64px !important;
  }

  .footer-brand h2 {
    font-size: clamp(28px, 8.8vw, 36px) !important;
    letter-spacing: 0.12em !important;
  }

  .footer-dot-line {
    width: min(280px, 92%) !important;
    margin: 24px auto 30px !important;
  }

  .footer-hours-title {
    font-size: 16px !important;
    margin-bottom: 18px !important;
  }

  .flower-hours-table {
    font-size: 12px !important;
  }

  .flower-hours-table th,
  .flower-hours-table td {
    padding: 11px 6px !important;
  }

  .flower-hours-table tbody th {
    width: 78px !important;
  }

  .footer-notice {
    margin-top: 26px !important;
    max-width: 300px !important;
  }

  .footer-notice li {
    font-size: 13px !important;
    line-height: 1.8 !important;
  }

  .footer-contact-links {
    display: grid !important;
    justify-content: center !important;
    gap: 16px !important;
    margin-top: 28px !important;
  }

  .footer-contact-link {
    justify-content: flex-start !important;
    font-size: 13px !important;
  }

  .footer-bottom {
    gap: 12px !important;
    padding: 24px 16px 30px !important;
  }
}

@media (max-width: 600px) {
  .temari-flower-footer::before,
  .temari-flower-footer::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    z-index: 3 !important;
    width: 128px !important;
    height: 292px !important;
    pointer-events: none !important;
    background-repeat: no-repeat !important;
    background-size: auto 100% !important;
    opacity: 1 !important;
  }

  .temari-flower-footer::before {
    left: 0 !important;
    background-image: url("asset/footer-flower_left.png") !important;
    background-position: left top !important;
  }

  .temari-flower-footer::after {
    right: 0 !important;
    background-image: url("asset/footer-flower_right.png") !important;
    background-position: right top !important;
  }
}

.about-page-body .about-hero__image::before,
.contact-page-body .contact-hero__image::before,
.voice-page-body .contact-hero__image::before,
.postpartum-care-page-body .tm-hero-image::before,
.babysitter-page-body .tm-hero-image::before,
.homecare-page-body .tm-hero-image::before,
.faq-page-body .tm-hero-image::before {
  background: #ffe8e8 !important;
  box-shadow: none !important;
}

.babysitter-page-body .tm-hero-image img {
  object-position: 50% 50% !important;
}

.voice-page-body .contact-hero__image img {
  object-fit: cover !important;
  object-position: 50% 50% !important;
}

@media (max-width: 767px) {
  .babysitter-page-body .tm-hero-image img,
  .voice-page-body .contact-hero__image img {
    object-position: 50% 50% !important;
  }
}

.babysitter-page-body .tm-hero-image img {
  object-fit: cover !important;
  object-position: 34% 50% !important;
  transform: scale(1.18) !important;
  transform-origin: 34% 50% !important;
}

.voice-page-body .contact-hero__image img {
  object-fit: cover !important;
  object-position: 32% 50% !important;
  transform: scale(1.16) !important;
  transform-origin: 32% 50% !important;
}

@media (max-width: 767px) {
  .babysitter-page-body .tm-hero-image img {
    object-position: 34% 50% !important;
    transform: scale(1.2) !important;
    transform-origin: 34% 50% !important;
  }

  .voice-page-body .contact-hero__image img {
    object-position: 32% 50% !important;
    transform: scale(1.18) !important;
    transform-origin: 32% 50% !important;
  }
}

.babysitter-page-body .tm-hero-image,
.voice-page-body .contact-hero__image {
  overflow: visible !important;
}

.babysitter-page-body .tm-hero-image::before,
.voice-page-body .contact-hero__image::before {
  background: #ffe8e8 !important;
  box-shadow:
    0 0 0 18px rgba(255, 232, 232, 0.78),
    0 0 42px rgba(255, 214, 220, 0.28) !important;
}

.babysitter-page-body .tm-hero-image img,
.voice-page-body .contact-hero__image img {
  box-shadow:
    0 0 0 14px #ffe8e8,
    0 0 0 28px rgba(255, 232, 232, 0.46),
    0 20px 48px rgba(226, 185, 181, 0.12) !important;
}

.voice-page-body .contact-hero__image {
  width: min(38vw, 480px) !important;
}

.voice-page-body .contact-hero__image img {
  object-position: 32% 50% !important;
  transform: scale(1.08) !important;
  transform-origin: 32% 50% !important;
}

@media (max-width: 900px) {
  .voice-page-body .contact-hero__image {
    width: min(76vw, 420px) !important;
  }
}

@media (max-width: 767px) {
  .babysitter-page-body .tm-hero-image img,
  .voice-page-body .contact-hero__image img {
    box-shadow:
      0 0 0 10px #ffe8e8,
      0 0 0 20px rgba(255, 232, 232, 0.42),
      0 16px 36px rgba(226, 185, 181, 0.1) !important;
  }

  .voice-page-body .contact-hero__image {
    width: min(72vw, 360px) !important;
  }

  .voice-page-body .contact-hero__image img {
    transform: scale(1.08) !important;
    transform-origin: 32% 50% !important;
  }
}

.postpartum-care-page-body .tm-hero-image,
.homecare-page-body .tm-hero-image,
.about-page-body .about-hero__image,
.faq-page-body .tm-hero-image,
.contact-page-body .contact-hero__image {
  overflow: visible !important;
}

.postpartum-care-page-body .tm-hero-image::before,
.homecare-page-body .tm-hero-image::before,
.about-page-body .about-hero__image::before,
.faq-page-body .tm-hero-image::before,
.contact-page-body .contact-hero__image::before {
  background: #ffe8e8 !important;
  box-shadow:
    0 0 0 18px rgba(255, 232, 232, 0.78),
    0 0 42px rgba(255, 214, 220, 0.28) !important;
}

.postpartum-care-page-body .tm-hero-image img,
.homecare-page-body .tm-hero-image img,
.about-page-body .about-hero__image img,
.faq-page-body .tm-hero-image img,
.contact-page-body .contact-hero__image img {
  box-shadow:
    0 0 0 14px #ffe8e8,
    0 0 0 28px rgba(255, 232, 232, 0.46),
    0 20px 48px rgba(226, 185, 181, 0.12) !important;
}

@media (max-width: 767px) {
  .postpartum-care-page-body .tm-hero-image::before,
  .homecare-page-body .tm-hero-image::before,
  .about-page-body .about-hero__image::before,
  .faq-page-body .tm-hero-image::before,
  .contact-page-body .contact-hero__image::before {
    box-shadow:
      0 0 0 12px rgba(255, 232, 232, 0.74),
      0 0 30px rgba(255, 214, 220, 0.22) !important;
  }

  .postpartum-care-page-body .tm-hero-image img,
  .homecare-page-body .tm-hero-image img,
  .about-page-body .about-hero__image img,
  .faq-page-body .tm-hero-image img,
  .contact-page-body .contact-hero__image img {
    box-shadow:
      0 0 0 10px #ffe8e8,
      0 0 0 20px rgba(255, 232, 232, 0.42),
      0 16px 36px rgba(226, 185, 181, 0.1) !important;
  }
}

.postpartum-care-page-body .tm-hero-image,
.homecare-page-body .tm-hero-image,
.about-page-body .about-hero__image,
.faq-page-body .tm-hero-image,
.contact-page-body .contact-hero__image {
  overflow: visible !important;
  isolation: isolate !important;
}

.postpartum-care-page-body .tm-hero-image::before,
.homecare-page-body .tm-hero-image::before,
.about-page-body .about-hero__image::before,
.faq-page-body .tm-hero-image::before,
.contact-page-body .contact-hero__image::before {
  content: "" !important;
  position: absolute !important;
  inset: -30px !important;
  z-index: 0 !important;
  display: block !important;
  border-radius: inherit !important;
  background: transparent !important;
  box-shadow:
    0 0 0 18px rgba(255, 232, 232, 0.72),
    0 0 0 36px rgba(255, 232, 232, 0.34),
    0 0 72px rgba(255, 218, 224, 0.34) !important;
  opacity: 1 !important;
  pointer-events: none !important;
}

.postpartum-care-page-body .tm-hero-image img,
.homecare-page-body .tm-hero-image img,
.about-page-body .about-hero__image img,
.faq-page-body .tm-hero-image img,
.contact-page-body .contact-hero__image img {
  position: relative !important;
  z-index: 1 !important;
  box-shadow:
    0 0 0 15px #ffe8e8,
    0 0 0 31px rgba(255, 232, 232, 0.5),
    0 18px 52px rgba(226, 185, 181, 0.1) !important;
}

@media (max-width: 767px) {
  .postpartum-care-page-body .tm-hero-image::before,
  .homecare-page-body .tm-hero-image::before,
  .about-page-body .about-hero__image::before,
  .faq-page-body .tm-hero-image::before,
  .contact-page-body .contact-hero__image::before {
    inset: -22px !important;
    box-shadow:
      0 0 0 12px rgba(255, 232, 232, 0.7),
      0 0 0 24px rgba(255, 232, 232, 0.32),
      0 0 46px rgba(255, 218, 224, 0.28) !important;
  }

  .postpartum-care-page-body .tm-hero-image img,
  .homecare-page-body .tm-hero-image img,
  .about-page-body .about-hero__image img,
  .faq-page-body .tm-hero-image img,
  .contact-page-body .contact-hero__image img {
    box-shadow:
      0 0 0 10px #ffe8e8,
      0 0 0 20px rgba(255, 232, 232, 0.46),
      0 14px 36px rgba(226, 185, 181, 0.09) !important;
  }
}

.postpartum-care-page-body .tm-hero-image,
.homecare-page-body .tm-hero-image,
.about-page-body .about-hero__image,
.faq-page-body .tm-hero-image,
.contact-page-body .contact-hero__image {
  position: relative !important;
  overflow: visible !important;
  isolation: auto !important;
  background: transparent !important;
  box-shadow: none !important;
}

.postpartum-care-page-body .tm-hero-image::before,
.postpartum-care-page-body .tm-hero-image::after,
.homecare-page-body .tm-hero-image::before,
.homecare-page-body .tm-hero-image::after,
.about-page-body .about-hero__image::before,
.about-page-body .about-hero__image::after,
.faq-page-body .tm-hero-image::before,
.faq-page-body .tm-hero-image::after,
.contact-page-body .contact-hero__image::before,
.contact-page-body .contact-hero__image::after {
  content: none !important;
  display: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.postpartum-care-page-body .tm-hero-image img,
.homecare-page-body .tm-hero-image img,
.about-page-body .about-hero__image img,
.faq-page-body .tm-hero-image img,
.contact-page-body .contact-hero__image img {
  position: relative !important;
  z-index: 1 !important;
  border-radius: 50% !important;
  box-shadow:
    0 0 0 14px #ffe8e8,
    0 0 0 27px rgba(255, 232, 232, 0.5),
    0 0 56px 18px rgba(255, 224, 228, 0.36) !important;
}

@media (max-width: 767px) {
  .postpartum-care-page-body .tm-hero-image img,
  .homecare-page-body .tm-hero-image img,
  .about-page-body .about-hero__image img,
  .faq-page-body .tm-hero-image img,
  .contact-page-body .contact-hero__image img {
    box-shadow:
      0 0 0 10px #ffe8e8,
      0 0 0 20px rgba(255, 232, 232, 0.48),
      0 0 40px 12px rgba(255, 224, 228, 0.32) !important;
  }
}

.postpartum-care-page-body .tm-hero-copy .tm-eyebrow,
.babysitter-page-body .tm-hero-copy .tm-eyebrow,
.homecare-page-body .tm-hero-copy .tm-eyebrow {
  display: block !important;
  width: max-content !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

@media (max-width: 767px) {
  .postpartum-care-page-body .tm-hero-copy .tm-eyebrow,
  .babysitter-page-body .tm-hero-copy .tm-eyebrow,
  .homecare-page-body .tm-hero-copy .tm-eyebrow {
    margin-inline: auto !important;
    transform: translateX(0) !important;
  }
}

.postpartum-care-page-body .tm-nav-links,
.babysitter-page-body .tm-nav-links,
.homecare-page-body .tm-nav-links {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: clamp(8px, 2.4vw, 18px) !important;
  width: 100% !important;
  max-width: 760px !important;
  margin: 16px auto 0 !important;
  padding: 0 12px !important;
}

.postpartum-care-page-body .tm-nav-links a,
.babysitter-page-body .tm-nav-links a,
.homecare-page-body .tm-nav-links a {
  flex: 0 1 auto !important;
  min-width: 0 !important;
  border-radius: 999px !important;
  padding: 10px clamp(13px, 3.4vw, 22px) !important;
  line-height: 1.45 !important;
  text-align: center !important;
  white-space: nowrap !important;
  background-clip: padding-box !important;
}

.faq-page-body .faq-group h3 {
  position: relative !important;
  display: inline-block !important;
  width: max-content !important;
  max-width: 100% !important;
  margin: 0 0 30px !important;
  padding: 0 0.35em 0.1em !important;
  line-height: 1.55 !important;
  overflow: visible !important;
  z-index: 1 !important;
}

.faq-page-body .faq-group h3::before,
.faq-page-body .faq-group h3::after {
  content: "" !important;
  position: absolute !important;
  left: 0.12em !important;
  right: 0.12em !important;
  bottom: 0.1em !important;
  height: 0.42em !important;
  border-radius: 999px !important;
  background: rgba(232, 141, 131, 0.42) !important;
  transform: rotate(2deg) !important;
  z-index: -1 !important;
  display: block !important;
}

.faq-page-body .faq-group h3::after {
  bottom: 0.02em !important;
  height: 0.2em !important;
  background: rgba(232, 141, 131, 0.58) !important;
}

.contact-page-body .contact-guide .section-title,
.contact-page-body .contact-hero__text h1 {
  width: min(100%, 18em) !important;
  max-width: calc(100vw - 32px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  font-size: clamp(24px, 5.8vw, 42px) !important;
  line-height: 1.65 !important;
  letter-spacing: 0.06em !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  text-wrap: balance;
}

.index-page-body .hero-achievements {
  justify-items: center !important;
  align-items: stretch !important;
  gap: clamp(16px, 4vw, 32px) !important;
}

.index-page-body .hero-achievement {
  position: relative !important;
  display: grid !important;
  place-items: center !important;
  min-width: 0 !important;
  min-height: clamp(190px, 24vw, 260px) !important;
  isolation: isolate !important;
  text-align: center !important;
}

.index-page-body .hero-achievement .laurel-frame {
  position: relative !important;
  z-index: 2 !important;
  width: min(100%, 13.5em) !important;
  margin: auto !important;
  padding: clamp(18px, 3vw, 28px) clamp(12px, 2.6vw, 24px) !important;
}

.index-page-body .hero-achievement::before {
  left: 50% !important;
  top: 50% !important;
  width: clamp(176px, 19vw, 248px) !important;
  height: clamp(164px, 17vw, 226px) !important;
  transform: translate(-50%, -50%) rotate(-6deg) !important;
  z-index: -1 !important;
}

.index-page-body .hero-achievement:nth-child(2)::before {
  transform: translate(-50%, -50%) rotate(5deg) !important;
}

.index-page-body .hero-achievement__small,
.index-page-body .hero-achievement__large {
  position: relative !important;
  z-index: 2 !important;
  word-break: keep-all !important;
  overflow-wrap: anywhere !important;
  text-wrap: balance;
}

.index-page-body .hero-achievement__small {
  color: #e88d83 !important;
  font-weight: 700 !important;
}

@media (max-width: 767px) {
  .postpartum-care-page-body .tm-nav-links,
  .babysitter-page-body .tm-nav-links,
  .homecare-page-body .tm-nav-links {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, max-content)) !important;
    justify-content: center !important;
    column-gap: clamp(7px, 2.2vw, 12px) !important;
    row-gap: 8px !important;
    padding-inline: 10px !important;
  }

  .postpartum-care-page-body .tm-nav-links a,
  .babysitter-page-body .tm-nav-links a,
  .homecare-page-body .tm-nav-links a {
    width: auto !important;
    max-width: 31vw !important;
    padding: 9px clamp(9px, 2.4vw, 13px) !important;
    font-size: clamp(11px, 3.1vw, 13px) !important;
    letter-spacing: 0.03em !important;
  }

  .faq-page-body .faq-group {
    text-align: left !important;
  }

  .faq-page-body .faq-group h3 {
    font-size: clamp(18px, 4.8vw, 22px) !important;
  }

  .contact-page-body .contact-guide .section-title,
  .contact-page-body .contact-hero__text h1 {
    width: min(100%, 15em) !important;
    font-size: clamp(22px, 6vw, 30px) !important;
    line-height: 1.75 !important;
    letter-spacing: 0.04em !important;
  }

  .index-page-body .hero-achievements {
    width: min(100% - 28px, 380px) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    margin-inline: auto !important;
  }

  .index-page-body .hero-achievement {
    min-height: clamp(178px, 48vw, 210px) !important;
  }

  .index-page-body .hero-achievement .laurel-frame {
    width: 100% !important;
    padding: 16px 8px !important;
  }

  .index-page-body .hero-achievement::before {
    width: clamp(146px, 43vw, 176px) !important;
    height: clamp(142px, 42vw, 172px) !important;
  }

  .index-page-body .hero-achievement__small {
    font-size: clamp(12px, 3.3vw, 14px) !important;
    line-height: 1.8 !important;
  }

  .index-page-body .hero-achievement__large {
    font-size: clamp(14px, 3.7vw, 16px) !important;
    line-height: 1.75 !important;
  }
}

@media (max-width: 360px) {
  .info-btn,
  .postnatal-flow__line,
  .tm-button,
  .btn {
    width: min(100%, calc(100vw - 40px)) !important;
    min-width: 0 !important;
    max-width: calc(100vw - 40px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    white-space: normal !important;
    text-align: center !important;
  }
}

.faq-page-body .tm-hero-copy h1,
.contact-page-body .contact-hero__text h1,
.postpartum-care-page-body .tm-hero-copy h1,
.babysitter-page-body .tm-hero-copy h1,
.homecare-page-body .tm-hero-copy h1 {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(8px);
  transition:
    opacity 1.1s ease,
    transform 1.1s ease,
    filter 1.1s ease;
  will-change: opacity, transform, filter;
}

.faq-page-body .tm-hero-copy h1.is-show,
.contact-page-body .contact-hero__text h1.is-show,
.postpartum-care-page-body .tm-hero-copy h1.is-show,
.babysitter-page-body .tm-hero-copy h1.is-show,
.homecare-page-body .tm-hero-copy h1.is-show {
  animation: sectionTitleFadeUp 1.2s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  .faq-page-body .tm-hero-copy h1,
  .contact-page-body .contact-hero__text h1,
  .postpartum-care-page-body .tm-hero-copy h1,
  .babysitter-page-body .tm-hero-copy h1,
  .homecare-page-body .tm-hero-copy h1 {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    animation: none;
  }
}

.faq-page-body .tm-hero-copy .tm-eyebrow {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.faq-page-body .faq-group h3::before {
  left: 0 !important;
  right: 0 !important;
  bottom: 0.02em !important;
  height: 0.34em !important;
  border-radius: 999px !important;
  background: rgba(232, 141, 131, 0.32) !important;
  transform: none !important;
}

.faq-page-body .faq-group h3::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 600px) {
  .temari-flower-footer::before,
  .temari-flower-footer::after {
    content: none !important;
    display: none !important;
    background: none !important;
  }
}

h1,
h2,
h3,
.section-title,
.hero__title {
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

p,
li,
dd,
td,
th {
  word-break: normal;
  overflow-wrap: break-word;
}

@media (max-width: 430px) {
  .section-title {
    font-size: clamp(23px, 6.2vw, 28px);
    letter-spacing: 0.04em;
    line-height: 1.7;
  }

  .midwife-service-guide {
    padding-inline: 18px;
  }
}

.intro-copy {
  font-family: "Kiwi Maru", var(--serif), serif !important;
}

@media (max-width: 767px) {
  .header__inner {
    width: min(100% - 28px, 720px) !important;
    height: 76px !important;
    justify-content: space-between !important;
  }

  .logo {
    min-width: 0 !important;
    gap: 8px !important;
    margin-left: 0 !important;
  }

  .logo img {
    width: clamp(56px, 17vw, 72px) !important;
    max-height: 56px !important;
  }

  .logo__name {
    font-size: clamp(20px, 7.2vw, 30px) !important;
    letter-spacing: 0.08em !important;
    white-space: nowrap !important;
  }

  .menu-btn {
    display: block !important;
    flex: 0 0 42px !important;
  }

  .nav {
    top: 76px !important;
  }
}

@media (min-width: 768px) and (max-width: 1099px) {
  .header__inner {
    width: min(100% - 40px, 980px) !important;
    height: 82px !important;
    justify-content: space-between !important;
  }

  .logo {
    gap: 10px !important;
    margin-left: 0 !important;
  }

  .logo img {
    width: clamp(72px, 9vw, 92px) !important;
    max-height: 64px !important;
  }

  .logo__name {
    font-size: clamp(24px, 3.8vw, 34px) !important;
    letter-spacing: 0.08em !important;
  }

  .menu-btn {
    display: block !important;
    flex: 0 0 42px !important;
  }

  .nav {
    position: fixed !important;
    top: 82px !important;
    left: 24px !important;
    right: 24px !important;
    display: none !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin-left: 0 !important;
    padding: 24px !important;
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow) !important;
  }

  .menu-check:checked ~ .nav {
    display: grid !important;
  }

  .nav a {
    justify-content: center !important;
    text-align: center !important;
  }
}

@media (min-width: 1100px) and (max-width: 1280px) {
  .header__inner {
    width: min(100% - 32px, 1220px) !important;
  }

  .logo {
    gap: 10px !important;
    margin-left: 0 !important;
  }

  .logo img {
    width: 96px !important;
    max-height: 66px !important;
  }

  .logo__name {
    font-size: clamp(24px, 2.2vw, 30px) !important;
    letter-spacing: 0.06em !important;
  }

  .nav {
    gap: clamp(12px, 1.5vw, 22px) !important;
  }

  .nav a {
    font-size: clamp(13px, 1.1vw, 15px) !important;
    letter-spacing: 0.02em !important;
  }

  .nav .btn--small {
    min-height: 44px !important;
    padding-inline: 22px !important;
  }
}

@media (max-width: 767px) {
  .index-page-body .watercolor-guide {
    overflow: hidden !important;
  }

  .index-page-body .watercolor-guide__inner {
    width: min(100%, 390px) !important;
    margin-inline: auto !important;
  }

  .index-page-body .watercolor-guide__small,
  .index-page-body .watercolor-guide .section-title {
    max-width: calc(100vw - 48px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    line-break: strict !important;
    text-align: center !important;
  }

  .index-page-body .watercolor-guide__small {
    font-size: clamp(15px, 4.3vw, 18px) !important;
    line-height: 1.75 !important;
    letter-spacing: 0.08em !important;
  }

  .index-page-body .watercolor-guide .section-title {
    font-size: clamp(23px, 6vw, 28px) !important;
    line-height: 1.75 !important;
    letter-spacing: 0.06em !important;
  }

  .index-page-body .watercolor-card {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 430px) {
  .index-page-body .watercolor-guide__inner {
    width: min(100%, 340px) !important;
  }

  .index-page-body .watercolor-guide .section-title {
    max-width: 11.5em !important;
  }
}

@media (max-width: 600px) {
  .temari-flower-footer__inner {
    padding-top: 96px !important;
  }

  .footer-brand {
    display: grid !important;
    justify-items: center !important;
    align-content: center !important;
    min-height: 170px !important;
  }

  .footer-brand img {
    width: 58px !important;
    margin: 0 auto 10px !important;
  }

  .footer-brand h2 {
    margin: 0 !important;
    text-align: center !important;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .temari-flower-footer__inner {
    padding-top: 118px !important;
  }

  .footer-brand {
    display: grid !important;
    justify-items: center !important;
    align-content: center !important;
    min-height: 150px !important;
  }
}

.homecare-page-body .tm-hero-image {
  display: block !important;
}

.homecare-page-body .tm-hero-image img {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  object-position: 50% 50% !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.tm-hero-copy .hero-text-line {
  display: inline;
}

.line-message-row {
  display: inline;
}

@media (max-width: 900px) {
  .homecare-page-body .tm-service-hero {
    gap: 36px !important;
  }

  .homecare-page-body .tm-hero-image {
    width: min(78vw, 360px) !important;
    max-width: calc(100vw - 72px) !important;
    margin: 36px auto 0 !important;
  }
}

@media (max-width: 767px) {
  .postpartum-care-page-body .tm-hero-copy p:last-child,
  .babysitter-page-body .tm-hero-copy p:last-child,
  .homecare-page-body .tm-hero-copy p:last-child {
    width: min(100%, 23.5em) !important;
    max-width: calc(100vw - 44px) !important;
    margin: 22px auto 0 !important;
    padding: 0 !important;
    text-align: center !important;
    font-size: clamp(14px, 3.75vw, 15px) !important;
    line-height: 2.05 !important;
    letter-spacing: 0.035em !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    line-break: strict !important;
  }

  .homecare-page-body .tm-hero-copy .text-phrase {
    display: inline !important;
  }
}

@media (max-width: 480px) {
  .homecare-page-body .tm-hero-image {
    width: min(74vw, 300px) !important;
    max-width: calc(100vw - 88px) !important;
    margin-top: 30px !important;
  }
}

@media (max-width: 767px) {
  body {
    word-break: normal !important;
    overflow-wrap: break-word !important;
    line-break: strict !important;
  }

  main :where(p, li, dd, summary),
  footer :where(p, li) {
    box-sizing: border-box !important;
    max-width: min(100%, 31em) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    line-height: 2 !important;
    letter-spacing: 0.025em !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    line-break: strict !important;
  }

  main :where(h1, h2, h3, .section-title),
  footer :where(h2, h3) {
    box-sizing: border-box !important;
    max-width: min(100%, 16em) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    line-height: 1.72 !important;
    letter-spacing: 0.035em !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    line-break: strict !important;
    text-wrap: balance;
  }

  .homecare-page-body .tm-hero-copy .hero-text-line,
  .homecare-page-body .tm-hero-copy .text-phrase {
    display: inline !important;
    white-space: normal !important;
  }

  main
    :where(
      .about-label,
      .contact-label,
      .tm-eyebrow,
      .tm-page-kicker,
      .magazine-card__number
    ) {
    width: auto !important;
    max-width: 100% !important;
    line-height: 1.55 !important;
    letter-spacing: 0.1em !important;
    overflow-wrap: break-word !important;
  }
}

@media (max-width: 390px) {
  main :where(p, li, dd, summary),
  footer :where(p, li) {
    max-width: min(100%, 29em) !important;
    font-size: min(15px, 3.9vw) !important;
    line-height: 2.05 !important;
    letter-spacing: 0.015em !important;
  }

  main :where(h1, h2, h3, .section-title),
  footer :where(h2, h3) {
    max-width: min(100%, 14em) !important;
    letter-spacing: 0.025em !important;
  }
}

@media (max-width: 360px) {
  main :where(p, li, dd, summary),
  footer :where(p, li) {
    font-size: min(14px, 3.85vw) !important;
    letter-spacing: 0.01em !important;
  }
}

@media (max-width: 767px) {
  .postpartum-care-page-body .tm-list-card,
  .babysitter-page-body .tm-list-card,
  .homecare-page-body .tm-list-card {
    text-align: left !important;
  }

  .postpartum-care-page-body .tm-list-card h3,
  .babysitter-page-body .tm-list-card h3,
  .homecare-page-body .tm-list-card h3 {
    max-width: 100% !important;
    text-align: center !important;
    margin-inline: auto !important;
  }

  .postpartum-care-page-body .tm-list-card ul,
  .babysitter-page-body .tm-list-card ul,
  .homecare-page-body .tm-list-card ul {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-left: 0 !important;
    text-align: left !important;
  }

  .postpartum-care-page-body .tm-list-card li,
  .babysitter-page-body .tm-list-card li,
  .homecare-page-body .tm-list-card li {
    max-width: 100% !important;
    margin: 0 0 14px !important;
    padding-left: 1.25em !important;
    text-align: left !important;
    line-height: 1.9 !important;
    letter-spacing: 0.025em !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }

  .postpartum-care-page-body .tm-list-card li:last-child,
  .babysitter-page-body .tm-list-card li:last-child,
  .homecare-page-body .tm-list-card li:last-child {
    margin-bottom: 0 !important;
  }

  .postpartum-care-page-body .dot-frame-message,
  .babysitter-page-body .dot-frame-message,
  .homecare-page-body .dot-frame-message {
    display: grid !important;
    justify-items: center !important;
    width: min(100% - 28px, 360px) !important;
    margin-inline: auto !important;
    padding: 34px 24px 28px !important;
  }

  .postpartum-care-page-body .dot-frame-message p,
  .babysitter-page-body .dot-frame-message p,
  .homecare-page-body .dot-frame-message p {
    max-width: 100% !important;
    margin: 0 auto 24px !important;
    text-align: center !important;
    line-height: 2.25 !important;
    letter-spacing: 0.04em !important;
  }

  .postpartum-care-page-body .dot-frame-message .reservation-highlight-block,
  .babysitter-page-body .dot-frame-message .reservation-highlight-block,
  .homecare-page-body .dot-frame-message .reservation-highlight-block {
    display: block !important;
    max-width: 17.5em !important;
    margin-inline: auto !important;
    background: none !important;
    text-align: center !important;
  }

  .postpartum-care-page-body .dot-frame-message .line-message-row,
  .babysitter-page-body .dot-frame-message .line-message-row,
  .homecare-page-body .dot-frame-message .line-message-row {
    display: block !important;
    white-space: nowrap !important;
  }

  .postpartum-care-page-body .dot-frame-message .sp-only,
  .babysitter-page-body .dot-frame-message .sp-only,
  .homecare-page-body .dot-frame-message .sp-only {
    display: none !important;
  }

  .postpartum-care-page-body .dot-frame-message .postnatal-flow__line,
  .babysitter-page-body .dot-frame-message .postnatal-flow__line,
  .homecare-page-body .dot-frame-message .postnatal-flow__line {
    width: min(100%, 282px) !important;
    max-width: 282px !important;
    min-width: 0 !important;
    height: 50px !important;
    margin: 0 auto !important;
    padding: 0 18px !important;
    justify-content: center !important;
    gap: 10px !important;
    white-space: nowrap !important;
    font-size: 15px !important;
    line-height: 1 !important;
  }
}

.about-card__label,
.about-card h3,
.about-card--career .about-timeline h3 {
  text-align: center !important;
}

.about-card ul,
.about-card ol,
.about-card li,
.about-note {
  text-align: left !important;
}

.about-card--license li {
  display: block !important;
  width: 100% !important;
}

.about-card--career .about-timeline h3 {
  margin: 28px 0 18px !important;
}

.footer-brand {
  display: grid !important;
  justify-items: center !important;
}

.footer-brand img {
  order: 1 !important;
}

.footer-brand h2 {
  order: 2 !important;
}

.footer-notice {
  display: grid !important;
  justify-content: center !important;
  text-align: left !important;
}

.footer-notice li {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}

@media (max-width: 767px) {
  .index-page-body .hero-achievement__small,
  .index-page-body .hero-achievement__small .text-phrase {
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    text-wrap: nowrap !important;
  }

  .index-page-body .hero-achievement__small {
    font-size: clamp(11px, 3vw, 13px) !important;
    letter-spacing: 0.02em !important;
  }

  .postpartum-care-page-body .postpartum-round-flow__title {
    text-align: center !important;
  }

  .postpartum-care-page-body .postpartum-round-flow__copy {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
  }

  .about-greeting__text p {
    max-width: min(100%, 24em) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left !important;
    line-height: 1.8 !important;
  }

  .about-card__label,
  .about-card h3,
  .about-card--career .about-timeline h3 {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .about-card ul,
  .about-card ol {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
  }

  .about-card li,
  .about-note {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
  }

  .footer-brand {
    align-content: start !important;
    min-height: 170px !important;
    padding-top: 24px !important;
  }

  .footer-brand img {
    width: 58px !important;
    margin: 0 auto 12px !important;
  }

  .footer-brand h2 {
    font-size: clamp(30px, 8.8vw, 38px) !important;
    line-height: 1.35 !important;
    letter-spacing: 0.12em !important;
    transform: translateY(0) !important;
  }

  .footer-notice {
    width: min(100% - 48px, 340px) !important;
    max-width: 340px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: stretch !important;
  }

  .footer-notice li {
    max-width: 100% !important;
    padding-left: 1.45em !important;
    text-align: left !important;
  }

  .footer-notice li::before {
    left: 0 !important;
  }

  .faq-page-body .contact-faq summary,
  .faq-page-body .contact-faq .faq-item summary {
    display: grid !important;
    justify-items: center !important;
    text-align: left !important;
  }

  .faq-page-body .contact-faq summary::before {
    display: grid !important;
    margin: 0 auto 14px !important;
  }

  .faq-page-body .contact-faq summary::after {
    justify-self: center !important;
  }

  .faq-page-body .contact-faq .faq-item summary {
    max-width: 100% !important;
  }

  .faq-page-body .contact-faq .faq-item summary,
  .faq-page-body .contact-faq .faq-answer p,
  .faq-page-body .contact-faq .faq-answer li {
    text-align: left !important;
  }
}

@media (max-width: 767px) {
  .postpartum-care-page-body .postpartum-round-flow__line-note,
  .postpartum-care-page-body .postpartum-round-flow__line-note p,
  .postpartum-care-page-body .postpartum-round-flow__line-note span,
  .postpartum-care-page-body .postpartum-round-flow__payment,
  .postpartum-care-page-body .postpartum-round-flow__payment span,
  .babysitter-page-body .first-guide__intro,
  .babysitter-page-body .first-guide__intro p,
  .babysitter-page-body .first-guide__intro span {
    text-align: left !important;
  }

  .postpartum-care-page-body .postpartum-round-flow__line-note p,
  .postpartum-care-page-body .postpartum-round-flow__payment,
  .babysitter-page-body .first-guide__intro p {
    max-width: min(100%, 30em) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .index-page-body .contact-intro__box .reservation-highlight-block,
  .contact-page-body .contact-intro__box .reservation-highlight-block {
    display: inline-block !important;
  }

  .postpartum-care-page-body .dot-frame-message .sp-only,
  .babysitter-page-body .dot-frame-message .sp-only,
  .homecare-page-body .dot-frame-message .sp-only,
  .index-page-body .contact-intro__box .sp-only,
  .contact-page-body .contact-intro__box .sp-only,
  .about-page-body .about-greeting__text .sp-only,
  .about-page-body .about-family__text .sp-only,
  .about-page-body .about-cta__box .sp-only,
  .homecare-page-body .tm-hero-copy .sp-only,
  .faq-page-body .tm-hero-copy .sp-only,
  .postpartum-care-page-body .tm-hero-copy .sp-only,
  .postpartum-care-page-body .tm-book-head .sp-only,
  .babysitter-page-body .tm-book-head .sp-only,
  .homecare-page-body .tm-book-head .sp-only,
  .babysitter-page-body .first-guide__intro .sp-only,
  .babysitter-page-body .guide-flow .sp-only {
    display: block !important;
  }

  .homecare-page-body .tm-hero-copy .hero-text-line {
    display: inline !important;
  }

  .about-page-body .about-cta__box p,
  .about-page-body .about-family__text p,
  .homecare-page-body .tm-hero-copy p:last-child,
  .faq-page-body .tm-hero-copy p:last-child {
    text-align: center !important;
  }

  .babysitter-page-body .guide-notes ul,
  .babysitter-page-body .guide-notes li {
    text-align: left !important;
  }
}

@media (max-width: 767px) {
  .header__inner {
    justify-content: space-between !important;
  }

  .logo {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    display: grid !important;
    grid-template-columns: 54px max-content !important;
    align-items: center !important;
    gap: 6px !important;
    margin-left: 0 !important;
    min-width: 0 !important;
  }

  .logo img {
    width: 54px !important;
    max-height: 52px !important;
  }

  .logo__name {
    position: static !important;
    transform: none !important;
    font-size: clamp(22px, 6.4vw, 28px) !important;
    letter-spacing: 0.06em !important;
  }

  .contact-page-body .contact-hero__image img {
    object-position: 50% 50% !important;
  }

  .index-page-body .temari-feature__text p .sp-only,
  .index-page-body .temari-feature__head .sp-only {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .index-page-body .temari-feature__head .section-title span {
    display: inline !important;
  }

  .index-page-body .temari-feature__head .section-title {
    white-space: nowrap !important;
  }

  .index-page-body .watercolor-guide__point .sp-only,
  .index-page-body .magazine-menu__lead .sp-only,
  .index-page-body .about-message__box .sp-only,
  .index-page-body .info-note .sp-only {
    display: block !important;
  }

  .index-page-body .magazine-menu__grid {
    align-items: start !important;
  }

  .index-page-body .magazine-card,
  .index-page-body .magazine-card__link,
  .index-page-body .magazine-card__body,
  .index-page-body .magazine-card__body * {
    text-align: left !important;
  }

  .index-page-body .magazine-card {
    justify-self: start !important;
    width: 100% !important;
  }

  .index-page-body .magazine-card__body {
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .index-page-body #kawasaki-postpartum-care .magazine-card__image img,
  .index-page-body #home-visit-care .magazine-card__image img {
    object-position: 50% 50% !important;
  }
}

@media (max-width: 767px) {
  .index-page-body .watercolor-guide__point ul {
    width: min(100%, 300px) !important;
    margin: 20px auto 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .index-page-body .watercolor-guide__point li {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0.45em !important;
    text-align: left !important;
  }

  .index-page-body .watercolor-guide__point li::before {
    content: "•" !important;
    flex: 0 0 auto !important;
    color: var(--tm-ink) !important;
    line-height: inherit !important;
  }

  .index-page-body .contact-intro__box .reservation-highlight-block {
    display: inline !important;
    padding: 0 0.25em 2px !important;
    background: linear-gradient(
      transparent 58%,
      rgba(244, 195, 187, 0.72) 58%
    ) !important;
    box-decoration-break: clone !important;
    -webkit-box-decoration-break: clone !important;
  }

  .postpartum-care-page-body .header__inner,
  .babysitter-page-body .header__inner,
  .homecare-page-body .header__inner {
    position: relative !important;
    width: 100% !important;
    padding: 0 12px !important;
    justify-content: center !important;
  }

  .postpartum-care-page-body .logo,
  .babysitter-page-body .logo,
  .homecare-page-body .logo {
    position: static !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 58px !important;
  }

  .postpartum-care-page-body .logo img,
  .babysitter-page-body .logo img,
  .homecare-page-body .logo img {
    position: absolute !important;
    left: 12px !important;
    top: 50% !important;
    width: 58px !important;
    max-height: 54px !important;
    transform: translateY(-50%) !important;
  }

  .postpartum-care-page-body .logo__name,
  .babysitter-page-body .logo__name,
  .homecare-page-body .logo__name {
    position: static !important;
    transform: none !important;
    text-align: center !important;
    font-size: clamp(21px, 6.2vw, 27px) !important;
    letter-spacing: 0.05em !important;
  }

  .postpartum-care-page-body .menu-btn,
  .babysitter-page-body .menu-btn,
  .homecare-page-body .menu-btn {
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  .postpartum-care-page-body .tm-logo small,
  .babysitter-page-body .tm-logo small,
  .homecare-page-body .tm-logo small {
    display: none !important;
  }

  .postpartum-care-page-body .tm-timeline .sp-only,
  .postpartum-care-page-body .tm-note .sp-only,
  .babysitter-page-body .tm-timeline .sp-only,
  .homecare-page-body .tm-timeline .sp-only,
  .homecare-page-body .tm-note .sp-only {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .header__inner {
    position: relative !important;
    width: 100% !important;
    height: 74px !important;
    padding: 0 14px !important;
    justify-content: center !important;
  }

  .logo {
    position: static !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 58px !important;
    transform: none !important;
  }

  .logo img {
    position: absolute !important;
    left: 14px !important;
    top: 50% !important;
    width: 58px !important;
    max-height: 54px !important;
    transform: translateY(-50%) !important;
    object-fit: contain !important;
  }

  .logo__name {
    position: static !important;
    transform: none !important;
    width: auto !important;
    text-align: center !important;
    font-size: clamp(21px, 6.2vw, 28px) !important;
    line-height: 1.25 !important;
    letter-spacing: 0.05em !important;
    white-space: nowrap !important;
  }

  .menu-btn {
    position: absolute !important;
    right: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  .contact-page-body .contact-intro__box .reservation-highlight-block {
    display: inline !important;
    padding: 0 0.25em 2px !important;
    background: linear-gradient(
      transparent 58%,
      rgba(244, 195, 187, 0.72) 58%
    ) !important;
    box-decoration-break: clone !important;
    -webkit-box-decoration-break: clone !important;
  }

  .contact-page-body .contact-guide__lead .sp-only,
  .contact-page-body .contact-guide-card .sp-only {
    display: block !important;
  }

  .postpartum-care-page-body .tm-timeline,
  .babysitter-page-body .tm-timeline,
  .homecare-page-body .tm-timeline {
    justify-items: center !important;
  }

  .postpartum-care-page-body .tm-timeline li,
  .babysitter-page-body .tm-timeline li,
  .homecare-page-body .tm-timeline li {
    box-sizing: border-box !important;
    width: min(100%, 292px) !important;
    min-height: 0 !important;
    justify-self: center !important;
  }

  .footer-brand {
    transform: translateY(-64px) !important;
    margin-bottom: -64px !important;
  }

  .footer-brand h2 {
    margin: 0 auto !important;
    font-size: clamp(30px, 8.8vw, 38px) !important;
    line-height: 1.32 !important;
    text-align: center !important;
  }

  .privacy-page-body .privacy-card p,
  .privacy-page-body .privacy-card li,
  .privacy-page-body .privacy-contact,
  .privacy-page-body .privacy-date {
    text-align: left !important;
  }

  .privacy-page-body .privacy-card ul {
    margin-left: 0 !important;
    padding-left: 0 !important;
    list-style: none !important;
  }

  .privacy-page-body .privacy-card ul li {
    position: relative !important;
    padding-left: 1em !important;
  }

  .privacy-page-body .privacy-card ul li::before {
    content: "・" !important;
    position: absolute !important;
    left: 0 !important;
  }
}

@media (max-width: 767px) {
  .voice-page-body .voice-card p {
    text-align: left !important;
    font-weight: 400 !important;
  }

  .index-page-body .temari-feature__text h3 .sp-only {
    display: block !important;
  }

  .voice-page-body .voice-card {
    text-align: left !important;
  }

  .voice-page-body .voice-card span {
    display: block !important;
    text-align: center !important;
  }

  .privacy-page-body .privacy-card h2 {
    display: grid !important;
    justify-items: center !important;
    row-gap: 14px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .privacy-page-body .privacy-card h2::before,
  .privacy-page-body .privacy-card h2::after {
    position: static !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

:root {
  --temari-title-pink: #df8f8f;
}

.logo__name,
.intro-copy,
.footer-brand h2 {
  color: var(--temari-title-pink) !important;
}

.voice-page-body .voice-card p {
  font-weight: 400 !important;
}

.postpartum-care-page-body .tm-hero-copy h1,
.babysitter-page-body .tm-hero-copy h1,
.homecare-page-body .tm-hero-copy h1 {
  font-size: clamp(38px, 4.8vw, 66px) !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
}

@media (max-width: 767px) {
  .contact-page-body .contact-intro__box .reservation-highlight-block {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 0 !important;
    background: none !important;
  }

  .contact-page-body .contact-intro__box .line-message-row {
    display: inline !important;
    width: fit-content !important;
    padding: 0 0.25em 2px !important;
    background: linear-gradient(
      transparent 58%,
      rgba(244, 195, 187, 0.72) 58%
    ) !important;
    box-decoration-break: clone !important;
    -webkit-box-decoration-break: clone !important;
  }
}

@media (min-width: 768px) {
  .postpartum-care-page-body .tm-hero-copy h1,
  .babysitter-page-body .tm-hero-copy h1,
  .homecare-page-body .tm-hero-copy h1 {
    font-size: clamp(34px, 3.4vw, 48px) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
  }

  .contact-page-body .contact-intro__box h2 {
    font-size: clamp(30px, 3.4vw, 44px) !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
  }
}

.ribbon-title {
  position: relative;
  display: inline-block;
  margin: 20px auto;
  padding: 10px 30px;
  background: #cdeee3;
  /* 中央のメインの背景色（ミントグリーン） */
  color: #1a3332;
  /* 文字色（濃いめの色で視認性を確保） */
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  box-sizing: border-box;
}

.ribbon-title::before,
.ribbon-title::after {
  content: "";
  position: absolute;
  top: 4px;
  /* 上下に少しずらして立体感を出す */
  width: 25px;
  height: 100%;
  background: #c3e4e2;
  /* 端の少し明るい（または同等の）背景色 */
  z-index: -1;
}

.ribbon-title::before {
  left: -15px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  /* 左側を矢印型にくり抜く記述 */
  clip-path: polygon(10px 0%, 100% 0%, 100% 100%, 10px 100%, 0% 50%);
}

.ribbon-title::after {
  right: -15px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  /* 右側を矢印型にくり抜く記述 */
  clip-path: polygon(
    0% 0%,
    calc(100% - 10px) 0%,
    100% 50%,
    calc(100% - 10px) 100%,
    0% 100%
  );
}

.text-bold {
  font-weight: bold;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* ロゴ画像と文字の間隔 */
  text-decoration: none;
}

.logo__title-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.logo__sub-name {
  font-size: 11px;
  /* スマホ用の小さいサイズ */
  color: #d66f75;
  /* タイトルと同じピンク赤 */
  font-weight: bold;
  white-space: nowrap;
  /* 途中で絶対に改行させない */
  margin-bottom: 1px;
  /* メインタイトルとのすき間 */
  /* 【修正】左側の余白を少し減らし、位置を左側にスライドさせました */
  padding-left: 0.5em;
}

.logo__name {
  font-size: 20px;
  /* ★スマホでの元の文字サイズ（まだ小さければ数値を大きくしてください） */
  font-weight: bold;
  white-space: nowrap;
  display: block;
}

@media (min-width: 768px) {
  .logo__sub-name {
    font-size: 14px;
    /* PC版での訪問専門のサイズ */
    padding-left: 0.5em;
    /* PC版の位置調整 */
  }

  .logo__name {
    font-size: 28px;
    /* PCでの元の文字サイズ（まだ小さければ 32px などに大きくしてください） */
  }
}

.voice-card .reservation-highlight-block {
  font-size: inherit;
  /* 上位の文字サイズをそのまま引き継ぐ */
  color: inherit;
  /* 上位の文字色をそのまま引き継ぐ */
  font-weight: normal;
  /* 太字を解除して、通常の太さに戻す */
  background: linear-gradient(transparent 60%, #ffe0e2 60%);
  /* ピンクのマーカー線 */
  display: inline;
}

.voice-card p .reservation-highlight-block {
  font-size: inherit !important;
  /* サイズを通常文章に揃える */
  color: inherit !important;
  /* 文字色を通常文章に揃える */
  font-weight: normal !important;
  /* 通常の太さに戻す */
  display: inline !important;
  /* 行間2.3に背景サイズを完全に同期させ、文字の位置までラインを引き上げる設定 */
  background: linear-gradient(transparent 50%, #ffe0e2 50%) !important;
  background-size: 100% 2.3em !important;
  /* 【修正】数値を 0.45em から 1.1em に変更し、線を文字の下側へ移動 */
  background-position: 0 1.1em !important;
}

.header {
  background: var(--cream) !important;
  /* フッターの背景と同じ変数を指定 */
}

.hero-achievement {
  position: relative;
  z-index: 2;
  display: inline-block;
  /* 既存の並び方を邪魔しない設定 */
  text-align: center;
}

.hero-achievement:nth-child(2)::before {
  content: "";
  position: absolute;
  /* 文字の後ろの中心に配置する */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 丸い背景のサイズ（文字の周りを覆う大きさ。お好みで微調整してください） */
  width: 180px;
  height: 180px;
  /* テキストの文字の後ろ（iタグやpタグの裏）に入り込ませる */
  z-index: -1;
  /* 左側の薄ピンク（#fcece9）とは異なる、温かみのある淡いアプリコットベージュ */
  background-color: #fbeee4;
  /* 左側（42%...）とは完全に異なる比率で、手書き風の非対称な丸を表現 */
  border-radius: 54% 46% 42% 58% / 57% 43% 57% 43%;
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero-achievement:nth-child(2)::before {
    width: 220px;
    /* PC版での丸の横幅 */
    height: 220px;
    /* PC版での丸の縦幅 */
  }
}

/* ==========================================
   2026-07-08 FV画像・スマホ余白調整
   ========================================== */

/* FAQ FV: 人物が円の中央に近づくよう、円の比率を保ったまま表示位置だけ調整 */
.faq-page-body .tm-hero-image {
  width: min(38vw, 520px) !important;
  max-width: 520px !important;
}

.faq-page-body .tm-hero-image img {
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  object-position: 42% 47% !important;
  transform: scale(1.04) !important;
  transform-origin: 42% 47% !important;
}

/* Home FV desktop/tablet: 画像と円の比率を保ちつつ、初期表示に収まりやすくする */
@media (min-width: 768px) {
  .index-page-body .hero {
    min-height: 100svh !important;
  }

  .index-page-body .hero__inner {
    min-height: calc(100svh - 90px) !important;
    grid-template-columns: minmax(420px, 44%) minmax(480px, 56%) !important;
    gap: clamp(28px, 3vw, 56px) !important;
  }

  .index-page-body .hero__body {
    padding-left: clamp(18px, 3.2vw, 48px) !important;
  }

  .index-page-body .hero-photo-wrap {
    width: min(42vw, 560px) !important;
  }

  .index-page-body .hero-achievements {
    margin-top: clamp(12px, 2vh, 24px) !important;
  }
}

@media (min-width: 768px) and (max-height: 820px) {
  .index-page-body .hero__label {
    margin-bottom: 14px !important;
  }

  .index-page-body .hero__title {
    margin-bottom: 18px !important;
    line-height: 1.55 !important;
  }

  .index-page-body .hero__line {
    margin-bottom: 12px !important;
  }

  .index-page-body .hero__copy {
    line-height: 1.7 !important;
  }

  .index-page-body .hero-photo-wrap {
    width: min(39vw, 510px) !important;
  }

  .index-page-body .hero-achievements {
    transform: scale(0.9) !important;
    transform-origin: top left !important;
  }
}

/* Home FV mobile: ヘッダー直下の余白と見出し間隔を詰め、画像円が見える量を増やす */
@media (max-width: 767px) {
  .index-page-body .hero {
    padding-top: 76px !important;
    padding-bottom: 22px !important;
  }

  .index-page-body .hero__inner {
    width: min(100% - 32px, 420px) !important;
    padding: 14px 0 28px !important;
    gap: 22px !important;
  }

  .index-page-body .ribbon-title {
    margin-top: 0 !important;
    margin-bottom: 22px !important;
  }

  .index-page-body .hero__label {
    margin-bottom: 14px !important;
    line-height: 1.8 !important;
  }

  .index-page-body .hero__title {
    margin-bottom: 16px !important;
    line-height: 1.48 !important;
  }

  .index-page-body .hero__line {
    margin-bottom: 12px !important;
  }

  .index-page-body .hero__copy {
    margin-bottom: 12px !important;
    line-height: 1.7 !important;
  }

  .index-page-body .hero__visual {
    margin-top: 0 !important;
    padding-bottom: 18px !important;
  }

  .index-page-body .hero-photo-wrap {
    width: min(70vw, 286px) !important;
  }

  .index-page-body .hero-photo-frame img {
    object-position: 50% 42% !important;
    transform: scale(1.02) !important;
  }

  .index-page-body .hero-achievements {
    margin-top: 8px !important;
    gap: 10px !important;
  }

  .index-page-body .hero-achievement {
    min-height: clamp(142px, 38vw, 170px) !important;
  }

  .index-page-body .hero-achievement::before {
    width: clamp(124px, 37vw, 154px) !important;
    height: clamp(116px, 35vw, 146px) !important;
  }

  .index-page-body .hero-achievement .laurel-frame {
    padding: 10px 6px !important;
  }

  .index-page-body .hero-achievement i {
    margin-bottom: 4px !important;
  }

  .index-page-body .worries.section {
    padding-top: 36px !important;
  }
}

/* Mobile section gaps: 添付5-7の広い余白を控えめに圧縮 */
@media (max-width: 767px) {
  .index-page-body .section,
  .index-page-body .profile,
  .index-page-body .faq-reservation,
  .index-page-body .info-panels,
  .index-page-body .about-message,
  .index-page-body .temari-feature {
    padding-top: clamp(44px, 12vw, 64px) !important;
    padding-bottom: clamp(44px, 12vw, 64px) !important;
  }

  .index-page-body .section-title {
    margin-bottom: 28px !important;
  }

  .index-page-body .profile,
  .index-page-body .info-panels {
    margin-top: 0 !important;
  }

  .index-page-body .view-more-wrap,
  .index-page-body .faq-more,
  .index-page-body .about-cta__buttons,
  .index-page-body .contact-buttons {
    margin-top: 24px !important;
  }

  .index-page-body .temari-flower-footer {
    margin-top: 0 !important;
  }
}

/* Voice page footer: フッター下の白い余白を出さず、ピンク帯を画面下まで届ける */
.voice-page-body {
  background: #ffd6d9 !important;
}

.voice-page-body .site {
  min-height: 100svh !important;
  background: #ffd6d9 !important;
}

.voice-page-body .temari-flower-footer {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  background: #fdf6f3 !important;
}

.voice-page-body .footer-bottom {
  margin-bottom: 0 !important;
  padding-bottom: max(28px, env(safe-area-inset-bottom)) !important;
  background: #ffd6d9 !important;
}

@media (max-width: 767px) {
  .voice-page-body .temari-flower-footer {
    margin-bottom: 0 !important;
  }
}

/* Home FV image frame: 古い相対配置の上書きで縦長化しないよう正方形枠に固定 */
.index-page-body .hero-photo-wrap {
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
}

.index-page-body .hero-photo-frame {
  position: absolute !important;
  inset: 0 !important;
  width: auto !important;
  height: auto !important;
}

/* ==========================================
   2026-07-08 ヒーロー画像・フッター・装飾色 最終調整
   ========================================== */

:root {
  --temari-line-mint: #ccefe3;
  --temari-line-mint-dark: #b7e2d6;
  --temari-line-text: #214442;
  --temari-marker-pink: #ffe0e2;
  --temari-footer-pink: #ffd6d9;
}

/* Home FV: 人物写真を再び大きくし、縦長の楕円でも認識しやすいサイズにする */
@media (min-width: 768px) {
  .index-page-body .hero__inner {
    grid-template-columns: minmax(400px, 42%) minmax(560px, 58%) !important;
    gap: clamp(20px, 2.4vw, 44px) !important;
  }

  .index-page-body .hero__visual {
    align-self: stretch !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .index-page-body .hero-photo-wrap {
    width: min(46vw, 630px) !important;
    height: min(calc(100svh - 128px), 720px) !important;
    aspect-ratio: auto !important;
    max-width: none !important;
  }

  .index-page-body .hero-photo-frame {
    inset: 0 !important;
    border-radius: 48% 52% 46% 54% / 56% 50% 50% 44% !important;
    box-shadow:
      0 0 0 40px rgba(255, 226, 230, 0.78),
      0 0 0 70px rgba(242, 214, 214, 0.52),
      0 28px 80px rgba(242, 214, 214, 0.22) !important;
  }

  .index-page-body .hero-photo-frame img {
    height: 100% !important;
    object-fit: cover !important;
    object-position: 50% 43% !important;
    transform: scale(1.02) !important;
  }
}

@media (min-width: 768px) and (max-height: 820px) {
  .index-page-body .hero-photo-wrap {
    width: min(44vw, 590px) !important;
    height: min(calc(100svh - 112px), 680px) !important;
  }
}

/* Home FV ripple: ピンクの波紋幅を広げ、動きが分かりやすいようにする */
.index-page-body .hero-ripple {
  width: 122% !important;
  height: 122% !important;
  border-width: 8px !important;
  border-color: rgba(242, 214, 214, 0.72) !important;
  background: radial-gradient(
    closest-side,
    transparent 62%,
    rgba(255, 226, 230, 0.56) 72%,
    rgba(242, 214, 214, 0.34) 86%,
    transparent 100%
  ) !important;
  box-shadow:
    0 0 0 10px rgba(255, 226, 230, 0.5),
    0 0 42px rgba(242, 214, 214, 0.28) !important;
  animation: heroRippleWide 12s ease-out infinite !important;
}

.index-page-body .hero-ripple--2 {
  animation-delay: 2.4s !important;
}

.index-page-body .hero-ripple--3 {
  animation-delay: 4.8s !important;
}

.index-page-body .hero-ripple--4 {
  animation-delay: 7.2s !important;
}

.index-page-body .hero-ripple--5 {
  animation-delay: 9.6s !important;
}

@keyframes heroRippleWide {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
  }

  18% {
    opacity: 0.62;
  }

  58% {
    opacity: 0.34;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.78);
  }
}

@media (max-width: 767px) {
  .index-page-body .hero__inner {
    gap: 18px !important;
  }

  .index-page-body .hero__visual {
    margin-top: -4px !important;
    padding-bottom: 12px !important;
  }

  .index-page-body .hero-photo-wrap {
    width: min(78vw, 318px) !important;
    height: min(48vh, 398px) !important;
    aspect-ratio: auto !important;
  }

  .index-page-body .hero-photo-frame {
    border-radius: 48% 52% 46% 54% / 58% 50% 50% 42% !important;
    box-shadow:
      0 0 0 28px rgba(255, 226, 230, 0.78),
      0 0 0 46px rgba(242, 214, 214, 0.5),
      0 18px 52px rgba(242, 214, 214, 0.2) !important;
  }

  .index-page-body .hero-photo-frame img {
    height: 100% !important;
    object-fit: cover !important;
    object-position: 50% 42% !important;
    transform: scale(1.03) !important;
  }

  .index-page-body .hero-ripple {
    width: 118% !important;
    height: 118% !important;
    border-width: 6px !important;
    animation-duration: 10s !important;
  }
}

/* Footer: ページ末尾の白い余白をピンク帯に統一する */
html,
body {
  background: var(--temari-footer-pink) !important;
}

.site {
  background: var(--cream) !important;
}

.temari-flower-footer {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.footer-bottom {
  margin-bottom: 0 !important;
  padding-bottom: max(30px, env(safe-area-inset-bottom)) !important;
  background: linear-gradient(
    180deg,
    #ffe1e3,
    var(--temari-footer-pink)
  ) !important;
}

.voice-page-body .voice.section {
  padding-bottom: 0 !important;
}

/* Highlight marker: お客様の声の薄いピンクマーカー色に統一する */
.reservation-highlight-block,
.voice-card .reservation-highlight-block,
.voice-card p .reservation-highlight-block,
.dot-frame-message .reservation-highlight-block,
.first-guide-highlight,
.line-message-row {
  color: inherit !important;
  background: linear-gradient(
    transparent 54%,
    var(--temari-marker-pink) 54%
  ) !important;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.voice-card p .reservation-highlight-block {
  background-size: 100% 2.3em !important;
  background-position: 0 1.1em !important;
}

/* Official LINE buttons: フッターのLINEアイコン以外をリボンと同系のミント色に統一 */
.info-btn--line,
.postnatal-flow__line,
.postpartum-round-flow__button--line,
a[href*="lin.ee"].info-btn,
a[href*="lin.ee"].postnatal-flow__line,
a[href*="lin.ee"].postpartum-round-flow__button,
a[href*="lin.ee"]:not(.footer-contact-link):not(.footer-icon):not(
    .footer-icon--line
  ) {
  background: var(--temari-line-mint) !important;
  border-color: var(--temari-line-mint-dark) !important;
  color: var(--temari-line-text) !important;
  box-shadow: 0 12px 24px rgba(117, 168, 154, 0.2) !important;
}

.info-btn--line:hover,
.postnatal-flow__line:hover,
.postpartum-round-flow__button--line:hover,
a[href*="lin.ee"].info-btn:hover,
a[href*="lin.ee"].postnatal-flow__line:hover,
a[href*="lin.ee"].postpartum-round-flow__button:hover,
a[href*="lin.ee"]:not(.footer-contact-link):not(.footer-icon):not(
    .footer-icon--line
  ):hover {
  background: #bfe8dc !important;
  border-color: #abd9cc !important;
  color: var(--temari-line-text) !important;
}

.footer-contact-link,
.footer-contact-link span,
.footer-icon--line {
  background: inherit;
}

.footer-icon--line {
  background: #06c755 !important;
  border-color: #06c755 !important;
  color: #fff !important;
}

/* About message: eucalyptusを少し大きく・濃く・緑寄りに見せる */
.about-message__box {
  isolation: isolate;
}

.about-leaf {
  z-index: 1;
  width: clamp(210px, 18vw, 285px) !important;
  opacity: 0.48 !important;
  filter: saturate(1.55) contrast(1.08) hue-rotate(-10deg) !important;
}

.about-leaf--left {
  left: -34px !important;
  bottom: -34px !important;
}

.about-leaf--right {
  right: -34px !important;
  top: -30px !important;
}

@media (max-width: 767px) {
  .about-leaf {
    width: clamp(150px, 42vw, 210px) !important;
    opacity: 0.42 !important;
  }

  .about-leaf--left {
    left: -38px !important;
    bottom: -28px !important;
  }

  .about-leaf--right {
    right: -42px !important;
    top: -26px !important;
  }
}

/* ==========================================
   2026-07-08 追加修正（マーカー・予約ボタン・FV装飾）
   ========================================== */

/* Contact message: 添付1の白いマーカー帯を削除 */
.index-page-body .contact-intro__box .reservation-highlight-block,
.index-page-body .contact-intro__box .line-message-row,
.contact-page-body .contact-intro__box .reservation-highlight-block,
.contact-page-body .contact-intro__box .line-message-row,
.postpartum-care-page-body
  .postpartum-round-flow__line-note
  .reservation-highlight-block,
.postpartum-care-page-body .postpartum-round-flow__line-note .line-message-row {
  padding: 0 !important;
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* Floating reserve button: 前回の広いLINE指定で付いたミント背景を解除 */
.floating-reserve-button,
a.floating-reserve-button[href*="lin.ee"],
a[href*="lin.ee"].floating-reserve-button {
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.floating-reserve-button img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* Service list: 添付2の緑ラインをLINEボタンと同系のミントへ統一 */
.tm-list-card.cannot {
  border-top-color: var(--temari-line-mint) !important;
}

.tm-list-card.cannot li::before {
  color: var(--temari-line-text) !important;
}

/* Home FV: サイズは維持し、ピンクあしらいだけ内側濃いめから外側明るめに変更 */
.index-page-body .hero-photo-frame {
  box-shadow:
    0 0 0 40px rgba(248, 174, 184, 0.42),
    0 0 0 70px rgba(255, 231, 235, 0.68),
    0 28px 80px rgba(255, 214, 221, 0.2) !important;
}

.index-page-body .hero-ripple {
  border-color: rgba(255, 218, 224, 0.78) !important;
  background: radial-gradient(
    closest-side,
    transparent 58%,
    rgba(245, 158, 170, 0.34) 68%,
    rgba(255, 213, 221, 0.3) 82%,
    rgba(255, 242, 244, 0.46) 94%,
    transparent 100%
  ) !important;
  box-shadow:
    0 0 0 10px rgba(255, 236, 239, 0.7),
    0 0 46px rgba(255, 220, 226, 0.3) !important;
}

/* Home FV: 左上のピンク装飾を正円から自然ないびつな円へ */
.index-page-body .hero::before {
  width: 188px !important;
  height: 172px !important;
  border-radius: 46% 54% 58% 42% / 48% 45% 55% 52% !important;
  background: rgba(255, 219, 224, 0.32) !important;
  transform: rotate(-10deg) !important;
}

@media (max-width: 767px) {
  .index-page-body .hero::before {
    width: 136px !important;
    height: 126px !important;
    border-radius: 44% 56% 58% 42% / 48% 42% 58% 52% !important;
  }
}

/* Postpartum flow: 添付4の説明文をPCでも左寄せ */
.postpartum-care-page-body .postpartum-round-flow__copy {
  text-align: left !important;
}

/* Postpartum flow: 添付5の支払い注記を太字に */
.postpartum-care-page-body .postpartum-round-flow__payment,
.postpartum-care-page-body .postpartum-round-flow__payment span {
  font-weight: 800 !important;
}

/* Hero image logo: 円と背景にまたがる位置へロゴを配置 */
.tm-hero-image,
.about-hero__image,
.contact-hero__image {
  overflow: visible !important;
}

.tm-hero-image::after,
.about-hero__image::after,
.contact-hero__image::after {
  content: "";
  position: absolute;
  left: -6%;
  bottom: 5%;
  z-index: 5;
  width: clamp(96px, 10vw, 158px);
  aspect-ratio: 1.32 / 1;
  background: url("asset/logo.png") center / contain no-repeat;
  pointer-events: none;
}

@media (max-width: 767px) {
  .tm-hero-image::after,
  .about-hero__image::after,
  .contact-hero__image::after {
    left: -7%;
    bottom: 4%;
    width: clamp(78px, 24vw, 112px);
  }
}

/* ==========================================
   2026-07-08 追加修正2（ロゴ範囲・フッター・スマホFV）
   ========================================== */

/* Hero logo: 添付1・2のロゴは削除し、aboutのごあいさつ画像だけに配置 */
.tm-hero-image::after,
.contact-hero__image::after,
.postpartum-care-page-body .tm-hero-image::after,
.babysitter-page-body .tm-hero-image::after,
.homecare-page-body .tm-hero-image::after,
.faq-page-body .tm-hero-image::after,
.voice-page-body .contact-hero__image::after,
.contact-page-body .contact-hero__image::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

.about-page-body .about-hero__image {
  overflow: visible !important;
}

.about-page-body .about-hero__image::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: -7% !important;
  bottom: 4% !important;
  z-index: 5 !important;
  width: clamp(92px, 10vw, 148px) !important;
  aspect-ratio: 1.32 / 1 !important;
  background: url("asset/logo.png") center / contain no-repeat !important;
  pointer-events: none !important;
}

@media (max-width: 767px) {
  .about-page-body .about-hero__image::after {
    left: -7% !important;
    bottom: 4% !important;
    width: clamp(76px, 22vw, 108px) !important;
  }
}

/* Voice footer: お客様の声ページだけ分岐していた背景を他ページと同じデザインへ戻す */
.voice-page-body .site {
  background: var(--cream) !important;
}

.voice-page-body .temari-flower-footer {
  margin: 72px auto 0 !important;
  width: min(100% - 48px, 1320px) !important;
  border-radius: 16px !important;
  background:
    linear-gradient(rgba(255, 253, 250, 0.9), rgba(255, 253, 250, 0.92)),
    #fffdf8 !important;
  box-shadow: 0 16px 42px rgba(124, 79, 66, 0.08) !important;
}

.voice-page-body .footer-bottom {
  background: linear-gradient(180deg, #ffe4e6 0%, #ffdddd 100%) !important;
}

@media (max-width: 767px) {
  .voice-page-body .temari-flower-footer {
    width: min(100% - 24px, 420px) !important;
    margin-top: 44px !important;
  }
}

/* Service contact boxes: 3つのメニューで使う予約ボックス内のピンクラインを削除 */
.postpartum-care-page-body .dot-frame-message .reservation-highlight-block,
.postpartum-care-page-body .dot-frame-message .line-message-row,
.babysitter-page-body .dot-frame-message .reservation-highlight-block,
.babysitter-page-body .dot-frame-message .line-message-row,
.homecare-page-body .dot-frame-message .reservation-highlight-block,
.homecare-page-body .dot-frame-message .line-message-row {
  padding: 0 !important;
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* Home FV: 画像サイズは保ち、スマホでは文字に重ならないよう開始位置だけ下げる */
@media (max-width: 767px) {
  .index-page-body .hero__visual {
    margin-top: 34px !important;
  }
}

/* Home FV: 一番内側のピンクだけ少し薄くする */
.index-page-body .hero-photo-frame {
  box-shadow:
    0 0 0 40px rgba(255, 205, 214, 0.28),
    0 0 0 70px rgba(255, 231, 235, 0.68),
    0 28px 80px rgba(255, 214, 221, 0.2) !important;
}

/* Floating reserve button: 花形ボタン周囲のミント背景を完全に透過へ */
.floating-reserve-button,
a.floating-reserve-button[href*="lin.ee"],
a[href*="lin.ee"].floating-reserve-button {
  padding: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.floating-reserve-button img {
  background: transparent !important;
  box-shadow: none !important;
}

/* FAQ mobile hero: お客様の声ページに近いサイズにし、人物を中央寄せ */
@media (max-width: 767px) {
  .faq-page-body .tm-hero-image {
    width: min(72vw, 360px) !important;
    max-width: 360px !important;
    margin: 28px auto 0 !important;
  }

  .faq-page-body .tm-hero-image img {
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    object-position: 50% 50% !important;
    transform: scale(1.08) !important;
    transform-origin: 50% 50% !important;
  }
}

/* ==========================================
   2026-07-12 フッター表記・診療時間調整（最終優先）
   ========================================== */

.voice-page-body .footer-hours-title,
.voice-page-body .footer-notice,
.voice-page-body .footer-notice li,
.voice-page-body .footer-contact-link,
.voice-page-body .footer-contact-link span:not(.footer-icon),
.voice-page-body .footer-bottom,
.voice-page-body .footer-bottom p,
.voice-page-body .footer-bottom a {
  font-weight: 400 !important;
}

.voice-page-body .flower-hours-table th,
.voice-page-body .flower-hours-table td {
  font-weight: 400 !important;
}

.voice-page-body .flower-hours-table thead th {
  font-weight: 600 !important;
}

@media (min-width: 768px) {
  .flower-hours-table th:first-child {
    min-width: 130px !important;
    white-space: nowrap !important;
  }
}

/* ==========================================
   2026-07-08 追加修正3（about画像・花ボタン・FV波紋）
   ========================================== */

/* Profile FV: 赤ちゃん画像の左下ロゴを削除 */
.about-page-body .about-hero__image::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

/* Greeting: 人物画像の左下、写真円と背景の境目にロゴを配置 */
.about-page-body .about-photo-frame {
  overflow: visible !important;
}

.about-page-body .about-photo-frame::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: -6% !important;
  bottom: 3% !important;
  z-index: 4 !important;
  width: clamp(92px, 10vw, 148px) !important;
  aspect-ratio: 1.32 / 1 !important;
  background: url("asset/logo.png") center / contain no-repeat !important;
  pointer-events: none !important;
}

@media (max-width: 767px) {
  .about-page-body .about-photo-frame::after {
    left: -7% !important;
    bottom: 3% !important;
    width: clamp(76px, 23vw, 110px) !important;
  }
}

/* Home FV mobile: 波紋が上のコピー・下の2つの丸にかからない幅へ調整 */
@media (max-width: 767px) {
  .index-page-body .hero__visual {
    margin-top: 44px !important;
    padding-bottom: 28px !important;
  }

  .index-page-body .hero-photo-wrap {
    width: min(74vw, 306px) !important;
    height: min(45vh, 382px) !important;
  }

  .index-page-body .hero-photo-frame {
    box-shadow:
      0 0 0 20px rgba(255, 205, 214, 0.28),
      0 0 0 34px rgba(255, 231, 235, 0.62),
      0 18px 48px rgba(255, 214, 221, 0.16) !important;
  }

  .index-page-body .hero-ripple {
    width: 104% !important;
    height: 104% !important;
    border-width: 4px !important;
    box-shadow:
      0 0 0 4px rgba(255, 236, 239, 0.45),
      0 0 28px rgba(255, 220, 226, 0.2) !important;
  }

  .index-page-body .hero-achievements {
    margin-top: 22px !important;
  }
}

/* ==========================================
   2026-07-08 追加修正4（FAQ中央・フッター全幅）
   ========================================== */

/* FAQ hero: 人物が円の中でずれないよう中央配置 */
.faq-page-body .tm-hero-image {
  width: min(42vw, 520px) !important;
  max-width: 520px !important;
}

.faq-page-body .tm-hero-image img {
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: 50% 50% !important;
  transform: scale(1.03) !important;
  transform-origin: 50% 50% !important;
}

@media (max-width: 767px) {
  .faq-page-body .tm-hero-image {
    width: min(76vw, 360px) !important;
    max-width: 360px !important;
  }

  .faq-page-body .tm-hero-image img {
    object-position: 50% 50% !important;
    transform: scale(1.06) !important;
  }
}

/* About family image: FAQと同じ淡いピンクの円あしらいに統一 */
.about-page-body .about-family__image::before {
  content: none !important;
  display: none !important;
}

.about-page-body .about-family__image img {
  border-radius: 50% !important;
  box-shadow:
    0 0 0 14px #ffe8e8,
    0 0 0 27px rgba(255, 232, 232, 0.5),
    0 0 56px 18px rgba(255, 224, 228, 0.36) !important;
}

@media (max-width: 767px) {
  .about-page-body .about-family__image img {
    box-shadow:
      0 0 0 10px #ffe8e8,
      0 0 0 20px rgba(255, 232, 232, 0.48),
      0 0 40px 12px rgba(255, 224, 228, 0.32) !important;
  }
}

/* Home FV: 次の「こんなお悩み」への切り替わりをなめらかなグラデーションに */
@media (min-width: 768px) {
  .index-page-body .hero {
    margin-bottom: -1px !important;
    padding-bottom: clamp(44px, 6vw, 96px) !important;
  }

  .index-page-body .hero::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    pointer-events: none !important;
    background:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.1) 38%,
        rgba(255, 255, 255, 0) 100%
      ),
      linear-gradient(
        180deg,
        rgba(255, 247, 244, 0) 0%,
        rgba(255, 247, 244, 0) 72%,
        rgba(253, 251, 247, 0.74) 90%,
        var(--cream) 100%
      ) !important;
  }

  .index-page-body .worries,
  .index-page-body .worries.section {
    margin-top: -1px !important;
    background: linear-gradient(
      180deg,
      var(--cream) 0%,
      #fffdf9 42%,
      #fffdf9 100%
    ) !important;
  }
}

/* Footer: 画面両端までぴったり配置する全幅デザインへ */
.temari-flower-footer,
.index-page-body .temari-flower-footer,
.voice-page-body .temari-flower-footer,
.contact-page-body .temari-flower-footer,
.about-page-body .temari-flower-footer,
.faq-page-body .temari-flower-footer,
.postpartum-care-page-body .temari-flower-footer,
.babysitter-page-body .temari-flower-footer,
.homecare-page-body .temari-flower-footer {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: 0 !important;
}

@media (max-width: 767px) {
  .temari-flower-footer,
  .index-page-body .temari-flower-footer,
  .voice-page-body .temari-flower-footer,
  .contact-page-body .temari-flower-footer,
  .about-page-body .temari-flower-footer,
  .faq-page-body .temari-flower-footer,
  .postpartum-care-page-body .temari-flower-footer,
  .babysitter-page-body .temari-flower-footer,
  .homecare-page-body .temari-flower-footer {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* ==========================================
   2026-07-08 追加修正7（最終優先固定）
   ========================================== */

body
  a.floating-reserve-button[href*="lin.ee"]:not(.footer-contact-link):not(
    .footer-icon
  ):not(.footer-icon--line),
body
  a.floating-reserve-button[href*="lin.ee"]:not(.footer-contact-link):not(
    .footer-icon
  ):not(.footer-icon--line):link,
body
  a.floating-reserve-button[href*="lin.ee"]:not(.footer-contact-link):not(
    .footer-icon
  ):not(.footer-icon--line):visited,
body
  a.floating-reserve-button[href*="lin.ee"]:not(.footer-contact-link):not(
    .footer-icon
  ):not(.footer-icon--line):hover,
body
  a.floating-reserve-button[href*="lin.ee"]:not(.footer-contact-link):not(
    .footer-icon
  ):not(.footer-icon--line):focus,
body
  a.floating-reserve-button[href*="lin.ee"]:not(.footer-contact-link):not(
    .footer-icon
  ):not(.footer-icon--line):active {
  padding: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
}

body a.floating-reserve-button[href*="lin.ee"]::before,
body a.floating-reserve-button[href*="lin.ee"]::after,
body a.floating-reserve-button[href*="lin.ee"] *::before,
body a.floating-reserve-button[href*="lin.ee"] *::after {
  content: none !important;
  display: none !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

body a.floating-reserve-button[href*="lin.ee"] *,
body a.floating-reserve-button[href*="lin.ee"] img {
  display: block !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

body a.floating-reserve-button[href*="lin.ee"] img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.faq-page-body .tm-hero-image img {
  object-position: 36% 50% !important;
  transform: scale(1.06) !important;
  transform-origin: 36% 50% !important;
}

@media (max-width: 767px) {
  .faq-page-body .tm-hero-image img {
    object-position: 36% 50% !important;
    transform: scale(1.08) !important;
    transform-origin: 36% 50% !important;
  }
}

.about-page-body .about-photo-frame::after {
  left: 11% !important;
  bottom: 9% !important;
  width: clamp(132px, 13vw, 190px) !important;
  z-index: 8 !important;
}

@media (max-width: 767px) {
  .about-page-body .about-photo-frame::after {
    left: 13% !important;
    bottom: 10% !important;
    width: clamp(116px, 34vw, 150px) !important;
  }
}
