body{
    font-size:75%; 
}
#container{
	width: 100%;
	margin: 0 auto;
  background-image: url(/imgs/bg.png); 
  font-family: 'Prata', serif;
}



#datetime{
    color: #fff;
    font-size: 1em;
    margin: 0px 0px 0px 3%;

}
@media screen and (max-width: 768px) {
  #datetime{
   display: none;
}

}/* 手机(max-width: 768px) */

.header{
   padding:20px 0px 30px; 
   background-image: url(/imgs/headerbg.png);
   background-repeat: no-repeat;
   background-position: center center;
   background-size:cover;
}



.logo{
    text-align: center;
}



.gnavi__pc-style {
    width:50%;
    margin: 60px auto 0px;
    font-size: 1.4em;
  }
  .gnavi__pc-style ul {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    color:#696031;/*下划线颜色 可能需要改*/
  }

  .gnavi__pc-style ul li{
    padding-bottom: 5px;
    background: 
    linear-gradient(currentColor 0 0) 
    bottom /var(--d, 0) 1px 
    no-repeat;
    transition:0.5s;
  }
  .gnavi__pc-style ul li:hover {
    --d: 100%;
  }

  .gnavi__pc-style ul li:not(:last-of-type) {
    margin-right: 10px;
  }
  .gnavi__pc-style a {
      text-decoration: none;
       color: #fff;
  }

  /*以下是汉堡menucss*/
  .gnavi__sp-style{
    display: none;
  }
  @media screen and (max-width: 768px) {
  .gnavi__pc-style {
    display: none;    
  }

.gnavi__sp-style{
  display:block; 
}
  
/*展开后*/
.NavMenu{
  position: fixed;
  z-index: 12;
  top: 0;
  left: 0;
  background-color: rgba(5, 5, 5, 0.93);
  text-align: center;
  width: 100%;
  height: 100%;
  display: none;
  }
  
.NavMenu ul{
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  }
  
.NavMenu ul li{
  font-size: 24px;
  list-style-type: none;
  width: 100%;
  padding-bottom: 0px;
  }
  
.NavMenu ul li:last-child{
  padding-bottom: 0;
  }
.NavMenu ul li a{
  display: block;
  color: #fff;
  padding: 30px 0;
  font-weight: bold;
  font-size: 1em;
  text-decoration: none;
  }
  .NavMenu ul li a:hover{
    background :#696031;
  }
  
  /*汉堡包菜单*/
.Toggle {
  position: fixed;
  right:10px;
  top: 10px;
  width: 48px;
  height: 45px;
  cursor: pointer;
  z-index: 13;
  display: block;
  background-color: #696031;
  }
  
  .Toggle span {
  display: block;
  position: absolute;
  width: 35px;
  border-bottom: solid 3px #fff;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  left: 6px;
  }
  
  .Toggle span:nth-child(1) {
  top: 9px;
  }
  
  .Toggle span:nth-child(2) {
  top: 20px;
  }
  
  .Toggle span:nth-child(3) {
  top: 31px;
  }
  
  .Toggle.active span:nth-child(1) {
  top: 20px;
  left: 8px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-bottom: solid 3px #fff;
  }
  .Toggle.active span:nth-child(2),
  .Toggle.active span:nth-child(3) {
  top: 20px;
  left:8px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  border-bottom: solid 3px #fff;
  }

  }/* 手机(max-width: 768px) */

  /*图片走马灯*/
@keyframes infinity-scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  /* IE11対策*/
  _:-ms-lang(x)::-ms-backdrop,
  .slider {
    display: -ms-grid;
    overflow: hidden;
  }
  .slider-wrap img{
    width: auto;
    height:500px;
  }
  .slider-wrap{
    display: flex;
    overflow: hidden;
  }
  
  .slider-wrap-list {
    display: flex;
    list-style: none;
  }
  
  .slider-left{
  animation :infinity-scroll-left 95s infinite linear 0.5s both;
  }
    /*-----------------点击停止
  .slider__wrap:hover .slider__list--left {
    animation-play-state: paused;
  }-----------*/
  @media screen and (max-width: 768px) {
    .slider-wrap img{
      width: auto;
      height: 300px;
    }

  }/* 手机(max-width: 768px) */


  /*中间文字*/
  .container{
  display: grid;
  }
  .recentinfo{
    width: 80%;
    margin: 20px auto;
    background-color:rgba(0,3,5,0.3);
    grid-template-columns:1fr 1fr;
    padding: 30px 0px;
    color: #fff; 
  }
  .recentinfo p{
  line-height:24px;
  margin:0 20px;  
  font-size: 1em;
  }
