@charset "UTF-8";

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/* 大枠 */
html,
body {
	height: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: none;
	-webkit-overflow-scrolling: touch !important;
	-moz-osx-font-smoothing: grayscale;
}
body {
	font-size: 16px;
	line-height: 1.6;
	word-break: break-all;
}
#wrapper {
	width: 100%;
	margin: 0 auto;
	position: relative;
}
body > #wrapper {
	height: auto;
}
.clearfix:after {
	visibility: hidden;
	display: block;
	content: " ";
	clear: both;
	height: 0;
}
.red_box{
	border: 1.5px solid red;
	background-color: #fff;
	padding: 20px;
}
@media print {
	html,
	html body{overflow: visible !important;}
}

/* アクセシビリティ */
.guidance {
	left:-999px;
	position:absolute;
	width:990px;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	pointer-events: none;
} /* レスポンシブ対応 */
img {
	vertical-align: bottom;
	box-shadow: #000 0 0 0; /* ロールオーバー対応 */
}
img,
x:-moz-any-link,
x:default {
	box-shadow: #000 0 0 0; /* IE7対応 */
}

/* リンク */
a{
	display: inline-block;
}
a:link,
a:visited,
a:active {
	color: inherit;
	text-decoration: none;
}
a:hover {
	color: inherit;
	opacity: .7;
	text-decoration: none!important;
}

.Gothic{
	font-family: 'Noto Sans JP', sans-serif;
	position: relative;
	font-weight: normal;
}

/* CLEARFIX */
.container:after,
.row:after,
.col:after {
	content: "";
	display: table;
	clear: both;
}

.container {
	width: 100%;
	max-width: 1030px;
	padding: 0 15px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.pc {display: block;}
.sp {display: none;}


#screen {
	display: none;
}

/* フローティングバナー */
.float_bnr{
	position: fixed;
	width: 90px;
	right: 0;
	top: 150px;
	z-index: 100;
}
.float_bnr .sp_f_fb {
	display: none;
}
/* ▼ タイトル
--------------------------------------- */
#site_title {
	overflow: hidden;
}

.title_wrap{
	display: table;
	height: 170px;
	width: 100%;
}
	.title_wrap .title{
		display: table-cell;
		vertical-align: middle;
		color: #fff;
		font-size: 26px;
		font-weight: 500;
		text-align: center;
		letter-spacing: .075em;
	}

.title_02{
	font-size: 28px;
	margin: 0 0 25px;
	letter-spacing: .1em;
}

.inner_title{
	border: 1px solid #000;
	max-width: 300px;
	width: 100%;
	padding: 16px 10px;
	margin: 0 auto 50px;
	font-size: 26px;
	text-align: center;
	letter-spacing: .1em;
}


/* 多言語ボタン */
.lang{
	width: 45px;
	margin: 0 25px;
	font-size: 14px;
	font-weight: 500;
	flex-shrink: 0;
	cursor: pointer;
	position: relative;
}
.lang p{
	display: block;
	background: #000;
	padding: 2px 0;
	color: #fff;
	text-align: center;
}
.lang ul{
	display: none;
	width: 100%;
	position: absolute;
	top: 100;
	left: 0;
}
.lang ul li{
	text-align: center;
	background: #000;
	color: #fff;
}
.lang ul li a{
	background: #E8E8E8;
	display: block;
	height: 100%;
	padding: 2px 0;
	color: #000;
}

/* ▼▼▼ ヘッダー
====================================================== */
header {
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 90px;
	padding: 0 25px;
	position: fixed;
	top: 0;
	z-index: 2000;
}

.menu {display: none;}

/* グローバルナビゲーション */
#gnav {
	margin: 0 25px 0 auto;
	font-size: 14px;
	font-weight: 500;
}
	#gnav ul {
		display: flex;
		width: 100%;
		/* flex-wrap: wrap; */
	}
	#gnav .main_nav.en{
		flex-wrap: wrap;
		margin-left: 30px;
	}
	#gnav ul.main_nav > li {
		text-align: center;
		line-height: 1.3;
	}

	#gnav ul > li a {
		display: block;
		text-decoration: none;
	}

	#gnav ul > li:nth-child(2) a{
		position: relative;
	}

	#gnav ul > li a:hover {
		-ms-filter: "alpha(opacity=60)";
		-moz-opacity:0.6;
		-khtml-opacity: 0.6;
		opacity: 0.6;
	}

