@charset "UTF-8";

/*----------------------
common
----------------------*/

html {
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: #333;
  position: relative;
  width: 100%;
}

body {
  position: relative;
  width: 100%;
}

ul li {
  list-style: none;
}

::selection {
  background: #3071b6;
  color: #fff;
}

::-moz-selection {
  background: #3071b6;
  color: #fff;
}

a, a:visited, input[type="submit"] {
  text-decoration: none;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s;
  opacity: 1;
  filter: alpha(opacity100);
  -ms-filter: "alpha(opacity=100)";
  -khtml-opacity: 1;
  -moz-opacity: 1;
  color: #333;
cursor: pointer;
}

a:hover, input[type="submit"]:hover {
  opacity: .5;
  filter: alpha(opacity50);
  -ms-filter: "alpha(opacity=50)";
  -khtml-opacity: .5;
  -moz-opacity: .5;
}

:focus {
  outline: 0;
}

input, select, textarea{
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #000;
  border-radius: 0px;
	font-size: 14px;
	color: #000;
}

input[type="submit"], input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus, input[type="button"]::focus {
  outline-offset: -2px;
}

input[type="text"], textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  box-sizing: border-box;
  padding: 10px 15px;
	background: #eee;
}

textarea {
  resize: none;
}

input[type="submit"] {
  border: none;
  color: #fff;
  background: #000;
  padding: 12px 30px;
  text-align: center;
  box-sizing: border-box;
  font-size: 14px;
  cursor: pointer;
}

.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

/* fade */

.blurIn {
  opacity: 0;
  /*filter: blur(10px);*/
  /*transition: all 0.5s ease-in;*/
}

.blurIn.scrollin {
  animation: blurIn 2s forwards;
  /*filter: blur(0px);*/
}

@keyframes blurIn {
  0% {
    opacity: 0;
  }
  100% {
  }
  40%,100% {
    opacity: 1;
  }
}

.fadein {
  opacity: 0;
  /*transform: translate(0, 16px);
  transition: all 0.8s;*/
}


.fadein.scrollin {
  animation: fadein 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes fadein {
  0% {
    transform: translateY(16px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
  }
  40%,100% {
    opacity: 1;
  }
}

.slideIn {
  opacity: 0;
  transform: translate(16px, 0);
  transition: all 0.8s;
}

.slideIn.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.delay05s {
  transition-delay: 0.4s;
}

.delay1s {
  transition-delay: 1s;
}

.delay15s {
  transition-delay: 1.6s;
}

body{
	background: #000;
}

#wrapper {
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  position: relative;
}

#content {
  position: relative;
  margin: 0 auto;
  box-sizing: border-box;
}


#header{
	background-color: rgb(0 0 0 / 80%);
	width: 100%;
	box-sizing: border-box;
	height: 90px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9998;
}

#header .header-wrap{
	max-width: 1240px;
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
	display: flex;
	align-items: center;
	height: 90px;
	padding: 0 20px;
}

#header #h-Logo{
	width: 170px;
	flex-basis: 170px;
}

#header #h-Logo img{
	width: 100%;
}

#header #h-Menu{
	flex: 1;
	width:  calc(100% - 170px);
	flex-basis: calc(100% - 170px);
	display: flex;
	align-items:center;
	box-sizing: border-box;
}

#header #h-Menu .main-Menu{
	display: flex;
	flex-basis: calc(100% - 170px);
	justify-content:center;
	align-items:center;
	box-sizing: border-box;
	padding-left: 20px;
}

#header #h-Menu .main-Menu li{
	margin-left: 70px;
	display: flex;
	align-items:center;
}

#header #h-Menu .main-Menu li:first-child{
	margin-left: 0px;
}

#header #h-Menu .main-Menu li a{
	color: #fff;
	font-family: input-mono-compressed, monospace;
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
}

#header #h-Menu .main-Menu li a.current{
	color: #8B8B8B;
	/*color: #3071b6;*/
}

#header #h-Menu .sns-Link{
	display: flex;
	justify-content: flex-end;
	flex-basis: 220px;
	align-items:center;
	box-sizing: border-box;
	padding-left: 20px;
}

#header #h-Menu .sns-Link li{
	width: 20px;
	margin-left: 15px;
}

#header #h-Menu .sns-Link li:first-child{
	margin-left: 0px;
}

#header #h-Menu .sns-Link li img{
	width: 100%;
}

