@charset "UTF-8";
/* CSS Document */
html {
font-size: 62.5%; /* 16px * 62.5% = 10px */
width: 100%;
box-sizing: border-box;
}
body {
background-color: #2E2D2D; /* RGB */
font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "sans-serif";
font-weight : 500;
font-size: 1.6em;
line-height: 2.4rem;
text-align: center;
}
section h2 {
font-size: 2.4rem;
}
a:hover {
/*color: #9d874e;*/
opacity: 0.2;
}
.none{
display: none;
}
a{
text-decoration: none;
}
ul{
list-style: none;
}

/*display*/
.d-block {
display: block;
}
.d-inline{
display: inline-block;
}
.d-flex {
display: flex;
}
.justyfy-content-between{
justify-content: space-between;
}
.justyfy-content-around{
justify-content: space-around;
}
.align-items-center {
align-items: center;
}
.justify-content-center {
justify-content:  center;
}
.flex-wrap{
flex-wrap: wrap;
}
.p-fixed{
position: fixed;
}
.p-relative{
position: relative;
}
.p-absolute{
position: absolute;
}
.z-100{
z-index: 100;
}
.w-100{
width: 100%;
}
.box-sizing-border{
box-sizing: border-box;
}
.m-0-auto{
margin: 0 auto;
}
/*テキスト*/
.f-mincho{
font-family: 'Shippori Mincho', serif;
}
.align--center {
  text-align: center;
}
.align--left {
  text-align: left;
}
.align--right {
  text-align: right;
}
.w-ver{
-ms-writing-mode: tb-rl;
-webkit-writing-mode: vertical-rl;
writing-mode: vertical-rl;
}
.f-noto-serif{
font-family: 'Noto Serif JP', serif;
}
/*カラー*/
.c-white{
color: #ffffff;
}
.c-black{
color: #333333;
}
.title , .info-title , .link-Btn , .shine{
display: inline-block;
background: linear-gradient(90deg, #a38131 0%, #e7c76d 33%, #ffe6c5 62%, #e3c05d 83%, #9d874e 100%);
background: -webkit-linear-gradient(0deg, #a38131 0%, #e7c76d 33%, #ffe6c5 62%, #e3c05d 83%, #9d874e 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

/*ロード*/
#loading {
position: fixed;
width: 100%;
height: 100%;
z-index: 999;
text-align:center;
color:#efefef;
}
#loading_text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 999;
color: #efefef;
width: 100%;
}
#loading_text svg{
height: 2px;
}
.loader_cover {
width: 100%;
height: 50%;
background-color: #000;
transition: all .2s cubic-bezier(.04, .435, .315, .9);
transform: scaleY(1);
}
.loader_cover-up {
transform-origin: center top;
}
.loader_cover-down {
position: absolute;
bottom: 0;
transform-origin: center bottom;
}
.coveranime {
transform: scaleY(0);
}
#container{
width:100%;
height: 100vh;
background: #000;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}


/*transform*/
.fade {
width: 100%;
/*height: 189px;*/
transform: translateY(120px);
opacity: 0;
visibility: hidden;
transition: transform 1s, opacity 1s, visibility .5s;
}
.is-fadein {
transform: translateX(0);
opacity: 1;
visibility: visible;
}
/*ヘッダー*/
header{
width: 100%;
/*max-width: 1160px;*/
height: 170px;
margin: 0 auto;
z-index: 10;
}
.header_content{
width: 100%;
height: 170px;
/*max-width: 1440px;*/
}
#header h2{
display: none;
}
#header h1 img{
width: 205px;
height: 128px;
top: 20px;
left: 8%;
}
.header_nav__list{
width: 100vw;
height: 100px;
}
.header_nav__list ul{
background-color: #000000;
border-radius: 40px;
white-space: nowrap;
top: 24px;
right: 8%;
}
.header_nav__list ul li:nth-child(1),.header_nav__list ul li:nth-child(2),.header_nav__list ul li:nth-child(3),.header_nav__list ul li:nth-child(4){
/*display: inline-block;*/
font-size: 2rem;
padding: 18px 0px 22px 50px;
}
.facebook{
width: 35px;
height: 35px;
vertical-align: bottom;
}
.header_nav__list ul li:nth-child(5){
/*display: inline-block;*/
padding: 15px 50px 15px;
}
.header_nav__list ul:hover{
box-shadow: 7px -7px 10px #9d874e;
}
#nav-content li :hover{
color: #9d874e;
opacity: 100;
}
.nav-img{
display: none;
}
.nav-home{
display: none;
}
/*フッター*/
#footer{
background-color: #000000;
width: 100%;
height: 320px;
}
.footer-content{
width: 80%;
padding-top: 32px;
}
.footer-content li{
font-size: 2rem;
padding: 0 16px;
}
.footer-content li :hover{
color: #9d874e;
opacity: 100;
}
#footer ul img{
margin: 0 16px;
}
#footer h2 img{
width: 116px;
margin: 130px auto 6px;
}
#footer small{
/*padding: 10px 0 23px;*/
letter-spacing: .1rem;
font-size: 1.2rem;
}
#page-top {
color: #01523A;
width: 50px;
height:50px;
border-radius: 5px;
border: solid #01523A 2px; 
right: 35px;
bottom: 35px;
font-size: 3rem;
line-height: 5rem;
background: #fff;
}
#page-top img{
width: 30px;
}
#page-top img{
width: 30px;
padding: 7px 10px;
top: 0;
left: 0;
}


