
:root {
  --theme: #1d5fb7;
  --theme-dark: #164988;
  --theme-deep: #0d2f5e;
  --theme-light: #eef5ff;
  --theme-soft: #dbeaff;
  --theme-accent: #4a84d6;
  --theme-hover: #1853a3;
  --theme-border: rgba(29, 95, 183, .24);
  --header-bg: #103a70;
  --header-bg-2: #164c8d;
  --text-main: #17263d;
  --text-muted: #536782;
  --on-theme: #ffffff;
  --on-header: #f5f9ff;
  --on-dark: #f5f9ff;
  --white: #ffffff;
  --shadow-soft: 0 18px 46px rgba(11, 52, 105, .14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  background: var(--theme-light);
  color: var(--text-main);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: var(--theme-dark);
}

img {
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container,
.section-inner,
.header-inner,
.footer-inner,
.hero-inner {
  width: min(1280px, calc(100% - 80px));
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: linear-gradient(180deg, var(--header-bg) 0%, var(--header-bg-2) 100%);
  color: var(--on-header);
  box-shadow: var(--shadow-soft);
  border-bottom: 1px solid var(--theme-border);
  overflow: visible;
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  overflow: visible;
}

.site-logo,
.drawer-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: visible;
}

.site-logo img {
  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 68px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.main-nav a {
  color: var(--on-header);
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  padding: 28px 0 24px;
  border-bottom: 3px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--white);
  border-bottom-color: var(--theme-accent);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.main-btn,
.header-login,
.action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--theme-accent) 0%, var(--theme) 48%, var(--theme-dark) 100%);
  color: var(--on-theme);
  border: 1px solid var(--theme-border);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  white-space: nowrap;
  padding: 12px 19px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}

.main-btn:hover,
.action-link:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, var(--theme) 0%, var(--theme-hover) 100%);
  color: var(--on-theme);
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--theme-border);
  background: var(--theme-deep);
  color: var(--on-header);
  border-radius: 14px;
  font-size: 24px;
  cursor: pointer;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 10000;
  background: rgba(9, 35, 79, .52);
  transition: opacity .28s ease, visibility .28s ease;
}

.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 82%;
  max-width: 320px;
  height: 100vh;
  transform: translateX(-100%);
  transition: transform .28s ease;
  z-index: 10001;
  background: linear-gradient(180deg, var(--header-bg) 0%, var(--theme-deep) 100%);
  color: var(--on-header);
  padding: 18px;
  overflow-y: auto;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

body.menu-open {
  overflow: hidden;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--theme-border);
}

.drawer-logo img {
  width: auto;
  height: auto;
  max-width: 150px;
  max-height: 58px;
  object-fit: contain;
}

.drawer-close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--theme-border);
  background: var(--theme-deep);
  color: var(--on-header);
  font-size: 28px;
  cursor: pointer;
}

.drawer-nav {
  display: grid;
  gap: 6px;
  padding: 18px 0;
}

.drawer-nav a {
  color: var(--on-header);
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
}

.drawer-nav a.active,
.drawer-nav a:hover {
  background: var(--theme);
  border-color: var(--theme-accent);
  color: var(--on-theme);
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--theme-soft);
}

.section.compact {
  padding: 42px 0;
}

.section-heading {
  max-width: 820px;
  margin: 0 0 32px;
}

.section-kicker,
.page-kicker,
.hero-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--theme-soft);
  color: var(--theme-dark);
  border: 1px solid var(--theme-border);
  font-weight: 800;
  margin-bottom: 14px;
}

.section-heading h2,
.content-block h2,
.page-copy h2 {
  margin: 0 0 14px;
  color: var(--theme-dark);
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.18;
}

.section-heading p,
.content-block p,
.page-copy p {
  color: var(--text-muted);
  line-height: 1.8;
}

