@charset "utf-8";
/* CSS Document */

@font-face{
  font-family: 'Hannari';
  src:url(../font/Hannari.woff);
}

*{
	font-weight: 200;
	padding: 0;
	margin:0;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: bold;
  scroll-behavior: smooth;
}

a{
	text-decoration: none;
	letter-spacing: 5px;
	transition: .3s;
/*    -webkit-transform: scale(1.001,1);
    -moz-transform: scale(1.001,1);
    -ms-transform: scale(1.001,1);
    -o-transform: scale(1.001,1);
    transform: scale(1.001,1);*/
}

a:hover{
  opacity: .7;
	transition: .3s;
}

li{
	list-style: none;
}

h1,h2,h3,h4,h5,h6,p{
	color:#111;
/*    -webkit-transform: scale(1.001,1);
    -moz-transform: scale(1.001,1);
    -ms-transform: scale(1.001,1);
    -o-transform: scale(1.001,1);
    transform: scale(1.001,1);*/
}

h1{	
	letter-spacing: 10px;
}
h2{
  font-size: 32px;
  line-height: 45px;
	letter-spacing: 9px;
}
h3{	
	letter-spacing: 8px;
}
h4{	
	letter-spacing: 7px;
}
h5{	
	letter-spacing: 6px;
}
h6{	
	letter-spacing: 5px;
}
p{
  font-size: 16px;
  line-height: 26px;
	letter-spacing: 0px;
}
hr{
}

.clear{
	clear:both;
}

.fa{
	color: #fff;
}
body{
	overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

.spOnly{
  display: none;
}

a.linkBtn{
  display: block;
  width: 220px;
  text-align: center;
  font-family: "Mplus 1p";
	color:#333;
  border: 1px solid #333;
  padding: 15px 0;
}

a.linkBtn:hover{
  opacity: 1;
  background-color: #333;
  color: #fff;
}

.flexBox{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.spbr{
  display: none;
}

@media screen and (max-width: 800px){
  .spOnly{
    display: block;
  }
}


.eng{
  font-family: 'Overpass', sans-serif;
  font-weight: bold;
}

html > img:first-of-type{
  display: none;
}

/*==============================
ローディング画面
==============================*/
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 9999999;
}
#loader {
  display: none;
  margin: auto;
  text-align: center;
  color: #fff;
  z-index: 2;
}
#loader img{
  width: 150px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.sphead{
  display: none;
}
/*==============================
ヘッダ
==============================*/

/*==============================
SPメニュー
==============================*/

.nav-unshown {
  display:none;
}
.spnavBack{
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  z-index: 999998;
  background-color: rgba(255,255,255,.9)
}
  
nav{
  display: none;
  padding: 0;
  width: 100%;
  text-align: center;
  background-color: rgba(255,255,255,1)
}

nav h1{
  display: inline-block;
  margin: 0 auto;
}

nav h1 > a{
  display: block;
}

#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/

/*アイコンのスペース*/
#nav-open {
  position: fixed;
  top:20px;
	right: 0px;
  width: 80px;
  height: 100px;
  padding-top: 50px;
  padding-left: 20px;
  vertical-align: middle;
	z-index: 99999;
  background-image: url("../img/navBack.png");
  background-size: cover;
  cursor: pointer;
  transition: .2s;
}

#nav-open:hover{
  transform: rotate(-3deg) translate(3px,3px);
  transition: .2s;
}

@keyframes navforming{
  0%{
    transform: translateY(0) rotate(0deg);
  }
  25%{
    transform: translateY(-10px) rotate(-2deg);
  }
  50%{
    transform: translateY(0) rotate(-4deg);
  }
  75%{
    transform: translateY(-10px) rotate(-2deg);
  }
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 0px;
  background: #fff;
  display: block;
  content: '';
  cursor: pointer;
  transition: .3s;
}
#nav-open span:before {
  bottom: -10px;
}
#nav-open span:after {
  bottom: -20px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99998;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
nav {
  overflow: auto;
  position: fixed;
	display: block;
  top: 0;
  right: 0;
	margin: 0;
  z-index: 99998;/*最前面に*/
  width: 100%;/*右側に隙間を作る（閉じるカバーを表示）*/
  height: 100%;
  transition: .5s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(105%);
  transform: translateX(105%);/*左に隠しておく*/
  text-align: center;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: 0;
}

#nav-input:checked ~ nav {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
}

#nav-input:checked ~ #nav-open span{  
  transform: rotate(45deg) translate(6.5px,6.5px);
}

#nav-input:checked ~ #nav-open span:before{
  opacity: 0;
  transform: rotate(-45deg) translateX(5px);
}
#nav-input:checked ~ #nav-open span:after{  
  transform: rotate(-90deg) translate(20px,0px);
}