@media(max-width:1270px){
  #header{
  height: 150px;
  }
  #header h1 img{
  width: 164px;
  height: 102px;
  top: 24px;
  }
  .header_nav__list ul li:nth-child(1),.header_nav__list ul li:nth-child(2),.header_nav__list ul li:nth-child(3),.header_nav__list ul li:nth-child(4){
  font-size: 1.8rem;
  padding: 17px 0px 20px 30px;
  }
  .facebook{
  width: 26px;
  height: 26px;
  }
  .header_nav__list ul li:nth-child(5){
  padding: 16px 30px;
  }
  .header_nav__list ul{
  top: 12px;
  }
}

@media(max-width:900px){
  .header_content{
  width: 100%;
  }  
  #header h1 img{
  width: 138px;
  height: auto;
  top: 32px;
  }
  .header_nav__list ul li:nth-child(1),.header_nav__list ul li:nth-child(2),.header_nav__list ul li:nth-child(3),.header_nav__list ul li:nth-child(4){
  padding: 17px 0px 20px 20px;
  }
  .header_nav__list ul li:nth-child(5){
  padding: 16px 20px;
  }
}

@media(max-width:800px){
  #header{
  height: 80px;
  margin: 0 auto;
  }
  #header h1 img{
  width: auto;
  height: 60px;
  top: 20px;
  }    
  .header_content{
  height: 80px;
  }
  
  /*--ハンバーガー---*/
  .open-btn{
  background: #ffffff;
  width: 50px;
  height:50px;
  border-radius: 5px;
  border: solid #01523A 2px;
  top: 25px;
  right: 7%;
  }
  .open-btn .nav-open{
  transition: all .4s;
  }
  .open-btn span{
  transition: all .4s;
  left: 50%;
  transform: translate(-50%,-50%);
  height: 4px;
  border-radius: 2px;
  background: #01523A;
  width: 56%;
  }
  .open-btn span:nth-of-type(1) {
  top:15px; 
  }
  .open-btn span:nth-of-type(2) {
  top:25px;
  }
  .open-btn span:nth-of-type(3) {
  top:35px;
  }
  .open-btn.active .nav-open{
  transform: rotateY(-360deg);
  }
  .open-btn.active span:nth-of-type(1) {
  top: 18px;
  left: 12px;
  transform: translateY(6px) rotate(-135deg);
  width: 50%;
  }
  .open-btn.active span:nth-of-type(2) {
  opacity: 0;
  }
  .open-btn.active span:nth-of-type(3){
  top: 30px;
  left: 12px;
  transform: translateY(-6px) rotate(135deg);
  width: 50%;
  }
  
  #nav-content {
  display: none;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: 90vh;
  background-color: #08090b;
  opacity: .8;
  text-align:center;
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.25);
  }
  .header_nav__list ul:hover{
  box-shadow: none;
  }
  #nav-content li :hover{
  color: #fff;
  opacity: 0.4;
  }
  .header_nav__list{
  display: block;
  top: 0;
  left: 0;
  background-color: transparent;
  padding: 60px 0 0;
/*  transform: translate(-50%,-50%);*/
  }
  .header_nav__list ul{
  right: 0;
  position: relative;
  }
  .header_nav__list ul li{
  display: block;
/*  position: relative;*/
  height: 130px;
  }
  .header_nav__list ul li img{
  display: block;
   margin: 0 auto;
  }
  .nav-img{
  width: 60px;
  }
  .nav-home{
  width: 40px;
  }
  .header_nav__list ul li:nth-child(1),.header_nav__list ul li:nth-child(2),.header_nav__list ul li:nth-child(3),.header_nav__list ul li:nth-child(4){
  padding: 0;
  font-size: 1.4rem;
  }
  .header_nav__list ul li:nth-child(5){
  padding: 0;
  }  
/*フッター*/
  #footer{  
  /*height: 320px;*/
  }
  .footer-content{
  width: 86%;
  padding-top: 18px;
  }
  .footer-content li{
  font-size: 1.5rem;
  padding: 0 6px;
  }
  #footer ul img{
  margin: 0 8px;
  }
  #footer h2 img{
  width: 80px;
  margin: 190px auto 0px;
  }
  #page-top {
  right: 7%;
  bottom: 25px;
  }
}
@media(max-width:500px){
  #header h1 img{
  width: 48px;
  height: 30px;
  top: 10px;
  }
  .open-btn{
  width: 26px;
  height:26px;

  border: solid #01523A 1.5px;
  top: 12px;
  }
  .open-btn span{
  height: 3px;
  border-radius: 2px;
  }
  .open-btn span:nth-of-type(1) {
  top:7px; 
  }
  .open-btn span:nth-of-type(2) {
  top:13px;
  }
  .open-btn span:nth-of-type(3) {
  top:19px;
  }
  .open-btn.active span:nth-of-type(1) {
  top: 6px;
  left: 6px;
  transform: translateY(6px) rotate(-135deg);
  width: 50%;
  }
  .open-btn.active span:nth-of-type(2) {
  opacity: 0;
  }
  .open-btn.active span:nth-of-type(3){
  top: 18px;
  left: 6px;
  transform: translateY(-6px) rotate(135deg);
  width: 50%;
  }
  /*フッター*/
  #footer{
  height: 380px;
  }
  .footer-content{
  width: 86%;
  text-align: left;
  padding-left: 12px;
  }
  .footer-content li{
  display: block;
  padding: 0 0 14px;
  }
  #footer ul img{
  margin: 0;
  }
  #footer h2 img{
  margin: 96px auto 0;
  }
  #footer small{
  letter-spacing: .1rem;
  font-size: 1rem;
  }
  #page-top {
  width: 26px;
  height:26px;
  border: solid #01523A 1.5px; 
  right: 6%;
  bottom: 20px;
  }
  #page-top img{
  width: 16px;
  padding: 3px 5px;
  }
}









