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


/* ---------------------------------------------------------------------------------------------

   Header

--------------------------------------------------------------------------------------------- */
#header{
	width: 100%;
	height: 70px;
   background: transparent;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}


/* Pc-menu
----------------------------------------------------------------------------------------------*/
#pc-g-nav{
	margin: 0 auto;
	width: 1050px; /*900px*/
	height: 70px;
	position: relative;
	z-index: 100;
}

#pc-g-nav li{
	position: relative;
	float: left;
	width: 150px;
	height: 70px;
	text-align: center;
	line-height: 70px;
}

#pc-g-nav li a{
	display: block;
	width: 100%;
	height: 100%;
	font-size: 14px;
	color: #fff;
	filter:drop-shadow(3px 3px 3px rgba(0,0,0,0.9));
}

#pc-g-nav li a:hover{
	opacity: 0.75;
}


/* Pc-menu ドロップダウンメニュー
-----------------------------------------------------------*/
#pc-g-nav li ul{
	position: absolute;
	top: 100%;
	left: 0;
}

#pc-g-nav li:last-child ul{
	left: -100%;
	width: 100%;
}

#pc-g-nav li ul li{
  overflow: hidden;
  width: 100%;
  height: 0;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;
	/*background: #769164;*/
    background: #333;
}

#pc-g-nav li ul li a{
	padding: 17.5px 0 22.5px 0;
	line-height: 1;
}

#pc-g-nav li:hover ul li{
	overflow: visible;
	height: 50px;
	border-bottom: 1px solid #e6eae3;
}

#pc-g-nav li:hover ul li:first-child{
	border-top: 1px solid #e6eae3;
}
#pc-g-nav li:hover ul li:last-child{
	border-bottom: 0;
}

.fa-chevron-down{
    color: #fff;
}

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

#pc-g-nav{
	display: none;
}

}


/* ---------------------------------------------------------------------------------------------

   Plan 宿泊のご予約

--------------------------------------------------------------------------------------------- */
#plan{
	position: fixed;
	top: 0;
	right: 0; /*-----------------0528変更-----------------*/
	height: 70px;
	width: 125px;
	z-index: 100;
}

#plan a{
	display: flex;
	justify-content: center; 
	align-items: center;
	padding: 15px;
	background: #c7b370;
	font-size: 14px;
	color: #333;
	height: 100%;
}
#plan a:hover{
	opacity: 0.75;
}



/* ---------------------------------------------------------------------------------------------

   Language ※言語切り替え

--------------------------------------------------------------------------------------------- */
#language{
	position: absolute;
	top:0;
	right: 125px; 
	width: 125px;
	height: 70px;
	z-index: 500;
}

#language li{
	position: relative;
	width: 125px;
	height: 70px;
	line-height: 70px;
	text-align: center;
}

#language li a{
	display: block;
	width: 100%;
	height: 100%;
	font-size: 14px;
	font-family: 'Libre Baskerville', serif;
	color: #fff;
	background: #666;
}

#language li a:hover{
	opacity: 0.75;
}

.fa-chevron-down{
	font-size: 14px;
	color: #fff;
}


/* Language ドロップダウンメニュー
-----------------------------------------------------------*/
#language li ul{
	position: absolute;
	top: 100%;
	left: 0;
}

#language li:last-child ul{
	left: 0; 
	width: 100%;
}

#language li ul li{
  overflow: hidden;
  width: 100%;
  height: 0;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;
	background: #666;
}

#language li ul li a{
	padding: 17.5px 0 22.5px 0;
	line-height: 1;
}

#language li:hover ul li{
	overflow: visible;
	height: 50px;
	border-bottom: 1px solid #eee;
}

#language li:hover ul li:first-child{
	border-top: 1px solid #eee;
}
#language li:hover ul li:last-child{
	border-bottom: 0;
}








/* Sp-menu
----------------------------------------------------------------------------------------------*/

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

#g-nav{
    position:fixed;
    z-index: 999;
	top: 0;
    left: -120%; /*right: -120%*/
	width: 50%;
    height: 100vh; /*ナビの高さ100vh*/
	transition: all 0.6s;
	padding: 25px 0;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    left: 0; /*right: 0*/
}

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

#g-nav.panelactive #g-nav-list::-webkit-scrollbar { /*スクロールバー非表示*/
    display: none;
}

@media screen and (max-width:1200px) {
	
#g-nav{
	width: 75%;
}
	
}

/*ナビゲーション*/
#g-nav .text-nav {
    position: absolute;
    z-index: 999;
    top: 25%;
    left: 25%;
	padding: 0 7.5%;
    transform: translate(-50%,-50%);
	width: 50%; 
}

#g-nav .text-nav li{
	list-style: none;
}
#g-nav .text-nav li a{
	display: block;
	text-decoration: none;
	padding: 5px;
	color: #333;
	font-size: clamp(16px, 2vw, 22px);/*(18px, 2vw, 24px)*/
	font-weight: normal;
}
#g-nav .text-nav li a:hover{
	opacity: 0.75; /*0.5*/
}

/*#g-nav .text-nav li a .fa-chevron-down{
	color: #333;
	font-size: clamp(14px, 2vw, 18px);
}*/



/* Onsen nav
-----------------------------------------------------------*/
#g-nav .onsen-nav-wrap{
    position: absolute;
    z-index: 999;
    top: 55%; /*45%*/
    left: 25%; /*---------------変更---------------*/
	padding: 0 7.5%;
    transform: translate(-50%,-50%);
	width: 50%;
	height: 1px; /*仮*/
}

#g-nav .onsen-nav-wrap .onsen-nav{
	width: 100%;
	margin: 0 auto;
}

.onsen-nav{
	width: 100%;
}

.onsen-nav li{
	float: left;
	width: 48%;
	margin: 0 4% 50px 0;
	color: #fff;
}
.onsen-nav li.onsen-two,
.onsen-nav li.onsen-four,
.onsen-nav li.onsen-six{
	margin: 0 0 50px 0;
}

.onsen-nav li img{
	width: 100%;
	height: auto;
	margin-bottom: 15px;
}
.onsen-nav li a:hover img{
	opacity: 0.75;
}

.onsen-nav .onsen-name{
	line-height: 1.5;
	font-weight: normal;
	font-size: clamp(12px, 2vw, 16px);
}
.onsen-nav li a.onsen-name{
	position: relative;
	color: #333;
}

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

#g-nav .onsen-nav-wrap{
	width: 75%;
    left: 37.5%; 
}
	
}

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

.onsen-nav li{
	float: none;
	width: 100%;
	margin: 0 0 50px 0;
}	
	
}


/*========= ボタンのためのCSS ===============*/

.openbtn1{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	left: 25px; /*---------------変更20240501---------------*/
	cursor: pointer;
    width: 100px; /*---------------変更---------------*/
    height: 100px; /*---------------変更---------------*/
}
	
/*×に変化*/	
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 1px; /*---------------変更---------------*/
    border-radius: 2px;
	background-color: #666; /*---------------999変更---------------*/
  	width: 45%;
	filter:drop-shadow(2px 2px 2px rgba(0,0,0,0.9));
  }

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

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

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

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

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

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

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

.openbtn1{
	left: 20px; 
}
	
}

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

.openbtn1{
	left: 10px; 
}
	
}



/*言語切り替え表示のデフォルトスタイル*/
a[data-stt-changelang] {
margin:0 7px;
}
/*アクティブなテキストのスタイル*/
a[data-stt-active] {
text-decoration:none;
font-weight:bold;
}










