/**
 * SOA Inc. 会社情報ページ CSS
 *
 * 設計：雲の上のクリエイティブカンパニーらしい品格。
 *       Anthropic / Stripe / Patagonia 級のミニマルかつ重厚な組版。
 *
 * @package SOA
 * @since 1.9.265
 */

/* ===========================================
 * 0. 基本変数（page-about との統一感）
 * =========================================== */
.soa-company-page {
	--cp-navy: #0a1628;
	--cp-navy-deep: #050b18;
	--cp-gold: #b89968;
	--cp-gold-light: #d4c4a0;
	--cp-gold-bright: #e6d5a8;
	--cp-line: rgba(184, 153, 104, 0.25);
	--cp-line-strong: rgba(184, 153, 104, 0.5);

	background: var(--cp-navy);
	color: #ffffff;
	font-family: -apple-system, BlinkMacSystemFont, 'Hiragino Mincho ProN', 'Yu Mincho', serif;
}

.cp-container {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 32px;
	position: relative;
}

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

/* スクロールマージン（アンカーリンク） */
.soa-company-page section[id] {
	scroll-margin-top: 100px;
}

/* セクションヘッダー共通 */
.cp-section-head {
	margin-bottom: 64px;
	text-align: center;
}

.cp-section-head__num {
	display: inline-block;
	font-family: 'JetBrains Mono', 'Courier New', monospace;
	font-size: 12px;
	letter-spacing: 0.3em;
	color: var(--cp-gold);
	margin-bottom: 16px;
	position: relative;
	padding: 0 32px;
}
.cp-section-head__num::before,
.cp-section-head__num::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 24px;
	height: 1px;
	background: var(--cp-gold);
	opacity: 0.5;
}
.cp-section-head__num::before { right: 100%; margin-right: 8px; }
.cp-section-head__num::after  { left: 100%; margin-left: 8px; }

.cp-section-head__eyebrow {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	letter-spacing: 0.4em;
	color: var(--cp-gold-light);
	margin-bottom: 24px;
	font-weight: 600;
	text-transform: uppercase;
}

.cp-section-head__title {
	font-family: 'Shippori Mincho', 'Noto Serif JP', 'Yu Mincho', serif;
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 500;
	line-height: 1.5;
	color: #ffffff;
	margin: 0;
	letter-spacing: 0.04em;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

/* ===========================================
 * 1. HERO セクション
 * =========================================== */
.cp-hero {
	position: relative;
	padding: 180px 0 140px;
	overflow: hidden;
	background: linear-gradient(180deg,
		var(--cp-navy-deep) 0%,
		var(--cp-navy) 100%);
	text-align: center;
}

.cp-hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.cp-hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(184, 153, 104, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(184, 153, 104, 0.05) 1px, transparent 1px);
	background-size: 80px 80px;
	mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.cp-hero__glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(184, 153, 104, 0.15) 0%, transparent 70%);
	filter: blur(60px);
}

.cp-hero__eyebrow {
	display: inline-block;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	letter-spacing: 0.5em;
	color: var(--cp-gold-light);
	font-weight: 600;
	margin-bottom: 32px;
	padding: 8px 20px;
	border: 1px solid var(--cp-line-strong);
	background: rgba(10, 22, 40, 0.4);
	position: relative;
	z-index: 2;
}

.cp-hero__title {
	font-family: 'Shippori Mincho', serif;
	font-size: clamp(40px, 6vw, 72px);
	font-weight: 500;
	line-height: 1.25;
	color: #ffffff;
	margin: 0 0 12px;
	letter-spacing: 0.08em;
	text-shadow: 0 0 40px rgba(184, 153, 104, 0.3), 0 2px 16px rgba(0, 0, 0, 0.8);
	position: relative;
	z-index: 2;
}

.cp-hero__sub {
	font-family: 'Inter', sans-serif;
	font-size: clamp(14px, 1.7vw, 17px);
	letter-spacing: 0.4em;
	color: var(--cp-gold-light);
	margin: 0 0 56px;
	font-weight: 500;
	position: relative;
	z-index: 2;
}

