/**
 * Resource Download LP Styles
 *
 * @package Emanon_Premium_Child
 * @since 1.3.0
 */

/* ==========================================================================
   Variables
   ========================================================================== */
.rdl-main {
	--rdl-primary: #feaf00;
	--rdl-primary-dark: #e59d00;
	--rdl-primary-light: #fff8e1;
	--rdl-teal: #0ea5a0;
	--rdl-teal-light: #e6f7f6;
	--rdl-text: #1a1a2e;
	--rdl-text-light: #555;
	--rdl-text-muted: #888;
	--rdl-bg-gray: #f7f8f9;
	--rdl-bg-white: #fff;
	--rdl-border: #e2e8f0;
	--rdl-radius: 8px;
	--rdl-radius-lg: 16px;
	--rdl-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	--rdl-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
	--rdl-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
	--rdl-container: 1080px;
	--rdl-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
body.resource-download-page {
	background: var(--rdl-bg-white) !important;
}

.rdl-main {
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic Medium", sans-serif;
	color: var(--rdl-text);
	line-height: 1.8;
	overflow-x: hidden;
}

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

.rdl-main img {
	max-width: 100%;
	height: auto;
}

.rdl-container {
	max-width: var(--rdl-container);
	margin: 0 auto;
	padding: 0 24px;
}

.rdl-section {
	padding: 80px 0;
}

.rdl-section--gray {
	background: var(--rdl-bg-gray);
}

.rdl-pc-only {
	display: inline;
}

.rdl-sp-only {
	display: none;
}

/* ==========================================================================
   Section Title
   ========================================================================== */
.rdl-section__title {
	font-size: 28px;
	font-weight: 800;
	line-height: 1.4;
	text-align: center;
	margin: 0 0 16px;
	letter-spacing: 0.02em;
}

.rdl-section__title em {
	font-style: normal;
	color: var(--rdl-primary-dark);
	position: relative;
}

.rdl-section__title em::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--rdl-primary);
	border-radius: 2px;
}

.rdl-section__title--white {
	color: #fff;
}

.rdl-section__title--white em {
	color: #fff;
}

.rdl-section__title--white em::after {
	background: #fff;
}

.rdl-section__subtitle {
	font-size: 16px;
	color: var(--rdl-text-light);
	text-align: center;
	margin: 0 0 40px;
	line-height: 1.6;
}

/* ==========================================================================
   Button
   ========================================================================== */
.rdl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 36px;
	border: none;
	border-radius: 100px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.rdl-btn--primary {
	background: linear-gradient(135deg, #FF8C00 0%, #E67A00 100%);
	color: #fff;
	box-shadow: 0 4px 16px rgba(230, 122, 0, 0.35);
}

.rdl-btn--primary:hover {
	color: #fff;
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 8px 32px rgba(230, 122, 0, 0.5);
}

.rdl-btn--primary:active {
	color: #fff;
	transform: translateY(-1px) scale(1.01);
	box-shadow: 0 4px 16px rgba(230, 122, 0, 0.4);
}

/* アイコン */
.rdl-btn__icon {
	font-size: 20px;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rdl-btn:hover .rdl-btn__icon {
	animation: rdl-bounce-down 0.5s ease;
}

@keyframes rdl-bounce-down {
	0%   { transform: translateY(0); }
	30%  { transform: translateY(4px); }
	50%  { transform: translateY(-2px); }
	70%  { transform: translateY(2px); }
	100% { transform: translateY(0); }
}

/* シャイン（光が横切る演出） */
.rdl-btn__shine {
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.18),
		transparent
	);
	transform: skewX(-20deg);
	transition: none;
	pointer-events: none;
}

.rdl-btn:hover .rdl-btn__shine {
	animation: rdl-shine-sweep 0.7s ease forwards;
}

@keyframes rdl-shine-sweep {
	0%   { left: -100%; }
	100% { left: 120%; }
}

