/* =========================================================
	日野2団 活動予定 表示CSS
========================================================= */

.has-schedule {
	padding: 84px 0;
	background:
		radial-gradient(circle at top left, rgba(201, 149, 63, 0.12), transparent 34%),
		linear-gradient(180deg, #fbf7ee 0%, #f4efe2 100%);
}

.has-schedule-inner {
	width: min(1120px, calc(100% - 40px));
	margin: 0 auto;
}

.has-schedule-title {
	position: relative;
	max-width: 760px;
	margin: 0 auto 36px !important;
	padding: 0 0 18px !important;
	background: transparent !important;
	border: none !important;
	color: #10291f !important;
	font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
	font-size: clamp(28px, 3.4vw, 38px) !important;
	font-weight: 900;
	line-height: 1.45;
	letter-spacing: 0.06em;
	text-align: center;
}

.has-schedule-title::before {
	content: "Schedule";
	display: block;
	margin: 0 0 12px;
	color: #c9953f;
	font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.4;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.has-schedule-title::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 90px;
	height: 2px;
	background: linear-gradient(90deg, rgba(201, 149, 63, 0), #c9953f, rgba(201, 149, 63, 0));
	transform: translateX(-50%);
}

.has-schedule-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	padding: 0;
}

.has-schedule-card {
	position: relative;
	padding: 34px;
	border: 1px solid rgba(16, 41, 31, 0.08);
	border-radius: 28px;
	background:
		radial-gradient(circle at top right, rgba(201, 149, 63, 0.16), transparent 34%),
		#ffffff;
	box-shadow: 0 24px 70px rgba(16, 41, 31, 0.12);
	color: #23312b;
	font-size: 15px;
	line-height: 1.95;
	overflow: hidden;
}

.has-schedule-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, #10291f 0%, #c9953f 55%, rgba(201, 149, 63, 0) 100%);
}

.has-schedule-team {
	position: relative;
	margin: 0 0 22px !important;
	padding: 0 0 16px !important;
	border-bottom: 1px solid rgba(16, 41, 31, 0.10) !important;
	color: #10291f !important;
	font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
	font-size: 24px !important;
	font-weight: 900;
	line-height: 1.35;
	letter-spacing: 0.04em;
}

.has-schedule-team::before {
	content: "Scout Section";
	display: block;
	margin: 0 0 8px;
	color: #c9953f;
	font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.has-schedule-card p {
	margin: 0 0 12px;
}

.has-schedule-card p:last-child {
	margin-bottom: 0;
}

.has-schedule-card strong {
	color: #10291f;
	font-weight: 900;
}

.has-schedule-notice {
	margin-bottom: 18px !important;
	padding: 13px 16px;
	border: 1px solid rgba(185, 28, 28, 0.14);
	border-radius: 14px;
	background: rgba(185, 28, 28, 0.07);
	color: #b91c1c;
	font-weight: 900;
}

.has-schedule-program,
.has-schedule-photo-box {
	margin-top: 24px !important;
	padding-top: 18px;
	border-top: 1px solid rgba(16, 41, 31, 0.10);
}

.has-schedule-program a,
.has-schedule-photo-caption a {
	color: #8a5a2f;
	font-weight: 900;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.has-schedule-photo-caption {
	margin: 0 !important;
	color: #5f6f67;
	font-size: 14px;
	line-height: 1.8;
}

.has-schedule-action {
	display: flex;
	justify-content: center;
	padding: 36px 0 0;
}

.has-schedule-action a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 240px;
	min-height: 54px;
	padding: 14px 30px;
	border-radius: 999px;
	background: linear-gradient(135deg, #e7bd64 0%, #c9953f 100%);
	box-shadow: 0 18px 42px rgba(201, 149, 63, 0.24);
	color: #1c1608;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.4;
	letter-spacing: 0.05em;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.has-schedule-action a::after {
	content: "→";
	margin-left: 8px;
	font-size: 20px;
	line-height: 1;
}

.has-schedule-action a:hover {
	transform: translateY(-2px);
	box-shadow: 0 22px 50px rgba(201, 149, 63, 0.32);
	color: #1c1608;
	text-decoration: none;
}

.has-schedule-note {
	margin: 14px 0 0;
	color: #5f6f67;
	font-size: 13px;
	line-height: 1.8;
	text-align: center;
}

@media screen and (max-width: 900px) {
	.has-schedule-list {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 640px) {
	.has-schedule {
		padding: 58px 0;
	}

	.has-schedule-inner {
		width: min(100% - 28px, 1120px);
	}

	.has-schedule-title {
		margin-bottom: 28px !important;
		font-size: 26px !important;
		text-align: left;
	}

	.has-schedule-title::after {
		left: 0;
		transform: none;
	}

	.has-schedule-card {
		padding: 28px 24px;
		border-radius: 22px;
		font-size: 14px;
		line-height: 1.9;
	}

	.has-schedule-team {
		font-size: 22px !important;
	}

	.has-schedule-action {
		padding-top: 28px;
	}

	.has-schedule-action a {
		width: 100%;
		min-width: 0;
	}
}
