:root {
  --ink: #17231f;
  --sub: #5d6d66;
  --green: #078dba;
  --deep: #064f78;
  --blue: #078dba;
  --blue-deep: #064f78;
  --lime: #28b7d3;
  --orange: #f28b00;
  --leaf: #dff3fa;
  --cream: #f5f8fb;
  --paper: #fffdfa;
  --apricot: #f3a383;
  --apricot-light: #fff1e8;
  --line: rgba(23, 35, 31, 0.12);
  --shadow: 0 28px 80px rgba(6, 79, 120, 0.18);
  --soft-shadow: 0 18px 54px rgba(6, 79, 120, 0.09);
  --edge: 8px;
}

/* 20260626 mobile header emergency override */
@media (max-width: 960px) {
  html body.home-page .top-info-banner {
    display: none !important;
  }

  html body.home-page header.site-header {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    transform: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 7px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 9px 10px 10px !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }

  html body.home-page header.site-header a.brand {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
  }

  html body.home-page header.site-header .brand-text {
    width: auto !important;
    text-align: center !important;
  }

  html body.home-page header.site-header nav.site-nav {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 5px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }

  html body.home-page header.site-header nav.site-nav a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 24px !important;
    padding: 4px 7px !important;
    border: 1px solid rgba(6, 79, 120, 0.14) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.86) !important;
    color: #30433d !important;
    font-size: 11px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  html body.home-page header.site-header nav.site-nav a[href="./price.html"] {
    order: 20 !important;
    min-width: 118px !important;
    min-height: 32px !important;
    padding: 8px 18px !important;
    border-color: transparent !important;
    background: #078dba !important;
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(7, 141, 186, 0.28) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
  }

  html body.home-page header.site-header nav.site-nav a[href="#faq"] {
    order: 21 !important;
    min-height: 32px !important;
    padding: 8px 14px !important;
  }

  html body.home-page .hero {
    padding-top: 24px !important;
  }

  html body.home-page .area-section {
    padding-top: 38px !important;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 17px;
  line-height: 1.9;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.top-info-banner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 70;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 36px;
  padding: 0 clamp(18px, 4vw, 58px);
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 28px rgba(6, 79, 120, 0.06);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.top-info-banner a {
  color: var(--blue-deep);
}

.top-info-banner .top-office-link {
  padding: 5px 12px;
  border-radius: 999px;
  color: white;
  background: var(--blue-deep);
}

.top-info-banner span {
  color: var(--sub);
  font-weight: 700;
}

.site-header {
  position: absolute;
  top: 52px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100vw - 32px));
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.84);
  box-shadow: 0 14px 42px rgba(14, 54, 46, 0.13);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 142px;
  padding: 2px 14px;
}

.brand::before {
  content: none;
}

.brand::after {
  content: none;
}

.brand-symbol {
  display: none;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 8px 20px rgba(7, 141, 186, 0.18);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.brand-text {
  display: grid;
  min-width: 0;
  line-height: 1.14;
}

.brand-text strong {
  color: var(--blue-deep);
  font-family: Arial, "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 19px;
  letter-spacing: 0;
  font-weight: 900;
}

.brand-text small {
  color: var(--sub);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  color: #30433d;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--green);
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  color: white;
  background: var(--deep);
  font-size: 13px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100svh + 150px);
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  padding: 132px clamp(24px, 6vw, 96px) 168px;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, var(--orange), var(--apricot), var(--blue));
}

.hero-bg {
  background: url("./assets/hero-hiromaru-users.png") 58% 40% / cover no-repeat;
  filter: brightness(1.12) saturate(1.04);
  transform: scale(1.008);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 45, 68, 0.62) 0%, rgba(5, 76, 108, 0.34) 32%, rgba(7, 141, 186, 0.06) 58%, rgba(255, 255, 255, 0.1) 100%),
    linear-gradient(0deg, rgba(4, 35, 52, 0.32) 0%, rgba(4, 35, 52, 0.02) 45%);
}

.hero-inner {
  width: min(640px, 100%);
  color: white;
  padding-bottom: 62px;
  text-shadow: 0 4px 20px rgba(3, 31, 48, 0.42);
}

.area-label,
.section-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .area-label {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 5px 16px;
  border-radius: 999px;
  color: white;
  background: rgba(6, 79, 120, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.hero h1 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(58px, 5.8vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 900;
}

.hero-lead {
  width: min(560px, 100%);
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.95;
  font-weight: 700;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0;
}

.btn-primary {
  color: white;
  background: var(--green);
  box-shadow: 0 12px 34px rgba(15, 107, 86, 0.28);
}

.btn-phone {
  color: var(--blue-deep);
  background: white;
  box-shadow: 0 12px 34px rgba(6, 79, 120, 0.14);
}

.tel-display {
  cursor: default;
  user-select: text;
}

.btn-ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.btn-dark {
  color: white;
  background: var(--deep);
}

.btn-ghost-dark {
  color: var(--deep);
  border: 1px solid var(--line);
  background: white;
}

.hero-panel {
  position: absolute;
  right: clamp(20px, 6vw, 88px);
  bottom: 122px;
  z-index: 7;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1040px, calc(100vw - 40px));
  border-radius: var(--edge);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 62px rgba(3, 45, 70, 0.18);
  backdrop-filter: blur(18px);
}

.hero-panel div,
.hero-panel a {
  padding: 20px 26px;
  border-right: 1px solid var(--line);
}

.hero-panel div:last-child,
.hero-panel a:last-child {
  border-right: 0;
}

.hero-panel span,
.hero-panel a span {
  display: block;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
}

.hero-panel strong,
.hero-panel a strong {
  display: block;
  margin-top: 6px;
  font-size: 17px;
  line-height: 1.45;
}

.hero-map-link {
  color: var(--ink);
  text-decoration: none;
  background: linear-gradient(180deg, rgba(7, 141, 186, 0.08), rgba(7, 141, 186, 0.02));
}

.hero-map-link strong::after {
  content: ">";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-size: 13px;
  vertical-align: middle;
}

.hero-office-note {
  position: absolute;
  right: clamp(20px, 6vw, 88px);
  bottom: 60px;
  z-index: 7;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  width: min(1040px, calc(100vw - 40px));
}

.hero-office-note span {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: white;
  background: rgba(6, 79, 120, 0.5);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.statement {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: clamp(78px, 10vw, 138px) clamp(22px, 7vw, 110px);
  background:
    linear-gradient(90deg, rgba(223, 243, 250, 0.8), rgba(255, 253, 250, 0.92)),
    var(--cream);
}

.statement-photo {
  min-height: clamp(330px, 40vw, 540px);
  border-radius: var(--edge);
  background:
    linear-gradient(0deg, rgba(6, 79, 120, 0.34), rgba(7, 141, 186, 0.08)),
    url("./assets/care-consultation.png") center / cover no-repeat;
  box-shadow: 0 28px 76px rgba(6, 79, 120, 0.14);
}

.statement-copy {
  position: relative;
  padding: clamp(26px, 4vw, 48px);
  border-radius: var(--edge);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 22px 64px rgba(6, 79, 120, 0.1);
  backdrop-filter: blur(12px);
}

.pathways {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, calc(100vw - 64px));
  margin: -222px auto 72px;
  border-radius: var(--edge);
  overflow: visible;
}

.path-card {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 188px;
  padding: 30px 38px 30px 34px;
  border: 1px solid rgba(7, 141, 186, 0.12);
  border-radius: var(--edge);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(6, 79, 120, 0.13);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.path-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--lime));
}

.path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 90px rgba(6, 79, 120, 0.18);
}

.path-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.path-card strong {
  padding-right: 42px;
  font-size: clamp(25px, 2.08vw, 32px);
  line-height: 1.28;
  letter-spacing: 0;
}

.path-card {
  position: relative;
}

.path-card::after {
  content: "→";
  position: absolute;
  right: 26px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-weight: 900;
}

.path-card small {
  color: var(--sub);
  font-size: 16px;
  font-weight: 700;
}

.path-card::after {
  content: ">";
}

.statement h2 {
  width: min(1160px, 100%);
  margin: 0;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.18;
  letter-spacing: 0;
}

.statement-copy > p:last-of-type {
  width: min(780px, 100%);
  margin: 24px 0 0;
  color: var(--sub);
  font-size: clamp(17px, 2vw, 21px);
}

.statement-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.statement-points span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(7, 141, 186, 0.18);
  border-radius: 999px;
  color: var(--blue-deep);
  background: white;
  font-size: 13px;
  font-weight: 900;
}

.detail-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background: #eef8fc;
}

.detail-link-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 178px;
  padding: 30px 72px 30px 32px;
  border-radius: var(--edge);
  background: white;
  box-shadow: 0 22px 64px rgba(6, 79, 120, 0.1);
  overflow: hidden;
}

.detail-link-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.detail-link-card::after {
  content: ">";
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-weight: 900;
}

.detail-link-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-link-card strong {
  color: var(--ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
}

.detail-link-card small {
  color: var(--sub);
  font-size: 16px;
  font-weight: 700;
}

.detail-name {
  color: var(--blue-deep);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.45;
}

.recruit-button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 22px;
  border-radius: 999px;
  color: white;
  background: var(--blue-deep);
  font-weight: 900;
}

.blue-mission {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  padding: clamp(74px, 10vw, 130px) clamp(22px, 7vw, 110px);
  color: white;
  background: var(--blue);
  overflow: hidden;
}

.blue-mission::before {
  content: "H";
  position: absolute;
  right: clamp(-80px, -4vw, -20px);
  top: -80px;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(360px, 48vw, 760px);
  font-weight: 900;
  line-height: 0.8;
}

.photo-mosaic,
.blue-mission-copy {
  position: relative;
  z-index: 2;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: min(620px, 100%);
  margin: 0 auto;
}

.mosaic-photo {
  min-height: clamp(210px, 22vw, 330px);
  background: center / cover no-repeat;
  box-shadow: 0 18px 44px rgba(0, 65, 92, 0.16);
}

.mosaic-01 {
  background-image: url("./assets/care-consultation.png");
  border-top-left-radius: 96px;
}

.mosaic-02 {
  background-image: url("./assets/medication-support.png");
  border-top-right-radius: 96px;
}

.mosaic-03 {
  background-image: url("./assets/hero-hiromaru.png");
  border-bottom-left-radius: 96px;
}

.mosaic-04 {
  background-image: url("./assets/nurses-walking.png");
  border-bottom-right-radius: 96px;
}

.mosaic-mark {
  position: absolute;
  width: 92px;
  height: 38px;
  border-radius: 999px;
  transform: rotate(-32deg);
}

.mark-a {
  left: -18px;
  top: -18px;
  background: #48b8ef;
}

.mark-b {
  right: -28px;
  bottom: -8px;
  background: var(--orange);
}

.blue-mission-copy .section-kicker,
.blue-mission-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.blue-mission-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1.24;
}

.mission-lead {
  margin: 24px 0 18px;
  font-size: clamp(19px, 2.2vw, 28px);
  font-weight: 900;
  line-height: 1.65;
}

.mission-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.mission-links a {
  position: relative;
  padding: 20px 54px 20px 24px;
  color: var(--blue-deep);
  background: white;
  font-weight: 900;
}

.mission-links a::after {
  content: "→";
  position: absolute;
  right: 18px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  transform: translateY(-50%);
}

.mission-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.mission-links a::after {
  content: ">";
}

.mission-proof article {
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--edge);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 44px rgba(3, 45, 70, 0.14);
}

.mission-proof span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.mission-proof strong {
  display: block;
  color: white;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.28;
}

.mission-proof p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 700;
}

.section {
  padding: clamp(70px, 10vw, 132px) clamp(22px, 7vw, 110px);
}

.support-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: end;
  padding: clamp(72px, 10vw, 126px) clamp(22px, 7vw, 110px);
  background: var(--paper);
  overflow: hidden;
}

.support-board::before {
  content: "HIROMARU CARE";
  position: absolute;
  left: clamp(18px, 6vw, 88px);
  top: 20px;
  color: rgba(7, 59, 50, 0.05);
  font-size: clamp(54px, 12vw, 168px);
  font-weight: 900;
  line-height: 0.9;
}

.support-board-head,
.support-board-grid {
  position: relative;
  z-index: 2;
}

.support-board-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 1.15;
}

.support-board-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.76);
  backdrop-filter: blur(12px);
}

.support-board-grid a {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.support-board-grid a:last-child {
  border-bottom: 0;
}

.support-board-grid span {
  color: var(--apricot);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.support-board-grid strong {
  font-size: clamp(23px, 3vw, 38px);
  line-height: 1.25;
}

.support-board-grid small {
  grid-column: 2;
  color: var(--sub);
  font-size: 15px;
}

.support-photo-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 12px;
  margin-top: 10px;
}

.rail-photo {
  min-height: clamp(220px, 28vw, 390px);
  background: center / cover no-repeat;
}

.rail-01 {
  background-image: url("./assets/care-consultation.png");
}

.rail-02 {
  margin-top: 44px;
  background-image: url("./assets/nurses-walking.png");
}

.rail-03 {
  margin-top: -28px;
  background-image: url("./assets/medication-support.png");
}

.team-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: center;
  padding: clamp(72px, 10vw, 132px) clamp(22px, 7vw, 110px);
  color: white;
  background:
    linear-gradient(135deg, rgba(6, 79, 120, 0.96), rgba(7, 141, 186, 0.88)),
    url("./assets/nurses-walking.png") center / cover no-repeat;
  border-top: 8px solid var(--apricot);
}

.team-copy .section-kicker,
.team-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.team-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.22;
}

.team-copy p {
  font-size: 17px;
}

