/*============================================================================================
↓共通================================================================================
============================================================================================*/
.sp_on{
  display: block;
}

@media screen and (min-width: 768px) {
  .sp_on{
    display: none;
  }
}

.pc_on{
    display: none;
}

@media screen and (min-width: 768px) {
  .pc_on{
    display: block;
  }
}

.clear{
  float: none;
  clear: both;
  overflow: hidden;
}

.mtb{
  margin-top:10px;
  margin-bottom: 10px;
}

.mb30{
  margin-bottom: 30px;
}

.mb50{
  margin-bottom: 50px;
}


.mt8{
  margin-top: 8px;
}


.mt15{
  margin-top: 15px;
}


.font_black{
  color: black;
}

.fcc{
  text-align: center;
}

.mt15_sp{
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .mt15_sp{
    margin-top: 0px;
  }

}


.mt100_sp{
  margin-top: 100px;
}

@media screen and (min-width: 768px) {
  .mt100_sp{
    margin-top: 100px;
  }

}

/*============================================================================================
↓ローディング================================================================================
============================================================================================*/
#loadingWrap {
    width: 100%;
	height: 100vh;
	overflow: hidden;
    position: fixed;
    top: 0;
	left: 0;
    z-index: 99999;
	/* background-color:rgba(237,236,232,1); */
	/* background-image:url("../images/top/mark.png.jpg"); */
	background-position:left top;
	background-repeat:repeat;
}

#loadingWrap .loading {
	width:60px;
	height:60px;
	position: absolute;
	left: 50%;
    top: 50%;
	margin-left:-30px;
	margin-top:-30px;
	opacity:1;
	background-image:url("../images/top/mark.png");
	background-position:center center;
	background-repeat:no-repeat;
	background-size:contain;
  animation: loaderAnime 1s infinite linear;
}

@keyframes loaderAnime {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loadingNone {
    animation: loadingAnime 1s forwards;
}

@keyframes loadingAnime {
    0% {
        opacity: 1;
    }
    99% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        display: none;
    }
}

#fade{
    width: 100%;
    height: 100%;
    display: none;
    background-color:rgba(237,236,232,1);
	/* background-image:url("../images/top/bg-jppaper.jpg"); */
	background-position:left top;
	background-repeat:repeat;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 9999;
}


/* hover action */
.hover {
	text-decoration: none;
	opacity:1;
	transition: all 0.3s ease 0s;
}
.hover:hover {
	opacity:0.6;
}

/* 各デバイスでの表示切り替え */
.sp, .pc {display: none;}/*only SP&TAB*/
.pc {display: block;}/*only PC*/
@media screen and (max-width: 1080px) {
.sp, .tab {display: none;}
.pc {display: block;}
}
@media screen and (max-width: 768px) {
.sp, .pc {display: none;}
.tab {display: block;}
}
@media screen and (max-width: 480px) {
.pc, .tab {display: none;}
.sp {display: block;}
}

/*============================================================================================
↓共通事項====================================================================================
============================================================================================*/
/* TapArea */
* {
  -webkit-tap-highlight-color: rgba(102,102,102,0.3);
  -webkit-touch-callout: none;
  /*-webkit-user-select: none;*/
}
input, textarea {
	/*-webkit-user-select : auto;*/
}

body {
	width: 100%;
	font-family: 'Lora','游明朝', 'Yu Mincho', '游明朝体', serif;
	font-weight: normal;
	font-size : 110%;
	-webkit-font-feature-settings: 'pkna';
	font-feature-settings: 'palt';
	letter-spacing:0.25em;
	writing-mode: horizontal-tb;
	-webkit-text-size-adjust:100%;/*←for iOS&Safari TxtSize*/
}

/* リンクテキスト */
a:link,a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

/*フォントファミリー*/
.serif {font-family: 'Lora','游明朝', 'Yu Mincho', '游明朝体', serif;}
.sansserif {font-family: 'Open Sans','游ゴシック体','Yu Gothic',YuGothic, sans-serif;}

.bold {font-weight:bold; }
.underline {text-decoration:underline;}
.strong {color:rgba(184,38,8,1); text-decoration:underline;}

