/**
 * SOA Services Index — v1.9.233
 *
 * /services/ ページ：3 つのコアサービスをシンプルに見せる。
 * 紺×金、明朝×サンセリフのコントラスト、左右交互レイアウト。
 */

/* ===========================================
 * Container
 * =========================================== */
.soa-services-index { background: #fafaf7; }

.sidx-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ===========================================
 * Hero
 * =========================================== */
.sidx-hero {
	background: linear-gradient(135deg, #0a1628 0%, #1a2640 100%);
	color: #f5f3ee;
	padding: 160px 0 120px;
	position: relative;
	overflow: hidden;
}

.sidx-hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 30%, rgba(184,153,104,0.12) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(212,196,160,0.08) 0%, transparent 50%);
	pointer-events: none;
}

.sidx-hero__eyebrow {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #b89968;
	letter-spacing: 0.4em;
	margin: 0 0 24px;
	position: relative;
	padding-left: 60px;
}

.sidx-hero__eyebrow::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 1px;
	background: #b89968;
}

.sidx-hero__title {
	font-family: 'Shippori Mincho', 'Noto Serif JP', 'Yu Mincho', serif;
	font-size: 64px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.04em;
	color: #fff;
	margin: 0 0 32px;
}

.sidx-hero__subtitle {
	font-family: 'Hiragino Mincho ProN', 'Yu Mincho', 'Shippori Mincho', serif;
	font-size: 18px;
	line-height: 2.0;
	letter-spacing: 0.05em;
	color: #d4c4a0;
	margin: 0;
	max-width: 720px;
}

/* ===========================================
 * Services（左右交互レイアウト）
 * =========================================== */
.sidx-services {
	padding: 120px 0;
}

.sidx-service {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	margin-bottom: 140px;
}

.sidx-service:last-child {
	margin-bottom: 0;
}

.sidx-service--reverse {
	direction: rtl;
}

.sidx-service--reverse > * {
	direction: ltr;
}

/* Visual */
.sidx-service__visual {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: 2px;
}

.sidx-service__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.sidx-service:hover .sidx-service__img {
	transform: scale(1.04);
}

.sidx-service__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.sidx-service__placeholder--1 {
	background: linear-gradient(135deg, #0a1628 0%, #2a4060 50%, #1a2640 100%);
}

.sidx-service__placeholder--2 {
	background: linear-gradient(135deg, #1a2640 0%, #806640 50%, #0a1628 100%);
}

.sidx-service__placeholder--3 {
	background: linear-gradient(135deg, #2a3550 0%, #b89968 50%, #0a1628 100%);
}

.sidx-service__placeholder::after {
	content: "";
	position: absolute;
	inset: 24px;
	border: 1px solid rgba(212,196,160,0.2);
	pointer-events: none;
}

.sidx-service__placeholder-num {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 160px;
	font-weight: 200;
	color: rgba(212,196,160,0.25);
	letter-spacing: -0.04em;
}

/* Body */
.sidx-service__body {
	padding: 20px 0;
}

.sidx-service__num {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #b89968;
	letter-spacing: 0.3em;
	margin-bottom: 20px;
	display: inline-block;
	padding-bottom: 8px;
	border-bottom: 1px solid #b89968;
}

.sidx-service__eyebrow {
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 11px;
	font-weight: 500;
	color: #806640;
	letter-spacing: 0.4em;
	margin: 0 0 16px;
	text-transform: uppercase;
}

.sidx-service__title {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 38px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.04em;
	color: #0a1628;
	margin: 0 0 24px;
}

.sidx-service__lead {
	font-family: 'Hiragino Mincho ProN', 'Yu Mincho', serif;
	font-size: 17px;
	line-height: 2.0;
	letter-spacing: 0.05em;
	color: #1a2640;
	margin: 0 0 32px;
}

.sidx-service__points {
	list-style: none;
	padding: 0;
	margin: 0 0 40px;
	border-top: 1px solid rgba(184, 153, 104, 0.2);
}

.sidx-service__point {
	font-family: 'Hiragino Kaku Gothic ProN', -apple-system, sans-serif;
	font-size: 14px;
	line-height: 1.8;
	color: #1a2640;
	padding: 16px 0 16px 28px;
	border-bottom: 1px solid rgba(184, 153, 104, 0.2);
	position: relative;
	letter-spacing: 0.02em;
}

.sidx-service__point::before {
	content: "";
	position: absolute;
	left: 0;
	top: 26px;
	width: 16px;
	height: 1px;
	background: #b89968;
}

.sidx-service__link {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: 'Inter', -apple-system, sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #0a1628;
	text-decoration: none;
	padding: 16px 40px;
	border: 1px solid #0a1628;
	letter-spacing: 0.15em;
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.sidx-service__link:hover {
	background: #0a1628;
	color: #d4c4a0;
	letter-spacing: 0.2em;
}

/* ===========================================
 * Closing CTA
 * =========================================== */
.sidx-closing {
	background: linear-gradient(135deg, #0a1628 0%, #1a2640 100%);
	color: #f5f3ee;
	padding: 140px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.sidx-closing::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 80px;
	background: linear-gradient(180deg, transparent, #b89968);
}

.sidx-closing__title {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 44px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.04em;
	color: #fff;
	margin: 0 0 28px;
}

.sidx-closing__text {
	font-family: 'Hiragino Mincho ProN', serif;
	font-size: 17px;
	line-height: 2.0;
	letter-spacing: 0.05em;
	color: #d4c4a0;
	margin: 0 auto 48px;
	max-width: 600px;
}

.sidx-closing__btn {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: 'Shippori Mincho', serif;
	font-size: 15px;
	color: #0a1628;
	background: #b89968;
	text-decoration: none;
	padding: 22px 56px;
	letter-spacing: 0.15em;
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.sidx-closing__btn:hover {
	background: #d4c4a0;
	letter-spacing: 0.2em;
}

/* ===========================================
 * モバイル
 * =========================================== */
@media (max-width: 1024px) {
	.sidx-service {
		gap: 56px;
	}
	.sidx-hero__title { font-size: 50px; }
	.sidx-service__title { font-size: 32px; }
}

@media (max-width: 768px) {
	.sidx-container { padding: 0 20px; }

	.sidx-hero {
		padding: 100px 0 80px;
	}
	.sidx-hero__eyebrow {
		font-size: 11px;
		padding-left: 40px;
	}
	.sidx-hero__eyebrow::before { width: 28px; }
	.sidx-hero__title {
		font-size: 34px;
		line-height: 1.5;
	}
	.sidx-hero__subtitle { font-size: 15px; line-height: 1.9; }

	.sidx-services {
		padding: 80px 0;
	}
	.sidx-service {
		grid-template-columns: 1fr;
		gap: 32px;
		margin-bottom: 80px;
	}
	.sidx-service--reverse {
		direction: ltr;
	}
	.sidx-service__visual {
		aspect-ratio: 16 / 10;
	}
	.sidx-service__placeholder-num { font-size: 100px; }
	.sidx-service__title { font-size: 26px; }
	.sidx-service__lead { font-size: 15px; line-height: 1.9; }
	.sidx-service__link {
		padding: 14px 32px;
		font-size: 12px;
	}

	.sidx-closing {
		padding: 80px 0;
	}
	.sidx-closing__title { font-size: 26px; }
	.sidx-closing__text { font-size: 15px; }
	.sidx-closing__btn {
		padding: 18px 40px;
		font-size: 13px;
	}
}
