:root {
  --paper: #ffffff;
  --wash: #f6f7f4;
  --ink: #1d2420;
  --soft-ink: #48524c;
  --muted: #717b75;
  --line: #dfe5df;
  --accent: #286451;
  --accent-dark: #1f4d3f;
  --accent-soft: #e8f1ed;
  --cta: #d96f22;
  --cta-dark: #b85715;
  --radius: 8px;
  --shadow: 0 14px 34px rgba(30, 45, 38, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Yu Gothic UI", Meiryo, sans-serif;
  line-height: 1.78;
}

a {
  color: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand {
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
}

.header-nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 700;
}

.header-nav a {
  text-decoration: none;
}

.header-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  padding: clamp(44px, 7vw, 76px) 0 38px;
  background: linear-gradient(180deg, var(--wash), #fff 84%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.35;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.04rem;
  line-height: 1.45;
}

.lead {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--soft-ink);
  font-size: 1.04rem;
  font-weight: 600;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 0.1s ease, background 0.2s ease, border-color 0.2s ease;
}

.trust-list li a {
  display: block;
  padding: 7px 10px;
  color: var(--accent-dark);
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
}

.trust-list li:active {
  transform: scale(0.95);
  background: #f0f5f1;
}

@media (hover: hover) {
  .trust-list li:hover {
    background: #f9fbf9;
    border-color: var(--accent);
    cursor: pointer;
  }
}

.cta {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: var(--radius);
  background: var(--cta);
  color: #fff;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(217, 111, 34, .22);
}

.cta:hover {
  background: var(--cta-dark);
}

.cta-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .85rem;
}

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

.hero-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  background: var(--accent-soft);
}

.panel-caption {
  margin: 16px 0 0;
  color: var(--soft-ink);
  font-size: .92rem;
  font-weight: 700;
}

.section {
  padding: clamp(44px, 6vw, 72px) 0;
}

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

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head p:not(.eyebrow) {
  color: var(--soft-ink);
  font-weight: 600;
}

.grid-4,
.grid-3,
.faq-list {
  display: grid;
  gap: 14px;
}

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

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

.card,
.faq-item,
.check-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.card {
  padding: 18px;
}

.card-number {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: .82rem;
  font-weight: 900;
}

.card p,
.check-item p,
.faq-item p {
  margin-bottom: 0;
  color: var(--soft-ink);
  font-size: .94rem;
}

.argument-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  background: var(--accent-dark);
  color: #fff;
}

.argument-box p {
  color: rgba(255, 255, 255, .84);
}

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

.argument-list li {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  font-weight: 800;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.check-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 16px;
}

.check-mark {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.mid-cta,
.final-cta {
  padding: clamp(34px, 5vw, 52px) 0;
  background: var(--accent-dark);
  color: #fff;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cta-band p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .84);
}

.faq-list {
  grid-template-columns: 1fr;
}

.faq-item {
  padding: 18px;
}

.faq-q {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.faq-q span {
  color: var(--accent);
  font-weight: 900;
}

.faq-q h3 {
  margin-bottom: 6px;
}

.disclaimer {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-size: .82rem;
}

.footer {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .84rem;
  text-align: center;
}

.footer a {
  font-weight: 800;
}

@media (max-width: 860px) {
  .header-nav,
  .header-cta {
    display: none;
  }

  .hero-grid,
  .argument-box,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 14px;
  }

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

  .cta-band {
    display: grid;
  }

}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 24px, 1040px);
  }

  .hero {
    padding-top: 34px;
  }

  .grid-4,
  .grid-3,
  .check-list {
    grid-template-columns: 1fr;
  }

  .cta {
    width: 100%;
    padding: 0 18px;
    text-align: center;
  }

  .trust-list li {
    width: calc(50% - 4px);
    text-align: center;
  }
}

