:root {
  --paper: #fbfbf8;
  --surface: #ffffff;
  --ink: #202326;
  --muted: #656c73;
  --line: #d9ddd6;
  --line-strong: #aeb7ad;
  --heading: #1f3448;
  --accent: #6f6370;
  --soft: #eef2e9;
  --focus: #9b6b2f;
  --radius: 6px;
  --content: 1060px;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "YuGothic",
    "Noto Sans JP",
    system-ui,
    sans-serif;
  line-height: 1.75;
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0;
}

body::-webkit-scrollbar {
  width: 14px;
}

body::-webkit-scrollbar-track {
  background: var(--paper);
}

body::-webkit-scrollbar-thumb {
  background: #b8beb5;
  border: 4px solid var(--paper);
  border-radius: 999px;
}

body::-webkit-scrollbar-thumb:hover {
  background: #9ea69b;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

p,
h1,
h2,
dl,
dd,
ol,
ul,
blockquote {
  margin: 0;
}

h2{
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 14px max(24px, calc((100vw - var(--content)) / 2 + 24px));
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.site-name {
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  color: var(--heading);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 18px;
  color: var(--muted);
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
  padding-block: 4px;
}

.site-nav a:hover {
  color: var(--heading);
  text-decoration: underline;
}

.mobile-menu {
  display: none;
}

.mobile-menu summary {
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--heading);
  cursor: pointer;
  font-weight: 700;
  gap: 9px;
  list-style: none;
  min-height: 42px;
  padding: 8px 12px;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--heading);
  content: "";
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.mobile-nav {
  display: grid;
  gap: 2px;
  margin-top: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mobile-nav a {
  color: var(--heading);
  padding: 12px 2px;
  text-decoration: none;
  border-top: 1px solid var(--line);
}

.mobile-nav a:first-child {
  border-top: 0;
}

.mobile-nav a:hover {
  text-decoration: underline;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 48px;
  max-width: var(--content);
  margin: 0 auto;
  padding: 72px 24px 64px;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 22px;
}

.place-line {
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
}

h1 {
  max-width: 11em;
  font-size: clamp(40px, 7vw, 52px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--heading);
}

.lead {
  max-width: 720px;
  color: #3d4348;
  font-size: 18px;
  line-height: 1.9;
}

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

.hero-phone {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  max-width: 360px;
  color: var(--heading);
  font-size: 16px;
}

.hero-phone span {
  color: var(--muted);
  font-weight: 700;
}

.hero-phone a {
  color: var(--heading);
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.hero-phone a:hover {
  text-decoration: underline;
}

.hero-side {
  display: grid;
  align-content: end;
  gap: 22px;
}

.hero-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  aspect-ratio: 16 / 11;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 152px;
  border-radius: var(--radius);
  padding: 10px 18px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button.primary {
  color: #ffffff;
  background: var(--heading);
  border: 1px solid var(--heading);
}

.button.primary:hover {
  background: #162635;
}

.button.secondary {
  color: var(--heading);
  background: var(--surface);
  border: 1px solid var(--line-strong);
}

.button.secondary:hover {
  border-color: var(--heading);
  background: #f4f6f2;
}

.today-box {
  align-self: end;
  background: transparent;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.today-box h2 {
  color: var(--heading);
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.today-box dl {
  display: grid;
  gap: 14px;
}

.today-box div,
.access-facts div {
  display: grid;
  gap: 2px;
}

.today-box dt,
.access-facts dt {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}

.today-box dd,
.access-facts dd {
  color: var(--ink);
  font-weight: 600;
}

.news-band {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  max-width: var(--content);
  margin: 0 auto 10px;
  padding: 24px;
  border-top: 1px solid var(--line);
}

.news-band h2 {
  color: var(--heading);
  font-size: 22px;
  line-height: 1.4;
}

.news-body {
  display: grid;
  gap: 6px;
  color: #3f464b;
}

.news-body time {
  color: var(--accent);
  font-weight: 700;
}

.section {
  max-width: var(--content);
  margin: 0 auto;
  padding: 60px 24px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  margin-bottom: 28px;
}

.section-heading h2 {
  color: var(--heading);
  font-size: 28px;
  line-height: 1.4;
}

.section-heading p {
  color: var(--muted);
  max-width: 660px;
}

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

.hours-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
}

.hours-table caption {
  text-align: left;
  color: var(--muted);
  font-size: 14px;
  padding-bottom: 10px;
}

.hours-table th,
.hours-table td {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 15px 12px;
  text-align: center;
  vertical-align: middle;
}

.hours-table th {
  color: var(--heading);
  background: #f4f5f0;
  font-weight: 700;
}

.hours-table tbody th {
  text-align: left;
  white-space: nowrap;
}

.hours-table td {
  color: #374047;
}

.split-section {
  display: grid;
}

.visit-flow {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.visit-flow li {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.visit-flow li:last-child {
  border-bottom: 1px solid var(--line);
}

.visit-flow span {
  color: var(--heading);
  font-weight: 700;
}

.visit-flow p {
  color: #42484d;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-list li {
  background: var(--surface);
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  color: var(--heading);
  font-weight: 700;
}

.profile-list {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.profile-list div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.profile-list div:first-child {
  border-top: 0;
}

.profile-list dt {
  color: var(--muted);
  font-weight: 700;
}

.profile-list dd {
  color: var(--heading);
  font-size: 20px;
  font-weight: 700;
}

.voice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.single-voice {
  grid-template-columns: minmax(0, 760px);
}

blockquote {
  border-top: 1px solid var(--line);
  padding: 18px 0 6px;
  color: #31383f;
}

blockquote p {
  font-size: 18px;
}

blockquote footer {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.voice-summary {
  max-width: 760px;
  color: #3d4348;
  font-weight: 700;
}

.access-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.map-frame {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 360px;
}

address {
  display: grid;
  gap: 6px;
  font-style: normal;
}

address strong {
  color: var(--heading);
  font-size: 20px;
}

.access-facts {
  display: grid;
  gap: 16px;
}

.contact-layout {
  align-items: flex-start;
}

.phone-panel {
  flex: 1 1 260px;
  min-height: 168px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
}

.phone-panel p {
  color: var(--muted);
  margin-bottom: 10px;
}

.phone-panel a {
  color: var(--heading);
  font-size: 28px;
  font-weight: 800;
  text-decoration: none;
}

.phone-panel a:hover {
  text-decoration: underline;
}

.sample-form {
  flex: 2 1 420px;
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
}

.sample-form label {
  display: grid;
  gap: 6px;
  color: var(--heading);
  font-weight: 700;
}

.sample-form input,
.sample-form textarea {
  width: 100%;
  border: 1px solid #cbd0c8;
  border-radius: var(--radius);
  background: #f3f4f1;
  color: #777d82;
  padding: 12px;
  font: inherit;
}

.sample-form textarea {
  resize: none;
}

.sample-form button {
  min-height: 48px;
  border: 1px solid #c7ccbf;
  border-radius: var(--radius);
  background: #e7e9e1;
  color: #73796f;
  font: inherit;
  font-weight: 700;
}

.site-footer {
  max-width: var(--content);
  margin: 0 auto;
  padding: 38px 24px 56px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 820px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    gap: 10px;
  }

  .site-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: relative;
  }

  .mobile-menu summary {
    display: inline-flex;
  }

  .mobile-menu[open] .mobile-nav {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 10;
    width: min(76vw, 300px);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 8px 14px;
  }

  .site-name {
    white-space: normal;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 46px;
  }

  .hero-side {
    align-content: start;
  }

  h1 {
    font-size: 42px;
    max-width: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .news-band {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-list,
  .voice-row,
  .access-layout,
  .profile-list div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  body {
    font-size: 15px;
  }
  .site-header{
    padding-top: 12px;
    padding-bottom: 6px;
  }

  .site-header,
  .hero,
  .section,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 48px;
  }

  h1 {
    font-size: 34px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .today-box,
  .access-layout,
  .phone-panel,
  .sample-form {
    padding: 20px;
  }

  .today-box {
    padding: 20px 0;
  }

  .map-frame iframe {
    min-height: 300px;
  }

  .visit-flow li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .phone-panel a {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
