@charset "utf-8";

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
movie
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

#wrap {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	
	/*del*/
	//height: auto;
}

#video_box {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	
	/*del*/
	//display: none;
}

#video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: 1s;
	z-index:100;
}

div#skip {
	position: absolute;
	right: 20px;
	top: 20px;
	z-index:101;
	color: #fff;
	width: 90px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding:5px;
	cursor: pointer;
}

div#skip:hover {
	background-color: rgba(255,255,255,0.5);
}


	div#skip > p {
		padding-top: 3px;
	}

	
	div#skip > span {
		display: flex;
	}
	
	div#skip > span::before,
	div#skip > span::after {
		border-width: 10px 0 10px 20px;
		border-color: transparent transparent transparent #fff;
		content: '';
		display: block;
		position: relative;
		width: 20px;
		height: 20px;
		box-sizing: border-box;
		background: none;
		border-style: solid;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
	}

#bg {
	width: 100%;
	min-height: 100vh;
	padding: 60px 0 0 0;
	opacity: 0;
	transition: 1s;
	box-sizing: border-box;
	
	/*del*/
	//opacity: 1;
}

#main {
	display: block;
	width: 100%;
	min-height: 100vh;
	background-image: url('../img/main_bg.jpg?2');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	box-sizing: border-box;
}

@media screen and (max-width: 1600px) {
	#bg {
		padding: 20px 0 0 0;
	}
}

@media screen and (max-width: 750px) {
	#bg {
		padding: 60px 0 0 0;
	}
}

@media screen and (max-width: 400px) {
	#bg {
		padding: 30px 0 0 0;
		position: relative;
	}
	
	#content {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
	}
}

.shadow {
	background-color: rgba(0,0,0,0.6);
}

.hidden {
	opacity: 0;
	transition: 1s;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
logo
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

#logo {
	width: calc(100% - 20px);
	max-width: 550px;
	margin: 0 auto 60px;
	background-image: url('../img/logo.svg');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
#logo::before {
	content: '';
	display: block;
	padding-top: 100%;
}

@media screen and (max-width: 1600px) {
	#logo {
		max-width: 500px;
	}
}

@media screen and (max-width: 1100px) {
	#logo {
		max-width: 400px;
		margin: 0 auto 40px;
	}
}

@media screen and (max-width: 750px) {
	#logo {
		max-width: 400px;
	}
}

@media screen and (max-width: 450px) {
	#logo {
		max-width: 240px;
	}
}

@media screen and (max-width: 400px) {
	#logo {
		max-width: 200px;
		margin: 0 auto 20px;
	}
}


/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
news
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

#news_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 10px 0 0;
}

	#news_box > p,
	#news_box > a {
		display: inline-block;
		margin:0 40px 5px;
		color: #fff;
		font-weight: bold;
		font-size: 1.1em;
	}


	div#slider_wrap {
		width: 100%;
		margin: 0;
		padding: 20px 0;
		box-sizing: border-box;
		position: relative;
		border-width: 1px 0;
		border-style: solid;
		border-color: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.swiper-container {
		width: calc(100% - 240px);
		margin-left: 0;
		margin-right: 0;
	}
	
	
		.swiper-slide > span,
		.swiper-slide > a {
			color: #fff;
		}
	
	.swiper-button-prev,
	.swiper-button-next {
		position: relative;
		width: 40px;
		height: 20px;
		box-sizing: border-box;
		background: none;
		border-style: solid;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		display: flex;
		justify-content: center;
		margin: 0 40px;
		flex-wrap: wrap;
		border: none;
	}
	
	.swiper-button-prev::before,
	.swiper-button-next::before,
	.swiper-button-prev::after,
	.swiper-button-next::after {
		content: '';
		display: block;
		
		position: relative;
		width: 20px;
		height: 20px;
		box-sizing: border-box;
		background: none;
		border-style: solid;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
	}
	
	.swiper-button-prev::before,
	.swiper-button-prev::after {
		border-width: 10px 20px 10px 0;
		border-color: transparent #fff transparent transparent;
	}
	
	.swiper-button-next::before,
	.swiper-button-next::after {
		border-width: 10px 0 10px 20px;
		border-color: transparent transparent transparent #fff;
	}
	
@media screen and (max-width: 1000px) {
	.swiper-container {
		width: calc(100% - 136px);
	}
	
	.swiper-button-prev,
	.swiper-button-next {
		width: 28px;
		height: 14px;
		margin: 0 20px;
	}
	
	.swiper-button-prev::before,
	.swiper-button-next::before,
	.swiper-button-prev::after,
	.swiper-button-next::after {
		width: 14px;
		height: 14px;
	}
	
	.swiper-button-prev::before,
	.swiper-button-prev::after {
		border-width: 7px 14px 7px 0;
	}
	
	.swiper-button-next::before,
	.swiper-button-next::after {
		border-width: 7px 0 7px 14px;
	}
}

