@charset "utf-8";

/* Reset */

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 {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 62.5%;
	font: inherit;
	vertical-align: baseline;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

html {
	max-width: 100%;
}

body {
	position: relative;
	background: #161616;
	-webkit-animation: fadeIn 4s ease 0s 1 normal;
	animation: fadeIn 4s ease 0s 1 normal;
}

@keyframes fadeIn         { 0% { opacity: 0 } 100% { opacity: 1 } }
@-webkit-keyframes fadeIn { 0% { opacity: 0 } 100% { opacity: 1 } }

ol, ul {
	list-style: none;
}

ol li, ul li {
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

p {
	text-align: justify;
}

span {
	font-size: .8em;
}

a {
	text-decoration: none;
	border: 0;
	transition: all .75s ease;
}

a:hover {
	opacity: .7;
}

h1,h2,h3,h4,h5 {

}
	
h2 {
	margin: 0 0 3em;
	text-align: center;
}
	
h2 span {
	display: inline-block;
	padding: .25em .25em .25em 1em;
	color: #fff;
	font-size: 2em;
	font-weight: 400;
	letter-spacing: .5em;
	line-height: 1;
	border-bottom: 2px #ee87b4 dotted;
}

@media screen and (max-width: 768px) {
	h2 span {
		font-size: 5vw;
	}
}

h3 {
	display: inline-block;
	margin: 0 0 1em;
	padding: .25em .25em;
	color: #fff;
	font-size: 1.25em;
	font-weight: 400;
	line-height: 1;
	background: #192E02;
}

h4 {
}

h5 {
}

section,div,h1,h2,h3,h4,h5,h6,
div, dl, dt, dd, ol, ul, li, p, span, a,
select {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}




/* 動画 */

.hero {
	position: relative;
}




/* video */

.video-box {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 40vh;
}

.video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
	
}




/* overlay */

.overlay::after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	content: "";
	background-image: linear-gradient(45deg, rgba(0,0,0,.2) 50%, rgba(0,0,0,.5) 50%);
	abackground-image: linear-gradient(45deg, rgba(238,135,180,.2) 50%, rgba(238,135,180,.5) 50%);
	background-size: 4px 4px;
}

.text-box {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.text-box img {
	width: 20vw;
}




/* ナビ */

header {
	position: absolute;
	top: 2em;
	left: 6vw;
	margin: 0;
	padding: 0;
	overflow: hidden;
	z-index: 900;
}

header h1 {
	display: none;
}

header img {
	padding: 0 0 1em;
	height: 4em;
}

header a {
	margin: 0 .5em 0 0;
	color: #fff;
	font-size: 1.5em;
}

@media screen and (max-width: 768px) {
	header img {
		height: 2em;
	}
}

nav {
	position: fixed;
	top: 2em;
	right: 6vw;
	display: flex;
	justify-content: flex-end;
	padding: .5em .5em;
	z-index: 2;
	background: #ee87b4;
	border-radius: 1em;
}

nav a {
	display: inline-block;
	margin: 0 .5em;
	padding: 0 0 0;
	color: #fff;
	font-size: 1em;
	line-height: 1;
	letter-spacing: .25em;
}

nav a i {
	color: #e5006a;
}

nav a:hover {
	color: #e5006a;
}

nav select {
	color: #fff;
	font-size: 1em;
	border: 0;
	background: none;
}

@media screen and (max-width: 768px) {

}




/* コンテンツ */


/* ベーシック */

section#contents {
	margin: 0;
	padding: 4em 6vw 4em;
	border-top: .5em #192E02 solid;
}

@media screen and (max-width: 768px) {

	section#contents {
		border-top: .25em #192E02 solid;
	}
}

section#contents p {
	padding: 0 0 2em;
	color: #fff;
}

section#contents ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

section#contents ul li {
	flex-basis: calc( calc( 100% - 2em ) / 3 );
	margin: 0 0 1em;
}

section#contents ul li img {
	width: 100%;
}



