@charset "utf-8";
/* PC
-------------------------------------------------- */
@media screen and (min-width:1000px){
	main{
		margin-top: 60px;
	}

	.title{
		background: #ffdf52;
		padding: 20px 0;
	}

	h1{
		display: block;
		width: 100%;
		max-width: 1300px;
		margin: 0 auto;
		text-align: center;
		font-size: 42px;
		line-height: 42px;
		font-weight: 600;
		color: #ffffff;
	}

	h1 span{
		display: block;
		text-align: center;
		font-size: 20px;
		line-height: 20px;
		position: relative;
		z-index: 1;
		margin-top: 20px;
	}

	h1 span::before{
		content: "";
		display: block;
		width: 100%;
		max-width: 1230px;
		height: 1px;
		background-image : linear-gradient(to right, #ffffff 2px, transparent 2px);
		background-size: 3px 1px;
		background-repeat: repeat-x; 
		background-position: left bottom;
		position: absolute;
		left: 0;
		top: -10px;
	}

	h1 span::after{
		content: "";
		display: block;
		width: 60px;
		height: 14px;
		background: url("../img/title_darts.png") 0 0 no-repeat;
		background-size: contain;
		position: absolute;
		top: -16px;
		right: 0;
		z-index: 1;
	}
	
	.wrap{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 100%;
		max-width: 1300px;
		margin: 60px auto 0;
	}
	
	.movieBlock{
		width: 46%;
		margin: 0 auto;
	}
	
	.movie{
		width: 100%;
		aspect-ratio: 16 / 9;
	}
	
	.movie iframe{
		width: 100%;
		height: 100%;
	}
	
	.movie_ttl{
		text-align: center;
		font-size: 16px;
		margin-top: 10px;
		margin-bottom: 60px;
	}
}

/* SP
-------------------------------------------------- */
@media screen and (max-width:999px){
	main{
		margin-top: 60px;
	}

	.title{
		background: #ffdf52;
		padding: 20px 0;
	}

	h1{
		display: block;
		width: 100%;
		max-width: 1300px;
		margin: 0 auto;
		text-align: center;
		font-size: 30px;
		line-height: 30px;
		font-weight: 600;
		color: #ffffff;
	}

	h1 span{
		display: block;
		text-align: center;
		font-size: 14px;
		line-height: 14px;
		position: relative;
		z-index: 1;
		margin-top: 20px;
	}

	h1 span::before{
		content: "";
		display: block;
		width: 82%;
		height: 1px;
		background-image : linear-gradient(to right, #ffffff 2px, transparent 2px);
		background-size: 3px 1px;
		background-repeat: repeat-x; 
		background-position: left bottom;
		position: absolute;
		left: 0;
		top: -10px;
	}

	h1 span::after{
		content: "";
		display: block;
		width: 40px;
		height: 12px;
		background: url("../img/title_darts.png") 0 0 no-repeat;
		background-size: contain;
		position: absolute;
		top: -14px;
		right: 20px;
		z-index: 1;
	}
	
	.wrap{
		width: 100%;
	}
	
	.movieBlock{
		width: 90%;
		margin: 0 auto;
	}
	
	.movie{
		width: 100%;
		margin-top: 40px;
		aspect-ratio: 16 / 9;
	}
	
	.movie iframe{
		width: 100%;
		height: 100%;
	}
	
	.movie_ttl{
		text-align: center;
		font-size: 14px;
		margin-top: 10px;
	}
}