@charset "UTF-8";
:root {
  --navy: #1e2753;
  --accent: #ff5638;
  --beige: #F2D1B7;
  --green: #06c755;
  --gray: #525252;
  --lgray: #7e7e7e;
  --f-en: 'Optima', 'Palatino Linotype', serif;
  --f-jp: 'Noto Sans JP', sans-serif;
  --f-jps: 'Noto Serif JP', serif;
  --max: 1800px;
  --ease-out-premio: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout-premio: cubic-bezier(0.65, 0, 0.35, 1);
  --cookie-offset: 0px;
  --cta-mobile-height: 72px;
}

.service-detail-page {
  background: #fdfaf4;
}
.service-detail-page main a {
  color: var(--accent);
}

.section-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.section-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--beige);
  margin-top: 10px;
  flex-shrink: 0;
}

.section-title-jp {
  font-family: var(--f-jps);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .section-title-jp {
    font-size: 10px;
  }
}

.section-title-en {
  font-family: var(--f-en);
  font-size: clamp(36px, 2.94vw, 53px);
  color: var(--navy);
  line-height: 1;
  letter-spacing: 1.06px;
}
@media (max-width: 768px) {
  .section-title-en {
    font-size: 38px;
  }
}

.service-hero {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  max-width: var(--max);
  min-height: 80dvh;
  margin: 0 auto;
  padding: clamp(64px, 7vw, 110px) 117px clamp(58px, 7vw, 96px);
}
@media (max-width: 1400px) {
  .service-hero {
    padding: 64px 56px 80px;
  }
}
@media (min-width: 769px) and (max-width: 1100px) {
  .service-hero {
    display: block;
    min-height: 0;
    padding: 64px 40px 72px;
  }
}
@media (max-width: 768px) {
  .service-hero {
    display: block;
    min-height: 0;
    padding: 28px 24px 40px;
  }
}

.service-hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(235px, 0.3fr) minmax(0, 0.7fr);
  align-items: center;
  gap: clamp(36px, 4vw, 76px);
}
@media (max-width: 1100px) {
  .service-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 768px) {
  .service-hero-inner {
    gap: 24px;
  }
}

.service-hero-copy h1 {
  font-family: var(--f-en);
  color: var(--navy);
  font-weight: 400;
  font-size: clamp(54px, 4.8vw, 84px);
  line-height: 0.96;
  letter-spacing: 0.4px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .service-hero-copy h1 {
    font-size: clamp(54px, 16vw, 74px);
    margin-bottom: 18px;
  }
}

.service-hero-kicker {
  font-family: var(--f-en);
  font-size: 15px;
  color: var(--beige);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.service-hero-jp {
  font-family: var(--f-jps);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 1.8px;
}

.service-hero-media {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1.48/1;
  background: #f5f7f8;
}
.service-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 48%;
}
@media (max-width: 1100px) {
  .service-hero-media {
    border-radius: 16px;
  }
}
@media (max-width: 768px) {
  .service-hero-media {
    aspect-ratio: 4/3;
    border-radius: 12px;
  }
}

.service-lead {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(82px, 8.5vw, 138px) 117px 0;
}
@media (max-width: 1400px) {
  .service-lead {
    padding: 88px 56px 0;
  }
}
@media (min-width: 769px) and (max-width: 1100px) {
  .service-lead {
    padding: 72px 40px 0;
  }
}
@media (max-width: 768px) {
  .service-lead {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    padding: 54px 20px 0;
  }
}

.service-lead-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.service-lead-inner h2 {
  font-family: var(--f-jps);
  font-weight: 600;
  color: var(--navy);
  font-size: clamp(28px, 2.2vw, 38px);
  line-height: 1.88;
  letter-spacing: 2.5px;
  margin-bottom: clamp(28px, 3.2vw, 48px);
}
@media (max-width: 768px) {
  .service-lead-inner h2 {
    font-size: clamp(20px, 5.4vw, 26px);
    line-height: 1.72;
    letter-spacing: 0.04em;
  }
}

.service-intro p {
  font-family: var(--f-jp);
  color: var(--gray);
  font-size: clamp(13px, 0.82vw, 15px);
  line-height: 2.25;
  letter-spacing: 0.35px;
}
.service-intro p + p {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .service-intro p {
    font-size: 13px;
    line-height: 2;
  }
}

