* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Global Styles */
:root {
  --primary-color: #000000;
  --secondary-color: #ffffff;
  --font-color: #333333;
}

body {
  padding: 0;
  background-color: var(--secondary-color);
  font-family: "MS Mincho", serif;
  display: block;
  text-align: center;
  margin: 0 auto;
}

body, html {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  font-family: 'Noto Serif JP', serif;
  font-weight: 200;
  scroll-behavior: smooth;
}


/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:#fff;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:260px;
}

/* fadeUpをするアイコンの動き */
.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
 
/* Loadingバー中央配置　*/
#splash_text {
position: absolute;
bottom: 5%;
left: 50%;
  z-index: 999;
width: 100%;
transform: translateX(-50%);
color: #987f63;
}

/*IE11対策用バーの線の高さ※対応しなければ削除してください*/
#splash_text svg{
  height: 2px;
}




  /* Media Queries */

  .section {
    margin: 80px;
    text-align: center;
    display: block;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }


  h1, h2, h3, h4, h5, p {
    color: var(--font-color);
    line-height: 2;
  }

a {
  text-decoration: none;
  color: var(--font-color);
}

ul {
  list-style: none;
}



/* Header */

/*========= ぼかしのためのCSS ===============*/

.mainblur{
	filter: blur(8px);
}


/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:rgba(255,255,255,0.3);/*背景を少し透過させる*/
    /*動き*/
	transition: all 0.8s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav img{
  position: absolute;
  top: 17%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 260px;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;/*はじめは非表示*/
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
    display: block;
    margin-top: 24px;
}
/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:16px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: normal;
  font-size: 18px;
}

.reservation-btn{
  width: 200px;
}
.reservation-btn a{
  width: 200px;
  background-color: #fff;
  border-radius: 30px;
  margin-top: 40px;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #666;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}





/* inner  */

.inner{
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* link */
.link{
  text-align: right;

}
.link a{
  text-decoration: underline;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px;
}

/* First view */
#first-view{
  position: relative;
}
#fv-slider {
  width: 100%;
  height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

.logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.logo-center img {
  width: 100%;
  max-width: 200px;
}


/* about */

#about {
  padding-top: 29.866vw;
}

.header-wrap{
  font-size: 24px;
  line-height: 2;
  letter-spacing: 0.02em;
  vertical-align: top;
  text-align: left;
  margin-bottom: 70px;
}
.header-wrap h2{
  text-align: center;
  margin-bottom: 24px;
}
.header-wrap p{
  text-align: center;
  font-size: 0.8em;
}

.about-container{
  display:block;
}

.about-item1{
  margin: 0 auto 0 0;
}
.about-item2{
  padding-top: 51px;
}

.about-content-item-text p{
  font-size: 0.9rem;
}


.about-img-container{
  position: relative;
}

.about-imgwrap{
  position: relative;
width: 68%;
overflow: hidden;
}

.about-imgwrap img{
  width: 100%;
}

.about-imgwrap2{
  position: absolute;
  right: 0;
  width: 46.666vw;
  max-width: initial;
  bottom: -11.333vw;
  z-index: 3;
}
.about-imgwrap3{
  position: absolute;
  right: 0;
  width: 61.6vw;
  bottom: -8vw;
}
.about-imgwrap4{
  position: relative;
  left: -4vw;
  width: 40.666vw;
  max-width: initial;
  /* bottom: -11.333vw; */
  z-index: 3;
  overflow: hidden;

}

.about-imgwrap2 img{
  width: 100%;
}

.about-imgwrap3 img{
  width: 100%;
}

.about-imgwrap4 img{
  width: 100%;
  object-fit: cover;
  height: 200px;
  object-position: 42%;
}

.about-content {
  width: 100%;
  margin: 12% auto 5%;
  padding-top: 6.986vw;
  text-align: left;
  max-width: 264px;
  position: relative;
}
.about-content2 {
  width: 100%;
  margin: 5% auto 100px;
  padding-top: 25.986vw;
  text-align: left;
  max-width: 300px;
  position: relative;
}

.about-content p,
.about-content2 p{
  font-size: 18px;
  font-weight: 400;
  line-height: 2.6;
  letter-spacing: 0.06em;
}


