@charset "utf-8";
/* CSS Document */
/*--------------- ハンバーガーメニュー ---------------*/
header {
	width: 100%;
	background-color: #fff;
	margin: 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 801;
}
header a:link,
header a:visited,
header a:hover,
header a:active {
	color: #53585a;
	text-decoration: none;
}
header a.en:link,
header a.en:visited,
header a.en:hover,
header a.en:active {
	color: #fff;
	text-decoration: none;
}

header > div {
	width: 100%;
	height: 74px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center; /*横*/
	align-items: center; /*縦*/
	background-color: #fff;
	margin: 0 auto;
}
header > div > div {
	box-sizing: border-box;
}
header > div > div:nth-of-type(1) { /*ロゴ*/
	width: 160px;
	height: 48px;
	text-align: left;
}
	header > div > div:nth-of-type(1) > a > img {
		width: auto;
		height: 100%;
	}
header > div > div:nth-of-type(2) { /*ホテル名*/
	flex: 1;
}
header > div > div:nth-of-type(2) > h1 { /*ホテル名*/
	font-size: 16px;
	text-align: left;
	padding: 0!important;
}
header > div > div:nth-of-type(3) { /*SNS・facebook*/
	width: 60px;
	height: 24px;
}
	header > div > div:nth-of-type(3) > a > img {
		width: auto;
		height: 100%;
	}
header > div > div:nth-of-type(4) { /*SNS・X*/
	width: 60px;
	height: 24px;
}
	header > div > div:nth-of-type(4) > a > img {
		width: auto;
		height: 100%;
	}
header > div > div:nth-of-type(5) { /*SNS・Instagram*/
	width: 60px;
	height: 24px;
}
	header > div > div:nth-of-type(5) > a > img {
		width: auto;
		height: 100%;
	}
header > div > div:nth-of-type(6) { /*SNS・LINE*/
	width: 60px;
	height: 24px;
}
	header > div > div:nth-of-type(6) > a > img {
		width: auto;
		height: 100%;
	}
header > div > div:nth-of-type(7) { /*English*/
	width: 150px;
}
	header > div > div:nth-of-type(7) > a {
		font-size: 15px;
		color: #fff;
		background-color: #53585a;
		padding: 3px 16px;
		box-sizing: border-box;
	}
header > div > div:nth-of-type(8) { /*English*/
	width: 120px;
}

@media screen and (min-width:768px) and (max-width:1024px) {
	header > div {
		width: 100%;
		min-width: inherit;
		max-width: 980px;
	}
	
}
	@media only screen and (max-width: 768px) {
		header > div {
			width: 100%;
			min-width: 100%;
			max-width: 100%;
			height: 80px;
		}
		header > div > div:nth-of-type(1) { /*ロゴ*/
			width: 30%;
		}
		header > div > div:nth-of-type(2) { /*ホテル名*/
			display: none;
		}
		header > div > div:nth-of-type(3) { /*SNS・facebook*/
			display: none;
		}
		header > div > div:nth-of-type(4) { /*SNS・X*/
			display: none;
		}
		header > div > div:nth-of-type(5) { /*SNS・Instagram*/
			display: none;
		}
		header > div > div:nth-of-type(6) { /*SNS・LINE*/
			display: none;
		}
		header > div > div:nth-of-type(7) { /*English*/
			width: 50%;
			text-align: right;
		}
		header > div > div:nth-of-type(8) { /*English*/
			width: 20%;
		}
	
	}

nav a:link,
nav a:visited,
nav a:hover,
nav a:active {
    color: #fff!important;
    text-decoration: none!important;
}

/* コンテンツの設定 */