@media screen and (max-width: 550px) {
		.swiper-slide > span{
			display: block;
		}
}

@media screen and (max-width: 450px) {
	#news_box > p,
	#news_box > a {
		font-size: 1.0em;
	}
	
	.swiper-container {
		width: calc(100% - 100px);
	}
	
	.swiper-button-prev,
	.swiper-button-next {
		width: 20px;
		height: 10px;
		margin: 0 15px;
	}
	
	.swiper-button-prev::before,
	.swiper-button-next::before,
	.swiper-button-prev::after,
	.swiper-button-next::after {
		width: 10px;
		height: 10px;
	}
	
	.swiper-button-prev::before,
	.swiper-button-prev::after {
		border-width: 5px 10px 5px 0;
	}
	
	.swiper-button-next::before,
	.swiper-button-next::after {
		border-width: 5px 0 5px 10px;
	}
}
	
/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
menu
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

#menu {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 30px 40px 20px;
	box-sizing: border-box;
	flex-wrap: wrap;
	margin: 0 auto;
	align-items: center;
}
	
	#menu > a.menu {
		display: block;
		width: 70px;
		height: 70px;
		background-position: center;
		background-size: contain;
		background-repeat: no-repeat;
		white-space: nowrap;
		text-indent: 100%;
		overflow: hidden;
	}
	
	#menu > a.menu_1 {
		background-image: url('../img/menu_1.svg');
	}
	#menu > a.menu_1:hover {
		background-image: url('../img/menu_1_on.svg');
	}
	
	#menu > a.menu_2 {
		background-image: url('../img/menu_2.svg');
	}
	#menu > a.menu_2:hover {
		background-image: url('../img/menu_2_on.svg');
	}
	
	#menu > a.menu_3 {
		background-image: url('../img/menu_3.svg');
	}
	#menu > a.menu_3:hover {
		background-image: url('../img/menu_3_on.svg');
	}
	
	#menu > a.menu_4 {
		background-image: url('../img/menu_4.svg');
	}
	#menu > a.menu_4:hover {
		background-image: url('../img/menu_4_on.svg');
	}
	
	#menu > a.menu_5 {
		background-image: url('../img/menu_5.svg');
	}
	#menu > a.menu_5:hover {
		background-image: url('../img/menu_5_on.svg');
	}
	
	#menu > a.menu_6 {
		background-image: url('../img/menu_6.svg');
	}
	#menu > a.menu_6:hover {
		background-image: url('../img/menu_6_on.svg');
	}
	
	#menu > a.menu_7 {
		background-image: url('../img/menu_7.svg');
	}
	#menu > a.menu_7:hover {
		background-image: url('../img/menu_7_on.svg');
	}
	
	#menu > a.menu_8 {
		background-image: url('../img/menu_8.svg');
	}
	#menu > a.menu_8:hover {
		background-image: url('../img/menu_8_on.svg');
	}
	
	#menu > a.menu_9 {
		background-image: url('../img/menu_9.svg');
	}
	#menu > a.menu_9:hover {
		background-image: url('../img/menu_9_on.svg');
	}
	
	#menu > a.menu_10 {
		background-image: url('../img/menu_10.svg');
	}
	#menu > a.menu_10:hover {
		background-image: url('../img/menu_10_on.svg');
	}
	
	#menu > a.menu_11 {
		background-image: url('../img/menu_11.svg?2');
	}
	#menu > a.menu_11:hover {
		background-image: url('../img/menu_11_on.svg?2');
	}
	
	#menu > a.menu_12 {
		background-image: url('../img/menu_21.svg?2');
	}
	#menu > a.menu_12:hover {
		background-image: url('../img/menu_21_on.svg?2');
	}
	
	#menu > a.menu_13 {
		background-image: url('../img/menu_20.svg?2');
	}
	#menu > a.menu_13:hover {
		background-image: url('../img/menu_20_on.svg?2');
	}
		
	#menu > img.dot {
		display: block;
		width: 100%;
		max-width: 40px;
	}

@media screen and (max-width: 1600px) {
	#menu > a.menu {
		width: 60px;
		height: 60px;
	}
	
	#menu > img.dot {
		max-width: 25px;
	}
}

@media screen and (max-width: 1300px) {
	#menu {
		max-width: 670px;
		padding: 10px;
		justify-content: center;
	}
		
		#menu > a.menu {
			margin: 10px 5px;
		}
		
		#menu > img.dot:nth-child(14) {
			display: none;
		}
}
@media screen and (max-width: 670px) {
	#menu {
		max-width: 400px;
		justify-content: space-between;
	}
	
		#menu > a.menu_10,
		#menu > a.menu_11,
		#menu > a.menu_12,
		#menu > a.menu_13 {
			width: 45px;
			height: 45px;
		}
		
	#menu > img.dot {
		max-width: 20px;
	}
	
		#menu > img.dot:nth-child(14) {
			display: block;
		}
		
		#menu > img.dot:nth-child(8),
		#menu > img.dot:nth-child(16) {
			display: none;
		}
}

