@charset "utf-8";
	/* CSS Document */

#wrap{
	max-width: 1400px;
	width: 90%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	padding-top: 50px;
}

#wrap > div{width: 50%;}
#wrap > div img{width: 100%;}

.txt_box{padding-left: 50px;}

.txt_box ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 20px;
}

.txt_box ul li{width: 48%; margin-bottom: 20px;}
.txt_box ul li a{
	display: flex;
	width: 100%;
	height: 90px;
	align-items: center;
	background: #1bb8ce;
	border-radius: 10px;
	color: #000000;
	text-decoration: none;
	text-align: center;
	justify-content: center;
	font-size: 18px;
	font-weight: bold;
}
.txt_box ul li a:hover{opacity: 1; background: #f2ca21;}


.one_btn{
	display: block;
	width: 100%;
	line-height: 90px;
	border-radius: 10px;
	text-decoration: none;
	color: #000000;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 20px;
}

.kouhosya{background: #f2ca21;}
.kouhosya:hover{background: #1bb8ce; opacity: 1;}
.sokuho{background: #d84571;}
.sokuho:hover{background: #95c21f; opacity: 1;}

.txt_link{
	display: block;
	text-align: center;
	font-size: 14px;
	color: #000000;
	text-decoration: underline;
	margin-top: 40px;
}

.txt_link:hover{
	opacity: 1;
}

@media screen and (max-width: 1300px) {
	#wrap{align-items:flex-start;}
}

@media screen and (max-width: 900px) {
	#wrap{display: block; padding-top: 20px;}
	#wrap > div{width: 100%;}
	.txt_box{padding-left: 0; padding-top: 20px;}
	.txt_box ul li{margin-bottom: 10px;}
	.txt_box ul li a{
		font-size: 16px;
		height: 70px;
	}
	.one_btn{line-height: 70px; margin-bottom: 10px;}
}


#movie{
	max-width: 1400px;
	width: 90%;
	margin: 100px auto 0;
}

#movie h2{text-align: center; font-size: 25px;}

#movie h3{padding: 10px 20px;}

#movie ul{
	display: flex;
	/*justify-content: center;*/
	flex-wrap: wrap;
	margin-bottom: 40px;
}
#movie ul li{
	margin: 0 1% 20px;
	width: 48%;
	aspect-ratio: 16 / 9;
	text-align: center;
}

#movie ul li iframe{
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 1000px) {
	#movie ul li{width: 48%;}
}

@media screen and (max-width: 750px) {
	#movie h2{text-align: justify; font-size: 19px;}
	#movie h2 br{display: none;}
	#movie h3{text-align: justify;}
	#movie ul li{width: 100%; margin: 0 0 30px;}
}