/* 常時パルスアニメ（ヒーローCTA用） */
.rdl-hero__cta {
	animation: rdl-pulse-glow 2.5s ease-in-out infinite;
}

.rdl-hero__cta:hover {
	animation: none;
}

@keyframes rdl-pulse-glow {
	0%, 100% { box-shadow: 0 4px 16px rgba(230, 122, 0, 0.35); }
	50%      { box-shadow: 0 4px 28px rgba(230, 122, 0, 0.55); }
}

/* 旧arrowの互換（他セクションCTAで使用） */
.rdl-btn__arrow {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform var(--rdl-transition);
}

.rdl-btn:hover .rdl-btn__arrow {
	transform: rotate(45deg) translateX(2px) translateY(-2px);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.rdl-hero {
	background: #fff;
	position: relative;
	overflow: hidden;
}

/* 都会写真背景 - うっすらオレンジ越し、左→右で濃くなる */
.rdl-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.12;
	z-index: 0;
	mix-blend-mode: multiply;
	-webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 15%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,1) 85%);
	mask-image: linear-gradient(to right, transparent 0%, transparent 15%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,1) 85%);
}

.rdl-hero__inner {
	display: flex;
	align-items: flex-end;
	gap: 48px;
	padding: 64px 0 0;
	position: relative;
	z-index: 1;
}

.rdl-hero__text {
	flex: 1;
	min-width: 0;
	align-self: center;
	padding-bottom: 48px;
}

.rdl-hero__badge {
	display: inline-block;
	background: var(--rdl-text);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	padding: 6px 16px;
	border-radius: 100px;
	margin-bottom: 20px;
	letter-spacing: 0.05em;
}

.rdl-hero__title {
	font-size: 40px;
	font-weight: 900;
	line-height: 1.45;
	margin: 0 0 20px;
	letter-spacing: 0.02em;
}

.rdl-hero__title em {
	font-style: normal;
	color: var(--rdl-primary-dark);
	background: linear-gradient(transparent 60%, rgba(254, 175, 0, 0.25) 60%);
}

.rdl-hero__desc {
	font-size: 16px;
	color: var(--rdl-text-light);
	line-height: 1.8;
	margin: 0 0 28px;
}

.rdl-hero__cta.rdl-btn {
	font-size: 18px;
	padding: 20px 44px;
	gap: 12px;
}

.rdl-hero__cta .rdl-btn__icon {
	font-size: 22px;
}

/* Hero Visual - 案内人物画像 */
.rdl-hero__visual {
	flex: 0 0 440px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	align-self: flex-end;
	margin-bottom: -1px;
}

.rdl-hero__guide-img {
	display: block;
	width: 100%;
	max-width: 440px;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.08));
	transform: scaleX(-1);
}

/* Hero Trust Bar */
.rdl-hero__trust-bar {
	background: rgba(26, 26, 46, 0.92);
	backdrop-filter: blur(8px);
	padding: 16px 0;
	position: relative;
	z-index: 1;
}

.rdl-hero__trust-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	gap: 40px;
}

.rdl-hero__trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-size: 14px;
}

.rdl-hero__trust-item strong {
	font-size: 16px;
	color: var(--rdl-primary);
}

.rdl-hero__trust-icon {
	font-size: 18px;
	color: var(--rdl-primary);
}

/* ==========================================================================
   SOCIAL PROOF
   ========================================================================== */
.rdl-social-proof {
	padding: 64px 0;
}

.rdl-proof-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.rdl-proof-card {
	text-align: center;
	padding: 36px 24px;
	background: #fffbe6;
	border-radius: var(--rdl-radius-lg);
	border: 1px solid #fff3c4;
}

.rdl-proof-card__icon {
	color: var(--rdl-primary-dark);
	margin-bottom: 16px;
	line-height: 1;
}

.rdl-proof-card__icon svg {
	display: block;
	margin: 0 auto;
}

.rdl-proof-card__number {
	margin-bottom: 8px;
}

