/* Lineup Page */
.lineup-main-visual {
	position: relative;
	width: 100%;
	margin-bottom: 50px;
}

.lineup-main-visual img {
	width: 100%;
	height: auto;
	display: block;
}

.mv-copy {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	width: 90%;
	text-align: center;
	font-family: "Noto Serif JP", serif;
}

.mv-copy h2 {
	font-size: 32px;
	font-weight: bold;
}

.lineup-intro {
	margin: 20px 0;
	font-size: 30px;
	font-family: "Noto Serif JP", serif;
	text-align: center;
}

.lineup-mv {
	margin-bottom: 40px;
}

.mv-image-wrap {
	position: relative;
	width: 100%;
}

.mv-image-wrap img {
	width: 100%;
	height: auto;
	display: block;
}

.mv-text-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 60px;
	box-sizing: border-box;
	pointer-events: none;
}


.mv-text-overlay.is-top {
	justify-content: flex-start;
}

.mv-text-overlay.is-center {
	justify-content: center;
}

.mv-text-overlay.is-bottom {
	justify-content: flex-end;
}

.lineup-mv-copy {
	color: #000;
	font-size: 32px;
	font-weight: bold;
	text-align: center;
	line-height: 1.4;
	margin: 0;
	text-shadow:
		0 0 8px #fff,
		0 0 15px #fff,
		0 0 25px #fff,
		0 0 5px rgba(255, 255, 255, 0.8);
	font-family: "Noto Serif JP", serif;

}


/* Section Titles */
.lineup-section-title {
	text-align: center;
	font-size: 28px;
	margin-top: 60px;
	position: relative;
	padding-bottom: 15px;
}

.lineup-section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: #f6b4b4;
}

.section-lead {
	text-align: center;
	margin: 20px 0 40px;
}

.section-title-wrap {
	text-align: center;
	margin-bottom: 50px;
}

.section-title-standard {
	font-size: 32px;
	display: inline-block;
	position: relative;
	padding-bottom: 15px;
}

.section-title-standard::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background-color: #ff6b6b;
}

.section-subtitle {
	margin: 20px 0;
}

.section-description {
	text-align: left;
}

.lineup-header {
	text-align: center;
	margin: 60px 0 40px;
}

.lineup-main-title {
	font-size: 36px;
	font-weight: bold;
	color: #333;
	font-family: "Noto Serif JP", serif;
	text-align: center;
}

.lineup-sub-lead {
	margin-top: 15px;
	font-size: 18px;
	color: #666;
}

/* Spec Items */
.spec-item {
	margin-bottom: 80px;
}

.spec-name-bar {
	background-color: #f67b7b;
	color: #fff;
	padding: 12px 20px;
	font-size: 22px;
	font-weight: normal;
	margin-bottom: 25px;
	letter-spacing: 0.05em;
}

.spec-flex {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

.spec-image {
	flex: 1.1;
}

.spec-image img {
	width: 100%;
	height: auto;
	display: block;
}

.spec-details {
	flex: 0.9;
}

.pink-box {
	background-color: #f67b7b;
	color: #fff;
	padding: 8px 15px;
	font-size: 16px;
	margin-bottom: 15px;
}

.recommend-list {
	list-style: none;
	padding: 0 0 20px 0;
}

.recommend-list li {
	color: #f67b7b;
	font-weight: bold;
	font-size: 15px;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
}

.recommend-list li::before {
	content: "◉";
	margin-right: 8px;
}

.info-label {
	display: block;
	width: 100%;
	border: 1px solid #999;
	padding: 5px 12px;
	font-size: 15px;
	color: #333;
	background: #fff;
	margin-top: 15px;
}

.spec-info-list {
	list-style: none;
	padding: 10px 0 10px 5px;
	margin: 0;
}

.spec-info-list li {
	font-size: 14px;
	color: #333;
	line-height: 1.8;
	display: flex;
	align-items: flex-start;
}

.spec-info-list li::before {
	content: "◎";
	color: #999;
	font-size: 12px;
	margin-right: 10px;
	margin-top: 1px;
}

/* Content Section */
.lineup-content-section {
	padding: 80px 0;
	border-bottom: 1px solid #eee;
}

.lineup-content-section.bg-color {
	background-color: #efefe5;
	padding: 60px 0;
	width: 100%;
}

.lineup-flex-layout {
	display: flex;
	align-items: flex-start;
	gap: 80px;
	margin-top: 40px;
}

.lineup-flex-layout.lineup-reverse {
	flex-direction: row-reverse;
}

.lineup-text-area,
.lineup-image-area {
	flex: 1;
}

.lineup-text-area p {
	font-size: 16px;
	line-height: 1.8;
	color: #444;
	margin-bottom: 20px;
}

.lineup-image-area img {
	width: 100%;
	height: auto;
}

/* Color Matrix */
.color-matrix-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px 30px;
	margin-top: 50px;
	background-color: #fff;
	padding: 60px;
}

