:root {
  --article-max: 760px;
  --article-blue: #2f6bff;
  --article-text: #111827;
  --article-muted: #475569;
  --article-line: #d4d4d4;
}

body.article-page {
  min-height: 100vh;
  padding: 76px 18px 116px;
  background: #f4f5f7;
  color: var(--article-muted);
  font-family: "Inter", "Zen Kaku Gothic New", "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

body.article-page.is-article-topbar-empty {
  padding-top: 0;
}

body.article-page.is-article-topbar-empty .article-topbar {
  display: none;
}

.article-topbar {
  position: fixed;
  z-index: 55;
  top: 12px;
  left: 50%;
  right: auto;
  width: min(1180px, calc(100% - 28px));
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(203, 213, 225, .78);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 38px rgba(15, 23, 42, .08);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  pointer-events: auto;
  transform: translateX(-50%);
}

.article-back,
.article-count {
  pointer-events: auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid rgba(226, 232, 240, .88);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .94), 0 16px 38px rgba(15, 23, 42, .08);
  backdrop-filter: blur(16px) saturate(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.article-back {
  display: inline-flex;
  min-height: 36px;
  padding: 0 14px;
  border-color: rgba(147, 197, 253, .36);
  background: rgba(239, 246, 255, .74);
  color: #1d4ed8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.article-site-nav {
  pointer-events: auto;
  flex: 1 1 auto;
  max-width: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow-x: auto;
  min-height: 40px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  scrollbar-width: none;
}

.article-site-nav::-webkit-scrollbar {
  display: none;
}

.article-site-nav a,
.article-3q-toggle {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #334155;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.article-site-nav a:hover,
.article-site-nav a:focus-visible,
.article-site-nav a[aria-current="page"],
.article-3q-toggle:hover,
.article-3q-toggle:focus-visible,
.article-3q-toggle[aria-expanded="true"] {
  border-color: rgba(37, 99, 235, .18);
  background: rgba(239, 246, 255, .86);
  color: #1d4ed8;
}

.article-3q-menu[hidden] {
  display: none !important;
}

.article-3q-menu {
  position: fixed;
  inset: 0;
  z-index: 54;
  pointer-events: none;
}

.article-3q-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 72px, rgba(37, 99, 235, .10), transparent 34%),
    linear-gradient(180deg, rgba(248, 250, 252, .42), transparent 34%);
  opacity: 0;
  pointer-events: auto;
  transition: opacity .18s ease;
}

.article-3q-links {
  position: absolute;
  top: 78px;
  left: 50%;
  width: min(520px, calc(100vw - 28px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(191, 219, 254, .86);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .98), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(239, 246, 255, .88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .96),
    0 24px 64px rgba(15, 23, 42, .16);
  backdrop-filter: blur(18px) saturate(1.14);
  -webkit-backdrop-filter: blur(18px) saturate(1.14);
  opacity: 0;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-8px) scale(.98);
  transition: opacity .18s ease, transform .22s cubic-bezier(.2, .84, .24, 1.08);
}

.article-3q-links a {
  min-width: 0;
  min-height: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid rgba(191, 219, 254, .82);
  border-radius: 16px;
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 255, 255, .98), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .86));
  color: #1d4ed8;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .96),
    0 10px 24px rgba(37, 99, 235, .09);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity .18s ease var(--menu-delay, 0ms),
    transform .22s ease var(--menu-delay, 0ms);
}

