:root {
  --ink: #213342;
  --muted: #667684;
  --blue: #2477b7;
  --blue-dark: #105783;
  --aqua: #50b6bd;
  --green: #75b86b;
  --coral: #ef7f68;
  --cream: #fff9ef;
  --paper: #ffffff;
  --line: #dce8ee;
  --shadow: 0 18px 45px rgba(31, 65, 84, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans JP", "Yu Gothic", sans-serif;
  line-height: 1.75;
  background: #f8fcfd;
}

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

a {
  color: inherit;
}

.site-header {
  display: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
}

.logo {
  width: min(300px, 52vw);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 0;
  border-radius: 6px;
  background: var(--coral);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(239, 127, 104, 0.22);
}

.btn.secondary {
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(36, 119, 183, 0.2);
}

.btn.ghost {
  background: #fff;
  color: var(--blue-dark);
  border: 1px solid #b8d6e7;
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #123b58;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 46, 69, 0.86) 0%, rgba(12, 46, 69, 0.58) 42%, rgba(12, 46, 69, 0.15) 100%),
    url("assets/slide04.jpg") center / cover;
}

.hero-inner {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 128px 0 96px;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 14px;
  font-weight: 800;
}

.hero h1 {
  max-width: 780px;
  margin: 22px 0 18px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 700px;
  margin: 0 0 28px;
  font-size: clamp(17px, 2.2vw, 23px);
  font-weight: 700;
}

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

.hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 940px;
  margin: 36px 0 0;
}

.hero-points span,
.pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 10px 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 800;
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: #eef8f6;
}

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

.inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

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

.section-title.center {
  margin-inline: auto;
  text-align: center;
}

.section-title p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 600;
}

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

h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.35;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 44px;
  align-items: center;
}

.photo-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 16px 14px 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 14px;
  color: var(--green);
  font-weight: 900;
}

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

.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(31, 65, 84, 0.07);
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 18px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

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

.mini-card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(31, 65, 84, 0.06);
}

.mini-card h3 {
  font-size: 20px;
}

.mini-card p,
.price-note {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: minmax(210px, 1fr);
  gap: 14px;
}

.gallery-item {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.qr-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.qr-panel figure {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(31, 65, 84, 0.07);
}

.qr-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 6px;
}

.qr-panel figcaption {
  margin-top: 10px;
  color: var(--blue-dark);
  font-weight: 900;
  text-align: center;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: flow;
}

.flow-item {
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.flow-item::before {
  counter-increment: flow;
  content: counter(flow, decimal-leading-zero);
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
}

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

.schedule .flow-item h3 {
  color: var(--blue-dark);
}

.price-note {
  margin-top: 14px;
  font-size: 14px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.info-table th,
.info-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.info-table th {
  width: 26%;
  background: #e8f5fb;
  color: var(--blue-dark);
}

.meo-table a {
  color: var(--blue-dark);
  font-weight: 900;
}

.local-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.map-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.map-panel p {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 650;
}

.local-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.local-keywords li {
  padding: 8px 12px;
  border-radius: 6px;
  background: #eaf5f8;
  color: var(--blue-dark);
  font-weight: 900;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 800;
}

.faq p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.blog-card {
  display: flex;
  min-height: 170px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 800;
}

.cta-band {
  padding: 80px 0;
  background:
    linear-gradient(90deg, rgba(16, 87, 131, 0.94), rgba(80, 182, 189, 0.88)),
    url("assets/slide02.jpg") center / cover;
  color: #fff;
}

.cta-band p {
  max-width: 720px;
  font-size: 18px;
  font-weight: 700;
}

.footer {
  padding: 34px 0 88px;
  background: #163447;
  color: #dbeef4;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.source-note {
  color: #9fbac8;
  font-size: 12px;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: flex;
  gap: 8px;
}

.article-page {
  background: #f8fcfd;
}

.article-hero {
  padding: 80px 0 46px;
  background: #e8f5fb;
}

.article {
  width: min(840px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 88px;
}

.article h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.22;
}

.article h2 {
  margin-top: 44px;
  font-size: 28px;
}

.article p,
.article li {
  font-size: 17px;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 48px;
}

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

  .hero {
    min-height: 680px;
  }

  .hero-points,
  .cards,
  .mini-cards,
  .gallery-grid,
  .flow,
  .blog-list,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    grid-row: auto;
  }

  .section {
    padding: 64px 0;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero-inner {
    padding: 104px 0 72px;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .local-actions .btn,
  .sticky-cta .btn {
    width: 100%;
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
    flex-direction: column;
  }

  .qr-panel {
    grid-template-columns: 1fr;
  }

  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table th {
    border-bottom: 0;
  }
}