.team-cards {
  display: grid;
  gap: 14px;
}

.team-cards article {
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--edge);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(10px);
}

.team-cards span {
  color: var(--apricot);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.team-cards strong {
  display: block;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.35;
}

.team-cards p {
  grid-column: 2;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.manager-message {
  position: relative;
  padding-top: clamp(78px, 9vw, 128px);
  padding-bottom: clamp(78px, 9vw, 128px);
  color: white;
  background:
    radial-gradient(circle at 84% 14%, rgba(40, 183, 211, 0.3), transparent 24%),
    radial-gradient(circle at 12% 84%, rgba(242, 139, 0, 0.18), transparent 25%),
    linear-gradient(135deg, #064f78 0%, #078dba 58%, #0d6e98 100%);
  overflow: hidden;
}

.manager-message::before {
  content: "HIROMARU";
  position: absolute;
  right: -1vw;
  bottom: -62px;
  color: rgba(255, 255, 255, 0.07);
  font-size: clamp(96px, 16vw, 240px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: 0;
}

.manager-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 5.5vw, 76px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.manager-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  min-height: clamp(430px, 42vw, 590px);
  filter: drop-shadow(0 34px 90px rgba(0, 43, 65, 0.34));
}

.manager-photo {
  min-height: 0;
  background: center / cover no-repeat;
}

.manager-photo-01 {
  background-image: url("./assets/care-consultation.png");
  border-top-left-radius: 110px;
}

.manager-photo-02 {
  background-image: url("./assets/medication-support.png");
  border-top-right-radius: 110px;
}

.manager-photo-03 {
  background-image: url("./assets/hero-hiromaru.png");
  border-bottom-left-radius: 110px;
}

.manager-photo-04 {
  background-image: url("./assets/nurses-walking.png");
  border-bottom-right-radius: 110px;
}

.manager-mark {
  position: absolute;
  z-index: 3;
  width: 112px;
  height: 44px;
  border-radius: 999px;
  transform: rotate(-34deg);
}

.manager-mark.mark-blue {
  left: -22px;
  top: -20px;
  background: #48b8ef;
}

.manager-mark.mark-orange {
  right: -26px;
  bottom: 10px;
  background: var(--orange);
}

.manager-profile-card {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 26px;
  display: grid;
  gap: 4px;
  width: min(310px, calc(100% - 52px));
  padding: 18px 22px;
  border-radius: var(--edge);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 54px rgba(6, 79, 120, 0.18);
  transform: translateX(-50%);
}

.manager-profile-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.manager-profile-card strong {
  color: var(--ink);
  font-size: 26px;
  line-height: 1.25;
}

.manager-profile-card small {
  color: var(--sub);
  font-weight: 800;
}

.manager-copy {
  position: relative;
  display: grid;
  gap: 24px;
}

.manager-copy::before {
  content: "管理者あいさつ";
  display: grid;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: white;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.manager-copy .section-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.manager-copy h2 {
  margin: 0;
  color: white;
  font-size: clamp(36px, 4.7vw, 66px);
  line-height: 1.18;
}

.manager-copy p:not(.section-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 700;
  line-height: 2.05;
}

.manager-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.manager-points article {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--edge);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.manager-points span {
  color: var(--apricot);
  font-weight: 900;
  line-height: 1;
}

.manager-points strong {
  color: white;
  font-size: 18px;
  line-height: 1.35;
}

.manager-points small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  line-height: 1.6;
}

.manager-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
}

.manager-footer p {
  display: inline-grid;
  gap: 4px;
  margin: 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.manager-footer span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.manager-footer strong {
  color: white;
  font-size: 18px;
  line-height: 1.2;
}

.manager-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: white;
  font-size: 15px;
  font-weight: 900;
}

.manager-footer a:last-child {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.section-head {
  width: min(900px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.section-head.align-left {
  margin-left: 0;
  text-align: left;
}

.section h2,
.recruit-strip h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(36px, 4.9vw, 68px);
  line-height: 1.22;
  letter-spacing: 0;
}

.section-head p:not(.section-kicker),
.professional-copy p,
.office-card p,
.contact-section p {
  color: var(--sub);
  font-size: 18px;
  font-weight: 700;
}

.feature-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(38px, 8vw, 110px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(217, 239, 229, 0.5), transparent 48%),
    var(--paper);
}

.feature-list {
  display: grid;
  gap: 24px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  column-gap: 22px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.feature-list article:nth-child(2) {
  padding: 28px 0 28px;
}

.feature-section .section-head h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.3;
}

.feature-list article:last-child {
  border-bottom: 0;
}

.feature-list span {
  color: var(--apricot);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.feature-list h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.35;
}

.feature-list p {
  grid-column: 2;
  margin: 0;
  color: var(--sub);
}

.care-section {
  background:
    linear-gradient(180deg, var(--leaf) 0%, var(--leaf) 62%, var(--paper) 62%, var(--paper) 100%),
    var(--leaf);
}

.care-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid rgba(15, 107, 86, 0.24);
  border-radius: var(--edge);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 26px 72px rgba(9, 55, 45, 0.12);
}

.care-board-lead {
  display: grid;
  align-content: end;
  min-height: 460px;
  padding: 34px;
  color: white;
  background:
    linear-gradient(0deg, rgba(4, 77, 107, 0.58) 0%, rgba(4, 77, 107, 0.18) 46%, rgba(255, 255, 255, 0.1) 100%),
    linear-gradient(90deg, rgba(6, 79, 120, 0.18) 0%, rgba(255, 255, 255, 0) 68%),
    url("./assets/medication-support.png") center / cover no-repeat;
}

.care-board-lead span {
  color: var(--apricot);
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 41, 66, 0.35);
}

.care-board-lead strong {
  margin-top: 10px;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.28;
  text-shadow: 0 3px 22px rgba(0, 41, 66, 0.42);
}

.care-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.care-lines div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 6px 14px;
  min-height: 148px;
  padding: 26px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.care-lines div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.care-lines span {
  color: var(--apricot);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
}

.care-lines strong {
  display: block;
  margin: 0;
  font-size: 21px;
  line-height: 1.35;
}

.care-lines small {
  grid-column: 2;
  color: var(--sub);
  font-size: 14px;
}

.service-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 28px auto 0;
}

.service-photo-grid article {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 34px;
  background: white;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-photo-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 80px rgba(9, 55, 45, 0.16);
}

.service-photo {
  width: 150px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: center / cover no-repeat;
  box-shadow: inset 0 0 0 12px rgba(217, 239, 229, 0.78);
}

.photo-consultation {
  background-image: url("./assets/care-consultation.png");
}

.photo-walking {
  background-image: url("./assets/nurses-walking.png");
}

.photo-medication {
  background-image: url("./assets/medication-support.png");
}

.photo-private {
  background-image: url("./assets/hero-hiromaru.png");
  background-position: 62% 42%;
}

.service-copy {
  min-width: 0;
}

.service-copy span {
  display: block;
  color: var(--blue);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: right;
}

.service-copy h3 {
  margin: 0;
  color: #263e55;
  font-size: clamp(25px, 2.7vw, 34px);
  line-height: 1.32;
}

.service-copy p {
  margin: 16px 0 0;
  color: #344d61;
  font-weight: 700;
}

.service-photo-grid article > a {
  display: none;
}

.service-photo-grid article:nth-child(2) > a,
.service-photo-grid article:nth-child(4) > a {
  background: #18a6b2;
}

.service-photo-grid article > a::after {
  content: "→";
  position: absolute;
  right: 18px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-50%);
}

.professional-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
  background: var(--deep);
  color: white;
}

.professional-copy .section-kicker,
.professional-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.request-box {
  padding: 34px;
  border-radius: var(--edge);
  background: rgba(255, 255, 255, 0.1);
}

.request-box p {
  margin: 0 0 12px;
  font-weight: 900;
}

.request-box ul {
  margin: 0;
  padding-left: 20px;
}

.request-box li {
  margin: 8px 0;
}

.professional-contact-line {
  display: inline-grid;
  gap: 6px;
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.professional-contact-line span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
}

.professional-contact-line strong {
  color: white;
  font-size: clamp(18px, 2vw, 25px);
  letter-spacing: 0;
}

.private-section {
  background:
    linear-gradient(90deg, var(--paper) 0%, var(--paper) 55%, #e7f6fb 55%, #e7f6fb 100%),
    var(--paper);
}

.private-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.course-intro {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  width: min(960px, 100%);
  margin: -8px 0 28px;
  padding: 24px 28px;
  border-radius: var(--edge);
  background: white;
  box-shadow: 0 18px 54px rgba(9, 55, 45, 0.08);
}

.course-intro span {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.course-intro strong {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.private-visual {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 66px);
  align-items: center;
  margin: 0 0 26px;
  padding: clamp(22px, 4vw, 40px);
  border-left: 8px solid var(--green);
  background: rgba(255, 253, 250, 0.78);
  box-shadow: 0 18px 54px rgba(9, 55, 45, 0.08);
}

.private-photo {
  min-height: 300px;
  background: url("./assets/nurses-walking.png") center / cover no-repeat;
}

.private-visual h3 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.28;
}

.private-visual p:not(.section-kicker) {
  color: var(--sub);
  font-size: 17px;
}

.private-grid article {
  min-height: 230px;
  padding: 28px;
  border-left: 1px solid rgba(7, 141, 186, 0.18);
  border-radius: 0;
  background: #e7f6fb;
  position: relative;
  overflow: hidden;
}

.private-grid article::after {
  content: "HIRO";
  position: absolute;
  right: 16px;
  bottom: 8px;
  color: rgba(7, 141, 186, 0.16);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.private-grid h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.4;
}

.private-grid p {
  margin: 0;
  color: var(--sub);
}

.fee-section {
  background: var(--cream);
}

.fee-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(1120px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: white;
  box-shadow: var(--soft-shadow);
}

.fee-overview article {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.fee-overview article:last-child {
  border-right: 0;
}

.fee-overview span {
  color: var(--orange);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.fee-overview strong {
  display: block;
  margin-top: 22px;
  color: var(--blue-deep);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.3;
}

.fee-overview p {
  margin: 14px 0 0;
  color: var(--sub);
}

.fee-compact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: min(1120px, 100%);
  margin: 18px auto 0;
  padding: 24px 28px;
  color: white;
  background: var(--blue-deep);
}

.fee-compact span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fee-compact strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.45;
}

.fee-system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto 26px;
}

.fee-system-grid article {
  min-height: 210px;
  padding: 24px;
  background: white;
  border-top: 5px solid var(--blue);
  box-shadow: var(--soft-shadow);
}

.fee-system-grid span,
.fee-simulation span,
.fee-table-title span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fee-system-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 23px;
  line-height: 1.35;
}

.fee-system-grid p,
.fee-simulation p,
.fee-notes p {
  margin: 10px 0 0;
  color: var(--sub);
}

.fee-table-wrap {
  width: min(1120px, 100%);
  margin: 0 auto 22px;
  overflow-x: auto;
  background: white;
  box-shadow: var(--soft-shadow);
}

.fee-table-title {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.fee-table-title strong {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
}

.area-section {
  padding: clamp(58px, 7vw, 96px) clamp(22px, 7vw, 110px);
  background:
    linear-gradient(180deg, #dff3fa 0%, #f7fbfe 72%, #fffdfa 100%);
}

.area-stage {
  position: relative;
  width: min(980px, 100%);
  min-height: clamp(360px, 36vw, 480px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(7, 141, 186, 0.18);
  border-radius: var(--edge);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.64)),
    url("./assets/osaka-area-map.svg") center / cover no-repeat;
  box-shadow: 0 34px 90px rgba(7, 115, 158, 0.18);
}

.area-stage::before,
.area-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.area-stage::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 141, 186, 0.14), transparent 22%, transparent 78%, rgba(7, 141, 186, 0.14)),
    radial-gradient(circle at 54% 48%, rgba(242, 139, 0, 0.18), transparent 18%),
    radial-gradient(circle at 32% 58%, rgba(7, 141, 186, 0.16), transparent 16%),
    repeating-linear-gradient(0deg, rgba(6, 79, 120, 0.035) 0, rgba(6, 79, 120, 0.035) 1px, transparent 1px, transparent 54px),
    repeating-linear-gradient(90deg, rgba(6, 79, 120, 0.035) 0, rgba(6, 79, 120, 0.035) 1px, transparent 1px, transparent 54px);
}

.area-stage::after {
  content: "HIROMARU AREA";
  right: 28px;
  top: 24px;
  width: 188px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 12px 30px rgba(6, 79, 120, 0.1);
}

.area-card {
  position: absolute;
  z-index: 2;
  min-width: 190px;
  padding: 16px 48px 16px 18px;
  border: 2px solid rgba(242, 139, 0, 0.86);
  border-radius: var(--edge);
  color: var(--orange);
  background: rgba(255, 255, 255, 0.96);
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(6, 79, 120, 0.13);
  backdrop-filter: blur(10px);
}

.area-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.3;
}

.area-card span {
  display: block;
  color: var(--sub);
  font-size: 13px;
  font-weight: 800;
}

.area-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 58px;
  background: currentColor;
  opacity: 0.38;
}

.area-card::after {
  content: "→";
  position: absolute;
  right: 12px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: white;
  background: rgba(242, 139, 0, 0.28);
  transform: translateY(-50%);
}

.area-card::after {
  content: ">";
}

.osaka {
  left: 50%;
  top: 28%;
}

.amagasaki {
  left: 23%;
  top: 40%;
}

.hokusetsu {
  right: 8%;
  top: 18%;
}