.hero-section {
  padding: 68px 0 48px;
  background:
    radial-gradient(circle at 15% 20%, var(--theme-soft) 0%, transparent 34%),
    linear-gradient(180deg, var(--theme-light) 0%, var(--white) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: 56px;
  min-height: 520px;
}

.hero-content h1 {
  font-size: clamp(42px, 4.2vw, 64px);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 0 0 22px;
  color: var(--theme-dark);
  max-width: 820px;
}

.hero-content p {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-main);
  margin: 0 0 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-tags span,
.category-pills a,
.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--theme-soft);
  color: var(--theme-dark);
  border: 1px solid var(--theme-border);
  font-weight: 700;
}

.hero-visual,
.media-box,
.app-visual,
.card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-media-box,
.page-visual {
  width: min(100%, 540px);
  min-height: 320px;
  max-height: 420px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, var(--white) 0%, var(--theme-soft) 100%);
  border: 1px solid var(--theme-border);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-media-box img,
.page-visual img,
.media-box img,
.app-visual img,
.card-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
}

.hero-media-box img {
  max-height: 340px;
}

.info-section {
  padding: 32px 0 48px;
}

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

.info-card,
.category-card,
.feature-card,
.zone-card,
.content-card,
.feedback-card,
.faq-item,
.notice,
.visual-card,
.service-point {
  position: relative;
  background: var(--white);
  color: var(--text-main);
  border: 1px solid var(--theme-border);
  box-shadow: var(--shadow-soft);
  border-radius: 24px;
  min-height: auto;
  height: auto;
  padding: 28px;
}

.info-card::before,
.category-card::before,
.feature-card::before,
.zone-card::before,
.content-card::before {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--theme), var(--theme-accent));
  margin-bottom: 16px;
}

.info-card .card-number,
.category-card .card-number,
.feature-card .card-number {
  color: var(--theme);
  font-weight: 900;
  letter-spacing: .04em;
}

.info-card h2,
.category-card h3,
.feature-card h3,
.zone-card h3,
.content-card h3,
.feedback-card h3,
.service-point h3 {
  color: var(--theme-dark);
  margin: 10px 0 10px;
  line-height: 1.3;
}

.info-card p,
.category-card p,
.feature-card p,
.zone-card p,
.content-card p,
.feedback-card p,
.service-point p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--theme-dark);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid var(--theme-border);
}

.text-link:hover {
  color: var(--theme-hover);
}

.category-section {
  padding: 8px 0 46px;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-pills a {
  background: var(--white);
  text-decoration: none;
}

.category-pills a:hover {
  background: linear-gradient(180deg, var(--theme-accent), var(--theme));
  color: var(--on-theme);
}

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

.feature-grid,
.service-grid,
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

.split-block,
.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 48px;
  align-items: center;
}

.split-block.reverse .media-box {
  order: -1;
}

.media-box,
.app-visual {
  min-height: 300px;
  padding: 28px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--theme-border);
  box-shadow: var(--shadow-soft);
}

.media-box img,
.app-visual img {
  max-height: 330px;
}

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

.check-list li,
.detail-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--theme-border);
  border-radius: 16px;
  background: var(--white);
  color: var(--text-main);
}

.check-list li::before,
.detail-list li::before {
  content: "•";
  position: absolute;
  left: 18px;
  top: 10px;
  color: var(--theme);
  font-size: 24px;
  line-height: 1;
}

.page-hero {
  padding: 58px 0 42px;
  background: linear-gradient(180deg, var(--theme-light) 0%, var(--theme-soft) 100%);
}

.page-hero-inner {
  min-height: 430px;
}

.page-copy h1 {
  margin: 0 0 20px;
  color: var(--theme-dark);
  font-size: clamp(40px, 4.5vw, 62px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.page-copy > p {
  font-size: 18px;
  line-height: 1.82;
  margin-bottom: 0;
}

.content-block {
  max-width: 920px;
}

.content-block.wide {
  max-width: none;
}

.content-block p {
  margin: 0 0 18px;
}

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

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

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

.faq-item h3 {
  margin: 0 0 10px;
  color: var(--theme-dark);
  font-size: 18px;
}

.faq-item p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.78;
}

.notice {
  background: linear-gradient(180deg, var(--theme-soft) 0%, var(--white) 100%);
  border-left: 5px solid var(--theme);
}

.notice h2,
.notice h3 {
  margin-top: 0;
  color: var(--theme-dark);
}

.related-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.related-nav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--white);
  color: var(--theme-dark);
  border: 1px solid var(--theme-border);
  font-weight: 800;
}

