﻿/*トップページ
---------------------------------------------------------------------------*/


/*「更新情報」ブロック
---------------------------------------------------------------------------*/
.new dl {
	height: min(32vw, 160px);
	overflow: auto;
	margin-top: max(-1vw, -10px);
	padding-right: min(2vw, 20px);
	padding-left: min(2vw, 20px);
	margin-right: min(2vw, 20px);
}

.new dt {
	font-size: clamp(1.1rem, calc(0.9rem + 0.625vw), 1.5rem);
	font-weight: bold;
	float: left;
	padding: min(2vw, 10px);
}

.new dd {
	font-size: clamp(1.1rem, calc(0.9rem + 0.625vw), 1.5rem);
	border-bottom: 1px solid #cccccc;
	padding: min(2vw, 10px);
	line-height: 1.6;

}

/*Youtubeスライダー*/
.swiper-container {
	text-align: center;
}

#slider {
	aspect-ratio: 16 / 9;
}

.swiper-container .swiper-slide img {
	max-width: 100%;
	width: 100%;
	height: auto;
}

.swiper-container .swiper-slide {
	position: relative;
	width: 100%;
}

.swiper-container .swiper-slide:before {
	content: "";
	display: block;
	padding-top: 56.25%;
}

.swiper-container .swiper-slide iframe {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	margin: 0 auto;
	width: 100%;
	height: 100%;
}

#thumbs {
	height: 20%;
	box-sizing: border-box;
	padding: 10px 0;
}

#thumbs .swiper-slide {
	width: 20%;
	height: 100%;
	opacity: 0.2;
	cursor: pointer;
}

#thumbs .swiper-slide:before {
	content: none;
}

#thumbs .swiper-slide-active {
	opacity: 1;
}