:root {
  --ink: #27313b;
  --muted: #667483;
  --line: #d9e3eb;
  --paper: #f7fafc;
  --white: #ffffff;
  --blue: #2f7fb0;
  --blue-dark: #1f5d82;
  --sky: #e8f5fb;
  --soft: #f4efe8;
  --accent: #d98a41;
  --shadow: 0 18px 46px rgba(39, 49, 59, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.75;
}

img,
picture,
iframe {
  display: block;
  max-width: 100%;
}

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: 18px;
  padding: 12px clamp(16px, 5vw, 60px);
  background: rgba(247, 250, 252, 0.96);
  border-bottom: 1px solid rgba(217, 227, 235, 0.9);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: min(220px, 42vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 22px);
  color: #3e4b58;
  font-size: 13px;
  font-weight: 850;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.text-link {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 8px;
  background: var(--blue-dark);
  color: var(--white);
  font-weight: 900;
}

.hero {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: clamp(36px, 7vw, 76px) 0 52px;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 10px solid var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(38px, 5.7vw, 66px);
  line-height: 1.1;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.22;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(22px, 3vw, 31px);
  line-height: 1.28;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.lead {
  max-width: 680px;
  margin-top: 20px;
  color: #4d5a67;
  font-size: clamp(16px, 2vw, 20px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

.button.primary {
  background: var(--blue-dark);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(39, 49, 59, 0.08);
}

.button.white {
  background: var(--white);
  color: var(--blue-dark);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 32px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.hero-facts div {
  padding: 15px;
  background: var(--white);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.hero-facts dd {
  margin: 3px 0 0;
  font-size: 14px;
  font-weight: 900;
}

.quick-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--blue-dark);
}

.quick-nav a {
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 16px;
  color: var(--white);
  font-weight: 900;
  text-align: center;
}

.quick-nav a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-title {
  max-width: 760px;
}

.section-title p {
  margin-top: 14px;
}

.about {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.about-body {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 24px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(39, 49, 59, 0.08);
}

.about-body img {
  width: 140px;
  border-radius: 8px;
}

.about-body p + p {
  margin-top: 14px;
}

.care-band {
  background: var(--sky);
}

.care-inner {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(28px, 6vw, 72px);
}

.care-inner > div > p {
  margin-top: 14px;
}

.care-list {
  display: grid;
  gap: 16px;
}

.care-list article {
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
}

.care-list span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  font-weight: 900;
}

.care-list h3 {
  font-size: 23px;
}

.care-list p {
  margin-top: 8px;
}

.treatment {
  padding-bottom: 40px;
}

.treatment-grid,
.checkup-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.treatment-grid article,
.checkup-grid article,
.news-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(39, 49, 59, 0.07);
}

.treatment-grid h3,
.checkup-grid h3,
.news-grid h3 {
  font-size: 23px;
}

.treatment-grid p,
.checkup-grid p,
.news-grid p {
  margin-top: 8px;
}

.news-grid a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.comfort {
  background: var(--soft);
}

.comfort-inner {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.comfort-links {
  display: grid;
  gap: 18px;
}

.comfort-links img {
  width: 100%;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(39, 49, 59, 0.1);
}

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

.movie-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(39, 49, 59, 0.07);
}

.movie-grid h3 {
  font-size: 20px;
}

.movie-grid p {
  margin-top: 8px;
  font-size: 14px;
}

.movie-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  margin-top: 14px;
  border: 0;
  border-radius: 8px;
}

.hours,
.access {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: clamp(28px, 6vw, 72px);
}

.hours > div > p,
.access-copy > p {
  margin-top: 14px;
}

.hours-card {
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  font-size: 14px;
}

th,
td {
  padding: 12px 10px;
  border: 1px solid var(--line);
  text-align: center;
}

th {
  background: #eef6fa;
  color: var(--ink);
  font-weight: 900;
}

td {
  font-weight: 850;
}

.hours-card p {
  margin-top: 14px;
}

.hours-card .button {
  margin-top: 22px;
}

.access-list,
.parking {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.parking {
  padding: 18px;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: var(--white);
}

.parking h3 {
  font-size: 20px;
}

.map-wrap iframe {
  width: 100%;
  height: 460px;
  border: 0;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.profile {
  background: var(--sky);
}

.profile-inner {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: clamp(28px, 6vw, 72px);
}

.profile-table {
  margin: 0;
  border-top: 1px solid var(--line);
}

.profile-table div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.profile-table dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.profile-table dd {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.profile-portraits {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.profile-portraits img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(39, 49, 59, 0.12);
}

.profile-content {
  display: grid;
  gap: 28px;
}

.profile-history {
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(39, 49, 59, 0.07);
}

.profile-history h3 {
  font-size: 22px;
}

.profile-history ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.standards {
  background: var(--paper);
}

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

.standards-grid article {
  min-height: 176px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(39, 49, 59, 0.07);
}

.standards-grid h3 {
  font-size: 21px;
}

.standards-grid p {
  margin-top: 8px;
}

.demo-note {
  width: min(1120px, calc(100% - 36px));
  margin: 42px auto;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
  padding: 28px;
  border: 1px solid #eadac6;
  border-radius: 8px;
  background: #fff7e8;
}

.demo-note p {
  color: #6a5945;
  margin-top: 10px;
  font-size: 15px;
}

.demo-note h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.demo-contact {
  padding: 20px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(39, 49, 59, 0.08);
}

.demo-contact h3 {
  font-size: 20px;
}

.demo-contact p {
  margin-top: 8px;
  color: var(--ink);
  font-weight: 850;
}

.demo-contact a {
  color: var(--blue-dark);
}

.demo-contact small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
}

.contact {
  padding: 82px 18px;
  background: var(--blue-dark);
  color: var(--white);
}

.contact-inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.contact h2 {
  max-width: 880px;
  color: var(--white);
}

.contact .kicker {
  color: #c7ecff;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1040px) {
  .site-nav {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero,
  .about,
  .care-inner,
  .comfort-inner,
  .hours,
  .access,
  .profile-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image img {
    aspect-ratio: 91 / 30;
    object-fit: contain;
    background: var(--white);
  }

  .movie-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 62px;
  }

  .site-header {
    padding: 12px 14px;
  }

  .header-actions {
    display: none;
  }

  .hero,
  .section,
  .demo-note {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: 37px;
  }

  .button {
    width: 100%;
  }

  .hero-facts,
  .quick-nav,
  .about-body,
  .treatment-grid,
  .checkup-grid,
  .news-grid,
  .standards-grid,
  .demo-note {
    grid-template-columns: 1fr;
  }

  .quick-nav a {
    min-height: 58px;
  }

  .quick-nav a + a {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .hours-card {
    overflow-x: auto;
  }

  table {
    min-width: 680px;
  }

  .profile-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .map-wrap iframe {
    height: 360px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 30;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--ink);
    box-shadow: 0 -10px 28px rgba(39, 49, 59, 0.22);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 58px;
    color: var(--white);
    font-weight: 900;
  }

  .mobile-cta a:first-child {
    background: var(--blue);
  }
}
