/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Description: Child theme for GeneratePress
Author: Your Name
Author URI: https://yourwebsite.com
Template: generatepress
Version: 1.1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: generatepress-child
*/

/* ========================================
   CSS変数（カラーパレット・タイポグラフィ）
   ======================================== */
:root {
	/* Primary Colors - 落ち着いた紺系 */
	--road-primary: #1e3a5f;
	--road-primary-dark: #152a45;
	--road-primary-light: #2d5a8a;

	/* Accent Colors - 信頼感のあるブルー */
	--road-accent: #2563eb;
	--road-accent-dark: #1d4ed8;
	--road-accent-light: #3b82f6;

	/* Gradient - 落ち着いた紺グラデーション */
	--road-gradient: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 100%);
	--road-gradient-light: linear-gradient(135deg, #2d5a8a 0%, #3b82f6 100%);

	/* Neutral Colors */
	--road-text: #1a1a2e;
	--road-text-light: #4a4a68;
	--road-text-muted: #6b7280;
	--road-bg-white: #ffffff;
	--road-bg-light: #f8fafc;
	--road-bg-gray: #f1f5f9;
	--road-border: #e2e8f0;

	/* Spacing */
	--section-padding: 5rem;
	--section-padding-mobile: 3rem;
	--container-max: 1100px;
	--container-narrow: 800px;

	/* Typography */
	--font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
	--font-size-base: 16px;
	--line-height: 1.8;

	/* Shadows */
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

	/* Border Radius */
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 16px;

	/* Transitions */
	--transition: all 0.3s ease;
}

/* ========================================
   リセット・基本スタイル
   ======================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	font-family: var(--font-family);
	font-size: var(--font-size-base);
	line-height: var(--line-height);
	color: var(--road-text);
	background-color: var(--road-bg-white);
}

/* ========================================
   ヘッダー・ロゴスタイル
   ======================================== */
.site-header {
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* ヘッダー内コンテナを全幅に */
.site-header .inside-header {
	max-width: 100%;
	width: 100%;
	padding-left: 3rem;
	padding-right: 3rem;
}

/* ランディング・お問い合わせ・サービスページでもヘッダーpaddingを維持 */
body.landing-page .site-header .inside-header,
body.landing-page .site-header .grid-container,
body.contact-page-full .site-header .inside-header,
body.contact-page-full .site-header .grid-container,
body.service-page-full .site-header .inside-header,
body.service-page-full .site-header .grid-container {
	padding-left: 3rem !important;
	padding-right: 3rem !important;
}

.site-logo {
	display: flex;
	align-items: center;
}

.site-logo a {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.site-logo .custom-logo,
.custom-logo-link img,
.site-header img {
	max-height: 60px;
	width: auto;
	height: auto;
}

/* サイトタイトルを非表示（ロゴ使用時） */
.site-logo + .site-branding .main-title {
	display: none;
}

/* ナビゲーションリンクの色 */
.main-navigation a,
.menu-toggle {
	color: var(--road-text);
}

.main-navigation a:hover {
	color: var(--road-primary);
}

/* 現在のページのナビゲーション */
.main-navigation .current-menu-item > a {
	color: var(--road-accent);
}

/* ========================================
   GeneratePress親テーマのオーバーライド
   ======================================== */
body.landing-page .site-container,
body.landing-page .inside-article,
body.landing-page .grid-container,
body.landing-page #page,
body.landing-page #content,
body.landing-page #primary,
body.landing-page .site,
body.landing-page .hentry {
	max-width: 100% !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin: 0 !important;
	float: none !important;
}

body.landing-page .sidebar,
body.landing-page #right-sidebar,
body.landing-page #left-sidebar {
	display: none !important;
}

/* ========================================
   ランディングページ基本構造
   ======================================== */
.landing-page-wrapper,
.landing-page-content,
.landing-page-main {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* コンテナ */
.container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.container-narrow {
	max-width: var(--container-narrow);
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* ========================================
   セクション共通スタイル
   ======================================== */
section {
	width: 100%;
	padding: var(--section-padding) 0;
	position: relative;
}

.section-header {
	text-align: center;
	margin-bottom: 3.5rem;
	padding-bottom: 0.5rem;
}

.section-title {
	font-size: 1.875rem;
	font-weight: 700;
	color: var(--road-text);
	margin: 0 0 0.75rem 0;
	line-height: 1.4;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -8px;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: var(--road-gradient);
	border-radius: 2px;
}

.section-subtitle {
	font-size: 1rem;
	color: var(--road-text-muted);
	font-weight: 400;
}

.section-content {
	text-align: center;
}

/* ========================================
   ヒーローセクション
   ======================================== */
.hero-section {
	color: #fff;
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
	min-height: 85vh;
	display: flex;
	align-items: center;
}

.hero-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(45, 90, 138, 0.85) 100%);
}

.hero-container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	z-index: 1;
}

.hero-content {
	max-width: 650px;
	text-align: left;
}

.hero-title {
	font-size: 2.75rem;
	font-weight: 800;
	margin: 0 0 1.5rem 0;
	line-height: 1.4;
	letter-spacing: -0.02em;
}

.sp-only {
	display: none;
}

.hero-subtitle {
	font-size: 1.25rem;
	margin: 0 0 1rem 0;
	line-height: 1.8;
	opacity: 0.95;
	font-weight: 500;
}

.hero-description {
	font-size: 1.0625rem;
	margin: 0 0 2rem 0;
	opacity: 0.85;
	line-height: 1.9;
}

.hero-cta {
	margin-top: 2rem;
}

.hero-note {
	margin-top: 1.5rem;
	font-size: 0.875rem;
	opacity: 0.9;
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.hero-note-item {
	display: inline-flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.15);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	backdrop-filter: blur(4px);
}

.hero-note-item::before {
	content: '✓';
	font-size: 0.75rem;
	margin-right: 0.5rem;
	color: #a5f3fc;
}


/* ========================================
   ボタンスタイル
   ======================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--radius-md);
	border: none;
	cursor: pointer;
	transition: var(--transition);
	line-height: 1;
}

.btn-primary {
	background: linear-gradient(135deg, var(--road-accent) 0%, #C026D3 100%);
	color: #fff;
	box-shadow: 0 4px 14px rgba(147, 51, 234, 0.4);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(147, 51, 234, 0.5);
	color: #fff;
}

.btn-secondary {
	background: var(--road-primary);
	color: #fff;
	box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
	background: var(--road-primary-dark);
	transform: translateY(-2px);
	color: #fff;
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--road-primary);
	color: var(--road-primary);
}

.btn-outline:hover {
	background: var(--road-primary);
	color: #fff;
}

.btn-large {
	padding: 1.125rem 2.5rem;
	font-size: 1.0625rem;
}

/* ========================================
   問題セクション（こんなお悩みありませんか？）
   ======================================== */
.problems-section {
	padding: 0;
}

.problems-hero {
	position: relative;
	min-height: 600px;
	display: flex;
	align-items: center;
}

.problems-hero-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.problems-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		100deg,
		rgba(15, 30, 50, 0.92) 0%,
		rgba(15, 30, 50, 0.85) 35%,
		rgba(15, 30, 50, 0.6) 65%,
		rgba(15, 30, 50, 0.3) 100%
	);
}

.problems-content {
	position: relative;
	z-index: 1;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 4rem 2rem;
	color: #fff;
}

.problems-title {
	font-size: 2.75rem;
	font-weight: 800;
	margin: 0 0 2.5rem 0;
	line-height: 1.4;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
	letter-spacing: 0.02em;
}

.problems-list {
	list-style: none;
	padding: 0;
	margin: 0 0 2.5rem 0;
}

.problems-list li {
	font-size: 1.125rem;
	line-height: 1.7;
	padding: 0.75rem 0;
	padding-left: 2rem;
	position: relative;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.problems-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0.75rem;
	font-size: 1rem;
	font-weight: 700;
	color: #60a5fa;
	text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

.problems-empathy {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0;
	padding: 1.25rem 1.5rem;
	background: rgba(96, 165, 250, 0.15);
	border-left: 4px solid #60a5fa;
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	color: #93c5fd;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(4px);
}

/* ========================================
   なぜうまくいかないのかセクション
   ======================================== */
.why-not-working-section {
	background: var(--road-bg-white);
	padding: var(--section-padding) 0;
}

.section-lead {
	font-size: 1.0625rem;
	color: var(--road-text-light);
	text-align: center;
	margin-top: 0.5rem;
}

.reason-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2.5rem;
}

.reason-card {
	background: var(--road-bg-light);
	padding: 2rem;
	border-radius: var(--radius-lg);
	text-align: center;
}

.reason-number {
	width: 2.5rem;
	height: 2.5rem;
	background: var(--road-primary);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.125rem;
	margin: 0 auto 1rem;
}

.reason-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--road-text);
	margin: 0 0 0.75rem 0;
}

.reason-description {
	font-size: 0.9375rem;
	color: var(--road-text-light);
	line-height: 1.7;
	margin: 0;
}

.why-conclusion {
	margin-top: 2.5rem;
	text-align: center;
}

.why-conclusion-text {
	font-size: 1.125rem;
	color: var(--road-text);
	line-height: 1.8;
	margin: 0;
}

.why-conclusion-text strong {
	color: var(--road-primary);
}

/* ========================================
   株式会社ロードの考え方セクション
   ======================================== */
.our-approach-section {
	background: var(--road-bg-light);
	padding: var(--section-padding) 0;
}

.approach-content {
	max-width: 800px;
	margin: 0 auto;
}

.approach-lead {
	font-size: 1.25rem;
	text-align: center;
	line-height: 1.8;
	color: var(--road-text);
	margin: 0 0 2.5rem 0;
}

.approach-lead strong {
	color: var(--road-primary);
}

.approach-points {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.approach-point {
	background: var(--road-bg-white);
	padding: 1.5rem;
	border-radius: var(--radius-md);
	text-align: center;
	box-shadow: var(--shadow-sm);
}

.approach-point-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--road-primary);
	margin: 0 0 0.5rem 0;
}

.approach-point-description {
	font-size: 0.875rem;
	color: var(--road-text-light);
	line-height: 1.7;
	margin: 0;
}

.approach-company {
	margin-top: 2.5rem;
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid var(--road-border);
}

.company-name {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--road-text);
	margin: 0 0 0.25rem 0;
}

.company-location {
	font-size: 0.875rem;
	color: var(--road-text-light);
	margin: 0;
}

/* ========================================
   サービスセクション
   ======================================== */
.services-section {
	background: linear-gradient(180deg, var(--road-bg-light) 0%, var(--road-bg-white) 100%);
	padding: var(--section-padding) 0;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

.service-card {
	background: var(--road-bg-white);
	padding: 2rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--road-border);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--road-gradient);
}

.service-card:hover {
	border-color: var(--road-primary-light);
	box-shadow: var(--shadow-lg);
	transform: translateY(-6px);
}

.service-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, var(--road-primary) 0%, var(--road-primary-light) 100%);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	margin-bottom: 1rem;
	box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

.service-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--road-text);
	margin: 0 0 0.75rem 0;
}

.service-description {
	font-size: 0.9375rem;
	color: var(--road-text-light);
	line-height: 1.7;
	margin: 0 0 1.25rem 0;
}

.service-features {
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid var(--road-border);
	padding-top: 1rem;
}

.service-features li {
	font-size: 0.9375rem;
	color: var(--road-text);
	padding: 0.5rem 0;
	padding-left: 1.75rem;
	position: relative;
}

.service-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0.5rem;
	color: var(--road-accent);
	font-weight: 700;
	font-size: 0.875rem;
}

.services-cta {
	text-align: center;
}

/* ========================================
   無料診断セクション
   ======================================== */
.free-diagnosis-section {
	background: var(--road-primary);
	color: #fff;
	padding: var(--section-padding) 0;
}

.free-diagnosis-section .section-title {
	color: #fff;
}

.free-diagnosis-section .section-title::after {
	background: rgba(255, 255, 255, 0.5);
}

.diagnosis-content {
	max-width: 700px;
	margin: 0 auto;
}

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

.diagnosis-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-md);
	margin-bottom: 0.75rem;
}

.diagnosis-item:last-child {
	margin-bottom: 0;
}

.diagnosis-number {
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.875rem;
}

.diagnosis-text-wrap {
	flex: 1;
}

.diagnosis-main {
	display: block;
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 0.25rem;
}

.diagnosis-detail {
	display: block;
	font-size: 0.875rem;
	opacity: 0.85;
}

.diagnosis-note {
	text-align: center;
	margin-top: 1.5rem;
	font-size: 0.9375rem;
	opacity: 0.9;
}