.article-3q-links b,
.article-3q-links small {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-3q-links b {
  color: #0f3fb8;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 900;
}

.article-3q-links small {
  color: #64748b;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 800;
}

body.is-article-3q-open .article-3q-backdrop {
  opacity: 1;
}

body.is-article-3q-open .article-3q-links {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

body.is-article-3q-open .article-3q-links a {
  opacity: 1;
  transform: translateY(0);
}

.article-top-actions {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 3px;
  border: 1px solid rgba(203, 213, 225, .54);
  border-radius: 999px;
  background: rgba(248, 250, 252, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .88);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.article-count {
  min-width: 48px;
  min-height: 34px;
  gap: 5px;
  justify-content: center;
  padding: 0 10px;
  border-color: rgba(15, 23, 42, .08);
  background: rgba(255, 255, 255, .7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82);
  color: #0f172a;
  font-size: 12px;
}

.article-count .eye-icon,
.article-count .heart-icon,
.article-count .comment-icon {
  width: 14px;
  height: 14px;
  color: #0f172a;
}

.article-shell {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
}

.article-main {
  width: min(var(--article-max), calc(100vw - 28px));
  min-width: 0;
  margin: 0 auto;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 10px max(14px, calc((100vw - 1440px) / 2));
  color: #7b8492;
  font-size: 12px;
  font-weight: 400;
  overflow: hidden;
  white-space: nowrap;
}

.article-breadcrumb a {
  color: #2563eb;
  text-decoration: none;
}

.article-breadcrumb b {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-hero {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: clamp(260px, 21.6vw, 331px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.article-hero img {
  width: min(590px, calc(100vw - 28px));
  height: clamp(260px, 21.6vw, 331px);
  object-fit: cover;
  display: block;
}

.article-decision-card,
.article-flow-card,
.article-next-action,
.article-related,
.comment-panel,
.guide-nav.is-inline {
  border: 1px solid rgba(203, 213, 225, .84);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .98), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(248, 250, 252, .76));
  box-shadow: none;
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
}

.article-head {
  margin: 0 calc(50% - 50vw) 0;
  padding: 42px max(14px, calc((100vw - var(--article-max)) / 2 + 14px)) 42px;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.article-meta-line,
.article-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}

.article-chips {
  min-height: 0;
  align-content: flex-start;
  margin-bottom: 24px;
}

.article-meta-line span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #747474;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: .84px;
  font-weight: 400;
}

.article-chip {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 3px 11px;
  border: 1px solid rgba(203, 213, 225, .82);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  color: #475569;
  font-size: 13px;
  line-height: 16.64px;
  letter-spacing: .84px;
  font-weight: 700;
}

.article-chip.is-category {
  background: #fff;
}

.article-chip.is-tag {
  background: #fff;
}

.article-series {
  display: none;
}

.article-head h1 {
  margin: 0;
  padding-bottom: 4px;
  border-bottom: 3px solid #2563eb;
  color: var(--article-text);
  font-size: 26px;
  line-height: 1.56;
  font-weight: 700;
  margin-bottom: 16px;
}

.article-lead {
  margin: 0;
  color: var(--article-muted);
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: .49px;
  font-weight: 400;
}

.article-decision-card {
  display: block;
  width: min(var(--article-max), calc(100vw - 28px));
  margin: 24px auto 0;
  padding: 18px 20px 20px;
  border-radius: 8px;
  scroll-margin-top: 26px;
}

.article-decision-card[hidden] {
  display: none;
}

.decision-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.decision-head b {
  color: #0f172a;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

.decision-type {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid color-mix(in srgb, var(--type-color, #2563eb) 30%, white);
  border-radius: 999px;
  background: color-mix(in srgb, var(--type-color, #2563eb) 10%, white);
  color: color-mix(in srgb, var(--type-color, #2563eb) 76%, #0f172a);
  font-size: 11px;
  font-weight: 700;
}

.decision-type[data-article-type="ranking"] { --type-color: #2563eb; }
.decision-type[data-article-type="compare"] { --type-color: #7c3aed; }
.decision-type[data-article-type="review"] { --type-color: #0891b2; }
.decision-type[data-article-type="check"] { --type-color: #0f766e; }
.decision-type[data-article-type="howto"] { --type-color: #475569; }
.decision-type[data-article-type="case"] { --type-color: #c2410c; }
.decision-type[data-article-type="guide"] { --type-color: #64748b; }

.article-decision-card p {
  margin: 0 0 14px;
  color: #475569;
  font-size: 13.5px;
  line-height: 1.75;
  font-weight: 400;
}

.article-decision-card .decision-path-summary {
  margin: -2px 0 12px;
  padding: 10px 12px;
  border: 1px solid rgba(147, 197, 253, .46);
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .98), transparent 46%),
    linear-gradient(180deg, rgba(239, 246, 255, .90), rgba(255, 255, 255, .78));
  color: #1e3a8a;
  font-size: 12.5px;
  line-height: 1.58;
  font-weight: 800;
}

.decision-route {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 12px;
}

.decision-route a {
  min-width: 0;
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 10px 11px;
  border: 1px solid rgba(203, 213, 225, .78);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .96), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(248, 250, 252, .78));
  color: #0f172a;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .9),
    0 10px 24px rgba(15, 23, 42, .045);
}

.decision-route small {
  color: #2563eb;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
}

.decision-route b {
  color: #0f172a;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

.decision-route span {
  color: #64748b;
  font-size: 10.5px;
  line-height: 1.25;
  font-weight: 700;
}

.decision-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 8px;
}

.decision-stats span {
  display: grid;
  gap: 3px;
  min-height: 52px;
  padding: 9px 10px;
  border: 1px solid rgba(203, 213, 225, .78);
  border-radius: 14px;
  background: rgba(255, 255, 255, .78);
}

.decision-stats small {
  color: #64748b;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
}

.decision-stats b {
  color: #0f172a;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
}

.decision-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.decision-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid rgba(147, 197, 253, .72);
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .92), transparent 45%),
    linear-gradient(180deg, rgba(239, 246, 255, .96), rgba(219, 234, 254, .72));
  color: #1d4ed8;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(37, 99, 235, .10);
}

.decision-action small {
  color: inherit;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  opacity: .74;
}

.decision-action.is-primary,
.decision-action.is-purchase-primary {
  grid-column: 1 / -1;
  border-color: rgba(15, 23, 42, .92);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .14), transparent 46%),
    linear-gradient(180deg, #172033, #0b1220);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .16),
    0 14px 28px rgba(15, 23, 42, .18);
}

.decision-action.is-purchase-primary.is-rakuten {
  border-color: rgba(225, 29, 72, .82);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .18), transparent 46%),
    linear-gradient(180deg, #e11d48, #be123c);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 14px 28px rgba(190, 18, 60, .20);
}

.decision-action.is-secondary {
  border-color: rgba(30, 41, 59, .24);
  background: #fff;
  color: #0f172a;
}

.decision-action.is-route {
  border-color: rgba(37, 99, 235, .28);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .92), transparent 46%),
    linear-gradient(180deg, rgba(239, 246, 255, .96), rgba(219, 234, 254, .82));
  color: #1d4ed8;
}

.decision-action.is-amazon {
  border-color: rgba(15, 23, 42, .22);
  color: #0f172a;
}

.decision-action.is-purchase-primary.is-amazon {
  border-color: rgba(15, 23, 42, .92);
  color: #fff;
}

.decision-action.is-rakuten {
  border-color: rgba(225, 29, 72, .24);
  color: #be123c;
}

.article-flow-card {
  width: min(var(--article-max), calc(100vw - 28px));
  min-height: auto;
  margin: 28px auto 0;
  padding: 22px 22px 18px;
  border-radius: 8px;
  scroll-margin-top: 26px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .98), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(248, 250, 252, .82));
  box-shadow: 0 12px 34px rgba(15, 23, 42, .055);
}

.article-flow-head {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(203, 213, 225, .74);
}

.article-flow-head p,
.guide-kicker,
.guide-section-label {
  margin: 0 0 8px;
  color: #2563eb;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .12em;
}

.article-flow-head h2 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 22px;
  line-height: 1.42;
  font-weight: 700;
}

.article-flow-head span {
  display: block;
  color: #475569;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: .03em;
}

.article-related {
  margin-top: 28px;
  padding: 18px;
  border-radius: 14px;
  background: #fff;
}

.article-next-action {
  width: min(var(--article-max), calc(100vw - 28px));
  margin: 18px auto 0;
  padding: 18px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .98), transparent 44%),
    linear-gradient(180deg, rgba(239, 246, 255, .92), rgba(255, 255, 255, .86));
}

.article-next-action[hidden] {
  display: none;
}

.next-action-copy {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.next-action-copy span {
  color: #2563eb;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .12em;
}

.next-action-copy h2 {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.38;
  font-weight: 700;
}

.next-action-copy p {
  margin: 0;
  color: #475569;
  font-size: 13.5px;
  line-height: 1.75;
}

.next-action-buttons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
}

.next-action-button {
  display: grid;
  place-items: center;
  gap: 4px;
  min-height: 58px;
  padding: 10px;
  border: 1px solid rgba(147, 197, 253, .56);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: #1d4ed8;
  text-align: center;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .86),
    0 10px 22px rgba(37, 99, 235, .08);
}

