/**
 * 下層ページで共有する見出し、カード、リンク導線などの基底部品を管理する。
 *
 * ページ固有CSSはこのファイルの構造を前提に必要な差分だけを追加する。
 * 同じ部品の色・余白を複数ページから個別に上書きせず、共通仕様の変更はここへ集約する。
 */

/**
 * 1.0 下層ページ共通部品
 *
 * 学校紹介・教育・入学情報など複数ページ群で再利用する色・見出し・カード基準をまとめ、ページ固有CSSからの重複指定を防ぐ。
 */

.shs-about-family {
--wine: #9e5369;
	--wine-deep: #9e5369;
	--rose: #ef78bc;
	--rose-soft: rgba(239, 120, 188, .090);
	--rose-pale: rgba(239, 120, 188, .030);
	--aqua: #56d1ca;
	--ink: #282329;
	--muted: #746b70;
	--line: rgba(239, 120, 188, .140);
	--white: #ffffff;
	--shadow: 0 18px 50px rgba(158, 83, 105, 0.12);
	--radius: 22px;
	--container: 1180px;
scroll-behavior: smooth;
margin: 0;
	color: var(--ink);
	font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	line-height: 1.8;
}

.shs-about-family * {
	box-sizing: border-box;
}

.shs-about-family a {
	color: inherit;
	text-decoration: none;
}

.shs-about-family img {
	max-width: 100%;
	display: block;
}

.shs-about-family button,
.shs-about-family input,
.shs-about-family textarea {
	font: inherit;
}

.shs-about-family .container {
	width: min(var(--container), calc(100% - 48px));
	margin: 0 auto;
}

.shs-about-family .eyebrow {
	margin: 0 0 10px;
	color: var(--rose);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.19em;
	text-transform: uppercase;
}

.shs-about-family .section-title {
	margin: 0;
	color: #9e5369;
	font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: clamp(28px, 3.6vw, 44px);
	font-weight: 500;
	letter-spacing: 0.06em;
}

.shs-about-family .section-copy {
	margin: 20px 0 0;
	color: var(--muted);
}

.shs-about-family .accent-line {
	width: 46px;
	height: 2px;
	margin: 18px 0;
	background: var(--rose);
}

.shs-about-family .btn {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 23px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	transition:
		transform var(--shs-hover-lift-duration) var(--shs-hover-lift-ease),
		box-shadow var(--shs-hover-lift-duration) var(--shs-hover-lift-ease),
		background var(--shs-hover-lift-duration) var(--shs-hover-lift-ease),
		color var(--shs-hover-lift-duration) var(--shs-hover-lift-ease);
}

.shs-about-family .btn:hover {
	transform: translateY(-2px);
}

.shs-about-family .btn-primary {
	color: #ffffff;
	background: #9e5369;
	box-shadow: 0 12px 28px rgba(158, 83, 105, 0.22);
}

.shs-about-family .btn-outline {
	color: #9e5369;
	background: rgba(255, 255, 255, 0.9);
	border-color: rgba(158, 83, 105, 0.45);
}

.shs-about-family .card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.shs-about-family .link-card {
	min-height: 310px;
	padding: 45px 36px 34px;
	text-align: center;
	background: #fff;
	border: 1px solid rgba(239, 120, 188, 0.8);
	border-radius: 18px;
	box-shadow: 0 14px 38px rgba(158, 83, 105, 0.08);
}

.shs-about-family .card-icon {
	width: 54px;
	height: 54px;
	margin: 0 auto 18px;
	display: grid;
	place-items: center;
	color: var(--rose);
	background: var(--rose-pale);
	border-radius: 50%;
}

.shs-about-family .card-icon svg,
.shs-about-family .p3-meta svg{
	width: 30px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
}

.shs-about-family .link-card h3 {
	position: relative;
	margin: 0;
	padding-bottom: 18px;
	color: #9e5369;
	font-family: "Yu Mincho", serif;
	font-size: 25px;
	font-weight: 600;
	letter-spacing: 0.12em;
}

.shs-about-family .link-card h3::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 4px;
	width: 34px;
	height: 2px;
	transform: translateX(-50%);
	background: var(--rose);
}

.shs-about-family .link-card p {
	margin: 18px 0 0;
	color: var(--muted);
	font-size: 14px;
}

.shs-about-family .card-arrow {
	display: block;
	margin-top: 26px;
	color: var(--rose);
	font-size: 25px;
}

.shs-about-family .link-card.is-current {
	background: linear-gradient(180deg, #fff, rgba(239, 120, 188, .030));
	border-color: rgba(239, 120, 188, 0.48);
	box-shadow: 0 16px 42px rgba(158, 83, 105, 0.1);
}

.shs-about-family .link-card.is-current:hover {
	transform: none;
	box-shadow: 0 16px 42px rgba(158, 83, 105, 0.1);
}

.shs-about-family .link-card.is-current .card-arrow {
	opacity: 0.5;
}

@media (max-width: 760px) {
	.shs-about-family .container {
		width: min(100% - 30px, var(--container));
	}

	.shs-about-family .card-grid {
		grid-template-columns: 1fr;
	}

	.shs-about-family .link-card {
		min-height: 0;
		padding: 34px 24px 28px;
	}

}
