@charset "utf-8";
/* CSS Document */

/* ===================================
   CSS変数定義
   =================================== */
:root {
	--white: #ffffff;
	--bg: #f6f7f8;
	--text: #333333;
	--muted: #667085;
	--navy: #1e3a5f;
	--navy-dark: #142a47;
	--line: #e5e7eb;
	--card: #ffffff;
	--shadow: 0 10px 30px rgba(20, 42, 71, 0.08);
	--radius: 20px;
	--container: 1120px;
}

/* ===================================
   基本設定・リセット
   =================================== */
* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Noto Sans JP', system-ui, sans-serif;
	color: var(--text);
	background: var(--white);
	line-height: 1.75;
}

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

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

/* ===================================
   レイアウト・共通クラス
   =================================== */
.container {
	width: min(calc(100% - 32px), var(--container));
	margin: 0 auto;
}

.narrow {
	max-width: 920px;
}

.center {
	text-align: center;
}

.section {
	padding: 88px 0;
}

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

.section-label {
	margin: 0 0 10px;
	color: var(--navy);
	font-weight: 800;
	letter-spacing: 0.08em;
	font-size: 0.9rem;
}

/* ===================================
   タイポグラフィ
   =================================== */
h1, h2, h3, h4, p, ul, ol {
	margin-top: 0;
}

h1 {
	font-size: clamp(2rem, 4.5vw, 3.2rem);
	line-height: 1.2;
	margin-bottom: 20px;
	color: #1a1a1a;
}

h2 {
	font-size: clamp(1.6rem, 3vw, 2.3rem);
	line-height: 1.3;
	margin-bottom: 32px;
	color: #1a1a1a;
}

h3 {
	font-size: 1.1rem;
	line-height: 1.4;
	margin-bottom: 8px;
}

.lead {
	font-size: 1.05rem;
	color: var(--muted);
	line-height: 1.8;
}

/* ===================================
   ヘッダー
   =================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(229, 231, 235, 0.9);
	backdrop-filter: blur(10px);
}

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

.logo {
	font-weight: 800;
	font-size: 1.25rem;
	color: var(--navy);
}

.nav {
	display: flex;
	align-items: center;
	gap: 20px;
}

.nav a {
	color: var(--text);
	font-weight: 500;
	font-size: 0.92rem;
}

/* ナビゲーション内ボタンの文字色修正 */
.nav .btn {
	color: #ffffff;
}

.nav .btn:hover {
	color: #ffffff;
}

/* ===================================
   ボタン
   =================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 26px;
	border-radius: 999px;
	background: var(--navy);
	color: #fff;
	font-weight: 700;
	border: 1px solid var(--navy);
	transition: 0.2s ease;
	font-size: 0.95rem;
}

.btn:hover {
	background: var(--navy-dark);
}

.btn-sm {
	min-height: 40px;
	padding: 0 18px;
	font-size: 0.85rem;
}

.btn-light {
	background: #fff;
	color: var(--navy);
	border-color: #fff;
}

.btn-outline-light {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   ヒーローセクション
   =================================== */
.hero {
	padding: 0;
	position: relative;
	overflow: hidden;
}

.hero-img {
	width: 100%;
	height: 580px;
	object-fit: cover;
	object-position: center;
	display: block;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(20, 42, 71, 0.72) 0%, rgba(20, 42, 71, 0.35) 55%, rgba(20, 42, 71, 0.05) 100%);
	display: flex;
	align-items: center;
}

.hero-copy {
	padding: 0 0 0 80px;
	max-width: 600px;
	color: #fff;
}

.eyebrow {
	color: rgba(255, 255, 255, 0.88);
	font-weight: 800;
	font-size: 0.9rem;
	letter-spacing: 0.06em;
	margin-bottom: 14px;
}

.hero-copy h1 {
	color: #fff;
}

.hero-copy .lead {
	color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 30px;
}

.btn-hero-white {
	background: #fff;
	color: var(--navy);
	border: 1px solid #fff;
	border-radius: 999px;
	min-height: 48px;
	padding: 0 26px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	font-size: 0.95rem;
}

.btn-hero-ghost {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 999px;
	min-height: 48px;
	padding: 0 26px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	font-size: 0.95rem;
}

/* ===================================
   お悩みセクション
   =================================== */
.problem-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.problem-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
	box-shadow: var(--shadow);
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.problem-icon {
	width: 76px;
	height: 76px;
	flex-shrink: 0;
	border-radius: 16px;
	overflow: hidden;
	background: #f0f4f8;
}