.next-action-button span {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
}

.next-action-button small {
  color: inherit;
  font-size: 10px;
  line-height: 1.15;
  font-weight: 700;
  opacity: .72;
}

.next-action-button.is-primary {
  border-color: rgba(15, 23, 42, .88);
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 255, 255, .14), transparent 46%),
    linear-gradient(180deg, #172033, #0b1220);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .16),
    0 14px 28px rgba(15, 23, 42, .16);
}

.next-action-button.is-amazon {
  border-color: rgba(15, 23, 42, .22);
  color: #0f172a;
}

.next-action-button.is-rakuten {
  border-color: rgba(225, 29, 72, .24);
  color: #be123c;
}

.next-action-button.is-purchase-primary {
  border-color: rgba(15, 23, 42, .24);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .18), transparent 46%),
    linear-gradient(180deg, #172033, #0b1220);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 14px 30px rgba(15, 23, 42, .18);
}

.next-action-button.is-purchase-primary.is-rakuten {
  border-color: rgba(225, 29, 72, .36);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .24), transparent 46%),
    linear-gradient(180deg, #e11d48, #be123c);
}

.next-action-button.is-purchase-primary small {
  color: rgba(255, 255, 255, .74);
}

.next-action-button.is-route {
  border-color: rgba(147, 197, 253, .52);
  background: linear-gradient(180deg, rgba(239, 246, 255, .94), rgba(219, 234, 254, .62));
  color: #1d4ed8;
}

.section-mini-head p {
  margin: 0 0 8px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.section-mini-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.article-flow-card h2,
.section-mini-head h2 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
}

.section-mini-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(37, 99, 235, .26);
  border-radius: 999px;
  background: #fff;
  color: #1d4ed8;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(37, 99, 235, .08);
}

.section-mini-link:hover,
.section-mini-link:focus-visible {
  outline: none;
  border-color: rgba(37, 99, 235, .46);
  background: rgba(239, 246, 255, .96);
}

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

.article-flow-grid a {
  position: relative;
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 98px;
  padding: 13px 13px 12px;
  border: 1px solid rgba(203, 213, 225, .78);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  color: #0f172a;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .84);
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.article-flow-grid a:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, .28);
  background: #fff;
}

.article-flow-grid span {
  color: var(--article-blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
}

.article-flow-grid b {
  min-width: 0;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.article-flow-grid small {
  color: #64748b;
  font-size: 12px;
  line-height: 1.48;
  font-weight: 400;
}

.article-section {
  margin-top: 0;
  padding: 40px 0;
  border: 0;
  border-bottom: 1px solid var(--article-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.article-section h2 {
  margin: 0 0 24px;
  color: var(--article-text);
  font-size: 28px;
  line-height: 1.34;
  font-weight: 700;
}

.article-rich {
  color: var(--article-muted);
  font-size: 16px;
  line-height: 1.92;
  letter-spacing: .56px;
  font-weight: 400;
}

.article-rich p,
.article-rich li,
.article-rich td,
.article-rich span {
  font-weight: 400;
}

.article-rich p,
.article-rich ul,
.article-rich ol {
  margin: 18px 0 20px;
}

.article-rich strong,
.article-rich b {
  color: #0f172a;
  font-weight: 700;
}

.article-rich .aw-ranking-html {
  display: none;
}

.article-rich a.aw-richtext-inline-link {
  color: #1d4ed8;
  font-weight: 700;
  text-decoration-color: rgba(37, 99, 235, .28);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-rich a.aw-richtext-inline-link:hover {
  color: #1e40af;
  text-decoration-color: rgba(37, 99, 235, .52);
}

.article-rich .aw-affiliate-block a.aw-richtext-inline-link[href],
.article-rich a.aw-text-affiliate-link.aw-richtext-inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 5px 6px 5px 0;
  padding: 10px 15px;
  border: 1px solid rgba(147, 197, 253, .78);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .9), transparent 48%),
    linear-gradient(180deg, rgba(239, 246, 255, .98), rgba(219, 234, 254, .72));
  color: #1d4ed8;
  line-height: 1.35;
  font-weight: 800;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .94),
    0 10px 22px rgba(37, 99, 235, .10);
}

.article-rich .aw-affiliate-block a.aw-richtext-inline-link[href*="amazon"],
.article-rich a.aw-text-affiliate-link.aw-richtext-inline-link[href*="amazon"] {
  border-color: rgba(15, 23, 42, .18);
  background: linear-gradient(180deg, #111827, #020617);
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, .16);
}

.article-rich .aw-affiliate-block a.aw-richtext-inline-link[href*="rakuten"],
.article-rich .aw-affiliate-block a.aw-richtext-inline-link[href*="hb.afl.rakuten"],
.article-rich a.aw-text-affiliate-link.aw-richtext-inline-link[href*="rakuten"],
.article-rich a.aw-text-affiliate-link.aw-richtext-inline-link[href*="hb.afl.rakuten"] {
  border-color: rgba(212, 20, 67, .30);
  background: linear-gradient(180deg, #e11d48, #be123c);
  color: #fff;
  box-shadow: 0 12px 24px rgba(190, 18, 60, .18);
}

.article-rich h3 {
  margin: 30px 0 14px;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
}

.article-rich h4 {
  margin: 24px 0 10px;
  color: #1f2937;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

.article-rich .aw-answer-box,
.article-rich .aw-affiliate-block,
.article-rich .aw-related-ranking-block,
.article-rich dl,
.article-rich blockquote {
  margin: 22px 0;
  padding: 18px 20px;
  border: 1px solid rgba(203, 213, 225, .82);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, .96), rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(248, 250, 252, .78));
  box-shadow: 0 10px 28px rgba(15, 23, 42, .045);
}

.article-rich .aw-answer-box {
  border-left: 4px solid rgba(37, 99, 235, .72);
}

.article-rich .aw-affiliate-block {
  border-color: rgba(37, 99, 235, .20);
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(239, 246, 255, .66));
}