.diagnosis-cta {
	text-align: center;
	margin-top: 2rem;
}

.free-diagnosis-section .btn-primary {
	background: #fff;
	color: var(--road-primary);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.free-diagnosis-section .btn-primary:hover {
	background: #f8fafc;
	color: var(--road-primary-dark);
}

/* ========================================
   ご利用の流れセクション
   ======================================== */
.process-section {
	background: var(--road-bg-light);
	padding: var(--section-padding) 0;
}

.process-steps {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}

.process-step {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	background: var(--road-bg-white);
	padding: 2rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	position: relative;
}

.process-step-number {
	flex-shrink: 0;
	width: 3rem;
	height: 3rem;
	background: var(--road-gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: 1.25rem;
}

.process-step-content {
	flex: 1;
}

.process-step-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--road-text);
	margin: 0 0 0.5rem 0;
}

.process-step-description {
	font-size: 0.9375rem;
	color: var(--road-text-light);
	line-height: 1.7;
	margin: 0;
}

.process-step-note {
	font-size: 0.8125rem;
	color: var(--road-primary);
	margin: 0.5rem 0 0 0;
}

.process-connector {
	width: 2px;
	height: 2rem;
	background: var(--road-gradient);
	margin: 0 auto;
	position: relative;
}

.process-connector::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 8px solid var(--road-primary);
}

.process-cta {
	text-align: center;
	margin-top: 3rem;
}

.process-cta-text {
	font-size: 1.0625rem;
	color: var(--road-text-light);
	margin: 0 0 1rem 0;
}

/* ========================================
   FAQセクション
   ======================================== */
.faq-section {
	background: var(--road-bg-white);
	padding: var(--section-padding) 0;
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid var(--road-border);
}

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

.faq-question {
	margin: 0;
}

.faq-toggle {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 1.5rem;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-size: 1rem;
	font-weight: 600;
	color: var(--road-text);
	transition: opacity 0.2s ease;
}

.faq-toggle:hover {
	opacity: 0.7;
}

.faq-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	position: relative;
	margin-left: 1rem;
}

.faq-icon::before,
.faq-icon::after {
	content: '';
	position: absolute;
	background: var(--road-primary);
	transition: transform 0.3s ease;
}