#gnav ul.main_nav > li > span{
	display: inline-block;
	position: relative;
}
#gnav ul.main_nav > li > span a,
#gnav ul.main_nav > li.hover_open span{
	padding: 36px 20px;
	transition: all .2s ease-in;
	cursor: pointer;
	/* padding: 10px 20px; */
}
/* #gnav ul.main_nav > li.hover_open.active span{
	padding: 36px 20px;
} */
#gnav ul.main_nav > li > .en_header_span a{
	padding: 10px 20px;
}
#gnav ul.main_nav > li:not(:first-child) span::before{
	content: "";
	border-right: 1px solid #000;
	height: 18px;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	left: 0;
}
.sub_nav_wrap{
	display: none;
	background: rgba(255,255,255,.9);
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 2;
	width: 100%;
}
	.sub_nav{
		justify-content: center;
		max-width: 1040px;
		padding: 20px;
		margin: 0 auto;
		height: 170px;
	}
	.sub_nav li{
		width: 18%;
	}
	.sub_nav li:not(:first-child){
		margin-left: 3%;
	}
	.sub_nav li a .txt{
		margin-top: 10px;
		color: #000;
		text-align: center;
		font-weight: 500;
	}
	.sub_nav li a[target="_blank"] .txt::after{
		content: "";
		display: inline-block;
		background: url(../img/icon_blank_bk.png) no-repeat center/contain;
		width: 11px;
		height: 11px;
		margin-left: 8px;
	}
	.hover_open:hover .sub_nav_wrap{
		display: block;
	}
	.hover_open.active span::after{
		content: "";
		border-bottom: 4px solid #A38420;
		width: 100px;
		position: absolute;
		transform: translateX(-50%);
		left: 50%;
		bottom: -1px;
		opacity: 1;
	}
	header .head_fb {
		width: 40px;
	}
	header .head_fb img {
		width: 100%;
	}
	@media screen and (max-width: 1280px) {
		header .head_fb {
			margin-right: 20px;
			width: 30px;
		}
	}

		/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main {
	margin: 90px auto 0;
	clear: both;
	overflow: hidden;
}

body:not(#home) #main{
	background: url(../img/bg_gry.png) repeat center/130px;
	padding-bottom: 100px;
}

.read{
	margin: 0 0 30px;
}
.read_txt{
	margin: 0 0 70px;
}
.t-start{
	text-align: start !important;
}
.txt_vertical{
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

.more_view{
	display: table;
	max-width: 230px;
	width: 100%;
	height: 70px;
}
	.more_view a{
		display: table-cell;
		border: 1px solid #fff;
		vertical-align: middle;
		height: 100%;
		color: #fff;
		font-size: 16px;
		text-align: center;
		position: relative;
	}
	.more_view a::after{
		content: "";
		border-top: 1px solid #fff;
		width: 14px;
		position: absolute;
		top: 34px;
		right: 0;
	}

.inner{
	padding: 100px 0;
}
.inner:last-of-type{
	padding-bottom: 0;
}
.flex_box{
	display: flex;
	padding-bottom: 100px;
}
	.photo_list{
		max-width: 410px;
		width: 100%;
		flex-shrink: 0;
		margin-left: 65px;
	}
	.photo_list li{
		margin: 0 0 30px;
	}

.map_more a{
	text-decoration: underline;
}
	.map_more a:hover{
		text-decoration: none;
		opacity: 1;
	}

/* ▼ パンくず
--------------------------------------- */
#path {
	margin: 20px 0 55px;
	font-size: 14px;
	overflow: hidden;
}
	#path li {
		float: left;
	}
	#path li:not(:last-child):after {
		content: ">";
		margin: 0 5px;
		color: #333;
	}