.article-rich .purchase-check-panel {
  margin: 22px 0 24px;
  padding: 18px;
  border: 1px solid rgba(37, 99, 235, .24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .98), rgba(255, 255, 255, 0) 46%),
    linear-gradient(180deg, rgba(239, 246, 255, .98), rgba(248, 250, 252, .84));
  box-shadow: 0 14px 34px rgba(37, 99, 235, .08);
}

.article-rich .purchase-check-head {
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
}

.article-rich .purchase-check-head span {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(37, 99, 235, .10);
  color: #1d4ed8;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
}

.article-rich .purchase-check-head b {
  color: #0f172a;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
}

.article-rich .purchase-check-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-rich .purchase-check-panel li {
  position: relative;
  margin: 0;
  padding: 9px 10px 9px 26px;
  border: 1px solid rgba(203, 213, 225, .74);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  color: #334155;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.article-rich .purchase-check-panel li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 15px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

.article-rich .purchase-check-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.article-rich .purchase-check-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(37, 99, 235, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  color: #1d4ed8;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .055);
}

.article-rich .purchase-check-link.is-amazon {
  border-color: rgba(15, 23, 42, .18);
  color: #0f172a;
}

.article-rich .purchase-check-link.is-rakuten {
  border-color: rgba(212, 20, 67, .28);
  color: #be123c;
}

.article-rich .purchase-check-link span {
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

.article-rich .purchase-check-link small {
  color: #64748b;
  font-size: 10.5px;
  line-height: 1;
  font-weight: 700;
}

.article-rich .aw-related-ranking-block {
  background: #fff;
}

.article-rich dl {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.article-rich dt {
  padding: 16px 18px 8px;
  color: #0f172a;
  font-weight: 700;
  line-height: 1.55;
}

.article-rich dd {
  margin: 0;
  padding: 0 18px 16px;
  border-bottom: 1px solid rgba(226, 232, 240, .82);
  color: var(--article-muted);
  line-height: 1.8;
}

.article-rich dd:last-child {
  border-bottom: 0;
}

.article-rich blockquote {
  color: #334155;
}

.article-rich blockquote p {
  margin: 0;
}

.article-rich .aw-table-scroll {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, 0)) left center / 34px 100% no-repeat,
    linear-gradient(270deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, 0)) right center / 34px 100% no-repeat,
    #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .045), inset 0 1px 0 rgba(255, 255, 255, .88);
}

.article-rich .aw-table-scroll::-webkit-scrollbar {
  height: 10px;
}

.article-rich .aw-table-scroll::-webkit-scrollbar-track {
  margin-inline: 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .055);
}

.article-rich .aw-table-scroll::-webkit-scrollbar-thumb {
  border: 3px solid rgba(255, 255, 255, .92);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 87, 255, .46), rgba(78, 151, 255, .56));
}

.article-rich table {
  width: max(100%, 760px);
  min-width: 760px;
  max-width: none;
  table-layout: fixed;
  border: 0;
  border-spacing: 0;
  background: transparent;
}

.article-rich table.aw-table-cols-2 {
  width: max(100%, 560px);
  min-width: 560px;
}

.article-rich table.aw-table-cols-3 {
  width: max(100%, 680px);
  min-width: 680px;
}

.article-rich table.aw-table-cols-4 {
  width: max(100%, 760px);
  min-width: 760px;
}

.article-rich table.aw-table-cols-5 {
  width: max(100%, 900px);
  min-width: 900px;
}

.article-rich table.aw-table-cols-6 {
  width: max(100%, 1040px);
  min-width: 1040px;
}

.article-rich table.aw-table-cols-7 {
  width: max(100%, 1160px);
  min-width: 1160px;
}

.article-rich table.aw-table-cols-8 {
  width: max(100%, 1280px);
  min-width: 1280px;
}

