:root {
  --navy: #17345f;
  --blue: #7fb2df;
  --blue-soft: #e9f4fb;
  --pink: #ef8aaa;
  --pink-soft: #fde8ef;
  --line: #d8e6f1;
  --text: #273f62;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: #f6f9fc;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.8;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, .brand-name, .global-nav, .number, .contact-method strong {
  font-family: "Noto Serif JP", serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1440px);
  height: 104px;
  margin: 0 auto;
  padding: 0 clamp(28px, 4vw, 54px);
  background: #fff;
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}
.brand-mark::before,
.brand-mark::after {
  position: absolute;
  top: 4px;
  width: 16px;
  height: 30px;
  border: 6px solid currentColor;
  border-top: 0;
  border-radius: 0 0 22px 22px;
  content: "";
}
.brand-mark::before { left: 4px; color: #78a6ca; transform: rotate(38deg); }
.brand-mark::after { right: 4px; color: #e7a9bd; transform: rotate(-38deg); }
.brand-mark span {
  position: absolute;
  left: 18px;
  bottom: 7px;
  width: 13px;
  height: 13px;
  transform: rotate(45deg);
  border-right: 3px solid #d58ca5;
  border-bottom: 3px solid #d58ca5;
}
.brand-name {
  color: var(--navy);
  font-size: clamp(19px, 1.8vw, 27px);
  font-weight: 500;
  letter-spacing: 0.07em;
  white-space: nowrap;
}
.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3.2vw, 58px);
  flex: 0 0 auto;
  color: var(--navy);
  font-size: 17px;
  letter-spacing: 0.06em;
}
.global-nav a { position: relative; padding: 8px 0 10px; }
.global-nav a::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--pink);
  content: "";
  transition: width 180ms ease;
}
.global-nav a:hover::after, .global-nav .is-current::after { width: 70px; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(440px, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  min-height: clamp(650px, 57vw, 820px);
  padding: 72px clamp(46px, 6vw, 86px) 76px;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(255,255,255,.96) 0 37%, rgba(255,255,255,.74) 52%, rgba(237,247,255,.55)),
    #fff;
}
.hero::before {
  position: absolute;
  inset: auto -5% -18% -5%;
  height: 230px;
  border-radius: 50% 50% 0 0;
  background: rgba(226, 241, 252, .9);
  content: "";
  z-index: 1;
}
.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255,255,255,.98) 0 44%, rgba(255,255,255,.74) 58%, rgba(255,255,255,.08) 74%);
  content: "";
  z-index: 1;
  pointer-events: none;
}
.hero__copy {
  position: relative;
  z-index: 2;
  width: min(70vw, 960px);
}
.hero h1 {
  margin: 0;
  color: var(--navy);
  max-width: 960px;
  font-size: clamp(32px, 2.55vw, 42px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.55;
}
.hero__copy p {
  max-width: 650px;
  margin: 34px 0 30px;
  color: var(--navy);
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  line-height: 2.1;
  letter-spacing: .06em;
}
.hero__photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: 62%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}
.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  border: 1px solid #cfe1ef;
  border-radius: 999px;
  padding: 8px 18px;
  color: var(--navy);
  background: #fff;
  font-weight: 700;
}
.hero-badges svg { width: 20px; height: 20px; color: #5c99cc; }
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.text-link,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.text-link {
  gap: 12px;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 8px;
  color: var(--navy);
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  letter-spacing: .06em;
}
.text-link svg { width: 20px; height: 20px; }
.secondary-button {
  gap: 18px;
  min-width: min(100%, 290px);
  min-height: 70px;
  border: 1px solid #cfddeb;
  border-radius: 999px;
  padding: 14px 28px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 14px 30px rgba(48, 82, 112, .11);
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  letter-spacing: .06em;
}
.secondary-button svg { width: 20px; height: 20px; }

h1 {
  margin: 0;
  color: var(--navy);
}

section {
  width: min(100%, 1440px);
  margin: 0 auto;
  background: #fff;
}

.intro {
  padding: 84px clamp(42px, 7vw, 112px) 92px;
  background:
    radial-gradient(circle at 12% 8%, rgba(127,178,223,.13), transparent 28%),
    #fff;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.value-grid article {
  border-top: 4px solid var(--pink);
  border-radius: 18px;
  padding: 34px 30px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(49,86,118,.09);
}
.value-grid article:nth-child(even) { border-top-color: var(--blue); }
.value-grid svg {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  color: #6da7d7;
}
.value-grid h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: .06em;
}
.value-grid p {
  margin: 0;
  color: var(--navy);
}