.intro-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
  max-width: 1560px;
  margin: clamp(58px, 6vw, 96px) auto 0;
}
.intro-gallery img {
  width: 100%;
  height: clamp(220px, 20vw, 330px);
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
@media (max-width: 768px) {
  .intro-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 34px;
  }
  .intro-gallery img {
    height: 58vw;
    border-radius: 12px;
  }
  .intro-gallery img:nth-child(2) {
    margin-top: 0;
  }
}

.daycare-section,
.clinic-care-section,
.pricing-section,
.notes-section {
  max-width: var(--max);
  margin: clamp(100px, 11vw, 180px) auto 0;
  padding: 0 117px;
}
@media (max-width: 1400px) {
  .daycare-section,
  .clinic-care-section,
  .pricing-section,
  .notes-section {
    padding: 0 56px;
  }
}
@media (min-width: 769px) and (max-width: 1100px) {
  .daycare-section,
  .clinic-care-section,
  .pricing-section,
  .notes-section {
    padding: 0 40px;
    margin-top: 100px;
  }
}
@media (max-width: 768px) {
  .daycare-section,
  .clinic-care-section,
  .pricing-section,
  .notes-section {
    padding: 0 24px;
    margin-top: 72px;
  }
}

.daycare-header,
.clinic-care-section .daycare-header,
.pricing-header,
.notes-header {
  margin-bottom: clamp(42px, 5vw, 78px);
}

.daycare-header .section-title-en {
  margin-bottom: 10px;
}

.daycare-section > .daycare-header .section-label,
.clinic-care-section > .daycare-header .section-label {
  gap: 0;
}
.daycare-section > .daycare-header .section-dot,
.clinic-care-section > .daycare-header .section-dot {
  display: none;
}
.daycare-section > .daycare-header .section-title-en,
.clinic-care-section > .daycare-header .section-title-en {
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 12px;
}
.daycare-section > .daycare-header .section-title-jp,
.clinic-care-section > .daycare-header .section-title-jp {
  margin: 0;
  font-family: var(--f-jp);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.16em;
  font-weight: 400;
}
@media (max-width: 768px) {
  .daycare-section > .daycare-header .section-title-jp,
  .clinic-care-section > .daycare-header .section-title-jp {
    font-size: 11px;
  }
}

.pricing-header .section-label,
.notes-header .section-label {
  gap: 0;
}
.pricing-header .section-dot,
.notes-header .section-dot {
  display: none;
}
.pricing-header .section-title-en,
.notes-header .section-title-en {
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 12px;
}
.pricing-header .section-title-jp,
.notes-header .section-title-jp {
  font-family: var(--f-jp);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.16em;
  font-weight: 400;
}
@media (max-width: 768px) {
  .pricing-header .section-title-jp,
  .notes-header .section-title-jp {
    font-size: 11px;
  }
}

.daycare-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(50px, 8vw, 140px);
  align-items: start;
}
@media (max-width: 1100px) {
  .daycare-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

.daycare-sample-note {
  max-width: 850px;
  margin: -24px 0 34px auto;
  font-family: var(--f-jp);
  color: rgba(83, 93, 112, 0.76);
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media (max-width: 1100px) {
  .daycare-sample-note {
    max-width: none;
    margin: -12px 0 28px;
  }
}
@media (max-width: 768px) {
  .daycare-sample-note {
    margin: -8px 0 24px;
    font-size: 12px;
    line-height: 1.7;
  }
}

.daycare-vertical {
  justify-self: end;
  writing-mode: vertical-rl;
  font-family: var(--f-jps);
  font-weight: 600;
  color: var(--gray);
  font-size: clamp(26px, 2vw, 36px);
  line-height: 1.6;
  letter-spacing: 0.16em;
}
@media (max-width: 1100px) {
  .daycare-vertical {
    display: none;
  }
}

.daycare-vertical-number {
  text-combine-upright: all;
  -webkit-text-combine: horizontal;
}

.daycare-timeline {
  --timeline-progress: 0;
  max-width: 1120px;
  position: relative;
}
.daycare-timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 188px;
  width: 1px;
  background: rgba(30, 39, 83, 0.14);
}
.daycare-timeline::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 188px;
  width: 1px;
  height: calc(100% - 44px);
  background: rgba(242, 209, 183, 0.92);
  transform: scaleY(var(--timeline-progress));
  transform-origin: top;
  transition: transform 0.12s linear;
  z-index: 1;
}
@media (max-width: 768px) {
  .daycare-timeline::before, .daycare-timeline::after {
    left: 0;
  }
}

