*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #111827;
  --navy: #10223f;
  --blue: #1d4ed8;
  --teal: #0f766e;
  --red: #b91c1c;
  --gold: #d97706;
  --paper: #f6f8fb;
  --white: #ffffff;
  --line: #d8dee9;
  --muted: #5f6b7a;
  --shadow: 0 18px 44px rgba(17, 24, 39, 0.14);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 68px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 222, 233, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: 1180px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
  color: var(--navy);
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 8px;
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #405066;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--blue);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.header-cta {
  padding: 10px 18px;
  color: #fff;
  background: var(--red);
  font-size: 14px;
}

.header-cta:hover,
.btn-primary:hover {
  transform: translateY(-1px);
  background: #991b1b;
}

.btn-primary {
  color: #fff;
  background: var(--red);
  padding: 16px 28px;
  box-shadow: 0 14px 32px rgba(185, 28, 28, 0.28);
}

.btn-secondary {
  color: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 24px;
}

.btn-secondary:hover {
  transform: translateY(-1px);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  background: #0b1525;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 16, 32, 0.92) 0%, rgba(6, 16, 32, 0.74) 48%, rgba(6, 16, 32, 0.32) 100%),
    url("assets/header-bg.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(16, 34, 63, 0.72), rgba(16, 34, 63, 0));
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  min-height: 620px;
  margin: 0 auto;
  padding: 92px 24px 44px;
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(320px, 420px);
  align-items: end;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #a7f3d0;
  font-size: 14px;
  font-weight: 900;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: 56px;
  line-height: 1.14;
  font-weight: 900;
}

.hero-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.market-panel {
  align-self: end;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(10, 21, 38, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.panel-title {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
}

.panel-date {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.mini-chart {
  height: 146px;
  padding: 16px 20px 4px;
}

.market-list {
  display: grid;
}

.market-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  padding: 12px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.market-row strong {
  color: #fff;
}

.up {
  color: #86efac;
}

.down {
  color: #fca5a5;
}

.notice-band {
  background: #fff7ed;
  border-bottom: 1px solid #fed7aa;
}

.notice-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #7c2d12;
  font-size: 14px;
}

.notice-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--gold);
  font-weight: 900;
}

.section {
  padding: 82px 24px;
}

.section-white {
  background: #fff;
}

.section-dark {
  color: #fff;
  background: #111827;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.section-dark .section-kicker {
  color: #a7f3d0;
}

.section-title {
  max-width: 740px;
  margin: 0;
  color: var(--navy);
  font-size: 36px;
  line-height: 1.24;
  font-weight: 900;
}

.section-dark .section-title {
  color: #fff;
}

.section-copy {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
}

.section-dark .section-copy {
  color: rgba(255, 255, 255, 0.72);
}

.trust-grid,
.feature-grid,
.proof-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
}

.proof-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 36px;
}

.trust-card,
.feature-card,
.proof-card,
.faq-card,
.step-card,
.contact-card,
.legal-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.trust-card {
  min-height: 118px;
  padding: 22px;
}

.trust-number {
  display: block;
  color: var(--red);
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.trust-card span:last-child {
  display: block;
  margin-top: 10px;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
}

.feature-card,
.proof-card,
.faq-card {
  padding: 26px;
}

.icon-box {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
}

.feature-card:nth-child(2) .icon-box,
.feature-card:nth-child(5) .icon-box {
  background: var(--blue);
}

.feature-card:nth-child(3) .icon-box,
.feature-card:nth-child(6) .icon-box {
  background: var(--red);
}

.feature-card h3,
.proof-card h3,
.faq-card h3,
.step-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.45;
}

.feature-card p,
.proof-card p,
.faq-card p,
.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.data-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 44px;
  align-items: center;
}

.data-board {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #0b1220;
  overflow: hidden;
}

.board-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr;
  gap: 12px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.board-row:first-child {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.04);
}

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

.board-row strong {
  color: #fff;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.step-card {
  padding: 28px;
  position: relative;
}

.step-index {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.quote-mark {
  color: var(--gold);
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}

.proof-card p {
  margin-top: 8px;
}

.proof-person {
  margin-top: 20px;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
}

.cta-section {
  padding: 76px 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #183b66 54%, var(--teal));
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta-inner h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.28;
}

.cta-inner p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  padding: 46px 24px 38px;
  color: rgba(255, 255, 255, 0.62);
  background: #080d16;
  font-size: 13px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-meta {
  max-width: 940px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.9;
}

.footer-meta + .footer-meta {
  margin-top: 8px;
}

.page-hero {
  padding: 78px 24px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 34, 63, 0.94), rgba(16, 34, 63, 0.78)),
    url("assets/header-bg.jpg") center / cover no-repeat;
}

.page-hero-inner {
  max-width: 980px;
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.2;
}

.page-hero p {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-main,
.legal-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 24px 82px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.contact-card {
  padding: 30px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.info-list {
  display: grid;
  gap: 0;
}

.info-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

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

.info-label {
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
}

.info-value {
  color: #27364a;
}

.email-button {
  width: 100%;
  margin-top: 24px;
}

.legal-box {
  margin-top: 22px;
  padding: 24px;
  background: #fff7ed;
  border-color: #fed7aa;
}

.legal-box h2,
.legal-main h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 21px;
}

.legal-box p,
.legal-main p,
.legal-main li {
  color: #42526a;
  font-size: 15px;
}

.legal-main section {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.legal-main ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

@media (max-width: 980px) {
  .hero-inner,
  .data-layout,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .market-panel {
    max-width: 560px;
  }

  .trust-grid,
  .feature-grid,
  .proof-grid,
  .faq-grid,
  .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    height: auto;
  }

  .header-inner {
    min-height: 64px;
    padding: 10px 18px;
  }

  .nav-links {
    display: none;
  }

  .brand span:last-child {
    font-size: 14px;
  }

  .header-cta {
    padding: 10px 12px;
  }

  .hero,
  .hero-inner {
    min-height: 560px;
  }

  .hero-inner {
    padding: 58px 18px 28px;
    align-items: center;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .market-panel {
    display: none;
  }

  .section {
    padding: 58px 18px;
  }

  .section-title,
  .cta-inner h2 {
    font-size: 28px;
  }

  .trust-grid,
  .feature-grid,
  .proof-grid,
  .faq-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .notice-inner {
    padding: 16px 18px;
  }

  .board-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 54px 18px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .contact-main,
  .legal-main {
    padding: 38px 18px 62px;
  }

  .contact-card {
    padding: 22px;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