.faq-icon::before {
	width: 2px;
	height: 14px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.faq-icon::after {
	width: 14px;
	height: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.faq-toggle[aria-expanded="true"] .faq-icon::before {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.is-open {
	max-height: 500px;
	padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
	font-size: 0.9375rem;
	color: var(--road-text-light);
	line-height: 1.8;
	margin: 0;
	padding-left: 1rem;
	border-left: 3px solid var(--road-primary-light);
}

/* ========================================
   LLMO説明セクション
   ======================================== */
.llmo-explanation-section {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
	padding: var(--section-padding) 0;
	color: #fff;
}

.llmo-explanation-section .section-title {
	color: #fff;
}

.llmo-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-top: 3rem;
}

.llmo-content {
	text-align: left;
}

.llmo-intro {
	font-size: 1.0625rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.llmo-intro strong {
	color: #60a5fa;
}

.llmo-definition {
	margin-bottom: 1.5rem;
}

.llmo-definition-intro,
.llmo-definition-outro {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.llmo-term {
	background: linear-gradient(135deg, rgba(96, 165, 250, 0.2) 0%, rgba(147, 51, 234, 0.2) 100%);
	display: inline-block;
	padding: 1rem 1.5rem;
	border-radius: var(--radius-md);
	border: 1px solid rgba(96, 165, 250, 0.3);
	margin: 0.75rem 0;
}

.llmo-term strong {
	color: #60a5fa;
	font-size: 1.5rem;
	display: block;
}

.llmo-term-sub {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.6);
	display: block;
	margin-top: 0.25rem;
}

.llmo-quote {
	background: rgba(255, 255, 255, 0.05);
	border-left: 3px solid #60a5fa;
	padding: 1.25rem 1.5rem;
	margin: 1.5rem 0;
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.llmo-quote p {
	font-size: 1.125rem;
	font-weight: 600;
	color: #fff;
	margin: 0;
	line-height: 1.7;
}

.llmo-benefit {
	margin-top: 1.5rem;
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
}

.llmo-benefit p {
	margin: 0;
}

.llmo-cta {
	text-align: left;
	margin-top: 2rem;
}

.llmo-explanation-section .btn-secondary {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: #fff;
}

.llmo-explanation-section .btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
}

.llmo-image {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.llmo-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* ========================================
   次の一歩セクション（押させない設計）
   ======================================== */
.next-step-section {
	background: linear-gradient(180deg, var(--road-bg-gray) 0%, var(--road-bg-light) 100%);
	padding: var(--section-padding) 0;
	text-align: center;
}

.next-step-text {
	font-size: 1.25rem;
	color: var(--road-text);
	margin-bottom: 2rem;
	line-height: 1.8;
}

.next-step-option {
	background: var(--road-bg-white);
	border-radius: var(--radius-lg);
	padding: 2rem;
	max-width: 500px;
	margin: 0 auto 2rem auto;
	box-shadow: var(--shadow-md);
	text-align: left;
	border: 1px solid var(--road-border);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.next-step-option:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.next-step-option-title {
	font-size: 1.125rem;
	color: var(--road-text);
	margin: 0 0 1rem 0;
}

.next-step-option-title strong {
	color: var(--road-primary);
}

.next-step-details {
	list-style: none;
	padding: 0;
	margin: 0;
}

.next-step-details li {
	padding: 0.5rem 0;
	font-size: 0.9375rem;
	color: var(--road-text-light);
	display: flex;
	align-items: center;
}

.next-step-details li::before {
	content: '•';
	color: var(--road-primary);
	font-weight: 700;
	margin-right: 0.75rem;
}

.next-step-benefits {
	list-style: none;
	padding: 0;
	margin: 0 auto 2.5rem auto;
	max-width: 400px;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.next-step-benefits li {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-size: 1rem;
	color: var(--road-text-light);
}

.next-step-benefits li::before {
	content: '✓';
	color: var(--road-primary);
	font-weight: 700;
}

.next-step-note {
	font-size: 0.9375rem;
	color: var(--road-text-muted);
	margin-bottom: 2rem;
	line-height: 1.8;
}

.next-step-cta {
	text-align: center;
}

.next-step-cta-sub {
	font-size: 0.875rem;
	color: var(--road-text-muted);
	margin-top: 1rem;
}

/* ========================================
   レスポンシブデザイン
   ======================================== */
@media (max-width: 768px) {
	:root {
		--section-padding: 3.5rem;
	}

	/* コンテナの左右余白を縮小 */
	.container,
	.container-narrow {
		padding: 0 1rem;
	}

	.site.grid-container.container.hfeed {
		padding-left: 0;
		padding-right: 0;
	}

	.article-section {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	section {
		padding: var(--section-padding-mobile) 0;
	}

	/* ヒーローセクション */
	.hero-section {
		padding: 4rem 0;
		min-height: 70vh;
	}

	.hero-content {
		text-align: center;
		max-width: 100%;
	}

	.hero-note {
		justify-content: center;
	}

	.sp-only {
		display: inline;
	}

	.hero-title {
		font-size: 1.75rem;
	}

	.hero-subtitle {
		font-size: 1.0625rem;
	}

	.hero-description {
		font-size: 0.9375rem;
	}

	.section-title {
		font-size: 1.5rem;
	}

	.lead-text {
		font-size: 1.125rem;
	}

	.conclusion-text {
		font-size: 1.25rem;
	}

	/* 問題セクション */
	.problems-hero {
		min-height: auto;
	}

	.problems-overlay {
		background: linear-gradient(
			180deg,
			rgba(15, 30, 50, 0.88) 0%,
			rgba(15, 30, 50, 0.75) 50%,
			rgba(15, 30, 50, 0.6) 100%
		);
	}

	.problems-content {
		padding: 3rem 1.5rem;
	}

	.problems-title {
		font-size: 1.875rem;
		margin-bottom: 2rem;
	}

	.problems-list li {
		font-size: 1rem;
		padding: 0.625rem 0;
		padding-left: 1.75rem;
	}

	.problems-list li::before {
		top: 0.7rem;
		font-size: 0.875rem;
	}

	.problems-empathy {
		font-size: 1.0625rem;
		padding: 1rem 1.25rem;
	}

	/* 原因セクション */
	.reason-cards {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.reason-card {
		padding: 1.5rem;
	}

	/* 考え方セクション */
	.approach-points {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.approach-point {
		padding: 1.25rem;
	}

	/* サービスセクション */
	.services-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.service-card {
		padding: 1.5rem;
	}

	/* ご利用の流れ */
	.process-step {
		padding: 1.5rem;
		gap: 1rem;
	}

	.process-step-number {
		width: 2.5rem;
		height: 2.5rem;
		font-size: 1rem;
	}

	.process-step-title {
		font-size: 1rem;
	}

	/* FAQ */
	.faq-toggle {
		padding: 1.25rem 1rem;
		font-size: 0.9375rem;
	}

	.faq-answer.is-open {
		padding: 0 1rem 1.25rem;
	}

	/* LLMOセクション */
	.llmo-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.llmo-content {
		text-align: center;
		order: 1;
	}

	.llmo-image {
		order: 2;
	}

	.llmo-cta {
		text-align: center;
	}

	.not-our-approach-list {
		flex-direction: column;
		align-items: center;
	}

	.approach-main {
		font-size: 1.25rem;
		padding: 1.25rem 1.5rem;
	}

	/* LLMOセクション */
	.llmo-term {
		padding: 0.75rem 1.5rem;
	}

	.llmo-term strong {
		font-size: 1.25rem;
	}

	.llmo-quote {
		padding: 1.5rem;
	}

	.llmo-quote p {
		font-size: 1.125rem;
	}

	/* 画像セクション */
	.hero-image {
		margin-top: 2rem;
	}

	.approach-image,
	.llmo-image {
		margin-top: 2rem;
	}

	/* 次の一歩セクション */
	.next-step-option {
		padding: 1.5rem;
	}

	.btn {
		padding: 0.875rem 1.75rem;
		font-size: 0.9375rem;
	}

	.btn-large {
		padding: 1rem 2rem;
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 1.375rem;
	}

	.section-title {
		font-size: 1.375rem;
	}

	.reason-item {
		padding: 1rem 1.25rem;
		font-size: 0.9375rem;
	}
}

/* ========================================
   スムーススクロール & 基本UX
   ======================================== */
html {
	scroll-behavior: smooth;
}

/* ========================================
   スクロールプログレスバー
   ======================================== */
.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 0%;
	height: 3px;
	background: var(--road-gradient);
	z-index: 9999;
	transition: width 0.1s ease-out;
}

/* ========================================
   スクロールアニメーション
   ======================================== */
.fade-in-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
				transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.fade-in-left {
	opacity: 0;
	transform: translateX(-40px);
	transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
				transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.fade-in-right {
	opacity: 0;
	transform: translateX(40px);
	transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
				transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.scale-in {
	opacity: 0;
	transform: scale(0.9);
	transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
				transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.is-visible {
	opacity: 1;
	transform: scale(1);
}

/* スタガードアニメーション（リストアイテム用） */
.stagger-item {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
				transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-item.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-item:nth-child(5) { transition-delay: 0.5s; }
.stagger-item:nth-child(6) { transition-delay: 0.6s; }

/* ========================================
   セクション区切り（ウェーブ）
   ======================================== */
.section-divider {
	position: relative;
	width: 100%;
	height: 80px;
	margin-top: -1px;
	overflow: hidden;
}

.section-divider svg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.wave-white { fill: var(--road-bg-white); }
.wave-gray { fill: var(--road-bg-gray); }
.wave-light { fill: var(--road-bg-light); }
.wave-gradient { fill: url(#gradient-fill); }

/* ========================================
   フローティング装飾要素
   ======================================== */
.floating-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 0;
}

.floating-shape {
	position: absolute;
	border-radius: 50%;
	opacity: 0.08;
	animation: float 20s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
	width: 300px;
	height: 300px;
	background: var(--road-primary);
	top: 10%;
	left: -5%;
	animation-delay: 0s;
}

.floating-shape:nth-child(2) {
	width: 200px;
	height: 200px;
	background: var(--road-accent);
	top: 50%;
	right: -3%;
	animation-delay: -5s;
}

.floating-shape:nth-child(3) {
	width: 150px;
	height: 150px;
	background: #C026D3;
	bottom: 20%;
	left: 10%;
	animation-delay: -10s;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0) rotate(0deg);
	}
	25% {
		transform: translateY(-20px) rotate(5deg);
	}
	50% {
		transform: translateY(0) rotate(0deg);
	}
	75% {
		transform: translateY(20px) rotate(-5deg);
	}
}

/* ========================================
   ボタン強化アニメーション
   ======================================== */
.btn {
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
	width: 300px;
	height: 300px;
}

.btn:active {
	transform: scale(0.98);
}

/* パルスアニメーション付きCTAボタン */
.btn-pulse {
	animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
	0%, 100% {
		box-shadow: 0 4px 14px rgba(147, 51, 234, 0.4);
	}
	50% {
		box-shadow: 0 4px 30px rgba(147, 51, 234, 0.6),
					0 0 40px rgba(147, 51, 234, 0.2);
	}
}

/* ========================================
   カードホバー強化（3D効果）
   ======================================== */
.service-card {
	will-change: transform;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ========================================
   LLMO引用ブロック強化
   ======================================== */
.llmo-quote {
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.llmo-quote:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.llmo-quote::before {
	content: '"';
	position: absolute;
	top: -20px;
	left: 20px;
	font-size: 80px;
	font-family: Georgia, serif;
	color: var(--road-primary);
	opacity: 0.15;
	line-height: 1;
}

/* ========================================
   テキストハイライトアニメーション
   ======================================== */
.highlight-text {
	position: relative;
	display: inline;
}

.highlight-text::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 8px;
	background: var(--road-gradient-light);
	opacity: 0.3;
	z-index: -1;
	transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-text.is-visible::after {
	width: 100%;
}

/* ========================================
   セクション背景グラデーション動き
   ======================================== */
.hero-section {
	background-size: 200% 200%;
	animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
	0%, 100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

/* ========================================
   スティッキーヘッダー効果
   ======================================== */
.site-header {
	transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* ========================================
   ナビゲーションリンク効果
   ======================================== */
.main-navigation a {
	position: relative;
	transition: color 0.3s ease;
}

.main-navigation a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--road-gradient);
	transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after {
	width: 100%;
}

/* ========================================
   カウントアップアニメーション用
   ======================================== */
.count-up {
	display: inline-block;
}

/* ========================================
   スクロールヒント（下へスクロール）
   ======================================== */
.scroll-hint {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	opacity: 0.7;
	animation: bounce 2s ease-in-out infinite;
}

.scroll-hint-text {
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.scroll-hint-arrow {
	width: 20px;
	height: 20px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateX(-50%) translateY(0);
	}
	40% {
		transform: translateX(-50%) translateY(-10px);
	}
	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

/* ========================================
   ローディング完了後の表示
   ======================================== */
.page-loaded .hero-title,
.page-loaded .hero-subtitle,
.page-loaded .hero-description,
.page-loaded .hero-cta {
	animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.page-loaded .hero-title { animation-delay: 0.2s; }
.page-loaded .hero-subtitle { animation-delay: 0.4s; }
.page-loaded .hero-description { animation-delay: 0.5s; }
.page-loaded .hero-cta { animation-delay: 0.6s; }

@keyframes slideUpFade {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ヒーロー内の要素初期状態 */
.hero-title,
.hero-subtitle,
.hero-description,
.hero-cta {
	opacity: 0;
}

/* ========================================
   視差効果（パララックス）
   ======================================== */
.parallax-bg {
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

@media (max-width: 768px) {
	.parallax-bg {
		background-attachment: scroll;
	}
}

/* ========================================
   セクション間のコネクター
   ======================================== */
.section-connector {
	position: relative;
	text-align: center;
	padding: 2rem 0;
}

.section-connector::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--road-gradient);
	opacity: 0.3;
}

.section-connector-dot {
	position: relative;
	display: inline-block;
	width: 12px;
	height: 12px;
	background: var(--road-gradient);
	border-radius: 50%;
	z-index: 1;
}

/* ========================================
   アクセシビリティ
   ======================================== */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	html {
		scroll-behavior: auto;
	}

	.fade-in-up,
	.fade-in-left,
	.fade-in-right,
	.scale-in,
	.stagger-item {
		opacity: 1;
		transform: none;
	}

	.hero-title,
	.hero-subtitle,
	.hero-description,
	.hero-cta {
		opacity: 1;
	}
}

/* フォーカス状態 */
.btn:focus,
a:focus {
	outline: 2px solid var(--road-primary);
	outline-offset: 2px;
}

/* フォーカス可視性向上 */
.btn:focus-visible {
	outline: 3px solid var(--road-accent);
	outline-offset: 3px;
}

/* ========================================
   お問い合わせページ
   ======================================== */

/* 全幅オーバーライド */
body.contact-page-full .site-container,
body.contact-page-full .inside-article,
body.contact-page-full .grid-container,
body.contact-page-full #page,
body.contact-page-full #content,
body.contact-page-full #primary,
body.contact-page-full .site,
body.contact-page-full .hentry,
body.contact-page-full .entry-content,
body.contact-page-full .contact-page-wrapper,
body.contact-page-full main {
	max-width: 100% !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin: 0 !important;
	float: none !important;
}

body.contact-page-full .sidebar,
body.contact-page-full #right-sidebar,
body.contact-page-full #left-sidebar {
	display: none !important;
}

body.contact-page-full .site-content {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	grid-template-columns: 100% !important;
}

body.contact-page-full #primary {
	grid-column: 1 / -1 !important;
}

.contact-page-wrapper {
	width: 100% !important;
	max-width: 100% !important;
}

.contact-page {
	background: var(--road-bg-light);
	width: 100%;
}

.contact-hero {
	background: var(--road-gradient);
	padding: 4rem 0;
	text-align: center;
	color: #fff;
	width: 100%;
}

.contact-hero-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin: 0 0 0.5rem 0;
}

.contact-hero-subtitle {
	font-size: 1.125rem;
	opacity: 0.9;
	margin: 0;
}

.contact-main {
	padding: 4rem 0;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 3rem;
	align-items: start;
}

/* フォームセクション */
.contact-form-section {
	background: var(--road-bg-white);
	padding: 2.5rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
}

.contact-section-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--road-text);
	margin: 0 0 1rem 0;
}

.contact-form-lead {
	font-size: 0.9375rem;
	color: var(--road-text-light);
	margin: 0 0 2rem 0;
	line-height: 1.8;
}

/* フォーム要素 */
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-label {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--road-text);
}

.form-label .required {
	color: #dc2626;
	font-size: 0.875rem;
}

.form-input,
.form-select,
.form-textarea {
	width: 100%;
	padding: 0.875rem 1rem;
	font-size: 1rem;
	border: 1px solid var(--road-border);
	border-radius: var(--radius-md);
	background: var(--road-bg-white);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--road-accent);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
	resize: vertical;
	min-height: 150px;
}

.form-select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
}

/* チェックボックス */
.form-privacy {
	margin-top: 0.5rem;
}

.checkbox-label {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
	width: 20px;
	height: 20px;
	accent-color: var(--road-accent);
	cursor: pointer;
}

.checkbox-text {
	font-size: 0.9375rem;
	color: var(--road-text-light);
}

.checkbox-text a {
	color: var(--road-accent);
	text-decoration: underline;
}

/* 送信ボタン */
.form-submit {
	margin-top: 1rem;
}

.form-submit .btn {
	width: 100%;
	justify-content: center;
}

/* サイドバー */
.contact-sidebar {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-info-card,
.contact-note-card {
	background: var(--road-bg-white);
	padding: 1.75rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
}

.contact-info-title,
.contact-note-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--road-text);
	margin: 0 0 1.25rem 0;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--road-primary);
}

.contact-info-list {
	margin: 0;
}

.contact-info-list dt {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--road-text-muted);
	margin-top: 1rem;
}

.contact-info-list dt:first-child {
	margin-top: 0;
}

.contact-info-list dd {
	margin: 0.25rem 0 0 0;
	font-size: 0.9375rem;
	color: var(--road-text);
	line-height: 1.6;
}

.contact-flow-list {
	margin: 0;
	padding-left: 1.25rem;
}

.contact-flow-list li {
	font-size: 0.9375rem;
	color: var(--road-text);
	padding: 0.375rem 0;
	line-height: 1.5;
}

.contact-flow-list li::marker {
	color: var(--road-accent);
	font-weight: 700;
}

.contact-note-text {
	font-size: 0.875rem;
	color: var(--road-text-light);
	margin: 1rem 0 0 0;
	padding-top: 1rem;
	border-top: 1px solid var(--road-border);
	line-height: 1.7;
}

/* Contact Form 7 スタイル上書き */
.wpcf7 .wpcf7-form-control-wrap {
	display: block;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
	width: 100%;
	padding: 0.875rem 1rem;
	font-size: 1rem;
	border: 1px solid var(--road-border);
	border-radius: var(--radius-md);
	background: var(--road-bg-white);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
	outline: none;
	border-color: var(--road-accent);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.wpcf7 .wpcf7-submit {
	width: 100%;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	background: var(--road-gradient);
	border: none;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wpcf7 .wpcf7-submit:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.wpcf7 .wpcf7-not-valid-tip {
	color: #dc2626;
	font-size: 0.875rem;
	margin-top: 0.25rem;
}

.wpcf7 .wpcf7-response-output {
	margin: 1rem 0 0 0;
	padding: 1rem;
	border-radius: var(--radius-md);
}

/* お問い合わせページ レスポンシブ */
@media (max-width: 768px) {
	.contact-hero {
		padding: 3rem 0;
	}

	.contact-hero-title {
		font-size: 1.75rem;
	}

	.contact-main {
		padding: 2rem 0;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.contact-form-section {
		padding: 1.5rem;
	}

	.contact-sidebar {
		order: -1;
	}

	.contact-info-card,
	.contact-note-card {
		padding: 1.25rem;
	}
}

/* ========================================
   サービスページ
   ======================================== */

/* 全幅オーバーライド */
body.service-page-full .site-container,
body.service-page-full .inside-article,
body.service-page-full .grid-container,
body.service-page-full #page,
body.service-page-full #content,
body.service-page-full #primary,
body.service-page-full .site,
body.service-page-full .hentry,
body.service-page-full .entry-content,
body.service-page-full .service-page-wrapper,
body.service-page-full main {
	max-width: 100% !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin: 0 !important;
	float: none !important;
}

body.service-page-full .sidebar,
body.service-page-full #right-sidebar,
body.service-page-full #left-sidebar {
	display: none !important;
}

body.service-page-full .site-content {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
}

.service-page,
.service-detail-page {
	background: var(--road-bg-light);
}

/* サービスヒーロー */
.service-hero,
.service-detail-hero {
	background: var(--road-gradient);
	padding: 4rem 0;
	text-align: center;
	color: #fff;
}

.service-hero-title,
.service-detail-hero-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin: 0 0 0.5rem 0;
}

.service-hero-subtitle,
.service-detail-hero-lead {
	font-size: 1.125rem;
	opacity: 0.9;
	margin: 0;
}

.service-detail-category {
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	opacity: 0.8;
	margin: 0 0 0.5rem 0;
}

/* サービスヒーロー（画像付き） */
.service-detail-hero--with-image {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 6rem 0;
	min-height: 320px;
	display: flex;
	align-items: center;
}

.service-detail-hero--with-image .container {
	position: relative;
	z-index: 2;
}

.service-detail-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		100deg,
		rgba(30, 58, 95, 0.92) 0%,
		rgba(30, 58, 95, 0.85) 40%,
		rgba(30, 58, 95, 0.6) 70%,
		rgba(30, 58, 95, 0.4) 100%
	);
	z-index: 1;
}

/* サービス詳細画像 */
.service-detail-image {
	margin: 2rem 0;
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-md);
}

.service-detail-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.service-detail-image:hover img {
	transform: scale(1.02);
}

/* サービス一覧 */
.service-list-section {
	padding: 4rem 0;
}

.service-detail-card {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 3rem;
	align-items: center;
	background: var(--road-bg-white);
	padding: 3rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	margin-bottom: 2rem;
}

.service-detail-card.reverse {
	grid-template-columns: auto 1fr;
}

.service-detail-card.reverse .service-detail-content {
	order: 2;
}

.service-detail-card.reverse .service-detail-icon {
	order: 1;
}

.service-number {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--road-accent);
	background: rgba(37, 99, 235, 0.1);
	padding: 0.25rem 0.75rem;
	border-radius: 2rem;
	margin-bottom: 0.75rem;
}

.service-detail-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--road-text);
	margin: 0 0 1rem 0;
}

.service-detail-description {
	font-size: 1rem;
	color: var(--road-text-light);
	line-height: 1.8;
	margin: 0 0 1.5rem 0;
}

.service-detail-features {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.5rem;
}

