html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

body{
	background: #000;
	font-family: "Helvetica Neue",
	Arial,
	"Hiragino Kaku Gothic ProN",
	"Hiragino Sans",
	Meiryo,
	sans-serif;
}

img{
	display: block;
}

#container{
	background: #fff;
	margin: 0 auto;
	max-width: 800px;
	width: 100%;
}

.firstview{
	height: 100vh;
	height: 100svh;
	margin: 0 0 40px;
	overflow: hidden;
	position: relative;
}

.firstview .fvmov{
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.firstview .logo{
	left: 10px;
	position: absolute;
	top: 10px;
	width: 36%;
}

.firstview .catch{
	display: block;
	position: absolute;
	width: 100%;
}

.firstview .catch01{
	animation: 7.4s infinite catch01;
	top: 15%;
	opacity: 0;
	position: absolute;
}

@keyframes catch01 {
	0% {
		opacity: 0;
	}
	15% {
		opacity: 1;
	}
	45% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	95% {
		opacity:0;
	}
	100% {
		opacity:0;
	}
}

.firstview .catch02{
	animation: 7.4s infinite catch02;
	top: 35%;
	position: absolute;
}

@keyframes catch02 {
	0% {
		opacity: 0;
	}
	
	45% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	95% {
		opacity:1;
	}
	100% {
		opacity:0;
	}
}

.fvbtn{
	left: 0;
	bottom: 0;
	padding: 0 5% 30px;
	position: absolute;
}

.fvbtn img{
	margin: 0 auto;
	width: 100%;
}

.fvbtn a{
	display: block;
	margin: 0 auto;
	width: 100%;
}

.top-caption{
	margin: 0 0 40px;
	width: 100%;
}

.btn{
	padding: 0 5% 70px;
}

.btn img{
	margin: 0 auto;
	width: 100%;
}

.btn a{
	display: block;
	margin: 0 auto;
	width: 100%;
}

.mov{
	margin: 0 5% 50px;
}

.mov ul{
	display: flex;
	justify-content: space-between;
	list-style: none;
}

.mov ul li {
	width: 48%;
}

.mov ul li video{
	width: 100%;
}

.reason{
	background: #ffe8f1;
	margin: 0 0 50px;
}

.reason img{
	display: block;
	width: 100%;
}

.reason ul li{
	padding: 0 0 20px;
}

footer{
	background: #333;
	color: #fff;
	font-size: 12px;
	padding: 30px 0;
	text-align: center;
}

@media screen and (max-width:600px) {
.firstview{
	height: 100vh;
	height: 100svh;
	margin: 0 0 40px;
	overflow: hidden;
	position: relative;
}

.firstview .fvmov{
	left: 0;
	position: absolute;
	top: 0;
	min-height: 100%;
	width: 100%;
}

.reason ul{
	padding: 0 0 20px;
}

.reason ul li{
	padding: 0 0 0px;
}
}


.fadein {
	opacity: 0;
	transform: translate(0,0);
	transition: all 1.5s;
}
.fadein-left{
	transform: translate(-50px,0);
}
.fadein-right{
transform: translate(30px,0);
}
.fadein-up{
transform: translate(0,-30px);
}
.fadein-bottom{
transform: translate(0,30px);
}
.scrollin{
opacity: 1 !important;
transform: translate(0, 0) !important;
}