.outside {
  right: 9%;
  bottom: 18%;
  border-color: var(--blue);
  color: var(--blue-deep);
}

.outside::before {
  top: auto;
  bottom: 100%;
}

.outside::after {
  background: rgba(7, 141, 186, 0.22);
}

.area-pin {
  position: absolute;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 3px solid var(--orange);
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 10px rgba(242, 139, 0, 0.12), 0 16px 32px rgba(6, 79, 120, 0.16);
}

.area-pin span {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.pin-01 {
  left: 57%;
  top: 48%;
}

.pin-02 {
  left: 32%;
  top: 58%;
}

.pin-03 {
  right: 17%;
  top: 39%;
}

.pin-04 {
  right: 24%;
  bottom: 30%;
  border-color: var(--blue);
}

.area-map-label {
  position: absolute;
  color: rgba(6, 79, 120, 0.18);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 900;
}

.label-osaka {
  left: 58%;
  bottom: 20%;
}

.label-hyogo {
  left: 12%;
  bottom: 24%;
}

.area-note {
  position: absolute;
  left: clamp(18px, 4vw, 52px);
  bottom: clamp(18px, 4vw, 48px);
  z-index: 3;
  display: grid;
  gap: 4px;
  width: min(360px, calc(100% - 36px));
  padding: 22px 24px;
  border: 1px solid rgba(7, 141, 186, 0.14);
  border-left: 6px solid var(--blue);
  border-radius: var(--edge);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(6, 79, 120, 0.14);
  backdrop-filter: blur(12px);
}

.area-note strong {
  color: var(--blue-deep);
  font-size: 21px;
  line-height: 1.3;
}

.area-note span {
  color: var(--sub);
  font-size: 14px;
  line-height: 1.7;
}

.area-link {
  display: none;
  justify-content: center;
  width: min(360px, 100%);
  margin: 38px auto 0;
  padding: 20px 30px;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(7, 141, 186, 0.2);
}

.fee-table {
  min-width: 760px;
  width: 100%;
  margin: 0;
  border-radius: var(--edge);
  overflow: hidden;
  background: white;
}

.fee-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.6fr) repeat(4, minmax(110px, 1fr));
  border-bottom: 1px solid var(--line);
}

.care-fee .fee-row {
  grid-template-columns: minmax(220px, 1fr) minmax(160px, 1fr);
}

.fee-row:last-child {
  border-bottom: 0;
}

.fee-row span {
  padding: 20px 24px;
}

.fee-row span:first-child {
  font-weight: 900;
  border-right: 1px solid var(--line);
}

.fee-row.head {
  color: white;
  background: var(--blue);
  font-weight: 900;
}

.fee-row:not(.head) span:not(:first-child) {
  font-weight: 800;
}

.fee-simulation {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, 100%);
  margin: 26px auto 0;
}

.fee-simulation div {
  padding: 26px;
  color: white;
  background: var(--blue-deep);
}

.fee-simulation div:nth-child(2) {
  background: var(--blue);
}

.fee-simulation div:nth-child(3) {
  background: #0a6e9c;
}

.fee-simulation span,
.fee-simulation p {
  color: rgba(255, 255, 255, 0.78);
}

.fee-simulation strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.25;
}

.fee-notes {
  display: grid;
  gap: 10px;
  width: min(1120px, 100%);
  margin: 22px auto 0;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.74);
  border-left: 6px solid var(--orange);
}

.fee-notes p {
  margin: 0;
}

.fee-notes strong {
  color: var(--blue-deep);
}

.price-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 132px clamp(22px, 7vw, 110px) 70px;
  color: white;
  background:
    linear-gradient(90deg, rgba(6, 79, 120, 0.92), rgba(7, 141, 186, 0.66), rgba(7, 141, 186, 0.1)),
    url("./assets/care-consultation.png") center right / cover no-repeat;
}

.price-hero > div {
  width: min(760px, 100%);
}

.price-hero .section-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.price-hero h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
}

.price-hero p:not(.section-kicker) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
}

.price-detail-section {
  background: var(--cream);
}

.price-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 28px;
  align-items: center;
  width: min(1120px, 100%);
  margin: 26px auto 0;
  padding: 30px;
  color: white;
  background: var(--blue-deep);
}

.price-contact strong {
  font-size: clamp(23px, 3vw, 38px);
  line-height: 1.25;
}

.price-contact p {
  grid-column: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.price-contact .btn {
  grid-row: 1 / span 2;
  grid-column: 2;
}

.home-page .private-section,
.home-page .fee-section,
.home-page .flow-section {
  display: none;
}

.home-page .fixed-actions {
  display: none;
}

.flow-section {
  background:
    linear-gradient(180deg, var(--paper) 0%, #eef8fc 100%);
}

.flow-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 62px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--lime), var(--orange));
  opacity: 0.34;
}

.flow-list li {
  position: relative;
  min-height: 270px;
  padding: 32px 28px 30px;
  border: 1px solid rgba(7, 141, 186, 0.14);
  border-radius: var(--edge);
  background: white;
  box-shadow: 0 20px 58px rgba(6, 79, 120, 0.1);
}

.flow-list span {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: white;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(7, 141, 186, 0.22);
}

.flow-list strong {
  display: block;
  margin: 28px 0 10px;
  font-size: 24px;
  line-height: 1.45;
}

.flow-list p {
  margin: 0;
  color: var(--sub);
  font-size: 16px;
  font-weight: 700;
}

.faq-section {
  background: #eef8fc;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: min(980px, 100%);
  margin: 0 auto;
  border-top: 0;
}

.faq-list details {
  border: 1px solid rgba(7, 141, 186, 0.14);
  border-radius: var(--edge);
  background: white;
  box-shadow: 0 14px 44px rgba(6, 79, 120, 0.07);
}

.faq-list summary {
  cursor: pointer;
  padding: 24px 28px;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 900;
  color: var(--blue-deep);
}

.faq-list p {
  margin: 0;
  padding: 0 28px 26px;
  color: var(--sub);
  font-weight: 700;
}

.office-section {
  background:
    linear-gradient(180deg, #eef8fc 0%, #dff3fa 100%);
}

.office-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 76px);
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 72px);
  border-radius: var(--edge);
  border: 1px solid rgba(7, 141, 186, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.8));
  box-shadow: 0 24px 76px rgba(6, 79, 120, 0.12);
  position: relative;
  overflow: hidden;
}

.office-card::before {
  content: "Office";
  position: absolute;
  right: 28px;
  top: 14px;
  color: rgba(7, 141, 186, 0.1);
  font-size: clamp(48px, 9vw, 112px);
  font-weight: 900;
  line-height: 1;
}

dl {
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--sub);
  font-weight: 900;
}

dd {
  margin: 0;
  font-weight: 800;
  font-size: 17px;
}

.office-access {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: grid;
  gap: 24px;
  justify-items: center;
  margin-top: clamp(8px, 2vw, 22px);
  padding: clamp(34px, 5vw, 58px) clamp(20px, 5vw, 64px);
  border-top: 1px solid rgba(7, 141, 186, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.72));
}

.access-heading {
  width: min(760px, 100%);
}

.access-heading span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.access-heading strong {
  display: block;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.55;
}

.access-heading p {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 800;
  line-height: 1.9;
}

.google-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 22px;
  padding: 0 24px;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(7, 141, 186, 0.2);
}

.google-map-link::after {
  content: ">";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-left: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.office-access img {
  display: block;
  width: min(660px, 100%);
  height: auto;
  border: 1px solid #7a4a2e;
  background: #fffdf9;
  box-shadow: 0 24px 60px rgba(98, 55, 31, 0.16);
}

.recruit-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  padding: clamp(44px, 7vw, 80px) clamp(22px, 7vw, 110px);
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 12%, rgba(7, 141, 186, 0.14), transparent 26%),
    linear-gradient(135deg, #fff1e8 0%, #f8fbfc 100%);
}

.recruit-copy {
  max-width: 620px;
}

.recruit-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.22;
}

.recruit-copy p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--sub);
  font-weight: 700;
}

.recruit-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.recruit-points article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(7, 141, 186, 0.12);
  border-radius: var(--edge);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(6, 79, 120, 0.08);
}

.recruit-points span {
  color: var(--orange);
  font-weight: 900;
}

.recruit-points strong {
  color: var(--blue-deep);
  font-size: 20px;
  line-height: 1.35;
}

.recruit-points small {
  color: var(--sub);
  font-weight: 700;
  line-height: 1.65;
}

.area-stage {
  min-height: clamp(360px, 34vw, 460px);
  background:
    radial-gradient(circle at 50% 52%, rgba(242, 139, 0, 0.16) 0 15%, transparent 16%),
    radial-gradient(circle at 50% 52%, rgba(7, 141, 186, 0.16) 0 31%, transparent 32%),
    radial-gradient(circle at 50% 52%, rgba(7, 141, 186, 0.08) 0 46%, transparent 47%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.92)),
    repeating-linear-gradient(0deg, rgba(6, 79, 120, 0.045) 0, rgba(6, 79, 120, 0.045) 1px, transparent 1px, transparent 42px),
    repeating-linear-gradient(90deg, rgba(6, 79, 120, 0.045) 0, rgba(6, 79, 120, 0.045) 1px, transparent 1px, transparent 42px);
}

.area-stage::before {
  left: 50%;
  top: 52%;
  width: min(520px, 62vw);
  aspect-ratio: 1;
  border: 2px solid rgba(7, 141, 186, 0.36);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 141, 186, 0.08), rgba(7, 141, 186, 0.02) 58%, transparent 59%);
  transform: translate(-50%, -50%);
}

.area-card {
  display: grid;
  place-items: center;
  width: clamp(138px, 15vw, 176px);
  aspect-ratio: 1;
  min-width: 0;
  padding: 18px;
  border-radius: 50%;
  text-align: center;
}

.area-card::before,
.area-card::after {
  content: none;
}

.area-card strong {
  font-size: clamp(18px, 1.8vw, 24px);
  text-align: center;
}

.area-card span {
  text-align: center;
}

.osaka {
  left: 50%;
  top: 52%;
  color: white;
  background: var(--blue);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%);
}

.osaka span {
  color: rgba(255, 255, 255, 0.82);
}

.amagasaki {
  left: 18%;
  top: 52%;
  transform: translateY(-50%);
}

.hokusetsu {
  right: 18%;
  top: 18%;
}

.outside {
  right: 15%;
  bottom: 14%;
}

.area-pin {
  display: none;
}

.label-osaka {
  left: 56%;
  bottom: 18%;
}

.label-hyogo {
  left: 13%;
  bottom: 20%;
}

.google-map-frame {
  display: block;
  width: min(760px, 100%);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(7, 141, 186, 0.18);
  border-radius: var(--edge);
  background: #eef8fc;
  box-shadow: 0 24px 60px rgba(6, 79, 120, 0.14);
}

.google-access-map {
  width: min(860px, 100%);
  overflow: hidden;
  border: 1px solid rgba(7, 141, 186, 0.18);
  border-radius: var(--edge);
  background: white;
  box-shadow: 0 24px 60px rgba(6, 79, 120, 0.14);
}

.google-access-map .google-map-frame {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.map-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  border-top: 1px solid rgba(7, 141, 186, 0.14);
  background: linear-gradient(90deg, #ffffff, #eef8fc);
}

.map-action-bar span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-action-bar strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
}

.map-action-bar .google-map-link {
  flex: 0 0 auto;
  margin-top: 0;
}

.recruit-strip .section-kicker {
  color: rgba(23, 35, 31, 0.65);
}

.contact-section {
  padding: clamp(86px, 12vw, 160px) clamp(22px, 7vw, 110px);
  background: var(--paper);
}

.contact-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(38px, 6vw, 84px);
  border-radius: var(--edge);
  color: white;
  background:
    linear-gradient(120deg, rgba(6, 79, 120, 0.96), rgba(7, 141, 186, 0.78) 56%, rgba(7, 141, 186, 0.26)),
    url("./assets/nurses-walking.png") center 46% / cover no-repeat;
  box-shadow: 0 34px 90px rgba(6, 79, 120, 0.2);
}

.contact-inner .section-kicker,
.contact-inner p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.contact-route-grid div {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--edge);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.contact-route-grid span {
  display: block;
  color: var(--apricot);
  font-size: 14px;
  font-weight: 900;
}

.contact-route-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 21px;
  line-height: 1.4;
}

.contact-route-grid small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(22px, 7vw, 110px) 98px;
  color: var(--sub);
  background: var(--paper);
}

.fixed-actions {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(2, 112px);
  box-shadow: 0 -12px 34px rgba(9, 55, 45, 0.12);
}

