:root {
	--color-ink: #172036;
	--color-muted: #5d6a7f;
	--color-blue: #1261a6;
	--color-blue-dark: #073c73;
	--color-sky: #e9f6ff;
	--color-orange: #f58220;
	--color-orange-dark: #d96511;
	--color-yellow: #ffe8a3;
	--color-green: #28a978;
	--color-cream: #fffaf0;
	--color-line: #dfe8f2;
	--color-white: #fff;
	--shadow-soft: 0 24px 60px rgba(16, 56, 96, 0.14);
	--shadow-card: 0 12px 30px rgba(20, 49, 86, 0.1);
	--radius-card: 8px;
	--container: 1180px;
}

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

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	margin: 0;
	color: var(--color-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
	font-size: 16px;
	line-height: 1.75;
	background: var(--color-white);
	letter-spacing: 0;
	overflow-x: hidden;
}

.site-main,
.site-header,
.site-footer {
	max-width: 100%;
	overflow-x: hidden;
}

img,
video,
iframe,
picture {
	display: block;
	max-width: 100%;
	height: auto;
}

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

button,
input,
textarea,
select {
	font: inherit;
}

.skip-link {
	position: absolute;
	left: 16px;
	top: -80px;
	z-index: 1000;
	padding: 10px 14px;
	color: var(--color-white);
	background: var(--color-blue-dark);
	border-radius: 4px;
	transition: top 0.2s ease;
}

.skip-link:focus {
	top: 16px;
}

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

.container.narrow {
	width: min(calc(100% - 40px), 840px);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	overflow: visible;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(223, 232, 242, 0.85);
	backdrop-filter: blur(14px);
}

.header-inner {
	position: relative;
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: 82px;
}

.site-logo {
	flex: 0 0 auto;
}

.site-logo img {
	width: 196px;
	height: auto;
}

.global-nav {
	flex: 1 1 auto;
}

.global-nav ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.global-nav a {
	display: block;
	padding: 10px 9px;
	color: var(--color-ink);
	font-size: 14px;
	font-weight: 700;
	border-radius: 6px;
}

.global-nav a:hover,
.global-nav a:focus {
	color: var(--color-blue-dark);
	background: var(--color-sky);
}

.mobile-menu-panel {
	display: none;
}

.nav-toggle {
	position: relative;
	z-index: 100002;
	display: none;
	align-items: center;
	justify-content: center;
	gap: 4px;
	width: 48px;
	height: 48px;
	padding: 0;
	color: var(--color-blue-dark);
	font-size: 10px;
	font-weight: 700;
	background: var(--color-sky);
	border: 0;
	border-radius: 8px;
	cursor: pointer;
	pointer-events: auto;
	touch-action: manipulation;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
	display: block;
	width: 16px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	max-width: 100%;
	min-width: 0;
	min-height: 54px;
	padding: 13px 26px;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.32;
	text-align: center;
	white-space: normal;
	overflow-wrap: anywhere;
	box-sizing: border-box;
	border: 1px solid transparent;
	border-radius: 12px;
	box-shadow: 0 8px 18px rgba(255, 122, 0, 0.22);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus {
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(255, 122, 0, 0.28);
}

.button-primary {
	color: var(--color-white);
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
	background: linear-gradient(180deg, #ff9a1f 0%, #ff7a00 100%);
	border-color: rgba(220, 90, 0, 0.25);
}

.button-primary:hover,
.button-primary:focus {
	background: linear-gradient(180deg, #ffa438 0%, #ff7f08 100%);
}

.button-primary::after {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	font-size: 16px;
	line-height: 1;
	content: "→";
	text-shadow: none;
	background: rgba(255, 255, 255, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 50%;
}

.button-secondary {
	color: var(--color-blue-dark);
	background: var(--color-white);
	border-color: rgba(18, 97, 166, 0.22);
	box-shadow: 0 10px 22px rgba(18, 97, 166, 0.12);
}

.button-small {
	min-height: 40px;
	padding: 8px 14px;
	font-size: 14px;
	white-space: nowrap;
	border-radius: 8px;
}

.button-small::after {
	width: 18px;
	height: 18px;
	font-size: 13px;
}

.header-cta {
	flex: 0 0 auto;
	min-height: 46px;
	padding-inline: 16px;
	font-size: 14px;
}

.section {
	padding: 84px 0;
}

.section-tint {
	background: linear-gradient(180deg, #f7fbff 0%, #fff8ee 100%);
}

.section-deep {
	color: var(--color-white);
	background:
		linear-gradient(135deg, rgba(7, 60, 115, 0.98), rgba(18, 97, 166, 0.94)),
		var(--color-blue-dark);
}

.section-deep .section-heading p,
.section-deep .table-note {
	color: rgba(255, 255, 255, 0.82);
}

.section-heading {
	max-width: 760px;
	margin: 0 auto 38px;
	text-align: center;
}

.section-heading.align-left {
	margin-inline: 0;
	text-align: left;
}

.eyebrow {
	margin: 0 0 8px;
	color: var(--color-orange-dark);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.section-deep .eyebrow,
.bottom-cta .eyebrow {
	color: var(--color-yellow);
}

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

h1,
h2,
h3,
h4 {
	line-height: 1.35;
}

h1 {
	margin-bottom: 18px;
	font-size: clamp(36px, 5vw, 60px);
}

h2 {
	margin-bottom: 14px;
	font-size: clamp(26px, 3vw, 38px);
}

h3 {
	margin-bottom: 10px;
	font-size: 20px;
}

p {
	margin-bottom: 16px;
}

.hero {
	overflow: hidden;
	padding: 54px 0 62px;
	background:
		linear-gradient(115deg, rgba(233, 246, 255, 0.9) 0%, rgba(255, 250, 240, 0.95) 54%, rgba(255, 232, 163, 0.55) 100%);
}

.hero-home {
	position: relative;
	min-height: 680px;
	padding: 76px 0 82px;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.76) 43%, rgba(255, 255, 255, 0.22) 64%, rgba(255, 255, 255, 0) 100%),
		url("../images/hero/hero-top-pc.png") center center / cover no-repeat,
		linear-gradient(115deg, #eef8ff 0%, #fffdf8 50%, #fff1d5 100%);
}

.hero-home::before,
.hero-home::after {
	position: absolute;
	content: "";
	border-radius: 999px;
	pointer-events: none;
}

.hero-home::before {
	right: min(8vw, 110px);
	top: 34px;
	width: 150px;
	height: 150px;
	background: rgba(18, 97, 166, 0.04);
}

.hero-home::after {
	left: -68px;
	bottom: -72px;
	width: 210px;
	height: 210px;
	background: rgba(245, 130, 32, 0.06);
}

.hero-ranking {
	position: relative;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.74) 45%, rgba(255, 255, 255, 0.18) 66%, rgba(255, 255, 255, 0) 100%),
		var(--ranking-hero-pc, url("../images/hero/hero-bag-ranking-pc.png")) center center / cover no-repeat,
		linear-gradient(115deg, #f2f9ff 0%, #fffdf8 54%, #eef7ff 100%);
	color: var(--color-ink);
}

.hero-pr-label {
	position: absolute;
	right: max(20px, 4vw);
	top: 18px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	margin: 0;
	padding: 5px 10px;
	color: rgba(8, 38, 64, 0.72);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(18, 97, 166, 0.12);
	border-radius: 999px;
	backdrop-filter: blur(8px);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
	align-items: center;
	gap: 38px;
}

.hero-home .hero-grid {
	width: min(calc(100% - 48px), 1240px);
	display: flex;
	align-items: center;
	min-height: 520px;
}

.hero-ranking .hero-grid {
	width: min(calc(100% - 48px), 1240px);
	display: flex;
	align-items: center;
	min-height: 500px;
}

.hero-copy {
	position: relative;
	z-index: 1;
}

.hero-home .hero-copy,
.hero-ranking .hero-copy {
	width: min(100%, 560px);
}

.hero-lead {
	max-width: 600px;
	color: var(--color-muted);
	font-size: 19px;
	font-weight: 600;
}

.hero-home h1 {
	max-width: 600px;
	margin-bottom: 18px;
	font-size: clamp(44px, 4.2vw, 58px);
	font-weight: 900;
	line-height: 1.22;
	word-break: keep-all;
	overflow-wrap: normal;
}

.hero-ranking h1 {
	max-width: 620px;
	font-size: clamp(40px, 4.1vw, 58px);
	font-weight: 900;
	line-height: 1.18;
	word-break: keep-all;
	overflow-wrap: normal;
}

.hero-home .hero-lead {
	max-width: 590px;
	font-size: 18px;
	line-height: 1.8;
	word-break: keep-all;
}

.hero-ranking .hero-lead {
	max-width: 560px;
	color: var(--color-muted);
	font-size: 18px;
	line-height: 1.8;
	word-break: keep-all;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 30px 0 24px;
}

.hero-home .hero-actions {
	flex-wrap: nowrap;
	gap: 18px;
	margin: 28px 0 22px;
}

.hero-home .hero-actions .button {
	flex: 0 0 auto;
	width: 250px;
	min-width: 0;
	min-height: 56px;
}

.hero-ranking .hero-actions .button {
	width: 240px;
	min-height: 56px;
}

.hero-sp-visual {
	display: none;
}

.feature-chips,
.hero-points,
.pill-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.feature-chips {
	display: grid;
	grid-template-columns: repeat(3, minmax(136px, 1fr));
	gap: 12px;
	max-width: 500px;
}

.feature-chips span,
.hero-points span,
.pill-list li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-width: 0;
	max-width: 100%;
	min-height: 38px;
	padding: 7px 12px;
	color: var(--color-blue-dark);
	font-size: 14px;
	font-weight: 800;
	overflow-wrap: anywhere;
	background: var(--color-white);
	border: 1px solid rgba(18, 97, 166, 0.12);
	border-radius: 8px;
}

.feature-chips span {
	min-height: 54px;
	padding: 8px 12px;
	gap: 9px;
	color: var(--color-blue-dark);
	font-size: 15px;
	line-height: 1.35;
	background: rgba(255, 255, 255, 0.9);
	border-color: rgba(18, 97, 166, 0.15);
	box-shadow: 0 10px 22px rgba(18, 97, 166, 0.1);
	backdrop-filter: blur(10px);
}

.feature-chips img {
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	object-fit: cover;
	padding: 2px;
	background: #fff7e7;
	border-radius: 50%;
}

.hero-ranking .hero-points span {
	color: var(--color-blue-dark);
	background: rgba(255, 255, 255, 0.9);
	border-color: rgba(18, 97, 166, 0.16);
	box-shadow: 0 10px 22px rgba(18, 97, 166, 0.1);
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.category-card,
.guide-card,
.howto-card,
.ranking-card,
.feature-card,
.post-card {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
}

.category-card {
	display: grid;
	gap: 8px;
	min-height: 210px;
	padding: 16px;
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card:hover,
.category-card:focus {
	transform: translateY(-3px);
	border-color: rgba(18, 97, 166, 0.36);
}

.category-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
}

.category-card strong {
	color: var(--color-blue-dark);
	font-size: 17px;
}

.category-card span {
	color: var(--color-muted);
	font-size: 13px;
	line-height: 1.55;
}

.table-scroll,
.matrix-scroll {
	overflow-x: auto;
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-soft);
}

.section-deep .matrix-scroll {
	border: 3px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 24px 54px rgba(2, 24, 48, 0.26);
}

.compare-table,
.matrix-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
	background: var(--color-white);
}

.compare-table {
	min-width: 1280px;
}

.matrix-table {
	min-width: 1040px;
}

.compare-table th,
.compare-table td,
.matrix-table th,
.matrix-table td {
	padding: 16px;
	vertical-align: middle;
	border-right: 1px solid var(--color-line);
	border-bottom: 1px solid var(--color-line);
}

.compare-table th {
	color: var(--color-white);
	background: var(--color-blue-dark);
}

.compare-table td {
	color: var(--color-ink);
	background: var(--color-white);
}

.compare-table tr:nth-child(even) td {
	background: #fbfdff;
}

.compare-table tbody td:first-child {
	text-align: center;
	vertical-align: middle;
}

.compare-table tbody td:first-child .rank-badge,
.matrix-table thead .rank-badge {
	margin-inline: auto;
}

.compare-table tbody td:first-child .rank-badge {
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
}

.home-service-cell {
	display: grid;
	justify-items: center;
	gap: 10px;
	min-width: 0;
	text-align: center;
}

.home-service-cell strong {
	max-width: 100%;
	color: var(--color-blue-dark);
	line-height: 1.35;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.home-service-media {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 180px;
	margin-inline: auto;
	padding: 8px;
	background: #f8fcff;
	border: 1px solid rgba(18, 97, 166, 0.12);
	border-radius: 12px;
	box-sizing: border-box;
	overflow: hidden;
}

.home-service-media-table {
	min-height: 112px;
}

.home-service-media a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 100%;
}

.home-service-media img {
	display: block;
	width: auto;
	max-width: min(168px, 100%);
	height: auto;
	max-height: 108px;
	object-fit: contain;
	background: var(--color-white);
	border-radius: 8px;
}

.rank-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	min-width: 38px;
	min-height: 38px;
	aspect-ratio: 1 / 1;
	color: var(--color-white);
	font-weight: 900;
	line-height: 1;
	flex-shrink: 0;
	background: var(--color-orange);
	border-radius: 50%;
	box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.12);
}