.environment {
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(500px, 1.1fr);
  gap: clamp(48px, 7vw, 90px);
  align-items: center;
  padding: 86px clamp(42px, 7vw, 112px);
  background: #fbfdff;
}
.environment__copy h2 {
  text-align: left;
}
.environment__copy > p {
  color: var(--navy);
  font-family: "Noto Serif JP", serif;
  font-size: 21px;
  letter-spacing: .06em;
}
.environment ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 26px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}
.environment li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid #f0c4d1;
  padding: 0 0 18px;
  color: var(--navy);
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
}
.environment li svg {
  width: 52px;
  height: 52px;
  border: 1px solid #cfe1ef;
  border-radius: 50%;
  padding: 13px;
  color: #5b96c8;
  background: #fff;
}
.environment img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0 34px 34px 34px;
  box-shadow: 0 18px 44px rgba(49,86,118,.12);
}

.requirements {
  padding: 84px clamp(42px, 7vw, 112px) 92px;
  background: #fff;
}
.requirements-table {
  max-width: 1080px;
  margin: 0 auto;
  border-top: 1px solid #aac7e2;
  border-left: 1px solid #d5e5f0;
}
.requirements-table div {
  display: grid;
  grid-template-columns: 260px 1fr;
  margin: 0;
  border-bottom: 1px solid #d5e5f0;
}
.requirements-table dt,
.requirements-table dd {
  margin: 0;
  padding: 24px 32px;
  color: var(--navy);
  font-size: 18px;
}
.requirements-table dt {
  display: grid;
  place-items: center;
  background: #eaf4fc;
  font-family: "Noto Serif JP", serif;
  font-size: 21px;
  letter-spacing: .08em;
}
.requirements-note {
  margin: 34px auto 0;
  color: var(--navy);
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  text-align: center;
  letter-spacing: .07em;
}
.section-heading {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-bottom: 42px;
  text-align: center;
}
h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.section-heading p {
  margin: 0;
  color: var(--navy);
  font-family: "Noto Serif JP", serif;
  font-size: 19px;
  letter-spacing: 0.05em;
}

.cancer-care {
  padding: 78px clamp(42px, 7vw, 112px) 92px;
  text-align: center;
  background:
    radial-gradient(circle at 12% 12%, rgba(127,178,223,.13), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(239,138,170,.12), transparent 26%),
    #fff;
}
.special-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #f3adc2;
  border-radius: 999px;
  padding: 10px 28px;
  color: #e77296;
  background: #fff;
  font-weight: 700;
  letter-spacing: .08em;
}
.special-badge svg { width: 22px; height: 22px; }
.feature-photo {
  display: block;
  width: min(100%, 1040px);
  aspect-ratio: 16 / 7;
  object-fit: cover;
  margin: 0 auto 42px;
  border-radius: 26px;
  box-shadow: 0 18px 44px rgba(49,86,118,.14);
}
.center-copy { max-width: 820px; margin: 0 auto; }
.center-copy h3,
.care-text h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 43px);
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.55;
}
.center-copy p,
.care-text p {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  letter-spacing: .05em;
}
.support-labels {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 34px;
  margin-top: 38px;
}
.support-labels span {
  min-width: 140px;
  border-left: 1px solid #f1b5c6;
  border-right: 1px solid #d4e5f2;
  padding: 8px 18px;
  color: var(--navy);
  font-family: "Noto Serif JP", serif;
  font-size: 19px;
}