.service-detail-features li {
	font-size: 0.9375rem;
	color: var(--road-text);
	padding-left: 1.5rem;
	position: relative;
}

.service-detail-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--road-accent);
	font-weight: 700;
}

.service-detail-icon {
	width: 160px;
	height: 160px;
	background: var(--road-bg-light);
	border-radius: var(--radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--road-primary);
}

/* サービスCTA */
.service-cta-section,
.service-bottom-cta {
	padding: 4rem 0;
}

.service-cta-box {
	background: var(--road-gradient);
	color: #fff;
	padding: 3rem;
	border-radius: var(--radius-lg);
	text-align: center;
}

.service-cta-title {
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0 0 1rem 0;
}

.service-cta-text {
	font-size: 1rem;
	opacity: 0.9;
	margin: 0 0 2rem 0;
	line-height: 1.8;
}

.service-cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.service-cta-box .btn-primary {
	background: #fff;
	color: var(--road-primary);
}

.service-cta-box .btn-primary:hover {
	background: rgba(255, 255, 255, 0.9);
}

.service-cta-box .btn-outline {
	border-color: #fff;
	color: #fff;
}

.service-cta-box .btn-outline:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* サービス詳細グリッド */
.service-detail-grid {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 3rem;
	align-items: start;
}

.service-detail-body {
	background: var(--road-bg-white);
	padding: 2.5rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
}

.service-detail-body h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--road-text);
	margin: 2rem 0 1rem 0;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--road-primary);
}

.service-detail-body h2:first-child {
	margin-top: 0;
}

.service-detail-body h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--road-text);
	margin: 1.5rem 0 0.75rem 0;
}

.service-detail-body p {
	font-size: 1rem;
	color: var(--road-text-light);
	line-height: 1.8;
	margin: 0 0 1rem 0;
}

.service-detail-body ul,
.service-detail-body ol {
	margin: 0 0 1.5rem 0;
	padding-left: 1.5rem;
}

.service-detail-body li {
	font-size: 1rem;
	color: var(--road-text);
	line-height: 1.8;
	margin-bottom: 0.5rem;
}

/* おすすめ・料金ボックス */
.service-recommend-box,
.service-price-box {
	background: var(--road-bg-light);
	padding: 1.5rem;
	border-radius: var(--radius-md);
	margin-top: 2rem;
}

.service-recommend-title,
.service-price-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--road-text);
	margin: 0 0 1rem 0;
}

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

.service-recommend-list li {
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
	border-bottom: 1px solid var(--road-border);
}

.service-recommend-list li:last-child {
	border-bottom: none;
}

.service-recommend-list li::before {
	content: '●';
	position: absolute;
	left: 0;
	color: var(--road-accent);
	font-size: 0.5rem;
	top: 0.85rem;
}

.service-price-note {
	font-size: 0.875rem;
	color: var(--road-text-muted);
	margin: 1rem 0 0 0;
}

/* サイドバー */
.service-detail-sidebar {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.service-sidebar-cta {
	background: var(--road-gradient);
	color: #fff;
	padding: 2rem;
	border-radius: var(--radius-lg);
	text-align: center;
}

.service-sidebar-title {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0 0 0.75rem 0;
}

.service-sidebar-text {
	font-size: 0.9375rem;
	opacity: 0.9;
	margin: 0 0 1.5rem 0;
	line-height: 1.6;
}

.service-sidebar-cta .btn {
	background: #fff;
	color: var(--road-primary);
}

.btn-block {
	display: block;
	width: 100%;
	text-align: center;
}

.service-sidebar-nav {
	background: var(--road-bg-white);
	padding: 1.5rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
}

.service-sidebar-nav .service-sidebar-title {
	color: var(--road-text);
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--road-primary);
	margin-bottom: 1rem;
}

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

.service-nav-list li {
	border-bottom: 1px solid var(--road-border);
}

.service-nav-list li:last-child {
	border-bottom: none;
}

.service-nav-list a {
	display: block;
	padding: 0.75rem 0;
	color: var(--road-text);
	text-decoration: none;
	font-size: 0.9375rem;
	transition: color 0.2s ease;
}

.service-nav-list a:hover {
	color: var(--road-accent);
}

/* サービスFAQ */
.service-faq-section {
	padding: 4rem 0;
	background: var(--road-bg-white);
}

.service-faq-list {
	max-width: 800px;
	margin: 0 auto;
}

/* サービスページ レスポンシブ */
@media (max-width: 768px) {
	.service-hero,
	.service-detail-hero {
		padding: 3rem 0;
	}

	.service-detail-hero--with-image {
		padding: 4rem 0;
		min-height: 280px;
	}

	.service-detail-hero-overlay {
		background: linear-gradient(
			180deg,
			rgba(30, 58, 95, 0.85) 0%,
			rgba(30, 58, 95, 0.9) 100%
		);
	}

	.service-detail-image {
		margin: 1.5rem 0;
	}

	.service-hero-title,
	.service-detail-hero-title {
		font-size: 1.75rem;
	}

	.service-detail-card {
		grid-template-columns: 1fr;
		padding: 2rem;
		gap: 1.5rem;
	}

	.service-detail-card.reverse .service-detail-content,
	.service-detail-card.reverse .service-detail-icon {
		order: unset;
	}

	.service-detail-icon {
		width: 100px;
		height: 100px;
		margin: 0 auto;
	}

	.service-detail-icon svg {
		width: 50px;
		height: 50px;
	}

	.service-detail-features {
		grid-template-columns: 1fr;
	}

	.service-detail-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.service-detail-body {
		padding: 1.5rem;
	}

	.service-detail-sidebar {
		order: -1;
	}

	.service-cta-box {
		padding: 2rem 1.5rem;
	}

	.service-cta-title {
		font-size: 1.375rem;
	}
}

/* ========================================
   印刷用スタイル
   ======================================== */
@media print {
	.hero-section {
		background: #1a5fb4 !important;
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
	}

	.btn {
		border: 1px solid currentColor;
	}

	.floating-shapes,
	.scroll-progress,
	.scroll-hint {
		display: none !important;
	}
}

/* ========================================
   記事テンプレート共通スタイル
   ======================================== */

/* SEO記事テンプレート */
.article-page-wrapper {
	background: var(--road-bg-light);
}

.article-header {
	background: var(--road-gradient);
	color: #fff;
	padding: 3rem 0;
}

.article-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	font-size: 0.875rem;
}

.article-category {
	background: rgba(255, 255, 255, 0.2);
	padding: 0.25rem 0.75rem;
	border-radius: 4px;
	font-weight: 500;
}

.article-date,
.article-updated {
	opacity: 0.9;
}

.article-title {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
	margin: 0;
}

.article-content {
	padding: 3rem 0;
}

.article-grid {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 3rem;
	align-items: start;
}

.article-body {
	background: var(--road-bg-white);
	padding: 2.5rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
}

/* 目次 */
.article-toc {
	background: var(--road-bg-gray);
	padding: 1.5rem;
	border-radius: var(--radius-md);
	margin-bottom: 2rem;
}

.toc-title {
	font-weight: 600;
	margin: 0 0 1rem 0;
	font-size: 0.9375rem;
}

/* 本文 */
.article-text h2 {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 2.5rem 0 1rem 0;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--road-primary);
}

.article-text h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 2rem 0 0.75rem 0;
}

.article-text p {
	margin-bottom: 1.25rem;
	line-height: 1.9;
}

.article-text ul,
.article-text ol {
	margin: 1.25rem 0;
	padding-left: 1.5rem;
}

.article-text li {
	margin-bottom: 0.5rem;
	line-height: 1.8;
}

/* 記事内CTA */
.article-cta-box {
	background: var(--road-bg-gray);
	padding: 2rem;
	border-radius: var(--radius-md);
	text-align: center;
	margin: 3rem 0 2rem 0;
	border-left: 4px solid var(--road-primary);
}

.article-cta-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 0.75rem 0;
	color: var(--road-primary);
}

.article-cta-text {
	margin: 0 0 1.25rem 0;
	color: var(--road-text-light);
}

/* タグ */
.article-tags {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--road-border);
}

.tags-label {
	font-size: 0.875rem;
	color: var(--road-text-muted);
	margin-right: 0.5rem;
}

.tag-link {
	display: inline-block;
	background: var(--road-bg-gray);
	color: var(--road-text-light);
	padding: 0.25rem 0.75rem;
	border-radius: 4px;
	font-size: 0.8125rem;
	margin: 0.25rem;
	text-decoration: none;
	transition: var(--transition);
}

.tag-link:hover {
	background: var(--road-primary);
	color: #fff;
}

/* サイドバー */
.article-sidebar {
	position: sticky;
	top: 2rem;
}

.sidebar-cta-box {
	background: var(--road-gradient);
	color: #fff;
	padding: 1.5rem;
	border-radius: var(--radius-md);
	text-align: center;
	margin-bottom: 1.5rem;
}

.sidebar-cta-title {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0 0 0.5rem 0;
}

.sidebar-cta-text {
	font-size: 0.875rem;
	opacity: 0.9;
	margin: 0 0 1rem 0;
}

.sidebar-services {
	background: var(--road-bg-white);
	padding: 1.5rem;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.sidebar-title {
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 1rem 0;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid var(--road-border);
}

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

.sidebar-nav li {
	border-bottom: 1px solid var(--road-border);
}

.sidebar-nav li:last-child {
	border-bottom: none;
}

.sidebar-nav a {
	display: block;
	padding: 0.75rem 0;
	color: var(--road-text);
	text-decoration: none;
	font-size: 0.9375rem;
	transition: var(--transition);
}

.sidebar-nav a:hover {
	color: var(--road-primary);
	padding-left: 0.5rem;
}

/* 関連記事 */
.related-articles {
	padding: 4rem 0;
	background: var(--road-bg-white);
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2rem;
}

.related-card {
	background: var(--road-bg-light);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: var(--transition);
}

.related-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}

.related-thumbnail img {
	width: 100%;
	height: 160px;
	object-fit: cover;
}

.related-content {
	padding: 1.25rem;
}

.related-title {
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 0.5rem 0;
	line-height: 1.5;
}

.related-title a {
	color: var(--road-text);
	text-decoration: none;
}

.related-title a:hover {
	color: var(--road-primary);
}

.related-date {
	font-size: 0.8125rem;
	color: var(--road-text-muted);
}

/* 底部CTA */
.article-bottom-cta {
	padding: 4rem 0;
	background: var(--road-bg-gray);
}

.bottom-cta-box {
	background: var(--road-bg-white);
	padding: 3rem;
	border-radius: var(--radius-lg);
	text-align: center;
	box-shadow: var(--shadow-md);
}

.bottom-cta-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 0 1rem 0;
}

.bottom-cta-text {
	color: var(--road-text-light);
	margin: 0 0 1.5rem 0;
}

.bottom-cta-buttons {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

/* コラム記事テンプレート */
.column-page-wrapper {
	background: var(--road-bg-white);
}

.column-article {
	padding: 4rem 0;
}

.container-narrow {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.column-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.column-meta {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1rem;
	font-size: 0.875rem;
}

.column-category {
	color: var(--road-primary);
	font-weight: 500;
}

.column-date {
	color: var(--road-text-muted);
}

.column-title {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	margin: 0;
}

.column-excerpt {
	margin-top: 1rem;
	color: var(--road-text-light);
	font-size: 1.0625rem;
}

.column-featured-image {
	margin: 0 0 2.5rem 0;
	border-radius: var(--radius-md);
	overflow: hidden;
}

.column-featured-image img {
	width: 100%;
	height: auto;
}

.column-content {
	font-size: 1.0625rem;
	line-height: 2;
}

.column-content h2 {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 3rem 0 1rem 0;
}

.column-content h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 2rem 0 0.75rem 0;
}

.column-content p {
	margin-bottom: 1.5rem;
}

.column-footer {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--road-border);
}

.column-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.column-author-box {
	margin-top: 3rem;
	padding: 2rem;
	background: var(--road-bg-light);
	border-radius: var(--radius-md);
}

.author-label {
	font-size: 0.8125rem;
	color: var(--road-text-muted);
	margin: 0 0 0.5rem 0;
}

.author-name {
	font-size: 1.125rem;
	font-weight: 600;
	margin: 0 0 0.5rem 0;
}

.author-desc {
	font-size: 0.9375rem;
	color: var(--road-text-light);
	margin: 0;
}

.column-cta {
	margin-top: 3rem;
	padding: 2rem;
	background: var(--road-bg-gray);
	border-radius: var(--radius-md);
	text-align: center;
	border-left: 4px solid var(--road-primary);
}

.column-cta .cta-text {
	margin: 0 0 1rem 0;
}