.cp-hero__lead {
	font-family: 'Shippori Mincho', serif;
	font-size: clamp(15px, 1.8vw, 18px);
	line-height: 2.2;
	color: #ffffff;
	max-width: 720px;
	margin: 0 auto;
	font-weight: 500;
	letter-spacing: 0.05em;
	position: relative;
	z-index: 2;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}
.cp-hero__lead-line {
	display: block;
}

/* ===========================================
 * 2. ABOUT セクション
 * =========================================== */
.cp-about {
	padding: 140px 0 120px;
	background: var(--cp-navy);
}

.cp-about__body {
	max-width: 800px;
	margin: 0 auto;
}

.cp-about__p {
	font-family: 'Hiragino Mincho ProN', 'Yu Mincho', serif;
	font-size: 17px;
	line-height: 2.2;
	color: #ffffff;
	margin: 0 0 32px;
	letter-spacing: 0.05em;
	font-weight: 500;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}
.cp-about__p:last-child { margin-bottom: 0; }

/* ===========================================
 * 3. CORPORATE INFO
 * =========================================== */
.cp-info {
	padding: 140px 0 120px;
	background: linear-gradient(180deg, var(--cp-navy) 0%, var(--cp-navy-deep) 100%);
}

.cp-info__table {
	max-width: 800px;
	margin: 0 auto;
	border-top: 1px solid var(--cp-line);
}

.cp-info__row {
	display: grid;
	grid-template-columns: 160px 1fr;
	align-items: start;
	padding: 24px 32px;
	border-bottom: 1px solid var(--cp-line);
	background: rgba(8, 18, 35, 0.4);
	transition: background 0.3s ease;
}
.cp-info__row:hover {
	background: rgba(184, 153, 104, 0.08);
}

@media (max-width: 640px) {
	.cp-info__row {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 20px 24px;
	}
}

.cp-info__label {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	letter-spacing: 0.25em;
	color: var(--cp-gold-light);
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
	padding-top: 3px;
}

.cp-info__value {
	font-family: 'Hiragino Mincho ProN', serif;
	font-size: 17px;
	line-height: 1.75;
	color: #ffffff;
	margin: 0;
	letter-spacing: 0.04em;
	font-weight: 500;
}

/* ===========================================
 * 4. BUSINESS — 事業内容
 * =========================================== */
.cp-biz {
	padding: 140px 0 120px;
	background: var(--cp-navy-deep);
}

.cp-biz__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	max-width: 920px;
	margin: 0 auto;
	list-style: none;
	padding: 0;
}

@media (max-width: 640px) {
	.cp-biz__grid { grid-template-columns: 1fr; }
}

.cp-biz__item {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 24px 28px;
	background: rgba(8, 18, 35, 0.6);
	border: 1px solid var(--cp-line);
	border-left: 3px solid var(--cp-gold);
	transition: all 0.4s ease;
}
.cp-biz__item:hover {
	background: rgba(184, 153, 104, 0.08);
	border-left-color: var(--cp-gold-bright);
	transform: translateX(4px);
}

.cp-biz__idx {
	font-family: 'JetBrains Mono', monospace;
	font-size: 13px;
	color: var(--cp-gold);
	font-weight: 600;
	letter-spacing: 0.15em;
	flex-shrink: 0;
}

.cp-biz__text {
	font-family: 'Hiragino Mincho ProN', serif;
	font-size: 16px;
	color: #ffffff;
	letter-spacing: 0.04em;
	font-weight: 500;
}

/* ===========================================
 * 5. DEPARTMENTS — 部門構成
 * =========================================== */
.cp-dep {
	padding: 140px 0 120px;
	background: var(--cp-navy);
}

.cp-dep__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	max-width: 1000px;
	margin: 0 auto;
	list-style: none;
	padding: 0;
}

@media (max-width: 768px) {
	.cp-dep__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.cp-dep__grid { grid-template-columns: 1fr; }
}