/* レスポンシブ対応＞（上下余白・サイド余白） */
.innerWrap { /*可変幅1080*/
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
	overflow:hidden;
}
.innerWrapNarrow { /*可変幅740*/
	max-width: 740px;
	margin-left: auto;
	margin-right: auto;
	overflow:hidden;
}
@media screen and (max-width: 1080px) {
.innerWrap,
.innerWrapNarrow {
	padding-left: 20px;
	padding-right: 20px;
}
}

/*============================================================================================
↓背景カラー／パターン========================================================================
============================================================================================*/
.bg-wh {background-color:rgba(255,255,255,1); padding-bottom:30px;}
.bg-bk {background-color:rgba(0,0,0,1);}
.bg-jppaper {
	background-color:rgba(237,236,232,1);
	background-image:url("../images/top/bg-jppaper.jpg");
	background-position:center top;
	background-repeat:repeat;
}

/*============================================================================================
↓書字方向（本文縦書き）======================================================================
============================================================================================*/
.verticalModeWrap {
	position:relative;
	width:100%;
	height:;/*高さはそれぞれ指定*/
}
.verticalModeWrap .inner{
  position:absolute;
  top:50%;
  left:50%;
  display:inline;
  transform:translate(-50%, -50%);
}
.verticalMode {
	text-align:left;
	white-space:nowrap;
	line-height: 100%;
	letter-spacing: 0.25em;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
	font-feature-settings: 'pkna';
  line-height: 1.4;
}
@media screen and (max-width: 768px) {/*モバイル時は横書きにする*/
.verticalModeWrap {
	height:inherit !important;
}
.verticalModeWrap .inner{
	position:inherit;
	top:inherit;
	left:inherit;
	display:inherit;
	transform:none;
}
.verticalMode {
	white-space:normal;
	line-height: 1.6em;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
	font-feature-settings: 'palt';
}
}

/*============================================================================================
↓＜レイアウト＞==============================================================================
============================================================================================*/
#wrapper {
    width: 100%;
	position: absolute;
    top: 0;
	visibility:hidden;
}
#container {
	position:relative;
	width:100%;
	background-color:rgba(255,255,255,1);
	transition:all 0.3s ease 0s;
}
.sectionWrap {
	padding:30px 0;
	box-sizing:border-box;
}


.main{
  font-size: 130%;
}


.basic{
  padding: 0 20px 50px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1080px;
}

.basic2{
  padding-top: 100px;
}


/*============================================================================================
↓header =====================================================================================
============================================================================================*/
#header{
	width:100%;
	height:80px;
	background:rgba(255,255,255,1);
	width:100%;
	position:fixed;
	top:0;
	left:0;
	z-index:99;
	transition:all 0.3s ease 0s;
  border-bottom: 1px solid #666464;
}
#header h1 {
	display:table-cell;
	vertical-align:middle;
}
#header h1 a:link,
#header h1 a:visited {
	width: 200px;
	height: 40px;
	margin: 20px;
	background: rgba(255,255,255,0) url("../images/common/logo-header_b.png") no-repeat center center;
	background-size:100%;
	display: block;
	text-indent: -9999px;
	white-space: nowrap;
	transition: all 0.3s ease 0s;
}
#header h1 a:hover {
	opacity:1;
}

@media screen and (max-width: 640px) {
#header h1 a:link,
#header h1 a:visited {
	width: 170px;
	height: 34px;
	margin: 23px 0 23px 12px;
}
}

@media screen and (max-width: 340px) {
#header h1 a:link,
#header h1 a:visited {
	width: 160px;
	height: 32px;
	margin: 24px 0 24px 6px;
}
}


/*============================================================================================
↓グランドメニュー　開・閉====================================================================
============================================================================================*/
#navTrigger {
	position: fixed;
    top: 15px;
    right: 20px;
    z-index: 999;
    width: 50px;
    height: 47px;
	box-sizing:border-box;
	border:solid 1px rgba(0,0,0,0.3);
}

@media screen and (max-width: 768px) {
#navTrigger {
    right: 20px;
}
}

