:root {
  --bg: #ffffff;
  --bg-soft: #eefaff;
  --bg-mist: #f7fdff;
  --ink: #17313d;
  --muted: #5b737d;
  --line: #c9eaf4;
  --teal: #078ea4;
  --teal-deep: #057485;
  --coral: #fb675d;
  --coral-deep: #e6534b;
  --shadow: 0 18px 44px rgba(15, 102, 124, 0.14);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--teal);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
}

.brand-mark path,
.brand-mark circle,
.site-header svg path,
.site-header svg circle,
.button svg path,
.button svg circle,
.info-icon svg path,
.info-icon svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong {
  display: block;
  color: var(--teal);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal);
}

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  color: #fff;
  background: var(--teal);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(7, 142, 164, 0.2);
}

.nav-call:hover,
.nav-call:focus-visible {
  color: #fff;
  background: var(--teal-deep);
}

.nav-call svg {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: 42px;
  width: min(100%, var(--max));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 56px 20px 28px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin: 0;
  color: var(--teal);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  white-space: nowrap;
}

.hero-lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(23px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.45;
}

.hero-text {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 16px 32px rgba(251, 103, 93, 0.25);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--coral-deep);
}

.button.secondary {
  color: var(--teal-deep);
  background: #fff;
  border-color: #8bd4e5;
  box-shadow: 0 12px 28px rgba(15, 102, 124, 0.08);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--bg-soft);
}

.hero-points {
  display: grid;
  gap: 10px;
  max-width: 500px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--ink);
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}

.hero-points li {
  position: relative;
  padding-left: 24px;
}

.hero-points li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--teal);
  border-radius: 50%;
  content: "";
}

.hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0) 44%);
  pointer-events: none;
  content: "";
}

.hero-media img {
  width: 100%;
  height: min(62vh, 610px);
  min-height: 460px;
  object-fit: cover;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  background: linear-gradient(90deg, #ecfaff, #f8fdff);
  border-block: 1px solid var(--line);
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 116px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.info-item:last-child {
  border-right: 0;
}

.info-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--teal);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(7, 142, 164, 0.1);
}

.info-icon svg {
  width: 26px;
  height: 26px;
}

.info-item strong,
.info-item span {
  display: block;
}

.info-item strong {
  font-size: 18px;
  line-height: 1.35;
}

.info-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 92px 20px;
}

.section-heading {
  width: min(100%, 760px);
  margin: 0 auto 42px;
  text-align: center;
}

.section h2,
.hours-copy h2,
.access-copy h2,
.closing-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.32;
}

.section-heading p,
.hours-copy p,
.trust-copy p,
.access-copy p,
.closing-cta p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

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

.symptom-card {
  min-height: 188px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(15, 102, 124, 0.07);
}

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

.symptom-card strong {
  display: block;
  margin-top: 18px;
  font-size: 19px;
  line-height: 1.45;
}

.symptom-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.hours-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  background: var(--bg-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  color: var(--teal-deep);
  font-size: 15px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hours-panel {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hours-table-wrap {
  overflow-x: auto;
}

.hours-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  text-align: center;
}

.hours-table caption {
  padding: 20px 22px 8px;
  color: var(--teal);
  font-size: 18px;
  font-weight: 800;
  text-align: left;
}

.hours-table th,
.hours-table td {
  padding: 20px 18px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.hours-table thead th {
  color: var(--muted);
  background: var(--bg-mist);
  font-size: 13px;
}

.hours-table tbody th {
  color: var(--teal-deep);
  background: #fbfeff;
}

.hours-note {
  margin: 0;
  padding: 18px 22px 22px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}

.services {
  padding-bottom: 64px;
}

.service-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-feature {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(15, 102, 124, 0.08);
}

.service-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-feature div {
  padding: 22px;
}

.service-feature h3 {
  margin: 0;
  color: var(--teal-deep);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
}

.service-feature p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.service-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  color: var(--teal-deep);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.trust {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  background: linear-gradient(180deg, #ffffff, #f2fbfe);
}

.trust-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(300px, 0.36fr);
  gap: 36px;
  align-items: end;
  width: min(100%, var(--max));
  margin: 0 auto 34px;
}

.image-row {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.95fr;
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.image-row figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(15, 102, 124, 0.08);
}

.image-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-row figcaption {
  padding: 14px 16px 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.access {
  padding-block: 88px;
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: center;
}

.access-copy p {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.75;
}

.access-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.access-list div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.access-list dt {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.access-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.access-list a {
  color: var(--teal-deep);
  font-weight: 800;
}

.access-button {
  margin-top: 26px;
}

.access-media {
  margin: 0;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.access-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.closing-cta {
  padding: 74px 20px;
  background: var(--teal);
  color: #fff;
}

.closing-inner {
  width: min(100%, 920px);
  margin: 0 auto;
  text-align: center;
}

.closing-cta h2,
.closing-cta p {
  color: #fff;
}

.closing-cta p {
  opacity: 0.84;
}

.closing-actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 26px 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong,
.site-footer a {
  color: var(--ink);
  font-weight: 800;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--teal);
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .nav-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 0 auto;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-toggle.is-open span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav-toggle.is-open span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 72px 16px auto;
    display: grid;
    gap: 0;
    padding: 8px;
    visibility: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .nav-call {
    justify-content: center;
    height: 48px;
    margin-top: 4px;
  }

  .hero,
  .hours-section,
  .trust-copy,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    min-height: 0;
    padding-top: 42px;
  }

  .hero-media {
    order: -1;
  }

  .hero-media::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0.68));
  }

  .hero-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .info-strip,
  .symptom-grid,
  .service-layout,
  .image-row {
    grid-template-columns: 1fr;
  }

  .info-item {
    justify-content: flex-start;
    width: min(100%, 620px);
    margin: 0 auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .info-item:last-child {
    border-bottom: 0;
  }

  .section,
  .hours-section,
  .trust,
  .access {
    padding-block: 72px;
  }

  .service-feature {
    display: grid;
    grid-template-columns: 180px 1fr;
  }

  .service-feature img {
    height: 100%;
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-inline: 16px;
  }

  .hero h1 {
    font-size: 42px;
    white-space: normal;
  }

  .hero-lead {
    font-size: 24px;
  }

  .hero-actions,
  .closing-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .info-item,
  .symptom-card,
  .service-feature div {
    padding: 20px;
  }

  .section,
  .hours-section,
  .trust,
  .access,
  .closing-cta {
    padding-inline: 16px;
  }

  .service-feature {
    display: block;
  }

  .service-feature img {
    min-height: 0;
  }

  .access-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    display: grid;
    padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