.cp-dep__item {
	padding: 18px 22px;
	background: rgba(8, 18, 35, 0.5);
	border: 1px solid var(--cp-line);
	color: #ffffff;
	font-family: 'Hiragino Mincho ProN', serif;
	font-size: 15px;
	letter-spacing: 0.04em;
	font-weight: 500;
	text-align: center;
	transition: all 0.4s ease;
	border-radius: 2px;
}
.cp-dep__item:hover {
	background: rgba(184, 153, 104, 0.1);
	border-color: var(--cp-gold);
	color: var(--cp-gold-bright);
}

/* ===========================================
 * 6. LOCATIONS — 所在地
 * =========================================== */
.cp-loc {
	padding: 140px 0 120px;
	background: linear-gradient(180deg, var(--cp-navy) 0%, var(--cp-navy-deep) 100%);
}

.cp-loc__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1080px;
	margin: 0 auto;
}

@media (max-width: 980px) {
	.cp-loc__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
	.cp-loc__grid { grid-template-columns: 1fr; }
}

.cp-loc__card {
	position: relative;
	padding: 36px 28px 28px;
	background: rgba(8, 18, 35, 0.7);
	border: 1px solid var(--cp-line);
	border-top: 2px solid var(--cp-gold);
	transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
	border-radius: 2px;
}
.cp-loc__card:hover {
	background: rgba(184, 153, 104, 0.08);
	border-color: var(--cp-gold);
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.cp-loc__card--hq {
	border-top-color: var(--cp-gold-bright);
	border-top-width: 3px;
	background: rgba(8, 18, 35, 0.85);
}
.cp-loc__card--reg {
	border-top-color: var(--cp-line-strong);
	border-style: dashed;
	opacity: 0.85;
}

.cp-loc__badge {
	position: absolute;
	top: -1px;
	right: 20px;
	background: var(--cp-gold);
	color: var(--cp-navy);
	font-family: 'Inter', sans-serif;
	font-size: 10px;
	letter-spacing: 0.2em;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 0 0 2px 2px;
}
.cp-loc__badge--reg {
	background: rgba(184, 153, 104, 0.4);
	color: #fff;
}

.cp-loc__name {
	font-family: 'Shippori Mincho', serif;
	font-size: 20px;
	font-weight: 600;
	color: var(--cp-gold-light);
	margin: 0 0 12px;
	letter-spacing: 0.08em;
}

.cp-loc__zip {
	font-family: 'JetBrains Mono', monospace;
	font-size: 13px;
	/* v1.9.346: 白70%・12px細字で暗背景に埋もれて読めなかったため、視認性の高い
	 * ゴールド系（--cp-gold-light）に変更。可読性コントロール側でもアクセント色に追従させる。 */
	color: var(--cp-gold-light, #d4c4a0);
	margin: 0 0 8px;
	letter-spacing: 0.1em;
}

.cp-loc__address {
	font-family: 'Hiragino Mincho ProN', serif;
	font-size: 15px;
	line-height: 1.8;
	color: #ffffff;
	margin: 0 0 20px;
	letter-spacing: 0.03em;
	font-weight: 500;
}

.cp-loc__map {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	letter-spacing: 0.1em;
	color: var(--cp-gold-bright);
	text-decoration: none;
	padding: 6px 0;
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s ease;
}
.cp-loc__map:hover {
	border-bottom-color: var(--cp-gold-bright);
}

/* ===========================================
 * 7. CLIENTS — 主要取引先
 * =========================================== */
.cp-cli {
	padding: 140px 0 120px;
	background: var(--cp-navy-deep);
}

.cp-cli__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
	max-width: 1080px;
	margin: 0 auto;
	list-style: none;
	padding: 0;
}

@media (max-width: 980px) {
	.cp-cli__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
	.cp-cli__grid { grid-template-columns: repeat(2, 1fr); }
}

.cp-cli__item {
	padding: 24px 14px;
	background: rgba(8, 18, 35, 0.6);
	border: 1px solid var(--cp-line);
	color: #ffffff;
	font-family: 'Hiragino Sans', sans-serif;
	font-size: 13px;
	letter-spacing: 0.03em;
	font-weight: 500;
	text-align: center;
	line-height: 1.5;
	transition: all 0.4s ease;
	border-radius: 2px;
}
.cp-cli__item:hover {
	background: rgba(184, 153, 104, 0.1);
	border-color: var(--cp-gold);
}

.cp-cli__note {
	font-family: 'Shippori Mincho', serif;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	text-align: center;
	margin: 40px 0 0;
	letter-spacing: 0.1em;
}

/* ===========================================
 * 8. CONTACT INFO
 * =========================================== */
.cp-contact {
	padding: 140px 0 120px;
	background: linear-gradient(180deg, var(--cp-navy-deep) 0%, var(--cp-navy) 100%);
}

.cp-contact__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	max-width: 800px;
	margin: 0 auto;
}