nav{
  position: fixed;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

nav > div{
  position: relative;
  width: 33.3333%;
  overflow: hidden;
  padding: 50px 20px;
}

nav > ul{
  position: absolute;
  left: 40px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
}

nav > ul li{
  text-align: left;
  margin-right: 30px;
}

nav > ul li:last-of-type{
  margin-right: 0;
}

nav > ul li a{
  color: #fff;
  font-size: 50px;
  letter-spacing: 5px;
}

nav > div:nth-of-type(1){
  background-color: #2a2608;
}

nav > div:nth-of-type(2){
  background-color: #229a73;
}

nav > div:nth-of-type(3){
  background-color: #e0b200;
}

nav > div img{
  position: absolute;
  z-index: 9998;
}

nav > div:nth-of-type(1) img{
  width: 140%;
  left: -40%;
  bottom: -5vh;
  animation-name: hoverforming;
  animation-duration: 12s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
}
  
nav > div:nth-of-type(1) ul:first-of-type{
  margin-bottom: 120px;
}

nav > div:nth-of-type(1) ul:last-of-type li a:hover{
  background: none;
}

nav > div:nth-of-type(1) ul:last-of-type{
}

nav > div:nth-of-type(1) ul:last-of-type li a{
  font-size: 18px;
  letter-spacing: 2px;
}

nav > div:nth-of-type(3) img{
  width: 80%;
  right: 5%;
  bottom: -5vh;
  animation-name: hoverforming;
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
}

@keyframes navImgforming{
  0%{
    transform: translateY(0) rotate(0deg);
  }
  25%{
    transform: translateY(20px) rotate(1deg);
  }
  50%{
    transform: translateY(0) rotate(2deg);
  }
  75%{
    transform: translateY(20px) rotate(1deg);
  }
}

nav > div ul{
  position: relative;
  z-index: 9999;
}

nav > div h3{
  color: #fff;
  font-size: 16px;
  margin-bottom: 50px;
  letter-spacing: 1px;
  position: relative;
  z-index: 99999;
}

nav > div p{
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
}

nav > div a{
  display: block;
  color: #fff;
  font-size: 27px;
  letter-spacing: 6px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: .2s;
}

nav > div a:hover{
  background-image: url("../img/navlinkback.png");
  opacity: 1;
  transition: .2s;
}

nav > div li{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

nav > div:nth-of-type(2) ul{
  text-align: left;
  margin: 0 auto;
}

nav > div:nth-of-type(2) li{
  justify-content: flex-start;
  width: 280px;
  margin: 0 auto;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

nav > div:nth-of-type(2) p{
  width: 100px;
  margin-right: 20px;
  text-align: left;
}

nav > div:nth-of-type(2) a{
  text-align: left;
  width: 160px;
}

nav > div:nth-of-type(2) li i{
  display: none;
}

nav > div:nth-of-type(2) li label{
  text-align: left;
  width: 160px;
  color: #fff;
  font-size: 27px;
  letter-spacing: 6px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: left bottom;
}

nav > div:nth-of-type(2) li label:hover{
  background-image: url("../img/navlinkback.png");
  opacity: 1;
  transition: .2s;  
}

nav > div:nth-of-type(2) li input,
nav > div:nth-of-type(2) li ul{
  display: none;
}

nav > div:nth-of-type(2) li input:checked ~ ul{
  display: block;
  width: 160px;
  margin-right: 0;
  margin-top: 30px;
}

nav > div:nth-of-type(2) li input:checked ~ ul li{
  margin-bottom: 20px;
}

nav > div:nth-of-type(2) li input:checked ~ ul li a{
  font-size: 18px;
  letter-spacing: 2px;
  width: 220px;
}

nav > div:nth-of-type(2) li input:checked ~ ul li a:hover{
  background: none;
}

nav > div:nth-of-type(2) li input:checked ~ ul li a::before{
  content: "-";
  margin-right: 5px;
}

nav > div:nth-of-type(3) a{
  font-size: 18px;
  letter-spacing: 2px;
  transition: .3s;
}

nav > div:nth-of-type(3) a:hover{
  background: none;
  opacity: .7;
  transition: .3s;
}

@media screen and (max-width: 1000px){
  nav > div:nth-of-type(2) li input:checked ~ ul li a{
    width: 140px;
  }
}

@media screen and (max-width: 800px){
  .sphead{
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    z-index: 99998;
    width: 100%;
    height: 56px;
    background-image: url("../img/opneBack.png");
    background-size: cover;
    background-position: center;
    padding: 10px;
    text-align: center;
  }
  
  #nav-open {
    position: fixed;
    top:20px;
    right: -5px;
    width: 64px;
    height: 80px;
    padding-top: 39px;
    padding-left: 13.5px;
    vertical-align: middle;
    z-index: 99999;
    background-image: url("../img/navBack.png");
    background-size: cover;
    cursor: pointer;
    transition: .2s;
  }
  
  #nav-close{
    z-index: 99996;
  }
  
  .sphead h1{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .sphead a{
    display: flex;
    align-items: center;
    width: 260px;
  }
  
  .sphead a img{
    width: 100%;
  }
  
  nav{
    display: block;
    width: 90%;
    height: calc(100vh - 56px);
    top: 56px;
    max-width: 330px;
    z-index: 99997;
    background-color: rgba(0,0,0,.9);
    overflow-y: scroll;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  nav > div{
    width: 100%;
    padding: 0 20px;
  }
  
  nav > div h3{
    display: none;
  }
  
  nav > div li{
    justify-content: flex-end;
  }
  
  nav > div a{
    font-size: 30px;
    letter-spacing: 6px;
  }
  
  nav > div:nth-of-type(1),
  nav > div:nth-of-type(2),
  nav > div:nth-of-type(3){
    background-color: rgba(255,255,255,0);
  }
  
  nav > div:nth-of-type(1){
    display: none;
  }
  
  nav > div:nth-of-type(1) ul:last-of-type li a{
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0;
    text-align: right;
  }
  
  nav > div:nth-of-type(2) li{
    width: 100%;
    margin-bottom: 10px;
  }
  
  nav > div:nth-of-type(2) li:last-of-type{
    margin-bottom: 0;
  }
  
  nav > div:nth-of-type(2){
    padding: 20px 35px;
  }
  
  nav > div:nth-of-type(2) p{
    font-size: 12px;
    letter-spacing: 1px;
    width: 80px;
  }
  
  nav > div:nth-of-type(2) a{
    width: 120px;
  }
  
  nav > div:nth-of-type(2) li label{
    width: 120px;
    letter-spacing: 3px;
  }
  
  nav > div:nth-of-type(2) li input:checked ~ ul{
    width: 100%;
  }
  
  nav > div:nth-of-type(2) li input:checked ~ ul li a{
    width: 220px;
  }
  
  nav > div:nth-of-type(2) li ul a{
    width: 200px;
  }
  
  nav > div:nth-of-type(2) li i{
    display: block;
    color: #d8b33c;
  }
  
  nav > div img{
    display: none;
  }
  
  nav > ul.spOnly li{
    margin-bottom: 20px;
    margin-right: 0;
  }
  
  nav > ul.spOnly li a{
    font-size: 15px;
    letter-spacing: 0px;
    text-align: left;
  }
  
  nav > ul{
    position: relative;
    border-top: 1px solid rgba(255,255,255,.5);
    border-bottom: 1px solid rgba(255,255,255,.5);
    padding: 35px 0px;
    top: 0;
    bottom: auto;
    left: 0;
    width: calc(100% - 70px);
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  
  nav > ul li{
    margin-right: 40px;
    margin-bottom: 0;
  }
  
  nav > ul li:last-of-type{
    margin-right: 0;
  }
  
  nav > ul li i{
    font-size: 26px;
  }
  
  nav > ul li:last-of-type{
    margin-bottom: 0;
  }
  
  nav > div:nth-of-type(3){
    padding: 20px 35px;
    text-align: left;
  }
  
  nav > div:nth-of-type(3) li{
    display: block;
    text-align: left;
  }
  
  nav > div:nth-of-type(3) a{
    font-size: 15px;
    letter-spacing: 1px;
    text-align: left;
  }
  
  nav > ul li a{
    font-size: 17px;
  }
}

/*==============================
TOPボタン
==============================*/


/*==============================
メインコンテンツ
==============================*/

/*==============================
フッタ
==============================*/
footer{
  border: 20px solid #e50012;
  border-top: none;
  border-bottom: none;
  background-color: #fff;
}

footer > div{
  padding: 50px 100px;
  display: flex;
  justify-content: space-between;
}

footer > div > ul{  
  display: flex;
  justify-content: space-between;
}

footer > div > ul > li{
  margin-right: 50px;
}

footer > div > ul > li h4 a{
  font-size: 13px;
  color: #e50012;
}

footer > div > ul > li > ul li a{
  font-size: 12px;
  color: #000;
  letter-spacing: 0;
  font-weight: bold;
}

footer > div > ul > li > ul li a::before{
  content: "―";
  color: #999;
  margin-right: 5px;
}

footer > p{
  padding: 5px;
  text-align: center;
  color: #fff;
  background-color: #e50012;
  font-size: 12px;
  line-height: 20px;
}


/*==============================
レスポンシブ
==============================*/

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

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

@media screen and (max-width: 1200px) {
  footer > div{
    padding: 50px;
  }
  
  footer > div > ul > li{
    margin-right: 30px;
  }
}

@media screen and (max-width: 1000px) {
  footer > div{
    flex-wrap: wrap;
  }
  footer > div > ul{
    width: 100%;
  }
  footer > div > a{
    margin: 0 auto 30px;
  }
  
  
}

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

@media screen and (max-width: 800px) {
  footer > div > ul{
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  footer > div > ul > li{
    width: 45%;
    margin-right: 0px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 600px){
  footer{
    border: 20px solid #e50012;
    border-top: none;
    border-bottom: none;
  }
  
  footer > div > ul > li{
    width: 100%;
  }
}

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

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


/*==============================
ローディングアニメーション
==============================*/