.timeline-item {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 68px;
  padding: 0 0 clamp(52px, 6vw, 96px);
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 183px;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--beige);
  box-shadow: 0 0 0 8px #fdfaf4;
  z-index: 2;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 26px;
    padding-bottom: 36px;
  }
  .timeline-item::before {
    left: -4px;
    top: 8px;
  }
}

.timeline-time {
  font-family: var(--f-en);
  color: var(--beige);
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1;
  text-align: right;
}
@media (max-width: 768px) {
  .timeline-time {
    text-align: left;
  }
}

.timeline-body {
  max-width: 820px;
}
.timeline-body .timeline-en {
  font-family: var(--f-en);
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
}
.timeline-body h3 {
  font-family: var(--f-jps);
  font-size: clamp(20px, 1.55vw, 28px);
  color: var(--navy);
  letter-spacing: 0.9px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.timeline-body p:not(.timeline-en) {
  font-family: var(--f-jp);
  color: var(--gray);
  font-size: clamp(13px, 0.82vw, 15px);
  line-height: 2.05;
}

.wellness-flow-section .daycare-header {
  margin-bottom: clamp(52px, 5.6vw, 86px);
}

.wellness-flow-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(36px, 4vw, 64px);
  align-items: stretch;
}

.wellness-flow-cards--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wellness-flow-cards--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(24px, 2.6vw, 44px);
}

.wellness-flow-card {
  position: relative;
  min-height: clamp(245px, 17vw, 290px);
  padding: 0 clamp(8px, 1.2vw, 18px) clamp(18px, 2vw, 30px);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.wellness-flow-card:not(:first-child) {
  padding-left: clamp(8px, 1.2vw, 18px);
}
.wellness-flow-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  right: calc(clamp(-64px, -4vw, -36px) - 8px);
  width: clamp(46px, 4.5vw, 76px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 83, 64, 0.38), rgba(30, 39, 83, 0.18));
}
.wellness-flow-card:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 20px;
  right: calc(clamp(-64px, -4vw, -36px) - 12px);
  width: 8px;
  height: 8px;
  border-top: 1px solid rgba(255, 83, 64, 0.56);
  border-right: 1px solid rgba(255, 83, 64, 0.56);
  transform: rotate(45deg);
}
.wellness-flow-card h3 {
  font-family: var(--f-jps);
  color: var(--navy);
  font-size: clamp(18px, 1.2vw, 22px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
}
.wellness-flow-card p {
  font-family: var(--f-jp);
  color: var(--gray);
  font-size: clamp(12px, 0.72vw, 13px);
  line-height: 1.9;
  letter-spacing: 0.02em;
  margin-top: 18px;
}
.wellness-flow-card .wellness-flow-note {
  color: rgba(83, 93, 112, 0.72);
  font-size: 11px;
  line-height: 1.4;
  margin-top: 0;
}
.wellness-flow-card .wellness-flow-alert {
  color: var(--accent);
  font-weight: 700;
  margin-top: 8px;
}

.wellness-flow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-family: var(--f-en);
  color: var(--accent);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 83, 64, 0.25);
  border-radius: 50%;
  box-shadow: 0 14px 36px rgba(30, 39, 83, 0.06);
  margin-bottom: clamp(26px, 2.2vw, 36px);
}

.clinic-care-section .daycare-header {
  margin-bottom: clamp(48px, 5.2vw, 82px);
}

.clinic-care-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(30, 39, 83, 0.14);
  border-bottom: 1px solid rgba(30, 39, 83, 0.1);
}