@media (max-width: 540px) {
	.cp-contact__grid { grid-template-columns: 1fr; }
}

.cp-contact__item {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 32px 28px;
	background: rgba(8, 18, 35, 0.7);
	border: 1px solid var(--cp-line);
	text-decoration: none;
	transition: all 0.4s ease;
	border-radius: 2px;
}
.cp-contact__item:hover {
	background: rgba(184, 153, 104, 0.1);
	border-color: var(--cp-gold);
	transform: translateY(-2px);
}
.cp-contact__item--primary {
	background: linear-gradient(135deg, rgba(184, 153, 104, 0.2), rgba(212, 196, 160, 0.1));
	border-color: var(--cp-gold);
}

.cp-contact__label {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	letter-spacing: 0.3em;
	color: var(--cp-gold-light);
	font-weight: 600;
	text-transform: uppercase;
}

.cp-contact__value {
	font-family: 'JetBrains Mono', 'Courier New', monospace;
	font-size: 22px;
	color: #ffffff;
	font-weight: 600;
	letter-spacing: 0.05em;
}

/* ===========================================
 * 9. CTA
 * =========================================== */
.cp-cta {
	padding: 160px 0 160px;
	background: linear-gradient(180deg, var(--cp-navy) 0%, var(--cp-navy-deep) 100%);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.cp-cta::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(184, 153, 104, 0.12) 0%, transparent 70%);
	filter: blur(60px);
	pointer-events: none;
}

.cp-cta__eyebrow {
	display: inline-block;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	letter-spacing: 0.5em;
	color: var(--cp-gold-light);
	font-weight: 600;
	margin-bottom: 32px;
	position: relative;
	z-index: 2;
}

.cp-cta__title {
	font-family: 'Shippori Mincho', serif;
	font-size: clamp(28px, 4.5vw, 48px);
	font-weight: 500;
	line-height: 1.55;
	color: #ffffff;
	margin: 0 0 32px;
	letter-spacing: 0.06em;
	text-shadow: 0 0 30px rgba(184, 153, 104, 0.3), 0 2px 12px rgba(0, 0, 0, 0.7);
	position: relative;
	z-index: 2;
}

.cp-cta__body {
	max-width: 600px;
	margin: 0 auto 56px;
	font-family: 'Shippori Mincho', serif;
	font-size: 17px;
	line-height: 2.2;
	color: #ffffff;
	letter-spacing: 0.05em;
	font-weight: 500;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
	position: relative;
	z-index: 2;
}
.cp-cta__body-line { display: block; }

.cp-cta__buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 2;
}

.cp-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 40px;
	font-family: 'Shippori Mincho', serif;
	font-size: 16px;
	letter-spacing: 0.12em;
	font-weight: 600;
	text-decoration: none;
	border-radius: 2px;
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cp-cta__btn--primary {
	background: var(--cp-gold);
	color: var(--cp-navy);
	border: 1px solid var(--cp-gold);
}
.cp-cta__btn--primary:hover {
	background: var(--cp-gold-bright);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(184, 153, 104, 0.3);
}
.cp-cta__btn--secondary {
	background: transparent;
	color: var(--cp-gold-light);
	border: 1px solid var(--cp-line-strong);
}
.cp-cta__btn--secondary:hover {
	background: rgba(184, 153, 104, 0.1);
	border-color: var(--cp-gold);
	color: var(--cp-gold-bright);
}