/* ハンバーガーメニューを右上に表示させる */
#navi_btn {
    display: block;
    width: 30px;
    position: fixed;
    text-align: center;
	top: 5px;
	right: 25px;
	z-index: 999;
}
/*@media only screen and (min-width: 1920px) {
	#navi_btn {
		right: 27%;
	}
}
@media screen and (min-width:1680px) and (max-width: 1920px) {
	#navi_btn {
		right: 27%;
	}
}
@media screen and (min-width:1536px) and (max-width: 1680px) {
	#navi_btn {
		right: 25%;
	}
}
@media screen and (min-width:1385px) and (max-width: 1536px) {
	#navi_btn {
		right: 22%;
	}
}
@media screen and (min-width:1280px) and (max-width: 1385px) {
	#navi_btn {
		right: 15%;
	}
}
@media screen and (min-width:1050px) and (max-width: 1280px) {
	#navi_btn {
		right: 13%;
	}
}
@media screen and (min-width:768px) and (max-width:1050px) {
	#navi_btn {
		right: 20px;
		}
}
*/

/* スクリーンリーダー用のテキストを非表示 */
.sr-only {
    border: 0;
    position: absolute;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
}

/* ナビゲーションボタン */
span.menutit {
	display: inline-block;
	font-size: 12.5px;
	padding-bottom: 10px;
}

.nav-button {
    box-sizing: content-box;
    padding: 0px;
    margin: 0px;
    border: none;
    outline: none;
    background: none;
    width: 40px;
    height: 30px;
    cursor: pointer;
    color: #53585a;
}

.nav-button::before {
    content: '';
    display: block;
    height: 2px;
    background-color: currentColor;
    transform: translateY(5px);
    transition: 0.3s ease-in-out;
}
.nav-button::after {
    content: '';
    display: block;
    height: 2px;
    background-color: currentColor;
    transform: translateY(5px);
    transition: 0.3s ease-in-out;
}

.nav-button::before {
    transform: translateY(-15px);
    box-shadow: 0 10px currentColor;
}

/* ナビゲーションメニュー：（閉じるボタン） */
.open .nav-button {
    z-index: 1000;
}

.open .nav-button::before {
    transform: rotate(-45deg);
    box-shadow: none;
	color: #fff;
	margin-bottom: -1.5px;
}

.open .nav-button::after {
    transform: rotate(45deg);
    box-shadow: none;
	color: #fff;
}

/* ナビゲーションメニュー：（閉じた状態） */
.nav {
    position: absolute;
    width: 0;
    height: 0;
    left: 100%;
    overflow: hidden;
    color: transparent;
    transition: 0.5s ease-in-out;
	z-index: 800;
}

/* ナビゲーションメニュー：（開いた状態） */
.open .nav {
    top: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    background: #53585a;
    color: #ffffff;
	z-index: 999;
	position: absolute;
}
.nav > div {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch; /*高さ揃え*/
	margin: 8% 10%;
}
.nav > div > div {
	width: 20%;
}

.nav > div > div > h3 {
	font-size: 16px;
	font-weight: 700;
	text-align: left;
	line-height: 300%;
	margin: 0;
}
.nav > div > div > h3:before {
	content: "";
	display: inline-block;
	background-image: url(/common/images/arrow_right.png);
	background-repeat: no-repeat;
	background-size:contain;
	width: 12px;
	height: 22px;
	vertical-align: sub;
	margin-right: 10px;
}
.nav > div > div > h3.nav_acdTtl {
		pointer-events: none;
}
.nav ul {
	margin-left: 20px;
}
.nav ul li {
	font-size: 15px;
	font-weight: 100;
	text-align: left;
	line-height: 250%;
}

.nav ul li:before {
	content: "-";
	display: inline-block;
	font-size: 15px;
	margin-right: 10px;
}