.score {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 58px;
	min-height: 34px;
	padding: 4px 10px;
	color: var(--color-blue-dark);
	font-weight: 900;
	background: var(--color-yellow);
	border-radius: 8px;
}

.top-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}

.ranking-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 24px;
}

.ranking-card.is-first,
.ranking-detail.is-first {
	border: 2px solid var(--color-orange);
	box-shadow: 0 22px 48px rgba(245, 130, 32, 0.18);
}

.ranking-head,
.ranking-title {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
}

.ranking-head > div,
.ranking-title > div {
	flex: 1 1 0;
	min-width: 0;
}

.service-logo {
	flex: 0 0 auto;
	width: 82px;
	max-width: 28vw;
	max-height: 42px;
	object-fit: contain;
	padding: 6px;
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: 8px;
}

.ranking-head p,
.ranking-title p {
	margin-bottom: 0;
	color: var(--color-muted);
}

.ranking-card .ranking-score-line {
	justify-content: center;
	margin: 0 0 16px;
}

.ranking-card .button {
	width: 100%;
	margin-top: auto;
}

.top-card-banner {
	align-items: center;
	min-height: 206px;
	margin: 0 0 16px;
	padding: 10px;
	background: #f8fcff;
	border: 1px solid rgba(18, 97, 166, 0.12);
	border-radius: 14px;
	box-sizing: border-box;
}

.top-card-banner a {
	justify-content: center;
}

.service-affiliate-banner.top-card-banner a img {
	max-width: min(300px, 100%);
	max-height: 220px;
}

.ranking-title h3 {
	max-width: 100%;
	margin-bottom: 4px;
	font-size: clamp(22px, 2.4vw, 30px);
	line-height: 1.28;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.check-list,
.step-list {
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
}

.check-list li,
.step-list li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 28px;
}

.check-list li::before {
	position: absolute;
	left: 0;
	top: 0.1em;
	width: 20px;
	height: 20px;
	color: var(--color-white);
	font-size: 13px;
	font-weight: 900;
	line-height: 20px;
	text-align: center;
	content: "✓";
	background: var(--color-green);
	border-radius: 50%;
}

.step-list {
	counter-reset: step;
}

.step-list li {
	counter-increment: step;
}

.step-list li::before {
	position: absolute;
	left: 0;
	top: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	color: var(--color-white);
	font-size: 12px;
	font-weight: 900;
	content: counter(step);
	background: var(--color-blue);
	border-radius: 50%;
}

.ranking-flow-section {
	background:
		linear-gradient(180deg, #f7fbff 0%, #fffdf7 100%);
}

.ranking-flow-steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: ranking-flow;
}

.ranking-flow-steps::before {
	position: absolute;
	left: 8%;
	right: 8%;
	top: 28px;
	height: 2px;
	content: "";
	background: linear-gradient(90deg, rgba(18, 97, 166, 0.14), rgba(245, 130, 32, 0.36), rgba(18, 97, 166, 0.14));
}

.ranking-flow-steps li {
	position: relative;
	display: grid;
	align-content: start;
	gap: 8px;
	min-width: 0;
	padding: 68px 16px 18px;
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(18, 97, 166, 0.12);
	border-radius: 14px;
	box-shadow: 0 12px 30px rgba(18, 97, 166, 0.08);
	counter-increment: ranking-flow;
}

.ranking-flow-steps li::before {
	position: absolute;
	left: 50%;
	top: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: var(--color-white);
	font-size: 18px;
	font-weight: 900;
	line-height: 1;
	content: counter(ranking-flow);
	background: linear-gradient(180deg, #ff9a1f, #ff7a00);
	border: 4px solid var(--color-white);
	border-radius: 50%;
	box-shadow: 0 10px 20px rgba(245, 130, 32, 0.22);
	transform: translateX(-50%);
}

.ranking-flow-steps strong {
	color: var(--color-blue-dark);
	font-size: 16px;
	line-height: 1.45;
	text-align: center;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.ranking-flow-steps span {
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.75;
	text-align: center;
	overflow-wrap: anywhere;
}

.recommend {
	color: var(--color-blue-dark);
	font-weight: 800;
}

.campaign {
	padding: 10px 12px;
	color: #825000;
	font-weight: 800;
	background: #fff4cf;
	border-radius: 8px;
}

.howto-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.howto-card {
	padding: 18px;
}

.howto-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	margin-bottom: 12px;
	background: #f7fbff;
	border-radius: 8px;
}

.howto-card p,
.feature-card p,
.guide-card p {
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.65;
}

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

.guide-card {
	overflow: hidden;
	transition: transform 0.2s ease;
}

.guide-card:hover,
.guide-card:focus {
	transform: translateY(-3px);
}

.guide-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.guide-card span,
.guide-card h3,
.guide-card p {
	display: block;
	margin-inline: 16px;
}

.guide-card span {
	margin-top: 14px;
	color: var(--color-orange-dark);
	font-size: 12px;
	font-weight: 800;
}

.guide-card h3 {
	margin-top: 6px;
}

.guide-card p {
	margin-bottom: 18px;
}

.faq-list {
	display: grid;
	gap: 12px;
}

.faq-item {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
}

.faq-item summary {
	position: relative;
	padding: 18px 52px 18px 20px;
	font-weight: 900;
	cursor: pointer;
}

.faq-item summary::after {
	position: absolute;
	right: 20px;
	top: 50%;
	width: 28px;
	height: 28px;
	color: var(--color-white);
	line-height: 28px;
	text-align: center;
	content: "+";
	background: var(--color-blue);
	border-radius: 50%;
	transform: translateY(-50%);
}

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

.faq-item p {
	margin: 0;
	padding: 0 20px 20px;
	color: var(--color-muted);
}

.bottom-cta {
	position: relative;
	overflow: hidden;
	margin-bottom: 18px;
	padding: 42px 0 48px;
	color: var(--color-ink);
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.18)),
		url("../images/cta/cta-ranking-common-bg.png") center / cover no-repeat;
}

.bottom-cta-ranking {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.18)),
		url("../images/cta/cta-ranking-common-bg.png") center / cover no-repeat;
}

.bottom-cta-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 330px;
	padding: 0;
}

.bottom-cta-card,
.bottom-cta-inner > div {
	width: min(100%, 590px);
	margin-inline: auto;
	padding: 30px 36px 34px;
	text-align: center;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.82);
	border-radius: 8px;
	box-shadow: 0 22px 50px rgba(18, 97, 166, 0.16);
	backdrop-filter: blur(8px);
}

.bottom-cta-card .eyebrow,
.bottom-cta-inner > div .eyebrow {
	color: var(--color-orange-dark);
}

.bottom-cta-card h2,
.bottom-cta-inner > div h2 {
	margin-bottom: 12px;
	color: var(--color-ink);
	line-height: 1.28;
	word-break: keep-all;
	overflow-wrap: normal;
}

.bottom-cta-card p,
.bottom-cta-inner > div p {
	max-width: 520px;
	margin-inline: auto;
	color: var(--color-muted);
	font-weight: 700;
	line-height: 1.75;
	word-break: keep-all;
}

.bottom-cta-card .button,
.bottom-cta-inner > div .button {
	width: min(100%, 440px);
	margin-top: 6px;
}

.bottom-cta-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 0 auto 18px;
}

.bottom-cta-chips span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 6px 12px;
	color: var(--color-blue-dark);
	font-size: 13px;
	font-weight: 800;
	background: #f7fbff;
	border: 1px solid rgba(18, 97, 166, 0.14);
	border-radius: 999px;
}

.site-footer {
	color: rgba(255, 255, 255, 0.88);
	background: #082640;
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) repeat(3, minmax(130px, 0.72fr));
	column-gap: clamp(28px, 4vw, 56px);
	row-gap: 30px;
	padding: 48px 0;
}

.footer-brand,
.footer-col {
	min-width: 0;
}

.footer-brand {
	max-width: 380px;
}

.footer-brand img {
	width: 172px;
	margin-bottom: 16px;
}