.hero-panel img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 6px; margin-bottom: 16px; border: 1px solid var(--line); }
.visual-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 24px; align-items: center; }
.visual-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.visual-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.visual-copy { padding: 22px; border-left: 4px solid var(--accent); background: #fff; }
.visual-copy p:not(.eyebrow) { color: var(--soft-ink); font-weight: 600; }
.form-proof-section { background: linear-gradient(180deg, #fff, var(--wash)); }
.form-proof-grid { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 28px; align-items: center; }
.form-proof-card { padding: 14px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.form-proof-card img { width: 100%; border-radius: 6px; border: 1px solid var(--line); }
.form-proof-copy { padding: 24px; border-left: 4px solid var(--accent); background: #fff; }
.form-proof-copy p:not(.eyebrow) { color: var(--soft-ink); font-weight: 600; }
.form-proof-list { display: grid; gap: 10px; margin: 18px 0 22px; padding: 0; list-style: none; }
.form-proof-list li { position: relative; padding-left: 28px; color: var(--soft-ink); font-weight: 800; }
.form-proof-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 900; }
.form-proof-copy .cta { width: 100%; padding: 0 18px; font-size: .95rem; }
.worry-card { overflow: hidden; padding: 0; }
.worry-visual { margin: 0; background: var(--wash); border-bottom: 1px solid var(--line); }
.worry-visual img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.worry-card-body { padding: 16px 18px 18px; }
.cta {
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid rgba(184, 87, 21, .18);
  border-radius: 7px;
  background: linear-gradient(180deg, #df7827, #cf651a);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: 0 10px 18px rgba(207, 101, 26, .18);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.cta::after {
  content: ">";
  display: inline-flex;
  width: auto;
  height: 100%;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, .28);
  border-radius: 0;
  background: transparent;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}
.cta:hover { background: linear-gradient(180deg, #e1802e, #c95f17); box-shadow: 0 12px 22px rgba(207, 101, 26, .22); }
.cta:active { transform: translateY(1px); box-shadow: 0 7px 14px rgba(207, 101, 26, .18); }
.hero .cta { min-width: min(100%, 360px); }
.mid-cta .cta,
.final-cta .cta { min-width: min(100%, 320px); }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.case-card { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.case-card p { margin-bottom: 0; color: var(--soft-ink); font-size: .94rem; }
.case-note { margin: 18px 0 0; padding: 16px; border-left: 4px solid var(--accent); background: var(--accent-soft); color: var(--soft-ink); font-weight: 700; }
@media (max-width: 860px) { .visual-grid, .form-proof-grid { grid-template-columns: 1fr; } }
@media (max-width: 860px) { .case-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .cta { min-height: 56px; padding: 0 16px; font-size: .94rem; } .cta::after { margin-left: 12px; padding-left: 12px; } }

/* ==========================================================================
   Simulator UI
   ========================================================================== */
.simulator-box {
  background: #ffffff;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 28px rgba(40, 100, 81, 0.15);
  margin-top: 16px;
  position: relative;
  overflow: hidden;
}

.sim-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}

.sim-title {
  font-weight: 800;
  color: var(--accent);
  font-size: clamp(0.95rem, 4vw, 1.1rem);
  margin: 0;
  line-height: 1.4;
  padding-right: 8px;
}

.sim-step-badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sim-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--accent-soft);
  width: 100%;
}

.sim-progress-fill {
  height: 100%;
  background: var(--cta);
  width: 33%;
  transition: width 0.4s ease;
}

.sim-question {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
  text-align: center;
}

.sim-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sim-btn {
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px 8px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--soft-ink);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.sim-btn:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.sim-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--accent-soft);
  border-top: 4px solid var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.sim-result-badge {
  text-align: center;
  color: var(--cta);
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.simulator-box .cta {
  width: 100%;
  font-size: clamp(0.85rem, 3.8vw, 1.15rem);
  white-space: normal;
  word-break: keep-all;
  line-height: 1.4;
  padding: 12px 16px;
  min-height: 54px;
}

/* ==========================================================================
   Micro Copy & Floating CTA
   ========================================================================== */
.micro-copy {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 8px;
  text-align: center;
}

.micro-copy.strong {
  color: #c95f17;
  font-weight: 800;
}

.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 16px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  z-index: 100;
  text-align: center;
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-cta .cta {
  width: 100%;
  max-width: 440px;
  min-height: 54px;
  margin: 0 auto;
  font-size: clamp(0.9rem, 4.2vw, 1.05rem);
  white-space: nowrap;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 111, 34, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(217, 111, 34, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 111, 34, 0); }
}

@media (min-width: 861px) {
  .floating-cta {
    display: none;
  }
}

/* ==========================================================================
   Hakajimai bridge comparison LP
   ========================================================================== */
.bridge-hero {
  background:
    linear-gradient(180deg, rgba(246, 247, 244, .96), rgba(255, 255, 255, 1) 82%),
    radial-gradient(circle at 16% 14%, rgba(40, 100, 81, .12), transparent 30%);
}

.pr-label {
  display: inline-flex;
  min-width: 34px;
  min-height: 22px;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: 0;
}

.micro-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 660px;
  margin: 0 0 24px;
}

.micro-choice-grid a {
  display: flex;
  min-height: 46px;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  color: var(--accent-dark);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}

.micro-choice-grid a::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.micro-choice-grid a:hover {
  border-color: var(--accent);
  background: #fff;
}

.micro-choice-grid a:active {
  transform: translateY(1px);
}

.bridge-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.bridge-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.bridge-panel-body {
  padding: 18px;
}

.method-badge {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 900;
}

.bridge-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bridge-steps li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: center;
  color: var(--soft-ink);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.45;
}

.bridge-steps span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
}