/* ===========================================
 * モバイル全体調整
 * =========================================== */
@media (max-width: 768px) {
	.cp-hero { padding: 120px 0 100px; }
	.cp-about, .cp-info, .cp-biz, .cp-dep, .cp-loc, .cp-cli, .cp-contact, .cp-cta {
		padding: 100px 0 90px;
	}
	.cp-section-head { margin-bottom: 48px; }
}


/* ===========================================
 * ★ THREE PROMISES — 経営者を惹きつける驚きの 3 つの約束
 * =========================================== */
.cp-promises {
	position: relative;
	padding: 180px 0 180px;
	background:
		radial-gradient(ellipse at top, rgba(184, 153, 104, 0.08) 0%, transparent 70%),
		linear-gradient(180deg, var(--cp-navy) 0%, #000 50%, var(--cp-navy-deep) 100%);
	overflow: hidden;
	isolation: isolate;
}

.cp-promises__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.cp-promises__beam {
	position: absolute;
	width: 1px;
	height: 100%;
	background: linear-gradient(180deg, transparent 0%, rgba(184, 153, 104, 0.4) 50%, transparent 100%);
	animation: cp-beam 8s ease-in-out infinite;
}
.cp-promises__beam--1 { left: 18%; animation-delay: 0s; }
.cp-promises__beam--2 { left: 50%; animation-delay: 2.5s; }
.cp-promises__beam--3 { left: 82%; animation-delay: 5s; }
@keyframes cp-beam {
	0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
	50%      { opacity: 0.9; transform: scaleY(1.2); }
}

.cp-promises__list {
	list-style: none;
	padding: 0;
	margin: 0;
	max-width: 880px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 32px;
	position: relative;
	z-index: 2;
}

.cp-promises__item {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 40px;
	padding: 48px 48px;
	background:
		linear-gradient(135deg, rgba(184, 153, 104, 0.06) 0%, rgba(8, 18, 35, 0.7) 100%);
	border: 1px solid var(--cp-line);
	border-radius: 4px;
	position: relative;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cp-promises__item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, var(--cp-gold-bright) 0%, var(--cp-gold) 100%);
	opacity: 0.6;
	transition: opacity 0.5s ease;
}

.cp-promises__item::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -50%;
	width: 80%;
	height: 200%;
	background: radial-gradient(circle, rgba(184, 153, 104, 0.08) 0%, transparent 60%);
	transform: translate(0, -50%);
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.cp-promises__item:hover {
	background: linear-gradient(135deg, rgba(184, 153, 104, 0.12) 0%, rgba(8, 18, 35, 0.85) 100%);
	border-color: var(--cp-gold);
	transform: translateY(-4px);
	box-shadow: 0 14px 50px rgba(0, 0, 0, 0.4);
}
.cp-promises__item:hover::before { opacity: 1; }
.cp-promises__item:hover::after { opacity: 1; }

@media (max-width: 720px) {
	.cp-promises__item {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 36px 28px;
	}
}

.cp-promises__num {
	font-family: 'Shippori Mincho', serif;
	font-size: clamp(48px, 7vw, 84px);
	font-weight: 300;
	line-height: 1;
	color: var(--cp-gold-bright);
	letter-spacing: 0.04em;
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 8px;
}
.cp-promises__num span {
	position: relative;
	text-shadow: 0 4px 20px rgba(184, 153, 104, 0.5), 0 0 40px rgba(184, 153, 104, 0.3);
}
.cp-promises__num::after {
	content: "";
	position: absolute;
	bottom: -16px;
	left: 50%;
	transform: translateX(-50%);
	width: 32px;
	height: 1px;
	background: var(--cp-gold);
	opacity: 0.6;
}