@media screen and (max-width: 340px) {
#navTrigger {
    right: 6px;
}
}



/*============================================================================================
↓グランドメニュー============================================================================
============================================================================================*/
.bg-layer {
	position:fixed;
	width: 100%;
	height:100%;
    top: 0;
	left: 0;
    z-index: 9;
	background-color:rgba(0,0,0,0.8);
}
#grandNaviWrap {
	width: 100%;
	height:100%;
	overflow: hidden;
    position: fixed;
    top: 0px;
	left: 0;
    z-index: 9;
	display:none;
}
#grandNavi {
	position: absolute;
	top: 55%;
	left: 50%;
	z-index: 9;
	transform: translate(-50%, -50%);
}
#grandNavi ul {
	padding:0;
	margin:0 0 0 20px;
}
#grandNavi ul:last-child {
	margin:0;
}
#grandNavi ul li a:link,
#grandNavi ul li a:visited {
	color:rgba(255,255,255,1);
	font-size:1.6em;
	line-height:1em;
	text-decoration:none;
	position:relative;
	display:block;
	padding:30px 10px;
	transition:all 0.3s ease 0s;
}
#grandNavi ul li a:hover {
	transform:translate(0,4px);
}
#grandNavi ul li a span.ico {
	position:absolute;
	width:50px;
	height:50px;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	background-image:url("../images/top/ico-lower-wh.png");
	background-position:center -15px;
	background-repeat:no-repeat;
	background-size:50px 50px;
}
#grandNavi ul li a span.hotelName {
	font-size:80%;
	margin-right: 10px;
    display: block;
	opacity:0.7;
}
@media screen and (max-width: 768px) {
#grandNavi {
	width:85%;
}
#grandNavi ul {
	margin:0;
}
#grandNavi ul li a:link,
#grandNavi ul li a:visited {
	line-height:1.6em;
	padding:3px 30px;
	width: 100%;
}
#grandNavi ul li a:hover {
	transform:translate(4px,0);
}
#grandNavi ul li a span.ico {
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	background-image:url("../images/top/ico-toright-wh.png");
	background-position:-10px center;
	background-repeat:no-repeat;
	background-size:50px 50px;
}
}


/*============================================================================================
↓ファーストビューズームスライドショー========================================================
============================================================================================*/
.top_slid{
  position: relative;
}

.met_slid{
  height: 100vh;
}


.met_slid img{
  height: 100vh;
  object-fit: cover;
}

video {
  background-color: rgb(0, 0, 0);
    object-position: center center;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
/*============================================================================================
↓表紙（カバー）==============================================================================
============================================================================================*/


/*============================================================================================
↓ファーストビューコンテンツ==================================================================
============================================================================================*/
.top_imges_info {
	position:absolute;
	width: 100%;
	top:25%;
	left:0;
	padding:5%;
	box-sizing:border-box;
}

@media screen and (max-width: 768px) {
  .top_imges_info {
  	top:50%;
  }
}
/* .fullScreenWrap {
	position:absolute;
	width: 100%;
	top:0;
	left:0;
	box-sizing:border-box;
} */

.cover {
	width:100%;
	overflow:hidden;
}
.cover .coverLogo {
	width:70px;
	margin-right:30px;
	transition:all 0.3s ease 0s;
}
.cover .coverLogo img {
	width:100%;
	height:auto;
}
.cover .coverNav {
	float:left;
	transition:all 0.3s ease 0s;
}

@media screen and (max-width: 768px) {
.cover {
	width:85%;
	position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    transform: translate(-50%,-50%);
}
.cover .coverLogo {
	float:none;
	width:60px;
	margin:0 auto 30px;
}
.cover .coverNav {
	float:none;
}
}



/*スクロールマーカー*/
.scrollMarker {
	position:absolute;
	width:22px;
	height:80px;
	bottom:20px;
	left:50%;
	margin-left:6px;
	overflow:hidden;
	opacity:0.6;
}
.scrollMarker div.txt {
	position:absolute;
  width:12px;
	right:0;
	top:0;
}
.scrollMarker div.arr {
	position:absolute;
  width:12px;
	left:0;
	bottom:0;
	animation: arrAnimation 2s linear infinite 0s;
}
	  @keyframes arrAnimation {
		  0% {
			  bottom:10%;
			  animation-timing-function: ease-in;
		  }
		  30% {
			  bottom:0;
			  animation-timing-function: ease-out;
		  }
		  50% {
			  bottom:10%;
		  }
		  100% {
			  bottom:10%;

		  }
	  }



    /*============================================================================================
    ↓index_content==============================================================================
    ============================================================================================*/

    .ttlStyle1 {
    	font-size:2.0em;
    	line-height: 1.6em;
    	font-weight:normal;
    	text-align:center;
    	margin:20px auto 20px;
    }

    .ttlStyle1 .ttl-ja::before {
      content:"";
    	display:block;
    	width:1.2em;
    	height:1.2em;
    	background:url(../images/top/mark.png) no-repeat;
    	background-size:contain;
      margin:20px auto 10px;
    }

    .ttlStyle1 .ttl-ja {
    	display:block;
    	padding:10px 0 0;
    	margin: 0 auto;
    }
    .ttlStyle1 .ttl-en {
    	font-size:50%;
    	text-align:center;
    	margin:0;
    	padding:10px 20px 0;
      color: #C31633;
      letter-spacing: 0.7;
    }

    /*============================================================================================
    ↓index_content blog==============================================================================
    ============================================================================================*/

.news_li{
  padding-top: 50px;
}

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

  .news_li{
  }
}

