/* ----------------------------------------------------------
	ご挨拶・企業理念ページ専用スタイル
---------------------------------------------------------- */

/* -----------------------
	代表挨拶セクション
-------------------------- */

.ceo-text-col {
	flex: 1;
	font-size: var(--fs-sub);
	color: var(--text-main);
	text-align: justify;
}
.ceo-text-col p {
	margin-bottom: 24px;
}

.ceo-sign {
	margin-top: 40px;
	border-top: 1px solid var(--border-color);
	padding-top: 20px;
}
.ceo-role {
	color: var(--text-gray);
	display: block;
	margin-bottom: 5px;
}
.ceo-name {
	font-size: var(--fs-md);
	font-weight: bold;
	font-family: serif;
}

/* -------------------------
	コーポレートスローガン
---------------------------- */
.slogan {
	text-align: center;
}

.slogan-main {
	font-size: var(--fs-lg);
	font-weight: bold;
	color: var(--primary-orange);
	margin-bottom: 30px;
	letter-spacing: 0.05em;
}
@media (max-width: 768px) {
	.slogan-main {
		font-size: var(--fs-md);
	}
}

.slogan-desc {
	font-size: var(--fs-sub);
	color: var(--text-main);
	line-height: 2;
	text-align: left;
	display: inline-block;
	max-width: 600px;
}

/* -----------------------
	企業理念 (安楽成ス)
-------------------------- */

.philosophy-intro {
	margin-bottom: 60px;
}
.philosophy-title {
	text-align: center;
	font-size: var(--fs-lg);
	font-weight: bold;
	color: var(--primary-orange);
	margin-bottom: 20px;
}
.philosophy-text {
	font-size: var(--fs-sub);
	color: var(--text-gray);
	line-height: 1.8;
	text-align: left;
	max-width: 600px;
	margin: 0 auto;
}

.philosophy-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}
@media (max-width: 768px) {
	.philosophy-grid {
		grid-template-columns: 1fr;
	}
}

.philosophy-card {
	position: relative;
	background: var(--bg-white);
	border-radius: 0;
	padding: 50px 40px;
	box-shadow: 15px 15px 0px var(--border-color);
	border: 1px solid var(--border-color);
	overflow: hidden;
}

.philosophy-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background: var(--primary-orange);
}

.card-header {
	position: relative;
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
}

.kanji-bg {
	position: absolute;
	top: -40px;
	right: -20px;
	font-size: 160px;
	font-family: "ヒラギノ明朝 ProN", "serif";
	font-weight: 900;
	color: rgba(255, 102, 0, 0.05);
	line-height: 1;
	pointer-events: none;
}

.card-title {
	font-size: var(--fs-xl);
	font-family: "ヒラギノ明朝 ProN", "serif";
	font-weight: bold;
	color: var(--text-main);
	letter-spacing: 0.1em;
	position: relative;
	z-index: 1;
}

.en-text {
	font-size: var(--fs-sm);
	font-weight: 800;
	color: var(--primary-orange);
	letter-spacing: 0.2em;
	margin-top: 5px;
}

.concept-copy {
	display: block;
	font-size: var(--fs-base);
	font-weight: bold;
	color: var(--text-main);
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px dotted var(--border-color);
}

.card-desc {
	font-size: var(--fs-sub);
	color: var(--text-gray);
	line-height: 2;
	position: relative;
	z-index: 1;
}

