:root {
  --article-night: #071022;
  --article-night-soft: #152044;
  --article-blue: #243b6b;
  --article-purple: #6c5fa7;
  --article-coral: #df8870;
  --article-sun: #f6a86a;
  --article-gold: #f1d39a;
  --article-mint: #dff4ef;
  --article-cream: #fffaf1;
  --article-ink: #172033;
  --article-muted: #607086;
  --article-line: #dfe6ea;
  --article-accent: #0f7a6c;
  --article-accent-dark: #075f53;
}

.article-page,
.article-page * {
  box-sizing: border-box;
}

.article-page {
  margin: 0;
  overflow-x: hidden;
  color: var(--article-ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(191, 232, 223, 0.42), transparent 24rem),
    radial-gradient(circle at 92% 10%, rgba(246, 168, 106, 0.18), transparent 24rem),
    linear-gradient(180deg, #f4f8fb 0%, #fff9f2 48%, #f0f8f5 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  line-height: 1.85;
}

.article-page a {
  color: var(--article-accent-dark);
  text-underline-offset: 0.2em;
}

.article-page a:focus-visible,
.article-page button:focus-visible,
.media-articles a:focus-visible,
.result-related a:focus-visible {
  outline: 3px solid #f3a35e;
  outline-offset: 4px;
  border-radius: 8px;
}

.article-page img,
.article-page svg {
  max-width: 100%;
}

.article-page h2,
.article-page h3 {
  scroll-margin-top: 28px;
}

.article-skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff !important;
  background: var(--article-accent-dark);
  transform: translateY(-160%);
  transition: transform 150ms ease;
}

.article-skip-link:focus {
  transform: translateY(0);
}

.article-site-header {
  position: relative;
  min-height: 176px;
  overflow: hidden;
  color: #fffdf8;
  background:
    radial-gradient(circle at 88% 100%, rgba(255, 218, 171, 0.4), transparent 32%),
    radial-gradient(circle at 18% 0%, rgba(108, 95, 167, 0.38), transparent 34%),
    linear-gradient(145deg, var(--article-night), var(--article-night-soft) 58%, var(--article-purple));
}

.article-site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.82) 0 1px, transparent 1.4px);
  background-size: 72px 72px;
}

.article-header-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 1040px);
  min-height: 176px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.article-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fffdf8 !important;
  text-decoration: none;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.article-brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgba(241, 211, 154, 0.55);
  border-radius: 16px;
  color: var(--article-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.article-brand-mark svg {
  width: 28px;
  height: 28px;
}

.article-site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.article-site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fffdf8;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.article-site-nav a:last-child {
  border-color: rgba(241, 211, 154, 0.7);
  color: #1a2034;
  background: linear-gradient(135deg, #fff2d6, #f6b07b);
}

.article-shell {
  width: min(100% - 32px, 1040px);
  margin: 0 auto;
  padding: 24px 0 64px;
}

.article-breadcrumb {
  margin: 0 0 18px;
  color: var(--article-muted);
  font-size: 13px;
}

.article-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 7px;
  color: #9aa6b6;
}

.article-content,
.article-index-panel {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid rgba(223, 230, 234, 0.95);
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 24px 70px rgba(23, 32, 51, 0.1);
}

.article-index-panel {
  width: 100%;
}

.article-category {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--article-accent-dark);
  background: var(--article-mint);
  font-size: 12px;
  font-weight: 900;
}

.article-page h1 {
  margin: 0;
  color: #111a2d;
  font-size: clamp(28px, 6vw, 42px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.article-lead {
  margin: 20px 0 0;
  color: #3d4b5d;
  font-size: clamp(17px, 2.4vw, 19px);
  line-height: 1.85;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin: 18px 0 0;
  padding: 14px 0;
  border-top: 1px solid var(--article-line);
  border-bottom: 1px solid var(--article-line);
  color: var(--article-muted);
  font-size: 13px;
}

.article-toc {
  margin: 28px 0 34px;
  padding: 19px 20px;
  border: 1px solid #d9e9e5;
  border-radius: 18px;
  background: #f3fbf8;
}

.article-toc h2 {
  margin: 0 0 10px !important;
  padding: 0 !important;
  font-size: 18px !important;
}

.article-toc h2::before {
  display: none !important;
}

.article-toc ol {
  margin: 0;
  padding-left: 1.4em;
}

.article-toc li + li {
  margin-top: 5px;
}

.article-body {
  font-size: clamp(16px, 2.2vw, 18px);
}

.article-body p {
  margin: 0 0 1.35em;
}

.article-body h2 {
  position: relative;
  margin: 3.1em 0 1em;
  padding-left: 18px;
  color: #17233d;
  font-size: clamp(23px, 4vw, 30px);
  line-height: 1.45;
}

.article-body h2::before {
  content: "";
  position: absolute;
  top: 0.18em;
  bottom: 0.16em;
  left: 0;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--article-coral), var(--article-sun));
}

