:root {
  --color-main: #0c8a82;
  --color-main-dark: #076963;
  --color-main-light: #e8f7f6;
  --color-accent: #ff8a00;
  --color-accent-dark: #e66f00;
  --color-accent-light: #fff4e4;
  --color-navy: #153b5c;
  --color-text: #1a1a1a;
  --color-muted: #667085;
  --color-bg: #f5f7f8;
  --color-white: #ffffff;
  --color-border: #d8e6e6;
  --color-gold: #f6c343;
  --color-silver: #aab4c3;
  --color-bronze: #c98245;
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(21, 59, 92, 0.08);
  --shadow-md: 0 8px 24px rgba(21, 59, 92, 0.12);
  --shadow-button: 0 5px 0 rgba(180, 70, 0, 0.45);
  --inner-width: 1080px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--color-bg);
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

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

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

.inner {
  width: min(var(--inner-width), calc(100% - 24px));
  margin-inline: auto;
}

main {
  overflow: hidden;
}

.badge,
.btn,
.feature-chip,
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.badge {
  border-radius: var(--radius-pill);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.btn {
  gap: 8px;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn::after {
  content: ">";
  font-size: 16px;
  line-height: 1;
}

.btn:hover {
  transform: translateY(2px);
  opacity: 0.96;
}

.btn-primary {
  color: var(--color-white);
  background: linear-gradient(180deg, #ff9f38 0%, var(--color-accent) 100%);
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  box-shadow: 0 3px 0 rgba(180, 70, 0, 0.45);
}

.btn-attention {
  position: relative;
  overflow: hidden;
}

.btn-attention::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, transparent 32%, rgba(255, 255, 255, 0.58) 45%, transparent 58%, transparent 100%);
  transform: translateX(-120%);
  animation: cta-shine 4.5s ease-in-out infinite;
  pointer-events: none;
}

.btn-attention span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  color: var(--color-main-dark);
  background: var(--color-white);
  border: 2px solid var(--color-main);
  box-shadow: 0 3px 0 rgba(12, 138, 130, 0.18);
}

.btn-table {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 13px;
}

@keyframes cta-shine {
  0%,
  48% {
    transform: translateX(-120%);
  }

  70% {
    transform: translateX(120%);
  }

  100% {
    transform: translateX(120%);
  }
}

.section-title {
  position: relative;
  margin: 0 0 20px;
  padding-left: 16px;
  color: var(--color-navy);
  font-size: clamp(24px, 6vw, 34px);
  font-weight: 900;
  line-height: 1.35;
}

.section-title::before {
  content: "";
  position: absolute;
  top: 0.18em;
  left: 0;
  width: 6px;
  height: 1.25em;
  border-radius: var(--radius-pill);
  background: var(--color-main);
}

