@charset "UTF-8";

/* ===================================================
   経営理念ページ専用スタイル
=================================================== */

.l-philosophy {
	padding-bottom: 6rem;
}
@media screen and (min-width: 768px) {
	.l-philosophy {
		padding-bottom: 12rem;
	}
}

/* -----------------------------
   ヒーロー（理念ステートメント）
----------------------------- */
.philosophy-hero {
	position: relative;
	max-width: 88rem;
	margin: 0 auto 6rem;
	padding: 6rem 2.5rem 5rem;
	text-align: center;
	background: linear-gradient(135deg, #0B41A0 0%, #04A7FC 100%);
	border-radius: 3rem;
	box-shadow: 0 16px 40px rgba(11, 65, 160, 0.25);
	color: #fff;
	overflow: hidden;
}
.philosophy-hero::before,
.philosophy-hero::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	pointer-events: none;
}
.philosophy-hero::before {
	width: 26rem;
	height: 26rem;
	top: -10rem;
	right: -8rem;
}
.philosophy-hero::after {
	width: 18rem;
	height: 18rem;
	bottom: -7rem;
	left: -6rem;
}
.philosophy-hero__label {
	position: relative;
	display: inline-block;
	font-size: 1.4rem;
	font-weight: bold;
	letter-spacing: 0.2em;
	margin-bottom: 2.5rem;
	padding: 0.6rem 2rem;
	background: rgba(255, 255, 255, 0.18);
	border-radius: 2rem;
	z-index: 1;
}
.philosophy-hero__title {
	position: relative;
	font-size: 3.2rem;
	line-height: 1.5;
	font-weight: 900;
	letter-spacing: 0.05em;
	margin-bottom: 2.5rem;
	z-index: 1;
}
.philosophy-hero__title-jp {
	display: block;
}
.philosophy-hero__lead {
	position: relative;
	font-size: 1.5rem;
	line-height: 2;
	z-index: 1;
}
@media screen and (min-width: 768px) {
	.philosophy-hero {
		padding: 9rem 4rem 8rem;
		margin-bottom: 8rem;
	}
	.philosophy-hero__label {
		font-size: 1.6rem;
		margin-bottom: 3rem;
	}
	.philosophy-hero__title {
		font-size: 5.4rem;
		margin-bottom: 3rem;
	}
	.philosophy-hero__lead {
		font-size: 1.7rem;
	}
}

/* -----------------------------
   コンテンツカード
----------------------------- */
.philosophy-card {
	position: relative;
	background: #fff;
	padding: 6.5rem 2.5rem 4rem;
	border-radius: 2.5rem;
	box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
	max-width: 88rem;
	margin: 0 auto 4rem;
}
.philosophy-card__no {
	position: absolute;
	top: -2.5rem;
	left: 2.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 5rem;
	height: 5rem;
	background: #0B41A0;
	color: #fff;
	font-family: "Lato", sans-serif;
	font-size: 2rem;
	font-weight: 900;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(11, 65, 160, 0.3);
	letter-spacing: 0.05em;
}
.philosophy-card .title.is-4 {
	margin-bottom: 2rem;
	font-feature-settings: "palt";
	color: #0B41A0;
}
.philosophy-card__text {
	line-height: 2.2;
	margin-bottom: 1.5rem;
}
.philosophy-card__text:last-child {
	margin-bottom: 0;
}
@media screen and (min-width: 768px) {
	.philosophy-card {
		padding: 7rem 5rem 5rem;
		margin-bottom: 5rem;
	}
	.philosophy-card__no {
		top: -3rem;
		left: 4rem;
		width: 6rem;
		height: 6rem;
		font-size: 2.4rem;
	}
}

/* -----------------------------
   4つの要素グリッド
----------------------------- */
.philosophy-elements {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	list-style: none;
	padding: 0;
	margin: 2.5rem 0;
}
.philosophy-elements__item {
	position: relative;
	background: linear-gradient(135deg, #f4f8ff 0%, #e8f3ff 100%);
	border: 2px solid #0B41A0;
	border-radius: 1.5rem;
	padding: 2rem 1rem;
	text-align: center;
	transition: transform 0.2s ease;
}
.philosophy-elements__item:hover {
	transform: translateY(-3px);
}
.philosophy-elements__label {
	display: block;
	font-size: 2rem;
	font-weight: bold;
	color: #0B41A0;
	letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
	.philosophy-elements {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.5rem;
		margin: 3.5rem 0;
	}
	.philosophy-elements__item {
		padding: 2.5rem 1rem;
	}
	.philosophy-elements__label {
		font-size: 2.4rem;
	}
}