.clinic-care-card {
  position: relative;
  min-height: clamp(260px, 18vw, 320px);
  padding: clamp(34px, 3.4vw, 54px) clamp(18px, 2.2vw, 34px);
  border-right: 1px solid rgba(30, 39, 83, 0.08);
  background: rgba(255, 255, 255, 0.58);
}
.clinic-care-card:last-child {
  border-right: 0;
}
.clinic-care-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.8s var(--ease);
}
.clinic-care-card.is-visible::before {
  width: 48px;
}
.clinic-care-card h3 {
  font-family: var(--f-jps);
  color: var(--navy);
  font-size: clamp(20px, 1.35vw, 26px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin: 14px 0 20px;
}
.clinic-care-card p:not(.clinic-care-label) {
  font-family: var(--f-jp);
  color: var(--gray);
  font-size: clamp(13px, 0.78vw, 15px);
  line-height: 2;
  letter-spacing: 0.02em;
}

.clinic-care-step {
  display: block;
  font-family: var(--f-en);
  color: rgba(242, 209, 183, 0.95);
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.clinic-care-label {
  font-family: var(--f-en);
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-top: 16px;
}

.clinic-flow-section .wellness-flow-cards {
  margin-top: clamp(8px, 1vw, 16px);
}

@media (max-width: 1100px) {
  .clinic-care-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .clinic-care-card {
    min-height: 0;
  }
  .clinic-care-card:nth-child(2n) {
    border-right: 0;
  }
  .clinic-care-card:nth-child(n+3) {
    border-top: 1px solid rgba(30, 39, 83, 0.08);
  }
  .wellness-flow-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wellness-flow-cards--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wellness-flow-cards--five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wellness-flow-card,
  .wellness-flow-card:not(:first-child) {
    min-height: 0;
    padding: 0 6px 26px;
  }
  .wellness-flow-card:not(:last-child)::before, .wellness-flow-card:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .clinic-care-section .daycare-header {
    margin-bottom: 32px;
  }
  .clinic-care-grid {
    grid-template-columns: 1fr;
    border-top-color: rgba(30, 39, 83, 0.1);
  }
  .clinic-care-card {
    min-height: 0;
    padding: 26px 0 28px;
    border-right: 0;
    background: transparent;
  }
  .clinic-care-card:nth-child(n+2) {
    border-top: 1px solid rgba(30, 39, 83, 0.08);
  }
  .clinic-care-card h3 {
    font-size: 21px;
    margin-bottom: 14px;
  }
  .clinic-care-step {
    font-size: 36px;
  }
  .wellness-flow-section .daycare-header {
    margin-bottom: 32px;
  }
  .wellness-flow-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .wellness-flow-cards--three {
    grid-template-columns: 1fr;
  }
  .wellness-flow-cards--five {
    grid-template-columns: 1fr;
  }
  .wellness-flow-card,
  .wellness-flow-card:not(:first-child) {
    min-height: 0;
    padding: 24px 24px 26px;
    background: transparent;
    border: 1px solid rgba(30, 39, 83, 0.08);
    border-radius: 8px;
  }
  .wellness-flow-card h3 {
    font-size: 20px;
  }
  .wellness-flow-card p {
    margin-top: 14px;
  }
  .wellness-flow-step {
    width: 42px;
    height: 42px;
    font-size: 13px;
    margin-bottom: 18px;
  }
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(42px, 5vw, 76px);
}

.pricing-block {
  position: relative;
  background: transparent;
  border-top: 1px solid rgba(30, 39, 83, 0.16);
  padding: clamp(30px, 3.2vw, 52px) clamp(10px, 2.8vw, 48px) clamp(28px, 3vw, 46px);
}
.pricing-block::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 82px;
  height: 1px;
  background: var(--accent);
}
.pricing-block h3 {
  font-family: var(--f-jps);
  color: var(--navy);
  font-size: clamp(22px, 1.65vw, 30px);
  letter-spacing: 1.1px;
  margin-bottom: clamp(24px, 2.6vw, 38px);
}
@media (max-width: 768px) {
  .pricing-block {
    padding: 24px 0 28px;
  }
}

.table-wrap {
  overflow-x: auto;
}
@media (max-width: 768px) {
  .table-wrap {
    overflow-x: visible;
  }
}

.grooming-care-section .clinic-care-card {
  background: transparent;
}

.clinic-medical-care-section .clinic-care-card {
  background: transparent;
}

.pricing-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  table-layout: fixed;
}
.pricing-table th,
.pricing-table td {
  border: 0;
  padding: 13px 0;
  font-family: var(--f-jp);
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
  vertical-align: top;
}
.pricing-table th {
  color: var(--navy);
  font-weight: 700;
}
.pricing-menu-note {
  display: block;
  margin-top: 4px;
  color: rgba(30, 39, 83, 0.62);
  font-size: 0.86em;
  font-weight: 500;
  line-height: 1.55;
}
.pricing-table td {
  font-family: var(--f-en), var(--f-jp);
  font-weight: 500;
  text-align: right;
  color: rgba(30, 39, 83, 0.74);
}