.news_li li{
  border-bottom: 1px solid #666464;
  padding: 0 10px 10px;
  float: none;
  clear: both;
  overflow: hidden;
  margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
  .news_li li{
    display: inline-block;
  	width: 45%;
    margin-right: 8%;
  }

  .news_li li:nth-child(even){
    display: inline-block;
  	width: 45%;
    margin-right: 0;
  }


}



.news_li img{
  width: 140px;
  height: 120px;
  object-fit: cover;
  float: left;
  margin-right: 20px;
}

.blog_li_date{
  font-size: 80%;
  margin-bottom: 10px;
}

.blog_li_ca{
  background: #B2D584;
  display: inline-block;
  padding: 5px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 80%;
}

.blog_li_ti a {
  color: black
}

.blog_li_ti a:hover {
  color: #C31633;
  text-decoration: none;
}



.go_to_b{
  text-align: center;
}

.bdr01{
  text-align: center;
  display: inline-block;
  padding: 20px 30px;
  margin: 0;
  border: solid 2px #C31633;
  position: relative;
  color: black;
  margin: 20px auto;
}

.bdr01:after{
  content: "";
  border: solid 2px #C31633;
  position: absolute;
  top: 6px;
  left: 6px;
  width: 103%;
  height: 103%;
}

.bdr01 span{
  padding-top: 5px;
}

.bdr01:hover{
  background-color: #C31633;
  color: #ffffff;
  text-decoration: none;
}


    /*============================================================================================
    ↓index_ページリンク==============================================================================
    ============================================================================================*/

.locationWrap {
    overflow: hidden;
	list-style:none;
	padding:0;
	margin:0;
}


.locationWrap li {
	float: left;
    width: 49%;
	margin:2% 2% 0 0;
}

.locationWrap li:nth-child(2n) {
    margin:2% 0 0 0;
}


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

.locationWrap li {
	float: left;
    width: 32.3%;
	margin:1% 1% 0 0;
}
.locationWrap li:nth-child(2n) {
    margin:1% 1% 0 0;
}
.locationWrap li:nth-child(3n) {
    margin:1% 0 0 0;
}
}

/* @media screen and (max-width: 768px) {
.locationWrap li,
.locationWrap li:nth-child(3n) {
    width: 50%;
}
}
@media screen and (max-width: 480px) {
.locationWrap li,
.locationWrap li:nth-child(3n) {
    width: 100%;
}
} */


.locationWrap li a:link,
.locationWrap li a:visited {
	position:relative;
	display:block;
	text-align:center;
	overflow:hidden;
	transition:all 0.3s ease 0s;
}