.article-body h3 {
  margin: 2.15em 0 0.75em;
  color: #203153;
  font-size: clamp(19px, 3vw, 22px);
  line-height: 1.5;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.5em;
  padding-left: 1.45em;
}

.article-body li + li {
  margin-top: 0.42em;
}

.article-point,
.article-safety,
.article-note,
.article-disclaimer {
  margin: 28px 0;
  padding: 18px 19px;
  border: 1px solid #d7e7e3;
  border-radius: 17px;
  background: #f2faf7;
}

.article-safety {
  border-color: #f2d7c8;
  background: #fff8f1;
}

.article-note,
.article-disclaimer {
  border-color: #dfe6ea;
  color: #4f5d6f;
  background: #f7f9fa;
  font-size: 14px;
}

.article-point > :last-child,
.article-safety > :last-child,
.article-note > :last-child,
.article-disclaimer > :last-child {
  margin-bottom: 0;
}

.article-checklist {
  display: grid;
  gap: 10px;
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
}

.article-checklist label {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid var(--article-line);
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
}

.article-checklist input {
  width: 20px;
  height: 20px;
  margin: 4px 0 0;
  accent-color: var(--article-accent);
}

.article-page .article-comparison-memo {
  margin: 20px 0 30px;
}

.article-page .article-copy-button {
  min-height: 48px;
  max-width: 100%;
  padding: 12px 20px;
  border: 1px solid var(--article-accent-dark);
  border-radius: 13px;
  color: #fff;
  background: var(--article-accent-dark);
  box-shadow: 0 10px 24px rgba(7, 95, 83, 0.18);
  font: inherit;
  font-weight: 800;
  line-height: 1.4;
  cursor: pointer;
}

.article-page .article-copy-button:hover {
  background: #054b42;
}

.article-page .article-copy-button:active {
  transform: translateY(1px);
}

.article-page .article-copy-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.article-page .article-comparison-template {
  max-width: 100%;
  margin: 16px 0 0;
  padding: 18px;
  overflow: visible;
  border: 1px solid var(--article-line);
  border-radius: 16px;
  color: #213047;
  background: #f7fbfa;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.75;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: normal;
  user-select: text;
  -webkit-user-select: text;
}

.article-references,
.article-related-section {
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid var(--article-line);
}

.article-references h2,
.article-related-section h2 {
  margin-top: 0;
}

.article-references ul {
  padding-left: 1.3em;
}

.article-references a {
  overflow-wrap: anywhere;
}

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

.article-related-card {
  padding: 16px;
  border: 1px solid var(--article-line);
  border-radius: 15px;
  background: #fff;
}

.article-related-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--article-muted);
  font-size: 11px;
  font-weight: 800;
}

.article-related-card a {
  font-weight: 900;
  line-height: 1.55;
}

.article-internal-cta,
.article-affiliate {
  margin-top: 34px;
  padding: 24px;
  border-radius: 20px;
  text-align: center;
}