.footer-brand p {
	max-width: 100%;
	line-height: 1.7;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.footer-brand p,
.footer-col a,
.footer-pr {
	color: rgba(255, 255, 255, 0.76);
	font-size: 14px;
}

.footer-pr {
	max-width: 100%;
	line-height: 1.7;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.footer-heading {
	margin-bottom: 14px;
	font-size: 16px;
	font-weight: 800;
}

.footer-col ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-col li {
	margin-bottom: 8px;
}

.footer-col a:hover,
.footer-col a:focus {
	color: var(--color-yellow);
}

.footer-col a,
.footer-heading {
	word-break: keep-all;
	overflow-wrap: normal;
}

.footer-col a {
	display: inline-block;
	line-height: 1.7;
}

.footer-bottom {
	padding: 18px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-sticky-cta {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	width: auto;
	box-sizing: border-box;
	z-index: 90;
	padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
	background: rgba(255, 255, 255, 0.94);
	border-top: 1px solid var(--color-line);
	box-shadow: 0 -10px 24px rgba(8, 38, 64, 0.14);
}

.mobile-sticky-cta .button {
	width: min(100%, 420px);
	max-width: 100%;
	min-height: 52px;
	margin-inline: auto;
	box-sizing: border-box;
}

.pr-label,
.table-note,
.note {
	color: var(--color-muted);
	font-size: 13px;
}

.pr-label {
	display: inline-block;
	margin: 18px 0 0;
	padding: 8px 12px;
	background: #f5f8fb;
	border: 1px solid var(--color-line);
	border-radius: 8px;
}

.two-column {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
	align-items: center;
	gap: 34px;
}

.rounded-image {
	width: 100%;
	background: var(--color-white);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-soft);
}

.matrix-table th,
.matrix-table td {
	min-width: 190px;
	line-height: 1.55;
	color: var(--color-ink);
	background: var(--color-white);
}

.matrix-table thead th {
	position: sticky;
	top: 0;
	z-index: 2;
	height: 278px;
	padding: 16px 12px;
	color: var(--color-blue-dark);
	font-size: 17px;
	vertical-align: top;
	background: #fff;
	border-top: 4px solid var(--color-blue);
}

.matrix-table thead th:not(.matrix-label) {
	min-width: 205px;
}

.matrix-service-head {
	display: grid;
	grid-template-rows: 46px 172px minmax(46px, auto);
	justify-items: center;
	align-content: start;
	gap: 8px;
	min-height: 258px;
}

.compare-service-media {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 172px;
	padding: 6px;
	background: #f8fcff;
	border: 1px solid rgba(18, 97, 166, 0.12);
	border-radius: 12px;
	box-sizing: border-box;
	overflow: hidden;
}

.compare-service-media a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 100%;
	height: 100%;
}

.compare-service-media img {
	display: block;
	width: auto;
	max-width: min(224px, 100%);
	height: auto;
	max-height: 164px;
	object-fit: contain;
	background: var(--color-white);
	border-radius: 8px;
}

.compare-service-media-empty {
	background: transparent;
	border-color: transparent;
}

.matrix-service-name {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	max-width: 100%;
	margin: 0;
	color: var(--color-blue-dark);
	font-size: 16px;
	line-height: 1.35;
	text-align: center;
	text-decoration: none;
	text-underline-offset: 0;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.matrix-table thead .rank-badge {
	align-self: center;
	justify-self: center;
	width: 48px;
	height: 48px;
	min-width: 48px;
	min-height: 48px;
	font-size: 19px;
	background: linear-gradient(180deg, #ffd95c, #f1a51f);
	box-shadow: 0 8px 18px rgba(245, 130, 32, 0.2);
}

.matrix-table .matrix-label {
	position: sticky;
	left: 0;
	z-index: 3;
	width: 150px;
	min-width: 150px;
	color: var(--color-white);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.45;
	background: var(--color-blue-dark);
	border-color: rgba(255, 255, 255, 0.16);
	box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.16);
}

.matrix-table tbody td {
	height: 60px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.55;
	text-align: center;
	vertical-align: middle;
	border-color: rgba(18, 97, 166, 0.28);
	word-break: keep-all;
	overflow-wrap: anywhere;
}

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

.matrix-table tbody .button {
	min-height: 48px;
	width: 100%;
	max-width: 182px;
	min-width: 0;
	margin-inline: auto;
	padding-inline: 12px;
	white-space: nowrap;
}

.matrix-table tbody tr:last-child td {
	background: #fff8e7;
}

.ranking-list {
	display: grid;
	gap: 22px;
}

.ranking-empty-notice {
	max-width: 760px;
	margin: 0 auto;
	padding: 22px 24px;
	color: var(--color-blue-dark);
	line-height: 1.8;
	text-align: center;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(18, 97, 166, 0.14);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
}

.section-deep .ranking-empty-notice {
	color: var(--color-blue-dark);
}

.ranking-detail {
	position: relative;
	display: grid;
	grid-template-columns: minmax(300px, 1fr) minmax(320px, 0.95fr);
	gap: 24px;
	padding: 28px;
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
}

.ranking-detail.is-first {
	position: relative;
	border-width: 3px;
	background: linear-gradient(180deg, #fffdf8 0%, #fff 55%);
}

.ranking-detail-main {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
}

.service-affiliate-banner {
	display: flex;
	justify-content: center;
	margin: 0 0 18px;
}

.service-affiliate-banner a {
	display: inline-flex;
	max-width: 100%;
}

.service-affiliate-banner a img {
	display: block;
	width: auto;
	max-width: min(300px, 100%);
	height: auto;
	max-height: 250px;
	object-fit: contain;
	background: var(--color-white);
	border: 1px solid rgba(18, 97, 166, 0.1);
	border-radius: 12px;
	box-shadow: 0 12px 26px rgba(18, 97, 166, 0.1);
}

.ranking-card-banner {
	margin: 0;
}

.ranking-google-review {
	display: inline-grid;
	justify-items: start;
	width: fit-content;
	max-width: 100%;
	margin-top: 6px;
	padding: 5px 8px 4px;
	color: var(--color-blue-dark);
	font-size: 13.5px;
	font-weight: 800;
	line-height: 1.12;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(18, 97, 166, 0.08);
}

.ranking-google-review span {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	white-space: nowrap;
}

.ranking-google-review strong {
	color: var(--color-orange);
	font-size: 18px;
	letter-spacing: 0;
}

.ranking-google-review small {
	color: rgba(18, 97, 166, 0.72);
	font-size: 9px;
	font-weight: 800;
	line-height: 1.15;
	white-space: nowrap;
}

.ranking-score-line {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	margin: 0;
	padding: 14px 16px;
	color: var(--color-blue-dark);
	font-weight: 900;
	background: #fff8e8;
	border: 1px solid rgba(245, 130, 32, 0.18);
	border-radius: 10px;
}

.ranking-description {
	margin: 0;
	color: var(--color-muted);
	font-size: 15px;
	line-height: 1.8;
	overflow-wrap: anywhere;
}

.ranking-evaluation {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	padding: 12px;
	background: #f7fbff;
	border: 1px solid rgba(18, 97, 166, 0.14);
	border-radius: 12px;
}

.ranking-evaluation-item {
	display: grid;
	gap: 8px;
	justify-items: center;
	min-width: 0;
	padding: 10px 8px;
	text-align: center;
	background: var(--color-white);
	border: 1px solid rgba(18, 97, 166, 0.1);
	border-radius: 10px;
}

.ranking-evaluation-label {
	color: var(--color-blue-dark);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.35;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.ranking-evaluation-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	color: var(--color-orange);
	font-size: 28px;
	line-height: 1;
	background: #fff8e8;
	border: 1px solid rgba(245, 130, 32, 0.22);
	border-radius: 50%;
}

.ranking-detail.is-first::before {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 8px;
	content: "";
	background: linear-gradient(90deg, var(--color-orange), #ffd95c);
	border-radius: 6px 6px 0 0;
}

.ranking-detail .ranking-title {
	margin: 0 0 16px;
	padding: 16px;
	color: var(--color-white);
	background: linear-gradient(135deg, var(--color-blue-dark), var(--color-blue));
	border-radius: 12px;
	box-shadow: 0 12px 28px rgba(18, 97, 166, 0.14);
}

.ranking-detail .ranking-title p {
	color: rgba(255, 255, 255, 0.9);
}

.ranking-detail .ranking-title .ranking-google-review {
	color: var(--color-blue-dark);
}

.ranking-detail .ranking-title .ranking-google-review strong {
	color: var(--color-orange);
}

.ranking-detail .ranking-title .ranking-google-review small {
	color: rgba(18, 97, 166, 0.72);
}

.ranking-detail .ranking-title h3 {
	color: var(--color-white);
	font-size: clamp(24px, 2.6vw, 34px);
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.ranking-detail .rank-badge,
.ranking-detail.is-first .rank-badge {
	width: 54px;
	height: 54px;
	font-size: 22px;
	background: linear-gradient(180deg, #ffd95c, #f1a51f);
}

.spec-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.spec-list li {
	display: grid;
	gap: 4px;
	padding: 13px;
	background: #f7fbff;
	border: 1px solid var(--color-line);
	border-radius: 8px;
}

.spec-list strong {
	color: var(--color-blue-dark);
	font-size: 13px;
}

.spec-list span {
	color: var(--color-muted);
	font-size: 14px;
}

.ranking-detail-side {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	padding: 20px;
	background: linear-gradient(180deg, #fffdf8, #fffaf0);
	border: 1px solid rgba(245, 130, 32, 0.2);
	border-radius: 12px;
}

.ranking-side-section {
	width: 100%;
}

.ranking-detail-side h4 {
	width: 100%;
	margin-bottom: 0;
	padding: 0 0 8px;
	color: var(--color-blue-dark);
	font-size: 16px;
	text-align: left;
	border-bottom: 2px solid rgba(18, 97, 166, 0.12);
}

.ranking-detail-side .spec-list,
.ranking-detail-side .check-list,
.ranking-detail-side .campaign,
.ranking-detail-side p {
	width: 100%;
	margin-bottom: 0;
}

.ranking-detail-side .campaign {
	padding: 13px 14px;
	background: linear-gradient(180deg, #fff2ba, #fff8df);
	border: 1px solid rgba(246, 180, 0, 0.28);
}

.ranking-detail-side .button {
	width: 100%;
	margin-top: auto;
	min-height: 54px;
}

.first-service-heading {
	margin-bottom: 24px;
}

.first-service {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
	align-items: start;
	gap: 24px;
	width: 100%;
	max-width: 100%;
	padding: 28px;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(237, 248, 255, 0.9) 0%, rgba(255, 248, 234, 0.92) 100%),
		var(--color-white);
	border: 1px solid rgba(18, 97, 166, 0.1);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-soft);
}

.first-service::before {
	position: absolute;
	left: 28px;
	right: 28px;
	top: 0;
	height: 7px;
	content: "";
	background: linear-gradient(90deg, var(--color-orange), #ffd95c, var(--color-blue));
	border-radius: 0 0 999px 999px;
}

.first-service-copy,
.first-service-panel {
	min-width: 0;
	max-width: 100%;
}

.first-service-copy {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 28px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(18, 97, 166, 0.1);
	border-radius: 16px;
	box-shadow: 0 18px 34px rgba(18, 97, 166, 0.1);
}

.first-service-name {
	margin: 0 0 2px;
	color: var(--color-blue-dark);
	font-size: clamp(22px, 2.4vw, 30px);
	line-height: 1.3;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.first-service-main-banner {
	justify-content: center;
	margin: 0;
	padding: 12px;
	background: #f8fcff;
	border: 1px solid rgba(18, 97, 166, 0.1);
	border-radius: 14px;
}

.first-service-main-banner a img {
	width: min(420px, 100%);
	max-width: 100%;
	max-height: 320px;
}

.first-service-copy p {
	margin: 0;
	color: var(--color-muted);
	line-height: 1.85;
	overflow-wrap: anywhere;
}

.point-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
	gap: 12px;
	margin: 6px 0 0;
}

.point-grid div {
	display: grid;
	gap: 4px;
	padding: 16px;
	text-align: center;
	background: var(--color-sky);
	border-radius: 8px;
}

.point-grid strong {
	color: var(--color-blue-dark);
	font-size: 20px;
}

.point-grid span {
	color: var(--color-muted);
	font-size: 13px;
	font-weight: 800;
}

.first-service-panel {
	display: flex;
	flex-direction: column;
	align-self: start;
	gap: 12px;
	height: auto;
	padding: 24px;
	background: linear-gradient(180deg, #fff5cc 0%, #fffaf0 100%);
	border: 1px solid rgba(245, 130, 32, 0.28);
	border-radius: 16px;
	box-shadow: 0 18px 34px rgba(245, 130, 32, 0.13);
}

.first-service-evaluation {
	width: 100%;
	padding: 10px;
	background: rgba(255, 255, 255, 0.74);
	border-color: rgba(245, 130, 32, 0.18);
}

.first-service-evaluation .ranking-evaluation-item {
	background: #fffdf6;
	border-color: rgba(245, 130, 32, 0.16);
}

.first-service-panel-section {
	display: grid;
	gap: 8px;
	width: 100%;
	padding: 14px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(245, 130, 32, 0.16);
	border-radius: 12px;
}

.first-service-panel-section h3 {
	margin: 0;
	color: var(--color-blue-dark);
	font-size: 18px;
}

.first-service-panel-section p,
.first-service-panel .check-list {
	margin: 0;
}

.first-service-panel .button {
	width: 100%;
	margin-top: 4px;
	min-height: 58px;
	font-size: 17px;
}

.first-service-panel .campaign {
	width: 100%;
	margin: 0;
	padding: 14px 16px;
	color: #6b4600;
	font-weight: 800;
	line-height: 1.65;
	background: linear-gradient(180deg, #fff0a8 0%, #fff8d8 100%);
	border: 1px solid rgba(246, 180, 0, 0.32);
	border-radius: 12px;
}

.first-service-creative {
	margin-bottom: 18px;
	padding: 12px;
	text-align: center;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(245, 130, 32, 0.18);
	border-radius: 8px;
}

.first-service-creative a {
	display: inline-flex;
	max-width: 100%;
}

.first-service-creative img {
	display: block;
	max-width: 100%;
	height: auto;
	margin-inline: auto;
	border: 0;
}

.feature-card-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.feature-card {
	position: relative;
	overflow: hidden;
	padding: 22px;
}

.feature-card::before {
	display: block;
	width: 36px;
	height: 5px;
	margin-bottom: 16px;
	content: "";
	background: var(--color-orange);
	border-radius: 8px;
}

.prose {
	max-width: 860px;
}

.prose a {
	color: var(--color-blue);
	text-decoration: underline;
}

.page-hero {
	padding: 78px 0 46px;
	background:
		radial-gradient(circle at 18% 18%, rgba(255, 229, 158, 0.7), transparent 34%),
		linear-gradient(115deg, #eef8ff 0%, #fffdf8 54%, #fff1dc 100%);
}

.page-hero h1 {
	max-width: 760px;
	margin: 10px 0 0;
	color: var(--color-blue-dark);
	font-size: clamp(34px, 5vw, 52px);
	line-height: 1.16;
	letter-spacing: 0;
	word-break: normal;
	overflow-wrap: anywhere;
}

.page-section {
	background: #f7fbff;
}

.page-content {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	padding: clamp(24px, 4vw, 42px);
	overflow-wrap: anywhere;
	word-break: normal;
	background: var(--color-white);
	border: 1px solid rgba(18, 97, 166, 0.12);
	border-radius: 18px;
	box-shadow: 0 18px 42px rgba(7, 60, 115, 0.08);
}

.page-content * {
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.page-content > *:first-child {
	margin-top: 0;
}

.page-content h2 {
	margin: 34px 0 14px;
	color: var(--color-blue-dark);
	font-size: clamp(24px, 3vw, 32px);
	line-height: 1.42;
	letter-spacing: 0;
	word-break: normal;
	overflow-wrap: anywhere;
}

.page-content h3 {
	margin: 24px 0 10px;
	color: var(--color-ink);
	font-size: 20px;
	line-height: 1.45;
	letter-spacing: 0;
	word-break: normal;
	overflow-wrap: anywhere;
}

.page-content p,
.page-content li,
.page-content dd {
	color: var(--color-muted);
	line-height: 1.85;
	word-break: normal;
	overflow-wrap: anywhere;
}

.page-content a,
.page-content code,
.page-content strong {
	overflow-wrap: anywhere;
}

.page-content ul,
.page-content ol {
	padding-left: 1.35em;
}

.page-content li + li {
	margin-top: 6px;
}

.page-content details {
	padding: 18px 20px;
	background: #f8fcff;
	border: 1px solid rgba(18, 97, 166, 0.12);
	border-radius: 14px;
}

.page-content details + details {
	margin-top: 12px;
}

.page-content summary {
	color: var(--color-blue-dark);
	font-weight: 800;
	cursor: pointer;
}

.page-content dl {
	display: grid;
	grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
	gap: 0;
	border: 1px solid rgba(18, 97, 166, 0.12);
	border-radius: 14px;
	overflow: hidden;
}

.page-content dt,
.page-content dd {
	margin: 0;
	padding: 14px 16px;
	border-bottom: 1px solid rgba(18, 97, 166, 0.1);
}

.page-content dt {
	color: var(--color-blue-dark);
	font-weight: 800;
	background: #edf8ff;
}

.page-content dd:nth-last-child(-n+2),
.page-content dt:nth-last-child(-n+2) {
	border-bottom: 0;
}

.page-content table {
	width: 100%;
	border-collapse: collapse;
}

.page-content th,
.page-content td {
	padding: 14px 16px;
	border: 1px solid rgba(18, 97, 166, 0.12);
	vertical-align: top;
}

.page-content th {
	color: var(--color-blue-dark);
	text-align: left;
	background: #edf8ff;
}

.page-card-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 22px 0;
	padding: 0;
	list-style: none;
}

.page-card-list li {
	margin: 0;
	padding: 18px;
	background: #f8fcff;
	border: 1px solid rgba(18, 97, 166, 0.12);
	border-radius: 14px;
}

.page-link-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 18px;
}

.page-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
	padding-top: 24px;
	border-top: 1px solid rgba(18, 97, 166, 0.1);
}

.page-actions .button {
	min-width: 220px;
	text-decoration: none;
}

.article-service-pick-card .button-primary,
.article-service-pick-card .button-primary:visited,
.article-ranking-cta .button-primary,
.article-ranking-cta .button-primary:visited,
.article-content .page-actions .button-primary,
.article-content .page-actions .button-primary:visited,
.page-content .page-actions .button-primary,
.page-content .page-actions .button-primary:visited {
	color: #fff;
	text-decoration: none;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
	background: #b2d235;
	border-color: rgba(126, 158, 23, 0.32);
	box-shadow: 0 10px 22px rgba(126, 158, 23, 0.24);
}

.article-service-pick-card .button-primary:hover,
.article-service-pick-card .button-primary:focus,
.article-ranking-cta .button-primary:hover,
.article-ranking-cta .button-primary:focus,
.article-content .page-actions .button-primary:hover,
.article-content .page-actions .button-primary:focus,
.page-content .page-actions .button-primary:hover,
.page-content .page-actions .button-primary:focus {
	color: #fff;
	background: #9fbd2e;
	box-shadow: 0 14px 28px rgba(126, 158, 23, 0.3);
}

.article-service-pick-card .button-primary::after,
.article-ranking-cta .button-primary::after,
.article-content .page-actions .button-primary::after,
.page-content .page-actions .button-primary::after {
	color: #fff;
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.34);
}

.post-list {
	display: grid;
	gap: 16px;
}

.post-card {
	padding: 20px;
}

.post-date {
	color: var(--color-muted);
	font-size: 14px;
}

.article-hero {
	padding: 72px 0 42px;
	background:
		radial-gradient(circle at 16% 18%, rgba(255, 229, 158, 0.62), transparent 34%),
		linear-gradient(115deg, #eef8ff 0%, #fffdf8 56%, #fff1dc 100%);
}

.article-hero h1 {
	margin: 14px 0 16px;
	color: var(--color-blue-dark);
	font-size: clamp(34px, 4.7vw, 54px);
	line-height: 1.22;
	letter-spacing: 0;
	word-break: normal;
	overflow-wrap: anywhere;
}

.article-meta-row,
.article-tax,
.article-card-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	color: var(--color-muted);
	font-size: 14px;
}

.article-tax a,
.article-card-meta a {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	max-width: 100%;
	padding: 4px 10px;
	color: var(--color-blue-dark);
	font-weight: 800;
	text-decoration: none;
	background: #edf8ff;
	border-radius: 999px;
	white-space: normal;
	overflow-wrap: anywhere;
}

.article-tax .article-chip.is-category {
	color: #073c73;
	background: #dff2ff;
	border: 1px solid rgba(27, 121, 183, 0.2);
}

.article-tax .article-chip.is-tag {
	color: #315a78;
	background: #f4f8fb;
	border: 1px solid rgba(116, 145, 165, 0.22);
	font-weight: 700;
}

.article-hero-image {
	display: block;
	width: 100%;
	max-height: 430px;
	margin-top: 26px;
	object-fit: cover;
	border-radius: 22px;
	box-shadow: 0 18px 42px rgba(7, 60, 115, 0.12);
}

.article-service-picks {
	margin-top: 24px;
	padding: 22px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(18, 97, 166, 0.12);
	border-radius: 20px;
	box-shadow: 0 16px 36px rgba(7, 60, 115, 0.1);
}

.article-service-picks-head {
	display: grid;
	gap: 6px;
	margin-bottom: 16px;
}

.article-service-picks-title {
	margin: 0;
	color: var(--color-blue-dark);
	font-size: clamp(22px, 3vw, 30px);
	line-height: 1.35;
	letter-spacing: 0;
	font-weight: 900;
	overflow-wrap: anywhere;
}

.article-service-picks-head p:not(.article-block-label) {
	margin: 0;
	color: var(--color-muted);
	line-height: 1.75;
}

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

.article-service-pick-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	height: 100%;
	min-width: 0;
	padding: 16px;
	background: #fff;
	border: 1px solid rgba(18, 97, 166, 0.12);
	border-radius: 16px;
}

.article-service-pick-rank {
	justify-self: start;
	padding: 4px 9px;
	color: var(--color-blue-dark);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	background: #dff2ff;
	border: 1px solid rgba(27, 121, 183, 0.2);
	border-radius: 999px;
}

.article-service-pick-card h3 {
	margin: 0;
	color: var(--color-blue-dark);
	font-size: 18px;
	line-height: 1.45;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.article-service-banner {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 230px;
	padding: 0;
	background: transparent;
	border-radius: 12px;
}

.article-service-banner a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 100%;
	text-decoration: none;
}

.article-service-banner a img,
.article-service-banner > img:not([width="1"]) {
	display: block;
	width: 100%;
	max-width: 100%;
	max-height: 250px;
	height: auto;
	object-fit: contain;
	border-radius: 10px;
}

.article-service-pick-card .button {
	width: 100%;
	min-height: 44px;
	margin-top: auto;
	padding-inline: 12px;
	font-size: 14px;
	text-decoration: none;
}

.article-section,
.article-archive-section {
	background: #f7fbff;
}

.article-layout {
	display: grid;
	grid-template-columns: minmax(0, 900px);
	justify-content: center;
}

.article-content {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	padding: clamp(24px, 4vw, 46px);
	overflow-wrap: anywhere;
	word-break: normal;
	background: #fff;
	border: 1px solid rgba(18, 97, 166, 0.12);
	border-radius: 22px;
	box-shadow: 0 18px 42px rgba(7, 60, 115, 0.08);
}

.article-content h2 {
	margin: 36px 0 14px;
	color: var(--color-blue-dark);
	font-size: clamp(24px, 3vw, 32px);
	line-height: 1.42;
	letter-spacing: 0;
	word-break: normal;
	overflow-wrap: anywhere;
	scroll-margin-top: 110px;
}

.article-content h3 {
	margin: 26px 0 10px;
	color: var(--color-ink);
	font-size: 21px;
	line-height: 1.45;
	letter-spacing: 0;
	word-break: normal;
	overflow-wrap: anywhere;
}

.article-content p,
.article-content li {
	color: var(--color-muted);
	line-height: 1.9;
	word-break: normal;
	overflow-wrap: anywhere;
}

.article-content a {
	color: var(--color-blue);
	text-decoration: underline;
	overflow-wrap: anywhere;
}

.article-content ul,
.article-content ol {
	padding-left: 1.35em;
}

.article-content-image img {
	display: block;
	width: 100%;
	max-height: 360px;
	object-fit: cover;
	border-radius: 18px;
}

.article-content-image-inline {
	margin: 14px 0 28px;
}

.article-content-image-inline img {
	width: min(100%, 720px);
	margin-inline: auto;
}

.article-toc,
.article-survey,
.article-lab-comment,
.article-unique-card,
.article-note,
.article-ranking-cta,
.related-articles {
	margin: 30px 0;
	padding: 22px;
	background: #f8fcff;
	border: 1px solid rgba(18, 97, 166, 0.12);
	border-radius: 18px;
}

.article-toc {
	background: #fffaf0;
	border-color: rgba(255, 122, 0, 0.18);
}

.article-toc-title,
.article-block-label,
.article-ranking-cta-label {
	margin: 0 0 10px;
	color: var(--color-orange-dark);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.article-toc ol {
	display: grid;
	gap: 8px;
	margin: 0;
	padding-left: 1.35em;
}

.article-toc a {
	color: var(--color-blue-dark);
	font-weight: 800;
	text-decoration: none;
}

.article-lab-comment {
	background:
		linear-gradient(90deg, rgba(18, 97, 166, 0.08), transparent 38%),
		linear-gradient(180deg, #f1f9ff 0%, #fff 100%);
	border-color: rgba(18, 97, 166, 0.18);
	box-shadow: inset 5px 0 0 rgba(18, 97, 166, 0.28);
}

.article-survey {
	background:
		linear-gradient(90deg, rgba(178, 210, 53, 0.14), transparent 42%),
		linear-gradient(180deg, #f8fcff 0%, #fff 100%);
	border-color: rgba(178, 210, 53, 0.28);
	box-shadow: inset 5px 0 0 rgba(178, 210, 53, 0.55);
}

.article-survey-embed {
	max-width: 100%;
	margin-top: 14px;
	overflow-wrap: anywhere;
}

.article-survey-embed iframe,
.article-survey-embed form {
	max-width: 100%;
}

.article-survey-description {
	margin: 0 0 14px;
	color: var(--color-muted);
	line-height: 1.8;
}

.article-survey-question {
	margin: 16px 0 12px;
	color: var(--color-blue-dark);
	font-weight: 900;
	line-height: 1.7;
}

.article-survey-form {
	display: grid;
	gap: 16px;
	margin: 18px 0;
	padding: 18px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(18, 97, 166, 0.1);
	border-radius: 16px;
}

.article-survey-choice-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.article-survey-choice-list label,
.article-survey-rating-field label {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	padding: 10px 12px;
	color: var(--color-blue-dark);
	font-weight: 800;
	background: #fff;
	border: 1px solid rgba(18, 97, 166, 0.14);
	border-radius: 12px;
	cursor: pointer;
}

.article-survey-choice-list span {
	min-width: 0;
	overflow-wrap: anywhere;
}

.article-survey-rating-field {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.article-survey-rating-field legend {
	margin-bottom: 8px;
	color: var(--color-blue-dark);
	font-weight: 900;
}

.article-survey-rating-field > div {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 8px;
}

.article-survey-rating-field label {
	justify-content: center;
	padding: 9px 8px;
}

.article-survey-submit {
	width: min(100%, 280px);
}

.article-survey-message {
	min-height: 1.5em;
	margin: 0;
	color: var(--color-blue-dark);
	font-weight: 800;
}

.article-survey-form.is-answered {
	background: rgba(238, 248, 255, 0.72);
}

.article-survey-form.is-answered .article-survey-submit,
.article-survey-form.is-sending .article-survey-submit {
	opacity: 0.68;
}

.article-survey-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: min(100%, 320px);
	min-height: 44px;
	margin-top: 2px;
	padding: 10px 18px;
	color: var(--color-blue-dark);
	font-weight: 900;
	background: #fff;
	border: 1px solid rgba(18, 97, 166, 0.18);
	border-radius: 999px;
	box-shadow: 0 10px 22px rgba(7, 60, 115, 0.08);
	cursor: pointer;
}

.article-survey-toggle:hover,
.article-survey-toggle:focus {
	color: #fff;
	background: var(--color-blue-dark);
}

.article-survey-result-panel {
	margin-top: 14px;
	padding: 16px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(18, 97, 166, 0.1);
	border-radius: 16px;
}

.article-survey-results {
	margin-top: 0;
}

.article-survey-result-total {
	margin-bottom: 12px;
	color: var(--color-blue-dark);
	font-weight: 900;
}

.article-survey-bars {
	display: grid;
	gap: 12px;
}

.article-survey-bar-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 5px;
	color: var(--color-blue-dark);
	font-weight: 800;
}

.article-survey-bar-head span {
	min-width: 0;
	overflow-wrap: anywhere;
}

.article-survey-bar-head strong {
	flex: 0 0 auto;
	color: var(--color-orange-dark);
}

.article-survey-bar-track {
	height: 10px;
	overflow: hidden;
	background: rgba(18, 97, 166, 0.1);
	border-radius: 999px;
}

.article-survey-bar-track span {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, #b2d235, #ffae3d);
	border-radius: inherit;
}

.article-survey-rating {
	margin: 14px 0 0;
	color: var(--color-blue-dark);
	font-weight: 800;
}

.article-survey-rating strong {
	color: var(--color-orange-dark);
	font-size: 1.2em;
}

.article-survey-rating.is-empty,
.article-survey-note {
	color: var(--color-muted);
	font-size: 13px;
	line-height: 1.7;
}

.article-survey-note {
	margin: 14px 0 0;
}

.article-section-title {
	margin: 0 0 12px;
	color: var(--color-blue-dark);
	font-size: clamp(20px, 2.4vw, 26px);
	font-weight: 900;
	line-height: 1.4;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.article-point-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.article-point-tags li {
	margin: 0;
	padding: 8px 13px;
	color: var(--color-blue-dark);
	font-weight: 800;
	background: #fff;
	border: 1px solid rgba(18, 97, 166, 0.16);
	border-radius: 999px;
}

.article-unique-card {
	background: #fbfdff;
	border-color: rgba(18, 97, 166, 0.16);
}

.article-unique-card:has(.article-check-list) {
	background: linear-gradient(180deg, #f2fff8 0%, #fff 100%);
	border-color: rgba(54, 157, 103, 0.18);
}

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

.article-check-list li {
	position: relative;
	margin: 0;
	padding-left: 30px;
}

.article-check-list li::before {
	position: absolute;
	top: 0.2em;
	left: 0;
	width: 20px;
	height: 20px;
	content: "";
	background: #2f9b68;
	border-radius: 50%;
}

.article-check-list li::after {
	position: absolute;
	top: calc(0.2em + 5px);
	left: 6px;
	width: 8px;
	height: 5px;
	content: "";
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
	transform: rotate(-45deg);
}

.article-note {
	background: linear-gradient(180deg, #fffaf0 0%, #fff 100%);
	border-color: rgba(214, 144, 41, 0.22);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.article-ranking-cta {
	text-align: center;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.98)),
		linear-gradient(135deg, #e9f8ff, #fff2dc);
}

.article-ranking-cta .button {
	width: min(100%, 360px);
	text-decoration: none;
}

.article-archive-hero p {
	color: var(--color-muted);
	line-height: 1.8;
}

.article-category-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.article-category-links a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 8px 13px;
	color: var(--color-blue-dark);
	font-weight: 800;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(18, 97, 166, 0.12);
	border-radius: 999px;
}

.article-category-links a.is-current {
	color: #fff;
	background: var(--color-blue-dark);
	border-color: var(--color-blue-dark);
}

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

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

.article-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(18, 97, 166, 0.12);
	border-radius: 18px;
	box-shadow: 0 14px 32px rgba(7, 60, 115, 0.08);
}

.article-card-image {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #edf8ff;
}

.article-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.2s ease;
}

.article-card:hover .article-card-image img,
.article-card:focus-within .article-card-image img {
	transform: scale(1.03);
}

.article-card-body {
	display: grid;
	gap: 12px;
	padding: 18px;
}

.article-card-title {
	margin: 0;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.45;
	letter-spacing: 0;
}

.article-card-title a,
.article-card-link {
	color: var(--color-blue-dark);
	text-decoration: none;
}

.article-card p {
	margin: 0;
	color: var(--color-muted);
	line-height: 1.75;
}

.article-card-link {
	font-weight: 900;
}

.article-empty {
	max-width: 760px;
	margin: 0 auto;
	padding: 34px;
	text-align: center;
	background: #fff;
	border: 1px solid rgba(18, 97, 166, 0.12);
	border-radius: 20px;
	box-shadow: 0 14px 32px rgba(7, 60, 115, 0.08);
}

.category-ranking-cta {
	margin-top: 22px;
}

@media (max-width: 1100px) {
	.header-inner {
		gap: 12px;
	}

	.global-nav a {
		padding-inline: 7px;
		font-size: 13px;
	}

	.hero-home .hero-grid {
		width: min(calc(100% - 40px), 1120px);
		gap: 26px;
	}

	.hero-home .hero-actions {
		gap: 14px;
	}

	.hero-home .hero-actions .button {
		width: 220px;
	}

	.category-grid,
	.howto-grid,
	.feature-card-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

	.footer-grid {
		grid-template-columns: minmax(0, 1.05fr) repeat(3, minmax(112px, 0.72fr));
		column-gap: 24px;
	}

	.footer-brand {
		max-width: 340px;
	}
}

@media (max-width: 1024px) {
	.site-header,
	.site-main,
	.site-footer,
	.hero-home,
	.hero-ranking {
		width: 100%;
		max-width: 100%;
		overflow-x: hidden;
	}

	.container,
	.container.narrow,
	.header-inner,
	.global-nav,
	.global-nav ul,
	.hero-home .hero-grid,
	.hero-ranking .hero-grid,
	.hero-home .hero-copy,
	.hero-ranking .hero-copy,
	.hero-actions,
	.feature-chips {
		min-width: 0;
		max-width: 100%;
		box-sizing: border-box;
	}

	.hero-home .hero-grid,
	.hero-ranking .hero-grid {
		width: 100%;
		max-width: min(calc(100% - 32px), var(--container));
		margin-inline: auto;
	}

	.hero-home .hero-copy,
	.hero-ranking .hero-copy {
		overflow-wrap: anywhere;
	}

	.hero-home h1,
	.hero-ranking h1,
	.hero-home .hero-lead,
	.hero-ranking .hero-lead {
		max-width: 100%;
		min-width: 0;
	}

	.hero-actions,
	.hero-home .hero-actions {
		max-width: 100%;
	}

	.hero-home .hero-actions .button,
	.hero-ranking .hero-actions .button,
	.mobile-sticky-cta .button {
		max-width: 100%;
		min-width: 0;
		box-sizing: border-box;
	}

	.feature-chips {
		width: 100%;
	}

	.feature-chips span {
		min-width: 0;
		max-width: 100%;
	}

	.hero-pr-label {
		max-width: calc(100% - 32px);
	}

	.site-header .global-nav {
		display: none !important;
		visibility: hidden;
		pointer-events: none;
	}

	.site-header {
		overflow: visible;
	}

	.site-header .nav-toggle {
		display: inline-grid;
		margin-left: auto;
	}

	.site-header .header-cta {
		display: none;
	}

	.site-header .mobile-menu-panel {
		position: fixed;
		left: 16px;
		right: 16px;
		top: var(--mobile-menu-top, calc(78px + env(safe-area-inset-top)));
		z-index: 100001;
		display: block;
		visibility: hidden;
		opacity: 0;
		width: auto;
		max-width: calc(100% - 32px);
		height: auto;
		min-height: 0;
		max-height: calc(100dvh - 96px);
		padding: 14px;
		overflow-x: hidden;
		overflow-y: auto;
		pointer-events: none;
		background: #fff;
		border: 1px solid rgba(18, 97, 166, 0.12);
		border-radius: 16px;
		box-shadow: 0 18px 48px rgba(7, 60, 115, 0.18);
		transform: translateY(-6px);
		transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
	}

	body.is-mobile-menu-open .site-header .mobile-menu-panel,
	body.nav-open .site-header .mobile-menu-panel,
	.site-header .mobile-menu-panel[aria-hidden="false"] {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
		height: auto;
		min-height: 60px;
		pointer-events: auto !important;
		transform: translateY(0) !important;
	}

	.site-header .mobile-menu-panel ul {
		display: flex !important;
		flex-direction: column;
		gap: 0;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.site-header .mobile-menu-panel li {
		min-width: 0;
	}

	.site-header .mobile-menu-panel a:not(.button) {
		display: flex;
		align-items: center;
		min-height: 46px;
		padding: 11px 12px;
		color: var(--color-blue-dark);
		font-size: 14px;
		font-weight: 800;
		line-height: 1.35;
		overflow-wrap: anywhere;
		background: #fff;
		border-bottom: 1px solid rgba(18, 97, 166, 0.1);
		border-radius: 0;
	}

	.site-header .mobile-menu-panel li:first-child a:not(.button) {
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
	}

	.site-header .mobile-menu-panel li:last-child a:not(.button) {
		border-bottom: 0;
		border-bottom-right-radius: 10px;
		border-bottom-left-radius: 10px;
	}

	.site-header .mobile-menu-panel a:not(.button):hover,
	.site-header .mobile-menu-panel a:not(.button):focus {
		color: var(--color-blue-dark);
		background: var(--color-sky);
	}

	.site-header .mobile-menu-cta {
		width: 100%;
		margin-top: 12px;
	}
}

@media (max-width: 900px) {
	body.has-mobile-sticky-cta {
		padding-bottom: 76px;
	}

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

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

	.site-logo img {
		width: 168px;
	}

	.nav-toggle {
		display: inline-grid;
		margin-left: auto;
	}

	.global-nav {
		display: none !important;
		visibility: hidden;
		pointer-events: none;
	}

	.mobile-menu-panel {
		position: fixed;
		left: 16px;
		right: 16px;
		top: var(--mobile-menu-top, calc(78px + env(safe-area-inset-top)));
		z-index: 100001;
		display: block;
		visibility: hidden;
		opacity: 0;
		width: auto;
		max-width: calc(100% - 32px);
		height: auto;
		min-height: 0;
		max-height: calc(100dvh - 96px);
		padding: 14px;
		overflow-x: hidden;
		overflow-y: auto;
		pointer-events: none;
		background: var(--color-white);
		border: 1px solid var(--color-line);
		border-radius: var(--radius-card);
		box-shadow: var(--shadow-soft);
		transform: translateY(-6px);
		transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
	}

	body.is-mobile-menu-open .mobile-menu-panel,
	body.nav-open .mobile-menu-panel,
	.mobile-menu-panel[aria-hidden="false"] {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
		height: auto;
		min-height: 60px;
		pointer-events: auto !important;
		transform: translateY(0) !important;
	}

	.mobile-menu-panel ul {
		display: flex !important;
		flex-direction: column;
		gap: 0;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.mobile-menu-panel li {
		min-width: 0;
	}

	.mobile-menu-panel a:not(.button) {
		display: flex;
		align-items: center;
		min-height: 46px;
		padding: 11px 12px;
		color: var(--color-blue-dark);
		font-size: 14px;
		font-weight: 800;
		line-height: 1.35;
		overflow-wrap: anywhere;
		background: #fff;
		border-bottom: 1px solid rgba(18, 97, 166, 0.1);
		border-radius: 0;
	}

	.mobile-menu-panel li:first-child a:not(.button) {
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
	}

	.mobile-menu-panel li:last-child a:not(.button) {
		border-bottom: 0;
		border-bottom-right-radius: 10px;
		border-bottom-left-radius: 10px;
	}

	.mobile-menu-panel a:not(.button):hover,
	.mobile-menu-panel a:not(.button):focus {
		color: var(--color-blue-dark);
		background: var(--color-sky);
	}

	.mobile-menu-cta {
		width: 100%;
		margin-top: 12px;
	}

	.header-cta {
		display: none;
	}

	.mobile-sticky-cta {
		display: block;
		max-width: 100%;
		overflow: hidden;
	}

	.mobile-sticky-cta .button {
		width: 100%;
		max-width: 420px;
		min-height: 54px;
		margin-inline: auto;
		font-size: 16px;
		line-height: 1.32;
	}

	.hero,
	.section {
		padding-block: 48px;
	}

	.hero-home {
		min-height: auto;
		padding: 22px 0 30px;
		background: linear-gradient(180deg, #edf8ff 0%, #fff8ea 100%);
	}

	.hero-ranking {
		min-height: auto;
		padding: 32px 0 34px;
		background:
			linear-gradient(180deg, rgba(237, 248, 255, 0.96) 0%, rgba(255, 248, 234, 0.9) 58%, rgba(255, 248, 234, 0.72) 100%),
			var(--ranking-hero-sp, var(--ranking-hero-pc, url("../images/hero/hero-bag-ranking-sp.png"))) center bottom / cover no-repeat,
			linear-gradient(180deg, #edf8ff 0%, #fff8ea 100%);
	}

	.hero-pr-label {
		right: 18px;
		top: 8px;
		max-width: calc(100% - 36px);
		min-height: 24px;
		padding: 4px 8px;
		font-size: 11px;
		white-space: normal;
		overflow-wrap: anywhere;
		background: rgba(255, 255, 255, 0.82);
	}

	.hero-grid,
	.two-column,
	.ranking-detail,
	.first-service,
	.bottom-cta-inner,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.hero-home .hero-grid,
	.hero-ranking .hero-grid {
		width: 100%;
		max-width: min(calc(100% - 32px), var(--container));
		display: grid;
		grid-template-columns: 1fr;
		align-items: flex-start;
		gap: 12px;
		min-height: auto;
		margin-inline: auto;
	}

	.hero-home .hero-copy,
	.hero-ranking .hero-copy {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		margin-inline: auto;
		padding: 20px;
		overflow: hidden;
		background: rgba(255, 255, 255, 0.92);
		border: 1px solid rgba(255, 255, 255, 0.78);
		border-radius: 18px;
		box-shadow: 0 16px 36px rgba(18, 97, 166, 0.14);
		backdrop-filter: blur(8px);
	}

	.hero-home h1,
	.hero-ranking h1 {
		font-size: clamp(34px, 8vw, 42px);
		line-height: 1.18;
		word-break: normal;
		overflow-wrap: anywhere;
	}

	.hero-home .hero-lead,
	.hero-ranking .hero-lead {
		margin-bottom: 0;
		font-size: 16px;
		line-height: 1.65;
		word-break: normal;
		overflow-wrap: anywhere;
	}

	.hero-actions,
	.hero-home .hero-actions {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		gap: 12px;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		margin: 18px 0 14px;
	}

	.hero-home .hero-actions .button,
	.hero-ranking .hero-actions .button {
		width: 100%;
		min-width: 0;
		min-height: 54px;
	}

	.feature-chips {
		width: 100%;
		max-width: 100%;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.feature-chips span {
		width: 100%;
		min-width: 0;
		max-width: 100%;
		min-height: 48px;
		padding: 8px 10px;
		font-size: 14px;
		overflow-wrap: anywhere;
	}

	.feature-chips span:last-child {
		grid-column: 1 / -1;
	}

	.feature-chips img {
		width: 30px;
		height: 30px;
	}

	.hero-points {
		display: grid;
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.hero-points span {
		min-height: 46px;
		padding: 8px 12px;
	}

	.hero-home .hero-visual,
	.hero-home .hero-media,
	.hero-home .hero-sp-visual,
	.hero-home picture.hero-sp-visual,
	.hero-home picture.hero-visual,
	.hero-home picture.hero-media,
	.hero-home img[src*="hero-top-sp"],
	.hero-ranking .hero-sp-visual,
	.hero-ranking picture.hero-sp-visual,
	.hero-ranking img[src*="hero-bag-ranking-sp"] {
		display: none !important;
		height: 0;
		min-height: 0;
		margin: 0;
		padding: 0;
		overflow: hidden;
	}

	.hero-home picture {
		display: none !important;
	}

	.top-card-grid,
	.category-grid,
	.howto-grid,
	.guide-grid,
	.feature-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bottom-cta-inner {
		min-height: auto;
		padding: 0;
	}

	.bottom-cta-inner img {
		display: none;
	}

	.bottom-cta {
		margin-bottom: 12px;
		padding: 34px 0;
		background-position: center bottom;
	}

	.footer-grid {
		gap: 24px;
		padding: 40px 0;
	}

	.footer-brand {
		max-width: 560px;
	}

	.table-scroll,
	.matrix-scroll {
		max-width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.matrix-table {
		min-width: 960px;
		table-layout: fixed;
	}

	.matrix-table thead th,
	.matrix-table .matrix-label {
		position: static;
	}

	.matrix-table th,
	.matrix-table td {
		min-width: 164px;
	}

	.matrix-table .matrix-label {
		width: 126px;
		min-width: 126px;
		box-shadow: none;
	}

	.matrix-table tbody .button {
		max-width: 158px;
		min-width: 0;
		white-space: nowrap;
	}

	.matrix-table thead th {
		height: 244px;
	}

	.matrix-service-head {
		grid-template-rows: 44px 144px minmax(44px, auto);
		min-height: 228px;
	}

	.compare-service-media {
		min-height: 144px;
	}

	.compare-service-media img {
		max-width: min(196px, 100%);
		max-height: 138px;
	}

	.home-service-media {
		max-width: 170px;
	}

	.home-service-media-table {
		min-height: 108px;
	}

	.home-service-media img {
		max-width: min(158px, 100%);
		max-height: 102px;
	}

	.top-card-banner {
		min-height: 196px;
	}

	.service-affiliate-banner.top-card-banner a img {
		max-height: 210px;
	}

	.ranking-detail,
	.ranking-detail.is-first {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 22px;
		overflow: hidden;
	}

	.ranking-detail.is-first .ranking-title {
		margin: 0 0 16px;
	}

	.ranking-title {
		flex-wrap: wrap;
		align-items: flex-start;
	}

	.service-logo {
		width: 74px;
		max-height: 38px;
		padding: 5px;
	}

	.ranking-detail-main,
	.ranking-detail-side {
		width: 100%;
		min-width: 0;
	}

	.ranking-detail-side {
		position: static;
		margin: 0;
	}

	.ranking-detail-side .button {
		width: 100%;
	}

	.first-service-main-banner {
		justify-content: center;
	}

	.first-service {
		gap: 16px;
		padding: 22px;
	}

	.first-service::before {
		left: 22px;
		right: 22px;
	}

	.first-service-copy {
		padding: 22px;
	}

	.first-service-name {
		font-size: clamp(21px, 5vw, 26px);
	}

	.first-service .point-grid {
		grid-template-columns: 1fr;
		gap: 10px;
		margin: 18px 0 0;
	}

	.first-service-panel {
		padding: 18px;
	}

	.first-service-panel .button {
		width: 100%;
	}

}

@media (max-width: 767px) {
	.container,
	.container.narrow,
	.header-inner,
	.hero-home .hero-grid,
	.hero-ranking .hero-grid {
		width: 100%;
		max-width: calc(100% - 32px);
	}

	.hero-home .hero-copy,
	.hero-ranking .hero-copy {
		width: 100%;
		max-width: 100%;
	}

	.hero-home h1,
	.hero-ranking h1 {
		max-width: 100%;
		word-break: normal;
		overflow-wrap: anywhere;
	}

	.hero-home .hero-lead,
	.hero-ranking .hero-lead {
		max-width: 100%;
		word-break: normal;
		overflow-wrap: anywhere;
	}

	.hero-actions,
	.hero-home .hero-actions {
		width: 100%;
		grid-template-columns: minmax(0, 1fr);
	}

	.hero-actions .button,
	.hero-home .hero-actions .button,
	.hero-ranking .hero-actions .button {
		width: 100%;
		max-width: 100%;
		white-space: normal;
	}

	.feature-chips {
		grid-template-columns: 1fr;
	}

	.feature-chips span,
	.hero-points span {
		width: 100%;
		justify-content: flex-start;
	}

	.feature-chips span:last-child {
		grid-column: auto;
	}

	.hero-pr-label {
		position: relative;
		inset: auto;
		width: fit-content;
		max-width: calc(100% - 32px);
		margin: 0 16px 8px auto;
	}
}

@media (max-width: 620px) {
	h1 {
		font-size: 34px;
	}

	h2 {
		font-size: 26px;
	}

	.section-heading {
		text-align: left;
	}

	.category-grid,
	.howto-grid,
	.guide-grid,
	.top-card-grid,
	.feature-card-grid,
	.spec-list,
	.point-grid {
		grid-template-columns: 1fr;
	}

	.category-card {
		grid-template-columns: 86px minmax(0, 1fr);
		align-items: center;
		min-height: 116px;
	}

	.category-card img {
		grid-row: span 2;
	}

	.category-card span {
		align-self: start;
	}

	.hero-actions {
		display: grid;
	}

	.hero-home .hero-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.hero-home .hero-actions .button {
		width: 100%;
	}

	.button {
		width: 100%;
		min-height: 52px;
		padding: 12px 18px;
		font-size: 15px;
	}

	.page-hero {
		padding: 52px 0 30px;
	}

	.page-hero h1 {
		font-size: clamp(30px, 8vw, 38px);
		line-height: 1.28;
	}

	.page-content {
		width: 100%;
		max-width: 100%;
		padding: 22px 16px;
		border-radius: 16px;
	}

	.page-content h2 {
		font-size: 23px;
		line-height: 1.45;
	}

	.page-content h3 {
		font-size: 18px;
		line-height: 1.5;
	}

	.page-content dl,
	.page-card-list,
	.page-link-list {
		grid-template-columns: 1fr;
	}

	.page-content dd:nth-last-child(-n+2),
	.page-content dt:nth-last-child(-n+2) {
		border-bottom: 1px solid rgba(18, 97, 166, 0.1);
	}

	.page-content dd:last-child {
		border-bottom: 0;
	}

	.page-content th,
	.page-content td {
		padding: 12px;
	}

	.page-actions .button {
		min-width: 0;
		width: 100%;
	}

	.button-primary::after {
		width: 20px;
		height: 20px;
	}

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

	.feature-chips span {
		min-height: 48px;
		padding: 8px 10px;
		font-size: 14px;
	}

	.feature-chips span:last-child {
		grid-column: 1 / -1;
	}

	.feature-chips img {
		width: 32px;
		height: 32px;
	}

	.hero-home,
	.hero-ranking {
		min-height: auto;
		padding: 20px 0 28px;
	}

	.hero-home {
		padding: 18px 0 24px;
	}

	.hero-home .hero-copy,
	.hero-ranking .hero-copy {
		padding: 18px 16px;
	}

	.hero-home .hero-visual,
	.hero-home .hero-media,
	.hero-home .hero-sp-visual,
	.hero-home picture.hero-sp-visual,
	.hero-home picture.hero-visual,
	.hero-home picture.hero-media,
	.hero-home img[src*="hero-top-sp"],
	.hero-ranking .hero-sp-visual,
	.hero-ranking picture.hero-sp-visual,
	.hero-ranking img[src*="hero-bag-ranking-sp"] {
		display: none !important;
		height: 0;
		min-height: 0;
		margin: 0;
		padding: 0;
	}

	.bottom-cta {
		padding: 28px 0 32px;
	}

	.bottom-cta-card h2,
	.bottom-cta-inner > div h2 {
		font-size: clamp(28px, 8vw, 34px);
		line-height: 1.22;
		word-break: keep-all;
		overflow-wrap: normal;
	}

	.bottom-cta-card,
	.bottom-cta-inner > div {
		padding: 24px 18px 26px;
	}

	.compare-table,
	.matrix-table {
		min-width: 1040px;
	}

	.matrix-table {
		min-width: 920px;
	}

	.compare-table th,
	.compare-table td,
	.matrix-table th,
	.matrix-table td {
		padding: 12px;
	}

	.matrix-table th,
	.matrix-table td {
		min-width: 150px;
		font-size: 14px;
	}

	.matrix-table .matrix-label {
		width: 108px;
		min-width: 108px;
	}

	.matrix-service-head {
		grid-template-rows: 42px 138px minmax(44px, auto);
		gap: 7px;
		min-height: 222px;
	}

	.compare-service-media {
		min-height: 140px;
		padding: 6px;
	}

	.compare-service-media img {
		max-width: min(184px, 100%);
		max-height: 132px;
	}

	.matrix-service-name {
		min-height: 46px;
		font-size: 14px;
		line-height: 1.35;
	}

	.matrix-table thead th {
		height: 238px;
		padding: 12px;
	}

	.matrix-table tbody .button {
		max-width: 148px;
		min-height: 46px;
		padding-inline: 10px;
		font-size: 13px;
	}

	.home-service-media {
		max-width: 160px;
		padding: 6px;
	}

	.home-service-media-table {
		min-height: 102px;
	}

	.home-service-media img {
		max-width: min(148px, 100%);
		max-height: 96px;
	}

	.ranking-card {
		padding: 20px;
	}

	.top-card-banner {
		min-height: 186px;
		margin-bottom: 14px;
	}

	.service-affiliate-banner.top-card-banner a img {
		max-width: min(300px, 100%);
		max-height: 198px;
	}

	.ranking-detail,
	.ranking-detail.is-first {
		padding: 18px;
	}

	.ranking-detail.is-first .ranking-title {
		padding: 14px;
	}

	.ranking-detail.is-first .ranking-title h3,
	.ranking-title h3 {
		font-size: 23px;
		line-height: 1.25;
	}

	.service-logo {
		width: 68px;
		max-height: 36px;
	}

	.ranking-detail-side {
		padding: 16px;
	}

	.first-service {
		gap: 14px;
		padding: 18px;
		border-width: 1px;
		border-radius: 14px;
	}

	.first-service::before {
		left: 18px;
		right: 18px;
		height: 5px;
	}

	.first-service-copy {
		padding: 18px;
		border-radius: 14px;
	}

	.first-service-name {
		margin-bottom: 12px;
		font-size: 21px;
	}

	.first-service-copy > p,
	.first-service-panel p {
		font-size: 15px;
		line-height: 1.75;
	}

	.first-service-panel {
		padding: 16px;
	}

	.first-service-panel h3 {
		font-size: 18px;
	}

	.service-affiliate-banner {
		margin-bottom: 14px;
	}

	.service-affiliate-banner a img,
	.first-service-main-banner a img {
		max-width: min(300px, 100%);
		max-height: 250px;
	}

	.bottom-cta-chips {
		display: grid;
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.bottom-cta-chips span {
		justify-content: center;
	}

	.bag-flow-section {
		display: none;
	}

	.ranking-flow-section {
		display: none;
	}
}

@media (max-width: 430px) {
	.container,
	.container.narrow,
	.hero-home .hero-grid,
	.hero-ranking .hero-grid {
		width: 100%;
		max-width: calc(100% - 32px);
	}

	.hero-home,
	.hero-ranking {
		padding-inline: 0;
	}

	.hero-ranking {
		padding-top: 34px;
	}

	.hero-pr-label {
		right: auto;
		max-width: calc(100% - 32px);
		margin-right: 16px;
	}

	.hero-home .hero-copy,
	.hero-ranking .hero-copy {
		padding: 18px 14px;
		border-radius: 16px;
	}

	.hero-home h1,
	.hero-ranking h1 {
		font-size: clamp(30px, 8.5vw, 36px);
		line-height: 1.2;
	}

	.hero-home .hero-lead,
	.hero-ranking .hero-lead {
		font-size: 15px;
		line-height: 1.7;
	}

	.button {
		gap: 8px;
		padding-inline: 14px;
	}

	.button-primary::after {
		width: 19px;
		height: 19px;
		font-size: 13px;
	}

	.feature-chips {
		grid-template-columns: 1fr;
	}

	.feature-chips span:last-child {
		grid-column: auto;
	}

	.mobile-sticky-cta {
		padding-inline: 10px;
	}
}

@media (max-width: 390px) {
	.container,
	.container.narrow,
	.hero-home .hero-grid,
	.hero-ranking .hero-grid {
		max-width: calc(100% - 24px);
	}

	.hero-pr-label {
		right: auto;
		max-width: calc(100% - 24px);
		margin-right: 12px;
	}

	.hero-home .hero-copy,
	.hero-ranking .hero-copy {
		padding: 16px 12px;
	}

	.hero-home h1,
	.hero-ranking h1 {
		font-size: clamp(29px, 8.7vw, 34px);
	}

	.hero-actions,
	.hero-home .hero-actions {
		gap: 10px;
	}

}

@media (max-width: 960px) {
	.article-grid,
	.article-grid.compact {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.article-hero {
		padding: 48px 0 30px;
	}

	.article-hero h1 {
		font-size: clamp(30px, 8vw, 38px);
		line-height: 1.28;
	}

	.article-meta-row,
	.article-tax,
	.article-card-meta {
		font-size: 13px;
	}

	.article-hero-image {
		max-height: 260px;
		margin-top: 20px;
		border-radius: 16px;
	}

	.article-service-picks {
		margin-top: 18px;
		padding: 18px 14px;
		border-radius: 16px;
	}

	.article-service-picks-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.article-service-pick-card {
		padding: 14px;
	}

	.article-service-banner {
		min-height: 210px;
		padding: 0;
	}

	.article-service-banner a img,
	.article-service-banner > img:not([width="1"]) {
		max-height: 240px;
	}

	.article-service-pick-card .button {
		font-size: 15px;
	}

	.article-content {
		padding: 22px 16px;
		border-radius: 16px;
	}

	.article-content-image {
		margin-inline: 0;
	}

	.article-content-image-inline {
		margin: 12px 0 24px;
	}

	.article-content-image img {
		max-height: 230px;
		border-radius: 14px;
	}

	.article-toc,
	.article-survey,
	.article-lab-comment,
	.article-unique-card,
	.article-note,
	.article-ranking-cta,
	.related-articles {
		margin: 22px 0;
		padding: 18px 16px;
		border-radius: 16px;
	}

	.article-point-tags {
		display: grid;
		grid-template-columns: 1fr;
	}

	.article-ranking-cta {
		text-align: left;
	}

	.article-ranking-cta .button,
	.category-ranking-cta .button {
		width: 100%;
	}

	.article-survey-form {
		padding: 14px;
	}

	.article-survey-choice-list {
		grid-template-columns: 1fr;
	}

	.article-survey-rating-field > div {
		gap: 6px;
	}

	.article-survey-rating-field label {
		padding: 8px 4px;
	}

	.article-survey-submit {
		width: 100%;
	}

	.article-survey-toggle {
		width: 100%;
	}

	.article-survey-result-panel {
		padding: 14px;
	}

	.article-category-links {
		display: flex;
		flex-wrap: nowrap;
		gap: 8px;
		max-width: 100%;
		margin-top: 16px;
		padding: 0 2px 8px;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x proximity;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.article-category-links::-webkit-scrollbar {
		display: none;
	}

	.article-category-links a {
		flex: 0 0 auto;
		width: auto;
		min-height: 34px;
		padding: 7px 12px;
		font-size: 12px;
		line-height: 1.25;
		white-space: nowrap;
		scroll-snap-align: start;
	}

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

	.article-card {
		border-radius: 14px;
	}

	.article-card-image {
		aspect-ratio: 4 / 3;
	}

	.article-card-body {
		gap: 8px;
		padding: 10px;
	}

	.article-card-meta {
		gap: 5px 6px;
		font-size: 10.5px;
		line-height: 1.35;
	}

	.article-card-meta a {
		min-height: 22px;
		padding: 2px 7px;
		font-size: 10.5px;
		line-height: 1.2;
	}

	.article-card-meta time {
		font-size: 10.5px;
	}

	.article-card-title {
		display: -webkit-box;
		overflow: hidden;
		font-size: 13px;
		line-height: 1.45;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
	}

	.article-card p,
	.article-card-link {
		display: none;
	}

	.article-empty {
		padding: 24px 16px;
	}
}

.ranking-title h3,
.ranking-detail .ranking-title h3,
.first-service-name,
.matrix-service-name,
.home-service-cell strong {
	min-width: 0;
	max-width: 100%;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

@media (max-width: 767px) {
	.ranking-title,
	.ranking-detail.is-first .ranking-title {
		display: flex;
		align-items: flex-start;
		flex-wrap: nowrap;
		gap: 10px;
		width: 100%;
		min-width: 0;
	}

	.ranking-title > div,
	.ranking-head > div {
		min-width: 0;
	}

	.ranking-detail .rank-badge,
	.ranking-detail.is-first .rank-badge {
		width: 46px;
		height: 46px;
		min-width: 46px;
		min-height: 46px;
		font-size: 19px;
	}

	.ranking-detail.is-first .ranking-title h3,
	.ranking-title h3 {
		font-size: clamp(20px, 5.4vw, 23px);
		line-height: 1.3;
	}

	.ranking-google-review {
		max-width: 100%;
		padding: 5px 7px 4px;
		font-size: 12.5px;
	}

	.ranking-google-review strong {
		font-size: 17px;
	}

	.ranking-google-review small {
		font-size: 8.5px;
	}

	.ranking-evaluation {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 5px;
		padding: 8px;
	}

	.ranking-evaluation-item {
		gap: 6px;
		padding: 8px 4px;
		border-radius: 9px;
	}

	.ranking-evaluation-label {
		font-size: 10.5px;
		line-height: 1.35;
	}

	.ranking-evaluation-mark {
		width: 34px;
		height: 34px;
		font-size: 23px;
	}

	.matrix-service-name {
		font-size: 14px;
		line-height: 1.35;
	}

	.home-service-cell strong {
		font-size: 14px;
		line-height: 1.35;
	}

	.first-service-name {
		font-size: clamp(21px, 5.6vw, 26px);
		line-height: 1.28;
	}
}

@media (max-width: 360px) {
	.ranking-evaluation {
		gap: 4px;
		padding: 6px;
	}

	.ranking-evaluation-item {
		padding: 7px 3px;
	}

	.ranking-evaluation-label {
		font-size: 10px;
	}

	.ranking-evaluation-mark {
		width: 31px;
		height: 31px;
		font-size: 21px;
	}
}

.ranking-sp-fv-panel {
	display: none;
}

.matrix-table .matrix-label {
	width: 150px;
	min-width: 150px;
	padding-inline: 12px;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.45;
}

.matrix-table thead .matrix-label {
	font-size: 13px;
	letter-spacing: 0;
}

.article-pagination,
.navigation.pagination {
	margin: 34px 0 0;
}

.article-pagination ul.page-numbers,
.navigation.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.article-pagination .page-numbers li {
	margin: 0;
	padding: 0;
}

.article-pagination a.page-numbers,
.article-pagination span.page-numbers,
.navigation.pagination a.page-numbers,
.navigation.pagination span.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 8px 13px;
	color: var(--color-blue-dark);
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	background: #fff;
	border: 1px solid rgba(18, 97, 166, 0.16);
	border-radius: 999px;
	box-shadow: 0 10px 22px rgba(7, 60, 115, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.article-pagination a.page-numbers:hover,
.navigation.pagination a.page-numbers:hover {
	color: var(--color-blue-dark);
	background: #eef7ff;
	box-shadow: 0 14px 28px rgba(7, 60, 115, 0.1);
	transform: translateY(-1px);
}

.article-pagination span.page-numbers.current,
.navigation.pagination span.page-numbers.current {
	color: #fff;
	background: var(--color-blue-dark);
	border-color: var(--color-blue-dark);
	box-shadow: 0 14px 28px rgba(7, 60, 115, 0.16);
}

.article-pagination .prev,
.article-pagination .next,
.navigation.pagination .prev,
.navigation.pagination .next {
	min-width: 70px;
	padding-inline: 16px;
}

@media (max-width: 767px) {
	.hero-ranking {
		padding: 26px 0 28px;
		background:
			radial-gradient(circle at 83% 60%, rgba(255, 255, 255, 0.84) 0 18%, rgba(255, 255, 255, 0) 43%),
			radial-gradient(circle at 92% 78%, rgba(255, 222, 178, 0.45) 0 20%, rgba(255, 222, 178, 0) 48%),
			linear-gradient(180deg, #fbfdff 0%, #fff8ed 100%);
	}

	.hero-ranking .hero-copy {
		padding: 0;
		text-align: left;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		backdrop-filter: none;
	}

	.hero-ranking .hero-copy > .eyebrow,
	.hero-ranking .hero-copy > h1,
	.hero-ranking .hero-copy > .hero-lead,
	.hero-ranking .hero-copy > .hero-actions,
	.hero-ranking .hero-copy > .hero-points {
		display: none;
	}

	.ranking-sp-fv-panel {
		position: relative;
		display: block;
		width: 100%;
		min-width: 0;
		padding: 18px 0 0;
		overflow: visible;
	}

	.ranking-sp-label {
		display: none;
	}

	.ranking-sp-heading {
		position: relative;
		z-index: 2;
		margin: 0 0 12px;
		color: var(--color-blue-dark);
		font-size: clamp(21px, 6vw, 28px);
		font-weight: 900;
		line-height: 1.32;
		text-align: center;
		letter-spacing: 0;
		word-break: keep-all;
		overflow-wrap: anywhere;
	}

	.ranking-sp-visual {
		position: relative;
		z-index: 1;
		left: 50%;
		width: 100vw;
		max-width: none;
		margin: 0 0 10px;
		overflow: hidden;
		border-radius: 0;
		box-shadow: 0 14px 32px rgba(7, 60, 115, 0.1);
		transform: translateX(-50%);
	}

	.ranking-sp-visual img {
		display: block;
		width: 100%;
		height: auto;
		object-fit: contain;
	}

	.ranking-sp-picks {
		position: relative;
		z-index: 2;
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 6px;
		width: 100%;
		max-width: 430px;
		margin: 0 auto 12px;
	}

	.ranking-sp-pick-card {
		display: flex;
		flex-direction: column;
		gap: 5px;
		min-width: 0;
		min-height: 162px;
		padding: 6px 4px;
		text-align: center;
		background: var(--color-white);
		border: 1px solid rgba(18, 97, 166, 0.12);
		border-radius: 12px;
		box-shadow: 0 12px 26px rgba(7, 60, 115, 0.12);
	}

	.ranking-sp-pick-rank {
		align-self: center;
		display: inline-grid;
		place-items: center;
		width: 22px;
		height: 22px;
		padding: 0;
		color: var(--color-blue-dark);
		font-size: 11.5px;
		font-weight: 900;
		line-height: 1.1;
		background: #e9f4ff;
		border-radius: 999px;
	}

	.ranking-sp-pick-name {
		display: -webkit-box;
		min-height: 30px;
		color: var(--color-blue-dark);
		font-size: 11px;
		font-weight: 900;
		line-height: 1.35;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		word-break: keep-all;
		overflow-wrap: anywhere;
	}

	.ranking-sp-pick-banner {
		display: flex;
		align-items: center;
		justify-content: center;
		flex: 1;
		min-height: 96px;
		margin: 0;
		padding: 2px;
		background: #f8fcff;
		border-radius: 9px;
		overflow: hidden;
	}

	.ranking-sp-pick-banner a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		max-width: 100%;
	}

	.ranking-sp-pick-banner img:not([width="1"]):not([height="1"]) {
		display: block;
		width: auto;
		max-width: 100%;
		height: auto;
		max-height: 92px;
		object-fit: contain;
		border: 0;
		border-radius: 7px;
		box-shadow: none;
	}

	.ranking-sp-pick-banner img[width="1"],
	.ranking-sp-pick-banner img[height="1"] {
		position: absolute;
		width: 1px;
		height: 1px;
		opacity: 0;
		pointer-events: none;
	}

	.ranking-sp-ranking-button {
		position: relative;
		z-index: 2;
		width: 100%;
		min-height: 58px;
		margin: 0;
		border-radius: 16px;
	}

	.matrix-table {
		--matrix-label-column-width: 90px;
		--matrix-service-column-width: 206px;
		width: max-content;
		min-width: max-content;
		table-layout: fixed;
	}

	.matrix-table thead th:not(.matrix-label),
	.matrix-table tbody td {
		width: var(--matrix-service-column-width);
		min-width: var(--matrix-service-column-width);
		max-width: var(--matrix-service-column-width);
	}

	.matrix-table .matrix-label {
		width: var(--matrix-label-column-width);
		min-width: var(--matrix-label-column-width);
		max-width: var(--matrix-label-column-width);
		padding: 10px 8px;
		font-size: 12px;
		font-weight: 800;
		line-height: 1.4;
	}

	.matrix-table thead th {
		height: 264px;
		padding: 10px;
	}

	.matrix-service-head {
		grid-template-rows: 34px 166px minmax(42px, auto);
		gap: 6px;
		min-height: 254px;
	}

	.matrix-table thead .rank-badge {
		width: 32px;
		height: 32px;
		min-width: 32px;
		min-height: 32px;
		font-size: 13px;
		box-shadow: 0 5px 12px rgba(245, 130, 32, 0.16);
	}

	.compare-service-media {
		min-height: 166px;
		padding: 4px;
	}

	.compare-service-media img {
		max-width: min(198px, 100%);
		max-height: 158px;
	}

	.matrix-service-name {
		min-height: 42px;
		font-size: 13.5px;
		line-height: 1.32;
	}

	.matrix-table tbody td {
		height: 56px;
		padding: 10px;
		font-size: 13.5px;
	}

	.matrix-table tbody .button {
		max-width: 180px;
		min-height: 46px;
	}

	.article-pagination,
	.navigation.pagination {
		margin-top: 28px;
	}

	.article-pagination ul.page-numbers,
	.navigation.pagination .nav-links {
		gap: 7px;
	}

	.article-pagination a.page-numbers,
	.article-pagination span.page-numbers,
	.navigation.pagination a.page-numbers,
	.navigation.pagination span.page-numbers {
		min-width: 39px;
		min-height: 39px;
		padding: 7px 11px;
		font-size: 13px;
	}

	.article-pagination .prev,
	.article-pagination .next,
	.navigation.pagination .prev,
	.navigation.pagination .next {
		min-width: 64px;
	}
}

@media (max-width: 390px) {
	.ranking-sp-fv-panel {
		min-height: auto;
		padding-top: 14px;
	}

	.ranking-sp-heading {
		margin-bottom: 10px;
		font-size: clamp(20px, 5.8vw, 24px);
	}

	.ranking-sp-visual {
		margin-bottom: 10px;
		border-radius: 0;
	}

	.ranking-sp-ranking-button {
		min-height: 56px;
	}
}