@media (max-width: 720px) {
	.cp-promises__num { justify-content: flex-start; }
	.cp-promises__num::after { left: 0; transform: none; }
}

.cp-promises__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cp-promises__title {
	font-family: 'Shippori Mincho', serif;
	font-size: clamp(20px, 2.4vw, 26px);
	font-weight: 500;
	line-height: 1.6;
	color: #ffffff;
	margin: 0;
	letter-spacing: 0.05em;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.cp-promises__body {
	font-family: 'Hiragino Mincho ProN', serif;
	font-size: 16px;
	line-height: 2.1;
	color: #ffffff;
	margin: 0;
	letter-spacing: 0.04em;
	font-weight: 500;
	opacity: 0.92;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
	.cp-promises { padding: 120px 0 120px; }
	.cp-promises__list { gap: 20px; }
}


/* ===========================================
 * v1.9.272 CLIENTS セクション 大幅刷新（2 モード対応）
 * =========================================== */
.cp-cli {
	position: relative;
	padding: 180px 0 160px;
	overflow: hidden;
}
.cp-cli__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}
.cp-cli__glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(184, 153, 104, 0.08) 0%, transparent 70%);
	filter: blur(80px);
}

/* === モード 1: カテゴリ表現（リファインド） === */
.cp-cli__refined-grid {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	max-width: 720px;
	display: flex;
	flex-direction: column;
	gap: 1px;
	background: linear-gradient(180deg, transparent 0%, rgba(184, 153, 104, 0.15) 50%, transparent 100%);
	position: relative;
	z-index: 2;
}
.cp-cli__refined-item {
	display: grid;
	grid-template-columns: 60px 60px 1fr;
	align-items: center;
	gap: 24px;
	padding: 28px 16px;
	background: rgba(8, 18, 35, 0.6);
	transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
	position: relative;
}
.cp-cli__refined-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 2px;
	height: 100%;
	background: linear-gradient(180deg, transparent 0%, var(--cp-gold) 50%, transparent 100%);
	opacity: 0;
	transition: opacity 0.5s ease;
}
.cp-cli__refined-item:hover {
	background: rgba(184, 153, 104, 0.08);
	padding-left: 32px;
}
.cp-cli__refined-item:hover::before {
	opacity: 1;
}
.cp-cli__refined-num {
	font-family: 'JetBrains Mono', 'Courier New', monospace;
	font-size: 13px;
	color: var(--cp-gold-bright);
	letter-spacing: 0.2em;
	font-weight: 500;
	opacity: 0.7;
}
.cp-cli__refined-bar {
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, var(--cp-gold) 0%, transparent 100%);
	opacity: 0.5;
}
.cp-cli__refined-text {
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 18px;
	color: #ffffff;
	letter-spacing: 0.06em;
	font-weight: 500;
	line-height: 1.6;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
@media (max-width: 640px) {
	.cp-cli__refined-item {
		grid-template-columns: 50px 40px 1fr;
		gap: 16px;
		padding: 22px 14px;
	}
	.cp-cli__refined-text { font-size: 15px; }
}

/* === モード 2: ロゴ風表記（業界アイコン + ラベル）v1.9.281 大幅刷新 === */
.cp-cli__logo-grid {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	max-width: 1100px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
	position: relative;
	z-index: 2;
}
.cp-cli__logo-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 44px 24px 40px;
	background:
		radial-gradient(ellipse at top, rgba(184, 153, 104, 0.10) 0%, transparent 60%),
		linear-gradient(180deg, rgba(14, 33, 56, 0.85) 0%, rgba(8, 18, 35, 0.95) 100%);
	border: 1px solid rgba(184, 153, 104, 0.35);
	border-radius: 6px;
	transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
	position: relative;
	overflow: hidden;
	box-shadow:
		inset 0 0 24px rgba(184, 153, 104, 0.06),
		0 4px 18px rgba(0, 0, 0, 0.3);
}
/* 内側の二重枠（金色装飾） */
.cp-cli__logo-item::before {
	content: "";
	position: absolute;
	inset: 8px;
	border: 1px solid rgba(184, 153, 104, 0.22);
	border-radius: 4px;
	pointer-events: none;
	transition: border-color 0.6s ease;
}
/* 4 隅の金色コーナーマーク */
.cp-cli__logo-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(184, 153, 104, 0.6) 0%, transparent 6px) top left / 24px 24px no-repeat,
		linear-gradient(225deg, rgba(184, 153, 104, 0.6) 0%, transparent 6px) top right / 24px 24px no-repeat,
		linear-gradient(45deg, rgba(184, 153, 104, 0.6) 0%, transparent 6px) bottom left / 24px 24px no-repeat,
		linear-gradient(-45deg, rgba(184, 153, 104, 0.6) 0%, transparent 6px) bottom right / 24px 24px no-repeat;
	opacity: 0.5;
	transition: opacity 0.6s ease;
	pointer-events: none;
}
.cp-cli__logo-item:hover {
	background:
		radial-gradient(ellipse at top, rgba(184, 153, 104, 0.18) 0%, transparent 60%),
		linear-gradient(180deg, rgba(14, 33, 56, 0.95) 0%, rgba(184, 153, 104, 0.08) 100%);
	border-color: var(--cp-gold-bright);
	transform: translateY(-6px);
	box-shadow:
		0 18px 50px rgba(0, 0, 0, 0.45),
		0 0 40px rgba(184, 153, 104, 0.22),
		inset 0 0 32px rgba(184, 153, 104, 0.12);
}
.cp-cli__logo-item:hover::before {
	border-color: rgba(184, 153, 104, 0.5);
}
.cp-cli__logo-item:hover::after {
	opacity: 1;
}
.cp-cli__logo-icon {
	width: 56px;
	height: 56px;
	color: var(--cp-gold-bright);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), color 0.5s ease;
	position: relative;
	z-index: 1;
}
.cp-cli__logo-icon::before {
	content: "";
	position: absolute;
	inset: -10px;
	background: radial-gradient(circle, rgba(184, 153, 104, 0.25) 0%, transparent 70%);
	filter: blur(8px);
	opacity: 0.6;
	z-index: -1;
	transition: opacity 0.5s ease;
}
.cp-cli__logo-icon svg {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 2px 10px rgba(184, 153, 104, 0.4));
}
.cp-cli__logo-item:hover .cp-cli__logo-icon {
	transform: scale(1.12);
	color: #ffffff;
}
.cp-cli__logo-item:hover .cp-cli__logo-icon::before {
	opacity: 1;
}

