@charset "utf-8";

/* ========================================================
	index.css => index用CSS
======================================================== */

/* main
============================================================================================================ */
#main {
	position: relative;
	height: 400px;
	padding-top: 125px;
	background: #6eb92b url(../images/main_bg.png) 50% 0;
	text-align: center;
	z-index: 2;
}
#main::after {
	background-color: #fff;
}

@media screen and (min-width: 769px), print {
	#main {
	}
	#main h1 {
		margin-top: 40px;
		color: #ffffff;
		font-size: 5rem;
	}
}
@media screen and (max-width: 768px) {
	#main {
		height: auto;
		padding:30px 0 40px 0;
		background-repeat: no-repeat;
		background-position: 50% 20%;
		-webkit-background-size: 140%;
		background-size: 140%;
	}
	#main h1 {
		color: #ffffff;
		font-size: 1.8rem;
	}
}





/* after_skew
============================================================================================================ */
.after_skew {
	position: relative;
	overflow: hidden;
}
.after_skew::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	right: -100px;
	height: 50px;
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	-o-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transform: skewX(-45deg);
	-ms-transform: skewX(-45deg);
	-o-transform: skewX(-45deg);
	transform: skewX(-45deg);
}
@media screen and (max-width: 768px) {
	.after_skew::after {
		height: 25px;
	}
}





/* movie_contents
============================================================================================================ */
.movie_contents {
	padding: 60px 0 100px;
}
.movie_contents .box .logo {
	padding: 20px;
	text-align: center;
}

@media screen and (min-width: 769px), print {
	#main {
	}
	#main h1 {
		margin-top: 40px;
		color: #ffffff;
		font-size: 5rem;
	}
	.movie_contents .box2 ul{
		display: table;
		table-layout: fixed;
		text-align: center;
		width: 100%;
	}
	.movie_contents .box2 ul li {
  display: table-cell;
  vertical-align: middle;
	}
	.movie_contents .box2 ul li.mid {
		padding: 10px;
	}
.movie_contents p.cap{
	font-size: 2rem;
	text-align: center;
	margin-bottom: 30px;
}
}

@media screen and (max-width: 768px) {
	.movie_contents {
		padding: 30px 0 50px;
	}
	.movie_contents .box iframe {
		height: 280px;
	}
	.movie_contents .box2 ul li {
		margin-bottom: 20px;
		text-align: center;
	}
.movie_contents p.cap{
	font-size: 1.3rem;
	text-align: center;
	margin-bottom: 30px;
}

}


