@charset "utf-8";
/* CSS Document */
.in_contents{
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
}

.movie_box{
	width: 100%;
	aspect-ratio: 16 / 9;
	margin-bottom: 60px;
}

.movie_box video{
	width: 100%;
	height: 100%;
}

.in_contents .movie_box p{text-align: justify; font-size: 11px;}

.in_contents h3{font-size: 40px; margin-bottom: 35px;}
.in_contents p{line-height: 2.5; font-size: 16px;}

.link_box{
	margin-top: 100px;
	font-size: 0;
	line-height: 0;
	letter-spacing: 0;
}

.link_box a{
	display: inline-block;
	width: 31%;
	margin-right: 3%;
	line-height: 76px;
	border: 1px solid #FFFFFF;
	text-decoration: none;
	font-size: 30px;
	font-weight: bold;
	position: relative;
	margin-bottom: 20px;
	transition: 0.3s;
}

.link_box a::after{
	content: "";
	width: 30px;
	height: 30px;
	background: url("../img/arrow_w.svg") no-repeat;
	background-size: cover;
	display: block;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%) ;
	-webkit-transform: translateY(-50%);
}

.link_box a:hover{
	background: #00ffea;
	border: 1px solid #00ffea;
	color: #000000;
	opacity: 1;
	transition: 0.3s;
}

.link_box a:hover::after{
	background: url("../img/arrow.svg") no-repeat;
	background-size: cover;
}

.link_box a.last{margin-right: 0;}

@media screen and (max-width: 900px){
	.link_box{
		display: flex; 
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.link_box a{width: 48%; margin-right: 0;}
	.in_contents h3 br{display: block;}
}

@media screen and (max-width: 700px){
	.movie_box{margin-bottom: 40px;}
	.in_contents h3{font-size: 30px; margin-bottom: 30px;}
	.in_contents p{
		margin: 0 auto;
		text-align: justify;
		line-height: 2;
	}
	.in_contents p br.pc{display: none;}
	.link_box{display: block; margin-top: 40px;}
	.link_box a{
		width: 100%; 
		font-size: 25px; 
		line-height: 65px;
		margin-bottom: 15px;
	}
	.link_box a::after{width: 25px; height: 25px;}
}