.column-related {
	padding: 3rem 0;
	background: var(--road-bg-light);
}

.column-related .related-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0 0 1.5rem 0;
}

.related-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.related-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
	border-bottom: 1px solid var(--road-border);
	text-decoration: none;
	transition: var(--transition);
}

.related-item:hover {
	padding-left: 0.5rem;
}

.related-item-title {
	color: var(--road-text);
	font-weight: 500;
}

.related-item:hover .related-item-title {
	color: var(--road-primary);
}

.related-item-date {
	font-size: 0.8125rem;
	color: var(--road-text-muted);
	flex-shrink: 0;
	margin-left: 1rem;
}

/* 記事テンプレート レスポンシブ */
@media (max-width: 768px) {
	.article-title {
		font-size: 1.5rem;
	}

	.article-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.article-body {
		padding: 1.5rem;
	}

	.article-sidebar {
		position: static;
	}

	.related-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.related-thumbnail img {
		height: 200px;
	}

	.bottom-cta-box {
		padding: 2rem 1.5rem;
	}

	.column-title {
		font-size: 1.5rem;
	}

	.column-content {
		font-size: 1rem;
	}
}

/* ==========================================
   A-002 専用テンプレート CSS
   中小企業のSEO対策
   ========================================== */

.article-a002 {
	background: #f8fafc;
}

/* ヒーローセクション */
.a002-hero {
	position: relative;
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 6rem 1.5rem;
	overflow: hidden;
}

.a002-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 50%, #1e3a5f 100%);
	z-index: 1;
}

.a002-hero-bg::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
	background-size: 30px 30px;
	opacity: 0.5;
}

.a002-hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
}

.a002-category {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
	backdrop-filter: blur(10px);
}

.a002-title {
	color: #fff;
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 1.5rem;
}

.a002-title-sub {
	font-size: 0.7em;
	font-weight: 500;
	opacity: 0.9;
}

.a002-lead {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.125rem;
	margin-bottom: 2rem;
}

.a002-meta {
	display: flex;
	justify-content: center;
	gap: 2rem;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
}

/* イントロセクション */
.a002-intro {
	padding: 4rem 1.5rem;
	background: #fff;
}

.a002-intro-box {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.a002-question {
	font-size: 1.5rem;
	color: #64748b;
	font-style: italic;
	margin-bottom: 1.5rem;
}

.a002-intro-box p {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #334155;
}

.a002-answer {
	background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
	padding: 2rem;
	border-radius: 12px;
	margin-top: 1.5rem;
	border-left: 4px solid #1e3a5f;
}

/* 共通セクション */
.a002-section {
	padding: 5rem 1.5rem;
}

.a002-section:nth-child(even) {
	background: #fff;
}

.a002-section-title {
	text-align: center;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	color: #1e3a5f;
	margin-bottom: 3rem;
	font-weight: 700;
}

.a002-section-lead {
	text-align: center;
	font-size: 1.125rem;
	color: #475569;
	max-width: 800px;
	margin: 0 auto 3rem;
	line-height: 1.8;
}

/* メリットカード */
.a002-merit-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.a002-merit-card {
	background: #fff;
	padding: 2.5rem 2rem;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s, box-shadow 0.3s;
}

.a002-merit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.a002-merit-icon {
	color: #1e3a5f;
	margin-bottom: 1.5rem;
}

.a002-merit-card h3 {
	font-size: 1.25rem;
	color: #1e3a5f;
	margin-bottom: 0.75rem;
}

.a002-merit-card p {
	color: #64748b;
	line-height: 1.6;
}

/* ハイライトボックス */
.a002-highlight-box {
	background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
	color: #fff;
	padding: 2.5rem;
	border-radius: 16px;
	max-width: 900px;
	margin: 0 auto;
}

.a002-highlight-box h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #fff;
}

.a002-highlight-box p {
	line-height: 1.8;
	opacity: 0.95;
}

/* 7ステップ */
.a002-steps-list {
	max-width: 900px;
	margin: 0 auto;
}

.a002-step-item {
	display: flex;
	gap: 2rem;
	margin-bottom: 4rem;
	padding-bottom: 4rem;
	border-bottom: 1px solid #e2e8f0;
}

.a002-step-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.a002-step-number {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
	color: #fff;
	font-size: 1.75rem;
	font-weight: 700;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.a002-step-content {
	flex: 1;
}

.a002-step-content h3 {
	font-size: 1.5rem;
	color: #1e3a5f;
	margin-bottom: 1rem;
}

.a002-step-content > p {
	font-size: 1.1rem;
	color: #475569;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

/* ステップ内のボックス */
.a002-step-detail {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.a002-do-box,
.a002-dont-box {
	padding: 1.5rem;
	border-radius: 12px;
}

.a002-do-box {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
}

.a002-dont-box {
	background: #fef2f2;
	border: 1px solid #fecaca;
}

.a002-do-box h4 {
	color: #166534;
}

.a002-dont-box h4 {
	color: #991b1b;
}

.a002-step-detail h4 {
	font-size: 1rem;
	margin-bottom: 1rem;
}

.a002-step-detail ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.a002-step-detail li {
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
	line-height: 1.6;
}

.a002-do-box li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #16a34a;
	font-weight: bold;
}

.a002-dont-box li::before {
	content: '×';
	position: absolute;
	left: 0;
	color: #dc2626;
	font-weight: bold;
}

.a002-step-detail small {
	display: block;
	color: #64748b;
	font-size: 0.85rem;
	margin-top: 0.25rem;
}

/* ティップスボックス */
.a002-tips-box {
	background: #f1f5f9;
	padding: 1.5rem;
	border-radius: 12px;
	margin-top: 1.5rem;
}

.a002-tips-box h4 {
	color: #1e3a5f;
	font-size: 1rem;
	margin-bottom: 1rem;
}

.a002-tips-box ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.a002-tips-box li {
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
	color: #334155;
}

.a002-tips-box li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #1e3a5f;
	font-weight: bold;
}

/* 見出しガイド */
.a002-heading-guide {
	background: #fff;
	padding: 1.5rem;
	border-radius: 12px;
	margin-top: 1.5rem;
	border: 1px solid #e2e8f0;
}

.a002-heading-guide h4 {
	color: #1e3a5f;
	margin-bottom: 1rem;
}

.a002-heading-example {
	margin-bottom: 1rem;
}

.a002-h-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem;
	border-radius: 8px;
	margin-bottom: 0.5rem;
}

.a002-h-item:nth-child(1) {
	background: #1e3a5f;
	color: #fff;
}

.a002-h-item:nth-child(2) {
	background: #3b5998;
	color: #fff;
}

.a002-h-item:nth-child(3) {
	background: #5a7fc4;
	color: #fff;
}

.a002-h-tag {
	background: rgba(255, 255, 255, 0.2);
	padding: 0.25rem 0.75rem;
	border-radius: 4px;
	font-family: monospace;
	font-weight: bold;
}

.a002-note {
	color: #64748b;
	font-size: 0.9rem;
	margin: 0;
}

/* クオリティグリッド */
.a002-quality-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.a002-quality-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background: #fff;
	padding: 1rem;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
}

.a002-check-icon {
	color: #16a34a;
	font-weight: bold;
	font-size: 1.25rem;
}

/* 2カラム */
.a002-two-col {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.a002-effect-box,
.a002-howto-box {
	background: #fff;
	padding: 1.5rem;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
}

.a002-effect-box h4,
.a002-howto-box h4 {
	color: #1e3a5f;
	margin-bottom: 1rem;
}

.a002-effect-box ul,
.a002-howto-box ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.a002-effect-box li,
.a002-howto-box li {
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
	color: #475569;
}

.a002-effect-box li::before,
.a002-howto-box li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: #1e3a5f;
}

/* スピードティップス */
.a002-speed-tips {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.a002-speed-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: #fff;
	padding: 1.25rem;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
}

.a002-speed-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
}

.a002-speed-item strong {
	display: block;
	color: #1e3a5f;
	margin-bottom: 0.25rem;
}

.a002-speed-item small {
	color: #64748b;
	font-size: 0.85rem;
}

.a002-tool-box {
	background: #eff6ff;
	padding: 1rem 1.5rem;
	border-radius: 8px;
	border-left: 4px solid #1e3a5f;
}

.a002-tool-box a {
	color: #1e3a5f;
	font-weight: 600;
}

/* モバイルチェック */
.a002-mobile-check {
	background: #fff;
	padding: 1.5rem;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	margin-bottom: 1.5rem;
}

.a002-mobile-check h4 {
	color: #1e3a5f;
	margin-bottom: 1rem;
}

.a002-check-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 0.75rem;
}

.a002-check-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem;
	background: #f8fafc;
	border-radius: 8px;
}

.a002-check-item span:first-child {
	font-size: 1.25rem;
}

/* インフォボックス */
.a002-info-box {
	background: #f0f9ff;
	padding: 1.5rem;
	border-radius: 12px;
	border: 1px solid #bae6fd;
}

.a002-info-box h4 {
	color: #0369a1;
	margin-bottom: 0.75rem;
}

.a002-info-box p {
	color: #334155;
	line-height: 1.7;
	margin: 0;
}

/* GBPフィーチャー */
.a002-gbp-features {
	background: #fff;
	padding: 1.5rem;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	margin-bottom: 1.5rem;
}

.a002-gbp-features h4 {
	color: #1e3a5f;
	margin-bottom: 1rem;
}

.a002-feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 0.75rem;
}

.a002-feature-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem;
	background: #f8fafc;
	border-radius: 8px;
}

.a002-feature-icon {
	font-size: 1.25rem;
}

/* MEOボックス */
.a002-meo-box {
	background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
	padding: 1.5rem;
	border-radius: 12px;
	border: 1px solid #bbf7d0;
}

.a002-meo-box h4 {
	color: #166534;
	margin-bottom: 0.75rem;
}

.a002-meo-box p {
	color: #334155;
	margin-bottom: 1rem;
}

.a002-link {
	display: inline-flex;
	align-items: center;
	color: #166534;
	font-weight: 600;
	text-decoration: none;
}

.a002-link:hover {
	text-decoration: underline;
}

/* よくある失敗 */
.a002-mistakes {
	background: #fef2f2 !important;
}

.a002-mistake-list {
	max-width: 800px;
	margin: 0 auto;
}

.a002-mistake-item {
	display: flex;
	gap: 1.5rem;
	background: #fff;
	padding: 1.5rem;
	border-radius: 12px;
	margin-bottom: 1rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.a002-mistake-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
}

.a002-mistake-content h3 {
	font-size: 1.1rem;
	color: #991b1b;
	margin-bottom: 0.5rem;
}

.a002-mistake-content p {
	color: #475569;
	line-height: 1.7;
	margin: 0;
}

/* まとめ */
.a002-summary-box {
	background: #fff;
	padding: 3rem;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	max-width: 700px;
	margin: 0 auto;
}

.a002-summary-list {
	padding-left: 0;
	counter-reset: summary-counter;
	list-style: none;
}

.a002-summary-list li {
	counter-increment: summary-counter;
	padding: 1rem 0;
	padding-left: 3rem;
	position: relative;
	border-bottom: 1px solid #f1f5f9;
	font-size: 1.1rem;
	color: #334155;
}

.a002-summary-list li:last-child {
	border-bottom: none;
}

.a002-summary-list li::before {
	content: counter(summary-counter);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 2rem;
	height: 2rem;
	background: #1e3a5f;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 0.875rem;
}

.a002-summary-message {
	text-align: center;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 2px solid #1e3a5f;
	font-size: 1.1rem;
	color: #334155;
	line-height: 1.8;
}

/* CTA */
.a002-cta {
	background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
	padding: 5rem 1.5rem;
}