.fixed-action {
  display: grid;
  place-items: center;
  min-height: 84px;
  padding: 10px;
  color: white;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.fixed-action span {
  display: block;
  font-size: 11px;
  opacity: 0.85;
  text-transform: uppercase;
}

.area-action {
  background: #e7b900;
}

.contact-action {
  background: var(--blue);
}

.contact-page {
  background: #eef8fc;
}

.contact-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: 142px clamp(22px, 7vw, 110px) 76px;
  color: white;
  background:
    linear-gradient(105deg, rgba(6, 79, 120, 0.96), rgba(7, 141, 186, 0.78) 50%, rgba(7, 141, 186, 0.12)),
    url("./assets/hero-hiromaru-users.png") 62% 38% / cover no-repeat;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.contact-hero > div {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
}

.contact-hero h1 {
  margin: 12px 0 22px;
  font-size: clamp(46px, 7.8vw, 88px);
  line-height: 1.08;
  letter-spacing: 0;
}

.contact-hero p:not(.section-kicker) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 800;
  line-height: 2;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.contact-detail-section {
  padding-top: clamp(68px, 8vw, 110px);
}

.contact-lead-grid,
.contact-route-large {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr;
  gap: 16px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.contact-lead-grid article,
.contact-route-large article {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(7, 141, 186, 0.14);
  border-radius: var(--edge);
  background: white;
  box-shadow: 0 18px 56px rgba(6, 79, 120, 0.09);
}

.contact-lead-grid article span,
.contact-route-large article span,
.contact-bottom-cta span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-lead-grid article strong,
.contact-route-large article strong,
.contact-bottom-cta strong {
  display: block;
  margin-top: 10px;
  color: var(--blue-deep);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
}

.contact-lead-grid article p,
.contact-route-large article p,
.contact-bottom-cta p {
  margin: 14px 0 0;
  color: var(--sub);
  font-weight: 700;
  line-height: 1.9;
}

.contact-main-card {
  color: white;
  background:
    linear-gradient(135deg, rgba(6, 79, 120, 0.96), rgba(7, 141, 186, 0.86)) !important;
}

.contact-main-card span,
.contact-main-card strong,
.contact-main-card p {
  color: white !important;
}

.contact-main-card .btn {
  margin-top: 24px;
}

.compact-head {
  margin-top: clamp(54px, 7vw, 90px);
  margin-bottom: 24px;
}

.contact-route-large {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-route-large article {
  min-height: 220px;
}

.contact-route-large article span {
  color: var(--orange);
  font-size: 16px;
}

.contact-prep-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  width: min(1120px, 100%);
  margin: clamp(56px, 8vw, 96px) auto 0;
  padding: clamp(30px, 5vw, 64px);
  border-radius: var(--edge);
  background:
    radial-gradient(circle at 88% 20%, rgba(242, 139, 0, 0.12), transparent 34%),
    linear-gradient(135deg, #ffffff, #eef8fc);
  box-shadow: 0 24px 70px rgba(6, 79, 120, 0.1);
}

.contact-prep-panel h2 {
  margin: 10px 0 16px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.18;
}

.contact-prep-panel p {
  color: var(--sub);
  font-weight: 700;
  line-height: 1.9;
}

.contact-prep-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-prep-panel li {
  padding: 18px 20px;
  border: 1px solid rgba(7, 141, 186, 0.14);
  border-radius: var(--edge);
  background: rgba(255, 255, 255, 0.82);
}

.contact-prep-panel li strong {
  display: block;
  color: var(--blue-deep);
  font-size: 17px;
}

.contact-prep-panel li span {
  display: block;
  margin-top: 5px;
  color: var(--sub);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.contact-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, 100%);
  margin: clamp(40px, 6vw, 72px) auto 0;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--edge);
  color: white;
  background: linear-gradient(120deg, var(--blue-deep), var(--blue));
  box-shadow: 0 26px 70px rgba(6, 79, 120, 0.16);
}

.contact-bottom-cta span,
.contact-bottom-cta strong,
.contact-bottom-cta p {
  color: white;
}

.contact-bottom-cta .btn {
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    border-radius: 18px;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 2px 6px 6px;
  }

  .hero {
    min-height: 920px;
    align-items: flex-start;
  }

  .hero-inner {
    padding-top: 70px;
    padding-bottom: 0;
  }

  .hero-panel {
    left: 20px;
    right: 20px;
    bottom: 28px;
    grid-template-columns: 1fr;
  }

  .hero-panel div,
  .hero-panel a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-panel div:last-child,
  .hero-panel a:last-child {
    border-bottom: 0;
  }

  .hero-office-note {
    display: none;
  }

  .feature-section,
  .professional-section,
  .blue-mission,
  .team-section,
  .manager-message,
  .support-board,
  .care-board,
  .private-visual,
  .office-card {
    grid-template-columns: 1fr;
  }

  .pathways {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .path-card:nth-child(2),
  .path-card:nth-child(3) {
    transform: none;
  }

  .photo-mosaic {
    width: 100%;
  }

  .care-lines,
  .service-photo-grid,
  .private-grid,
  .fee-overview,
  .fee-system-grid,
  .contact-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-hero {
    min-height: 620px;
    padding-top: 154px;
    background-position: 48% 42%;
  }

  .contact-lead-grid,
  .contact-route-large,
  .contact-prep-panel {
    grid-template-columns: 1fr;
  }

  .contact-route-large article {
    min-height: 0;
  }

  .contact-bottom-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .fee-overview article:nth-child(2) {
    border-right: 0;
  }

  .fee-overview article:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .care-board-lead {
    min-height: 330px;
  }

  .support-photo-rail {
    grid-template-columns: 1fr 1fr;
  }

  .rail-03 {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-list::before {
    display: none;
  }

  .fee-simulation {
    grid-template-columns: 1fr;
  }

  .price-contact {
    grid-template-columns: 1fr;
  }

  .price-contact p,
  .price-contact .btn {
    grid-column: auto;
    grid-row: auto;
  }

  .service-photo-grid article {
    grid-template-columns: 1fr;
  }

  .service-photo {
    width: 170px;
    margin: 0 auto 22px;
  }

  .area-stage {
    min-height: 500px;
  }

  .osaka {
    left: 40%;
    top: 30%;
  }

  .amagasaki {
    left: 7%;
    top: 46%;
  }

  .hokusetsu {
    right: 6%;
    top: 16%;
  }

  .outside {
    right: 8%;
    bottom: 20%;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 48px;
    width: calc(100vw - 20px);
    gap: 10px;
    grid-template-columns: 1fr auto;
    border-radius: 999px;
  }

  .site-nav {
    display: none;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .header-contact {
    min-height: 38px;
    padding: 0 14px;
  }

  .hero {
    min-height: 930px;
    padding: 132px 18px 32px;
  }

  .hero-bg {
    background-position: 22% 40%;
  }

  .top-info-banner {
    justify-content: center;
    gap: 9px;
    min-height: 38px;
    padding: 0 10px;
    font-size: 10px;
  }

  .top-info-banner span {
    display: none;
  }

  .hero h1 {
    max-width: 360px;
    font-size: 50px;
    line-height: 1.08;
  }

  .hero-lead {
    font-size: 17px;
    line-height: 1.85;
  }

  .statement,
  .section,
  .blue-mission,
  .team-section,
  .manager-message,
  .area-section,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .pathways {
    width: calc(100vw - 36px);
  }

  .path-card {
    min-height: 150px;
    padding: 24px;
  }

  .path-card strong {
    font-size: 22px;
    line-height: 1.5;
  }

  .care-lines,
  .service-photo-grid,
  .private-grid,
  .fee-overview,
  .fee-system-grid,
  .contact-route-grid,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .fee-overview article,
  .fee-overview article:nth-child(2),
  .fee-overview article:last-child {
    min-height: auto;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .fee-overview article:first-child {
    border-top: 0;
  }

  .fee-compact {
    display: grid;
    padding: 22px;
  }

  .price-hero {
    min-height: 460px;
    padding: 108px 18px 56px;
  }

  .fee-table-title {
    display: grid;
  }

  .fee-system-grid article {
    min-height: auto;
  }

  .photo-mosaic {
    gap: 6px;
  }

  .mosaic-photo {
    min-height: 178px;
  }

  .mosaic-01 {
    border-top-left-radius: 58px;
  }

  .mosaic-02 {
    border-top-right-radius: 58px;
  }

  .mosaic-03 {
    border-bottom-left-radius: 58px;
  }

  .mosaic-04 {
    border-bottom-right-radius: 58px;
  }

  .mission-links {
    grid-template-columns: 1fr;
  }

  .mission-proof {
    grid-template-columns: 1fr;
  }

  .service-photo-grid article {
    min-height: auto;
    padding: 28px 22px;
  }

  .service-copy span {
    text-align: left;
  }

  .area-stage {
    min-height: 560px;
  }

  .area-card {
    min-width: 178px;
    padding: 14px 42px 14px 14px;
  }

  .area-card strong {
    font-size: 17px;
  }

  .area-card span {
    font-size: 12px;
  }

  .osaka {
    left: 28%;
    top: 34%;
  }

  .amagasaki {
    left: 6%;
    top: 52%;
  }

  .hokusetsu {
    right: 4%;
    top: 16%;
  }

  .outside {
    right: 4%;
    bottom: 18%;
  }

  .pin-01 {
    left: 48%;
    top: 48%;
  }

  .pin-02 {
    left: 20%;
    top: 68%;
  }

  .pin-03 {
    right: 18%;
    top: 31%;
  }

  .pin-04 {
    right: 26%;
    bottom: 36%;
  }

  .area-note {
    bottom: 18px;
    padding: 16px 18px;
  }

  .flow-list li {
    min-height: auto;
    padding: 26px 22px;
  }

  .flow-list span {
    width: 60px;
    height: 60px;
  }

  .fixed-actions {
    left: 0;
    right: 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .fixed-action {
    min-height: 68px;
  }

  .care-lines div {
    border-left: 0;
  }

  .care-lines div:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .care-lines div:last-child {
    border-bottom: 0;
  }

  .support-photo-rail {
    grid-template-columns: 1fr;
  }

  .rail-02,
  .rail-03 {
    margin-top: 0;
  }

  .course-intro {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .feature-list article {
    grid-template-columns: 1fr;
  }

  .feature-list p {
    grid-column: auto;
  }

  .team-cards article {
    grid-template-columns: 1fr;
  }

  .team-cards p {
    grid-column: auto;
  }

  .manager-message {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .manager-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .manager-mosaic {
    min-height: 360px;
  }

  .manager-points {
    grid-template-columns: 1fr;
  }

  .fee-row {
    grid-template-columns: 1fr;
  }

  .fee-row span:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .recruit-strip {
    grid-template-columns: 1fr;
  }

  .recruit-points {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.area-stage {
  min-height: clamp(360px, 34vw, 460px);
}

.area-stage::before {
  left: 50%;
  top: 52%;
  width: min(520px, 62vw);
  aspect-ratio: 1;
  border: 2px solid rgba(7, 141, 186, 0.36);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 141, 186, 0.08), rgba(7, 141, 186, 0.02) 58%, transparent 59%);
  transform: translate(-50%, -50%);
}

.area-card {
  display: grid;
  place-items: center;
  width: clamp(138px, 15vw, 176px);
  aspect-ratio: 1;
  min-width: 0;
  padding: 18px;
  border-radius: 50%;
  text-align: center;
}

.area-card::before,
.area-card::after {
  content: none;
}

.osaka {
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
}

.amagasaki {
  left: 18%;
  top: 52%;
  transform: translateY(-50%);
}

.hokusetsu {
  right: 18%;
  top: 18%;
}

.outside {
  right: 15%;
  bottom: 14%;
}

.area-pin {
  display: none;
}

@media (max-width: 640px) {
  .area-stage {
    min-height: 620px;
  }

  .area-card {
    width: 148px;
  }

  .osaka {
    left: 50%;
    top: 44%;
  }

  .amagasaki {
    left: 7%;
    top: 43%;
  }

  .hokusetsu {
    right: 7%;
    top: 22%;
  }

  .outside {
    right: 7%;
    bottom: 20%;
  }
}

.access-clean-map {
  position: relative;
  width: min(780px, 100%);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(7, 141, 186, 0.18);
  border-radius: var(--edge);
  background:
    linear-gradient(180deg, rgba(223, 243, 250, 0.82), rgba(255, 255, 255, 0.96)),
    repeating-linear-gradient(0deg, rgba(6, 79, 120, 0.06) 0, rgba(6, 79, 120, 0.06) 1px, transparent 1px, transparent 58px),
    repeating-linear-gradient(90deg, rgba(6, 79, 120, 0.06) 0, rgba(6, 79, 120, 0.06) 1px, transparent 1px, transparent 58px);
  box-shadow: 0 24px 60px rgba(6, 79, 120, 0.12);
}

.access-roads,
.access-clean-map span,
.access-station,
.access-hospital,
.access-pin-card,
.access-clean-map .google-map-link {
  position: absolute;
}

.access-roads {
  inset: 0;
}

.road {
  display: block;
  height: 24px;
  border-radius: 999px;
  background: #b9864f;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.24);
}

.road-a {
  left: -10%;
  top: 42%;
  width: 120%;
  transform: rotate(-6deg);
}

.road-b {
  left: -8%;
  top: 66%;
  width: 116%;
  transform: rotate(-4deg);
}

.road-c {
  left: 18%;
  top: -12%;
  width: 24px;
  height: 128%;
  transform: rotate(-2deg);
}

.road-d {
  right: 17%;
  top: -10%;
  width: 24px;
  height: 120%;
  transform: rotate(25deg);
}

.map-block {
  display: block;
  border: 1px solid rgba(6, 79, 120, 0.12);
  background: rgba(255, 255, 255, 0.42);
}

.block-a {
  left: 8%;
  top: 13%;
  width: 28%;
  height: 18%;
}

.block-b {
  right: 10%;
  top: 18%;
  width: 28%;
  height: 18%;
}

.block-c {
  left: 32%;
  bottom: 9%;
  width: 34%;
  height: 17%;
}

.access-pin-card {
  left: 50%;
  top: 34%;
  z-index: 3;
  display: grid;
  gap: 4px;
  width: min(390px, 80%);
  padding: 22px 26px;
  border-radius: var(--edge);
  color: white;
  background: var(--orange);
  box-shadow: 0 18px 46px rgba(242, 139, 0, 0.28);
  transform: translateX(-50%);
}

.access-pin-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -38px;
  width: 0;
  height: 0;
  border-top: 38px solid var(--orange);
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  transform: translateX(-50%);
}

.access-pin-card span {
  position: static;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.access-pin-card strong {
  font-size: clamp(23px, 2.4vw, 31px);
  line-height: 1.25;
}

.access-pin-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 800;
}

.access-station,
.access-hospital {
  z-index: 2;
  color: rgba(6, 79, 120, 0.72);
  font-weight: 900;
}

.access-station {
  right: 9%;
  bottom: 18%;
}

.access-hospital {
  left: 12%;
  bottom: 17%;
}

.access-clean-map .google-map-link {
  left: 50%;
  bottom: 22px;
  z-index: 4;
  margin-top: 0;
  transform: translateX(-50%);
  white-space: nowrap;
}

.policy-cta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 22px;
  align-items: center;
  margin-top: 4px;
  padding: clamp(26px, 4vw, 38px);
  border-radius: var(--edge);
  color: white;
  background:
    linear-gradient(120deg, rgba(6, 79, 120, 0.96), rgba(7, 141, 186, 0.86)),
    var(--blue);
  box-shadow: 0 22px 62px rgba(6, 79, 120, 0.15);
}

.policy-cta-bottom {
  width: min(1120px, calc(100% - 48px));
  margin: clamp(34px, 5vw, 62px) auto clamp(18px, 4vw, 40px);
  padding: clamp(22px, 3.4vw, 32px);
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  background:
    linear-gradient(120deg, rgba(6, 79, 120, 0.92), rgba(7, 141, 186, 0.78)),
    var(--blue);
  box-shadow: 0 18px 54px rgba(6, 79, 120, 0.12);
}

.policy-cta span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.policy-cta strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.25;
}

.policy-cta-bottom strong {
  font-size: clamp(22px, 2.2vw, 30px);
}

.policy-cta p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.policy-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.policy-buttons a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 20px 22px;
  border-radius: var(--edge);
  color: var(--blue-deep);
  background: white;
  font-weight: 900;
  line-height: 1.45;
}

.policy-cta-bottom .policy-buttons a {
  min-height: 68px;
  padding: 16px 18px;
}

.policy-buttons a::after {
  content: ">";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  margin-left: 14px;
  border-radius: 50%;
  color: white;
  background: var(--blue);
}

.fee-guide-block {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: clamp(24px, 4vw, 46px);
  width: min(1120px, 100%);
  margin: 28px auto 0;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--edge);
  background: white;
  box-shadow: 0 22px 62px rgba(6, 79, 120, 0.1);
}

.fee-guide-block h2 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.25;
}

.fee-guide-block p {
  color: var(--sub);
  font-weight: 700;
}

.fee-guide-block ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fee-guide-block li {
  padding: 18px 20px;
  border-left: 5px solid var(--blue);
  background: #eef8fc;
}

.fee-guide-block li strong,
.fee-guide-block li span {
  display: block;
}

.fee-guide-block li span {
  color: var(--sub);
  font-size: 15px;
  font-weight: 700;
}

.region-fee-note {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 18px;
  width: min(1120px, 100%);
  margin: 18px auto 0;
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--edge);
  color: white;
  background:
    linear-gradient(135deg, rgba(6, 79, 120, 0.96), rgba(7, 141, 186, 0.86)),
    var(--blue-deep);
  box-shadow: 0 22px 62px rgba(6, 79, 120, 0.12);
}

