:root {
  color-scheme: light;
  --bg: #f5f7f3;
  --paper: #fffef9;
  --ink: #171918;
  --muted: #626962;
  --line: #dfe5dc;
  --accent: #1d7d64;
  --accent-dark: #12523f;
  --soft: #e8f1ec;
  --warn: #8b5b18;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(223, 229, 220, 0.9);
  background: rgba(245, 247, 243, 0.94);
  backdrop-filter: blur(18px);
}

.nav,
.section,
.footer,
.hero {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  font-size: 18px;
  white-space: nowrap;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  box-shadow: 0 7px 18px rgba(29, 125, 100, 0.2);
}

.links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: 48px;
  padding: 86px 0 72px;
}

.eyebrow {
  color: var(--accent);
  font-weight: 800;
  margin: 0 0 12px;
}

h1 {
  margin: 0;
  font-size: 76px;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin: 0 0 12px;
  font-size: 44px;
  line-height: 1.18;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.3;
}

h1 .line,
h2 .line {
  display: block;
}

.lead {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  overflow-wrap: anywhere;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.device-wall {
  display: grid;
  grid-template-columns: 0.86fr 1fr 0.86fr;
  align-items: end;
  gap: 12px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 254, 249, 0.62);
  border: 1px solid var(--line);
  overflow: hidden;
}

.phone-shot,
.watch-shot,
.wide-shot {
  width: 100%;
  min-width: 0;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 18px 45px rgba(18, 82, 63, 0.13);
  background: #fff;
}

.phone-shot.main {
  transform: translateY(-12px);
}

.section {
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.section-lead {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  overflow-wrap: anywhere;
}

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

.feature,
.panel,
.notice {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.feature {
  min-height: 178px;
}

.feature strong,
.spec strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.feature p,
.spec p,
.panel p,
.notice p,
.faq p,
.policy-list li {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.support-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px;
  box-shadow: 0 18px 44px rgba(18, 82, 63, 0.09);
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.spec {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.notice {
  border-color: #ead8b7;
  background: #fffaf0;
}

.notice strong {
  color: var(--warn);
}

.page-head {
  padding: 72px 0 54px;
}

.page-head p {
  max-width: 760px;
}

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

.faq article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.policy-list {
  display: grid;
  gap: 12px;
  padding-left: 20px;
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero,
  .wide {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 38px;
  }

  .feature-grid,
  .policy-grid,
  .spec-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .nav,
  .section,
  .footer,
  .hero {
    width: min(358px, calc(100vw - 32px));
    max-width: min(358px, calc(100vw - 32px));
    margin-left: 16px;
    margin-right: 16px;
  }

  .hero > *,
  .wide > *,
  .device-wall > * {
    min-width: 0;
  }

  .brand {
    gap: 7px;
    font-size: 15px;
  }

  .brand img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .links {
    display: none;
  }

  .hero {
    padding-top: 54px;
  }

  h1 {
    font-size: 36px;
    max-width: 100%;
  }

  h2 {
    font-size: 30px;
    max-width: 100%;
  }

  .lead {
    font-size: 17px;
  }

  .device-wall {
    grid-template-columns: minmax(0, 1fr);
    padding: 8px;
    gap: 0;
  }

  .device-wall img:not(.main) {
    display: none;
  }

  .phone-shot.main {
    transform: none;
  }

  .feature-grid,
  .policy-grid,
  .spec-list {
    grid-template-columns: 1fr;
  }
}