.problem-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.problem-text h3 {
	color: var(--navy);
	font-size: 1rem;
}

.problem-text p {
	font-size: 0.875rem;
	color: var(--muted);
	margin: 0;
}

/* ===================================
   サービス一覧
   =================================== */
.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.service-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px 24px;
	box-shadow: var(--shadow);
	text-align: center;
}

.service-icon {
	width: 88px;
	height: 88px;
	margin: 0 auto 16px;
	border-radius: 20px;
	overflow: hidden;
	background: #f0f4f8;
}

.service-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-card h3 {
	color: var(--navy);
	font-size: 1.05rem;
}

.service-card p {
	font-size: 0.82rem;
	color: var(--muted);
	margin: 0;
}

/* ===================================
   サービス詳細
   =================================== */
.detail-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.detail-item {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: var(--shadow);
}

.detail-item h3 {
	color: var(--navy);
}

.detail-item p {
	font-size: 0.9rem;
	color: var(--muted);
	margin: 0;
}

/* ===================================
   選ばれる理由
   =================================== */
.reason-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.reason-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px 24px;
	box-shadow: var(--shadow);
	text-align: center;
}

.reason-icon {
	width: 88px;
	height: 88px;
	margin: 0 auto 16px;
	border-radius: 20px;
	overflow: hidden;
	background: #f0f4f8;
}

.reason-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.reason-num {
	display: inline-flex;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	background: var(--navy);
	color: #fff;
	font-weight: 800;
	font-size: 0.9rem;
	margin-bottom: 14px;
}

.reason-card h3 {
	color: var(--navy);
	font-size: 1.05rem;
}

.reason-card p {
	font-size: 0.875rem;
	color: var(--muted);
	margin: 0;
}

/* ===================================
   ご相談の流れ
   =================================== */
.flow-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 14px;
}

.flow-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 28px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 18px;
	box-shadow: var(--shadow);
}

.flow-icon {
	width: 72px;
	height: 72px;
	flex-shrink: 0;
	border-radius: 16px;
	overflow: hidden;
	background: #f0f4f8;
}

.flow-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.flow-step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--navy);
	color: #fff;
	font-weight: 800;
	font-size: 0.82rem;
	flex-shrink: 0;
}

.flow-text {
	flex: 1;
}

.flow-text strong {
	color: var(--navy);
	font-size: 1rem;
	display: block;
	margin-bottom: 4px;
}

.flow-text span {
	font-size: 0.875rem;
	color: var(--muted);
}

/* ===================================
   料金・お問い合わせ
   =================================== */
.price-section .lead {
	margin-bottom: 28px;
}

.contact-section {
	position: relative;
	overflow: hidden;
}

.contact-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-overlay {
	position: absolute;
	inset: 0;
	background: rgba(20, 42, 71, 0.82);
}

.contact-inner {
	position: relative;
	z-index: 1;
	padding: 88px 0;
	text-align: center;
	color: #fff;
}

.contact-label {
	color: rgba(255, 255, 255, 0.88);
}

.contact-inner .lead {
	color: rgba(255, 255, 255, 0.8);
}

.contact-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 28px;
}

/* ===================================
   フッター
   =================================== */
.site-footer {
	padding: 28px 0;
	border-top: 1px solid var(--line);
	background: #fff;
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	color: var(--muted);
	font-size: 0.9rem;
}

/* ===================================
   レスポンシブデザイン
   =================================== */
@media (max-width: 1024px) {
	.service-grid,
	.reason-grid,
	.detail-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.section {
		padding: 68px 0;
	}

	.header-inner {
		min-height: auto;
		padding: 14px 0;
		align-items: flex-start;
		flex-direction: column;
	}

	.nav {
		gap: 12px;
		flex-wrap: wrap;
	}

	.hero-img {
		height: 460px;
	}

	.hero-copy {
		padding: 0 24px;
	}

	.problem-grid,
	.service-grid,
	.reason-grid,
	.detail-list {
		grid-template-columns: 1fr;
	}

	.flow-item {
		flex-wrap: wrap;
	}
}

@media (max-width: 480px) {
	.container {
		width: min(calc(100% - 24px), var(--container));
	}

	.btn,
	.btn-sm,
	.btn-light,
	.btn-outline-light {
		width: 100%;
	}

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

	.btn-hero-white,
	.btn-hero-ghost {
		width: 100%;
		justify-content: center;
	}

	.hero-img {
		height: 380px;
	}
}