.region-fee-note span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.region-fee-note strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.32;
}

.region-fee-note p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.region-fee-note ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.region-fee-note li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--edge);
  background: rgba(255, 255, 255, 0.12);
}

.region-fee-note li strong {
  margin: 0;
  font-size: 18px;
}

.region-fee-note li span {
  text-transform: none;
}

.support-cap-grid,
.private-fee-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, 100%);
  margin: 26px auto 0;
}

.support-cap-grid article,
.private-fee-grid article {
  min-height: 200px;
  padding: 26px;
  border: 1px solid rgba(7, 141, 186, 0.14);
  border-radius: var(--edge);
  background: white;
  box-shadow: 0 16px 46px rgba(6, 79, 120, 0.08);
}

.support-cap-grid span,
.private-fee-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.support-cap-grid strong,
.private-fee-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--blue-deep);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.3;
}

.support-cap-grid p,
.private-fee-grid p {
  margin: 12px 0 0;
  color: var(--sub);
  font-weight: 700;
}

.private-fee-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.private-fee-grid article {
  min-height: 150px;
}

.private-fee-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
}

.private-fee-grid article span,
.private-fee-grid article strong,
.private-fee-grid article p {
  min-width: 0;
  overflow-wrap: anywhere;
}

.private-fee-block {
  margin-top: 34px;
}

.private-fee-note {
  max-width: 900px;
  margin: 18px auto 0;
  color: var(--sub);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  text-align: center;
}

.care-fee .fee-row {
  grid-template-columns: minmax(220px, 1.2fr) repeat(4, minmax(110px, 0.7fr));
}

.legal-hero {
  position: relative;
  min-height: 440px;
  display: grid;
  align-items: end;
  padding: 132px clamp(22px, 7vw, 110px) 70px;
  color: white;
  background:
    linear-gradient(110deg, rgba(6, 79, 120, 0.95), rgba(7, 141, 186, 0.82) 58%, rgba(242, 139, 0, 0.26)),
    url("./assets/nurses-walking.png") center / cover no-repeat;
}

.legal-hero > div {
  width: min(860px, 100%);
}

.legal-hero .section-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.12;
}

.legal-hero p:not(.section-kicker) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
}

.legal-section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 7vw, 110px);
  background: #eef8fc;
}

.legal-card {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--edge);
  background: white;
  box-shadow: 0 24px 76px rgba(6, 79, 120, 0.12);
}

.legal-card h2 {
  margin: 38px 0 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(7, 141, 186, 0.14);
  color: var(--blue-deep);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.45;
}

.legal-card h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--sub);
  font-weight: 700;
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 1.25em;
}

.legal-card address {
  margin-top: 14px;
  padding: 20px;
  border-left: 5px solid var(--blue);
  background: #eef8fc;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

.legal-enactment {
  margin-top: 36px;
  padding: 18px 20px;
  border-radius: var(--edge);
  background: #eef8fc;
  color: var(--blue-deep);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--blue-deep);
  font-weight: 900;
}

@media (max-width: 980px) {
  .policy-cta,
  .fee-guide-block,
  .region-fee-note {
    grid-template-columns: 1fr;
  }

  .support-cap-grid,
  .private-fee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .access-clean-map {
    min-height: 390px;
  }

  .google-access-map .google-map-frame {
    min-height: 360px;
  }

  .map-action-bar {
    display: grid;
    padding: 18px;
  }

  .map-action-bar .google-map-link {
    width: 100%;
  }

  .access-pin-card {
    width: calc(100% - 40px);
    top: 31%;
  }

  .policy-buttons,
  .support-cap-grid,
  .private-fee-grid {
    grid-template-columns: 1fr;
  }

  .price-detail-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .fee-table-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: var(--edge);
  }

  .fee-table-title {
    padding: 24px 22px;
  }

  .private-fee-grid {
    gap: 12px;
    margin-top: 18px;
  }

  .private-fee-grid article {
    min-height: auto;
    padding: 24px 24px 22px;
    border-left: 5px solid var(--blue);
    box-shadow: 0 14px 36px rgba(6, 79, 120, 0.08);
  }

  .private-fee-grid span {
    font-size: 11px;
    line-height: 1;
  }

  .private-fee-grid strong {
    margin-top: 4px;
    font-size: 24px;
  }

  .private-fee-grid p {
    margin-top: 4px;
    font-size: 18px;
  }

  .care-fee .fee-row {
    grid-template-columns: 1fr;
  }

  .region-fee-note li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .legal-hero {
    min-height: 380px;
    padding: 108px 18px 54px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

.sub-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 6vw, 88px);
  background: rgba(255, 253, 250, 0.94);
  box-shadow: 0 12px 38px rgba(6, 79, 120, 0.08);
  backdrop-filter: blur(14px);
}

.sub-header .site-nav {
  justify-content: flex-end;
}

.sub-hero {
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: clamp(80px, 10vw, 140px) clamp(22px, 7vw, 110px) clamp(54px, 7vw, 88px);
  color: white;
  background:
    linear-gradient(90deg, rgba(6, 79, 120, 0.94), rgba(7, 141, 186, 0.64), rgba(7, 141, 186, 0.08)),
    url("./assets/nurses-walking.png") center / cover no-repeat;
}

.message-hero {
  background:
    linear-gradient(90deg, rgba(6, 79, 120, 0.88) 0%, rgba(7, 141, 186, 0.42) 42%, rgba(255, 255, 255, 0.02) 78%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    url("./assets/message-hero-generated.png") center / cover no-repeat;
}

.recruit-hero {
  background:
    linear-gradient(90deg, rgba(6, 79, 120, 0.88) 0%, rgba(7, 141, 186, 0.42) 42%, rgba(255, 255, 255, 0.02) 78%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    url("./assets/recruit-hero-generated.png") center / cover no-repeat;
}

.sub-hero > div {
  width: min(900px, 100%);
}

.sub-hero .section-kicker,
.sub-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.sub-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.16;
}

.sub-hero p:not(.section-kicker) {
  width: min(700px, 100%);
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
}

.message-detail {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  padding: clamp(62px, 9vw, 118px) clamp(22px, 7vw, 110px);
  background: #eef8fc;
}

.message-portrait {
  display: grid;
  gap: 22px;
  padding: 30px;
  border-radius: var(--edge);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 252, 0.86)),
    white;
  box-shadow: 0 24px 76px rgba(6, 79, 120, 0.12);
}

.message-profile-panel {
  min-height: 180px;
  display: grid;
  align-content: end;
  padding: 24px;
  border-radius: calc(var(--edge) - 4px);
  color: white;
  background:
    linear-gradient(135deg, rgba(6, 79, 120, 0.92), rgba(7, 141, 186, 0.78)),
    var(--blue);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.message-profile-panel span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.message-profile-panel strong {
  margin-top: 8px;
  color: white;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.22;
}

.message-portrait div {
  display: grid;
  gap: 6px;
  text-align: center;
}

.message-portrait span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.message-portrait strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.25;
}

.message-letter {
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--edge);
  background: white;
  box-shadow: 0 24px 76px rgba(6, 79, 120, 0.1);
}

.message-letter p {
  margin: 0 0 22px;
  color: var(--sub);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 700;
}

.message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.recruit-detail {
  padding: clamp(62px, 9vw, 118px) clamp(22px, 7vw, 110px);
  background: var(--paper);
}

.recruit-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.recruit-detail-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(7, 141, 186, 0.14);
  border-radius: var(--edge);
  background: white;
  box-shadow: 0 18px 54px rgba(6, 79, 120, 0.08);
}

.recruit-detail-grid span {
  color: var(--orange);
  font-weight: 900;
}

.recruit-detail-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--blue-deep);
  font-size: 24px;
  line-height: 1.35;
}

.recruit-detail-grid p {
  margin: 12px 0 0;
  color: var(--sub);
  font-weight: 700;
}

.recruit-note {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 28px;
  border-radius: var(--edge);
  color: white;
  background: var(--blue-deep);
}

.recruit-note strong {
  font-size: 24px;
}

.recruit-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.recruit-note .btn {
  width: fit-content;
}

@media (max-width: 980px) {
  .detail-links,
  .message-detail,
  .recruit-detail-grid,
  .sub-header {
    grid-template-columns: 1fr;
  }

  .sub-header .site-nav {
    justify-content: flex-start;
  }
}

/* Area map redesign */
.area-section {
  padding: clamp(58px, 7vw, 96px) clamp(22px, 7vw, 110px);
  background: linear-gradient(180deg, #e3f5fb 0%, #f7fbfe 68%, #fffdfa 100%);
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.78fr) minmax(520px, 1.35fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 34px auto 0;
}

.area-copy {
  display: grid;
  gap: 22px;
}

.area-copy > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.area-copy h3 {
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.18;
  letter-spacing: 0;
}

.area-copy ul {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.area-copy li {
  display: grid;
  gap: 6px;
  padding-left: 22px;
  border-left: 4px solid rgba(7, 141, 186, 0.22);
}

.area-copy li:nth-child(even) {
  border-left-color: rgba(242, 139, 0, 0.5);
}

.area-copy strong {
  color: var(--blue-deep);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
}

.area-copy em {
  color: var(--sub);
  font-style: normal;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
}

.area-stage {
  position: relative;
  width: 100%;
  min-height: 0;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.area-stage::before,
.area-stage::after {
  content: none;
}

.area-stage img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(7, 141, 186, 0.18);
  border-radius: var(--edge);
  box-shadow: 0 34px 90px rgba(7, 115, 158, 0.18);
}

.area-note {
  left: clamp(18px, 4vw, 52px);
  bottom: clamp(18px, 4vw, 42px);
  width: min(340px, calc(100% - 36px));
}

.area-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(360px, 100%);
  margin: 34px auto 0;
  padding: 18px 30px;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(7, 141, 186, 0.2);
}

.care-fee .fee-row {
  grid-template-columns: minmax(220px, 1.5fr) repeat(4, minmax(110px, 1fr));
}

@media (max-width: 900px) {
  .area-layout {
    grid-template-columns: 1fr;
  }

  .area-copy h3 {
    max-width: none;
    font-size: clamp(30px, 8vw, 46px);
  }
}

@media (max-width: 640px) {
  .area-layout {
    gap: 24px;
    margin-top: 24px;
  }

  .area-note {
    position: static;
    width: auto;
    margin-top: 14px;
  }
}

/* Reduce blue cast on photo headers */
.price-hero {
  background:
    linear-gradient(90deg, rgba(6, 79, 120, 0.66) 0%, rgba(7, 141, 186, 0.26) 42%, rgba(255, 255, 255, 0.04) 72%),
    linear-gradient(0deg, rgba(6, 79, 120, 0.12), rgba(255, 255, 255, 0.02)),
    url("./assets/care-consultation.png") center right / cover no-repeat;
}

.contact-hero {
  background:
    linear-gradient(105deg, rgba(6, 79, 120, 0.66) 0%, rgba(7, 141, 186, 0.28) 46%, rgba(255, 255, 255, 0.04) 76%),
    linear-gradient(0deg, rgba(6, 79, 120, 0.10), rgba(255, 255, 255, 0.04)),
    url("./assets/hero-hiromaru-users.png") 62% 38% / cover no-repeat;
}

.sub-hero {
  background:
    linear-gradient(90deg, rgba(6, 79, 120, 0.66) 0%, rgba(7, 141, 186, 0.28) 45%, rgba(255, 255, 255, 0.04) 78%),
    linear-gradient(0deg, rgba(6, 79, 120, 0.08), rgba(255, 255, 255, 0.08)),
    url("./assets/nurses-walking.png") center / cover no-repeat;
}

.message-hero {
  background:
    linear-gradient(90deg, rgba(6, 79, 120, 0.62) 0%, rgba(7, 141, 186, 0.22) 42%, rgba(255, 255, 255, 0.04) 78%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)),
    url("./assets/message-hero-generated.png") center / cover no-repeat;
}