.recentinfo h2{ 
    font-size: 1.4em;
    color: #aaa381;
    margin: 10px 20px;
}
.hotel{
    text-decoration: none;
    padding-right: 30px;
    padding-bottom:5px ;
    color: #aaa381;
    font-size: 1.3em;
	  position: relative;
    display: inline-block;
}

.hotel::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background-color: #aaa381;
  transition: .3s;
}
.hotel:hover::after {
  width: 85%; 
}

  @media screen and (max-width: 768px) {
    .recentinfo{
    width: 94%;
    grid-template-columns:1fr;
    }
    .hotel-suoukai{
      display: block;
    
    }
    .floor2{
      margin-top: 20px;
    }

  }/* 手机(max-width: 768px) */

  /*中间文字这里结束*/

  .gallery-tittle{
    display: block;
    width: 80%;
    margin:0 auto;
    border-top: 1px  solid #696031 ;
    border-bottom: 1px  solid #696031 ;
    text-align: center;
    padding: 20px 0;
    color: #aaa381;
    font-size: 1.6em;
}
  /*gallery*/


.gallery{
    width: 80%;
    margin:10px auto;
    grid-template-columns:1fr 1fr 1fr;
    grid-gap: 5px;
}
@media screen and (max-width: 768px) {
  .gallery-tittle{
    width: 94%;
    font-size: 1.4em;
    padding: 10px 0;
  }
  .gallery{
    width: 94%;
    height: 400px;
    margin:10px auto;
    grid-template-columns:1fr 1fr 1fr 1fr;
    grid-gap: 1px;
}
.gallery-item{
  position: relative;
}
.gallery-item::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: background-color 0.5s;
}
.gallery-item　img{
  cursor: pointer;
  height: 100%;
  width: 100%;
}

.gallery-item:hover::before {
 background-color: rgba(90, 90, 88, 0.483);
}

.mask{
  display: none;
}

}/* 手机(max-width: 768px) */

.gallery-item{
	position:relative;
  overflow:hidden;
}


.gallery p{
   	text-align: center;
    line-height: 2em;
    color: #fff;
    width: 76%;
    margin: 0 auto;
}
.gallery-item img{
    height:auto; 
    width: 100%;
    object-fit:cover;
}


.mask {
	width:			100%;
	height:			100%;
	position:		absolute;
	top:			0;
	left:			0;
	opacity:		0;
	background-color:	black;
	-webkit-transform:	rotateY(-180deg);
	transform:		rotateY(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition:		all 0.6s ease;
}
.gallery-item:hover  .mask {
	-webkit-transform:	rotateY(0deg);
	transform:		rotateY(0deg);
	opacity:		1;	
}


.caption-tittle{
    display: block;
    text-align: center;
    color: #aaa381;
    border-top:1px solid #696031 ;
    border-bottom:1px solid #696031 ;
    padding: 10px;
    text-align: center;
    margin: 30px 0;
}


.btn-moreinfo{
    display: flex;
    align-items: center;
    margin: 30px auto;
    padding: 10px 20px;
    border: 1px solid #696031;
  	text-decoration: none;
    color: #aaa381;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    overflow:hidden;
}


.btn-moreinfo::after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #aaa381;
    border-right: 3px solid #adadad;
    transform: rotate(45deg);
  }


  .btn-moreinfo:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #696031;
    opacity: 0.7;
    transition: all 300ms linear;
  }

  .btn-moreinfo:hover:before {
    left: 0;
  }
  /* btn在这里*/

  

.galleryitem-btn{
    position:absolute;
	  bottom:	0;
    left: 50%; 
    transform: translate(-50%, -50%); 
    -webkit-transform: translate(-50%, -50%);
    width: 50%;
}

.gallery-btn{
    width: 200px;
}
/*btn まとめ*/




.footer{
    background-color: #111;
    color: #fff;
    padding: 30px 0 0;
}
.footer p{
    margin: 20px auto 0;
    text-align: center;
    line-height: 30px;
}
.footer a{
  display: block;
  background-color: #111;
  color: #fff;
  text-decoration: none;
}
.gnavi__pc-style_down{
    padding: 20px 0;
}
.gnavi__pc-style_down a{
    color: #fff;
}
.copyright{
    font-size:0.8em;
    padding: 5px 0;
    color: #696031;
    border-top:1px solid #696031;
}





