.banner-header {
	position: relative;
	width: 100%;
	max-width: 700px;
	aspect-ratio: 700 / 75;
	overflow: hidden;
	background: url(../../_flash/bg.jpg) center -12% no-repeat;
	background-size: 100% auto;
	margin: 0 auto;
}
.banner-header-title {
	position: absolute;
	top: 0;
	left: 0;
	right: 18%;
	bottom: 0;
	display: flex;
	align-items: center;
	padding-left: 2.5%;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: clamp(15px, 3.6vw, 26px);
	font-weight: bold;
	color: #ffffff;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
	white-space: nowrap;
}
.banner-header-thumb {
	position: absolute;
	top: 16%;
	right: 2%;
	width: 10.7%;
	height: 66%;
	overflow: hidden;
	box-shadow: 0 0 0 2px #ffffff;
}
.banner-header-thumb img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1.2s ease-in-out;
}
.banner-header-thumb img.active {
	opacity: 1;
}

.banner-side {
	width: 100%;
	max-width: 140px;
	background: #ffffff;
	margin: 0 auto;
}
.banner-side .banner-side-title {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 13px;
	text-align: center;
	padding: 10px 0;
	color: #333333;
	border-bottom: 1px solid #CCCCCC;
}
.banner-side-slot {
	position: relative;
	width: 100%;
	aspect-ratio: 140 / 160;
	overflow: hidden;
}
.banner-side-slot img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1.2s ease-in-out;
}
.banner-side-slot img.active {
	opacity: 1;
}