.recruit-hero {
  background:
    linear-gradient(90deg, rgba(6, 79, 120, 0.62) 0%, rgba(7, 141, 186, 0.22) 42%, rgba(255, 255, 255, 0.04) 78%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)),
    url("./assets/recruit-hero-generated.png") center / cover no-repeat;
}

.contact-inner {
  background:
    linear-gradient(120deg, rgba(6, 79, 120, 0.72) 0%, rgba(7, 141, 186, 0.34) 52%, rgba(255, 255, 255, 0.06) 82%),
    linear-gradient(0deg, rgba(6, 79, 120, 0.1), rgba(255, 255, 255, 0.02)),
    url("./assets/nurses-walking.png") center 46% / cover no-repeat;
}

/* Photo light final: keep text readable without making the photos look blue */
.price-hero {
  background:
    linear-gradient(90deg, rgba(6, 79, 120, 0.46) 0%, rgba(7, 141, 186, 0.13) 40%, rgba(255, 255, 255, 0.02) 72%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.10)),
    url("./assets/care-consultation.png") center right / cover no-repeat;
}

.contact-hero {
  background:
    linear-gradient(105deg, rgba(6, 79, 120, 0.46) 0%, rgba(7, 141, 186, 0.13) 44%, rgba(255, 255, 255, 0.02) 76%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.10)),
    url("./assets/hero-hiromaru-users.png") 62% 38% / cover no-repeat;
}

.sub-hero {
  background:
    linear-gradient(90deg, rgba(6, 79, 120, 0.46) 0%, rgba(7, 141, 186, 0.13) 42%, rgba(255, 255, 255, 0.02) 78%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)),
    url("./assets/nurses-walking.png") center / cover no-repeat;
}

.message-hero {
  background:
    linear-gradient(90deg, rgba(6, 79, 120, 0.46) 0%, rgba(7, 141, 186, 0.12) 42%, rgba(255, 255, 255, 0.02) 78%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)),
    url("./assets/message-hero-generated.png") center / cover no-repeat;
}

.recruit-hero {
  background:
    linear-gradient(90deg, rgba(6, 79, 120, 0.46) 0%, rgba(7, 141, 186, 0.12) 42%, rgba(255, 255, 255, 0.02) 78%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)),
    url("./assets/recruit-hero-generated.png") center / cover no-repeat;
}

.contact-inner {
  background:
    linear-gradient(120deg, rgba(6, 79, 120, 0.50) 0%, rgba(7, 141, 186, 0.16) 52%, rgba(255, 255, 255, 0.04) 82%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)),
    url("./assets/nurses-walking.png") center 46% / cover no-repeat;
}

/* Final visual pass: warmer area map and less blue over photos */
.area-section {
  background: linear-gradient(180deg, #fff 0%, #fffaf2 100%);
}

.area-stage img {
  border-color: rgba(242, 139, 0, 0.20);
  box-shadow: 0 28px 72px rgba(150, 92, 16, 0.12);
}

.area-note {
  display: none;
}

.price-hero {
  background:
    linear-gradient(90deg, rgba(21, 35, 31, 0.48) 0%, rgba(21, 35, 31, 0.22) 34%, rgba(255, 255, 255, 0.02) 68%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    url("./assets/care-consultation.png") center right / cover no-repeat;
}

.sub-hero {
  background:
    linear-gradient(90deg, rgba(21, 35, 31, 0.48) 0%, rgba(21, 35, 31, 0.22) 36%, rgba(255, 255, 255, 0.02) 70%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    url("./assets/nurses-walking.png") center / cover no-repeat;
}

.message-hero {
  background:
    linear-gradient(90deg, rgba(21, 35, 31, 0.46) 0%, rgba(21, 35, 31, 0.20) 38%, rgba(255, 255, 255, 0.02) 72%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.20)),
    url("./assets/message-hero-generated.png") center / cover no-repeat;
}

.recruit-hero {
  background:
    linear-gradient(90deg, rgba(21, 35, 31, 0.46) 0%, rgba(21, 35, 31, 0.20) 38%, rgba(255, 255, 255, 0.02) 72%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.20)),
    url("./assets/recruit-hero-generated.png") center / cover no-repeat;
}

.contact-hero {
  background:
    linear-gradient(105deg, rgba(21, 35, 31, 0.48) 0%, rgba(21, 35, 31, 0.20) 42%, rgba(255, 255, 255, 0.02) 76%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    url("./assets/hero-hiromaru-users.png") 62% 38% / cover no-repeat;
}

.contact-inner {
  background:
    linear-gradient(120deg, rgba(21, 35, 31, 0.50) 0%, rgba(21, 35, 31, 0.18) 50%, rgba(255, 255, 255, 0.04) 82%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    url("./assets/nurses-walking.png") center 46% / cover no-repeat;
}

/* 20260625 no-blue-photo pass: keep photos natural and use only a local dark veil for text */
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(28, 34, 30, 0.52) 0%, rgba(28, 34, 30, 0.24) 27%, rgba(255, 255, 255, 0.02) 56%, rgba(255, 255, 255, 0.12) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12));
}

.price-hero {
  background:
    linear-gradient(90deg, rgba(28, 34, 30, 0.50) 0%, rgba(28, 34, 30, 0.20) 32%, rgba(255, 255, 255, 0.04) 62%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.24)),
    url("./assets/care-consultation.png") center right / cover no-repeat;
}

.sub-hero,
.legal-hero {
  background:
    linear-gradient(90deg, rgba(28, 34, 30, 0.50) 0%, rgba(28, 34, 30, 0.20) 34%, rgba(255, 255, 255, 0.04) 64%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.24)),
    url("./assets/nurses-walking.png") center / cover no-repeat;
}

.message-hero {
  background:
    linear-gradient(90deg, rgba(28, 34, 30, 0.48) 0%, rgba(28, 34, 30, 0.18) 36%, rgba(255, 255, 255, 0.04) 68%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.26)),
    url("./assets/message-hero-generated.png") center / cover no-repeat;
}

.recruit-hero {
  background:
    linear-gradient(90deg, rgba(28, 34, 30, 0.48) 0%, rgba(28, 34, 30, 0.18) 36%, rgba(255, 255, 255, 0.04) 68%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.26)),
    url("./assets/recruit-hero-generated.png") center / cover no-repeat;
}

.contact-hero {
  background:
    linear-gradient(105deg, rgba(28, 34, 30, 0.50) 0%, rgba(28, 34, 30, 0.18) 40%, rgba(255, 255, 255, 0.04) 72%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.24)),
    url("./assets/hero-hiromaru-users.png") 62% 38% / cover no-repeat;
}

.contact-inner {
  background:
    linear-gradient(120deg, rgba(28, 34, 30, 0.50) 0%, rgba(28, 34, 30, 0.18) 46%, rgba(255, 255, 255, 0.04) 78%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.24)),
    url("./assets/nurses-walking.png") center 46% / cover no-repeat;
}

.area-section {
  background: linear-gradient(180deg, #fffdfa 0%, #fff7ec 100%);
}

/* 20260625 natural-photo pass: remove the blue cast from every photo banner */
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(31, 33, 29, 0.46) 0%, rgba(31, 33, 29, 0.18) 28%, rgba(255, 255, 255, 0.03) 58%, rgba(255, 255, 255, 0.16) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18));
}

.price-hero {
  background:
    linear-gradient(90deg, rgba(31, 33, 29, 0.44) 0%, rgba(31, 33, 29, 0.14) 34%, rgba(255, 255, 255, 0.06) 64%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.34)),
    url("./assets/care-consultation.png") center right / cover no-repeat;
}

.sub-hero,
.legal-hero {
  background:
    linear-gradient(90deg, rgba(31, 33, 29, 0.44) 0%, rgba(31, 33, 29, 0.14) 35%, rgba(255, 255, 255, 0.06) 65%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.34)),
    url("./assets/nurses-walking.png") center / cover no-repeat;
}

.message-hero {
  background:
    linear-gradient(90deg, rgba(31, 33, 29, 0.42) 0%, rgba(31, 33, 29, 0.14) 38%, rgba(255, 255, 255, 0.06) 68%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.34)),
    url("./assets/message-hero-generated.png") center / cover no-repeat;
}

.recruit-hero {
  background:
    linear-gradient(90deg, rgba(31, 33, 29, 0.42) 0%, rgba(31, 33, 29, 0.14) 38%, rgba(255, 255, 255, 0.06) 68%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.34)),
    url("./assets/recruit-hero-generated.png") center / cover no-repeat;
}

.contact-hero {
  background:
    linear-gradient(105deg, rgba(31, 33, 29, 0.44) 0%, rgba(31, 33, 29, 0.14) 42%, rgba(255, 255, 255, 0.06) 74%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.34)),
    url("./assets/hero-hiromaru-users.png") 62% 38% / cover no-repeat;
}

.contact-inner {
  background:
    linear-gradient(120deg, rgba(31, 33, 29, 0.44) 0%, rgba(31, 33, 29, 0.14) 48%, rgba(255, 255, 255, 0.06) 78%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.34)),
    url("./assets/nurses-walking.png") center 46% / cover no-repeat;
}

/* 20260625 full local review: natural photos, no blue wash */
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.78) 30%, rgba(255, 255, 255, 0.34) 58%, rgba(255, 255, 255, 0.08) 100%) !important;
}

.hero h1,
.hero-lead {
  color: #15231f !important;
  text-shadow: none !important;
}

.hero .area-label {
  color: #064f78 !important;
  background: rgba(255, 255, 255, 0.82) !important;
  border-color: rgba(6, 79, 120, 0.16) !important;
}

.hero .btn-ghost {
  color: #15231f !important;
  border-color: rgba(21, 35, 31, 0.28) !important;
  background: rgba(255, 255, 255, 0.72) !important;
}

.price-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.74) 34%, rgba(255, 255, 255, 0.28) 64%, rgba(255, 255, 255, 0.06) 100%),
    url("./assets/care-consultation.png") center right / cover no-repeat !important;
}

.sub-hero,
.legal-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.74) 35%, rgba(255, 255, 255, 0.28) 65%, rgba(255, 255, 255, 0.06) 100%),
    url("./assets/nurses-walking.png") center / cover no-repeat !important;
}

.message-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.74) 38%, rgba(255, 255, 255, 0.28) 68%, rgba(255, 255, 255, 0.06) 100%),
    url("./assets/message-hero-generated.png") center / cover no-repeat !important;
}

.recruit-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.74) 38%, rgba(255, 255, 255, 0.28) 68%, rgba(255, 255, 255, 0.06) 100%),
    url("./assets/recruit-hero-generated.png") center / cover no-repeat !important;
}

.contact-hero {
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.72) 42%, rgba(255, 255, 255, 0.24) 74%, rgba(255, 255, 255, 0.06) 100%),
    url("./assets/hero-hiromaru-users.png") 62% 38% / cover no-repeat !important;
}

.contact-inner {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.72) 46%, rgba(255, 255, 255, 0.24) 78%, rgba(255, 255, 255, 0.06) 100%),
    url("./assets/nurses-walking.png") center 46% / cover no-repeat !important;
}

.price-hero .section-kicker,
.sub-hero .section-kicker,
.legal-hero .section-kicker,
.contact-hero .section-kicker,
.message-hero .section-kicker,
.recruit-hero .section-kicker,
.contact-inner .section-kicker {
  color: #078dba !important;
  text-shadow: none !important;
}

.price-hero h1,
.sub-hero h1,
.legal-hero h1,
.contact-hero h1,
.message-hero h1,
.recruit-hero h1,
.contact-inner h2 {
  color: #15231f !important;
  text-shadow: none !important;
}

.price-hero p,
.sub-hero p,
.legal-hero p,
.contact-hero p,
.message-hero p,
.recruit-hero p,
.contact-inner p {
  color: #31423f !important;
  text-shadow: none !important;
}

.contact-hero .btn-ghost,
.contact-inner .btn-light {
  color: #15231f !important;
  background: rgba(255, 255, 255, 0.82) !important;
  border-color: rgba(21, 35, 31, 0.20) !important;
  text-shadow: none !important;
}