.a002-cta-box {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.a002-cta-title {
	color: #fff;
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

.a002-cta-questions {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.25rem;
	font-style: italic;
	margin-bottom: 1.5rem;
}

.a002-cta-text {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 2rem;
}

.a002-cta-btn {
	display: inline-block;
	background: #fff;
	color: #1e3a5f;
	padding: 1.25rem 3rem;
	border-radius: 50px;
	font-size: 1.125rem;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.3s, box-shadow 0.3s;
}

.a002-cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	color: #1e3a5f;
}

/* FAQ */
.a002-faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.a002-faq-item {
	background: #fff;
	padding: 2rem;
	border-radius: 12px;
	margin-bottom: 1rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.a002-faq-q {
	font-size: 1.1rem;
	color: #1e3a5f;
	margin-bottom: 1rem;
}

.a002-faq-a {
	color: #475569;
	line-height: 1.8;
	margin: 0;
	padding-left: 1.5rem;
	border-left: 3px solid #e2e8f0;
}

/* 関連記事 */
.a002-related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.a002-related-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	text-decoration: none;
	transition: transform 0.3s, box-shadow 0.3s;
}

.a002-related-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.a002-related-content {
	padding: 1.5rem;
}

.a002-related-cat {
	display: inline-block;
	background: #eff6ff;
	color: #1e3a5f;
	padding: 0.25rem 0.75rem;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.a002-related-card h3 {
	font-size: 1rem;
	color: #1e3a5f;
	line-height: 1.5;
	margin: 0;
}

/* レスポンシブ */
@media (max-width: 768px) {
	.a002-hero {
		min-height: 50vh;
		padding: 4rem 1rem;
	}

	.a002-meta {
		flex-direction: column;
		gap: 0.5rem;
	}

	.a002-step-item {
		flex-direction: column;
		gap: 1rem;
	}

	.a002-step-number {
		width: 50px;
		height: 50px;
		font-size: 1.5rem;
	}

	.a002-step-detail {
		grid-template-columns: 1fr;
	}

	.a002-summary-box {
		padding: 2rem 1.5rem;
	}

	.sp-only {
		display: block;
	}
}

@media (min-width: 769px) {
	.sp-only {
		display: none;
	}
}

/* ==========================================
   共通記事テンプレート CSS
   ========================================== */

.article-template {
	background: #f8fafc;
}

/* ヒーローセクション（カラーバリエーション） */
.article-hero {
	position: relative;
	min-height: 55vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 5rem 1.5rem;
	overflow: hidden;
}

.article-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.article-hero--green .article-hero-bg {
	background: linear-gradient(135deg, #166534 0%, #22c55e 100%);
}

.article-hero--blue .article-hero-bg {
	background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.article-hero--purple .article-hero-bg {
	background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.article-hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
}

.article-category-tag {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
}

.article-hero-title {
	color: #fff;
	font-size: clamp(1.75rem, 4.5vw, 3rem);
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 1.5rem;
}

.article-hero-sub {
	font-size: 0.7em;
	font-weight: 500;
	opacity: 0.9;
}

.article-hero-lead {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
}

.article-hero-meta {
	display: flex;
	justify-content: center;
	gap: 2rem;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
}

/* イントロ */
.article-intro {
	padding: 4rem 1.5rem;
	background: #fff;
}

.article-intro-box {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.article-question {
	font-size: 1.35rem;
	color: #64748b;
	font-style: italic;
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.article-intro-box > p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #334155;
}

.article-answer {
	background: #f0fdf4;
	padding: 1.5rem 2rem;
	border-radius: 12px;
	margin-top: 1.5rem;
	border-left: 4px solid #22c55e;
}

/* 共通セクション */
.article-section {
	padding: 4rem 1.5rem;
}

.article-section--gray {
	background: #f1f5f9;
}

.article-section--warning {
	background: #fef2f2;
}

.article-section-title {
	text-align: center;
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	color: #1e293b;
	margin-bottom: 2.5rem;
	font-weight: 700;
}

.article-section-lead {
	text-align: center;
	font-size: 1.1rem;
	color: #475569;
	max-width: 800px;
	margin: 0 auto 2.5rem;
	line-height: 1.8;
}

/* ステップリスト */
.article-steps-list {
	max-width: 850px;
	margin: 0 auto;
}

.article-step-item {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 3rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid #e2e8f0;
}

.article-step-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.article-step-number {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #1e3a5f 0%, #3b82f6 100%);
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.article-step-content {
	flex: 1;
}

.article-step-content h3 {
	font-size: 1.35rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 0.75rem;
}

.article-step-content > p {
	font-size: 1.05rem;
	color: #475569;
	line-height: 1.8;
	margin-bottom: 1.25rem;
}

/* カード系 */
.article-merit-grid,
.article-feature-grid,
.article-tips-grid,
.article-stats-grid,
.article-points-grid,
.article-usecase-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.article-merit-card,
.article-feature-card,
.article-tip-card,
.article-stat-card,
.article-point-card,
.article-usecase-card {
	background: #fff;
	padding: 2rem 1.5rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s, box-shadow 0.3s;
}

.article-merit-card:hover,
.article-feature-card:hover,
.article-tip-card:hover,
.article-point-card:hover,
.article-usecase-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.article-feature-icon,
.article-usecase-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.article-stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: #1e3a5f;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.article-point-number {
	font-size: 2rem;
	font-weight: 700;
	color: #3b82f6;
	margin-bottom: 0.75rem;
}

/* ボックス系 */
.article-highlight-box,
.article-info-box,
.article-tips-box,
.article-checklist,
.article-warning-box,
.article-do-box {
	padding: 1.5rem;
	border-radius: 12px;
	margin: 1.5rem 0;
}

.article-highlight-box {
	background: linear-gradient(135deg, #1e3a5f 0%, #3b82f6 100%);
	color: #fff;
}

.article-highlight-box--green {
	background: linear-gradient(135deg, #166534 0%, #22c55e 100%);
}

.article-highlight-box h3 {
	color: #fff;
	margin-bottom: 1rem;
}

.article-highlight-box ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.article-highlight-box li {
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
}

.article-highlight-box li::before {
	content: '✓';
	position: absolute;
	left: 0;
}

.article-info-box {
	background: #eff6ff;
	border: 1px solid #bfdbfe;
}

.article-info-box h3 {
	font-size: 1.2rem;
	color: #1e3a5f;
	margin: 0 0 1.25rem 0;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid #bfdbfe;
}

/* Factorグリッド（費用要素など） */
.article-factor-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.article-factor-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 1rem;
	background: #fff;
	border-radius: 10px;
	border: 1px solid #e2e8f0;
}

.article-factor-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0f9ff;
	border-radius: 10px;
}

.article-factor-item strong {
	display: block;
	font-size: 0.95rem;
	color: #1e293b;
	margin-bottom: 0.25rem;
}

.article-factor-item p {
	font-size: 0.85rem;
	color: #64748b;
	margin: 0;
	line-height: 1.5;
}

@media (max-width: 600px) {
	.article-factor-grid {
		grid-template-columns: 1fr;
	}
}

.article-tips-box {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
}

.article-warning-box {
	background: #fef2f2;
	border: 1px solid #fecaca;
}

.article-do-box {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
}

.article-checklist ul,
.article-tips-box ul,
.article-warning-box ul,
.article-do-box ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.article-checklist li,
.article-tips-box li,
.article-warning-box li,
.article-do-box li {
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
}

.article-checklist li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #22c55e;
}

.article-warning-box li::before {
	content: '×';
	position: absolute;
	left: 0;
	color: #ef4444;
}

.article-do-box li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: #22c55e;
}

/* 2カラム */
.article-two-col {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

/* 投稿タイプカード */
.article-post-types {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	margin: 1.5rem 0;
}

.article-post-type {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem;
	background: #fff;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
}

.article-post-type:hover {
	border-color: #3b82f6;
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
	transform: translateY(-2px);
}

.article-post-icon {
	font-size: 1.75rem;
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f8fafc;
	border-radius: 10px;
}

.article-post-type strong {
	display: block;
	font-size: 1rem;
	color: var(--road-text);
	margin-bottom: 0.25rem;
}

.article-post-type p {
	font-size: 0.875rem;
	color: var(--road-text-muted);
	margin: 0;
	line-height: 1.5;
}

.article-note {
	font-size: 0.9rem;
	color: var(--road-accent);
	font-style: italic;
	margin-top: 1rem;
	padding-left: 1rem;
	border-left: 3px solid var(--road-accent);
}

/* サインアップオプション（登録方法など） */
.article-signup-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
	margin: 1.5rem 0;
}

.article-signup-option {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem;
	background: #fff;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
}

.article-signup-option:hover {
	border-color: #3b82f6;
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
	transform: translateY(-2px);
}

.article-signup-icon {
	font-size: 1.75rem;
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	border-radius: 12px;
}

.article-signup-option strong {
	display: block;
	font-size: 1rem;
	color: var(--road-text);
	margin-bottom: 0.25rem;
}

.article-signup-option p {
	font-size: 0.875rem;
	color: var(--road-text-muted);
	margin: 0;
	line-height: 1.5;
}

/* 使い方ガイド */
.article-usage-guide {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.article-usage-item {
	background: #fff;
	padding: 2rem;
	border-radius: 16px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	border-left: 4px solid var(--road-accent);
}

.article-usage-item h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--road-primary);
	margin: 0 0 0.75rem 0;
}

.article-usage-item > p {
	color: #475569;
	line-height: 1.8;
	margin: 0;
}

/* 入力例ボックス */
.article-example-box {
	margin-top: 1.25rem;
	padding: 1.25rem;
	background: #f8fafc;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
}

.article-example-box h4 {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--road-text-muted);
	margin: 0 0 0.75rem 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* チャット例 */
.article-chat-example {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.article-chat-user {
	background: linear-gradient(135deg, #1e3a5f 0%, #3b82f6 100%);
	color: #fff;
	padding: 0.75rem 1rem;
	border-radius: 18px 18px 4px 18px;
	font-size: 0.95rem;
	display: inline-block;
	align-self: flex-end;
	max-width: 85%;
}

/* NAPボックス */
.article-nap-box {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 1.5rem;
	margin: 1.5rem 0;
}

.article-nap-box h4 {
	font-size: 1.1rem;
	color: var(--road-text);
	margin: 0 0 1rem 0;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid #e2e8f0;
}

.article-nap-example {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1rem;
	margin: 1rem 0;
}

.article-nap-bad,
.article-nap-good {
	padding: 1rem;
	border-radius: 8px;
}

.article-nap-bad {
	background: #fef2f2;
	border: 1px solid #fecaca;
}

.article-nap-good {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
}

.article-nap-label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	margin-bottom: 0.5rem;
}

.article-nap-bad .article-nap-label {
	background: #ef4444;
	color: #fff;
}

.article-nap-good .article-nap-label {
	background: #22c55e;
	color: #fff;
}

.article-nap-bad p,
.article-nap-good p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
}

.article-nap-box > p:last-child {
	margin-top: 1rem;
	margin-bottom: 0;
	color: var(--road-text-muted);
	font-size: 0.9rem;
}

/* 比較ボックス */
.article-comparison-box {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
	margin: 2rem 0;
}

.article-comparison-item {
	background: #fff;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	flex: 1;
	min-width: 200px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.article-comparison-item--highlight {
	background: linear-gradient(135deg, #166534 0%, #22c55e 100%);
	color: #fff;
}

.article-comparison-item--highlight h3 {
	color: #fff;
}

.article-comparison-vs {
	font-size: 1.5rem;
	font-weight: 700;
	color: #94a3b8;
}

.article-comparison-target {
	display: inline-block;
	background: rgba(0, 0, 0, 0.1);
	padding: 0.25rem 0.75rem;
	border-radius: 4px;
	font-size: 0.85rem;
	margin-top: 0.5rem;
}

/* プラン比較 */
.article-plan-comparison {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	max-width: 800px;
	margin: 0 auto;
}

.article-plan-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	position: relative;
}

.article-plan-card--recommended {
	transform: scale(1.05);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.article-plan-badge {
	position: absolute;
	top: -10px;
	right: 20px;
	background: #f59e0b;
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 700;
}

.article-plan-header {
	padding: 2rem;
	text-align: center;
	color: #fff;
}

.article-plan-header--free {
	background: #64748b;
}

.article-plan-header--plus {
	background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.article-plan-header h3 {
	color: #fff;
	margin-bottom: 0.5rem;
}

.article-plan-price {
	font-size: 2rem;
	font-weight: 700;
}

.article-plan-body {
	padding: 2rem;
}

.article-plan-body ul {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem;
}

.article-plan-body li {
	padding: 0.75rem 0;
	padding-left: 1.5rem;
	position: relative;
	border-bottom: 1px solid #f1f5f9;
}

.article-plan-body li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #22c55e;
}

.article-plan-recommend {
	text-align: center;
	color: #64748b;
	font-size: 0.9rem;
}

/* 価格テーブル */
.article-price-table {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
	margin-bottom: 2rem;
}

.article-price-row {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1.5fr;
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid #f1f5f9;
	align-items: center;
}

.article-price-row--header {
	background: #1e3a5f;
	color: #fff;
	font-weight: 600;
}

.article-price-type strong {
	display: block;
	color: #1e293b;
}

.article-price-type small {
	color: #64748b;
	font-size: 0.85rem;
}

.article-price-amount {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1e3a5f;
}

.article-price-target {
	color: #475569;
	font-size: 0.95rem;
}

/* 制作方法カード */
.article-method-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.article-method-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	position: relative;
}

.article-method-card--recommended {
	transform: scale(1.02);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.article-method-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #f59e0b;
	color: #fff;
	padding: 0.25rem 0.75rem;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 700;
}

.article-method-header {
	padding: 1.5rem;
	text-align: center;
	color: #fff;
}

.article-method-header--green {
	background: #22c55e;
}

.article-method-header--blue {
	background: #3b82f6;
}

.article-method-header--purple {
	background: #8b5cf6;
}

.article-method-price {
	font-size: 1.5rem;
	font-weight: 700;
}

.article-method-header h3 {
	color: #fff;
	margin: 0.5rem 0 0;
	font-size: 1.1rem;
}

.article-method-body {
	padding: 1.5rem;
}

.article-method-pros,
.article-method-cons {
	margin-bottom: 1rem;
}

.article-method-pros h4 {
	color: #22c55e;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.article-method-cons h4 {
	color: #ef4444;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.article-method-pros ul,
.article-method-cons ul {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 0.9rem;
}

.article-method-pros li,
.article-method-cons li {
	padding: 0.35rem 0;
	padding-left: 1.25rem;
	position: relative;
}

.article-method-pros li::before {
	content: '○';
	position: absolute;
	left: 0;
	color: #22c55e;
}

.article-method-cons li::before {
	content: '△';
	position: absolute;
	left: 0;
	color: #f59e0b;
}

/* 失敗リスト */
.article-mistake-list {
	max-width: 800px;
	margin: 0 auto;
}

.article-mistake-item {
	display: flex;
	gap: 1.5rem;
	background: #fff;
	padding: 1.5rem;
	border-radius: 12px;
	margin-bottom: 1rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.article-mistake-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
}

.article-mistake-content h3 {
	font-size: 1.1rem;
	color: #991b1b;
	margin-bottom: 0.5rem;
}

.article-mistake-content p {
	color: #475569;
	line-height: 1.7;
	margin: 0;
}

/* まとめボックス */
.article-summary-box {
	background: #fff;
	padding: 2.5rem;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	max-width: 700px;
	margin: 0 auto;
}

.article-summary-list {
	padding-left: 0;
	list-style: none;
	margin-bottom: 1.5rem;
}

.article-summary-list li {
	padding: 0.75rem 0;
	padding-left: 2.5rem;
	position: relative;
	border-bottom: 1px solid #f1f5f9;
	counter-increment: summary;
}

.article-summary-list li::before {
	content: counter(summary);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1.75rem;
	height: 1.75rem;
	background: #1e3a5f;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	font-weight: 700;
}

.article-summary-points {
	margin-bottom: 1.5rem;
}

.article-summary-point {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid #f1f5f9;
}

.article-summary-num {
	width: 2rem;
	height: 2rem;
	background: #1e3a5f;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	flex-shrink: 0;
}

.article-summary-checklist {
	margin-bottom: 1.5rem;
}

.article-summary-check {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.75rem 0;
}

.article-summary-check span {
	color: #22c55e;
	font-weight: 700;
	font-size: 1.25rem;
}

.article-summary-message {
	text-align: center;
	padding-top: 1.5rem;
	border-top: 2px solid #1e3a5f;
	font-size: 1.05rem;
	color: #334155;
	line-height: 1.8;
}

/* CTA */
.article-cta {
	padding: 4rem 1.5rem;
}

.article-cta--green {
	background: linear-gradient(135deg, #166534 0%, #22c55e 100%);
}

.article-cta--blue {
	background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.article-cta--purple {
	background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.article-cta-box {
	text-align: center;
	max-width: 650px;
	margin: 0 auto;
	background: #fff;
	padding: 2.5rem;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.article-cta-title {
	color: #1e293b;
	font-size: 1.75rem;
	margin-bottom: 1.25rem;
}

.article-cta-text {
	font-size: 1.1rem;
	color: #475569;
	margin-bottom: 1rem;
	line-height: 1.7;
}

.article-cta-box > p {
	color: #64748b;
	margin-bottom: 1.5rem;
}

.article-cta-btn {
	display: inline-block;
	background: linear-gradient(135deg, #1e3a5f 0%, #3b82f6 100%);
	color: #fff;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	font-size: 1.05rem;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.3s, box-shadow 0.3s;
}

.article-cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	color: #fff;
}

/* 色別CTAボタン */
.article-cta--green .article-cta-btn {
	background: linear-gradient(135deg, #166534 0%, #22c55e 100%);
}

.article-cta--purple .article-cta-btn {
	background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

/* FAQ */
.article-faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.article-faq-item {
	background: #fff;
	padding: 1.75rem;
	border-radius: 12px;
	margin-bottom: 1rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.article-faq-q {
	font-size: 1.05rem;
	color: #1e293b;
	margin-bottom: 0.75rem;
}

.article-faq-a {
	color: #475569;
	line-height: 1.8;
	margin: 0;
	padding-left: 1.25rem;
	border-left: 3px solid #e2e8f0;
}

/* 関連記事 */
.article-related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.article-related-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	text-decoration: none;
	transition: transform 0.3s, box-shadow 0.3s;
}

.article-related-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.article-related-content {
	padding: 1.5rem;
}

.article-related-cat {
	display: inline-block;
	background: #eff6ff;
	color: #1e3a5f;
	padding: 0.25rem 0.75rem;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.article-related-card h3 {
	font-size: 0.95rem;
	color: #1e293b;
	line-height: 1.5;
	margin: 0;
}

/* ユースケースカード */
.article-usecase-card {
	text-align: left;
}

.article-usecase-card h3 {
	margin: 0.5rem 0;
}

.article-usecase-prompt {
	background: #f8fafc;
	padding: 0.75rem;
	border-radius: 8px;
	font-size: 0.85rem;
	margin-top: 1rem;
}

.article-usecase-prompt span {
	display: block;
	color: #64748b;
	font-size: 0.75rem;
	margin-bottom: 0.25rem;
}

/* Tipsリスト（コツ・ポイント） */
.article-tips-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	max-width: 800px;
	margin: 0 auto;
}

.article-tip-item {
	display: flex;
	gap: 1.5rem;
	background: #fff;
	padding: 1.75rem;
	border-radius: 16px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.article-tip-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: #3b82f6;
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.article-tip-content {
	flex: 1;
}

.article-tip-content h3 {
	font-size: 1.15rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 0.5rem 0;
}

.article-tip-content > p {
	color: #475569;
	line-height: 1.7;
	margin: 0;
}

.article-tip-example {
	margin-top: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.article-tip-bad,
.article-tip-good {
	padding: 0.75rem 1rem;
	border-radius: 8px;
	font-size: 0.9rem;
	line-height: 1.6;
}

.article-tip-bad {
	background: #fef2f2;
	border-left: 3px solid #ef4444;
}

.article-tip-good {
	background: #f0fdf4;
	border-left: 3px solid #22c55e;
}

.article-tip-bad span,
.article-tip-good span {
	font-weight: 700;
	margin-right: 0.5rem;
}

.article-tip-bad span {
	color: #ef4444;
}

.article-tip-good span {
	color: #22c55e;
}

@media (max-width: 600px) {
	.article-tip-item {
		flex-direction: column;
		gap: 1rem;
	}

	.article-tip-number {
		width: 40px;
		height: 40px;
		font-size: 1.25rem;
	}
}

/* ノート */
.article-note {
	color: #64748b;
	font-size: 0.9rem;
	font-style: italic;
}

/* サクセスボックス */
.article-success-box {
	background: #f0fdf4;
	border: 2px solid #22c55e;
	padding: 1.5rem;
	border-radius: 12px;
	text-align: center;
}

.article-success-icon {
	font-size: 2.5rem;
	display: block;
	margin-bottom: 0.75rem;
}

/* レスポンシブ */
@media (max-width: 768px) {
	.article-hero {
		min-height: 45vh;
		padding: 3.5rem 1rem;
	}

	.article-hero-meta {
		flex-direction: column;
		gap: 0.5rem;
	}

	.article-step-item {
		flex-direction: column;
		gap: 1rem;
	}

	.article-step-number {
		width: 45px;
		height: 45px;
		font-size: 1.25rem;
	}

	.article-price-row {
		grid-template-columns: 1fr;
		gap: 0.5rem;
		text-align: center;
	}

	.article-plan-card--recommended {
		transform: none;
	}

	.article-comparison-box {
		flex-direction: column;
	}

	.article-comparison-vs {
		transform: rotate(90deg);
	}

	/* 使い方ガイド */
	.article-usage-item {
		padding: 1rem;
	}

	.article-usage-item h3 {
		font-size: 1.05rem;
	}

	/* チャット例 */
	.article-chat-user {
		max-width: 100%;
		align-self: stretch;
		font-size: 0.875rem;
		padding: 0.6rem 0.85rem;
		border-radius: 10px;
	}

	.article-example-box {
		padding: 0.85rem;
	}

	/* 投稿タイプ・サインアップオプション */
	.article-post-types,
	.article-signup-options {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.article-post-type,
	.article-signup-option {
		padding: 0.85rem;
		gap: 0.75rem;
	}

	.article-post-icon,
	.article-signup-icon {
		width: 40px;
		height: 40px;
		font-size: 1.25rem;
	}

	/* Factorグリッド */
	.article-factor-grid {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.article-factor-item {
		padding: 0.85rem;
		gap: 0.6rem;
	}

	.article-factor-icon {
		width: 36px;
		height: 36px;
		font-size: 1.1rem;
	}

	/* NAP */
	.article-nap-box {
		padding: 1rem;
	}

	.article-nap-example {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.article-nap-bad,
	.article-nap-good {
		padding: 0.75rem;
	}

	/* Tipsリスト */
	.article-tips-list {
		gap: 0.85rem;
	}

	.article-tip-item {
		padding: 1rem;
		flex-direction: column;
		gap: 0.85rem;
	}

	.article-tip-number {
		width: 36px;
		height: 36px;
		font-size: 1.1rem;
	}

	.article-tip-bad,
	.article-tip-good {
		padding: 0.6rem 0.85rem;
		font-size: 0.85rem;
	}

	/* CTA */
	.article-cta-box {
		padding: 1.25rem;
	}

	.article-cta-title {
		font-size: 1.2rem;
	}

	.article-cta-text {
		font-size: 0.95rem;
	}

	.article-cta-btn {
		padding: 0.75rem 1.5rem;
		font-size: 0.95rem;
	}

	/* ボックス系共通 */
	.article-highlight-box,
	.article-info-box,
	.article-tips-box,
	.article-checklist,
	.article-warning-box,
	.article-do-box {
		padding: 1rem;
	}

	/* 統計グリッド・ポイントグリッド */
	.article-stats-grid,
	.article-points-grid,
	.article-feature-grid,
	.article-usecase-grid {
		grid-template-columns: 1fr;
	}

	/* 2カラム */
	.article-two-col {
		grid-template-columns: 1fr;
	}
}

/* ==========================================
   記事一覧ページ CSS
   ========================================== */

.articles-archive {
	background: #f8fafc;
}

/* ヒーロー */
.articles-hero {
	background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
	padding: 4rem 1.5rem;
	text-align: center;
}

.articles-hero-title {
	color: #fff;
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 1rem;
}

.articles-hero-lead {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.1rem;
	line-height: 1.8;
}

/* カテゴリフィルター */
.articles-filter {
	background: #fff;
	padding: 1.5rem;
	border-bottom: 1px solid #e2e8f0;
	position: sticky;
	top: 0;
	z-index: 100;
}

.articles-filter-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.articles-filter-item {
	display: inline-block;
	padding: 0.5rem 1.25rem;
	border: 1px solid #e2e8f0;
	border-radius: 50px;
	color: #475569;
	font-size: 0.9rem;
	text-decoration: none;
	transition: all 0.3s;
}

.articles-filter-item:hover,
.articles-filter-item.active {
	background: #1e3a5f;
	border-color: #1e3a5f;
	color: #fff;
}

/* 記事一覧 */
.articles-list {
	padding: 3rem 1.5rem;
}

.articles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 2rem;
}

.article-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.article-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.article-card-image {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

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

.article-card:hover .article-card-image img {
	transform: scale(1.05);
}

.article-card-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #94a3b8;
}

.article-card-category {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: #1e3a5f;
	color: #fff;
	padding: 0.35rem 0.85rem;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 600;
}

.article-card-content {
	padding: 1.5rem;
}

.article-card-title {
	font-size: 1.1rem;
	color: #1e293b;
	line-height: 1.5;
	margin-bottom: 0.75rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.article-card-meta {
	color: #64748b;
	font-size: 0.85rem;
}

/* ページネーション */
.articles-pagination {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 3rem;
}

.articles-pagination a,
.articles-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.75rem;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	color: #475569;
	text-decoration: none;
	transition: all 0.3s;
}

.articles-pagination a:hover {
	background: #1e3a5f;
	border-color: #1e3a5f;
	color: #fff;
}

.articles-pagination .current {
	background: #1e3a5f;
	border-color: #1e3a5f;
	color: #fff;
}

/* 空状態 */
.articles-empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 4rem 2rem;
	background: #fff;
	border-radius: 12px;
}

/* CTA */
.articles-cta {
	padding: 4rem 1.5rem;
	background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
}

.articles-cta-box {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.articles-cta-title {
	color: #fff;
	font-size: 1.75rem;
	margin-bottom: 1rem;
}

.articles-cta-text {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 2rem;
}

.articles-cta-btn {
	display: inline-block;
	background: #fff;
	color: #1e3a5f;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	font-size: 1.05rem;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.3s, box-shadow 0.3s;
}

.articles-cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	color: #1e3a5f;
}

/* レスポンシブ */
@media (max-width: 768px) {
	.articles-hero {
		padding: 3rem 1rem;
	}

	.articles-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.articles-filter-list {
		gap: 0.5rem;
	}

	.articles-filter-item {
		padding: 0.4rem 1rem;
		font-size: 0.85rem;
	}
}


/* 投稿ページ・記事一覧のレイアウト修正 */
.single-post .site-content,
.page-template-page-articles .site-content {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
}

.single-post .inside-article {
	padding: 0;
}

/* ヒーロー全幅 */
.article-hero,
.a002-hero,
.article-cta,
.a002-cta {
	width: 100%;
}

/* ========================================
   仲間募集ページ
   ======================================== */

/* ページラッパー */
.recruit-page-wrapper,
.recruit-page-wrapper .site-content,
.recruit-page-wrapper #content,
.recruit-page-wrapper #primary,
.recruit-page {
	max-width: 100% !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* ヒーローセクション */
.recruit-hero {
	position: relative;
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.recruit-hero-bg {
	position: absolute;
	inset: 0;
	background: var(--road-gradient);
}

.recruit-hero-overlay {
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.recruit-hero .container {
	position: relative;
	z-index: 1;
	text-align: center;
}

.recruit-hero-content {
	color: #fff;
}

.recruit-hero-title {
	font-size: 3rem;
	font-weight: 800;
	margin: 0 0 1rem 0;
	letter-spacing: 0.1em;
}

.recruit-hero-subtitle {
	font-size: 1.75rem;
	font-weight: 600;
	margin: 0 0 1.5rem 0;
	opacity: 0.95;
}

.recruit-hero-description {
	font-size: 1.125rem;
	line-height: 1.8;
	opacity: 0.9;
	margin: 0;
}

/* 求める人物像セクション */
.recruit-requirements-section {
	background: var(--road-bg-white);
	padding: var(--section-padding) 0;
}

.requirements-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.requirement-card {
	background: var(--road-bg-light);
	padding: 2rem 1.5rem;
	border-radius: var(--radius-lg);
	text-align: center;
	transition: var(--transition);
	border: 2px solid transparent;
}

.requirement-card.required {
	border-color: var(--road-accent-light);
	background: linear-gradient(180deg, rgba(37, 99, 235, 0.05) 0%, var(--road-bg-light) 100%);
}

.requirement-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.requirement-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--road-gradient);
	border-radius: 50%;
	color: #fff;
}

.requirement-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--road-text);
	margin: 0 0 1rem 0;
}

.requirement-description {
	font-size: 0.9375rem;
	color: var(--road-text-light);
	line-height: 1.7;
	margin: 0;
}

/* NGセクション */
.recruit-ng-section {
	background: var(--road-bg-gray);
	padding: var(--section-padding) 0;
}

.ng-list-container {
	max-width: 700px;
	margin: 0 auto;
}

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

.ng-list li {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	background: var(--road-bg-white);
	margin-bottom: 0.75rem;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	border-left: 4px solid #ef4444;
}

.ng-icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fef2f2;
	color: #ef4444;
	border-radius: 50%;
	font-weight: 700;
	font-size: 0.875rem;
}

.ng-content {
	flex: 1;
}

.ng-content strong {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	color: var(--road-text);
	margin-bottom: 0.25rem;
}

.ng-content span {
	font-size: 0.875rem;
	color: var(--road-text-muted);
}

.ng-note {
	max-width: 700px;
	margin: 2rem auto 0;
	text-align: center;
}

.ng-note p {
	font-size: 0.9375rem;
	color: var(--road-text-light);
	line-height: 1.8;
	margin: 0;
}

/* カルチャーセクション */
.recruit-culture-section {
	background: var(--road-bg-white);
	padding: var(--section-padding) 0;
}

.culture-content {
	max-width: 800px;
	margin: 0 auto;
}

.culture-item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--road-border);
}

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

.culture-number {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--road-gradient);
	color: #fff;
	font-size: 1.125rem;
	font-weight: 700;
	border-radius: 50%;
}

.culture-text h3 {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--road-text);
	margin: 0 0 0.5rem 0;
}

.culture-text p {
	font-size: 0.9375rem;
	color: var(--road-text-light);
	line-height: 1.7;
	margin: 0;
}

/* CTAセクション */
.recruit-cta-section {
	background: var(--road-gradient);
	padding: var(--section-padding) 0;
}

.recruit-cta-box {
	text-align: center;
	color: #fff;
}

.recruit-cta-title {
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0 0 1rem 0;
}

.recruit-cta-text {
	font-size: 1.0625rem;
	line-height: 1.8;
	opacity: 0.95;
	margin: 0 0 2rem 0;
}

.recruit-cta-section .btn-primary {
	background: #fff;
	color: var(--road-primary);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.recruit-cta-section .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* レスポンシブ */
@media (max-width: 1024px) {
	.requirements-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.recruit-hero {
		min-height: 50vh;
		padding: 4rem 1rem;
	}

	.recruit-hero-title {
		font-size: 2rem;
	}

	.recruit-hero-subtitle {
		font-size: 1.25rem;
	}

	.recruit-hero-description {
		font-size: 1rem;
	}

	.requirements-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.requirement-card {
		padding: 1.5rem;
	}

	.ng-list li {
		padding: 1rem;
	}

	.culture-item {
		flex-direction: column;
		gap: 1rem;
	}

	.recruit-cta-title {
		font-size: 1.5rem;
	}
}

/* ========================================
   我々の思いページ
   ======================================== */

/* ページラッパー */
.philosophy-page-wrapper,
.philosophy-page-wrapper .site-content,
.philosophy-page-wrapper #content,
.philosophy-page-wrapper #primary,
.philosophy-page {
	max-width: 100% !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* ヒーローセクション */
.philosophy-hero {
	position: relative;
	min-height: 50vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.philosophy-hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #1a1a2e 0%, #1e3a5f 100%);
}

.philosophy-hero-overlay {
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2.5L25 18l-5 2.5z'/%3E%3C/g%3E%3C/svg%3E");
}

.philosophy-hero .container {
	position: relative;
	z-index: 1;
	text-align: center;
}

.philosophy-hero-content {
	color: #fff;
}

.philosophy-hero-title {
	font-size: 3rem;
	font-weight: 800;
	margin: 0 0 1.5rem 0;
	letter-spacing: 0.1em;
}

.philosophy-hero-lead {
	font-size: 1.5rem;
	font-weight: 500;
	opacity: 0.9;
	margin: 0;
}

/* メインメッセージセクション */
.philosophy-main-section {
	background: var(--road-bg-white);
	padding: 5rem 0;
}

.philosophy-main-content {
	max-width: 700px;
	margin: 0 auto;
}

.philosophy-message h2 {
	font-size: 2rem;
	font-weight: 800;
	color: var(--road-primary);
	margin: 0 0 2rem 0;
	text-align: center;
}

.philosophy-message p {
	font-size: 1.125rem;
	line-height: 2;
	color: var(--road-text);
	margin: 0 0 1.5rem 0;
	text-align: center;
}

.philosophy-message strong {
	color: var(--road-primary);
}

/* 3つの約束セクション */
.philosophy-promises-section {
	background: var(--road-bg-light);
	padding: var(--section-padding) 0;
}

.promises-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.promise-card {
	background: var(--road-bg-white);
	padding: 2.5rem 2rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	text-align: center;
}

.promise-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--road-accent);
	opacity: 0.3;
	margin-bottom: 1rem;
}

.promise-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--road-text);
	margin: 0 0 1rem 0;
	line-height: 1.5;
}

.promise-description {
	font-size: 0.9375rem;
	color: var(--road-text-light);
	line-height: 1.8;
	margin: 0;
}

/* なぜこの仕事をセクション */
.philosophy-why-section {
	background: var(--road-bg-white);
	padding: var(--section-padding) 0;
}

.philosophy-why-content {
	max-width: 700px;
	margin: 0 auto;
}

.philosophy-why-content h2 {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--road-text);
	margin: 0 0 2rem 0;
	text-align: center;
}

.philosophy-why-text p {
	font-size: 1.0625rem;
	line-height: 2;
	color: var(--road-text);
	margin: 0 0 1.5rem 0;
}

.philosophy-why-text strong {
	color: var(--road-primary);
	font-size: 1.125rem;
}

/* 価値観セクション */
.philosophy-values-section {
	background: var(--road-bg-gray);
	padding: var(--section-padding) 0;
}

.values-list {
	max-width: 800px;
	margin: 0 auto;
}

.value-item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 1.5rem;
	background: var(--road-bg-white);
	border-radius: var(--radius-md);
	margin-bottom: 1rem;
	box-shadow: var(--shadow-sm);
}

.value-icon {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--road-gradient);
	border-radius: 50%;
	color: #fff;
}

.value-content h3 {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--road-text);
	margin: 0 0 0.5rem 0;
}

.value-content p {
	font-size: 0.9375rem;
	color: var(--road-text-light);
	line-height: 1.7;
	margin: 0;
}

/* CTAセクション */
.philosophy-cta-section {
	background: var(--road-gradient);
	padding: var(--section-padding) 0;
}

.philosophy-cta-content {
	text-align: center;
	color: #fff;
}

.philosophy-cta-content h2 {
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0 0 1rem 0;
}

.philosophy-cta-content p {
	font-size: 1.0625rem;
	line-height: 1.8;
	opacity: 0.95;
	margin: 0 0 2rem 0;
}

.philosophy-cta-section .btn-primary {
	background: #fff;
	color: var(--road-primary);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.philosophy-cta-section .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* レスポンシブ */
@media (max-width: 768px) {
	.philosophy-hero {
		min-height: 40vh;
		padding: 3rem 1rem;
	}

	.philosophy-hero-title {
		font-size: 2rem;
	}

	.philosophy-hero-lead {
		font-size: 1.125rem;
	}

	.philosophy-message p {
		font-size: 1rem;
		text-align: left;
	}

	.philosophy-message h2 {
		font-size: 1.5rem;
	}

	.promises-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.promise-card {
		padding: 1.5rem;
	}

	.value-item {
		flex-direction: column;
		text-align: center;
	}

	.value-icon {
		margin: 0 auto;
	}
}

/* 仲間募集ページ - 思いセクション追加 */
.recruit-philosophy-section {
	background: linear-gradient(135deg, #1a1a2e 0%, #1e3a5f 100%);
	padding: var(--section-padding) 0;
	color: #fff;
}

.recruit-philosophy-content {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.recruit-philosophy-content h2 {
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0 0 1.5rem 0;
}

.recruit-philosophy-lead {
	font-size: 1.25rem;
	line-height: 1.8;
	margin: 0 0 2rem 0;
	opacity: 0.95;
}

.recruit-philosophy-values {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-bottom: 2rem;
}

.recruit-philosophy-value {
	background: rgba(255, 255, 255, 0.1);
	padding: 1.25rem;
	border-radius: var(--radius-md);
	backdrop-filter: blur(4px);
}

.recruit-philosophy-value h3 {
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 0.5rem 0;
}

.recruit-philosophy-value p {
	font-size: 0.875rem;
	opacity: 0.85;
	margin: 0;
	line-height: 1.6;
}

.recruit-philosophy-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	padding: 0.75rem 1.5rem;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: var(--radius-md);
	transition: var(--transition);
}

.recruit-philosophy-link:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
	color: #fff;
}

@media (max-width: 768px) {
	.recruit-philosophy-values {
		grid-template-columns: 1fr;
	}
}

/* サービス一覧ページ - アイコン画像 */
.service-detail-icon img {
	width: 200px;
	height: 200px;
	object-fit: cover;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
	.service-detail-icon img {
		width: 150px;
		height: 150px;
	}
}