.about-item1{
  width: 100%;
  max-width: 933px;
  margin: 0 auto 0;
  position: relative;
}
.about-item2{
  width: 100%;
  max-width: 871px;
  margin: 0 0 0 auto;
  position: relative;
}

.eyecatch-img{
  width: 100%;
  height: 46vh;
  min-height: 300px;
  background-image: url("../images/kokusai-st3.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  animation: parallax linear both;
  animation-timeline: view();
}

@keyframes parallax {
  from {
    background-position: center 0;
  }

  to {
    background-position: center -200px;
  }
}







/* ======= F-CON ======= */


.fcon-section{
  background-color: #333;
  margin-top: 100px;
}

.fcon-contents{
  width: 100%;
  gap: 40px;
  padding: 40px 0;
}

.fcon-about {
  width: 100%;
  max-width: 500px;
  padding: 0 40px;
  margin: 0 auto;
}

.fcon-about h3,
.fcon-about p,
.fcon-about a{
  color: #fff;
}

.fcon-about h3{
  margin-bottom: 28px;
  text-align: center;
  font-size: 28px;
}

.fcon-about span{
  display: block;
  margin-bottom: 18px;
  font-size: 0.8em;
  text-align: center;
}

.fcon-about-text{
  font-size: 16px;
  line-height: 2.6;
  letter-spacing: 0.06em;
  text-align: left;
  margin-bottom: 18px;
}

.fcon-about-text p{
  margin-bottom: 32px;
}

.fcon-about a{
  margin: 40px 0 40px auto;
  width: fit-content;
  display: block;
  border-bottom: 1px solid;
}

.fcon-img img{
  object-fit: cover;
  width: 100%;
  height: 250px;
}







.free-awamori{
  margin-top: 10vw;
  margin-bottom: 13vw;
}
.free-awamori-flex{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.awamori-style{
  margin: 0;
}

.awamori-img-wrap img{
  width: 25vw;
  height: auto;
  object-fit: cover;
  margin-top: 0vw;
}

.awamori-img-wrap2 img{
  display: block;
  width: 30vw;
  height: auto;
  object-fit: cover;
  margin-top: -11vw;
  margin-right: 0;
  margin-left: auto;
}






/* aboutのアニメーション処理 */






/* Room */

.room-wrap{
  display: block;
  margin: 0 auto 80px;
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
  position: absolute;/*絶対配置にする*/
z-index: 3;
  top: 45%;
  cursor: pointer;/*マウスカーソルを指マークに*/
  outline: none;/*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #ccc;/*矢印の色*/
  border-right: 2px solid #ccc;/*矢印の色*/
  height: 25px;
  width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
  left:-3%;
  transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
  right:-3%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
position: relative;
z-index: 3;
text-align:center;
margin:30px auto 0 0;
width: fit-content;
}

.slick-dots li {
  display:inline-block;
margin:0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width:20px;/*ドットボタンのサイズ*/
  height:3px;/*ドットボタンのサイズ*/
  display:block;
  background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
  background:#333;/*ドットボタンの現在地表示の色*/
}



.room {
  margin: 5vw auto;
  padding-top: 40px;
  position: relative;
  z-index: 2;
  }

.room-about{
  text-align: left;
}

.room-about h2{
  margin: 20px 0;
  letter-spacing: 0.2em;
  line-height: 1.4;
  font-size: 22px;
}

.room-about span{
  display: block;
  font-size: 0.6em;
}

.room-about p{
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
}

.room-column-img{
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.room-column-img img{
  width: 100%;
  height: auto;
  object-fit: cover;
}


/* restaurant */

.restaurant {
  margin-bottom: 10vw;
  padding-top: 40px;
  position: relative;
  z-index: 2;
  }

.restaurant-img{
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.restaurant-img img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

.restaurant-about{
  text-align: left;
}

.restaurant-about h2{
  margin: 20px 0;
  letter-spacing: 0.2em;
  line-height: 1.4;
  font-size: 22px;
}

.restaurant-about span{
  display: block;
  font-size: 0.6em;
}

.restaurant-about p{
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
}




/* より楽しむ魅力 */
.future{
  margin-top: 90px;
}
.future-title{
  margin-bottom: 40px;
}

.future-title h3{
  font-size: 22px;
  text-align: right;
}


.future-img{
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.future-img img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

.future-about{
  text-align: left;
}

.future-about h2{
  margin: 20px 0;
  letter-spacing: 0.2em;
  line-height: 1.4;
  font-size: 22px;
}

.future-about span{
  display: block;
  font-size: 0.6em;
}

.future-about p{
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
}


/* 野津氏 */
.nozu-world{
  padding: 80px 0;
}
.nozu-title h3{
  font-size: 22px;
  line-height: 1;
}

.nozu-title p{
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
  margin: 20px 0 36px;
}

.nozu-img{
  height: 70px;
  margin-right: -20%;
}

.nozu-img img{
  width: 100%;
  height: 70px;
  object-fit: cover;
  margin-right: -32%;
}

.nozu-wrap{
  margin: 60px auto 0;
}

.nozu-img-posi{
  position: relative;
}

.profile-img{
  width: 60%;
  max-width: 500px;
  margin: 0 auto;
}

.profile-img-bk{
  position: absolute;
  bottom: -20px;
  left: 0;
  z-index: -1;
  width: 60%;
}

.nozu-profile{
  margin: 77px 0 24px;
}

.nozu-profile h4{
  font-size: 18px;
  line-height: 1;
}

.nozu-profile p{
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
}

.profile-style{
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
  margin: 20px auto;
  width: 90%;
}

.nozu-profile span{
  display: block;
  font-size: 0.6em;
}

.nozu-gallery{
  margin: 20px 0;
}



/*==================================================
スライダーのためのcss
===================================*/
.slider img {
  width:100%;/*スライダー内の画像を横幅100%に*/
  height:150px;
  object-fit: cover;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
  margin:0 10px;/*スライド左右の余白調整*/
}


/* 設備・サービス */
.service{
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 10vw;
}

#service {
  text-align: left;
}

.basic-info-content span{
  padding-left: 16px;
  font-size: 0.8em;
  color: #888888;
}

.basic-info-column{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-top: 1px solid #333333;
  padding: 20px 40px 80px;
  align-items: flex-start;
}

.basic-info-column h4{
  width: 40%;
  min-width: 230px;
  margin-right: 24px;
}

.basic-info-column p{
  width: 100%;
  max-width: 500px;
  margin-bottom: 8px;
}


/* Access */

#access {
  margin-bottom: 160px;
} 

.access-map iframe{
  height: 250px;
}

.access-title{
  text-align: center;
}

.access-title h2{
  margin: 20px 0;
  letter-spacing: 0.2em;
  line-height: 1.4;
  font-size: 22px;
}

.access-title span{
  display: block;
  font-size: 0.6em;
}

.access-container{
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.sec-header-style {
  margin-bottom: 80px;
  text-align: left;
  display: block;
}

.sec-header-style h3 {
  font-size: 32px;
  color: var(--font-color);
}

.sec-header-style span{
  padding-left: 16px;
  font-size: 0.8em;
  color: #888888;
}

.sec-header-style p {
  font-size: 16px;
  color: var(--font-color);
}


  .access-map{
    width: 100%;
    height: 100%;
    margin-bottom: 80px;
  }

  .access-map img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }



  /* 周辺情報 */

  .sights-inner{
    max-width: 900px;
    width: 100%;
    margin: 0 auto 100px;
  }

  .sights h3{
    margin-bottom: 12px;
  }

  .sights p{
    margin-bottom: 32px;
  }



  .slider2{
    width:94%;
    margin:0 auto;
  }
  
  .slider2 img{
    width:20vw; /*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
    margin: 0 auto;
  }

  .slider2 .slick-slide {
    transform: scale(1); /*左右の画像のサイズを80%に*/
    transition: all .5s; /*拡大や透過のアニメーションを0.5秒で行う*/
    opacity: 1; /*透過50%*/
  }
  
  .slider .slick-slide.slick-center{
    transform: scale(1);/*中央の画像のサイズだけ等倍に*/
    opacity: 1;/*透過なし*/
  }




  /* 基本情報*/

  #basic-info {
    text-align: left;
    padding: 80px 0;
    background-color: #ececec;
  }

  .basic-info-content{
    margin-left: 40px;
    margin-bottom: 80px;
    text-align: left;
    display: block;
  }

  .basic-info-content span{
    padding-left: 16px;
    font-size: 0.8em;
    color: #888888;
  }

  .basic-info-column{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-top: 1px solid #333333;
    padding: 20px 40px 80px;
    align-items: flex-start;
  }

  .basic-info-column h4{
    width: 40%;
    min-width: 230px;
    margin-right: 24px;
  }

  .basic-info-column p{
    width: 100%;
    max-width: 500px;
    margin-bottom: 8px;
  }




/* Footer */

footer {
  background-color: #1c1c1c;
  padding: 120px 0;
  position: relative;
  z-index: 1000;
}

footer a,
footer p,
address{
  color: #fff;
}


.footer_logo {
  width: 100%;
  max-width: 140px;
  margin-bottom: 80px;
}

.gnavi{
  display: block;
  margin: 40px;
}
.gnavi li{
  margin: 28px;
}

.footer-copy {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 0;
}

.footer-copy p {
  font-size: 12px;
  color: var(--secondary-color);
}

.agent-bn a {
display: inline-block; /* リンクをインラインブロックにして、画像のサイズに合わせます */
}

.agent-bn a img {
width: 200px;
height: auto; /* 高さは画像の比率を保ったまま自動調整されます */
} 


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

  .about-content-item-text p{
    font-size: 1rem;
  }

  .room-wrap{
    display: flex;
    justify-content: center;
    max-width: 1200px;
  }

  .room-about{
    margin-left: 40px;
    width: 50%;
    position: relative;
  }

  .room-about h2{
    font-size: 28px;
  }

  .room-about span{
    padding-top: 8px;
  }
  .room-about p{
    width: 65%;
    font-size: 16px;
  }


  .room-flex {
    display: flex;
    justify-content: space-between;
    height: 100%;
    max-height: 500px;
  }

  .room-link{
    position: absolute;
    right: 0;
    bottom: 0;
  }

  .restaurant-link{
    position: absolute;
     right: 0;
     top: 350px;
  }

  .link a{
    text-decoration: underline;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px;
  }


  .restaurant{
    display: flex;
    flex-direction: row-reverse;
    justify-content: end;
  }

  
  .restaurant-img{
    margin: 0 -70px 0 0;
  }
  
  .restaurant-img img {
    height: 72vh;
  }
  
  .restaurant-about{
    padding: 40px;
    width: 100%;
    max-width: 500px;
    position: relative;
    margin-right: 100px;
  }

  .restaurant-about h2{
    font-size: 28px;
  }

  .restaurant-about span{
    padding-top: 8px;
  }

  .restaurant-about p{
    font-size: 16px;
  }




  .footer-content{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }
  .footer-content-item{
    text-align: center;
    margin-bottom: 20px;
  }
  .footer-content-item h4{
    margin-bottom: 8px;
  }
  .footer-content-item p{
    margin-bottom: 4px;
  }
  .footer-content-item a{
    margin-bottom: 4px;
  }
  .footer-copy-links a{
    margin-left: 0;
  }
}




@media screen and (min-width: 768px) {

  #about{
    padding-top: 7vw;
  }

  .header-wrap{
    font-size: 40px;
    margin-bottom: 100px;
  }

  .header-wrap p{
    font-size: 24px;
  }

.about-container{
  display: flex;
  margin: 0 auto;
}

.reverse{
  flex-direction: row-reverse;
}

.about-content{
  padding: initial;
}

.about-img-container{
  width: 50%;
}

  .about-imgwrap{
    position: relative;
  width: 100%;
  max-width: 388px;
  overflow: hidden;
  z-index: 2;
  }

  .about-item2{
    margin: 140px auto;

  }

  .about-imgwrap2{
    right: -2vw;
    width: 27.859vw;
    max-width: 267px;
    bottom: -4.515vw;
  }


  .about-imgwrap3{
    width: 35.6vw;
    max-width: 284px;
    bottom: initial;
    right: 20vh;
    top: 15vh;
  }

  .about-imgwrap4{
    width: 180px;
    height: 100%;
    max-height: 260px;
    right: 0;
    position: absolute;
    left: initial;
  }

  .about-imgwrap4 img{
    height: 270px;
    object-position: initial;
  }

  .about-content2{
    margin: 5% auto 100px 30px;
    padding-top: initial;
  }


  .fcon-contents{
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 80px 0;
  }
  
  .fcon-about{
    max-width: 600px;
  }
  
  .fcon-img{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .fcon-img img{
    height: 400px;
  }

  .eyecatch-img{
    height: 80vh;
  }





  .future-title h3{
    font-size: 28px;
    text-align: left;
    margin-bottom: 80px;
  }

  .future-container{
    display: flex;
  }

  .future-img{
    margin: 0;
  }

  .future-about {
    position: relative;
    margin-left: 80px;
  }
  .future-about h2{
    font-size: 28px;
  }
  .future-about p{
    font-size: 16px;
  }

  .future-link{
    position: absolute;
    right: 0;
    bottom: 0;
  }


  .nozu-world{
    padding: 120px 0;
  }

  .nozu-title-wrap{
    display: flex;
    justify-content: space-between;
  }

  .nozu-title{
    text-align: left;
  }

  .nozu-title h3{
    font-size: 28px;
  }

  .nozu-title p{
    font-size: 16px;
  }
  
  .nozu-gallery {
    width: 60%;
    margin: 0;
}

.nozu-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-img{
  width: 70%;
}

.profile-img-bk{
  width: 70%;
  left: -40px;
} 

.nozu-profile h4{
  font-size: 24px;
}

.nozu-profile p{
  font-size: 18px;
}

.nozu-text-posi{
  width: 40%;
}

.slider img{
  height: 100%;
}


  .nozu-gallery li{
    height: 300px;
  }


  .slick-dots li{
    margin: 0 1px;
  }

  .slick-prev, .slick-next{
    top: 97%; 
    height: 15px;
  width: 15px;
  }

  .slick-prev{
    left: 75%;
  }

  .slick-next{
    left: 90%;
  }

  .information-flex{
    margin-bottom: 50px;
  }
  .info-header-style h3{
  font-size: 22px;
  }
  .info-header-style{
    margin-bottom: 40px;
  }



  #access{
    margin-bottom: 80px;
  }
  #access h4{
    font-size: 14px;
  }
  .access-map{
    margin-bottom: 20px;
  }
  .access-map iframe{
    height: 400px;
  }

  #basic-info{
    padding: 40px 0;
  }

  .basic-info-column p{
    margin: 0;
  }

  .reservation_window_img{
    width: 70%;
    margin: 0 auto 32px;
  }
  .button-container{
    flex-direction: column;
    align-items: center;
  }
  .button-wrap p{
    font-size: 18px;
    white-space: nowrap;
  }
  .button-wrap img{
    filter: brightness(100%);
  }
  .sp-img img{
    object-position: 85%;
  }
  


  .sights-inner{
    max-width: 900px;
    width: 100%;
    margin: 0 auto 100px;
  }

  .sights h3{
    margin-bottom: 12px;
  }

  .sights p{
    margin-bottom: 32px;
  }



  .slider2{
    width:94%;
    margin:0 auto;
  }
  
  .slider2 img{
    width:60vw; /*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
    margin: 0 auto;
  }

  .slider2 .slick-slide {
    transform: scale(1); /*左右の画像のサイズを80%に*/
    transition: all .5s; /*拡大や透過のアニメーションを0.5秒で行う*/
    opacity: 1; /*透過50%*/
  }
  
  .slider .slick-slide.slick-center{
    transform: scale(1);/*中央の画像のサイズだけ等倍に*/
    opacity: 1;/*透過なし*/
  }


  .gnavi{
    display: flex;
    justify-content: center;
    margin: 40px;
  }
  .gnavi li{
    margin: 20px;
  }




}




.secondary-img1{
  display: block;
}





/* .fadeuptrigger{
  opacity: 0;
  } */

  .fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
  }
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}


}


.room-fv{
  margin: 40px 0 0 0;
  height: 100vh;
}

.room-fv img{
  width: 100%; /* コンテナの幅に合わせる */
  height: 300px; /* 固定の高さ */
  object-fit: cover;
}
/* 
@media screen and (min-width: 767px){
  
} */