.locationWrap li a img {
	width:100%;
	height:auto;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
	transition:all 0.4s ease 0s;
  filter: brightness(40%) blur(1px);
}
.locationWrap li a:hover img {
	transform:scale(1.05);
  filter: none;

}



.page_to{
  position: relative;
}

.page_to_tt{
  position: absolute;
  top: 50%;
  left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  font-size: 1.2em;
	font-feature-settings: 'pkna';
  line-height: 1.4;
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  .page_to_tt{
    font-size: 1.5em;
  letter-spacing: 0.1em;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}



.li_top_2 {

}

.li_top_2 li{
  width: 100%;
  position: relative;
}

@media screen and (min-width: 768px) {
  .li_top_2 li{
    width: 49%;
    float: left;
  }
}






/*============================================================================================
↓index_ページリンク==============================================================================
============================================================================================*/



/*縦書き 左配置*/
.ttlStyle-vertical-left {
	color:rgba(255,255,255,1);
	font-weight:normal;
	position:absolute;
	top:40px;
	left:5%;
	z-index:2;
  font-size:120%;
}
.ttlStyle-vertical-left .ttl-ja {
	display:block;
	padding:0 20px;
}
.ttlStyle-vertical-left .ttl-en {
	font-size:50%;
	display:block;
	margin:0 10px;
	padding:0 10px;
	border-right:solid 1px rgba(255,255,255,1);
}
@media screen and (max-width: 768px) {
.ttlStyle-vertical-left {
	text-align:center;
	color:rgba(0,0,0,1);
	position:inherit;
	top:inherit;
	left:inherit;
	margin:20px auto;
  font-size:100%;
}
.ttlStyle-vertical-left .ttl-ja {
	padding:10px 0;
	text-align: center;
}
.ttlStyle-vertical-left .ttl-en {
	display:inline;
	text-align:center;
	margin:0;
	padding:10px 0 0;
	border-right:none;
	border-top:solid 1px rgba(0,0,0,1);
}
}

/*google map*/
.gmap {
height: 0;
overflow: hidden;
padding-bottom: 56.25%;
position: relative;
margin-top: 80px;
}

@media screen and (min-width: 768px) {
  .gmap {
  padding-bottom: 30%;
  }

.gmap {
margin-top: 50px;
}
}

.gmap iframe {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
}

/*footer*/
#footer{
  font-size: 120%;
  border-top: 2px solid #B39E17;
}

.footer_navi{
  display: none;
}

@media screen and (min-width: 768px) {
  .footer_navi{
    display: block;
    display: flex;
  }

  .footer_navi li{
    margin-right: 27px;
  }
  .footer_navi li:last-child{
    margin-right: 0px;
  }

}


.p_center{
  text-align: center;
}

.footer_logo img{
  width: 150px;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .footer_logo img{
    margin-top: 50px;
    width: 180px;
  }
  }
/*SNSリンク*/
#footer .snsListWrap {
	margin:20px auto;
	list-style:none;
	padding:0;
}
#footer .snsListWrap li {
	display:inline-block;
	margin:0 5px;
}
#footer .snsListWrap li a:link,
#footer .snsListWrap li a:visited {
	width:40px;
	height:40px;
	display:block;
	border:solid 1px rgba(255,255,255,0.5);
	box-sizing:border-box;
	border-radius:50%;
	transition: all 0.3s ease 0s;
}
#footer .snsListWrap li a:hover {
	background-color:rgba(255,255,255,0.2);
}
#footer .snsListWrap li img {
	width:100%;
	height:auto;
}

.f_info{
  margin-top: 20px;
  line-height: 1.8;
}

.footer_tel{
  font-size: 1.5em;
  margin-bottom: 10px;
}
.address{
  text-align: center;
  padding-top: 20px;
padding-bottom: 30px;
}
/*============================================================================================
↓追加2023.9.1==============================================================================
============================================================================================*/

.banner_sp {
  margin-top: 100px;
	max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 500px) {
  .banner_sp {
    display: none;
  }
}

.banner_pc {
  display: none;
}

@media screen and (min-width: 500px) {
  .banner_pc {
    display: block;
    max-width: 700px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
  }
}