/* 宿泊プランバナー
--------------------------------------- */
.bnr{
	max-width: 700px;
	width: 100%;
	padding: 70px 15px 0;
	margin: 0 auto;
}

/* お問い合わせボタン
--------------------------------------- */
.contact_area{
	display: flex;
	justify-content: center;
	background: url(../img/bg_grn.png) repeat center/130px;
	padding: 90px 0;
	width: 100%;
}
.contact_area ul{
	display: flex;
	justify-content: center;
}
.contact_area ul li{
	width: 380px;
}
.contact_area ul li:not(:last-of-type){
	margin-right: 25px;
}
	.contact_area .more_view{
		margin: 0;
		width: 100%;
		max-width: 100%;
		height: 87px;
		font-weight: 600;
	}
	.contact_area .more_view a{
		border-color: #725D1D;
		background: #725D1D;
		font-size: 20px;
	}
	.contact_area .more_view a::after{
		top: 42px;
	}
	.contact_area li span{
		display: block;
		text-align: center;
		color: #fff;
		margin-top: 10px;
	}
	.contact_area li span a{
		text-decoration: underline;
	}
	.contact_area li span a:hover{
		text-decoration: none;
	}

/* ▼▼▼ フッター
===================================== */
footer {
	width: 100%;
	background: url(../img/f_bg.jpg) no-repeat center/cover;
	padding: 65px 0;
	clear: both;
	color: #fff;
	font-weight: 500;
	}
	footer a{
		color: #fff;
	}
	
footer .container{
	overflow: inherit;
}

#footer_inner {
	display: flex;
	justify-content: space-between;
	width: 60%;
	margin: 0 0 30px auto;
}
	#footer_inner ul li:not(:last-child){
		margin-bottom: 10px;
	}
	#footer_inner ul li a[target="_blank"]::after{
		content: "";
		display: inline-block;
		background: url(../img/icon_blank.png) no-repeat center/contain;
		width: 11px;
		height: 11px;
		margin-left: 8px;
	}

#copyright {
	font-size: 12px;
	text-align: right;
}


/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 2000;
	cursor: pointer;
}

/* ▼ コピーライト
--------------------------------------- */

/* ▼▼▼ 1180px
======================================================*/
@media screen and (max-width: 1280px) {
	#site_title{
		max-width: 241px;
		width: 18vw;
	}
	#gnav{
		margin-right: 10px;
		font-size: 13px;
	}
	#gnav ul.main_nav > li > span a,
	#gnav ul.main_nav > li.hover_open span{
		/* padding: 36px 10px; */
		padding: 10px;
	}
	#gnav .main_nav.en{
		margin-left: 0;
	}
	header .lang{
		margin: 0;
	}
}


