/* Hero */
.hero-section { background:linear-gradient(135deg,rgba(24,29,56,.55) 0%,rgba(6,50,80,.50) 100%), url('../img/hero-intensive.jpg') center/cover no-repeat; }

@media (max-width: 767px) {
	.hero-section .text-label-sm { margin-top: 40px; }
	.hero-desc { font-size: 0.7rem; }
}

/* スケジュール表スクロールヒント */
@media (max-width: 991px) {
	.schedule-scroll-wrap {
		position: relative;
	}
	.schedule-scroll-wrap::after {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		width: 48px;
		height: 100%;
		background: linear-gradient(to right, transparent, rgba(255,255,255,0.85));
		pointer-events: none;
		z-index: 1;
	}
	.scroll-hint-overlay {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		background: rgba(0, 0, 0, 0.55);
		color: #fff;
		border-radius: 12px;
		padding: 16px 24px;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 6px;
		z-index: 10;
		pointer-events: none;
		animation: scrollHintFade 2.5s ease forwards;
	}
	.scroll-hint-icon {
		font-size: 2rem;
		color: #fff;
		animation: scrollHintSwipe 1s ease-in-out infinite;
	}
	.scroll-hint-text {
		font-size: 0.8rem;
		font-weight: 700;
		letter-spacing: 0.1em;
	}
	@keyframes scrollHintFade {
		0%   { opacity: 1; }
		70%  { opacity: 1; }
		100% { opacity: 0; visibility: hidden; }
	}
	@keyframes scrollHintSwipe {
		0%   { transform: translateX(-6px); }
		50%  { transform: translateX(6px); }
		100% { transform: translateX(-6px); }
	}
}
