@charset "UTF-8";
/*
 * 特集（feature）用スタイル
 *   - トップ等の特集一覧（.rexsol-feature）
 *   - 特集の個別ページの体裁
 *
 * デザイン方針：ネイビー #2b3a5c ／ くすみゴールド #c9a24b ／ 明朝見出し・余白主体
 * 文字方針：全角チルダ「～」(U+FF5E)。CP932 で安全な文字のみ。
 */

/* =========================================================================
 * 特集一覧
 * ====================================================================== */
.rexsol-feature {
	margin: 0 auto;
	padding: 8px 0;
}

.rexsol-feature__head {
	text-align: center;
	margin-bottom: 32px;
}
.rexsol-feature__en {
	display: block;
	font-size: 10px;
	letter-spacing: 0.42em;
	color: #b0a98f;
	margin-bottom: 10px;
}
.rexsol-feature__title {
	font-family: "Times New Roman", "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", serif;
	font-weight: 400;
	font-size: 21px;
	letter-spacing: 0.18em;
	color: #1a1a1a;
	margin: 0;
}

.rexsol-feature__grid {
	display: grid;
	gap: 32px 28px;
}
.rexsol-feature__grid--2 { grid-template-columns: repeat(2, 1fr); }
.rexsol-feature__grid--3 { grid-template-columns: repeat(3, 1fr); }
.rexsol-feature__grid--4 { grid-template-columns: repeat(4, 1fr); }

/* 特集カード（枠なし・写真＋テキスト） */
.rexsol-feature__card {
	display: block;
	text-decoration: none;
	color: inherit;
}
.rexsol-feature__img {
	display: block;
	width: 100%;
	padding-top: 62%;
	background-size: cover;
	background-position: center;
	background-color: #e4e2db;
	margin-bottom: 16px;
	transition: opacity 0.3s ease;
}
.rexsol-feature__card:hover .rexsol-feature__img {
	opacity: 0.82;
}
.rexsol-feature__name {
	display: block;
	font-family: "Times New Roman", "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", serif;
	font-size: 16px;
	letter-spacing: 0.06em;
	color: #1a1a1a;
	line-height: 1.6;
	margin-bottom: 10px;
}
.rexsol-feature__desc {
	display: block;
	font-size: 12px;
	letter-spacing: 0.03em;
	color: #8a8475;
	line-height: 1.9;
	margin-bottom: 12px;
}
.rexsol-feature__more {
	display: inline-block;
	font-size: 11px;
	letter-spacing: 0.14em;
	color: #2b3a5c;
	border-bottom: 1px solid #2b3a5c;
	padding-bottom: 4px;
	transition: opacity 0.25s ease;
}
.rexsol-feature__card:hover .rexsol-feature__more {
	opacity: 0.6;
}

/* =========================================================================
 * 特集 個別ページの体裁（本文は通常の entry-content。見出しを上品に）
 * ====================================================================== */
.single-feature .entry-title,
.post-type-archive-feature .page-title {
	font-family: "Times New Roman", "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", serif;
	font-weight: 400;
	letter-spacing: 0.12em;
	color: #1a1a1a;
	text-align: center;
}
.single-feature .entry-content h2 {
	font-family: "Times New Roman", "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", serif;
	font-weight: 400;
	letter-spacing: 0.08em;
	color: #1a1a1a;
	margin-top: 2em;
	padding-bottom: 0.4em;
	border-bottom: 1px solid #ebe9e2;
}
.single-feature .entry-content h3 {
	font-weight: 500;
	letter-spacing: 0.04em;
	color: #2b3a5c;
	margin-top: 1.6em;
}
.single-feature .entry-content p {
	line-height: 2;
	letter-spacing: 0.03em;
	color: #444;
}

/* レスポンシブ */
@media (max-width: 782px) {
	.rexsol-feature__grid--3,
	.rexsol-feature__grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}
	.rexsol-feature__title {
		font-size: 18px;
	}
}
@media (max-width: 480px) {
	.rexsol-feature__grid--2,
	.rexsol-feature__grid--3,
	.rexsol-feature__grid--4 {
		grid-template-columns: 1fr;
	}
}