@media screen and (max-width: 450px) {
	#menu {
		max-width: 350px;
		padding: 10px 0 0;
		justify-content: center;
	}
		
		#menu > a.menu {
			margin: 8px 5px;
		}
		
		#menu > img.dot:nth-child(14),
		#menu > img.dot {
			display: none;
		}
		
		#menu > a.menu_6 {
			margin-left: 30px;
		}
		#menu > a.menu_9 {
			margin-right: 30px;
		}
}

@media screen and (max-width: 360px) {
	#menu {
		max-width: 260px;
		justify-content: space-between;
	}
		
		#menu > a.menu {
			margin: 10px;
		}
		
		#menu > a.menu_6 {
			margin-left: 10px;
		}
		#menu > a.menu_9 {
			margin-right: 10px;
		}
}


/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
copylight
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

#copylight {
	width: 100%;
	text-align: center;
	color: #fff;
	padding: 0 0 5px;
	//opacity: 0;
	//transition: 1s;
}

@media screen and (max-width: 450px) {
	#copylight {
		font-size: 0.8em;
	}
}


/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
scroll_content
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/


div#scroll_content {
	padding: 0 0 100px 0;
}


a.banner {
	display: block;
	width: calc(100% - 20px);
	max-width: 1000px;
	margin: 95px auto;
	box-sizing: border-box;
	border: 2px #000 solid;
	font-size: 2em;
	text-align: center;
	padding: 65px 0;
	position: relative;
}

a.banner:hover {
	text-decoration: none;
	opacity: 0.5;
}


a.banner::before {
	content: '';
	display: block;
	width: calc(100% - 30px);
	height: calc(100% - 30px);
	position: absolute;
	left: 15px;
	top: 15px;
	border: 2px #000 solid;
	box-sizing: border-box;
}

	a.banner > br {
		display: none;
	}



div.link {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1460px;
	margin: 0 auto;
}

	div.link > a {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 360px;
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
		margin: 0 0 50px;
		color: #fff;
		font-size: 2.2em;
		text-align: center;
	}
	
	div.link > a:hover {
		text-decoration: none;
		opacity: 0.5;
	}
	
	div.link > a:last-child {
		margin: 0;
	}
	
	div.link > a.min {
		width: calc(33.3333% - 25px);
	}
	
	div.link > a#link_1 {
		background-image: url('../img/link_1.jpg');
	}
	div.link > a#link_2 {
		background-image: url('../img/link_2.jpg');
	}
	div.link > a#link_3 {
		background-image: url('../img/link_3.jpg');
	}
	div.link > a#link_4 {
		background-image: url('../img/link_4.jpg');
	}
	div.link > a#link_5 {
		background-image: url('../img/link_5.jpg');
	}
	div.link > a#link_6 {
		background-image: url('../img/link_6.jpg');
		flex-direction: column;
	}
		
		div.link > a > br {
			display: none;
		}
		
		div.link > a > img {
			display: block;
			width: 100%;
			max-width: 100px;
			margin: 0 auto 5px;
		}
		
	
@media screen and (max-width: 1200px) {
	div.link > a {
		height: 200px;
		margin: 0 0 30px;
		font-size: 1.5em;
	}
	
	div.link > a.min {
		width: calc(33.3333% - 15px);
	}
}

@media screen and (max-width: 950px) {
a.banner {
	font-size: 1.5em;
	padding: 40px 0;
}

a.banner::before {
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	left: 10px;
	top: 10px;
}
}
@media screen and (max-width: 750px) {
	a.banner > br {
		display: inline
	}
	
	div.link > a {
		margin: 0 0 15px;
	}
	
	div.link > a.min {
		width: 100%;
	}
	
		div.link > a > img {
			max-width: 60px;
		}
		
		div.link > a > br {
			display: inline;
		}
}

@media screen and (max-width: 400px) {
a.banner {
	font-size: 1.2em;
	padding: 20px 0;
}
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
index_youtube
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.index_youtube {
    width: min(100%, 1460px);
    margin: max(min(6vw, 80px), 40px) auto;
}
    .index_youtube > a {
        display: block;
        width: min(80%, 768px);
        margin: 0 auto;
    }
    .index_youtube > a:hover {
        opacity: 0.5;
    }
        .index_youtube > a img {
            display: block;
            width: 100%;
        }
    .index_youtube > iframe {
        display: block;
        width: 100%;
        aspect-ratio: 16/9;
        margin: max(min(4vw, 60px), 30px) auto 0;
    }
    



