/* start reset */
* {
	margin: 0px;
	padding: 0px;
}

a {
	text-decoration: none;
}

ul,
li {
	list-style: none;
}
/* end reset */


/* start common */
.container {
	width: 100%;
	height: auto;
}

.parallax_wrap {
	position: relative;
	top: 0px;
	left: 0px;
}

.parallax_bg {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.parallax_bg:after {
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(0, 0, 0, 0.25);
}

.parallax_bg_content {
	z-index: 1;
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}
/* end common */


/* start header */
header {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	height: auto;
}

header
.mv_wrap {
	width: 100%;
	height: 600px;
}

header
.mv_wrap
.mv {
	background-image: url("./parallax_bg_01.jpg");
}

header
.mv_wrap
h1 {
	position: absolute;
	top: 50%;
	left: 50%;
	color: #fff;
	font-size: 45px;
	text-shadow: 1px 1px 3px #000;
	transform: translate(-50%, -50%);
}
/* end header */


/* start main */
main {
	position: relative;
	top: 0px;
	left: 0px;
	padding: 80px 0px 100px 0px;
	width: 100%;
	height: auto;
	background-color: #fff;
}

main
.section_wrap {
	width: 100%;
	height: auto;
}

main
.section_wrap:nth-of-type(3) {
	background-image: url("./parallax_bg_02.jpg");
}
main
.section_wrap:nth-of-type(3)
section {
	background: none;
}

main
.section_wrap:nth-of-type(6) {
	background-image: url("./parallax_bg_03.jpg");
}
.section_wrap:nth-of-type(6)
section {
	background: none;
}

main
.section_wrap:not(:last-child) {
	margin-bottom: 80px;
}

main
.section_wrap
section {
	margin: 0px auto;
	width: 960px;
	height: 600px;
	line-height: 600px;
	text-align: center;
	color: #fff;
	background-color: #202020;
}

main
.section_wrap
section:not(:last-child) {
	margin-bottom: 40px;
}

/* end main */


/* start footer */
footer {
	width: 100%;
	height: 40px;
	background-color: #3da9f4;
}

footer
.copyright {
	line-height: 40px;
	text-align: center;
	color: #fff;
}
/* end footer */