.method-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.scroll-hint {
  display: none;
  margin: -6px 0 10px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  text-align: right;
}

.method-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

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

.method-table th {
  background: #f2f5f1;
  color: var(--accent-dark);
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.45;
}

.method-table tbody th {
  width: 150px;
  background: #fff;
  color: var(--ink);
  text-align: left;
}

.method-table td {
  color: var(--soft-ink);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.55;
}

.method-table tr:last-child th,
.method-table tr:last-child td {
  border-bottom: 0;
}

.method-table th:last-child,
.method-table td:last-child {
  border-right: 0;
}

.method-table .highlight-col {
  background: #fff9ea;
}

.method-table thead .highlight-col {
  background: #f6e7bf;
  color: #604b15;
}

.table-mark {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 900;
}

.table-mark.double {
  background: var(--accent);
  color: #fff;
}

.table-mark.circle {
  border: 2px solid #55a786;
  color: var(--accent-dark);
}

.table-mark.triangle {
  border: 2px solid #d6a43b;
  color: #9b6a08;
}

.compact-note {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--accent);
  background: #fff;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
}

.decision-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: center;
}

.decision-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.decision-card .cta {
  width: 100%;
}

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

.timeline-step {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.timeline-step span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.timeline-step p {
  margin-bottom: 0;
  color: var(--soft-ink);
  font-size: .92rem;
}

@media (max-width: 860px) {
  .micro-choice-grid,
  .decision-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .bridge-panel {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .micro-choice-grid {
    gap: 8px;
  }

  .micro-choice-grid a {
    min-height: 42px;
    font-size: .84rem;
  }

  .method-table th,
  .method-table td {
    padding: 12px 10px;
  }

  .scroll-hint {
    display: block;
  }

  .compact-note {
    font-size: .82rem;
  }
}

/* ==========================================================================
   Simple blog-style hakajimai article LP
   ========================================================================== */
.article-lp {
  background: #f4f5f6;
  color: #222;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
}

.article-lp .tracking-pixel {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.article-page {
  padding: 30px 0 62px;
}

.simple-article {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px clamp(34px, 5vw, 54px) 0;
  background: #fff;
}

.article-pr {
  display: inline-flex;
  min-width: 42px;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  margin: 0 0 8px;
  border: 1px solid #aeb7b5;
  background: #fff;
  color: #4f5b58;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1;
}

.simple-article h1 {
  margin: 0 0 12px;
  color: #252b29;
  font-size: clamp(1.55rem, 4.2vw, 2.05rem);
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: 0;
}

.article-subtitle {
  margin: 0 0 24px;
  color: #384440;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.65;
}

.article-main-image {
  margin: 0 0 30px;
}

.article-main-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 2px;
}

.article-worry-box {
  margin: 0 0 32px;
  padding: 18px 22px;
  border: 3px solid #65b6ca;
  background: #eaf6fb;
}

.article-worry-box ul,
.article-service-box ul {
  margin: 0;
  padding-left: 1.35em;
}

.article-worry-box li,
.article-service-box li {
  margin: 4px 0;
  color: #24312e;
  font-weight: 600;
  line-height: 1.7;
}

.simple-article p {
  margin: 0 0 18px;
  color: #2f3936;
  font-size: .98rem;
}

.simple-article strong {
  font-weight: 600;
}

.article-text-cta {
  padding: 12px 14px;
  border-left: 4px solid #ef9800;
  background: #fff8ea;
}

.article-text-cta a {
  color: #b85715;
  font-weight: 600;
  text-underline-offset: 3px;
}

.article-section {
  margin-top: 46px;
}

.article-section h2 {
  margin: 0 0 24px;
  padding: 18px 22px;
  background: #eaf5fb;
  color: #202927;
  font-size: clamp(1.28rem, 3.4vw, 1.72rem);
  font-weight: 700;
  line-height: 1.48;
}

.article-section h3 {
  margin: 28px 0 14px;
  padding: 12px 16px;
  border-left: 6px solid #7f8985;
  background: #edf7f3;
  color: #25302d;
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.48;
}

.article-scroll-note {
  margin: -12px 0 8px;
  color: #7b8682;
  font-size: .82rem;
  font-weight: 600;
  text-align: right;
}

.article-table-wrap {
  overflow-x: auto;
  margin: 0 0 18px;
  border: 1px solid #d8dfdd;
  background: #fff;
}

.article-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.article-table th,
.article-table td {
  padding: 14px 12px;
  border-right: 1px solid #d8dfdd;
  border-bottom: 1px solid #d8dfdd;
  color: #27312f;
  font-size: .9rem;
  line-height: 1.6;
  text-align: center;
  vertical-align: top;
}

.article-table th {
  background: #f1f7f3;
  font-weight: 600;
}

.article-table tbody th {
  width: 145px;
  background: #fbfcfc;
  text-align: left;
}

.article-table tr:last-child th,
.article-table tr:last-child td {
  border-bottom: 0;
}

.article-table th:last-child,
.article-table td:last-child {
  border-right: 0;
}

.article-next-box {
  margin: 20px 0 0;
  padding: 18px 20px 20px;
  border: 1px solid #d8dfdd;
  background: #fbfcfc;
}

.article-next-box p:first-child {
  margin-bottom: 14px;
}

.article-next-steps {
  margin: 0 0 16px;
  padding: 14px 16px;
  border: 1px solid #e7ddd0;
  background: #fffaf2;
}

.article-next-steps p {
  margin: 0 0 8px;
  color: #27312f;
  font-weight: 600;
}

.article-next-steps ul {
  margin: 0;
  padding-left: 1.25em;
}

.article-next-steps li {
  margin: 4px 0;
  color: #33403c;
  font-size: .94rem;
  line-height: 1.7;
}

.article-next-box .article-cta {
  margin-top: 0;
}

.article-service-box {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin: 26px 0 0;
  padding: 20px;
  border: 1px solid #d8dfdd;
  background: #fff;
}

.article-service-box figure {
  margin: 0;
}

.article-form-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.article-service-box img {
  width: 100%;
  border: 1px solid #d8dfdd;
}

.article-form-link img {
  transition: border-color .16s ease, opacity .16s ease;
}

.article-form-link figcaption {
  margin: 8px 0 0;
  color: #b85715;
  font-size: .86rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-form-link:hover img {
  border-color: #ef9800;
  opacity: .96;
}

.article-service-box h3 {
  margin: 0 0 10px;
  padding: 0;
  border-left: 0;
  background: transparent;
  color: #27312f;
  font-size: 1.12rem;
  font-weight: 700;
}

.article-conclusion {
  padding-bottom: 8px;
}

.article-final-reassure {
  padding: 12px 14px;
  border-left: 4px solid #ef9800;
  background: #fff8ea;
  font-weight: 600;
}

.article-cta {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  margin: 26px auto 10px;
  padding: 0 24px;
  border-radius: 4px;
  background: #ef9800;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}

.article-cta::after {
  content: ">";
  margin-left: 10px;
}

.article-cta:hover {
  background: #dc8500;
}

.article-cta-note {
  margin: 0 0 0;
  color: #68726f;
  font-size: .84rem;
  text-align: center;
}

.article-disclaimer {
  margin: 46px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid #d8dfdd;
  color: #6f7a77;
  font-size: .78rem;
  line-height: 1.75;
}

.article-footer {
  padding: 26px 16px 42px;
  color: #69736f;
  font-size: .84rem;
  text-align: center;
}

.article-footer a {
  color: inherit;
  font-weight: 700;
}

@media (max-width: 760px) {
  .simple-article {
    width: 100%;
    padding: 28px 20px 0;
  }

  .article-page {
    padding: 0 0 36px;
  }

  .article-service-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .article-lp {
    background: #fff;
  }

  .simple-article h1 {
    line-height: 1.32;
  }

  .article-subtitle {
    font-size: 1rem;
  }

  .article-worry-box {
    padding: 16px 18px;
  }

  .article-next-box {
    padding: 16px;
  }

  .article-section h2 {
    padding: 16px 18px;
  }

  .article-table {
    min-width: 660px;
  }

  .article-cta {
    width: 100%;
  }
}