.pricing-table-detail thead th {
  color: rgba(30, 39, 83, 0.46);
  font-family: var(--f-jp);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-top: 0;
  padding-bottom: 16px;
}
.pricing-table-detail thead th:nth-child(1),
.pricing-table-detail tbody th {
  width: 68%;
}
.pricing-table-detail thead th:nth-child(2),
.pricing-table-detail td:nth-child(2) {
  width: 32%;
  white-space: nowrap;
  text-align: left;
}
.pricing-table tr.is-preparing th,
.pricing-table tr.is-preparing td {
  color: rgba(82, 82, 82, 0.42);
}
@media (max-width: 768px) {
  .pricing-table-detail {
    display: block;
    min-width: 0;
  }
  .pricing-table-detail thead {
    display: none;
  }
  .pricing-table-detail tbody,
  .pricing-table-detail tr,
  .pricing-table-detail th,
  .pricing-table-detail td {
    display: block;
    width: 100% !important;
  }
  .pricing-table-detail tr {
    padding: 16px 0;
    border-top: 1px solid rgba(30, 39, 83, 0.1);
  }
  .pricing-table-detail tr:first-child {
    border-top: 0;
    padding-top: 0;
  }
  .pricing-table-detail th,
  .pricing-table-detail td {
    padding: 0;
    text-align: left;
  }
  .pricing-table-detail tbody th {
    font-size: 14px;
    line-height: 1.55;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
  }
  .pricing-table-detail td:nth-child(2) {
    display: flex;
    align-items: baseline;
    gap: 12px;
    white-space: normal;
  }
  .pricing-table-detail td:nth-child(2) {
    font-size: 14px;
    line-height: 1.5;
  }
  .pricing-table-detail td:nth-child(2)::before {
    flex: 0 0 38px;
    font-family: var(--f-jp);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: rgba(30, 39, 83, 0.42);
  }
  .pricing-table-detail td:nth-child(2)::before {
    content: "料金";
  }
}

.pricing-notes {
  list-style: none;
  margin-top: 22px;
  padding-top: 10px;
}
.pricing-notes li {
  font-family: var(--f-jp);
  color: var(--gray);
  font-size: 13px;
  line-height: 1.85;
}
.pricing-notes li + li {
  margin-top: 4px;
}
.pricing-notes .note-accent {
  color: var(--accent);
  font-weight: 700;
}
@media (max-width: 768px) {
  .pricing-notes {
    margin-top: 18px;
  }
  .pricing-notes li {
    font-size: 11px;
    line-height: 1.75;
    letter-spacing: 0;
  }
}

.notes-header {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
}
.notes-header > p {
  font-family: var(--f-jp);
  color: var(--gray);
  font-size: 13px;
  line-height: 2;
}
@media (max-width: 768px) {
  .notes-header {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

.notes-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background: transparent;
  border-top: 1px solid rgba(30, 39, 83, 0.1);
}
@media (max-width: 768px) {
  .notes-list {
    grid-template-columns: 1fr;
  }
}

.notes-item {
  background: transparent;
  border-bottom: 1px solid rgba(30, 39, 83, 0.1);
  padding: clamp(26px, 3vw, 44px);
}
.notes-item:nth-child(odd) {
  border-right: 1px solid rgba(30, 39, 83, 0.1);
}
@media (max-width: 768px) {
  .notes-item:nth-child(odd) {
    border-right: 0;
  }
}
.notes-item span {
  font-family: var(--f-en);
  color: var(--beige);
  font-size: 30px;
  line-height: 1;
}
.notes-item h3 {
  font-family: var(--f-jps);
  color: var(--navy);
  font-size: clamp(18px, 1.3vw, 24px);
  letter-spacing: 1px;
  line-height: 1.55;
  margin: 12px 0 14px;
}
.notes-item p {
  font-family: var(--f-jp);
  color: var(--gray);
  font-size: 14px;
  line-height: 2;
}

.related-service-section {
  margin-top: clamp(100px, 11vw, 180px);
  padding-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .service-hero-media img,
  .intro-gallery img {
    transition: none !important;
    transform: none !important;
  }
}