.area-section {
  background: linear-gradient(180deg, #fffdfa 0%, #fff7ec 100%) !important;
}

.area-stage {
  background: #fffdf9 !important;
  border-color: #f2d7b6 !important;
}

.area-stage img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}

body,
.price-page,
.contact-page,
.legal-page,
.office-page,
.private-page {
  background: #fffdfa !important;
}

.price-detail-section,
.contact-detail-section,
.legal-section,
.office-section,
.section {
  background-color: #fffdfa;
}

.fee-section,
.area-section,
.faq-section {
  background: linear-gradient(180deg, #fffdfa 0%, #fff7ec 100%) !important;
}

/* 20260625 publish review fix: remove blue photo wash and lock warm area map */
.price-hero,
.sub-hero,
.legal-hero,
.message-hero,
.recruit-hero,
.contact-hero,
.contact-inner {
  color: #15231f !important;
}

.price-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 34%, rgba(255, 255, 255, 0.34) 66%, rgba(255, 255, 255, 0.08) 100%),
    url("./assets/care-consultation.png") center right / cover no-repeat !important;
}

.private-page .sub-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 36%, rgba(255, 255, 255, 0.34) 68%, rgba(255, 255, 255, 0.08) 100%),
    url("./assets/care-consultation.png") center right / cover no-repeat !important;
}

.office-page .sub-hero,
.legal-page .sub-hero,
.legal-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 36%, rgba(255, 255, 255, 0.34) 68%, rgba(255, 255, 255, 0.08) 100%),
    url("./assets/nurses-walking.png") center / cover no-repeat !important;
}

.message-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 38%, rgba(255, 255, 255, 0.34) 70%, rgba(255, 255, 255, 0.08) 100%),
    url("./assets/message-hero-generated.png") center / cover no-repeat !important;
}

.recruit-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 38%, rgba(255, 255, 255, 0.34) 70%, rgba(255, 255, 255, 0.08) 100%),
    url("./assets/recruit-hero-generated.png") center / cover no-repeat !important;
}

.contact-hero {
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.80) 42%, rgba(255, 255, 255, 0.30) 74%, rgba(255, 255, 255, 0.08) 100%),
    url("./assets/hero-hiromaru-users.png") 62% 38% / cover no-repeat !important;
}

.contact-inner {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.80) 46%, rgba(255, 255, 255, 0.30) 78%, rgba(255, 255, 255, 0.08) 100%),
    url("./assets/nurses-walking.png") center 46% / cover no-repeat !important;
}

.price-hero .section-kicker,
.sub-hero .section-kicker,
.legal-hero .section-kicker,
.message-hero .section-kicker,
.recruit-hero .section-kicker,
.contact-hero .section-kicker,
.contact-inner .section-kicker {
  color: #f28b00 !important;
}

.price-hero h1,
.sub-hero h1,
.legal-hero h1,
.message-hero h1,
.recruit-hero h1,
.contact-hero h1,
.contact-inner h2,
.price-hero p,
.sub-hero p,
.legal-hero p,
.message-hero p,
.recruit-hero p,
.contact-hero p,
.contact-inner p {
  color: #15231f !important;
  text-shadow: none !important;
}

.area-section {
  background: linear-gradient(180deg, #fffdfa 0%, #fff6e9 100%) !important;
}

.area-stage {
  background: #fffdf9 !important;
  background-image: none !important;
  border: 1px solid rgba(242, 139, 0, 0.22) !important;
  box-shadow: 0 28px 72px rgba(150, 92, 16, 0.12) !important;
}

.area-stage::before,
.area-stage::after {
  display: none !important;
}

.area-stage img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* 20260625 brighter-photo pass: reduce the dull veil on photo areas */
.hero-bg {
  filter: brightness(1.2) saturate(1.12) contrast(1.03) !important;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.42) 28%, rgba(255, 255, 255, 0.10) 58%, rgba(255, 255, 255, 0.02) 100%) !important;
}

.price-hero,
.sub-hero,
.legal-hero,
.message-hero,
.recruit-hero,
.contact-hero,
.contact-inner {
  filter: brightness(1.08) saturate(1.08) contrast(1.02);
}

.price-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.42) 36%, rgba(255, 255, 255, 0.10) 68%, rgba(255, 255, 255, 0.02) 100%),
    url("./assets/hero-hiromaru-users.png") 58% 40% / cover no-repeat !important;
}

.private-page .sub-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.42) 38%, rgba(255, 255, 255, 0.10) 70%, rgba(255, 255, 255, 0.02) 100%),
    url("./assets/nurses-walking.png") center / cover no-repeat !important;
}

.office-page .sub-hero,
.legal-page .sub-hero,
.legal-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.44) 38%, rgba(255, 255, 255, 0.12) 70%, rgba(255, 255, 255, 0.02) 100%),
    url("./assets/hero-hiromaru.png") center / cover no-repeat !important;
}

.message-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.44) 40%, rgba(255, 255, 255, 0.12) 72%, rgba(255, 255, 255, 0.02) 100%),
    url("./assets/message-hero-generated.png") center / cover no-repeat !important;
}

.recruit-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.44) 40%, rgba(255, 255, 255, 0.12) 72%, rgba(255, 255, 255, 0.02) 100%),
    url("./assets/recruit-hero-generated.png") center / cover no-repeat !important;
}

.contact-hero {
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.40) 42%, rgba(255, 255, 255, 0.10) 74%, rgba(255, 255, 255, 0.02) 100%),
    url("./assets/hero-hiromaru-users.png") 62% 38% / cover no-repeat !important;
}

.contact-inner {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.40) 46%, rgba(255, 255, 255, 0.10) 78%, rgba(255, 255, 255, 0.02) 100%),
    url("./assets/nurses-walking.png") center 46% / cover no-repeat !important;
}

/* 20260625 professional CTA fix: keep this band visible, not white-on-white */
.professional-section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: clamp(46px, 5.5vw, 72px) !important;
  padding-bottom: clamp(46px, 5.5vw, 72px) !important;
  background:
    linear-gradient(120deg, rgba(21, 35, 31, 0.96), rgba(15, 107, 86, 0.88)),
    #15231f !important;
  color: #ffffff !important;
}

.professional-copy h2,
.professional-copy p,
.professional-copy .section-kicker,
.professional-contact-line span,
.professional-contact-line strong,
.request-box,
.request-box p,
.request-box li {
  color: #ffffff !important;
}

.professional-copy p,
.professional-copy .section-kicker,
.professional-contact-line span {
  color: rgba(255, 255, 255, 0.78) !important;
}

.request-box,
.professional-contact-line {
  background: rgba(255, 255, 255, 0.12) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18) !important;
}

.professional-copy h2 {
  font-size: clamp(30px, 3.4vw, 44px) !important;
  line-height: 1.12 !important;
}

.professional-contact-line,
.request-box {
  padding: 24px !important;
}

@media (max-width: 720px) {
  .professional-section {
    gap: 24px !important;
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }

  .professional-copy h2 {
    font-size: 28px !important;
    line-height: 1.18 !important;
  }

  .professional-copy p {
    font-size: 14px !important;
    line-height: 1.9 !important;
  }

  .professional-contact-line,
  .request-box {
    padding: 18px !important;
  }

  .professional-contact-line strong {
    font-size: 16px !important;
  }
}

/* 20260625 fee color unification: all price summary cards use one color */
.fee-system-grid article,
.fee-system-grid article:nth-child(2),
.fee-system-grid article:nth-child(3),
.fee-system-grid article:nth-child(4),
.fee-overview article,
.fee-overview article:nth-child(2),
.fee-overview article:last-child {
  background: #0b5f86 !important;
  border-top-color: #0b5f86 !important;
  border-right-color: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
}

.fee-system-grid span,
.fee-system-grid strong,
.fee-system-grid p,
.fee-overview span,
.fee-overview strong,
.fee-overview p {
  color: #ffffff !important;
}

/* 20260625 photo clarity fix: remove the milky veil from the main care photo */
.hero-bg {
  filter: brightness(1.12) saturate(1.1) contrast(1.04) !important;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0.28) 28%, rgba(255, 255, 255, 0.08) 58%, rgba(255, 255, 255, 0.02) 100%) !important;
}

/* 20260625 mobile readability fix: QR visitors should understand the top page fast */
@media (max-width: 640px) {
  body {
    font-size: 15px !important;
    line-height: 1.78 !important;
  }

  .top-info-banner {
    min-height: 34px !important;
    font-size: 10px !important;
  }

  .top-info-banner a:not(.top-office-link) {
    display: none !important;
  }

  .site-header {
    top: 40px !important;
    width: calc(100vw - 18px) !important;
    min-height: 52px !important;
    padding: 7px 9px !important;
  }

  .brand {
    min-width: 0 !important;
    padding: 2px 8px !important;
  }

  .brand-text strong {
    font-size: 14px !important;
    line-height: 1.15 !important;
  }

  .brand-text small {
    display: none !important;
  }

  .header-contact {
    min-height: 34px !important;
    padding: 0 11px !important;
    font-size: 11px !important;
  }

  .hero {
    min-height: 720px !important;
    padding: 112px 18px 28px !important;
    align-items: flex-start !important;
  }

  .hero-bg {
    background-position: 61% 44% !important;
    filter: brightness(0.98) saturate(1.02) contrast(1.02) !important;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.46) 46%, rgba(255, 255, 255, 0.08) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.28) 44%, rgba(255, 255, 255, 0.04) 100%) !important;
  }

  .hero-inner {
    width: 100% !important;
    max-width: none !important;
    padding-top: 0 !important;
  }

  .hero .area-label {
    margin-bottom: 14px !important;
    padding: 4px 10px !important;
    font-size: 10px !important;
  }

  .hero h1 {
    max-width: 310px !important;
    font-size: 36px !important;
    line-height: 1.16 !important;
    text-shadow: 0 1px 12px rgba(255, 255, 255, 0.88) !important;
  }

  .hero-lead {
    max-width: 330px !important;
    margin-top: 18px !important;
    font-size: 15px !important;
    line-height: 1.78 !important;
    text-shadow: 0 1px 12px rgba(255, 255, 255, 0.88) !important;
  }

  .hero-actions {
    flex-wrap: nowrap !important;
    gap: 10px !important;
    margin-top: 22px !important;
  }

  .hero-actions .btn {
    min-height: 44px !important;
    padding: 0 18px !important;
    font-size: 13px !important;
  }

  .pathways {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: calc(100vw - 36px) !important;
    margin: 20px 18px 0 !important;
  }

  .path-card {
    width: 100% !important;
    min-height: 104px !important;
    padding: 18px 20px !important;
    border-radius: 8px !important;
  }

  .path-card span {
    font-size: 10px !important;
  }

  .path-card strong {
    font-size: 20px !important;
    line-height: 1.35 !important;
  }

  .path-card p {
    margin-top: 6px !important;
    font-size: 12px !important;
    line-height: 1.6 !important;
  }
}

@media (max-width: 640px) {
  .top-info-banner a:nth-of-type(n+2) {
    display: none !important;
  }

  .top-info-banner {
    justify-content: center !important;
  }
}

/* 20260625 mobile repair: reduce whiteout and stabilize the scroll flow */
@media (max-width: 640px) {
  .hero {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    padding: 112px 18px 0 !important;
    overflow: visible !important;
    background: var(--paper) !important;
  }

  .hero-bg {
    position: relative !important;
    order: 2 !important;
    inset: auto !important;
    z-index: 0 !important;
    display: block !important;
    width: calc(100% + 36px) !important;
    height: 340px !important;
    margin: 24px -18px 0 !important;
    background-position: 58% 42% !important;
    filter: brightness(1.08) saturate(1.06) contrast(1.02) !important;
    transform: none !important;
  }

  .hero-overlay {
    display: none !important;
  }

  .hero-inner {
    position: relative !important;
    z-index: 1 !important;
    order: 1 !important;
    padding-bottom: 0 !important;
    color: var(--ink) !important;
    text-shadow: none !important;
  }

  .hero h1,
  .hero-lead {
    color: var(--ink) !important;
    text-shadow: none !important;
  }

  .hero .area-label {
    color: var(--blue-deep) !important;
    background: rgba(223, 243, 250, 0.92) !important;
    border-color: rgba(7, 141, 186, 0.24) !important;
    backdrop-filter: none !important;
  }

  .hero .btn-ghost {
    color: var(--blue-deep) !important;
    border-color: rgba(6, 79, 120, 0.2) !important;
    background: #ffffff !important;
    box-shadow: 0 10px 28px rgba(6, 79, 120, 0.12) !important;
    backdrop-filter: none !important;
  }

  .pathways {
    width: calc(100vw - 36px) !important;
    margin: 18px 18px 42px !important;
  }

  .path-card {
    width: 100% !important;
    min-height: 104px !important;
    border-radius: 8px !important;
  }

  .statement {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 56px 18px 64px !important;
    overflow: visible !important;
  }

  .statement-photo {
    min-height: 240px !important;
    height: 240px !important;
    border-radius: 8px !important;
  }

  .statement-copy {
    padding: 22px 20px !important;
    border-radius: 8px !important;
  }

  .statement h2 {
    font-size: 28px !important;
    line-height: 1.28 !important;
  }

  .statement-copy > p:last-of-type {
    margin-top: 16px !important;
    font-size: 15px !important;
    line-height: 1.85 !important;
  }

  .statement-points {
    gap: 8px !important;
    margin-top: 18px !important;
  }

  .statement-points span {
    font-size: 11px !important;
    padding: 7px 10px !important;
  }
}