.related-nav a:hover {
  color: var(--on-theme);
  background: var(--theme);
}

.footer {
  background: linear-gradient(180deg, var(--theme-dark) 0%, var(--theme-deep) 100%);
  color: var(--on-dark);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 38px;
}

.footer h2 {
  color: var(--on-dark);
  font-size: 17px;
  margin: 0 0 16px;
}

.footer p {
  color: var(--on-dark);
  opacity: .9;
}

.footer a {
  color: var(--on-dark);
  display: block;
  text-decoration: none;
  margin: 8px 0;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-logo img {
  max-width: 180px;
  max-height: 66px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer-notice {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--theme-border);
}

.footer-notice strong {
  display: block;
  margin-bottom: 8px;
}

@media (min-width: 1440px) {
  .container,
  .section-inner,
  .header-inner,
  .footer-inner,
  .hero-inner {
    width: min(1360px, calc(100% - 120px));
  }

  .hero-inner {
    gap: 72px;
  }
}

@media (max-width: 1180px) and (min-width: 1024px) {
  .main-nav {
    gap: 10px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .site-logo img {
    max-width: 138px;
  }

  .header-actions .main-btn {
    padding: 10px 14px;
    font-size: 13px;
  }
}

@media (max-width: 1023px) {
  .header-inner {
    width: min(100% - 28px, 1280px);
    min-height: 68px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 10px;
  }

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

  .main-nav {
    display: none;
  }

  .site-logo {
    justify-self: center;
  }

  .site-logo img {
    max-width: min(150px, 42vw);
    max-height: 56px;
  }

  .header-actions {
    justify-self: end;
  }

  .header-actions .main-btn {
    padding: 10px 16px;
  }

  .hero-section {
    padding: 48px 0 36px;
  }

  .hero-inner,
  .page-hero-inner,
  .split-block {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: 0;
  }

  .split-block.reverse .media-box {
    order: initial;
  }

  .hero-content h1,
  .page-copy h1 {
    font-size: clamp(36px, 9vw, 52px);
  }

  .hero-media-box,
  .page-visual {
    max-width: 100%;
    min-height: auto;
    padding: 24px;
  }

  .hero-media-box img,
  .page-visual img {
    max-height: 300px;
  }

  .info-grid,
  .category-grid,
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .service-grid,
  .feedback-grid,
  .feedback-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 767px) {
  .container,
  .section-inner,
  .header-inner,
  .footer-inner,
  .hero-inner {
    width: min(100% - 32px, 1280px);
  }

  .section {
    padding: 48px 0;
  }

  .hero-section {
    padding-top: 40px;
  }

  .info-grid,
  .category-grid,
  .feature-grid,
  .service-grid,
  .feedback-grid,
  .feedback-grid.four,
  .content-grid,
  .mini-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content p,
  .page-copy > p {
    font-size: 17px;
  }

  .hero-media-box {
    max-height: none;
  }

  .category-pills {
    gap: 9px;
  }

  .footer {
    padding-top: 44px;
  }
}

@media (max-width: 390px) {
  .header-inner {
    width: min(100% - 20px, 1280px);
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 8px;
  }

  .site-logo img {
    max-width: min(120px, 36vw);
    max-height: 48px;
  }

  .header-actions .main-btn {
    padding: 8px 12px;
    font-size: 13px;
  }

  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
  }
}

.subsection-gap { margin-top: 36px; }

.hero-section .hero-media-box img[src="logo.webp"] { max-width: 70%; }