.rdl-proof-card__value {
	font-size: 44px;
	font-weight: 900;
	letter-spacing: -0.02em;
	line-height: 1;
	color: var(--rdl-text);
}

.rdl-proof-card__unit {
	font-size: 20px;
	font-weight: 700;
	color: var(--rdl-text);
}

.rdl-proof-card__plus {
	color: var(--rdl-primary);
}

.rdl-proof-card__label {
	font-size: 14px;
	color: var(--rdl-text-light);
	font-weight: 500;
}

/* ==========================================================================
   PAIN POINTS
   ========================================================================== */
/* Pain Points */
.rdl-pain-points {
	text-align: center;
	position: relative;
	overflow: hidden;
}

.rdl-pain-points__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.07;
	z-index: 0;
	mix-blend-mode: multiply;
}

.rdl-pain-points > .rdl-container {
	position: relative;
	z-index: 1;
}

.rdl-pain-list {
	list-style: none;
	margin: 0 auto 48px;
	padding: 0;
	max-width: 640px;
	text-align: left;
}

.rdl-pain-item {
	padding: 18px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	font-size: 17px;
	line-height: 1.7;
}

.rdl-pain-item:last-child {
	border-bottom: none;
}

.rdl-pain-item::before {
	content: "✓ ";
	color: var(--rdl-primary-dark);
	font-weight: 800;
	margin-right: 6px;
}

.rdl-pain-item__text strong {
	color: var(--rdl-primary-dark);
	font-weight: 800;
}

/* Pain Answer */
.rdl-pain-answer {
	max-width: 640px;
	margin: 0 auto;
}

.rdl-pain-answer__arrow {
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 20px solid var(--rdl-bg-gray);
	margin: 0 auto;
}

.rdl-pain-answer__text {
	background: var(--rdl-text);
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	padding: 28px 32px;
	margin: 0;
	text-align: center;
}

.rdl-pain-answer__text strong {
	color: var(--rdl-primary);
}

/* ==========================================================================
   RESOURCE SECTIONS
   ========================================================================== */
.rdl-resource-header {
	text-align: center;
	margin-bottom: 40px;
}

.rdl-resource-label {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	color: var(--rdl-primary-dark);
	background: var(--rdl-primary-light);
	padding: 6px 16px;
	border-radius: 100px;
	margin-bottom: 16px;
	letter-spacing: 0.05em;
}

.rdl-resource-label--teal {
	color: var(--rdl-teal);
	background: var(--rdl-teal-light);
}

.rdl-resource-note {
	font-size: 13px;
	color: var(--rdl-text-muted);
	text-align: center;
	margin: 24px 0 0;
}

.rdl-section-cta {
	text-align: center;
	margin-top: 36px;
}

/* ==========================================================================
   RESOURCE CTA BLOCK（表紙 + CTA）
   ========================================================================== */