#menuBtn{
z-index:2;
display:none;
position:absolute;
right:25px;
top:25px;
width:26px;
height:18px;
cursor:pointer;
z-index: 2002;
}

@media (max-width: 900px) {
#menuBtn{
display:block;
}
}

#menuBtn.open{
	opacity: 0;
}

#menuBtn .icon{
display:block;
position:absolute;
top:9px;
right:0px;
width:26px;
height:1px;
background:#fff;
}

#menuBtn .icon::before,
#menuBtn .icon::after{
display:block;
content:"";
position:absolute;
width:26px;
height:1px;
background:#fff;
}

#menuBtn .icon::before{
margin-top:-8px;
}

#menuBtn .icon::after{
margin-top:8px;
}

#drawer{
	display:none;	
}



#content{
	padding-top: 90px;
	width: 100%;
	box-sizing: border-box;
}


#footer{
	text-align: center;
	color: #fff;
}

#footer .footer-wrap{
	max-width: 1240px;
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 20px 20px;
}

#footer .footer-wrap .f-Logo{
	width: 200px;
	margin: 0 auto;
}

#footer .footer-wrap .f-Logo img{
	width: 100%;
}

#footer .footer-wrap .copyright{
	font-size: 12px;
	margin-top: 30px;
}

.link-btn{
	margin-top: 60px;
	text-align: center;
}

.link-btn a{
	font-family: input-mono-compressed, monospace;
	font-style: normal;
	font-weight: 400;
	color: #fff;
	font-size: 18px;
	border: 1px #fff solid;
	padding: 5px 10px;
	min-width: 110px;
	box-sizing: border-box;
	letter-spacing: 0.05em;
	margin: 0 auto;
	display: inline-block;
}

.link-btn a:hover{
	border: 1px #3071b6 solid;
	background: #3071b6;
	opacity: 1;
}





@media (max-width: 900px) {
  .sp {
    display: block!important;
  }
  .pc {
    display: none!important;
  }
  .pcInline {
    display: none;
  }
	
	
#content{
	padding-top: 70px;
}
	
#header{
	height: 70px;
}

#header .header-wrap{
	height: 70px;
}

#header #h-Logo{
	width: 120px;
	flex-basis: 120px;
}
	
#header #h-Menu{
	display: none;
}
	
/* drawer */

#drawer{
display: flex;
justify-content: space-between;
align-items: center;
flex-direction: column;
position: fixed;
background-color: rgb(0 0 0 / 80%);
top: 0;
left: 0;
width: 100%;
height: 100vh;
opacity: 0;
visibility: hidden;

overflow: hidden;
z-index: 9999;
text-align:center;
box-sizing:border-box;
padding:25px;
}


#drawer.open{
opacity: 1;
visibility: visible;
height: 100%;
transition: opacity 0.5s, visibility 0.5s, height 0.5s;
}
	
#drawer .drawer-Menu{
	position: absolute;
	top:50%;
	left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

#drawer .drawer-MenuList{
	text-align:center;
	box-sizing:border-box;
}

#drawer .drawer-MenuList li{
	display:block;
	margin-top:25px;
}
	
	#drawer .drawer-MenuList li:first-child{
		margin-top: 0;
	}

#drawer .drawer-MenuList li a{
	color: #fff;
	font-family: input-mono-compressed, monospace;
	font-style: normal;
	font-weight: 400;
	font-size: 30px;
}
	
#drawer .sns-Link{
	display: flex;
	margin-top: 60px;
}
	
#drawer .sns-Link li{
	width: 24px;
	margin: 0 10px;
}
	
#drawer .sns-Link li img{
	width: 100%;
}
	
/* closeBtn */
#closeBtn {
display:block;
width: 30px;
height: 30px;
position: absolute;
right:20px;
top:20px;
cursor: pointer;
opacity:0;
}

#drawer.open #closeBtn{
	opacity:1;
}

#closeBtn span::before,
#closeBtn span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 1px;
  background: #fff;
transition:all 0.4s;
	transition-delay:0.4s;
}


#closeBtn.open span::before{
	transform: rotate(-45deg);
}

#closeBtn.open span::after{
	transform: rotate(45deg);
}

#footer .footer-wrap .f-Logo{
	width: 140px;
	margin: 0 auto;
}

#footer .footer-wrap .f-Logo img{
	width: 100%;
}

#footer .footer-wrap .copyright{
	font-size: 10px;
	margin-top: 30px;
}
	
}