/* ▼▼▼ 480px〜768px
====================================================== */
@media screen and (max-width: 768px) {

	body{
	}
	body.wrap {
		overflow: hidden;
	}


	#wrapper {width: 100%;}
	#screen {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background-color:rgba(0,0,0,0.8);
		z-index: 200;
	}
	.menu_fixed {
		position: fixed;
		width: 100%;
		height: 100%;
	}
	.pc {display: none;}
	.sp {display: block;}

	/* フローティングバナー */
	.float_bnr{
		font-size: 0;
		width: 100%;
		right: 0;
		top: auto;
		bottom: 0;
		z-index: 100;
	}
	.float_bnr{
		display: flex;
	}
	.float_bnr .sp_f_fb {
		display: block;
		width: 150px;
	}	


	/* ▼タイトル
	--------------------------------------- */
	#site_title {
		overflow: hidden;
		margin-left: 10px;
		width: calc(100% - 182px);
	}

	.title_wrap{
		height: 130px;
	}
		.title_wrap .title{
			font-size: 24px;
		}

	.inner_title{
		max-width: 100%;
		width: calc(100vw - 30px);
		margin: 0 auto 25px;
		font-size: 22px;
	}

	.title_02{
		font-size: 20px;
		margin: 0 0 10px;
	}

	/* ▼▼▼ ヘッダー
	====================================================== */
	header {
		width: 100%;
		height: 80px;
		padding: 0;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9999;
		overflow: visible;
	}

	.header_inner {
		display: flex;
		align-items: center;
		width: 100%;
		background: #fff;
		height: 80px;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9999;
	}

	/* ▼ グローバルナビゲーション
	--------------------------------------- */
	#gnav {
		display: block!important;
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
		float: none;
		width: 100%;
		max-height: 100vh;
		padding-top: 80px;
		margin: 0;
		position: absolute;
		top: -1000px;
		left: 0;
		z-index: 1000;
		overflow: auto;
		color: #fff;
		font-size: 16px;
		font-weight: 500;
	}
		#gnav.open {
			-moz-transform: translateY(1000px);
			-webkit-transform: translateY(1000px);
			transform: translateY(1000px);
		}
		#gnav > ul {
			background: #000;
			display: block;
		}
		.main_nav{
			margin-bottom: 120px;
		}
		#gnav > ul > li {
			width: 100%!important;
			max-width: 100%!important;
			height: auto;
			text-indent: 0;
			border-bottom: 1px solid #707070;
		}
		#gnav ul > li > a {
			height: 70px!important;
			background-size: 10px 10px!important;
			padding: 0 15px;
			color: #fff;
			line-height: 70px;
		}
		#gnav ul.main_nav > li > a{
			padding: 0 15px;
		}
		#gnav ul > li > a:hover {
			text-decoration: none;
			opacity: 1;
		}
		#gnav ul.main_nav > li > span.pc,#gnav ul.main_nav > li > a.pc{
			display: none;
		}
		#gnav ul.main_nav > li > span{
			width: 100%;
			text-align: center;
		}
		#gnav ul.main_nav > li > span a{
			padding: 0 15px;
			height: 70px;
			line-height: 70px;
		}

	#gnav ul.main_nav > li{
		padding: 0;
	}

	.nav_open{
		height: 70px;
		line-height: 70px;
		text-align: center;
	}
	.sub_nav_wrap{
		background: #000;
		display: block;
		position: static;
	}
		.sub_nav{
			display: flex;
			flex-wrap: wrap;
			padding: 0;
			height: auto;
		}
		.sub_nav li{
			width: 50%;
			border-top: 1px solid #707070;
		}
		#gnav ul.main_nav > li.hover_open .sub_nav li:first-child{
			border-top: none;
			width: 100%;
			border-right: 0;
		}
		.sub_nav li:nth-child(2n){
			border-right: 1px solid #707070;
		}
		.sub_nav li:not(:first-child){
			margin: 0!important;
		}
		.sub_nav li a[target="_blank"] .txt::after{
			background: url(../img/icon_blank.png) no-repeat center/contain;
		}
		.sub_nav li a p:not(.txt){
			display: none;
		}
		.sub_nav li a .txt{
			color: #fff;
			margin: 0;
		}

	/* ▼メニューボタン
	--------------------------------------- */
	.menu {
		display: block;
		width: 80px;
		height: 80px;
		background: #000;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 2000;
	}
		.menu .icon {
			display: block;
			width: 30px;
			height: 1px;
			border-top: 1px solid #fff;
			position: absolute;
			top: 35%;
			right: 23px;
			-moz-box-sizing: border-box;
			-webkit-box-sizing: border-box;
			box-sizing: border-box;
			-moz-transition: all 0.3s;
			-webkit-transition: all 0.3s;
			transition: all 0.3s;
		}
		.menu .icon:before,
		.menu .icon:after{
			content: '';
			width: 30px;
			border-top: 1px solid #fff;
			position: absolute;
			-moz-transition: all 0.3s;
			-webkit-transition: all 0.3s;
			transition: all 0.3s;
			right: 0;
		}
		.menu .icon:before {
			top: -9px;
		}
		.menu .icon:after {
			bottom: -8px;
		}
		.menu .icon.active {
			border-color: #000;
		}
		.menu .icon.active:before {
			-moz-transform: rotate(-150deg);
			-webkit-transform: rotate(-150deg);
			transform: rotate(-150deg);
			top: -1px;
			right: 0;
		}
		.menu .icon.active:after {
			-moz-transform: rotate(150deg);
			-webkit-transform: rotate(150deg);
			transform: rotate(150deg);
			bottom: 0;
			right: 0;
		}
		.menu .icon span:before{
			content: "MENU";
			color: #fff;
			font-size: 14px;
			font-weight: 500;
			position: absolute;
			left: 50%;
			bottom: -36px;
			transform: translate(-50%,-0%);
			-webkit-transform: translate(-50%,-0%);
			word-break: keep-all;
		}
		.menu .icon.active span:before{
			content: "CLOSE";
		}

	header .lang{
		background: #383838;
		margin: 0 80px 0 auto;
		position: relative;
		z-index: 9999;
		color: #fff;
		font-size: 14px;
		font-weight: 500;
	}
		header .lang{
			width: 80px;
			height: 80px;
		}
		header .lang > p{
			background: url(../img/icon_lang.svg) no-repeat center 17px/24px;
			padding-top: 42px;
			text-align: center;
		}
		header .lang ul{
			display: none;
			width: 100%;
			position: absolute;
			top: 100%;
		}
		header .lang ul li{
			background: #656565;
			display: table;
			width: 100%;
			height: 39px;
			line-height: 39px;
		}
		header .lang ul li:first-child{
			border-bottom: 1px solid #777;
			position: relative;
		}
		header .lang ul li:first-child::before{
			content: "";
			width: 0;
			height: 0;
			border-style: solid;
			border-width: 0 4px 8px 4px;
			border-color: transparent transparent #656565 transparent;
			position: absolute;
			transform: translateX(-50%);
			top: -8px;
			left: 50%;
		}
		header .lang ul li a{
			background: #656565;
			height: 100%;
			color: #fff;
		}

	/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
	====================================================== */
	#header_inner,
	#main,#contents,#side,
	footer,#footer_inner {
		float: none;
		width: 100%;
		}
	#main {
		margin-top: 80px;
	}

	.read{
		margin: 0 0 15px;
	}
	.read_txt{
		margin: 0 0 50px;
	}

	.more_view{
		display: table;
		max-width: 270px;
		width: 100%;
		height: 70px;
	}

	.inner{
		padding: 70px 0;
	}
	.flex_box{
		display: block;
		padding-bottom: 70px;
	}
		.photo_list{
			width: 100%;
			flex-shrink: 0;
			margin-left: 0;
		}
		.photo_list li{
			margin: 50px 0 0;
		}

	/* ▼ パンくず
	--------------------------------------- */
	#path {
		margin-bottom: 40px;
		font-size: 14px;
	}

	/* 宿泊プランバナー
	--------------------------------------- */
	.bnr{
		padding: 40px 15px 0;
	}

	/* お問い合わせボタン
	--------------------------------------- */
	.contact_area{
		display: block;
		padding: 40px 0;
	}
	.contact_area ul{
		display: block;
	}
	.contact_area ul li{
		width: 100%;
		margin: 0 auto;
	}
	.contact_area ul li:not(:last-of-type){
		margin: 0 auto 25px;
	}
		.contact_area .more_view{
			margin: 0 auto;
			max-width: 270px;
		}

	/* ▼▼▼ フッター
	====================================================== */
	footer{
		background: url(../img/f_bg_sp.jpg) no-repeat center/cover;
		padding: 60px 0 150px;
	}
	footer .container{
		padding: 0;
	}
	#footer_inner{
		display: block;
		max-width: 326px;
		padding: 0 15px;
		margin: 0 auto 50px;
		position: relative;
	}
	#footer_inner ul:not(:last-of-type){
		margin-bottom: 20px;
	}
	.icon_fb{
		position: absolute;
		right: 0;
		bottom: 0;
	}
	#copyright{
		text-align: center;
	}

	/* ▼ ページ上部へ戻る
	--------------------------------------- */
	.pagetop {
		width: 65px;
		right: 5px;
		bottom: 80px;
	}

}