/* ラベルの上に上品な区切り線 */
.cp-cli__logo-label {
	font-family: 'Shippori Mincho', serif;
	font-size: 14px;
	color: #ffffff;
	letter-spacing: 0.08em;
	font-weight: 500;
	line-height: 1.75;
	text-align: center;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
	position: relative;
	z-index: 1;
	padding-top: 18px;
}
.cp-cli__logo-label::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 32px;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, var(--cp-gold-bright) 50%, transparent 100%);
	transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.cp-cli__logo-item:hover .cp-cli__logo-label::before {
	width: 64px;
}

/* note 共通 */
.cp-cli__note {
	max-width: 720px;
	margin: 64px auto 0;
	text-align: center;
	font-family: 'Hiragino Mincho ProN', serif;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 0.06em;
	line-height: 1.9;
	position: relative;
	z-index: 2;
	padding: 0 20px;
}

@media (max-width: 768px) {
	.cp-cli { padding: 120px 0 100px; }
	.cp-cli__logo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.cp-cli__logo-item { padding: 30px 16px; }
	.cp-cli__logo-icon { width: 40px; height: 40px; }
	.cp-cli__logo-label { font-size: 12px; }
}
@media (max-width: 480px) {
	.cp-cli__logo-grid { grid-template-columns: 1fr; }
}
