@charset "UTF-8";
/* CSS Document */
html{
	font-size:62.5%; /*16px x62.5% =10px*/
}
body{
	font-family: Hiragino Kaku Gothic ProN,YuGothic,Yu Gothic,sans-serif;
	color: #292F34;
	font-size:1.6rem;
	line-height: 1.5;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:antialiased;
}
h1{
  display: none;
}
small{
	font-size: 1.2rem;
}
main{
	display: none;
}
footer{
	display: none;
}
/* loading */
.load_box{
	background-color: #ffffff;
	width: 100%;
	height: 100vh;
	position: fixed;
	top:0;
	z-index: 9999;
  transition: all 1s;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.load_box img{
	width: 15%;
	height: auto;
	margin: 20px;
}
.load_box.loaded{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}
.spinner {
	margin: 20px;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.spinner > div {
  background-color: #333;
  height: 100%;
  width: 6px;
  display: inline-block;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}

/* navi */
.navi{
  background-color: #292f34;
  width: 100%;
  position: fixed;
  top:0;
	z-index: 99;
}
.navi_container{
  max-width: 880px;
	height: 80px;
  margin:auto;
  display:flex;
  justify-content: space-between;
}
.navi_logo{
	display: block;
  height: 70px;
  width: auto;
	margin-top:5px;
  margin-bottom:5px;
}
.navi_li{
  display:flex;
  justify-content: space-around;
}
ul.navi_li li{
  padding-left: 20px;
  padding-right: 20px;
  padding-top:28px;
  padding-bottom:28px;
}
.navi_li a{
  color:#ffffff;
}
.navi_li a:hover{
  color:#fbc028;
}
.sp_btn{
	display: none;
}
.navi_SP{
	display: none;
}
/* footer */
footer{
   background-color: #292f34;
   color:#ffffff;
   margin-top:80px;
	 padding-top: 40px;
}
.footer_logo{
	display: block;
	width: 180px;
	height: auto;
	margin-left:auto;
	margin-right:auto;
  margin-bottom:40px;
}
.footer_logo img{
	width: 180px;
	height: auto;
}
.sns_li{
  display:flex;
  justify-content: center;
}
ul.sns_li li{
  font-size: 24px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 0px;
  padding-bottom: 40px;
}
.sns_li a{
  color:#ffffff;
}
.sns_li a:hover{
  color:#fbc028;
}
.footer_small{
  text-align: center;
  padding-bottom: 20px;
}

.pc{ display: block;}
.sp{ display: none;}

/*-------------------------
     SP
-------------------------*/
@media screen and (max-width:768px){
	.navi_container{
		max-width: 640px;
		width: 80%;
		height: 80px;
		margin:auto;
		display:flex;
		justify-content: space-between;
	}
	.sp_btn{
		display: block;
		padding-top: 20px;
	}
	/*------------------------------*/
	/*=============================
	.btn-trigger
	=============================*/
	.btn-trigger {
		position: relative;
		width: 56px;
		height: 40px;
		cursor: pointer;
	}
	.btn-trigger span {
		position: absolute;
		left: 5px;
		width: 80%;
		height: 1px;
		background-color: #ffffff;
		border-radius: 1px;
	}
	.btn-trigger, .btn-trigger span {
		display: inline-block;
		transition: all .5s;
		box-sizing: border-box;
	}
	.btn-trigger span:nth-of-type(1) {
		top:4px;
	}
	.btn-trigger span:nth-of-type(2) {
		top: 20px;
	}
	.btn-trigger span:nth-of-type(3) {
		bottom: 4px;
	}

	/*=============================
	#btn01
	=============================*/
	#btn01.active span:nth-of-type(1) {
		-webkit-transform: translateY(16px) rotate(-45deg);
		transform: translateY(16px) rotate(-45deg);
	}
	#btn01.active span:nth-of-type(2) {
		opacity: 0;
	}
	#btn01.active span:nth-of-type(3) {
		-webkit-transform: translateY(-16px) rotate(45deg);
		transform: translateY(-16px) rotate(45deg);
	}
	/*------------------------------*/
	.navi_PC{
		display: none;
	}
	.navi_SP{
		width: 100%;
		height: 100vh;
		background-color: #292f34;
		display:flex;
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
		position: absolute;
		top: 0;
		z-index: -1;
  }
	.navi_li{
		display: block;
		text-align: center;
	}
	ul.navi_li li{
	  padding-left: 20px;
	  padding-right: 20px;
	  padding-top:16px;
	  padding-bottom:16px;
	}
	/* footer */
	footer{
	   margin-top:0px;
	}

	.pc{ display: none;}
	.sp{ display: block;}
}