.palette-card {
	text-align: center;
}

.color-boxes {
	display: flex;
	height: 90px;
	margin-bottom: 8px;
}

.color-boxes div {
	flex: 1;
	height: 100%;
}

.color-info-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 12px;
}

.color-info-row div {
	flex: 1;
	font-size: 10px;
	line-height: 1.4;
	color: #444;
	text-align: center;
	padding: 0 2px;
}

.palette-title {
	font-size: 1.1rem;
	font-weight: bold;
	color: #333;
	margin-top: 10px;
}

/* Responsive */
@media (max-width: 900px) {
	.color-matrix-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.spec-flex {
		flex-direction: column;
	}

	.spec-name-bar {
		font-size: 18px;
	}

	.lineup-flex-layout,
	.lineup-flex-layout.lineup-reverse {
		flex-direction: column;
		gap: 30px;
	}

	.lineup-text-area,
	.lineup-image-area {
		width: 100%;
	}
}

@media (max-width: 600px) {
	.color-matrix-grid {
		grid-template-columns: 1fr;
	}

	.color-info-row div {
		font-size: 9px;
	}
}


/* メニューセクション独自のスタイル */
.menu-selection-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	/* 2列並び */
	row-gap: 30px;
	column-gap: 60px;
	margin-top: 40px;
}

.menu-info-card {
	background: #fff;
}

.menu-card-title {
	display: inline-block;
	background: #ff9a9a;
	color: #fff;
	padding: 5px 20px;
	margin-bottom: 20px;
	font-size: 1.1rem;
	width: 100%;
}

.menu-card-text {
	font-size: 0.95rem;
	line-height: 1.8;
	color: #333;
	text-align: justify;
	/* 文字の端を揃える */
}

/* スマホ対応 */
@media (max-width: 768px) {
	.menu-selection-grid {
		grid-template-columns: 1fr;
		/* 1列にする */
	}
}

#section-6 {
	margin-bottom: 60px;
}


/* ヘッダーバー（画像のデザインを再現） */
.spec-name-bar-pink {
	background-color: #ff7c7c;
	/* 画像に近いピンク */
	color: #fff;
	padding: 10px 20px;
	font-size: 1.5rem;
	font-weight: normal;
	margin-bottom: 30px;
}

/* フレックス調整 */
.spec-flex {
	display: flex;
	gap: 80px;
	align-items: flex-start;
	margin-bottom: 60px;
}

.spec-details {
	flex: 1;
}

.spec-image-wrap {
	flex: 0.8;
	text-align: center;
}

/* おすすめセクション（枠線スタイル） */
.recommend-box {
	margin: 20px 0;
	padding: 0;
}

.recommend-title {
	border-bottom: 1px solid #333;
	padding: 8px 15px;
	font-size: 1.1rem;
}

.recommend-dot-list {
	list-style: none;
	padding: 15px;
	margin: 0;
}

.recommend-dot-list li {
	position: relative;
	padding-left: 1.5em;
	margin-bottom: 8px;
}

.recommend-dot-list li::before {
	content: "●";
	position: absolute;
	left: 0;
	color: #000;
}

/* 黒ボタン */
.btn-black {
	display: inline-block;
	background: #000;
	color: #fff;
	padding: 12px 60px;
	text-decoration: none;
	transition: opacity 0.3s;
}

.btn-black:hover {
	opacity: 0.7;
}

/* 参考リンク */
.reference-link {
	margin-top: 15px;
	font-size: 0.9rem;
}

.reference-link a {
	color: #ff7c7c;
	text-decoration: underline;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
	.spec-flex {
		flex-direction: column;
	}

	.spec-image-wrap {
		order: -1;
		/* スマホでは画像を上に */
	}
}

.plan-description {
	text-align: justify;
}

.spec-cta-area {
	text-align: center;
}

/* 親コンテナ：画像の下に配置 */
.reference-link-group {
	margin-top: 20px;
	text-align: left;
	/* 左寄せ */
	font-size: 0.95rem;
	line-height: 1.6;
}

/* 行の設定 */
.reference-row {
	display: flex;
	margin-bottom: 10px;
	align-items: flex-start;
	/* 上揃え */
}

/* 左側のラベル（【参考サイト】など） */
.reference-label {
	flex: 0 0 160px;
	/* 横幅を160pxで固定（文字数に合わせて調整してください） */
	font-weight: normal;
	color: #333;
}