.care-section {
  padding: 82px clamp(42px, 7vw, 112px);
}
.care-block {
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(440px, 1.15fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.care-block--reverse { grid-template-columns: minmax(440px, 1.15fr) minmax(300px, .85fr); }
.care-block--reverse .care-text { order: 2; }
.care-block img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0 30px 30px 30px;
}
.care-block--reverse img { border-radius: 30px 0 30px 30px; }
.number {
  display: block;
  margin-bottom: 18px;
  color: #8fbce3;
  font-size: 58px;
  line-height: 1;
  letter-spacing: .04em;
}
.number::after {
  display: block;
  width: 74px;
  height: 3px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  content: "";
}

.medical-section {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 42px;
  padding: 84px clamp(42px, 7vw, 112px);
  background: linear-gradient(90deg, #f4f9fd, #fff 34%);
}
.eyebrow {
  margin: 0 0 14px;
  color: #4d9bd7;
  font-family: "Noto Serif JP", serif;
  letter-spacing: .16em;
}
.medical-lead h2 { font-size: clamp(34px, 3.7vw, 50px); line-height: 1.35; }
.medical-lead p:not(.eyebrow) { color: var(--navy); font-size: 17px; }
.medical-table {
  border-top: 1px solid #9fbfe0;
  border-bottom: 1px solid #9fbfe0;
  background: #fff;
}
.medical-category {
  display: grid;
  grid-template-columns: 250px 1fr;
  border-bottom: 1px solid var(--line);
}
.medical-category:last-child { border-bottom: 0; }
.medical-category h3 {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  margin: 0;
  padding: 32px 22px;
  color: var(--navy);
  background: rgba(232,244,252,.68);
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
.medical-category h3 svg { width: 34px; height: 34px; color: #6aa6d8; }
.medical-category ul { margin: 0; padding: 18px 34px; list-style: none; }
.medical-category li {
  display: flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid #e8f0f6;
  color: var(--navy);
  font-size: 17px;
}
.medical-category li:last-child { border-bottom: 0; }
.medical-category li::before {
  width: 8px;
  height: 8px;
  margin-right: 16px;
  border-radius: 50%;
  background: #83b9e5;
  content: "";
}
.medical-note {
  grid-column: 2;
  margin: 20px 0 0;
  border-radius: 12px;
  padding: 18px 24px;
  color: var(--navy);
  background: #eaf4fc;
  text-align: center;
}

.flow-section {
  padding: 82px clamp(42px, 7vw, 112px) 92px;
  background:
    radial-gradient(circle at 18% 18%, rgba(127,178,223,.13), transparent 24%),
    #fff;
}
.flow-list {
  position: relative;
  display: grid;
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.flow-list::before {
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 76px;
  width: 2px;
  background: #bdd7ee;
  content: "";
}
.flow-list li {
  position: relative;
  display: grid;
  grid-template-columns: 74px 76px 1fr;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px dashed var(--line);
}
.flow-list span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid #a9cbe8;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-family: "Noto Serif JP", serif;
  font-size: 23px;
}
.flow-list i, .flow-list svg {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  padding: 15px;
  color: #4c8fc7;
  background: #edf5fb;
}
.flow-list strong {
  display: block;
  color: var(--navy);
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  letter-spacing: .06em;
}
.flow-list p { grid-column: 3; margin: -18px 0 0; color: var(--navy); }

.contact-cta {
  padding: 80px 64px 78px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.36), rgba(255,255,255,.74)),
    url("assets/cta-bg.png") center right / cover no-repeat;
}
.contact-cta__content { max-width: 1060px; margin: 0 auto; text-align: center; }
.cta-brand { margin: 0 0 18px; color: var(--navy); font-family: "Noto Serif JP", serif; font-size: 22px; letter-spacing: .08em; }
.cta-lead { max-width: 780px; margin: 22px auto 36px; color: var(--navy); font-family: "Noto Serif JP", serif; font-size: 20px; letter-spacing: .06em; }
.contact-methods { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px; margin-bottom: 36px; }
.contact-method {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  min-height: 110px;
  border: 1px solid #dce8f2;
  border-radius: 16px;
  padding: 20px 26px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(46,77,104,.08);
  text-align: left;
}
.contact-method span { grid-row: 1 / span 2; display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: #edf5fb; }
.contact-method strong { color: var(--navy); font-size: clamp(22px, 2vw, 32px); font-weight: 500; letter-spacing: .05em; overflow-wrap: anywhere; }
.contact-method[href^="mailto"] strong { font-size: clamp(20px, 1.7vw, 26px); }
.contact-method small { color: var(--navy); }
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: min(100%, 460px);
  min-height: 70px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #f88aae, #ed5e8b);
  box-shadow: 0 16px 34px rgba(227,91,132,.28);
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  letter-spacing: .08em;
}

@media (max-width: 1180px) {
  .site-header { height: 88px; padding: 0 24px; }
  .brand-name { max-width: 300px; font-size: 18px; letter-spacing: .04em; }
  .global-nav { gap: 18px; font-size: 14px; letter-spacing: .04em; }
  .page-title, .page-title__inner { min-height: 360px; }
  .medical-section { grid-template-columns: 1fr; }
  .medical-note { grid-column: 1; }
  .contact-method { padding: 18px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: 650px;
  }
  .hero__copy {
    max-width: 640px;
  }
  .hero h1 {
    font-size: 50px;
    line-height: 1.5;
  }
  .hero__copy p {
    max-width: 520px;
    font-size: 18px;
  }
  .hero__photo {
    width: 58%;
    opacity: .72;
  }
  .value-grid {
    gap: 20px;
  }
  .environment {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header { height: auto; flex-direction: column; align-items: flex-start; gap: 16px; padding: 22px 24px; }
  .global-nav { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .care-block, .care-block--reverse { grid-template-columns: 1fr; gap: 28px; }
  .care-block--reverse .care-text { order: 0; }
  .medical-category { grid-template-columns: 1fr; }
  .flow-list li { grid-template-columns: 58px 58px 1fr; }
  .flow-list::before { left: 58px; }
  .contact-methods { grid-template-columns: 1fr; }
  .hero__photo {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-top: 34px;
    border-radius: 24px;
  }
  .value-grid {
    grid-template-columns: 1fr;
  }
  .environment ul {
    grid-template-columns: 1fr;
  }
  .requirements-table div {
    grid-template-columns: 1fr;
  }
}

/* Width and type refinement */
.site-header,
section,
.contact-cta {
  width: 100%;
  max-width: none;
}
.site-header {
  padding-inline: max(28px, calc((100vw - 976px) / 2));
}
.brand-name {
  max-width: 330px;
  font-size: 20px;
  letter-spacing: .04em;
}
.global-nav {
  gap: 24px;
  font-size: 15px;
  letter-spacing: .04em;
}
.hero,
.intro,
.environment,
.requirements,
.contact-cta {
  padding-inline: max(32px, calc((100vw - 976px) / 2));
}
.section-heading,
.value-grid,
.requirements-table,
.requirements-note,
.contact-cta__content {
  max-width: 976px;
  margin-inline: auto;
}
.hero {
  padding-left: clamp(56px, 8vw, 154px);
  padding-right: clamp(32px, 5vw, 96px);
}
.hero__copy {
  margin-inline: 0;
}
.environment {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  grid-template-columns: minmax(0, 430px) minmax(0, 480px);
  justify-content: center;
  gap: clamp(40px, 5vw, 66px);
}
.hero h1 {
  font-size: clamp(32px, 2.55vw, 42px);
}
.hero__copy p,
.environment__copy > p,
.section-heading p,
.requirements-note,
.cta-lead {
  font-size: 16px;
}
.section-heading h2,
.environment__copy h2 {
  font-size: clamp(30px, 2.6vw, 42px);
}
.value-grid h3 {
  font-size: 22px;
}
.requirements-table dt,
.requirements-table dd {
  font-size: 16px;
}
.primary-button {
  font-size: 20px;
}
.hero-actions .primary-button,
.hero-actions .secondary-button {
  min-width: min(100%, 310px);
  min-height: 66px;
  font-size: 18px;
}
.contact-method strong {
  font-size: clamp(20px, 1.7vw, 26px);
}

@media (max-width: 1180px) {
  .site-header,
  .hero,
  .intro,
  .environment,
  .requirements,
  .contact-cta {
    padding-inline: 32px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero__copy {
    width: min(76vw, 780px);
  }
}

/* Header can use the full layout width */
.site-header {
  width: min(100%, 1440px);
  max-width: 1440px;
  padding-inline: clamp(28px, 4vw, 54px);
}
.brand-name {
  max-width: none;
  font-size: clamp(19px, 1.8vw, 27px);
  letter-spacing: 0.07em;
}
.global-nav {
  gap: clamp(22px, 3.2vw, 58px);
  font-size: 17px;
  letter-spacing: 0.06em;
}
.global-nav .nav-contact {
  min-height: 44px;
  border-radius: 999px;
  padding: 9px 22px 10px;
  color: #fff;
  background: linear-gradient(135deg, #f58aae, #ed6b98);
  box-shadow: 0 10px 22px rgba(227, 91, 132, .22);
}
.global-nav .nav-contact::after {
  display: none;
}

/* Unified header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1440px);
  max-width: 1440px;
  height: 104px;
  margin: 0 auto;
  padding: 0 clamp(28px, 4vw, 54px);
  background: #fff;
  backdrop-filter: blur(14px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}
.brand-mark::before,
.brand-mark::after {
  position: absolute;
  top: 4px;
  width: 16px;
  height: 30px;
  border: 6px solid currentColor;
  border-top: 0;
  border-radius: 0 0 22px 22px;
  content: "";
}
.brand-mark::before { left: 4px; color: #78a6ca; transform: rotate(38deg); }
.brand-mark::after { right: 4px; color: #e7a9bd; transform: rotate(-38deg); }
.brand-mark span {
  position: absolute;
  left: 18px;
  bottom: 7px;
  width: 13px;
  height: 13px;
  transform: rotate(45deg);
  border-right: 3px solid #d58ca5;
  border-bottom: 3px solid #d58ca5;
}
.brand-name {
  max-width: none;
  color: var(--navy);
  font-size: clamp(19px, 1.8vw, 27px);
  font-weight: 500;
  letter-spacing: 0.07em;
  white-space: nowrap;
}
.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3.2vw, 58px);
  flex: 0 0 auto;
  color: var(--navy);
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  letter-spacing: 0.06em;
}
.global-nav a {
  position: relative;
  padding: 8px 0 10px;
}
.global-nav a::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--pink);
  content: "";
  transition: width 180ms ease;
}
.global-nav a:hover::after,
.global-nav .is-current::after {
  width: 70px;
}
.global-nav .nav-contact {
  min-height: 44px;
  border-radius: 999px;
  padding: 9px 22px 10px;
  color: #fff;
  background: linear-gradient(135deg, #f58aae, #ed6b98);
  box-shadow: 0 10px 22px rgba(227, 91, 132, .22);
}
.global-nav .nav-contact::after {
  display: none;
}

/* Header component: based on recruit page */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1440px);
  max-width: 1440px;
  height: 104px;
  margin: 0 auto;
  padding: 0 clamp(28px, 4vw, 54px);
  background: #fff;
  backdrop-filter: blur(14px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}
.brand-mark::before,
.brand-mark::after {
  position: absolute;
  top: 4px;
  width: 16px;
  height: 30px;
  border: 6px solid currentColor;
  border-top: 0;
  border-radius: 0 0 22px 22px;
  content: "";
}
.brand-mark::before { left: 4px; color: #78a6ca; transform: rotate(38deg); }
.brand-mark::after { right: 4px; color: #e7a9bd; transform: rotate(-38deg); }
.brand-mark span {
  position: absolute;
  left: 18px;
  bottom: 7px;
  width: 13px;
  height: 13px;
  transform: rotate(45deg);
  border-right: 3px solid #d58ca5;
  border-bottom: 3px solid #d58ca5;
}
.brand-name {
  max-width: none;
  color: var(--navy);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(19px, 1.8vw, 27px);
  font-weight: 500;
  letter-spacing: 0.07em;
  white-space: nowrap;
}
.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3.2vw, 58px);
  flex: 0 0 auto;
  color: var(--navy);
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  letter-spacing: 0.06em;
}
.global-nav a {
  position: relative;
  padding: 8px 0 10px;
}
.global-nav a::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--pink);
  content: "";
  transition: width 180ms ease;
}
.global-nav a:hover::after,
.global-nav .is-current::after {
  width: 70px;
}
.global-nav .nav-contact {
  min-height: 44px;
  border-radius: 999px;
  padding: 9px 22px 10px;
  color: #fff;
  background: linear-gradient(135deg, #f58aae, #ed6b98);
  box-shadow: 0 10px 22px rgba(227, 91, 132, .22);
}
.global-nav .nav-contact::after {
  display: none;
}
@media (max-width: 1180px) {
  .site-header {
    height: 88px;
    padding: 0 24px;
  }
  .brand-name {
    font-size: 18px;
    letter-spacing: .04em;
  }
  .global-nav {
    gap: 18px;
    font-size: 14px;
    letter-spacing: .04em;
  }
}
@media (max-width: 900px) {
  .site-header {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
  }
  .global-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }
}

/* CTA: phone and form button only */
.contact-cta .contact-methods {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.contact-cta .contact-method {
  width: min(100%, 460px);
}
.contact-cta .primary-button {
  width: min(100%, 460px);
  margin-inline: auto;
}

/* Font system */
body {
  font-family: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, sans-serif;
}
h1,
h2,
h3,
h4,
.brand-name,
.global-nav,
.section-heading h2,
.hero h1,
.page-title h1,
.news-title,
.news-row time,
.contact-method strong,
.primary-button,
.secondary-button,
.primary-outline,
.text-link,
.signature strong {
  font-family: "Shippori Mincho", serif;
}
.hero__copy p,
.section-heading p,
.section-heading + p,
.care-text p,
.center-copy p,
.medical-lead p:not(.eyebrow),
.cta-lead,
.philosophy p:not(.section-heading p),
.recruit-entry p,
.message-card p,
.contact-inner > p,
.office-disclosure p,
.value-grid p,
.environment__copy > p,
.requirements-note {
  font-family: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, sans-serif;
}
