@charset "utf-8";

* {
	letter-spacing: 0;
}
p {
	letter-spacing: -.005em;
}
body {
	background-color: #fff;
}
.ct {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
#header {
	background-image: url("../img/bg.png"), -webkit-linear-gradient(270deg,rgba(0,0,0,.5) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0) 100%);
	background-image: url("../img/bg.png"), -moz-linear-gradient(270deg,rgba(0,0,0,.5) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0) 100%);
	background-image: url("../img/bg.png"), -o-linear-gradient(270deg,rgba(0,0,0,.5) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0) 100%);
	background-image: url("../img/bg.png"), linear-gradient(180deg,rgba(0,0,0,.5) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0) 100%);	
}
#header .ct {
	width: 100%;
	max-width: 100%;
	padding: 30px 0 0;
}
body:not(.top) #header .ct {
	padding: 20px 0 0;
}
#header h1 {
	text-align: center;
}
body.top #header h1 img {
	width: 80%;
	max-width:480px;
	margin-bottom: 30px;
}
body:not(.top) #header h1 img {
	width: 50%;
	max-width:360px;
	margin-bottom: 20px;
}

#header nav > div {
	display: block;
	width: 100%;
	/*margin-top: 15px;*/
	background-color: #000;
	/*border-top: 6px solid #000;
	border-bottom: 6px solid #000;*/
}
#header ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	background-color: #000;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding-top: 6px;
	padding-bottom: 6px;
}
@media (max-width:1020px) {
	#header ul {
		padding: 6px 10px;
	}
}
#header ul li {
	width: calc(100% / 6);
	max-width: calc(1000px / 6);
	padding: 0 3px;
}
@media (max-width:640px) {
	#header ul li {
		width: calc(100% / 3);
	}
	#header ul li:nth-child(n+4) {
		padding: 6px 3px 0;
	}
}
#header ul li span,
#header ul li a {
	display: block;
	text-decoration: none;
	text-align: center;
	transition: .8s all;
	padding: 5px 0;
	font-family: "dela-gothic-one", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: min(150%, 2.2vw);
	opacity: 0;
	transition: .3s all;
}
.wf-active #header ul li span,
.wf-active #header ul li a {
	opacity: 1;
}
#header ul li a {
	background-color: #fff;
	color: #000;
}
#header ul li a:hover {
	background-color: #fc0;
}
#header ul li span {
	background-color: #444;
	color: #222;
}
@media (max-width:640px) {
	#header ul li span,
	#header ul li a {
		font-size: 4vw;
	}
}



#main {
	padding: 30px 0;
	opacity: 0;
	transition: .3s all;
}
.wf-active #main {
	opacity: 1;
}
#main h1 {
	text-align: center;
	font-weight: 900;
	color: #1a1a1a;
	font-size: 300%;
}
#main section > h1 {
	background-image: url("../img/title_bg.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	height: min(210px, 34vw);
	text-shadow:
        2px 0 0 #fff,
        2px 2px 0 #fff,
        0 2px 0 #fff,
        -2px 2px 0 #fff,
        -2px 0 0 #fff,
        -2px -2px 0 #fff,
        0 -2px 0 #fff,
        2px -2px 0 #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "dela-gothic-one", sans-serif;
	font-weight: 400;
	font-style: normal;
	margin-bottom: 30px;
}
#main .ct {
	padding: 0 15px 30px;
}
#main article h1 {
	font-size: 160%;
	margin-bottom: 30px;
	font-family: "dela-gothic-one", sans-serif;
	font-weight: 400;
	font-style: normal;
	padding: 10px 0;
	line-height: 1;
	color: #fff;
	margin-top: 30px;
}


.navi ul {
	margin-bottom: 60px;
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 60px;
}
.navi ul.single {
	justify-content: center;
}
.navi ul li a {
	display: block;
	text-align: center;
	text-decoration: none;
	line-height: 1;
	background-color: #333;
	color: #fff;
}
.navi ul li span {
	display: block;
	text-align: center;
	text-decoration: none;
	line-height: 1;
	color: #ccc;
}
@media screen and (min-width:1024px) {
	.navi ul {
		padding: 0 15px;
	}
	.navi ul li a,
	.navi ul li span {
		padding: .5em 15px;
	}
}
@media screen and (min-width:640px) and (max-width:1023px) {
	.navi ul {
		padding: 0 10px;
	}
	.navi ul li a,
	.navi ul li span {
		padding: .5em 10px;
	}
}
@media screen and (max-width:639px) {
	.navi ul {
		padding: 0;
	}
	.navi ul li a,
	.navi ul li span {
		padding: .5em 10px;
	}
}



.social {
	display: flex;
	justify-content: center;
}
.social li {
}
.social li img {
	width: 80px;
}



#footer {
	padding: 30px 0;
	background-color: rgba(0,0,0,1.00);
	background-image: url("../img/bg2.png"), -webkit-linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 50%,rgba(255,255,255,.2) 100%);
	background-image: url("../img/bg2.png"), -moz-linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 50%,rgba(255,255,255,.2) 100%);
	background-image: url("../img/bg2.png"), -o-linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 50%,rgba(255,255,255,.2) 100%);
	background-image: url("../img/bg2.png"), linear-gradient(180deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 50%,rgba(255,255,255,.2) 100%);	
	color: #ccc;
	font-size: 80%;
	border-top: 5px solid #da1a17;
}
#footer a {
	color: #fc0;
	text-decoration: none;
}
#footer ul {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
	flex-wrap: wrap;
}
#footer ul li {
	padding: 3px 5px;
	border-left: 2px solid #666;
	border-right: 2px solid #666;
	margin-right: -2px;
	margin-bottom: 5px;
}
#footer ul li a {
	display: block;
	padding: 0 15px;
}
#footer ul li span {
	display: block;
	padding: 0 15px;
	color: #666;
}
#footer .bnr {
	display: block;
	text-align: center;
}
#footer .bnr img {
	width: 50%;
	max-width: 300px;
}
#footer #copyright {
	padding-top: 15px;
}
#footer #copyright p {
	text-align: center;
}



/* インラインyoutube用レスポンシブ設定 */
.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	margin-bottom: 1em;
	clear: both;
}
.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}




/* スライドイン指定 */
.slidein,
.slidein::before,
.slidein::after {
	opacity: 0;
	transition: all .5s;
	position: relative;
}
.slidein.scrollin,
.slidein.scrollin::before,
.slidein.scrollin::after {
    transform: translate(0, 0) scale(1,1)!important;
    opacity: 1!important;
}
#main article h1.slidein::before {
	position: absolute;
	content: '';
	display: block;
	height: 100%;
	width: 100%;
	top: 0;
	transform: translate(-100%,0);
	background-color: #000;
	z-index: -1;
}