.article-internal-cta {
  border: 1px solid rgba(108, 95, 167, 0.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(246, 168, 106, 0.26), transparent 38%),
    linear-gradient(145deg, #17213c, #273a68);
  color: #fff;
}

.article-internal-cta h2,
.article-internal-cta p {
  color: #fff;
}

.article-internal-cta h2 {
  margin: 0 0 8px;
  padding: 0;
  font-size: 22px;
}

.article-internal-cta h2::before {
  display: none;
}

.article-internal-cta p {
  margin-bottom: 16px;
}

.article-primary-link,
.article-affiliate-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 14px;
  color: #172033 !important;
  background: linear-gradient(135deg, #fff2d6, #f6b07b);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  font-weight: 900;
}

.article-affiliate {
  border: 1px solid rgba(108, 95, 167, 0.2);
  color: #fff;
  background: linear-gradient(145deg, #111827, #243b6b 72%, #6c5fa7);
}

.article-affiliate h2 {
  margin: 0 0 15px;
  padding: 0;
  color: #fff;
  font-size: 22px;
}

.article-affiliate h2::before {
  display: none;
}

.article-affiliate-pr {
  margin: 13px 0 0 !important;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.article-affiliate[hidden] {
  display: none !important;
}

.article-page .moshimo-impression-pixel {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  pointer-events: none;
}

.article-footer {
  width: min(100% - 32px, 1040px);
  margin: 0 auto;
  padding: 0 0 44px;
  color: var(--article-muted);
  font-size: 12px;
}

.article-footer .notice {
  padding: 13px 15px;
  border: 1px solid rgba(223, 230, 234, 0.95);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
}

.article-footer .notice p {
  margin: 0 0 5px;
  line-height: 1.6;
}

.article-footer .notice p:last-child {
  margin-bottom: 0;
}

.article-footer .footer-policy {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.article-footer .footer-policy__panel {
  overflow: hidden;
  border: 1px solid rgba(15, 122, 108, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.article-footer .footer-policy__panel summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  color: var(--article-accent-dark);
  cursor: pointer;
  list-style: none;
  font-weight: 900;
}

.article-footer .footer-policy__panel summary::-webkit-details-marker {
  display: none;
}

.article-footer .footer-policy__panel summary::after {
  content: "+";
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--article-mint);
  font-size: 18px;
}

.article-footer .footer-policy__panel[open] summary::after {
  transform: rotate(45deg);
}

.article-footer .footer-policy__body {
  padding: 0 14px 14px;
  color: #41464d;
  line-height: 1.7;
}

.article-footer .footer-policy__body p {
  margin: 0 0 10px;
}

.article-footer .footer-policy__body p:last-child {
  margin-bottom: 0;
}

.article-footer .footer-policy__body a {
  font-weight: 800;
  overflow-wrap: anywhere;
}

.article-index-intro {
  max-width: 760px;
  margin-bottom: 32px;
}

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

.article-index-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--article-line);
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23, 32, 51, 0.06);
}

.article-index-card h2 {
  margin: 10px 0;
  font-size: 21px;
  line-height: 1.5;
}

.article-index-card p {
  margin: 0 0 15px;
  color: #516074;
}

.article-index-card time {
  margin-top: auto;
  color: var(--article-muted);
  font-size: 12px;
}

.article-index-read {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin: 4px 0 14px;
  font-weight: 900;
}

.media-articles {
  padding: 56px 0;
  border-top: 1px solid #e5e7eb;
  background:
    radial-gradient(circle at 100% 0%, rgba(246, 168, 106, 0.18), transparent 32%),
    linear-gradient(180deg, #f3f8f6, #fffaf3);
}

.media-articles .media-articles__wrap {
  width: min(100% - 32px, 900px);
  margin: 0 auto;
}

.media-articles__head {
  margin-bottom: 24px;
}

.media-articles__head h2 {
  margin: 0;
  font-size: clamp(28px, 5vw, 38px);
  line-height: 1.35;
}

.media-articles__head p {
  max-width: 720px;
  margin: 12px 0 0;
  color: #4f5d6f;
}

.media-article-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid #dfe6ea;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(31, 38, 44, 0.07);
}

.media-article-card--featured {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 18px;
  border-color: rgba(108, 95, 167, 0.26);
  background:
    radial-gradient(circle at 0% 0%, rgba(191, 232, 223, 0.44), transparent 46%),
    #fff;
}

.media-article-card__label,
.media-article-card__category {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--article-accent-dark);
  background: var(--article-mint);
  font-size: 11px;
  font-weight: 900;
}

.media-article-card__label {
  justify-self: center;
  padding: 11px 15px;
  color: #fff;
  background: linear-gradient(145deg, #17213c, #6c5fa7);
  font-size: 14px;
}

.media-article-card h3 {
  margin: 10px 0;
  font-size: 20px;
  line-height: 1.5;
}

.media-article-card p {
  margin: 0 0 13px;
  color: #4f5d6f;
}

.media-article-card a {
  color: var(--article-accent-dark);
  font-weight: 900;
}

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

.media-articles__all {
  margin: 26px 0 0;
  text-align: center;
}

.media-articles__all a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 19px;
  border: 1px solid var(--article-accent);
  border-radius: 999px;
  color: var(--article-accent-dark);
  background: #fff;
  font-weight: 900;
}

.result-related {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(15, 122, 108, 0.18);
  border-radius: 16px;
  background: #f4fbf8;
}

.result-related[hidden] {
  display: none !important;
}

.result-related h3 {
  margin: 0 0 10px;
  color: #173d38;
  font-size: 17px;
}

.result-related ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.result-related a {
  display: block;
  padding: 10px 12px;
  border: 1px solid #d7e7e3;
  border-radius: 11px;
  color: var(--article-accent-dark);
  background: #fff;
  font-weight: 800;
  line-height: 1.5;
}

@media (max-width: 759px) {
  .article-header-inner {
    min-height: 188px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
  }

  .article-site-nav {
    justify-content: flex-start;
  }

  .article-site-nav a {
    padding-inline: 11px;
  }

  .article-shell {
    width: min(100% - 24px, 1040px);
    padding-top: 18px;
  }

  .article-content,
  .article-index-panel {
    padding: 23px 18px;
    border-radius: 21px;
  }

  .article-related-grid,
  .article-index-grid,
  .media-article-grid {
    grid-template-columns: 1fr;
  }

  .article-related-card {
    padding: 14px;
  }

  .article-internal-cta,
  .article-affiliate {
    padding: 20px 15px;
  }

  .article-primary-link,
  .article-affiliate-link {
    width: 100%;
  }

  .media-articles {
    padding: 42px 0;
  }

  .media-article-card--featured {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .media-article-card__label {
    justify-self: start;
  }
}

@media (max-width: 359px) {
  .article-site-nav {
    gap: 7px;
  }

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

  .article-content,
  .article-index-panel {
    padding-inline: 15px;
  }

  .article-page h1 {
    font-size: 28px;
  }
}