/* 右側のリンクエリア */
.reference-links {
	flex: 1;
	display: flex;
	flex-direction: column;
	/* リンクを縦に並べる */
}

/* リンク自体のデザイン */
.reference-links a {
	color: #ff7c7c;
	/* 画像のようなピンク色 */
	text-decoration: underline;
	margin-bottom: 2px;
	word-break: break-all;
	/* 長いURLがはみ出さないように */
}

.reference-links a:hover {
	text-decoration: none;
	opacity: 0.8;
}

/* スマホ対応（画面が狭いときは縦並びに） */
@media (max-width: 480px) {
	.reference-row {
		flex-direction: column;
	}

	.reference-label {
		flex: 0 0 auto;
		margin-bottom: 5px;
	}
}

/* ECセクション全体のコンテナ */
.ec-flex-container {
	display: flex;
	gap: 30px;
	/* カラム間の隙間 */
	padding: 0 0 40px;
}

/* 各カラムの幅設定 */
.ec-plan-column {
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* サブ見出し（薄いピンク背景） */
.plan-sub-title-pink {
	background-color: #ffb5b5;
	/* 少し薄めのピンク */
	color: #fff;
	padding: 8px 15px;
	font-size: 1.2rem;
	font-weight: normal;
	margin-bottom: 20px;
}

/* テキストの微調整 */
.plan-description {
	font-size: 0.95rem;
	line-height: 1.8;
	margin-bottom: 30px;
	flex-grow: 1;
	/* 説明文の長さが違ってもボタンの位置を揃える */
}

/* ボタンを中央寄せにする */
.spec-cta-area.center {
	text-align: center;
	margin-top: auto;
}

/* スマホ対応：縦に並べる */
@media (max-width: 768px) {
	.ec-flex-container {
		flex-direction: column;
		gap: 50px;
	}
}

/* 写真効果セクション全体 */
.photo-effect-section {
	padding: 60px 0;
	background-color: #fff;
}

.section-description {
	max-width: 900px;
	margin: 20px auto;
	text-align: left;
	font-size: 0.95rem;
	line-height: 1.8;
}

.highlight-text {
	color: #ff7c7c;
	/* 画像のピンク色 */
	text-align: center;
	margin-top: 20px;
	font-weight: bold;
}

/* 比較ユニットのタイトルバー */
.unit-title-bar {
	border: 1px solid #000;
	padding: 5px 15px;
	font-size: 1.1rem;
	text-align: left;
	margin-bottom: 25px;
	background: #fff;
}

/* 比較用フレックスボックス */
.comparison-unit {
	margin-bottom: 60px;
}

.comparison-flex {
	display: flex;
	gap: 30px;
}

.comparison-item {
	flex: 1;
}

/* サンプル画像の外枠 */
.sample-image {
	margin-bottom: 15px;
	line-height: 0;
}

.sample-image img {
	width: 100%;
	height: auto;
}

/* 説明文 */
.sample-desc {
	text-align: left;
	font-size: 0.9rem;
	line-height: 1.6;
	color: #333;
}

/* スマホ対応 */
@media (max-width: 768px) {
	.comparison-flex {
		flex-direction: column;
		gap: 40px;
	}

	.section-description {
		padding: 0 15px;
	}
}

#brand-steps-section {
	padding: 60px 20px;
	font-family: "Noto Sans JP", sans-serif;
}

.section-title-standard {
	text-align: center;
	font-size: 28px;
	position: relative;
	padding-bottom: 15px;
}

.section-title-standard::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background-color: #e98b8b;
	/* 画像のピンク色 */
}

.section-subtitle {
	text-align: center;
	margin-top: 15px;
	margin-bottom: 50px;
	color: #666;
}

/* 2カラムのグリッド */
.brand-steps-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	max-width: 1000px;
	margin: 0 auto;
}

.step-header {
	display: flex;
	align-items: center;
	border-top: 1px solid #e98b8b;
	margin-top: 15px;
}

.step-number {
	background-color: #e98b8b;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	padding: 5px 15px;
	margin-right: 15px;
}

.step-title {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	margin: 0;
}

.step-body p {
	font-size: 14px;
	line-height: 1.8;
	color: #444;
	margin: 0;
}

/* スマホ対応 */
@media (max-width: 768px) {
	.brand-steps-grid {
		grid-template-columns: 1fr;
	}
}


.info-head-pink {
	display: inline-block;
	color: #f68b8b;
	/* 強調色のピンク */
	font-weight: bold;
	font-size: 1.1rem;
	margin-bottom: 8px;
	position: relative;
}

/* ■マークを擬似要素で再現する場合 */
.info-head-pink::before {
	content: "■";
	margin-right: 5px;
}