.section-title-center {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  padding: 14px 16px;
  color: var(--color-white);
  font-size: clamp(21px, 5.6vw, 32px);
  text-align: center;
  background: linear-gradient(180deg, #0fa59d 0%, var(--color-main) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.section-title-center::before {
  display: none;
}

.lp-header {
  position: relative;
  z-index: 10;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

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

.site-logo {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.site-logo img {
  width: clamp(150px, 48vw, 430px);
  max-height: 56px;
  object-fit: contain;
}

.header-badges {
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-pr {
  padding: 8px 9px;
  color: #333333;
  background: #f1f3f5;
  border: 1px solid #d0d5dd;
  font-size: 11px;
}

.hero {
  padding: 14px 0 16px;
  background:
    radial-gradient(circle at top right, rgba(12, 138, 130, 0.12), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfb 100%);
}

.hero-image-only {
  padding: 16px 0 18px;
  background: var(--color-white);
}

.hero-main-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 16px;
  background: var(--color-white);
  border: 2px solid #bde4e1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  color: #7a5200;
  background: #fff0bf;
  font-size: 13px;
  font-weight: 900;
}

.hero-title {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(32px, 10vw, 58px);
  font-weight: 900;
  line-height: 1.18;
}

.hero-title strong {
  color: var(--color-main);
}

.hero-description {
  margin: 16px 0 0;
  color: #344054;
  font-size: 15px;
  font-weight: 600;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.feature-chip {
  min-height: 42px;
  padding: 9px 12px;
  color: var(--color-main-dark);
  background: var(--color-main-light);
  border: 1px solid #bde4e1;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 900;
}

.feature-chip::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  margin-right: 8px;
  color: var(--color-white);
  background: var(--color-main);
  border-radius: 50%;
  font-size: 13px;
}

.hero-cta {
  margin-top: 22px;
}

.hero-cta .btn {
  width: 100%;
}

.hero-note {
  margin: 11px 0 0;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.hero-visual {
  position: relative;
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(12, 138, 130, 0.12), rgba(255, 138, 0, 0.12)),
    #f5f7f8;
}

.hero-visual-banner {
  aspect-ratio: 1586 / 992;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: var(--color-white);
}

.hero-visual::before {
  content: "査定額UP";
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 10px;
  color: var(--color-main-dark);
  background: var(--color-white);
  border: 2px solid #bde4e1;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}

.hero-visual-banner::before {
  display: none;
}

.hero-visual img {
  max-height: 300px;
  object-fit: contain;
}

.hero-visual-banner img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
}

.ranking-section {
  padding: 8px 0 26px;
}

.ranking-scroll-note {
  padding: 8px 12px;
  color: var(--color-muted);
  background: var(--color-white);
  border-right: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.ranking-table-wrap {
  overflow-x: auto;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-md);
  -webkit-overflow-scrolling: touch;
}

.ranking-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  background: var(--color-white);
}

.ranking-table th,
.ranking-table td {
  padding: 13px 10px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  vertical-align: middle;
  font-size: 13px;
  line-height: 1.65;
}

.ranking-table thead th {
  padding: 0;
  background: #f8fafc;
}

.ranking-table thead th:first-child,
.ranking-table tbody th {
  width: 120px;
  color: var(--color-navy);
  background: #eef7f7;
  font-weight: 900;
}

.ranking-table tbody th {
  background: #f2fbfa;
}

.ranking-table tbody tr:nth-child(even) td {
  background: #fcfdfd;
}

.ranking-table th.rank1,
.ranking-table td.rank1 {
  background: #fffaf0;
}

.ranking-table tbody tr:nth-child(even) td.rank1 {
  background: #fff7df;
}

.ranking-table thead th.rank1 {
  background: #fff5cf;
  border-top: 4px solid var(--color-gold);
}

.ranking-table thead th.rank2 {
  background: #f4f7fb;
  border-top: 4px solid var(--color-silver);
}

.ranking-table thead th.rank3 {
  background: #fff4eb;
  border-top: 4px solid var(--color-bronze);
}

.rank-label {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  overflow: hidden;
}

.rank-label-image {
  width: min(130px, 82%);
  height: 50px;
  object-fit: contain;
  padding: 4px 14px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-pill);
  box-shadow: 0 3px 10px rgba(21, 59, 92, 0.18);
}

.rank-label-gold {
  color: #4d3600;
  background: linear-gradient(180deg, #f8d45c, var(--color-gold));
}

.rank-label-silver {
  background: linear-gradient(180deg, #b8c1d0, var(--color-silver));
}

.rank-label-bronze {
  background: linear-gradient(180deg, #d99a61, var(--color-bronze));
}

.service-head {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  color: var(--color-navy);
  font-size: 17px;
  font-weight: 900;
}

.service-head img {
  width: 138px;
  height: 72px;
  object-fit: contain;
  margin-inline: auto;
}

.service-head a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.service-head .service-logo-yth {
  width: 138px;
  height: 72px;
}

.service-head .service-logo-rank {
  width: 138px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.logo-placeholder {
  display: grid;
  place-items: center;
  width: 82px;
  min-height: 42px;
  padding: 5px;
  color: #7b8794;
  background: #eef2f6;
  border: 1px dashed #b6c2cf;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 900;
}

.rate-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-right: 5px;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 900;
}

.rate-excellent {
  color: transparent;
  background: url("image/nijuumaru.png") center / contain no-repeat;
  border: 0;
  font-size: 0;
}

.rate-good {
  color: #2f80ed;
  background: #eef6ff;
  border: 2px solid #7eb6ff;
}

.rate-fair {
  color: #a37000;
  background: #fff7db;
  border: 2px solid #d7a83a;
}

.table-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.rating-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  object-fit: contain;
  background: transparent;
  border: 0;
}

.ranking-table td strong {
  color: var(--color-navy);
  font-size: 22px;
}

.pickup-section {
  padding: 8px 0 28px;
}

.pickup-box {
  overflow: hidden;
  background: var(--color-white);
  border: 2px solid #9acbf0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.pickup-strip {
  padding: 18px 24px;
  color: var(--color-white);
  background: #8fc5ed;
  border-bottom: 3px solid #fff06a;
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 900;
}

.pickup-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px;
  text-align: center;
}

.pickup-service-image {
  width: min(100%, 360px);
  margin: 0 auto 10px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.pickup-title {
  margin: 0;
  color: var(--color-accent-dark);
  font-size: clamp(18px, 5vw, 24px);
  font-weight: 900;
  text-align: center;
}

.pickup-copy {
  display: grid;
  gap: 16px;
  align-content: center;
}

.pickup-lead {
  margin: 0;
  color: #425866;
  font-size: clamp(21px, 3vw, 30px);
  font-weight: 900;
  line-height: 1.55;
}

.pickup-points {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--color-navy);
  font-weight: 800;
  list-style: none;
}

.pickup-points li::before {
  content: "✓";
  margin-right: 6px;
  color: var(--color-main);
}

.pickup-cta .btn {
  width: 100%;
  max-width: 520px;
  min-height: 62px;
  background: #f47d98;
  box-shadow: 0 5px 0 #8c2332;
  font-size: clamp(18px, 2vw, 24px);
}

.pickup-note {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.points-section,
.steps-section,
.seller-guide-section,
.faq-section,
.disclaimer-section {
  padding: 30px 0;
  background: var(--color-white);
}

.points-grid,
.steps-list,
.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.point-card,
.step-card,
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.point-card {
  min-height: 190px;
  padding: 22px 18px;
}

.point-number,
.step-no {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-main);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
}

.point-number {
  margin-bottom: 12px;
}

.point-title {
  margin: 0 0 8px;
  color: var(--color-main-dark);
  font-size: 20px;
  font-weight: 900;
}

.point-text {
  margin: 0;
  color: #344054;
  font-weight: 600;
}

.point-text a {
  color: #1d4ed8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.yth-detail-section {
  padding: 34px 0;
  background: #f5fbfb;
}

.yth-detail-box {
  overflow: hidden;
  background: var(--color-white);
  border: 2px solid #9acbf0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.yth-detail-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  color: var(--color-white);
  background: linear-gradient(180deg, #ff6d82 0%, #f43f5e 100%);
  border-bottom: 3px solid #fff06a;
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
}

.yth-detail-rank-image {
  width: 86px;
  height: 48px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid #ffe66f;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.yth-detail-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 20px 16px 24px;
}

.yth-detail-image,
.yth-feature-panel,
.yth-detail-content {
  width: min(100%, 860px);
  margin-inline: auto;
}

.yth-detail-image {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.yth-detail-image img {
  width: 100%;
  border: 1px solid #9acbf0;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.yth-detail-content {
  display: grid;
  gap: 16px;
  align-content: center;
  padding-top: 4px;
}

.yth-detail-lead {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 900;
  line-height: 1.75;
}

.bold-marker,
.marker-strong {
  background: linear-gradient(transparent 58%, #fff2a8 58%);
  font-weight: 900;
}

.red-marker {
  color: #d71920;
  background: linear-gradient(transparent 58%, #ffd2d2 58%);
  font-weight: 900;
}

.yth-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.yth-spec-grid div {
  min-height: 82px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: #fffdf8;
  text-align: center;
}

.yth-spec-grid dt {
  margin: 0;
  padding: 10px 6px 8px;
  color: var(--color-navy);
  background: #eef4f8;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.yth-spec-grid dt::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto 4px;
  background: url("image/nijuumaru.png") center / contain no-repeat;
}

.yth-spec-grid .spec-rate-good dt::before {
  background-image: url("image/maru.png");
}

.yth-spec-grid .spec-rate-fair dt::before {
  background-image: url("image/sankaku.png");
}

.yth-spec-grid dd {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 0;
  padding: 8px 6px;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

.yth-feature-panel {
  padding: 16px;
  background: #fffaf0;
  border: 1px solid #ffdc8d;
  border-radius: var(--radius-sm);
}

.yth-feature-panel h4 {
  margin: 0 0 10px;
  color: var(--color-navy);
  font-size: 17px;
  font-weight: 900;
  text-align: center;
}

.yth-feature-item {
  position: relative;
  padding-left: 28px;
  color: #344054;
}

.yth-feature-item:not(:last-child) {
  margin-bottom: 8px;
}

.yth-feature-item::before {
  content: "✓";
  position: absolute;
  top: 0.12em;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  color: var(--color-white);
  background: var(--color-main);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.yth-feature-item h5 {
  margin: 0;
  color: #344054;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
}

.yth-feature-item p {
  margin: 6px 0 0;
  color: #4f4f4f;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

.yth-feature-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.yth-feature-list li {
  position: relative;
  padding-left: 28px;
  color: #344054;
  font-weight: 900;
}

.yth-feature-list li p {
  margin: 6px 0 0;
  color: #4f4f4f;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

.yth-feature-list li::before {
  content: "✓";
  position: absolute;
  top: 0.12em;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  color: var(--color-white);
  background: var(--color-main);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.tag {
  padding: 7px 12px;
  color: var(--color-main-dark);
  background: var(--color-main-light);
  border: 1px solid #bde4e1;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 900;
}

.yth-detail-cta {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.yth-cta-kicker {
  margin: 0;
  color: #e02424;
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
}

.yth-detail-cta .btn {
  width: 100%;
  min-height: 56px;
}

.yth-review-section {
  display: grid;
  gap: 12px;
}

.yth-review-section h4 {
  margin: 0;
  color: var(--color-navy);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.yth-review-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.yth-review-note {
  margin: 0;
  color: #667085;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.7;
}

.yth-review-card {
  flex: 0 0 min(84vw, 360px);
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 250px;
  padding: 16px;
  background: var(--color-white);
  border: 1px solid #d8e6e6;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
}

.yth-review-head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.yth-review-head img {
  width: 54px;
  height: 54px;
  background: #f3f5f6;
  border-radius: 50%;
  object-fit: cover;
}

.yth-review-head h5 {
  margin: 0;
  color: #8ac4d4;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
}

.yth-review-card p {
  margin: 0;
  color: #4f4f4f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.yth-review-card .yth-review-meta {
  align-self: end;
  margin-top: 4px;
  color: #667085;
  font-size: 12px;
  font-weight: 900;
  text-align: right;
}

.jangle-detail-section {
  padding-top: 0;
}

.jangle-detail-box {
  border-color: #bfdbfe;
}

.jangle-detail-image img {
  max-height: 430px;
  background: var(--color-white);
  object-fit: contain;
  object-position: top center;
}

.jangle-detail-cta {
  width: min(100%, 640px);
  margin-inline: auto;
}

.arrows-detail-section {
  padding-top: 0;
}

.arrows-detail-box {
  border-color: #fde2c7;
}

.arrows-detail-image img {
  max-height: 430px;
  background: var(--color-white);
  object-fit: contain;
  object-position: top center;
}

.arrows-detail-cta {
  width: min(100%, 640px);
  margin-inline: auto;
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-card {
  position: relative;
  padding: 22px 18px;
  text-align: center;
}

.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -15px;
  transform: translateX(50%);
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 13px solid #b9c9d6;
}

.step-no {
  margin-bottom: 10px;
}

.step-title {
  margin: 0 0 4px;
  color: var(--color-navy);
  font-size: 20px;
  font-weight: 900;
}

.step-text {
  margin: 0;
  color: #344054;
  font-weight: 700;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  position: relative;
  padding: 16px 44px 16px 18px;
  color: var(--color-navy);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: var(--color-main);
  font-size: 22px;
  font-weight: 900;
}

.faq-item[open] .faq-question::after {
  content: "-";
}

.faq-answer {
  margin: 0;
  padding: 0 18px 18px;
  color: #344054;
  font-weight: 600;
}

.disclaimer-section p {
  margin: 0 0 12px;
  color: #4f4f4f;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

.disclaimer-section p:last-child {
  margin-bottom: 0;
}

.operator-section {
  padding: 34px 0 44px;
  background: var(--color-white);
}

.operator-info {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-white);
}

.operator-info div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  border-bottom: 1px solid var(--color-border);
}

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

.operator-info dt,
.operator-info dd {
  margin: 0;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.7;
}

.operator-info dt {
  background: #edf5ff;
  color: #222222;
  font-weight: 900;
}

.operator-info dd {
  color: #333333;
  font-weight: 600;
}

.operator-info a,
.site-footer a {
  color: #1d4ed8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 641px) {
  .inner {
    width: min(var(--inner-width), calc(100% - 32px));
  }

  .hero {
    padding: 28px 0 18px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 30px;
    padding: 30px;
  }

  .hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-cta .btn {
    width: auto;
    min-width: min(100%, 390px);
  }

  .hero-note {
    max-width: 390px;
  }

  .ranking-scroll-note {
    display: none;
  }

  .pickup-main {
    grid-template-columns: 38% minmax(0, 1fr);
    gap: 32px;
    text-align: left;
  }

  .pickup-cta {
    text-align: left;
  }

  .pickup-cta .btn {
    width: min(100%, 520px);
  }

  .points-grid,
  .steps-list,
  .comparison-basis-grid,
  .seller-guide-grid,
  .faq-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .yth-detail-main {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px;
  }

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

  .yth-detail-cta {
    text-align: center;
  }

  .yth-detail-cta .btn {
    width: min(100%, 520px);
  }

}

@media (min-width: 981px) {
  .inner {
    width: min(var(--inner-width), calc(100% - 192px));
  }

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

  .badge-pr {
    padding: 9px 12px;
    font-size: 13px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 36px;
    padding: 36px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-visual {
    min-height: 280px;
  }

  .ranking-table {
    min-width: 860px;
  }

  .ranking-table th,
  .ranking-table td {
    padding: 16px 14px;
    font-size: 15px;
  }

  .ranking-table thead th:first-child,
  .ranking-table tbody th {
    width: 150px;
  }

  .service-head {
    min-height: 160px;
    font-size: 20px;
  }

  .service-head img,
  .logo-placeholder {
    width: 150px;
  }

  .service-head .service-logo-yth {
    width: 150px;
    height: 78px;
  }

  .service-head .service-logo-rank {
    width: 150px;
    height: 78px;
  }

  .btn-table {
    padding: 10px 18px;
    font-size: 14px;
  }

  .pickup-main {
    grid-template-columns: 38% minmax(0, 1fr);
    gap: 48px;
    text-align: left;
  }

  .pickup-service-image {
    width: 100%;
    margin-inline: 0;
  }

  .pickup-lead {
    font-size: clamp(18px, 2.1vw, 28px);
    white-space: nowrap;
  }

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

  .point-card {
    min-height: 210px;
    padding: 28px 22px 22px;
  }

  .yth-detail-main {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 32px;
  }

  .yth-detail-lead {
    font-size: 22px;
  }

  .yth-detail-cta .btn {
    width: min(100%, 540px);
  }

  .step-card:not(:last-child)::after {
    top: 50%;
    right: -16px;
    bottom: auto;
    transform: translateY(-50%);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 14px solid #b9c9d6;
    border-right: 0;
  }

}

@media (max-width: 380px) {
  .site-logo img {
    width: 43vw;
  }

  .header-badges {
    gap: 4px;
  }

  .badge-pr {
    padding: 7px 8px;
    font-size: 10px;
  }

  .hero-title {
    font-size: 30px;
  }

  .btn {
    padding-inline: 14px;
    font-size: 15px;
  }
}

/* =========================================================
  SWELL-style article redesign
========================================================= */

:root {
  --color-main: #2f80ed;
  --color-main-dark: #1d4ed8;
  --color-main-light: #edf5ff;
  --color-accent: #f59e0b;
  --color-accent-dark: #b45309;
  --color-accent-light: #fff8e5;
  --color-green: #18a058;
  --color-red: #e53935;
  --color-navy: #222222;
  --color-text: #333333;
  --color-muted: #777777;
  --color-bg: #f4f5f7;
  --color-white: #ffffff;
  --color-border: #e5e7eb;
  --inner-width: 760px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.06);
  --shadow-button: 0 3px 0 #0f7a35;
}

html,
body {
  background: var(--color-bg);
}

body {
  color: var(--color-text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.inner {
  width: min(var(--inner-width), calc(100% - 32px));
}

.page-wrap {
  max-width: var(--inner-width);
  margin: 0 auto;
  background: var(--color-white);
  overflow: hidden;
}

.lp-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  min-height: 62px;
}

.site-logo {
  color: #222222;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
}

.site-logo span {
  color: var(--color-main);
}

.site-nav {
  color: #666666;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.breadcrumb {
  width: min(var(--inner-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0;
  color: #777777;
  font-size: 12px;
  line-height: 1.6;
}

.article-header {
  padding: 24px 16px 8px;
}

.pr-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 2px 8px;
  color: #666666;
  background: #fafafa;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.article-title {
  margin: 0 0 12px;
  color: #222222;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
}

.article-meta {
  margin-bottom: 22px;
  color: #777777;
  font-size: 12px;
  font-weight: 600;
}

.eyecatch {
  position: relative;
  overflow: hidden;
  margin: 24px 0;
  padding: 24px 18px;
  background: linear-gradient(135deg, #eaf3ff, #fff8e5);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  text-align: center;
}

.eyecatch::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.5;
}

.eyecatch-content {
  position: relative;
  z-index: 1;
}

.eyecatch-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  color: var(--color-white);
  background: var(--color-red);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.eyecatch-main {
  color: #222222;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.45;
}

.eyecatch-main span,
.lead strong,
.bold-marker,
.marker-strong {
  background: linear-gradient(transparent 64%, #ffe066 64%);
}

.lead p {
  margin: 0 0 14px;
}

.abc-company-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 18px;
}

.lead strong {
  color: var(--color-red);
  font-weight: 900;
}

.comparison-basis {
  margin: 26px 0;
  padding: 22px 18px;
  background: #f8fbff;
  border: 1px solid #dbe7f5;
}

.comparison-basis h2 {
  margin: 0 0 12px;
  color: #222222;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
}

.comparison-basis > p {
  margin: 0 0 18px;
  color: #344054;
  font-weight: 600;
  line-height: 1.85;
}

.comparison-basis-grid,
.seller-guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.comparison-basis-grid div,
.seller-guide-card {
  padding: 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.comparison-basis-grid h3,
.seller-guide-card h4 {
  margin: 0 0 8px;
  color: var(--color-main-dark);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.comparison-basis-grid p,
.seller-guide-card p {
  margin: 0;
  color: #344054;
  font-weight: 600;
  line-height: 1.75;
}

.toc-box {
  margin: 28px 0;
  padding: 18px;
  background: #f9fafb;
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.toc-title {
  margin-bottom: 10px;
  color: #222222;
  font-weight: 900;
}

.toc-box ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 1.25em;
}

.conclusion-box {
  margin: 28px 0;
  padding: 18px;
  background: var(--color-accent-light);
  border: 1px solid #f5d27a;
  border-radius: 8px;
}

.conclusion-title {
  margin-bottom: 8px;
  color: var(--color-accent-dark);
  font-size: 18px;
  font-weight: 900;
}

.conclusion-box p {
  margin: 0;
}

.article-cta,
.yth-detail-cta {
  margin: 26px 0 8px;
  padding: 22px 16px;
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  text-align: center;
}

.article-cta-text {
  margin-bottom: 12px;
  color: #333333;
  font-weight: 900;
}

.article-cta-note,
.pickup-note {
  margin: 10px 0 0;
  color: #777777;
  font-size: 12px;
  font-weight: 600;
}

.btn,
.btn-table {
  border-radius: 6px;
  font-weight: 900;
}

.btn::after {
  content: ">";
}

.btn-primary,
.pickup-cta .btn {
  color: var(--color-white);
  background: linear-gradient(180deg, #22c55e, #16a34a);
  box-shadow: 0 3px 0 #0f7a35;
  position: relative;
  overflow: hidden;
}

.btn-secondary {
  color: var(--color-main);
  background: var(--color-white);
  border: 1px solid #bfdbfe;
  box-shadow: none;
}

.ranking-table .btn-secondary {
  color: var(--color-white);
  background: linear-gradient(180deg, #22c55e, #16a34a);
  border: 0;
  box-shadow: 0 3px 0 #0f7a35;
  position: relative;
  overflow: hidden;
}

.btn-attention::before {
  display: none;
}

.btn-primary::before,
.pickup-cta .btn::before,
.ranking-table .btn-secondary::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, transparent 34%, rgba(255, 255, 255, 0.7) 46%, transparent 58%, transparent 100%);
  transform: translateX(-120%);
  animation: cta-shine 3.8s ease-in-out infinite;
  pointer-events: none;
}

.hero-image-only {
  padding: 0 0 24px;
  background: var(--color-white);
}

.hero-main-image {
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: none;
}

.hero-logo-marquee {
  overflow: hidden;
  margin-top: 14px;
  padding: 10px 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.hero-logo-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: hero-logo-scroll 22s linear infinite;
}

.hero-logo-track img {
  flex: 0 0 auto;
  width: clamp(240px, 31vw, 460px);
  aspect-ratio: 640 / 100;
  height: auto;
  object-fit: cover;
  background: #ffffff;
  border: 1px solid var(--color-border);
}

@keyframes hero-logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.ranking-section,
.pickup-section,
.points-section,
.yth-detail-section,
.steps-section,
.seller-guide-section,
.faq-section,
.disclaimer-section {
  padding: 30px 0;
  background: var(--color-white);
}

.section-title,
.section-title-center {
  display: block;
  justify-content: initial;
  margin: 0 0 20px;
  padding: 12px 16px;
  color: #222222;
  background: #f1f7ff;
  border-left: 6px solid var(--color-main);
  border-radius: 0;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.5;
  text-align: left;
}

.ranking-image-title {
  padding: 0;
  background: transparent;
  border-left: 0;
  text-align: center;
}

.ranking-image-title img {
  width: 100%;
  margin-inline: auto;
}

.section-title::before,
.section-title-center::before {
  display: none;
}

.ranking-scroll-note {
  padding: 0 0 8px;
  color: #777777;
  background: transparent;
  border: 0;
  text-align: left;
}

.ranking-table-wrap {
  margin: 24px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.ranking-table {
  width: 100%;
  min-width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 14px;
}

.ranking-table th,
.ranking-table td {
  padding: 12px 8px;
  border: 1px solid var(--color-border);
  font-size: 14px;
  line-height: 1.65;
}

.ranking-table thead th,
.ranking-table thead th:first-child,
.ranking-table tbody th {
  color: #222222;
  background: #edf5ff;
  border-color: #d7e3f4;
  font-weight: 900;
}

.ranking-table thead th.rank1,
.ranking-table thead th.rank2,
.ranking-table thead th.rank3 {
  background: #edf5ff;
  border-top: 1px solid #d7e3f4;
}

.ranking-table th.rank1,
.ranking-table td.rank1,
.ranking-table tbody tr:nth-child(even) td.rank1 {
  background: #fff8e5;
}

.ranking-table tbody tr:nth-child(even) td {
  background: #fafafa;
}

.rank-label,
.rank-label-gold,
.rank-label-silver,
.rank-label-bronze {
  min-height: 46px;
  background: #edf5ff;
  color: #222222;
}

.rank-label-image {
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

.service-head {
  min-height: 128px;
  gap: 8px;
  color: #222222;
  font-size: 18px;
}

.service-head img,
.service-head .service-logo-yth,
.service-head .service-logo-rank {
  width: 132px;
  height: 68px;
}

.rate-badge {
  background: transparent;
}

.pickup-box,
.yth-detail-box {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.pickup-strip,
.yth-detail-strip {
  padding: 14px 18px;
  color: #222222;
  background: #edf5ff;
  border-left: 6px solid #2f80ed;
  border-bottom: 1px solid var(--color-border);
  font-size: 20px;
  font-weight: 900;
}

.pickup-main,
.yth-detail-main {
  padding: 18px;
}

.pickup-lead,
.yth-detail-lead {
  color: #222222;
  font-size: 20px;
  line-height: 1.65;
}

.pickup-points,
.yth-feature-list,
.yth-feature-item {
  color: #333333;
}

.pickup-points li,
.yth-feature-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.yth-feature-list li p {
  margin: 6px 0 0;
  color: #4f4f4f;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

.yth-feature-item h5 {
  margin: 0;
  color: #333333;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
}

.yth-feature-item p {
  margin: 6px 0 0;
  color: #4f4f4f;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

.pickup-points li::before,
.yth-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--color-green);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.point-card,
.step-card,
.faq-item,
.yth-feature-panel,
.yth-review-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.point-number,
.step-no {
  background: var(--color-main);
}

.point-title,
.yth-feature-panel h4,
.yth-review-section h4 {
  color: #222222;
}

.points-grid,
.steps-list {
  grid-template-columns: 1fr;
}

.step-card:not(:last-child)::after {
  display: none;
}

.yth-detail-rank-image {
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.yth-spec-grid {
  border-color: var(--color-border);
  border-radius: 8px;
}

.yth-spec-grid dt {
  color: #222222;
  background: #edf5ff;
}

.yth-spec-grid dd,
.yth-spec-grid div {
  background: #ffffff;
}

.yth-cta-kicker {
  color: var(--color-red);
  font-size: 16px;
}

.red-marker {
  color: var(--color-red);
  background: linear-gradient(transparent 64%, #ffe0e0 64%);
}

.yth-feature-panel {
  background: #fffdf7;
}

.yth-review-scroll {
  padding-bottom: 12px;
}

.yth-review-card {
  flex-basis: min(78vw, 320px);
  min-height: 260px;
}

.yth-review-head h5 {
  color: #6bb6c9;
}

.faq-list {
  display: block;
}

.faq-item {
  border-width: 0 0 1px;
  border-radius: 0;
  box-shadow: none;
}

.faq-question {
  padding: 18px 44px 8px 0;
  color: #222222;
}

.faq-question::before {
  content: "Q. ";
  color: var(--color-main);
}

.faq-answer {
  padding: 0 0 18px;
}

.faq-answer::before {
  content: "A. ";
  color: var(--color-red);
  font-weight: 900;
}

.site-footer {
  width: min(var(--inner-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 36px;
  color: #777777;
  font-size: 12px;
}

.site-footer .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  justify-content: center;
}

.yth-popup[hidden] {
  display: none;
}

.yth-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.yth-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.yth-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.56);
}

.yth-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  padding: 28px 20px 22px;
  background: var(--color-white);
  border: 3px solid #22c55e;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.24);
  text-align: center;
  transform: translateY(12px);
  transition: transform 0.18s ease;
}

.yth-popup.is-visible .yth-popup-dialog {
  transform: translateY(0);
}

.yth-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: #667085;
  background: #f3f5f6;
  border: 1px solid var(--color-border);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.yth-popup-kicker {
  margin: 0 0 8px;
  color: #16a34a;
  font-size: 13px;
  font-weight: 900;
}

.yth-popup-title {
  margin: 0 0 10px;
  color: var(--color-navy);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.35;
}

.yth-popup-image-link {
  display: block;
  margin: 0 0 14px;
}

.yth-popup-image-link img {
  width: 100%;
  max-height: 190px;
  object-fit: contain;
}

.yth-popup-text {
  margin: 0 0 16px;
  color: #344054;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.yth-popup-cta {
  width: min(100%, 340px);
}

.yth-popup-note {
  margin: 10px 0 0;
  color: #777777;
  font-size: 12px;
  font-weight: 700;
}

body.yth-popup-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .inner {
    width: min(100% - 24px, var(--inner-width));
  }

  .site-nav {
    display: none;
  }

  .article-header {
    padding: 20px 14px 8px;
  }

  .article-title {
    font-size: 24px;
  }

  .eyecatch-main {
    font-size: 22px;
  }

  .hero-main-image {
    max-height: none;
  }

  .section-title,
  .section-title-center {
    font-size: 21px;
  }

  .ranking-table {
    min-width: 720px;
  }

  .pickup-main,
  .yth-detail-main {
    padding: 16px;
  }

  .pickup-lead,
  .yth-detail-lead {
    font-size: 18px;
  }

  .article-cta .btn,
  .yth-detail-cta .btn,
  .pickup-cta .btn {
    width: 100%;
    min-width: 0;
  }
}

@media (min-width: 981px) {
  .inner {
    width: min(var(--inner-width), calc(100% - 32px));
  }

  .pickup-main {
    grid-template-columns: 34% minmax(0, 1fr);
    gap: 28px;
  }

  .points-grid,
  .steps-list {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
  Square-corner override
========================================================= */

:root {
  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;
  --radius-pill: 0;
}

*,
*::before,
*::after {
  border-radius: 0 !important;
}

.rate-badge {
  border-radius: 50% !important;
}

.yth-review-head img {
  border-radius: 50% !important;
}

/* =========================================================
  Font-weight readability tuning
========================================================= */

.lead strong {
  font-weight: 700;
}

.bold-marker,
.marker-strong,
.red-marker {
  font-weight: 800;
}

.article-cta-text {
  font-weight: 700;
}

.ranking-table th,
.ranking-table td {
  font-weight: 700;
}

.pickup-lead {
  font-weight: 800;
}

.pickup-points,
.pickup-points li {
  font-weight: 700;
}

.yth-detail-lead {
  font-weight: 700;
}

.yth-spec-grid dt {
  font-weight: 800;
}

.yth-spec-grid dd {
  font-weight: 700;
}

.yth-feature-list li,
.yth-feature-item h5 {
  font-weight: 800;
}

.yth-feature-list li p,
.yth-feature-item p {
  font-weight: 600;
}

.faq-question {
  font-weight: 700;
}

.section-title,
.section-title-center,
.btn,
.btn-table,
.service-head,
.rank-label,
.rank-label-gold,
.rank-label-silver,
.rank-label-bronze,
.site-logo {
  font-weight: 900;
}