.article-rich th,
.article-rich td {
  min-width: 165px;
  padding: 13px 14px;
  border: 1px solid rgba(226, 232, 240, .95);
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
  line-height: 1.58;
  letter-spacing: 0;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.article-rich th {
  background: #f8fafc;
  color: #111827;
  font-size: 13px;
  line-height: 18.85px;
  letter-spacing: 0;
  font-weight: 700;
}

.article-rich th:first-child,
.article-rich td:first-child {
  min-width: 92px;
  position: sticky;
  left: 0;
  z-index: 1;
  background: rgba(255, 255, 255, .98);
  color: #243044;
  font-weight: 700;
  box-shadow: 1px 0 0 rgba(15, 23, 42, .08), 14px 0 24px -24px rgba(15, 23, 42, .48);
}

.article-rich th:first-child {
  color: #111827;
  font-weight: 700;
}

.article-rich table a[href] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 11px;
  border: 1px solid rgba(37, 99, 235, .22);
  border-radius: 999px;
  background: rgba(239, 246, 255, .72);
  color: #1d4ed8;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none;
}

.article-rich table a[href]:hover {
  border-color: rgba(37, 99, 235, .42);
  background: rgba(219, 234, 254, .88);
}

.video-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.video-card-grid.is-shorts {
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 22%);
  grid-template-columns: none;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.video-mini-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 7px;
  padding: 9px;
  border: 1px solid rgba(148, 163, 184, .28);
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  color: #0f172a;
  text-decoration: none;
  box-shadow: none;
}

.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #e2e8f0;
}

.video-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.is-shorts .video-thumb img {
  aspect-ratio: 9 / 13;
}

.video-thumb i {
  position: absolute;
  left: 8px;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .78);
  color: #fff;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .08em;
  backdrop-filter: blur(10px);
}

.video-mini-card b {
  display: -webkit-box;
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 700;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-mini-card span {
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
}

.social-review-block {
  display: grid;
  gap: 10px;
}

.social-summary {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(148, 163, 184, .25);
  border-radius: 12px;
  background: rgba(255, 255, 255, .82);
  color: #475569;
  font-size: 13px;
  line-height: 1.7;
}

.social-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.social-mini-card {
  display: grid;
  gap: 7px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, .25);
  border-radius: 13px;
  background: rgba(255, 255, 255, .9);
}

.social-mini-card span {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(37, 99, 235, .1);
  color: #2563eb;
  font-size: 10px;
  font-weight: 700;
}

.social-mini-card b {
  color: #0f172a;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}

.social-mini-card p {
  display: -webkit-box;
  margin: 0;
  color: #475569;
  font-size: 12px;
  line-height: 1.65;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 29%);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  cursor: grab;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.related-rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.related-card {
  position: relative;
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: 100px auto auto;
  gap: 10px;
  padding: 9px;
  border: 1px solid rgba(148, 163, 184, .28);
  border-radius: 15px;
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  box-shadow: none;
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  will-change: transform;
}

.related-rail.is-dragging .related-card {
  transform: translateY(1px) scale(.985);
  border-color: rgba(96, 165, 250, .42);
  box-shadow: none;
  pointer-events: none;
}

.related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, .78);
  box-shadow: none;
  transform: translateY(-1px);
}