.rdl-resource-cta-block {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	margin-top: 56px;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.rdl-resource-cta-block__cover {
	flex: 0 0 240px;
}

.rdl-resource-cta-block__cover img {
	display: block;
	width: 100%;
	height: auto;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.rdl-resource-cta-block__body {
	flex: 1;
	min-width: 0;
}

.rdl-resource-cta-block__body .rdl-resource-label {
	margin-bottom: 12px;
}

.rdl-resource-cta-block__title {
	font-size: 20px;
	font-weight: 800;
	margin: 0 0 10px;
	line-height: 1.5;
}

.rdl-resource-cta-block__desc {
	font-size: 14px;
	color: var(--rdl-text-light);
	line-height: 1.7;
	margin: 0 0 24px;
}

/* ==========================================================================
   SLIDER（実績スライダー）
   ========================================================================== */
.rdl-slider-fullwidth {
	width: 100%;
	overflow: hidden;
	margin-bottom: 40px;
}

.rdl-slider-fullwidth .splide__slide {
	opacity: 0.85;
	transition: opacity 0.3s ease;
}

.rdl-slider-fullwidth .splide__slide:hover {
	opacity: 1;
}

.rdl-slider-fullwidth .splide__slide img {
	display: block;
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 6px;
}

@media (max-width: 768px) {
	.rdl-slider-fullwidth .splide__slide img {
		height: 160px;
	}
}

@media (max-width: 480px) {
	.rdl-slider-fullwidth .splide__slide img {
		height: 140px;
	}
}

/* ==========================================================================
   TABS（業種切替）
   ========================================================================== */
.rdl-tabs {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 32px;
	flex-wrap: wrap;
}

.rdl-tab {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	background: var(--rdl-bg-white);
	border: 2px solid var(--rdl-border);
	border-radius: 100px;
	font-size: 14px;
	font-weight: 600;
	color: var(--rdl-text-light);
	cursor: pointer;
	transition: all var(--rdl-transition);
}

.rdl-tab i {
	font-size: 16px;
}

.rdl-tab:hover {
	border-color: var(--rdl-primary);
	color: var(--rdl-primary-dark);
}

.rdl-tab--active {
	background: var(--rdl-primary);
	border-color: var(--rdl-primary);
	color: var(--rdl-text);
}

.rdl-tab--active i {
	color: var(--rdl-text);
}

/* Tab Panels */
.rdl-tab-panel {
	display: none;
	animation: rdl-fade-in 0.3s ease;
}

.rdl-tab-panel--active {
	display: block;
}

@keyframes rdl-fade-in {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ==========================================================================
   CASE CARDS（事例カード）
   ========================================================================== */
.rdl-cases-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.rdl-case-card {
	background: var(--rdl-bg-white);
	padding: 28px 24px;
	position: relative;
	box-shadow: var(--rdl-shadow);
}

.rdl-case-card__header {
	margin-bottom: 16px;
}

.rdl-case-card__name {
	font-size: 18px;
	font-weight: 800;
	margin: 0 0 2px;
}

.rdl-case-card__area {
	font-size: 13px;
	color: var(--rdl-text-muted);
}

.rdl-case-card__metrics {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.rdl-metric {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.rdl-metric:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.rdl-metric__label {
	font-size: 14px;
	color: var(--rdl-text-light);
	font-weight: 500;
}

.rdl-metric__value {
	font-size: 26px;
	font-weight: 900;
}

.rdl-metric__value--cvr {
	color: var(--rdl-primary-dark);
}

.rdl-metric__value--cpa {
	color: var(--rdl-teal);
}

/* ==========================================================================
   CLAIMS ジグザグレイアウト（フル幅）
   ========================================================================== */
.rdl-claims-row {
	display: flex;
	align-items: stretch;
	width: 100%;
	margin-bottom: 2px;
}

.rdl-claims-row--reverse {
	flex-direction: row-reverse;
}

.rdl-claims-row__img {
	flex: 0 0 50%;
	overflow: hidden;
}

.rdl-claims-row__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rdl-claims-row__body {
	flex: 0 0 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 48px 56px;
}

/* 2カード横並び */
.rdl-features-pair {
	display: flex;
	gap: 24px;
	width: 100%;
	max-width: 520px;
}

.rdl-features-pair .rdl-feature-card {
	flex: 1;
}

/* ==========================================================================
   FEATURE CARD（クレーム対応マニュアル）
   ========================================================================== */

.rdl-feature-card {
	background: var(--rdl-bg-white);
	padding: 32px 20px;
	text-align: center;
	box-shadow: var(--rdl-shadow);
}

.rdl-feature-card__icon {
	color: var(--rdl-teal);
	margin-bottom: 12px;
	line-height: 1;
}

.rdl-feature-card__icon svg {
	display: block;
	margin: 0 auto;
}

.rdl-feature-card__number {
	font-size: 40px;
	font-weight: 900;
	color: var(--rdl-text);
	line-height: 1;
	margin-bottom: 2px;
}

.rdl-feature-card__label {
	font-size: 14px;
	font-weight: 700;
	color: var(--rdl-teal);
	margin-bottom: 14px;
}

.rdl-feature-card__desc {
	font-size: 13px;
	color: var(--rdl-text-light);
	line-height: 1.6;
	margin: 0;
}

/* Pullquote */
.rdl-pullquote {
	margin: 56px 0 0;
	padding: 36px 40px;
	background: var(--rdl-text);
	color: rgba(255, 255, 255, 0.85);
	text-align: center;
	border: none;
	border-radius: 0;
}

.rdl-pullquote p {
	font-size: 16px;
	line-height: 2;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

.rdl-pullquote strong {
	color: var(--rdl-primary);
}

/* ==========================================================================
   DATA HIGHLIGHTS
   ========================================================================== */
.rdl-highlights-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.rdl-highlight-card {
	background: var(--rdl-bg-white);
	padding: 36px 28px;
	text-align: center;
	box-shadow: var(--rdl-shadow);
}

.rdl-highlight-card__stat {
	margin-bottom: 20px;
}

.rdl-highlight-card__stat-label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--rdl-text-muted);
	letter-spacing: 0.08em;
	margin-bottom: 4px;
}

.rdl-highlight-card__stat-value {
	display: block;
	font-size: 32px;
	font-weight: 900;
	color: var(--rdl-primary-dark);
	line-height: 1.2;
}

.rdl-highlight-card__title {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 12px;
}

.rdl-highlight-card__desc {
	font-size: 14px;
	color: var(--rdl-text-light);
	line-height: 1.7;
	margin: 0;
	text-align: left;
}

/* ==========================================================================
   CTA FORM
   ========================================================================== */
.rdl-cta-form {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
	position: relative;
	overflow: hidden;
}

.rdl-cta-form::before {
	content: "";
	position: absolute;
	top: -100px;
	right: -100px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(254, 175, 0, 0.1) 0%, transparent 70%);
	border-radius: 50%;
}

.rdl-cta-form__header {
	text-align: center;
	margin-bottom: 40px;
	position: relative;
	z-index: 1;
}

.rdl-cta-form__badge {
	display: inline-block;
	background: var(--rdl-primary);
	color: var(--rdl-text);
	font-size: 13px;
	font-weight: 700;
	padding: 6px 16px;
	border-radius: 100px;
	margin-bottom: 16px;
}

.rdl-cta-form__subtitle {
	color: rgba(255, 255, 255, 0.7);
	font-size: 15px;
	margin: 0;
}

/* Form Card */
.rdl-form-card {
	background: var(--rdl-bg-white);
	border-radius: var(--rdl-radius-lg);
	padding: 36px 40px;
	max-width: 640px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	box-shadow: var(--rdl-shadow-lg);
}

.rdl-form-card__includes {
	margin-bottom: 28px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--rdl-border);
}

.rdl-form-card__includes-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--rdl-text-light);
	margin: 0 0 12px;
}