#spSNS{
	display: none;
}
@media only screen and (max-width: 768px) {
	#navi_btn {
		top: 1%;
		right: 5%;
	}
	.open .nav {
		height: 80vh;
		position: fixed;
		overflow-y: scroll;
	}
	.nav > div {
		display: block;
		width: 90%;
		flex-wrap: nowrap;
		align-items: stretch; /*高さ揃え*/
		margin: 5%;
		overflow-y: scroll;
	}
	.nav > div > div {
		width: 100%;
	}
	.nav > div > div > h3 {
		line-height: 250%;
	}
	.nav > div > div > h3.nav_acdTtl {
		pointer-events: auto;
	}
	.nav > div > div > h3.nav_acdTtl > a {
		pointer-events: none;
	}
	.nav_acdTtl {
	  transition: 0.3s;
	  cursor: pointer;
	  position: relative;
	  overflow: hidden;
	}
	
	.nav_acdTtl::before {
	  	content: "";
		display: inline-block;
		background-image: url(/common/images/arrow_right.png);
		background-repeat: no-repeat;
		background-size:contain;
		width: 12px;
		height: 22px;
		vertical-align: sub;
		margin-right: 10px;
	}
	.nav_acdTtl.active::before {
	  background-image: url(/common/images/arrow_down.png);
	}
	.nav_acdTtl + .nav_acdContent {
	  display: none;
	}
	.nav_acdContent.language,
	.language {
		display: none;
	}
	#spmenuToggle {
		display: block;
	}
	#spSNS {
		display: flex;
		flex-wrap: wrap;
		width: 90%;
		margin: 1% auto 5%;
	}
	#spSNS > div {
		width: fit-content;
		height: auto;
		background-color: #fff;
		border-radius: 50%;
		margin-right: 5%;
		padding: 3%;
	}
	#spSNS > div:last-of-type {
		flex:1;
		background-color: transparent;
	}
	#spSNS > div > a {
		display: block;
	}
	#spSNS > div > a > img {
		width: 30px;
		height: 30px;
	}
}

/* shutto導入_250729 */
header > div > div:nth-of-type(7) > span {
	font-size: 15px;
	color: #fff;
	background-color: #53585a;
	padding: 3px 16px;
	box-sizing: border-box;
}
.language-select {
	display: inline-block;
    position: relative;
}
.language-select > span {
	font-weight: bold;
	display: inline-block;
	padding: 20px 0;
	cursor: pointer;
}
.language-select .language-select-inner {
	position: absolute;
	visibility: hidden;
	box-sizing: border-box;
	width: 90px;
	padding-top: 15px;
	transition: opacity .25s ease-in-out, transform .25s ease-in-out;
	transform: translateY(-4px);
	text-align: center;
	opacity: 0;
	top: 24px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.language-select .language-select-inner ul {
	border: 1px solid #333;
	border-radius: 4px;
	background-color: #fff;
	padding: 15px 0;
}
.language-select .language-select-inner ul:before {
    position: absolute;
    top: 9px;
    left: 50%;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 0 0 -8px;
    content: '';
    background-color: #FFF;
    transform: rotate(45deg);
    border-top: 1px solid #333;
    border-left: 1px solid #333;
}
.language-select .language-select-inner ul li {
	margin: 10px 0 0;
    font-size: 12px;
	line-height: 1.5;
}
.language-select .language-select-inner ul li:first-child {
	margin: 0;
}

@media only screen and (min-width: 769px) {
	.language-select > span:hover {
		text-decoration: underline;
	}
	.language-select > span:hover + .language-select-inner,
	.language-select > span + .language-select-inner:hover {
		visibility: visible;
		transform: translateY(0);
		opacity: 1;
	}
	.language-select .language-select-inner ul li a:hover {
		text-decoration: underline;
	}
}
@media only screen and (max-width: 768px) {
	.language-select .language-select-inner {
	    width: 102px;
		top: 28px;
        left: unset;
	}
	.language-select > span.active {
		text-decoration: underline;
	}
	.language-select > span.active + .language-select-inner,
	.language-select > span + .language-select-inner.active {
		visibility: visible;
		transform: translateY(0);
		opacity: 1;
	}
	.language-select .language-select-inner ul li a.active {
		text-decoration: underline;
	}
}
/* /shutto導入_250729 */