:root {
  --c-primary: #2E5266;
  --c-accent: #6B9080;
  --c-bg: #F4F1ED;
  --c-text: #1F2933;
  --c-muted: #5A6470;
  --c-surface: #ffffff;
  --c-line: rgba(42, 37, 32, 0.16);
  --shadow: 0 18px 50px rgba(31, 41, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: system-ui, -apple-system, "Hiragino Sans", "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

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

a {
  color: inherit;
}

a:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 4px;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--c-primary);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.68));
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(18px, 5vw, 56px);
  font-size: 14px;
}

.topbar a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.brand {
  font-weight: 700;
}

.hero-content {
  width: min(980px, 100%);
  padding: 120px clamp(20px, 6vw, 80px) clamp(48px, 10vw, 100px);
}

.hero-kicker,
.section-kicker,
.card-label,
.english-line {
  margin: 0 0 10px;
  color: var(--c-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker {
  color: var(--c-accent);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  line-height: 1.18;
}

.hero-catch {
  margin: 18px 0 0;
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 700;
  line-height: 1.6;
}

.hero-lead {
  max-width: 660px;
  margin: 12px 0 0;
  font-size: clamp(16px, 3vw, 20px);
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.4;
}

.btn span {
  font-size: 13px;
  font-weight: 600;
}

.btn-primary {
  background: var(--c-primary);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--c-text);
}

.btn-muted {
  background: rgba(255, 255, 255, 0.9);
  color: var(--c-text);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 10vw, 96px) 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 26px;
}

.section h2 {
  margin: 0;
  font-size: clamp(24px, 5vw, 38px);
  line-height: 1.35;
}

.card-grid,
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.card,
.menu-card,
.info-panel,
.staff-card,
.director-photo,
.insurance-section,
.line-qr {
  border: 1px solid var(--c-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 26px rgba(31, 41, 51, 0.06);
}

.card {
  padding: 22px;
}

.card h3,
.menu-card h3 {
  margin: 0;
  font-size: 18px;
}

.card p {
  margin: 0;
}

.menu-card {
  overflow: hidden;
}

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

.menu-card div {
  padding: 16px;
}

.menu-card p {
  margin: 6px 0 0;
  color: var(--c-primary);
  font-weight: 700;
}

.access-grid,
.staff-section,
.director-section,
.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.info-panel {
  padding: 24px;
}

dl {
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--c-line);
}

dl div:last-child {
  border-bottom: 0;
}

dt {
  color: var(--c-muted);
  font-size: 14px;
}

dd {
  margin: 0;
  font-weight: 600;
}

.map-panel iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 8px;
}

.map-panel a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: var(--c-primary);
  font-weight: 700;
}

.cta-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 1120px) / 2));
  background: var(--c-primary);
  color: #fff;
}

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

.cta-section .btn-primary {
  background: #fff;
  color: var(--c-text);
}

.line-qr {
  justify-self: end;
  width: min(220px, 100%);
  padding: 16px;
  color: var(--c-text);
  text-align: center;
  background: #fff;
}

.line-qr img {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.line-qr figcaption,
.staff-card figcaption,
.director-photo figcaption {
  margin-top: 10px;
  color: var(--c-muted);
  font-size: 13px;
}

.price-table {
  overflow: hidden;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--c-line);
}

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

.flow-list,
.check-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-list li,
.check-list li {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.flow-list span {
  color: var(--c-accent);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--c-accent);
}

.staff-card,
.director-photo {
  margin: 0;
  padding: 14px;
}

.staff-card img,
.director-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.insurance-section p {
  margin: 0;
  padding: 24px;
  font-size: 17px;
}

.site-footer {
  padding: 30px 20px;
  color: rgba(255, 255, 255, 0.86);
  background: #1f2933;
  text-align: center;
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

h1 {
  font-weight: 600;
  font-size: clamp(28px, 6vw, 44px);
}

body {
  font-size: 17px;
  line-height: 1.9;
}


@media (max-width: 760px) {
  .hero {
    min-height: 88svh;
  }

  .hero-content {
    padding-inline: 20px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    width: min(100% - 32px, 1120px);
  }

  .access-grid,
  .staff-section,
  .director-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .line-qr {
    justify-self: stretch;
    margin: 0;
  }

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

  .price-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