.rdl-form-card__includes-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.rdl-form-card__includes-list li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	margin-bottom: 6px;
}

.rdl-form-card__includes-list i {
	color: var(--rdl-teal);
	font-size: 18px;
	flex-shrink: 0;
	margin-top: 2px;
}

/* iframe */
.rdl-form-card__iframe-wrap {
	min-height: 400px;
}

.rdl-form-iframe {
	width: 100%;
	min-height: 400px;
	border: none;
}

.rdl-form-card__placeholder {
	font-size: 13px;
	color: var(--rdl-text-muted);
	margin: 12px 0 0;
	text-align: center;
}

.rdl-form-card__placeholder a {
	color: var(--rdl-primary-dark);
	font-weight: 700;
	text-decoration: none;
}

/* CTA Notes */
.rdl-cta-form__notes {
	list-style: none;
	margin: 20px auto 0;
	padding: 0;
	max-width: 640px;
	display: flex;
	justify-content: center;
	gap: 24px;
	position: relative;
	z-index: 1;
}

.rdl-cta-form__notes li {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

.rdl-cta-form__notes li::before {
	content: "※ ";
}

/* ==========================================================================
   COMPANY TRUST
   ========================================================================== */
.rdl-company-trust {
	padding: 72px 0;
}

.rdl-trust-inner {
	display: flex;
	gap: 40px;
	align-items: center;
	max-width: 800px;
	margin: 0 auto;
}

.rdl-trust-logo {
	flex-shrink: 0;
}

.rdl-trust-logo img {
	width: 120px;
	height: auto;
}

.rdl-trust-content {
	flex: 1;
	min-width: 0;
}

.rdl-trust-company {
	font-size: 20px;
	font-weight: 800;
	margin: 0 0 12px;
}

.rdl-trust-desc {
	font-size: 14px;
	color: var(--rdl-text-light);
	line-height: 1.8;
	margin: 0 0 16px;
}

.rdl-trust-points {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.rdl-trust-points li {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
}

.rdl-trust-points i {
	color: var(--rdl-teal);
	font-size: 16px;
}

/* Phone */
.rdl-trust-contact {
	margin-top: 4px;
}

.rdl-trust-phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: var(--rdl-text);
	padding: 10px 20px;
	background: var(--rdl-bg-gray);
	border-radius: var(--rdl-radius);
	transition: all var(--rdl-transition);
}

.rdl-trust-phone:hover {
	background: var(--rdl-primary-light);
}

.rdl-trust-phone i {
	font-size: 20px;
	color: var(--rdl-primary-dark);
}

.rdl-trust-phone__number {
	font-size: 20px;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.rdl-trust-phone__hours {
	font-size: 12px;
	color: var(--rdl-text-muted);
}

/* ==========================================================================
   Scroll Smooth
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

/* ==========================================================================
   RESPONSIVE - Tablet (≤ 768px)
   ========================================================================== */
@media (max-width: 768px) {
	.rdl-section {
		padding: 56px 0;
	}

	.rdl-section__title {
		font-size: 23px;
	}

	.rdl-pc-only {
		display: none;
	}

	.rdl-sp-only {
		display: inline;
	}

	/* Hero */
	.rdl-hero__inner {
		flex-direction: column;
		padding: 40px 0 0;
		gap: 0;
	}

	.rdl-hero__text {
		padding-bottom: 24px;
	}

	.rdl-hero__visual {
		flex: auto;
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}

	.rdl-hero__guide-img {
		max-width: 300px;
	}

	.rdl-hero__title {
		font-size: 30px;
	}

	.rdl-hero__cta.rdl-btn {
		width: 100%;
		text-align: center;
	}

	.rdl-hero__trust-list {
		gap: 16px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.rdl-hero__trust-item {
		font-size: 13px;
	}

	/* Proof */
	.rdl-proof-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.rdl-proof-card {
		display: flex;
		align-items: center;
		gap: 16px;
		padding: 20px 24px;
		text-align: left;
	}

	.rdl-proof-card__icon {
		margin-bottom: 0;
		font-size: 24px;
	}

	.rdl-proof-card__number {
		margin-bottom: 0;
	}

	.rdl-proof-card__value {
		font-size: 32px;
	}

	.rdl-proof-card__label {
		margin-left: auto;
	}

	/* Resource CTA block */
	.rdl-resource-cta-block {
		flex-direction: column;
		text-align: center;
		gap: 32px;
	}

	.rdl-resource-cta-block__cover {
		flex: auto;
		max-width: 180px;
		transform: rotate(0deg);
	}

	/* Cases */
	.rdl-cases-grid {
		grid-template-columns: 1fr;
	}

	/* Claims zigzag */
	.rdl-claims-row {
		flex-direction: column;
	}

	.rdl-claims-row--reverse {
		flex-direction: column;
	}

	.rdl-claims-row__img {
		flex: auto;
		max-height: 260px;
	}

	.rdl-claims-row__body {
		flex: auto;
		padding: 32px 24px;
	}

	/* Features */
	.rdl-features-pair {
		max-width: 100%;
	}

	/* Highlights */
	.rdl-highlights-grid {
		grid-template-columns: 1fr;
	}

	/* Form */
	.rdl-form-card {
		padding: 24px 20px;
	}

	.rdl-cta-form__notes {
		flex-direction: column;
		gap: 4px;
		align-items: center;
	}

	/* Trust */
	.rdl-trust-inner {
		flex-direction: column;
		text-align: center;
	}

	.rdl-trust-points {
		justify-content: center;
	}

	.rdl-trust-contact {
		text-align: center;
	}
}

/* ==========================================================================
   RESPONSIVE - Small Mobile (≤ 480px)
   ========================================================================== */
@media (max-width: 480px) {
	.rdl-container {
		padding: 0 16px;
	}

	.rdl-section {
		padding: 44px 0;
	}

	.rdl-section__title {
		font-size: 20px;
	}

	.rdl-hero__title {
		font-size: 26px;
	}

	.rdl-hero__guide-img {
		max-width: 220px;
	}

	.rdl-tabs {
		gap: 6px;
	}

	.rdl-tab {
		padding: 8px 14px;
		font-size: 13px;
	}

	.rdl-metric__value {
		font-size: 22px;
	}

	.rdl-btn {
		padding: 14px 24px;
		font-size: 15px;
		width: 100%;
	}

	.rdl-pain-item {
		font-size: 15px;
	}

	.rdl-pain-answer__text {
		font-size: 17px;
		padding: 24px 20px;
	}

	/* Features pair - 縦積み */
	.rdl-features-pair {
		flex-direction: column;
		gap: 16px;
	}
}

/* ==========================================================================
   THANKS PAGE（DLページ）
   ========================================================================== */
.rdl-thanks {
	padding: 80px 0;
}

.rdl-thanks__header {
	text-align: center;
	margin-bottom: 48px;
}

.rdl-thanks__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	max-width: 680px;
	margin: 0 auto;
}

.rdl-thanks__card {
	text-align: center;
	padding: 32px 24px;
	background: var(--rdl-bg-white);
	box-shadow: var(--rdl-shadow);
}

.rdl-thanks__cover {
	display: block;
	width: 160px;
	height: auto;
	margin: 0 auto 20px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.rdl-thanks__card-title {
	font-size: 18px;
	font-weight: 800;
	margin: 0 0 6px;
}

.rdl-thanks__card-desc {
	font-size: 13px;
	color: var(--rdl-text-muted);
	margin: 0 0 20px;
}

/* CF7フォームスタイル調整 */
.rdl-form-card__cf7 .wpcf7-form p {
	margin-bottom: 16px;
}

.rdl-form-card__cf7 .wpcf7-form label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--rdl-text);
}

.rdl-form-card__cf7 .wpcf7-form input[type="text"],
.rdl-form-card__cf7 .wpcf7-form input[type="email"],
.rdl-form-card__cf7 .wpcf7-form input[type="tel"],
.rdl-form-card__cf7 .wpcf7-form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--rdl-border);
	font-size: 16px;
	background: var(--rdl-bg-gray);
	transition: border-color 0.2s;
}

.rdl-form-card__cf7 .wpcf7-form input:focus,
.rdl-form-card__cf7 .wpcf7-form textarea:focus {
	outline: none;
	border-color: var(--rdl-primary);
}

.rdl-form-card__cf7 .wpcf7-form input[type="submit"] {
	display: block;
	width: 100%;
	padding: 16px;
	background: linear-gradient(135deg, #FF8C00 0%, #E67A00 100%);
	color: #fff;
	border: none;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s;
	border-radius: 100px;
}

.rdl-form-card__cf7 .wpcf7-form input[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(230, 122, 0, 0.4);
}

.rdl-form-card__cf7 .wpcf7-not-valid-tip {
	color: #e53e3e;
	font-size: 13px;
	margin-top: 4px;
}

@media (max-width: 480px) {
	.rdl-thanks__cards {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   JS Tab Interaction (inline script in footer)
   ========================================================================== */
