@charset "UTF-8";

.wrapper-top-slide {
  position: relative;
}
.slider{
  padding: 1.5rem 1.5rem 0 1.5rem;  
}

h2{
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.1rem;
  font-size: 2rem;
}
/* 大枠ボックス */
.layer{
  position: relative;
  background-position: right 0;
}
.layer-bg:hover, 
.layer-bg01:hover, 
.layer-bg02:hover, 
.layer-bg03:hover {
    opacity: 0.5;
} 
/* 背景画像の読み込み */
.layer-bg{
  display: block;
  background: url(../img/space_img_top.jpg) no-repeat 0 0;
  background-color: black;
  width: 85%;
  min-height: 500px;
  margin: 0 0 0 auto;
  background-size: cover;
  transition: opacity 0.5s ease-in-out;
}
.layer-bg01{
  display: block;
  background: url(../img/bath_img_top.jpg) no-repeat 0 0;
  background-color: black;
  width: 85%;
  min-height: 500px;
  margin: 0 0 0 auto;
  background-size: cover;
  transition: opacity 0.5s ease-in-out;
}
.layer-bg02{
  display: block;
  background: url(../img/sakuragawa_img-107.jpg) no-repeat 0 0;
  background-color: black;
  width: 85%;
  min-height: 500px;
  margin: 0 0 0 auto;
  background-size: cover;
  transition: opacity 0.5s ease-in-out;
}
.layer-bg03{
  display: block;
  background: url(../img/sakuragawa_img-353.jpg) no-repeat 0 0;
  background-color: black;
  width: 85%;
  min-height: 500px;
  margin: 0 0 0 auto;
  background-size: cover;
  transition: opacity 0.5s ease-in-out;
}
  
/* 重ねるボックスの設定 */
.layer-in{
  position: absolute;
  bottom: 10%;
  left: -4%;
}
/* 重ねる文字の基本設定 */
.layer-txt{
  color: #fff;
  letter-spacing: 0.4rem;
  font-family: "Sawarabi Mincho";
}
/* .top-space{
  padding-top: 10rem;
  background-image: url(../img/index-back_02.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
} */

.top-space{
  background-image: url(../img/index-back_03.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 8rem 0 0 0;
}
.room-type-image-area{
  background-image: url(../img/index-back_04.png);
  background-position: 69% 64%;
  background-repeat: no-repeat;
  background-size: 100%;
}
.room-type{
  width: 80vw;
  margin: 0 auto;
  padding: 5rem 0 3rem 0;
  
}
.room-type-text{
  width: 280px;
  margin: 2rem auto;
  text-align: center;
}
.room-type-text02{
  max-width:800px;
  margin: 0 auto;
}
.room-type-text02 p{
  margin-bottom: 10px;
}
.room-type-image-area{
  background-image: url(../img/index-back_04.png);
  background-position: 69% 64%;
  background-repeat: no-repeat;
  background-size: 100%;
}

.room-type-image{
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0;
}
.room-type-image + .room-type-image {
  padding-top: 0;
}

.room-type-image img{
  max-width: 100%;
  /* width: 70%; */
}




.ac-b{
  padding-bottom: 20rem;
}
.top-cap{
  padding: 0.5rem 0;
  margin-bottom: 0.2rem;
  border-bottom: 1px solid #fff;
  
}
.top-cap-ja{
  font-size: 0.9rem;
}
.video-style {
  width: 60%; 
  height: 60%;
  position: absolute; 
}

.top-blog-area{
  padding: 1rem 0;
}
.top-blog-area_con{
  width: 80vw;
  max-width: 800px;
  margin: 0 auto;
}
.top-blog-area h3{
  width: 65vw;
  margin: 0 auto;
  text-align: center;
  padding: 5% 4% 2% 4%;
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
}
.top-blog-area_con > div{
  display: grid;
  grid-template-columns: 20% 80%;
  
}
.top-blog-area_con div div h4{
  margin-bottom: 0.5rem;
}

.top-blog-area_con div div span{
  margin-left: 5%;
}
.top-blog-area_con > div:not(:last-child){
  margin-bottom: 1.5rem;
}

.btn-area{
  display: flex;
    justify-content: center;
    margin: 0 0 4rem 0;
}
.button_space {
  text-decoration: none;
  display: inline-block;
  padding: 1em 8em;
  color: #fff;
  background: transparent;
  background-color: ;
  border-width: 1px;
  border-style: solid;
  border-color: #8c8888;
  position: relative;
  transition: all 0.6s ease-in-out;
  text-align: center;
  cursor: pointer;
  font-family: "Sawarabi Mincho";
  
}
.button_space:before,
.button_space:after{
  content: '';
  display: block;
  position: absolute;
  border-color: #545454;
  box-sizing: border-box;
  border-style: solid;
  width: 1em;
  height: 1em;
  transition: all 0.3s ease-in-out;
}
.button_space:before{
  top: -6px;
  left: -6px;
  border-width: 2px 0 0 2px;
  z-index: 1;
}
.button_space:after{
  bottom: -6px;
  right: -6px;
  border-width: 0 2px 2px 0;
  z-index: 1;
}
.button_space:hover:before,
.button_space:hover:after {
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-color: #545454;
}
.button_space:hover {
  text-decoration: none;
  color: #fff;
  background-color: #454545;
  border-color: #fff;
}

.map{
  box-sizing: border-box;
  height: 55vh;
  margin: 0;
  filter: grayscale(100%);
}
.deco-line{
  width: 100%;
  background-image: url(../img/index-back_02.jpg);
  background-position: bottom;
  background-repeat: no-repeat;
  /* background-size: cover; */
}
.fuji-fun{
  display: grid;
  grid-template-columns: repeat(5,1fr);
  width: 85vw;
  margin: -8% auto 0 auto;
  padding: 10px;
  background-color: #fff;
  gap: 10px;
  z-index: 10;

}


iframe{
  width: 100%;
  margin: 0;
  padding: 0;
}
.news-con{
  overflow: hidden;
}

.mar-01{
  margin-top: 1rem;
}
.mar-02{
  margin-top: 2rem;
}


@media (max-width: 959px){
  .top-blog-area_con{
    width: 85%;
  }
}





@media (max-width: 767px) {
  .video-style {
    width: 100%; 
    height: 60%;
  }
  .button_space {
    margin: 0 auto;
    padding: 1rem 4rem;
  }
  .room-type-image{
    grid-template-columns: 1fr;
  }
  .top-blog-area h3{
    width: 85vw;
  }
  /* .top-blog-area_con{
    width: 85%;
  } */
  .top-blog-area_con > div{
    grid-template-columns: 1fr;
  }
  .btn-area{
    margin-top: 0;
  }
}