/* 20260625 message link redesign: use high-resolution visit photo, not the low-res character image */
.detail-links {
  background: linear-gradient(180deg, #f4fbfd 0%, #fffdfa 100%) !important;
}

.detail-link-card {
  border: 1px solid rgba(6, 79, 120, 0.1) !important;
  border-radius: 8px !important;
  box-shadow: 0 18px 46px rgba(6, 79, 120, 0.09) !important;
}

.message-link {
  min-height: 248px !important;
  padding: 34px 78px 34px 300px !important;
  align-content: center !important;
  background:
    linear-gradient(90deg, rgba(255, 253, 250, 0) 0 252px, rgba(255, 253, 250, 0.98) 252px),
    #fffdfa !important;
}

.message-link::before {
  content: "" !important;
  position: absolute !important;
  left: 24px !important;
  top: 24px !important;
  width: 230px !important;
  height: calc(100% - 48px) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(6, 79, 120, 0.1)),
    url("./assets/hero-hiromaru.png") center / cover no-repeat !important;
}

.message-link span {
  width: fit-content !important;
  padding: 6px 10px !important;
  border-radius: 999px !important;
  color: var(--blue-deep) !important;
  background: rgba(223, 243, 250, 0.88) !important;
  font-size: 11px !important;
  letter-spacing: 0 !important;
}

.message-link strong {
  font-size: clamp(28px, 3.2vw, 42px) !important;
  letter-spacing: 0 !important;
}

.message-link .detail-name {
  display: block !important;
  color: var(--blue-deep) !important;
  font-weight: 900 !important;
}

.message-link small {
  max-width: 520px !important;
  color: rgba(20, 43, 48, 0.72) !important;
  line-height: 1.75 !important;
}

.recruit-link {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 252, 0.92)),
    #ffffff !important;
}

.recruit-link::before {
  background: linear-gradient(90deg, var(--orange), var(--blue)) !important;
}

@media (max-width: 640px) {
  .detail-link-card {
    min-height: 0 !important;
    gap: 9px !important;
    padding: 24px 62px 24px 22px !important;
  }

  .message-link {
    padding: 190px 22px 26px !important;
    background: #fffdfa !important;
  }

  .message-link::before {
    left: 14px !important;
    top: 14px !important;
    width: calc(100% - 28px) !important;
    height: 154px !important;
    background-position: center 42% !important;
  }

  .message-link::after,
  .detail-link-card::after {
    right: 20px !important;
    bottom: 22px !important;
    width: 34px !important;
    height: 34px !important;
  }

  .message-link strong {
    max-width: 230px !important;
    font-size: 28px !important;
  }

  .message-link small {
    padding-right: 34px !important;
    font-size: 14px !important;
  }
}

/* 20260625 message page redesign */
.message-page .message-detail {
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr) !important;
  gap: clamp(28px, 5vw, 64px) !important;
  align-items: stretch !important;
  background: linear-gradient(180deg, #f4fbfd 0%, #fffdfa 68%) !important;
}

.message-page .message-portrait {
  gap: 16px !important;
  padding: 0 !important;
  border-radius: 8px !important;
  background: transparent !important;
  box-shadow: none !important;
}

.message-page .message-profile-panel {
  min-height: clamp(280px, 32vw, 430px) !important;
  align-content: end !important;
  padding: 26px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  filter: brightness(1.04) saturate(1.03) contrast(1.01) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 46%, rgba(6, 79, 120, 0.26) 100%),
    url("./assets/hero-hiromaru-blue.png") 70% 45% / cover no-repeat !important;
  box-shadow: 0 22px 58px rgba(6, 79, 120, 0.13) !important;
}

.message-page .message-profile-panel span,
.message-page .message-profile-panel strong {
  color: #ffffff !important;
  text-shadow: 0 2px 16px rgba(0, 33, 49, 0.38) !important;
}

.message-page .message-profile-panel span {
  width: fit-content !important;
  padding: 6px 10px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.18) !important;
  font-size: 11px !important;
}

.message-page .message-profile-panel strong {
  font-size: clamp(28px, 3vw, 40px) !important;
}

.message-page .message-portrait > div:not(.message-profile-panel) {
  padding: 22px 24px !important;
  border: 1px solid rgba(6, 79, 120, 0.1) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 18px 42px rgba(6, 79, 120, 0.08) !important;
}

.message-page .message-portrait > div:not(.message-profile-panel) span {
  color: var(--blue-deep) !important;
}

.message-page .message-letter {
  border: 1px solid rgba(6, 79, 120, 0.09) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 22px 58px rgba(6, 79, 120, 0.09) !important;
}

@media (max-width: 640px) {
  .message-page .message-detail {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    padding: 44px 18px 60px !important;
  }

  .message-page .message-profile-panel {
    min-height: 236px !important;
    padding: 20px !important;
    background-position: center 46% !important;
  }

  .message-page .message-letter {
    padding: 24px 22px !important;
  }

  .message-page .message-letter p {
    font-size: 15px !important;
    line-height: 1.9 !important;
  }
}

/* 20260626 final header/photo fix */
.header-contact {
  display: none !important;
}

.message-page .message-profile-panel {
  filter: brightness(1.08) saturate(1.04) contrast(1.01) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 52%, rgba(6, 79, 120, 0.2) 100%),
    url("./assets/nurses-walking.png") center 46% / cover no-repeat !important;
}

@media (max-width: 640px) {
  .top-info-banner {
    display: none !important;
  }

  .site-header {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 100 !important;
    display: flex !important;
    width: 100% !important;
    min-height: 58px !important;
    margin: 0 !important;
    padding: 8px 14px !important;
    border-radius: 0 !important;
    transform: none !important;
    background: rgba(255, 253, 250, 0.98) !important;
    box-shadow: 0 8px 24px rgba(6, 79, 120, 0.08) !important;
  }

  .site-header .site-nav,
  .site-header .header-contact,
  .sub-header .site-nav,
  .sub-header .header-contact {
    display: none !important;
  }

  .hero {
    padding-top: 32px !important;
  }

  .hero-bg {
    filter: brightness(1.16) saturate(1.06) contrast(1.02) !important;
  }

  .message-page .message-profile-panel {
    filter: brightness(1.1) saturate(1.04) contrast(1.01) !important;
    background-position: center 46% !important;
  }
}

/* 20260626 mobile header repair: prevent stray nav/contact fragments */
@media (max-width: 640px) {
  .sub-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 90 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    min-height: 58px !important;
    padding: 8px 14px !important;
    border-radius: 0 !important;
    background: rgba(255, 253, 250, 0.98) !important;
    box-shadow: 0 8px 24px rgba(6, 79, 120, 0.08) !important;
  }

  .sub-header .site-nav,
  .sub-header .header-contact,
  .site-header .site-nav,
  .site-header .header-contact {
    display: none !important;
  }

  .sub-header .brand,
  .site-header .brand {
    min-width: 0 !important;
    padding: 0 !important;
  }

  .sub-header .brand-text strong,
  .site-header .brand-text strong {
    font-size: 17px !important;
    line-height: 1.1 !important;
  }

  .sub-header .brand-text small,
  .site-header .brand-text small {
    display: block !important;
    font-size: 9px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }
}

/* 20260626 full review: stable header, readable pricing, no stray CTA fragments */
.header-contact {
  display: none !important;
}

.message-page .message-profile-panel {
  filter: brightness(1.08) saturate(1.04) contrast(1.01) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 48%, rgba(6, 79, 120, 0.2) 100%),
    url("./assets/nurses-walking.png") center 46% / cover no-repeat !important;
}

.price-clear-list {
  display: grid;
  gap: 18px;
  margin: 34px 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(6, 79, 120, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(6, 79, 120, 0.08);
}

.price-clear-head {
  display: grid;
  gap: 8px;
}

.price-clear-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.25;
}

.price-clear-head p {
  margin: 0;
  color: var(--sub);
  font-weight: 700;
  line-height: 1.8;
}

.price-clear-table {
  display: grid;
  border: 1px solid rgba(6, 79, 120, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.price-clear-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(240px, 1.1fr) minmax(220px, 1fr);
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(6, 79, 120, 0.1);
  background: #ffffff;
}

.price-clear-row:first-child {
  border-top: 0;
}

.price-clear-row > span,
.price-clear-row > strong {
  min-height: 58px;
  padding: 16px 18px;
  border-left: 1px solid rgba(6, 79, 120, 0.1);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}

.price-clear-row > span:first-child,
.price-clear-row > strong:first-child {
  border-left: 0;
}

.price-clear-row strong {
  color: var(--blue-deep);
  font-size: 17px;
}

.price-clear-row.head {
  background: #0b7198;
}

.price-clear-row.head span {
  min-height: 46px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.fee-table-wrap {
  border-radius: 8px !important;
  background: #ffffff !important;
}

.fee-table-title {
  border-radius: 8px 8px 0 0 !important;
  background: #f4fbfd !important;
}

.fee-table-title strong {
  color: var(--ink) !important;
}

.fee-table-title span {
  color: rgba(20, 43, 48, 0.68) !important;
}

.fee-row.head {
  background: #0b7198 !important;
}

.fee-row.head span {
  color: #ffffff !important;
}

.fee-row:not(.head) span:first-child {
  color: var(--ink) !important;
  font-weight: 900 !important;
}

.fee-row:not(.head) span:not(:first-child) {
  color: var(--blue-deep) !important;
  font-weight: 900 !important;
}

@media (max-width: 760px) {
  .top-info-banner {
    display: none !important;
  }

  .site-header,
  .sub-header {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 100 !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 58px !important;
    margin: 0 !important;
    padding: 8px 14px !important;
    border-radius: 0 !important;
    transform: none !important;
    background: rgba(255, 253, 250, 0.98) !important;
    box-shadow: 0 8px 24px rgba(6, 79, 120, 0.08) !important;
  }

  .site-header .site-nav,
  .sub-header .site-nav,
  .site-header .header-contact,
  .sub-header .header-contact {
    display: none !important;
  }

  .site-header .brand,
  .sub-header .brand {
    min-width: 0 !important;
    padding: 0 !important;
  }

  .site-header .brand-text strong,
  .sub-header .brand-text strong {
    font-size: 17px !important;
    line-height: 1.1 !important;
  }

  .site-header .brand-text small,
  .sub-header .brand-text small {
    display: block !important;
    font-size: 9px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }

  .hero {
    padding-top: 32px !important;
  }

  .price-hero {
    min-height: auto !important;
    padding: 52px 18px 44px !important;
    color: var(--ink) !important;
    background: #f4fbfd !important;
  }

  .price-hero .section-kicker,
  .price-hero h1,
  .price-hero p {
    color: var(--ink) !important;
    text-shadow: none !important;
  }

  .price-hero h1 {
    font-size: 42px !important;
  }

  .price-detail-section {
    padding: 34px 18px 58px !important;
  }

  .fee-system-grid {
    grid-template-columns: 1fr !important;
  }

  .fee-guide-block {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 24px 20px !important;
  }

  .fee-guide-block h2 {
    font-size: 26px !important;
  }

  .fee-simulation {
    display: none !important;
  }

  .price-clear-list {
    margin: 24px 0 !important;
    padding: 20px 16px !important;
  }

  .price-clear-row,
  .price-clear-row.head {
    display: grid !important;
    grid-template-columns: 1fr !important;
    border-top: 1px solid rgba(6, 79, 120, 0.12) !important;
  }

  .price-clear-row.head {
    display: none !important;
  }

  .price-clear-row > span,
  .price-clear-row > strong {
    min-height: 0 !important;
    padding: 8px 14px !important;
    border-left: 0 !important;
  }

  .price-clear-row > span:first-child {
    padding-top: 14px !important;
    color: rgba(20, 43, 48, 0.68) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
  }

  .price-clear-row > strong {
    font-size: 18px !important;
  }

  .price-clear-row > span:last-child {
    padding-bottom: 14px !important;
    color: var(--sub) !important;
  }

  .fee-table-wrap {
    overflow: visible !important;
    padding: 0 !important;
  }

  .fee-table {
    display: grid !important;
    min-width: 0 !important;
    gap: 10px !important;
    padding: 14px !important;
    background: #f4fbfd !important;
  }

  .fee-row,
  .care-fee .fee-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    border: 1px solid rgba(6, 79, 120, 0.12) !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    overflow: hidden !important;
  }

  .fee-row.head {
    display: none !important;
  }

  .fee-row span {
    display: flex !important;
    justify-content: space-between !important;
    gap: 12px !important;
    min-height: 0 !important;
    padding: 9px 14px !important;
    border-top: 1px solid rgba(6, 79, 120, 0.08) !important;
    border-left: 0 !important;
    font-size: 14px !important;
  }

  .fee-row span:first-child {
    display: block !important;
    border-top: 0 !important;
    color: var(--ink) !important;
    background: #fffdfa !important;
    font-size: 15px !important;
    font-weight: 900 !important;
  }

  .fee-row span:nth-child(2)::before { content: "10割/利用料"; color: var(--sub); font-weight: 800; }
  .fee-row span:nth-child(3)::before { content: "1割"; color: var(--sub); font-weight: 800; }
  .fee-row span:nth-child(4)::before { content: "2割"; color: var(--sub); font-weight: 800; }
  .fee-row span:nth-child(5)::before { content: "3割"; color: var(--sub); font-weight: 800; }

  .private-fee-grid {
    grid-template-columns: 1fr !important;
  }
}

/* 20260626 full review: force detailed fee tables into readable mobile cards */
@media (max-width: 760px) {
  .fee-table.detailed,
  .fee-table.care-fee {
    display: grid !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: visible !important;
  }

  .fee-table.detailed .fee-row,
  .fee-table.care-fee .fee-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .fee-table.detailed .fee-row span,
  .fee-table.care-fee .fee-row span {
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
}