.related-type-label {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 19px;
  padding: 0 7px;
  border: 1px solid color-mix(in srgb, var(--type-color, #2563eb) 32%, white);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .72)),
    color-mix(in srgb, var(--type-color, #2563eb) 12%, white);
  color: color-mix(in srgb, var(--type-color, #2563eb) 78%, #0f172a);
  font-size: 9.5px;
  line-height: 1;
  font-weight: 700;
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.related-type-label[data-article-type="ranking"] { --type-color: #2563eb; }
.related-type-label[data-article-type="compare"] { --type-color: #7c3aed; }
.related-type-label[data-article-type="review"] { --type-color: #0891b2; }
.related-type-label[data-article-type="check"] { --type-color: #0f766e; }
.related-type-label[data-article-type="howto"] { --type-color: #475569; }
.related-type-label[data-article-type="case"] { --type-color: #c2410c; }
.related-type-label[data-article-type="guide"] { --type-color: #64748b; }

.related-card b {
  display: -webkit-box;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 27px;
  padding: 0 11px;
  border: 1px solid rgba(37, 99, 235, .28);
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .94), transparent 48%),
    linear-gradient(180deg, rgba(239, 246, 255, .98), rgba(219, 234, 254, .82));
  color: #1d4ed8;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
}

body.article-page .bottom-nav a.is-active,
body.article-page .bottom-nav button.is-active {
  flex: 1.28 1 0;
  border-color: rgba(59, 130, 246, .42);
  background:
    radial-gradient(circle at 28% 10%, rgba(255, 255, 255, .32), transparent 44%),
    linear-gradient(180deg, rgba(69, 128, 255, .98), rgba(37, 99, 235, .96));
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .38),
    0 12px 24px rgba(37, 99, 235, .24);
}

body.article-page .bottom-nav [data-bottom-primary-link].is-purchase-link {
  border-color: rgba(15, 23, 42, .16);
  background:
    radial-gradient(circle at 28% 0%, rgba(255, 255, 255, .92), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(248, 250, 252, .78));
  color: #0f172a;
}

body.article-page .bottom-nav [data-bottom-primary-link].is-purchase-link.is-rakuten {
  border-color: rgba(212, 20, 67, .24);
  background:
    radial-gradient(circle at 28% 0%, rgba(255, 255, 255, .94), transparent 46%),
    linear-gradient(180deg, rgba(255, 241, 242, .98), rgba(255, 228, 230, .72));
  color: #be123c;
}

.article-side {
  position: fixed;
  top: 104px;
  right: max(18px, calc((100vw - 1440px) / 2 + 18px));
  z-index: 42;
  width: 280px;
  max-height: calc(100vh - 122px);
  overflow: visible;
}

.side-diagnosis {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 45px;
  margin: 0 0 12px auto;
  padding: 7px 14px 7px 9px;
  border: 1px solid rgba(203, 213, 225, .72);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  color: #334155;
  text-decoration: none;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .09);
  cursor: pointer;
}

.side-diagnosis span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, .88), transparent 34%),
    linear-gradient(135deg, #38bdf8, #2563eb 60%, #7c3aed);
  box-shadow: 0 8px 18px rgba(37, 99, 235, .24);
}

.guide-nav.is-inline {
  position: static;
  display: block;
  width: 100%;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .08);
  max-height: calc(100vh - 180px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(37, 99, 235, .22) transparent;
}

.guide-nav.is-inline::-webkit-scrollbar {
  width: 8px;
}

.guide-nav.is-inline::-webkit-scrollbar-track {
  background: transparent;
}

.guide-nav.is-inline::-webkit-scrollbar-thumb {
  border: 2px solid rgba(255, 255, 255, .78);
  border-radius: 999px;
  background: rgba(37, 99, 235, .24);
}

.guide-nav h2 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.guide-copy {
  margin: 0 0 14px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.65;
}

.guide-section-label {
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 10px;
}

.guide-comment-box {
  display: grid;
  gap: 8px;
  margin: 12px 0 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(203, 213, 225, .72);
}

.guide-comment-callout,
.guide-links a,
.guide-links button {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 50px;
  padding: 8px 10px;
  border: 1px solid rgba(203, 213, 225, .78);
  border-radius: 12px;
  background: rgba(255, 255, 255, .74);
  color: #0f172a;
  text-align: left;
  text-decoration: none;
}

.guide-comment-callout {
  border-color: rgba(147, 197, 253, .64);
  background: rgba(239, 246, 255, .58);
}

.guide-comment-callout b,
.guide-links b {
  display: block;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
}

.guide-comment-callout small,
.guide-links small {
  display: block;
  margin-top: 3px;
  color: #64748b;
  font-size: 10.5px;
  line-height: 1.3;
  font-weight: 400;
}

.guide-comment-box form {
  display: grid;
  gap: 8px;
  padding: 9px;
  border: 1px solid rgba(203, 213, 225, .72);
  border-radius: 14px;
  background: rgba(255, 255, 255, .62);
}

.guide-comment-box input,
.guide-comment-box textarea {
  width: 100%;
  border: 1px solid rgba(203, 213, 225, .86);
  border-radius: 10px;
  background: rgba(255, 255, 255, .84);
  padding: 9px 10px;
  color: #0f172a;
  font: inherit;
  font-size: 12px;
  font-weight: 400;
}

.guide-comment-box textarea {
  min-height: 62px;
  resize: vertical;
}

.guide-comment-box button[type="submit"] {
  min-height: 34px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #4f83ff, #2563eb);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.guide-links {
  display: grid;
  gap: 10px;
}

.guide-links button {
  appearance: none;
  cursor: pointer;
}

.guide-link-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(37, 99, 235, .10);
  color: #2563eb;
  position: relative;
}

.guide-list-icon::before,
.comment-mini::before,
.external-mini::before,
.bottom-nav-icon::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.bottom-nav-icon {
  position: relative;
  width: 22px;
  height: 22px;
  color: currentColor;
}

.guide-list-icon::after,
.bottom-nav-icon.list-mini::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  top: 15px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
}

.comment-mini::before,
.bottom-nav-icon.comment-mini::before {
  inset: 9px 8px 11px;
  border-radius: 7px;
}

.comment-mini::after,
.bottom-nav-icon.comment-mini::after {
  content: "";
  position: absolute;
  left: 13px;
  bottom: 8px;
  width: 7px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: skew(-18deg);
}

.bottom-nav-icon.is-purchase {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .72) !important;
  border: 1.7px solid currentColor;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  -webkit-mask: none !important;
  mask: none !important;
}

.bottom-nav [data-bottom-primary-icon].is-purchase {
  width: 22px !important;
  height: 22px !important;
  box-sizing: border-box;
  border: 1.7px solid currentColor !important;
  border-radius: 999px !important;
  background: transparent !important;
}

.bottom-nav-icon.is-purchase::before,
.bottom-nav-icon.is-purchase::after {
  display: none !important;
}

.bottom-nav-icon.is-purchase::before {
  content: "¥" !important;
  position: static;
  inset: auto;
  display: flex !important;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  font-size: 11px;
  line-height: 1;
}

.bottom-nav-icon.is-purchase.is-amazon::before {
  content: "A" !important;
}

.bottom-nav-icon.is-purchase.is-rakuten::before {
  content: "R" !important;
}

.guide-link-icon.purchase-mini {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 12px !important;
  background:
    radial-gradient(circle at 28% 0%, rgba(255, 255, 255, .92), transparent 48%),
    linear-gradient(180deg, rgba(239, 246, 255, .96), rgba(219, 234, 254, .76)) !important;
  color: #1d4ed8;
  -webkit-mask: none !important;
  mask: none !important;
}

.guide-link-icon.purchase-mini.is-rakuten {
  background:
    radial-gradient(circle at 28% 0%, rgba(255, 255, 255, .92), transparent 48%),
    linear-gradient(180deg, rgba(255, 241, 242, .98), rgba(255, 228, 230, .76)) !important;
  color: #be123c;
}

.guide-link-icon.purchase-mini::before {
  content: "¥" !important;
  position: static;
  inset: auto;
  display: flex !important;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border: 1.7px solid currentColor !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .94) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .92),
    0 4px 10px rgba(15, 23, 42, .08) !important;
  color: currentColor !important;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.guide-link-icon.purchase-mini::after {
  content: none !important;
  display: none !important;
}

.guide-link-icon.purchase-mini.is-amazon::before {
  content: "A" !important;
}

.guide-link-icon.purchase-mini.is-rakuten::before {
  content: "R" !important;
}

.external-mini::before {
  inset: 10px;
  border-radius: 4px;
}

.external-mini::after {
  content: "";
  position: absolute;
  right: 9px;
  top: 9px;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.comment-drawer {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: none;
  place-items: end center;
  padding: 22px;
  background: rgba(241, 245, 249, .52);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.comment-drawer.is-open {
  display: grid;
}

.comment-panel {
  position: relative;
  width: min(520px, 100%);
  max-height: min(720px, 88vh);
  overflow: auto;
  padding: 22px;
}

.comment-panel form {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.comment-panel input,
.comment-panel textarea {
  width: 100%;
  border: 1px solid rgba(203, 213, 225, .9);
  border-radius: 14px;
  background: rgba(255, 255, 255, .82);
  padding: 12px 14px;
  font: inherit;
  font-weight: 400;
}

.comment-panel textarea {
  min-height: 112px;
  resize: vertical;
}

.comment-panel form button {
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #4f83ff, #2563eb);
  color: #fff;
  font-weight: 700;
}

.comment-list {
  display: grid;
  gap: 10px;
}

.comment-item {
  padding: 12px;
  border: 1px solid rgba(203, 213, 225, .75);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
}

.comment-item b {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
}

.comment-item p {
  margin: 0;
  color: #475569;
  font-size: 13px;
  line-height: 1.6;
}

.article-status {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

.article-status .aw-shared-loader-card {
  --aw-loader-size: 34px;
  --aw-loader-text-size: 12px;
  --aw-loader-card-border: rgba(203, 213, 225, .82);
  --aw-loader-card-bg:
    radial-gradient(circle at 24% 0%, rgba(255, 255, 255, .98), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(248, 250, 252, .86));
  --aw-loader-card-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .96),
    0 18px 44px rgba(15, 23, 42, .10);
}

.article-status-text {
  line-height: 1.35;
  white-space: nowrap;
}

.article-status.is-error {
  pointer-events: auto;
}

.article-status.is-error .aw-shared-loader-card {
  --aw-loader-card-border: rgba(239, 68, 68, .24);
  --aw-loader-card-bg:
    radial-gradient(circle at 24% 0%, rgba(255, 255, 255, .98), transparent 46%),
    linear-gradient(180deg, rgba(255, 241, 242, .96), rgba(255, 255, 255, .9));
  --aw-loader-card-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .96),
    0 18px 44px rgba(127, 29, 29, .10);
}

.article-status.is-error .aw-shared-loader-ring::before,
.article-status.is-error .aw-shared-loader-ring::after {
  animation: none;
  opacity: .42;
}

.article-status.is-error .aw-shared-loader-text {
  background: none;
  color: #991b1b;
  -webkit-text-fill-color: #991b1b;
  animation: none;
}

.article-status[hidden] {
  display: none;
}

@media (max-width: 1320px) {
  .article-shell {
    display: block;
  }

  .article-side {
    display: none;
  }
}

@media (max-width: 720px) {
  body.article-page {
    padding: 70px 14px 104px;
  }

  body.article-page.is-article-topbar-empty {
    padding-top: 18px;
  }

  .article-topbar {
    top: 8px;
    left: 50%;
    right: auto;
    width: calc(100% - 16px);
    min-height: 52px;
    gap: 7px;
    padding: 7px;
  }

  .article-site-nav {
    display: inline-flex;
    flex: 1 1 auto;
    justify-content: flex-start;
    min-width: 0;
    min-height: 36px;
    overflow-x: auto;
    padding-bottom: 1px;
  }

  .article-top-actions {
    display: none !important;
  }

  .article-back {
    min-height: 34px;
    padding: 0 11px;
    font-size: 11px;
  }

  .article-site-nav a,
  .article-3q-toggle {
    min-height: 32px;
    padding: 0 9px;
    font-size: 11px;
  }

  .article-3q-links {
    top: 68px;
    width: calc(100vw - 20px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 8px;
    border-radius: 20px;
  }

  .article-3q-links a {
    min-height: 50px;
    padding: 9px 10px;
  }

  body.article-page .bottom-nav {
    bottom: max(8px, env(safe-area-inset-bottom));
    width: min(380px, calc(100vw - 22px));
    min-height: 54px;
    padding: 5px;
  }

  body.article-page .bottom-nav a,
  body.article-page .bottom-nav button {
    min-height: 42px;
    gap: 2px;
    font-size: 10px;
  }

  .article-count {
    min-width: 44px;
    min-height: 32px;
    padding: 0 8px;
  }

  .article-breadcrumb {
    gap: 8px;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .article-breadcrumb a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(147, 197, 253, .46);
    border-radius: 999px;
    background: rgba(239, 246, 255, .74);
    font-size: 12px;
    font-weight: 700;
  }

  .article-breadcrumb b {
    display: none;
  }

  .article-hero,
  .article-hero img {
    height: clamp(188px, 50vw, 206px);
  }

  .article-hero img {
    object-fit: contain;
  }

  .article-head,
  .article-decision-card,
  .article-next-action,
  .article-section,
  .article-related {
    padding: 20px;
    border-radius: 19px;
  }

  .article-head {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .article-meta-line {
    margin-bottom: 8px;
  }

  .article-chips {
    flex-wrap: nowrap;
    gap: 6px;
    margin-bottom: 12px;
    padding-bottom: 2px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .article-chips::-webkit-scrollbar {
    display: none;
  }

  .article-chip {
    flex: 0 0 auto;
    min-height: 24px;
    padding: 3px 9px;
    font-size: 11.5px;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .article-head h1 {
    font-size: 22px;
    line-height: 1.42;
    margin-bottom: 10px;
  }

  .article-lead {
    font-size: 13px;
    line-height: 1.68;
  }

  .article-decision-card {
    width: min(100%, calc(100vw - 28px));
    margin-top: 14px;
    padding: 16px 14px 8px;
    border-radius: 8px;
  }

  .decision-head {
    align-items: flex-start;
    gap: 8px;
  }

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

  .decision-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px 8px;
    margin-top: 10px;
    margin-bottom: 0;
  }

  .decision-action.is-anchor {
    display: none;
  }

  .article-decision-card p:not(.decision-path-summary),
  .article-decision-card .decision-stats {
    display: none;
  }

  .article-decision-card .decision-path-summary {
    display: -webkit-box;
    margin: 0 0 10px;
    padding: 6px 10px;
    font-size: 11.5px;
    line-height: 1.42;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .decision-route {
    display: none;
  }

  .decision-action {
    min-height: 40px;
    padding: 8px 7px;
    font-size: 11px;
  }

  .article-decision-card .decision-action.is-purchase-primary {
    grid-column: auto;
  }

  .article-decision-card .decision-action small {
    display: none;
  }

  .article-decision-card .decision-action span {
    white-space: nowrap;
  }

  .article-next-action {
    width: min(100%, calc(100vw - 28px));
    margin-top: 14px;
    padding: 16px 14px;
    border-radius: 8px;
  }

  .next-action-copy {
    margin-bottom: 12px;
  }

  .next-action-copy h2 {
    font-size: 17px;
    line-height: 1.42;
  }

  .next-action-copy p {
    font-size: 12.5px;
    line-height: 1.6;
  }

  .next-action-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .next-action-button {
    min-height: 48px;
    padding: 9px 10px;
  }

  .next-action-button.is-primary,
  .next-action-button.is-purchase-primary {
    grid-column: 1 / -1;
  }

  .next-action-button span {
    font-size: 11.5px;
  }

  .next-action-button:not(.is-purchase-primary) small {
    display: none;
  }

  .next-action-button:not(.is-purchase-primary) span {
    white-space: nowrap;
  }

  .article-flow-card {
    width: min(100%, calc(100vw - 28px));
    margin-top: 14px;
    margin-bottom: 20px;
    padding: 16px 14px;
  }

  .article-flow-head {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .section-mini-head {
    align-items: flex-start;
  }

  .article-flow-head h2 {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.42;
  }

  .section-mini-head h2 {
    font-size: 16px;
  }

  .section-mini-link {
    min-height: 31px;
    padding: 0 10px;
    font-size: 11px;
  }

  .article-flow-head span {
    font-size: 12.5px;
    line-height: 1.55;
  }

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

  .article-flow-grid a {
    min-height: 76px;
    gap: 6px;
    padding: 10px;
    align-content: center;
  }

  .article-flow-grid b {
    font-size: 12.5px;
    line-height: 1.35;
  }

  .article-flow-grid small {
    display: -webkit-box;
    overflow: hidden;
    color: #64748b;
    font-size: 10.5px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .article-rich h3 {
    margin: 26px 0 12px;
    font-size: 18px;
  }

  .article-rich h4 {
    margin: 20px 0 8px;
    font-size: 16px;
  }

  .article-rich .aw-affiliate-block a.aw-richtext-inline-link[href],
  .article-rich a.aw-text-affiliate-link.aw-richtext-inline-link {
    width: 100%;
    min-height: 44px;
    margin: 5px 0;
    padding: 10px 14px;
  }

  .article-rich .aw-answer-box,
  .article-rich .aw-affiliate-block,
  .article-rich .aw-related-ranking-block,
  .article-rich dl,
  .article-rich blockquote {
    margin: 18px 0;
    padding: 15px 14px;
  }

  .article-rich dl {
    padding: 0;
  }

  .article-rich dt {
    padding: 14px 14px 7px;
  }

  .article-rich dd {
    padding: 0 14px 14px;
  }

  .article-rich table {
    width: max(100%, 700px);
    min-width: 700px;
  }

  .article-rich table.aw-table-cols-2 {
    width: max(100%, 520px);
    min-width: 520px;
  }

  .article-rich table.aw-table-cols-3 {
    width: max(100%, 620px);
    min-width: 620px;
  }

  .article-rich table.aw-table-cols-4 {
    width: max(100%, 700px);
    min-width: 700px;
  }

  .article-rich table.aw-table-cols-5 {
    width: max(100%, 820px);
    min-width: 820px;
  }

  .article-rich table.aw-table-cols-6 {
    width: max(100%, 940px);
    min-width: 940px;
  }

  .article-rich table.aw-table-cols-7 {
    width: max(100%, 1060px);
    min-width: 1060px;
  }

  .article-rich table.aw-table-cols-8 {
    width: max(100%, 1180px);
    min-width: 1180px;
  }

  .article-rich th,
  .article-rich td {
    min-width: 150px;
    padding: 11px 12px;
    font-size: 13px;
    line-height: 1.48;
  }

  .article-rich th:first-child,
  .article-rich td:first-child {
    min-width: clamp(142px, 38vw, 168px);
    max-width: clamp(142px, 38vw, 168px);
    font-size: 12px;
    line-height: 1.36;
  }

  .video-card-grid {
    grid-template-columns: 1fr;
  }

  .related-rail {
    grid-auto-columns: minmax(220px, 84%);
  }
}
