/* Info page and top information override.
   Loaded locally after the CDN stylesheet so localhost reflects current code. */
.page-index .section--info,
.page-info .section--info-list,
.page-info .section--info-detail {
	background: linear-gradient(180deg, #0b0b11, #160d18);
}

.page-index .info-feature {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, .92fr);
	gap: clamp(24px, 4vw, 48px);
	align-items: center;
	overflow: hidden;
	padding: clamp(24px, 4vw, 52px);
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 8px;
	background:
		radial-gradient(circle at 34% 0%, rgba(255, 122, 24, .16), transparent 30%),
		linear-gradient(135deg, rgba(255, 90, 26, .11), rgba(0, 0, 0, .66) 42%, rgba(14, 9, 16, .9)),
		rgba(0, 0, 0, .5);
	box-shadow:
		0 24px 54px rgba(0, 0, 0, .45),
		inset 0 1px 0 rgba(255, 255, 255, .07),
		inset 0 0 42px rgba(255, 90, 26, .055);
}

.page-index .info-feature::before {
	content: "";
	position: absolute;
	top: 0;
	left: 7%;
	right: 7%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 122, 24, .68), transparent);
}

.page-index .info-feature--empty,
.page-index .info-feature--text-only {
	grid-template-columns: minmax(0, 1fr);
}

.page-index .info-feature--empty {
	width: 100%;
}

.page-index .info-feature--text-only .info-feature__summary {
	max-width: 46em;
}

.page-index .info-feature__copy {
	position: relative;
	z-index: 1;
	min-width: 0;
}

.page-index .info-feature__date {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #ff7a18;
	font-family: "Montserrat", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: .08em;
}

.page-index .info-feature__calendar {
	position: relative;
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	border: 2px solid currentColor;
	border-radius: 3px;
}

.page-index .info-feature__calendar::before {
	content: "";
	position: absolute;
	left: 3px;
	right: 3px;
	top: 5px;
	border-top: 2px solid currentColor;
}

.page-index .info-feature__calendar::after {
	content: "";
	position: absolute;
	top: -5px;
	left: 4px;
	width: 10px;
	height: 6px;
	border-left: 2px solid currentColor;
	border-right: 2px solid currentColor;
}

.page-index .info-feature__title {
	margin: 1.35rem 0 0;
	color: #fff;
	font-family: Georgia, "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho", serif;
	font-size: clamp(1.55rem, 2.6vw, 2.2rem);
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0;
	text-shadow: 0 2px 16px rgba(0, 0, 0, .72);
}

.page-index .info-feature__rule {
	width: 52px;
	height: 2px;
	margin: 1.25rem 0 1.25rem;
	background: linear-gradient(90deg, #ff7a18, rgba(255, 122, 24, .12));
}

.page-index .info-feature__summary {
	max-width: 34em;
	margin: 0;
	color: rgba(255, 255, 255, .82);
	font-size: 1.02rem;
	line-height: 1.75;
}

.page-index .info-feature__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	margin-top: 1.9rem;
	padding: 0.72rem 1.55rem;
	border: 1px solid rgba(255, 122, 24, .72);
	border-radius: 4px;
	color: #ff9a57;
	font-family: "Montserrat", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
	font-size: .95rem;
	font-weight: 800;
	letter-spacing: .06em;
	text-decoration: none;
	background: rgba(0, 0, 0, .34);
	transition: transform .12s ease, border-color .12s ease, background .12s ease, color .12s ease;
}

.page-index .info-feature__button::after {
	content: "";
	width: 8px;
	height: 8px;
	margin-left: 14px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
}

.page-index .info-feature__button:hover {
	transform: translateY(-1px);
	border-color: rgba(255, 122, 24, .95);
	color: #fff2d9;
	background: rgba(255, 255, 255, .05);
}

.page-index .info-feature__media {
	position: relative;
	z-index: 1;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 8px;
	background: rgba(0, 0, 0, .36);
	box-shadow: 0 18px 38px rgba(0, 0, 0, .34);
}

.page-index .info-feature__img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.page-info .info-list {
	display: grid;
	gap: 10px;
}

.page-info .section--info-list .section__head {
	margin: 0 0 1.5rem;
}

.page-info .info-empty {
	margin-top: 0;
}

.page-info .info-list__item {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	padding: 0.95rem 1.5rem;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 8px;
	color: inherit;
	text-decoration: none;
	background: rgba(0, 0, 0, .28);
	transition: transform .12s ease, border-color .12s ease, background .12s ease;
}

.page-info .info-list__item:hover {
	transform: translateY(-1px);
	border-color: rgba(255, 183, 110, .45);
	background: rgba(255, 255, 255, .06);
}

.page-info .info-list__date {
	color: #ffcc9d;
	font-size: 0.92rem;
	letter-spacing: .04em;
	white-space: nowrap;
}

.page-info .info-list__title {
	min-width: 0;
	color: var(--fg);
	font-weight: 700;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.page-info .info-list__more {
	color: #ffb56f;
	font-family: "Montserrat", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .08em;
	white-space: nowrap;
}

.page-info .info-detail {
	border: 1px solid rgba(255, 255, 255, .12);
	background: rgba(0, 0, 0, .3);
}

.page-info .info-detail__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 1rem;
}

.page-info .info-detail__kind {
	font-family: "Montserrat", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
	font-weight: 800;
	letter-spacing: .18em;
	color: #ffd7b0;
}

.page-info .info-detail__date {
	color: var(--muted);
	font-size: .95rem;
	letter-spacing: .04em;
	white-space: nowrap;
}

.page-info .info-detail__title {
	font-size: 1.7rem;
	line-height: 1.35;
	font-weight: 700;
	margin: 0 0 1rem;
}

.page-info .info-detail__media {
	margin-bottom: 1rem;
}

.page-info .info-detail__img {
	width: 100%;
	height: auto;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, .12);
	background: rgba(0, 0, 0, .2);
}

.page-info .info-detail__body {
	color: #f1f1f1;
	font-size: 1.05rem;
	line-height: 1.8;
}

.page-info .info-detail__actions {
	display: flex;
	justify-content: flex-start;
}

@media (max-width: 991.98px) {
	.page-index .info-feature {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 1.2rem;
	}

	.page-index .info-feature__title {
		font-size: 1.45rem;
	}

	.page-index .info-feature__summary {
		font-size: .95rem;
		line-height: 1.65;
	}

	.page-index .info-feature__button {
		width: 100%;
	}

	.page-info .info-list__item {
		grid-template-columns: 1fr auto;
		row-gap: 4px;
		padding: 0.9rem 1.25rem;
	}

	.page-info .info-list__date {
		grid-column: 1 / -1;
	}

	.page-info .info-list__title {
		white-space: normal;
	}

	.page-info .info-detail__head {
		align-items: flex-start;
		flex-direction: column;
	}

	.page-info .info-detail__title {
		font-size: 1.45rem;
	}
}
