/* /reason/media ページ用スタイル */

/* Awards と同じセクション上部余白 */
article section#Introduction {
	padding-top: 130px;
}
@media screen and (max-width: 1279px) {
	article section#Introduction {
		padding-top: 10.15vw;
	}
}
@media screen and (max-width: 767px) {
	article section#Introduction {
		padding-top: 20vw;
	}
}

/* copperplate SVG を自然サイズで表示（引き伸ばし防止） */
#Introduction .midashi h4 {
	width: fit-content;
	margin: auto;
}
#Introduction .midashi h4 img {
	width: auto;
	height: 26px;  /* Awards.svg の実描画高さに合わせる */
	max-width: 100%;
}

.mediaList {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.mediaList li a {
	display: block;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}

.mediaList li img {
	width: 100%;
	height: auto;
	display: block;
}

@media (max-width: 768px) {
	.mediaList li a {
		max-width: 80vw;
	}
}

/* 1枚目：画像＋テキスト横並びレイアウト */
.mediaList__featured-inner {
	display: flex;
	align-items: stretch;
	gap: 40px;
	max-width: 900px;
	margin: 0 auto;
}

.mediaList__featured-img {
	flex: 0 0 500px;
	max-width: 500px;
}

.mediaList__featured-img a {
	display: block;
	width: 100%;
	max-width: 100%;
	margin: 0;
}

.mediaList__featured-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mediaList__featured-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
}

.mediaList__featured-catch {
	font-family: "Noto Serif JP", serif;
	font-size: 1.7rem;
	font-weight: 400;
	color: #807c18;
	line-height: 1.8;
	margin-bottom: 10px;
}

.mediaList__featured-list {
	list-style: none;
	padding-left: 0;
	margin-top: 8px;
}

.mediaList__featured-list li {
	padding-left: 1.2em;
	text-indent: -1.2em;
}

.mediaList__featured-list li::before {
	content: "・";
	color: #807c18;
}

.mediaList__featured-list li {
	font-size: 1.26rem;
	font-weight: 300;
	color: #66622c;
	line-height: 1.9em;
	margin-bottom: 5px;
}

.mediaList__featured-list li:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.mediaList__featured-catch {
		font-size: 2rem;
	}

	.mediaList__featured-list li {
		font-size: 1.55rem;
	}
}

@media (max-width: 768px) {
	.mediaList__featured-inner {
		flex-direction: column;
		gap: 16px;
		align-items: center;
	}

	.mediaList__featured-img {
		flex: 0 0 auto;
		width: 80vw;
	}

	.mediaList__featured-img a {
		max-width: 100%;
		margin: 0;
	}

	.mediaList__featured-text {
		width: 80vw;
	}
}
