@charset "utf-8";
/*--- CSS Variables ---*/
:root {
  /* color */
  --color-primary: #103167;
  --color-secondary: #536c93;
  --color-bg: #f2f7fa;
  --color-fg: #103167;
  --color-accent: #fff;

  /* font */
  --font-family-base: "Noto Serif JP", "Newsreader", serif;
  --font-family-point:  "Cormorant Garamond", "Noto Serif JP",serif;
  --font-size-base: clamp(0.75rem, 0.695rem + 0.22vw, 0.875rem);
  --line-height-base: 1.8;
  --letter-spacing-base: .25em;

  /* margin, size */
  --spacing-xxs: clamp(8px, calc(8px + (16 - 8) * ((100vw - 390px) / (1280 - 390))), 16px);
  --spacing-xs: clamp(16px, calc(16px + (32 - 16) * ((100vw - 390px) / (1232 - 390))), 32px);
  --spacing-sm: clamp(32px, calc(32px + (48 - 32) * ((100vw - 390px) / (1280 - 390))), 48px);
  --spacing-md: clamp(36px, calc(36px + (56 - 36) * ((100vw - 390px) / (1280 - 390))), 56px);
  --spacing-lg: clamp(48px, calc(48px + (88 - 48) * ((100vw - 390px) / (1280 - 390))), 88px);
  --radius-base: 2rem;
  --max-width: 810px;

  /* modern property */
  --shadow-elevated: 0px 2px 4px hsl(0 0% 0% / 0.7);
  --transition-base: .5s ease-in-out;
  --container-max-width: min(92%, 1000px);
  --blur-base: blur(10px);

  /* SP burger */
  --bar-width: 30px;
  --bar-height: 2px;
  --bar-gap: 10px;
  --bar-color: #fff;
  --bar-bg: rgb(15 50 105 / .9);
}
/*----HTML再定義--------------------------------------------------*/
/*全ての要素のマージンを0にする*/
* { margin: 0;  padding: 0 }
html{
	font-size: 62.5%;
	margin:0!important;
	padding:0!important;
	height : 100%;
	scroll-behavior: smooth;
}
body {
	max-width:100%;
	position: relative;
	font-size: 1.4rem;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	overflow-x: hidden;
	-webkit-text-size-adjust:100%;
	word-wrap:break-word;
	color: #000;
	margin:auto!important;
}

/*LinkBasic*/
a { text-decoration: none; color: #000}
a:hover { text-decoration: none;}
a:visited { text-decoration: none;}
img {
	width: 100%;
	display: block;
	object-fit: contain;
}

/* flexbox */
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
}

/* 回り込み解除 */
.clearfix::before {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}
.clearfix::after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}
*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
input, textarea, select{

}
/* 回り込み解除 */

section + section {
	margin-top: 50px;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
/* タブレット */
@media (max-width: 1024px) and (min-width: 768px) {

}
/* タブレット 横*/
@media (max-width: 1024px) and (min-width: 768px) and (orientation: landscape) {

}
/* SP */
@media (max-width: 767px) {
	html{
	font-size: 62.5%;
	}
	body {
	width:100%;
	font-size: 1.4rem;
	overflow-x: hidden;
	-webkit-text-size-adjust:100%;
	word-wrap:break-word
	}

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


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

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

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


header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1;
}
.header_inner {
	align-items: center;
	justify-content: space-between;
}
header h1 img {
	position: absolute;
	top: 10px;
	left: 20px;
	max-width: 200px;
	z-index: 9999;
}
.header_nav_wrapper {
	flex-direction: row;
}
/* PC */
@media print, screen and (min-width: 769px) {
}
/* Tablet, SP */
@media print, screen and (max-width: 768px) {
}



/*********** nav ***********/
header {
	animation: bugfix infinite 1s;
	-webkit-animation: bugfix infinite 1s;
}
#header_nav_wrapper {
	height: 60px;
	transition: .5s;
}
#header_nav_wrapper.is-show {
	background: rgba(71, 74, 77, .7);
}
@keyframes bugfix {
	from {
		padding: 0;
	}
	to {
		padding: 0;
	}
}
@-webkit-keyframes bugfix {
	from {
		padding: 0;
	}
	to {
		padding: 0;
	}
}
#language_wrapper {
	display: none;
	position: absolute;
	top: 0;
	width: 120px;
	height:  60px;
	z-index: 5;
}
#header_sns_btn {
	position: absolute;
	top: 0;
	width: 60px;
	height: 60px;
	z-index: 5;
}
#header_sns_btn a {
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	width: 100%;
	height: 100%;
}
/* PC */
@media print, screen and (min-width: 769px) {
	#language_wrapper {
		right: 60px;
	}
	#header_sns_btn {
		right: 60px;
	}
	#header_revBtn {
		position: absolute;
		display: flex;
		align-items: center;
		top: 0;
		right: 120px;
		height: 60px;
		padding: 0 10px;
		font-size: 1.4rem;
		text-align: center;
		background-color: rgba(255,255,255,.8);
		z-index: 5;
	}
	#header_revBtn p {
		white-space: nowrap;
	}
	#header_revBtn a {
		margin-left: 10px;
		padding-left: 10px;
		border-left: 1px solid #999;
	}
}
/* Tablet, SP */
@media print, screen and (max-width: 768px) {
	#language_wrapper {
		right: 60px;
	}
	#header_sns_btn {
		right: 0;
	}
	#header_sns_btn a {
		color: #FFF;
	}
}

#language_wrapper .nowLang a {
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 1.8rem;
	color: #FFF;
	background: #000;
}
#language_wrapper .nowLang i {
	margin: 0 .5em;
}
.language {
	display: none;
	width: 100%;
}
.language ul li {
	border-top: 1px solid #333;
}
.language ul li a {
	align-items: center;
	justify-content: center;
	color: #FFF;
	background: #000;
	width: 100%;
	height: 50px;
	transition: .25s;
}
#overlay-button {
	z-index: 5;
	cursor: pointer;
	user-select: none;
}
/* PC */
@media print, screen and (min-width: 769px) {
	#overlay-button {
		position: absolute;
		right: 0;
		top: 0;
		width: 60px;
		height:  60px;
		padding: 26px 11px;
		cursor: pointer;
	}
	.language ul li a:hover {
		background: #474a4d;
	}
}
/* Tablet, SP */
@media print, screen and (max-width: 768px) {
	#overlay-button {
		position: fixed;
		bottom: 0;
		right: 0;
		width: calc(100% / 4);
		height: 50px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: space-between;
		padding: 15px 0 2px;
		font-size: 1.2rem;
	}
}
#overlay-button span.bar {
	height: 4px;
	width: 35px;
	background-color: #000;
	position: relative;
	display: block;
	transition: all .2s ease-in-out;
}
#overlay-button span.bar:before {
	top: -10px;
	visibility: visible;
}
#overlay-button span.bar:after {
	top: 10px;
}
#overlay-button span.bar:before, #overlay-button span.bar:after {
	height: 4px;
	width: 35px;
	background-color: #000;
	position: absolute;
	content: "";
	transition: all .2s ease-in-out;
}
input[type=checkbox] {
	display: none; 
}
input[type=checkbox]:checked ~ #overlay {
	visibility: visible; 
}
input[type=checkbox]:checked ~ #overlay-button:hover span.bar, input[type=checkbox]:checked ~ #overlay-button span.bar {
	background: transparent;
}
input[type=checkbox]:checked ~ #overlay-button span.bar:before {
	transform: rotate(45deg) translate(7px, 7px);
	background-color: #fff;
}
input[type=checkbox]:checked ~ #overlay-button span.bar:after {
	transform: rotate(-45deg) translate(7px, -7px);
	background-color: #fff;
}
#overlay {
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	background: #000;
	z-index: 2;
	visibility: hidden;
	position: fixed;
}
#overlay.active {

}
#overlay ul {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	height: 100vh;
	padding-left: 0;
	list-style-type: none;
}
#overlay ul li {
	padding: 1em 1em;
	width: 90%;
}
#overlay ul li + li {
	border-top: 1px solid #666;
}
#overlay ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 1.6rem;
	font-weight: 100;
}
#overlay ul li a:hover {
	border-bottom: 1px solid #FFF;
}

h2.title {
	display: block;
	font-size: 3.2rem;
	/*text-align: center;*/
	letter-spacing: .1em;
	width: fit-content;
	margin-bottom: 50px;
	font-family: "Afacad Flux", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-weight: 600;
}
h2.title .title_jp{
	display: block;
	/*font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;*/
	font-size: 1.4rem;
	letter-spacing: .2em;
	margin-top: 10px;
}


.mainvisual{
	position: absolute;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}
.mainvisual video{
	position: fixed;
	top: 0;
	left: 0;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	opacity: .5;
	z-index: -1;
}


/*********** top MV ************/
#top_MV p, #top_MV_SP p {
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
}
#top_MV p img, #top_MV_SP p img {
	max-width: 300px;
	animation: opacity 2s;
}
@keyframes opacity {
		0%{
			opacity: 0;
		}
		25%{
			opacity: 0;
		}
		100%{
			opacity: 1;
		}
	}
/* SP */
@media (max-width: 767px) {
	 #top_MV_SP .vegas-content-scrollable {
		height: calc(100vh - 150px)!important;
	}
}


/*********** top_search ************/
.top_bestrate {

}
.top_bestrate img {
	width: 300px;
	margin: 40px auto 20px;
}
#form_wrapper {
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin: 20px auto;
}
#form_wrapper h3 {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	width: 120px;
	height: auto;
}
#form_wrapper #date {
	margin: 0 10px;
}
#form_wrapper #name i {
	margin-right: 5px;
}
.other_search_btn li {
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 2px;
	padding: .15em 1em;
	background: #eee;
}
.other_search_btn li +li {
	margin-top: 5px;
}
/* SP */
@media (max-width: 767px) {
	#form_wrapper {
		flex-direction: column;
	}
}


/*********** top_topics ************/
#top_topics {

}
#top_topics ul {
	margin: 20px 0;
	height: fit-content;
	overflow: hidden;
}
#top_topics ul li {
	padding: 20px;
}
#top_topics ul li h4 {
	font-size: 1.2em;
	line-height: 1.4;
	margin: 20px 0 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	}
#top_topics ul li p {
	line-height: 2;
	word-break: break-all;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	font-weight: 100;
	
}
.slick-prev, .slick-next {
	text-align: center;
	background: #FFF!important;
	opacity: .5;
	top: calc((100vw - 40px)*(3 / 4)*(1 / 2) + 15px)!important;
}
@media print, screen and (min-width: 480px) {
	.slick-prev, .slick-next {
		top: calc((50vw - 40px)*(3 / 4)*(1 / 2) + 15px)!important;
	}
}
@media print, screen and (min-width: 600px) {
	.slick-prev, .slick-next {
		top: calc((34vw - 40px)*(3 / 4)*(1 / 2) + 15px)!important;
	}
}
@media print, screen and (min-width: 1024px) {
	.slick-prev, .slick-next {
		top: calc((25vw - 40px)*(3 / 4)*(1 / 2) + 15px)!important;
	}
}



.slick-prev:before, .slick-next:before {
	font-family: "Font Awesome 5 Free"!important;
	font-weight: 900;
	text-align: center;
	color: #000!important;
}
.slick-prev:before {
	content: "\f104"!important;
}
.slick-next:before {
	content: "\f105"!important;
}



/*********** article ************/
article:not(#top_topics,#news,#footer_access,#top_news,#footer_media,#tour) {
	height: 100vh;
}
.article_inner {
	position: relative;
	align-items: center;
	max-width: 1000px;
	min-height: 100%;
	margin: 0 auto;
	padding: 50px 10px 100px;
}
.article_inner > div:not(.btn_more.black) {
	flex-direction: column;
	text-shadow: 0 0 3px rgb(0 0 0 / 75%), 0 0 10px rgb(0 0 0 / 50%);
}
#home .article_inner > div {
	color: #FFF;
}
#footer_access .article_inner > div {
	color: #000;
	text-shadow: 0 0 3px rgb(255 255 255 / 75%), 0 0 10px rgb(255 255 255 / 50%);
}
.article_inner p.article_txt {
	line-height: 1.8;
	letter-spacing: 0.2em;
	font-weight: 100;
	border-left: 1px solid #FFF;
	padding: 10px 0 10px 10px;
}
#footer_access .article_inner p.article_txt {
	border-left: 1px solid #000;
}
.article_inner p.article_txt span {
	font-size: 1.4em;
}
.article_txt_catch {
	font-size: 1.6em;
	margin-bottom: 20px;
	letter-spacing: 0.12em;
}
.btn_more {
	position: absolute;
	right: 0;
	left: 0;
	bottom: 50px;
	color: #FFF;
	width: 200px;
	height: 40px;
	box-shadow: inset 0 0 0 1px #FFF;
	margin: auto;
	transition: .5s;
}
.btn_more a {
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	color: #FFF;
	width: 200px;
	height: 40px;
	letter-spacing: 0.5;
	transition: .5s;
}
.btn_more.black {
	box-shadow: inset 0 0 0 1px #000;
}
.btn_more.black a {
	color: #000;
}
#access #footer_access .btn_more {
	display: none;
}
/* PC */
@media print, screen and (min-width: 769px) {
	.btn_more:hover {
		background: #ed6d3d;
		box-shadow: inset 0 0 0 1px #FFF;
	}
	.btn_more:hover a, .btn_more.black:hover a {
		color: #FFF;
		text-shadow: none;
	}
}


/*********** top_concept ************/
#top_concept {
	position: relative;
}
.background-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: -1;
}
.background-video video {
	min-width: 100%;
	min-height: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*********** top_experience ************/
#top_experience {
}


/*********** top_room ************/
#top_room {
}


/*********** top_cuisine ************/
#top_cuisine {
}


/*********** top_stay ************/
#top_stay {
}


/*********** top_bath ************/
#top_bath {
}


/*********** top_hospitality ************/
#top_hospitality {
}


/*********** top_news ************/
#top_news{

}
#top_news .article_inner {
	height: fit-content;
	padding: 100px 10px;
	max-width: 620px;
	min-height: initial;
}
.news_list {
	padding: 10px;
	max-width: 620px;
	width: 100%;
	margin: 0 auto 15px;
}
.news_list li + li {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px dashed #ccc;
}
.news_list li a {
	flex-direction: row;
	align-items: center;
	line-height: 2;
}
.news_list time {
	font-size: .9em;
	width: 6em;
	margin-right: 10px;
}
.news_list li a .category {
	width: 8em;
	height: 25px;
	color: #FFF;
	line-height: 25px;
	text-align: center;
	background: #474a4d;
	margin-right: 5px;
}
.news_list li a h4 {
	width: calc(100% - 14em - 25px);
	margin-left: 10px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

/************ footer_media ************/
#footer_media .article_inner {
	height: fit-content;
	padding: 100px 10px;
	max-width: 620px;
	min-height: initial;
}
.media_list {
	padding: 10px;
	max-width: 620px;
	width: 100%;
	margin: 0 auto 15px;
}
.media_list li + li {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px dashed #ccc;
}
.media_list li a {
	flex-direction: row;
	align-items: center;
	line-height: 2;
}
.media_list time {
	font-size: .9em;
	width: 6em;
	margin-right: 10px;
}
.media_list li a h4 {
	width: calc(100% - 6em - 10px);
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

/************ footer_access ************/
#footer_access {
	background: url(../img/access_bg.jpg) no-repeat center right;
	background-size: cover;
}
#footer_access .article_inner {
	min-height: 540px;
	padding: 50px 10px;
}
/* SP */
@media (max-width: 767px) {
	#footer_access {
		background: url(../img/access_bg.jpg) no-repeat #fde8e1;
		background-size: cover;
		background-position: 100% -120px;
	}
}

/************ WQ_link ************/
#WQ_link {
	padding: 50px 10px 20px;
}
.WQ_link_inner h2 {
	text-align: center;
	width: 100%;
}
.WQ_link_inner {
	position: relative;
	margin: 0 auto;
}
.WQ_link_inner ul li {
	position: relative;
	aspect-ratio:  4/3;
}
.WQ_link_inner ul li a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.WQ_link_inner ul li a {
	color: #FFF;
}
.WQ_link_inner ul li a span {
	position: absolute;
	bottom: 5px;
	left: 5px;
}.WQ_link_inner ul li a span strong {
	font-size: 2rem;
}
/* PC */
@media print, screen and (min-width: 769px) {
	.WQ_link_inner {
		position: relative;
		max-width: 1000px;
		width: calc(100% - 50px);
	}
	.WQ_link_inner ul {
		justify-content: space-between;
	}
	.WQ_link_inner ul li {
		width: calc(100% / 3 - 10px);
	}
}
/* SP */
@media (max-width: 767px) {
	.WQ_link_inner {
		position: relative;
		max-width: 320px;
		width: calc(100% - 50px);
	}
	.WQ_link_inner ul li {
		width: 100%;
	}
	.WQ_link_inner ul li + li {
		margin-top: 5px;
	}
}



/************ sns_banner ************/
.sns {
	text-align: center;
	margin: 20px auto;
}
.sns li {
	display: inline-block;
}
.sns li + li {
	margin-left: 10px;
}
.sns li a img {
	height: 30px;
	width: auto;
}
.banner {
	align-items: flex-start;
	justify-content: center;
	text-align: center;
	margin: 0 auto 10px;
}
.banner li {
	display: inline-block;
	width: fit-content;
}
.banner li + li {
	margin-left: 20px;
}
.banner img {
	width: 150px;
}
#CDSWIDCOE {
	margin: 0!important;
}



/************ news list page ************/
/************ media list page ************/
#media_list_page #footer_media {
	display: none;
}
#news_list_page .news_list,
#media_list_page .media_list{
	padding-bottom: 100px;
}
#news_list_page h3,
#media_list_page h3 {
	font-size: 2.5rem;
	letter-spacing: .1em;
	text-align: center;
	margin-bottom: 50px;
}
.btn_forlist a {
	align-items: center;
	justify-content: center;
	width: 200px;
	border: 1px solid #000;
	margin: 50px auto 0;
	padding: 10px;
	transition: .5s;
}
/* PC */
@media print, screen and (min-width: 769px) {
	.btn_forlist a:hover {
		color: #FFF;
		background: #333;
	}
}


/*********** news ************/
/*********** media ************/
#media #footer_media {
	display: none;
}
#news .news_list time,
#media .media_list time {
	display: block;
	margin-bottom: 10px;
}
#news .news_list h3,
#media .media_list h3 {
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 25px;
}
#news .news_list,
#media .media_list {
	max-width: 640px;
	width: calc(100% - 40px);
	margin: 100px auto;
}
#news .news_list p,
#media .media_list p {
	line-height: 2;
	margin-bottom: 50px;
}
/* PC */
@media print, screen and (min-width: 769px) {
	#news .news_list h3,
	#media .media_list h3 {
		font-size: 2rem;
	}
	#news .news_list p,
	#media .media_list p {
		font-size: 1.6rem;
	}
}
/* SP */
@media (max-width: 767px) {
	#news .news_list time,
	#media .media_list time {
		font-size: 1rem;
	}
	#news .news_list h3,
	#media .media_list h3 {
		font-size: 1.6rem;
	}
	#news .news_list p,
	#media .media_list p {
		font-size: 1.2rem;
	}
}


/************ under_layer ************/
.under_layer_MV {
	position: relative;
	overflow: 	hidden;
	height: 100vh;
	margin-bottom: 100px;
}
.under_layer_MV h2 {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 3.5rem;
	color: #FFF;
	width: 100%;
	height: 100%;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	letter-spacing: .1em;
	text-shadow: 0 0 15px rgba(0,0,0,.3);
}
.under_layer_MV h2:after {
	content: '';
	position: absolute;
	bottom: 50px;
	background: #FFF;
	width: 1px;
	height: calc(50vh - 125px);
}
.under_layer_MV h2 span {
	font-size: .5em;
}
.under_layer_MV img,
.under_layer_MV video {
	height: 100vh;
	object-fit: cover;
}
#home .under_layer_access, #access .under_layer_access {
	display: none;
}
.under_layer_access {
	position: relative;
}
.under_layer_access_inner {
	flex-direction: column;
	align-items: center;
	max-width: fit-content;
	width: calc(100% - 20px);
	border: 1px solid #474a4d;
	border-radius: 20px;
	margin: 50px auto;
	padding: 20px;
}
.under_layer_access_inner h2 {
	text-align: center;
}
.under_layer_access .btn_more {
	position: relative;
	bottom: initial;
	box-shadow: inset 0 0 0 1px #474a4d;
	margin-top: 20px;
}
.under_layer_access .btn_more a {
	position: relative;
	color: #000;
}
.under_layer_access .btn_more:hover {
	box-shadow: none;
}
.under_layer_access .btn_more a:hover {
	color: #FFF;
}

/************ bestrate ************/
.bestrate h2 {
	font-size: 2rem;
	text-align: center;
	color: #fff;
	line-height: 2.5rem;
	background: #262626;
	margin-bottom: 50px;
	padding: 10px ;
}
.bestrate  img {
	margin-bottom: 50px;
}
.section_content_bestrate {
	align-items: center;
	justify-content: center;
}
.section_bestrate {
	margin: 20px auto 30px;
	position: relative;
	text-align: center;
}
.section_content_bestrate ul {
	margin-top: 25px;
	display: inline-block;
	text-align: left;
	padding-left: 1em;
}
.section_content_bestrate li {
	margin-bottom: 8px;
}
.section_content_bestrate li::before {
	content: "・";
	margin-left: -1em;
}
.bestrate {
	margin: 0 auto;
	position: relative;
	max-width: 1060px;
	padding-top: 45px;
}
.section_content_bestrate p {
	line-height: 3.2rem;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
}
.block .qa {
	background: #FFF;
	border: 1px solid #CCC;
	padding: 20px 40px 20px 40px;
	position: relative;
	line-height: 3.2rem;
	font-size: 1.8rem;
	font-weight: bold;
}
.block .qa::before {
	content: "Q:";
	margin-left: -1em;
}
.block .answer {
	margin-bottom: 50px;
}
.block .answer p::before {
	content: "A:";
	margin-left: -1em;
}
.block .val {
	padding: 30px 20px 0 30px;
}
.btn_reserve {
	background: #000;
	color: #FFF;
	text-align: center;
	padding: 15px 80px 15px;
}
.toreserve {
	text-align: center;
	margin: 75px auto 75px;
}
.bestratetitle {
	margin: 0 auto;
	position: relative;
	text-align: center;
}
.bestratep {
	margin-top: 30px;
	text-align: center;
	line-height: 2.5rem
}
@media print, screen and (max-width: 750px) {
	.bestrate {
		padding-top: 25px;
	}
}


/************ concept ************/
.concept_txt {
	margin-bottom: 75px;
}
.concept_txt_inner {
	margin: 50px auto;
	max-width: 900px;
	width: calc(100% - 20px);
	font-size: 1.8rem;
}
.concept_txt_inner h3 {
	font-size: 1.4em;
	text-align: center;
	width: 100%;
	margin-bottom: 30px;
}
.concept_txt_inner p {
	line-height: 3;
	margin-bottom: 15px;
}
.concept_txt video {
	display: block;
	max-width: 720px;
	width: 100%;
	margin: 0 auto;
	background: #000;
}
/* PC */
@media print, screen and (min-width: 769px) {
	.concept_txt .concept_txt_inner {
		flex-direction: row;
		justify-content: space-between;
	}
	.concept_txt .concept_txt_inner > div {
		width: calc(50% - 25px);
	}
}
/* SP */
@media (max-width: 767px) {
	.concept_txt .concept_txt_inner {
		flex-direction: column;
		font-size: 1.6rem;
		line-height: 2;
	}
}

/************ experience ************/
#experience .under_layer_MV img {
	object-position: 90%;
}
.experience_txt_inner {
	margin: 50px auto;
	max-width: 900px;
	width: calc(100% - 20px);
	font-size: 1.8rem;
}
.experience_txt_inner h3 {
	font-size: 1.4em;
	text-align: center;
	width: 100%;
	margin-bottom: 30px;
}
.experience_txt_inner p {
	line-height: 2.5;
	margin-top: 15px;
}
.experience_txt_inner dl {
	font-size: .8em;
	line-height: 2;
}
.experience_txt_inner dl dt {
	width: 6em;
	font-weight: normal;
}
.experience_txt_inner dl dd {
	width: calc(100% - 6em);
}
.conditions p {
	text-align: left;
	font-size: .8em;
	line-height: 1.5;
	width: fit-content;
	margin: 10px auto 0;
}
.talkshow {
	position: relative;
}
.talkshow img {
	display: block;
	max-width: 370px;
}
.experience_list_wrapper {
	margin-bottom: 75px;
}
.experience_list_wrapper h3 {
	text-align: center;
	font-size: 2em;
	letter-spacing: .1em;
	margin-bottom: 20px;
}
.experience_list_wrapper > p{
	text-align: center;
	font-size: 1.8rem;
	line-height: 2;
}
.experience_list {
	max-width: 1000px;
	margin: 50px auto 0;
}
.experience_list li {
	align-items: flex-start;
	justify-content: space-between;
	padding: 10px;
}
.experience_list li + li {
	margin-top: 50px;
}
.experience_list li .experience_list_txt {
	width: calc(45% - 50px);
}
.experience_list li .experience_list_txt h4 {
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 20px;
}
.experience_list li .experience_list_txt h4 span {
	display: block;
	font-size: .8em;
	margin-top: 20px;
}
.experience_list li .experience_list_txt p {
	line-height: 2;
}
.experience_list li figure {
	width: 55%;
}
.experience_list li a.reserve_btn {
	align-items: center;
	justify-content: center;
	color: #FFF;
	width: 180px;
	height: 40px;
	background: #D96D3D;
}
/* PC */
@media print, screen and (min-width: 769px) {
	.experience_txt_inner {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}
	.experience_txt_inner > div {
		width: calc(50% - 25px);
	}
	.experience_txt_inner dl {
		margin-top: 20px;
		padding-top: 20px;
		border-top: 1px solid #999;
	}
	.talkshow {
		padding: 100px 0;
	}
	.experience_list li {
		flex-direction: row-reverse;
	}
	.experience_list li .experience_list_txt h4 {
		font-size: 2.2rem;
		text-align: left;
	}
	.experience_list li .experience_list_txt p {
		font-size: 1.8rem;
	}
	.experience_list li a.reserve_btn {
		margin-top: 20px;
		transition: .5s;
	}
	.experience_list li a.reserve_btn:hover {
		color: #D96D3D;
		background: #FFF;
		box-shadow: inset 0 0 0 1px #D96D3D;
	}
}
/* SP */
@media (max-width: 767px) {
	.experience_txt_inner {
		flex-direction: column;
		font-size: 1.6rem;
		line-height: 2;
	}
	.experience_txt_inner > div + div {
		margin-top: 50px;
	}
	.talkshow img {
		position: absolute;
		top: 125px;
		margin: 0 auto;
		left: 0;
		right: 0;
	}
	.talkshow {
		padding: 50px 0;
	}
	.talkshow p {
		margin-top: 280px;
	}
	.experience_list li {
		flex-direction: column-reverse;
	}
	.experience_list li a {
		flex-direction: column-reverse;
		align-items: center;
		justify-content: center;
	}
	.experience_list li .experience_list_txt h4 {
		font-size: 2rem;
		text-align: center;
		margin-top: 20px;
	}
	.experience_list li .experience_list_txt, .experience_list li figure {
		width: 100%;
	}
	.experience_list li .experience_list_txt {
		width: calc(100% - 20px);
		margin: 10px auto;
	}
	.experience_list li .experience_list_txt p {
		font-size: 1.6rem;
	}
	.experience_list li a.reserve_btn {
		margin: 20px auto;
	}
}

/************ tour ************/
#tour .under_layer_MV{
	margin-bottom: var(--spacing-sm);
}
#tour section{
	font-size: clamp(16px, calc(16px + (18 - 16) * ((100vw - 390px) / (1280 - 390))), 18px);
	line-height: 2;
}
#tour h3 img{
	margin: auto;
}
.tour_inner{
	position: relative;
    margin: 0 auto;
	padding-top: var(--spacing-md);
 	width: calc(100% - 20px);
    max-width: 1000px;
	align-items: center;
    /*min-height: 100%;*/
}
.tour_em{
    margin-top: var(--spacing-xxs);
	font-weight: 700;
	font-size: clamp(16px, calc(16px + (24 - 16) * ((100vw - 390px) / (1280 - 390))), 24px);
	color: #ff0000;
}
#tour article:not(#footer_access) .article_inner{
	position: relative;
	margin-top: var(--spacing-sm);
	padding: 0;
	gap: var(--spacing-xs);
	align-items: flex-start;
}
#tour .article_inner > div{
	text-shadow: none !important;
}
.tour_list {
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	gap: 24px;
}
.tour_list > li{
	position: relative;
	padding: var(--spacing-sm) var(--spacing-xs) var(--spacing-xs);
	background: rgba(255, 255, 255, .8);
  	box-sizing: border-box;
}

.tour_list > li::before{
	content: "";
	position: absolute;
	left: var(--spacing-xxs);
	width: calc(100% - var(--spacing-xxs) * 2);
	border: 4px solid #005726;
	top:16px
}
.tour_list li:nth-of-type(2)::before{border-color:#009389}
.tour_list li:nth-of-type(3)::before{border-color:#005DAB}
.tour_list li:nth-of-type(4)::before{border-color:#844D26}
.tour_list li:nth-of-type(5)::before{border-color:#B40019}

.tour_menu{
	padding-bottom: var(--spacing-xxs)
}
.tour_contents
.tour_menu_date{
	margin-top: var(--spacing-xs);
	text-align: center;
}
.tour_menu span{
	margin-bottom: var(--spacing-xxs);
	padding: var(--spacing-xxs);
	display: block;
	background: #005726;
	color: #fff;
	font-weight: 700;
	text-align: center;
}
.tour_contents_01{
	justify-content: center;
}
.tour_list li{
  width: 100%;
}
.tour_contents h4{
	display: flex;
	justify-content: center;
}
.tour_contents:not(:first-child) h4 img{
	width: fit-content;
}
.tour_theme,
.tour_contents h5{
	margin: var(--spacing-xxs) auto;
	font-weight: 700;
	font-size: clamp(18px, calc(18px + (20 - 18) * ((100vw - 390px) / (1280 - 390))), 20px);
	text-align: center;
}
.tour_contents:nth-of-type(2) .tour_theme,
.tour_contents:nth-of-type(2) h5{color: #009389;}
.tour_contents:nth-of-type(3) .tour_theme,
.tour_contents:nth-of-type(3) h5{color: #005DAB;}
.tour_contents:nth-of-type(4) .tour_theme,
.tour_contents:nth-of-type(4) h5{color: #844D26;}
.tour_contents:nth-of-type(5) .tour_theme,
.tour_contents:nth-of-type(5) h5{color: #B40019;}

.tour_theme span{
	margin-right: .4em;
	border: 1px solid;
}
.tour_theme span:nth-of-type(2){border-color: #009389;}
.tour_theme span:nth-of-type(3){border-color: #005DAB;}
.tour_theme span:nth-of-type(4){border-color: #844D26;}
.tour_theme span:nth-of-type(5){border-color: #B40019;}

.tour_private{
	margin-top: var(--spacing-xs);
	padding: var(--spacing-xs);
	align-items: flex-start;
	flex-direction:unset !important;
	background: #f7f6e0;
    justify-content: center;
}
.tour_private h4{
	margin-bottom: var(--spacing-sm) ;
	max-width: 280px;
}
.tour_private dl {
	display: flex;
	flex-wrap: wrap;
	margin: var(--spacing-xxs) 0;
	font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 390px) / (1280 - 390))), 16px);
	border-bottom: dotted 1px;
}
.tour_private dl dt {
	width: 30%;
	padding-left:var(--spacing-xxs);
}
.tour_private dl dd {
  width: 70%;
}
.tour_comment{
	gap: var(--spacing-sm);
	flex-direction:unset !important
}
.tour_comment h5{
	font-weight: 700;
	margin-bottom: 1em;
	line-height: 1.6;
}

.reserve_area a{
	margin-top: var(--spacing-sm);
	background-color: #005DAB;
	border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: var(--spacing-sm) auto var(--spacing-xxs);;
    max-width: 280px;
    padding: 10px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
#tour_01 .tour_inner:first-child{
	min-height: unset;
}
#tour_01 .tour_01_txt{
	text-align: center;
}
#tour_01 h3{
	margin-bottom: var(--spacing-sm);
}
#tour03{
	margin-top: 0;
}
#tour03 p.caution{
	text-align: center;
	font-size: clamp(14px, calc(12px + (14 - 12) * ((100vw - 390px) / (1280 - 390))), 14px);
}
#tour_04 .tour_inner{
	padding-bottom: var(--spacing-sm);
}
#tour_04 h3{
    margin: var(--spacing-xs) auto;
	font-weight: 700;
	font-size: clamp(18px, calc(18px + (28 - 18) * ((100vw - 390px) / (1280 - 390))), 28px);
	text-align: center;
}
.tour_04_txt{
    margin: var(--spacing-xs) auto;
	/*font-size: clamp(16px, calc(16px + (18 - 16) * ((100vw - 390px) / (1280 - 390))), 18px);*/
    line-height: 1.6;
}
.talishow_list{
	gap:var(--spacing-xs)
}
.talishow_list li{
    padding: var(--spacing-xxs);
	flex-direction: column; /* 縦並び */
	background: #fff;
    line-height: 2;
}
.talishow_list li h4{
	margin-bottom: var(--spacing-xxs);;
	text-align: center;
	font-weight: 700;
	background: #ccc;
}
/* 1番目だけ横幅100% */
/* PC以上（例: 768px以上）では50%に変更 */
@media (min-width: 768px) {
	.tour_list > li:first-child{
	flex: 0 0 100%;
	display: flex; /* 中を横並び */
	gap: 24px;
	}
	/* 1番目の中の要素を3カラム等幅 */
	.tour_list > li:first-child > * {
	flex: 1;
	}
	/* 2番目以降 → 横幅50%で縦並び */
	.tour_list > li:not(:first-child) {
	width: calc(50% - clamp(8px, calc(8px + (16 - 8) * ((100vw - 390px) / (1280 - 390))), 16px));
	flex-direction: column; /* 縦並び */
	}
	#tour_01 h3 img{
		width: fit-content;
	}
	.tour_private{
		gap: var(--spacing-md);
	}
	.private_left{
		flex: 0 0 32%; /* 幅30%固定 */
	}
	.private_right{
		flex: 1;
	}
	.tour_comment_img{
	flex: 0 0 38%;
	}
	.tour_comment_txt{
		flex: 1;
	}
	.talishow_list li{
	width: calc(50% - clamp(8px, calc(8px + (16 - 8) * ((100vw - 390px) / (1280 - 390))), 16px));
	}
}
/************ rooms ************/
.room_main_txt {
	max-width: 1000px;
	text-align: center;
	font-size: 1.8rem;
	line-height: 2;
	margin: 100px auto;
}
.room_main_txt h3 {
	font-size: 2.5rem;
}
.room_nav {
	font-size: 1.6rem;
	line-height: 1.2;
	text-align: center;
	max-width: 1000px;
	margin: 20px auto;
}
.room_nav p {
	margin-bottom: 15px;
}
.rooms_list_wrapper {
	max-width: 1000px;
	width: calc(100% - 10px);
	margin: 50px auto 100px;
}
.room_type {
	text-align: center;
	max-width: 760px;
	width: 100%;
	margin: 50px auto 0;
}
.room_type:not(:nth-of-type(1)) {
	margin-top: 150px;
}
.room_type h3 {
	position: relative;
	font-size: 2.4rem;
	font-weight: bold;
	width: 100%;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #000;
}
.room_type p {
	align-items: center;
	line-height: 2;
	text-align: left;
	margin: 0 auto;
}
.room_type p span {
	display: block;
	font-size: 3rem;
	letter-spacing: .15em;
	line-height: 1.5;
}
.rooms_list > li {
	position: relative;
	flex-direction: row;
	justify-content: space-between;
	padding-top: 100px;
}
.rooms_list > li h4 {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 20px;
}
.rooms_list > li h4 span {
	display: block;
	font-size: 1.2rem;
}
.rooms_list > li figure {
	justify-content: space-between;
	width: 50%;
}
.rooms_list > li figure img {
	width: 100%;
}
.rooms_list > li figure img:not(:first-of-type) {
	width: calc(50% - 2.5px);
	margin-top: 5px;
}
.rooms_list_txt {
	line-height: 1.5;
	width: calc(50% - 50px);
}
.rooms_list_txt_02 {
	margin: 40px 0;
}
.rooms_list_txt_02 > li:not(:first-of-type) {
	border-top: 1px solid #999;
	margin-top: 15px;
	padding-top: 15px;
}
.rooms_list_txt img {
	width: 280px;
}
a.room_reserve {
	align-items: center;
	justify-content: center;
	color: #FFF;
	width: 200px;
	height: 50px;
	background: #D96D3D;
	transition: .5s;
}
a.room_reserve:hover {
	color: #D96D3D;
	background: #FFF;
	box-shadow: inset 0 0 0 1px #D96D3D;
}
/* PC */
@media print, screen and (min-width: 769px) {
	.room_nav div a {
		font-size: 1.8rem;
	}
	.room_nav div a:not(:last-child) {
		display: inline-block;
		margin-right: 10px;
		padding-right: 10px;
		border-right: 1px solid #000;
	}
	.room_type p {
		position: relative;
		flex-direction: row;
		justify-content: space-around;
		font-size: 1.6rem;
		padding: 0 50px 0 300px;
	}
	.room_type p span{
		position: absolute;
		left: 50px;
		width: 220px;
	}
	.rooms_list > li {
		align-items: flex-start;
	}
	.rooms_list_txt_01 {
		font-size: 1.6rem;
	}
	.rooms_list_txt_02 {
		font-size: 2rem;
	}
	.rooms_list_txt img {
		margin: 50px 0;
	}
	a.room_reserve {
		margin: 20px 0 0;
	}
}
/* SP */
@media (max-width: 767px) {
	.room_nav div a {
		font-size: 1.8rem;
	}
	.room_nav div a:first-child {
		display: inline-block;
		margin-right: 10px;
		padding-right: 10px;
		border-right: 1px solid #000;
	}
	.room_nav div a:last-child {
		display: block;
		margin-top: .5em;
	}
	.room_type p {
		flex-direction: column;
		font-size: 1.4rem;
	}
	.room_type p span {
		margin-bottom: 20px;
	}
	.rooms_list > li {
		flex-direction: column;
		justify-content: center;
		padding: 30px 5px 5px;
	}
	.rooms_list > li figure, .rooms_list_txt {
		width: 100%;
	}
	.rooms_list > li h4 {
		text-align: center;
		width: 100%;
		margin: 20px auto 10px;
	}
	.rooms_list_txt_01 {
		font-size: 1.6rem;
	}
	.rooms_list_txt_02 {
		font-size: 1.4rem;
		text-align: center;
	}
	.rooms_list_txt img {
		margin: 50px auto;
	}
	a.room_reserve {
		margin: 20px auto;
	}
}


/************ restaurant ************/
#restaurant .under_layer_MV img {
	object-position: 80%;
}
.restaurant_main_txt {
	margin-top: 50px;
}
.restaurant_main_txt h3 {
	font-size: 2.5rem;
    text-align: center;
    line-height: 3.5rem;
    letter-spacing: 1.3;
}
.restaurant_main_txt p {
	text-align: center;
	line-height: 2.5;
	max-width: 1000px;
	margin: 0 auto;
}
.restaurant_main_txt figure {
	max-width: 600px;
	width: calc(100% - 50px);
	margin: 50px auto 25px;
}
#restaurant section + section {
	margin-top: 100px;
}
#restaurant section:last-of-type {
	margin-bottom: 100px;
}
.chef {
	position: relative;
	justify-content: space-between;
	width: calc(100% - 10px);
	margin: 50px auto;
}
.chef > div {
	flex-direction: column;
	font-size: 1.6rem;
	line-height: 2;
}
.chef h2 {
	font-size: 2.2rem;
	font-weight: bold;
	margin-bottom: 20px;
}
/* PC */
@media print, screen and (min-width: 769px) {
	.restaurant_main_txt p {
		font-size: 2rem;
		padding: 10px;
	}
	.chef {
		max-width: 720px;
	}
	.chef > figure {
		width: 250px;
		height: 250px;
	}
	.chef p {
		font-size: 1.6rem;
	}
	.chef p.chef_name {
		font-size: 1.2rem;
	}
	.chef p.chef_name span {
		display: block;
		font-size: 2.8rem;
	}
	.chef > div {
		width: calc(100% - 320px);
	}
}
/* SP */
@media (max-width: 767px) {
	.restaurant_main_txt p {
		font-size: 1.4rem;
		width: calc(100% - 50px);
	}
	.chef {
		max-width: 460px;
		width: calc(100% - 50px);
	}
	.chef > figure {
		width: 150px;
		height: 150px;
		margin-bottom: 20px;
	}
	.chef p {
		font-size: 1.2rem;
	}
	.chef p.chef_name {
		position: absolute;
		top: 0;
		right: 0;
		width: calc(100% - 170px);
		height: 150px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		font-size: 1rem;
	}
	.chef p.chef_name span {
		display: block;
		font-size: 2rem;
	}
	.chef > div {
		width: 100%;
	}
}


.kandagawa {
	max-width: 100vw;
	margin: 0 auto;
	padding: 10px;
	background-size: cover;
}
.kandagawa .section_inner {
	flex-direction: column;
	justify-content: center;
	max-width: 1000px;
	color: #FFF;
	line-height: 2;
	margin: 0 auto;
}
.kandagawa h2 {
	font-size: 2.2rem;
	font-weight: bold;
	margin-bottom: 20px;
}
.kandagawa p {
	font-size: 1.6rem;
	line-height: 2;
}
/* PC */
@media print, screen and (min-width: 769px) {
	.kandagawa {
		background-image: url(/img/kandagawa_bg.jpg);
	}
	.kandagawa .section_inner div {
		width: 50%;
		margin: 50px 0 50px auto;
	}
}
/* SP */
@media (max-width: 767px) {
	.kandagawa {
		background-image: url(/img/kandagawa_bg_SP.jpg);
	}
	.kandagawa h2 {
		text-align: center;
	}
	.kandagawa .section_inner div {
		width: 100%;
		margin: 250px 0 50px;
	}
}

.meal_nav {
	text-align: center;
	margin: 50px auto 0;
}
.meal_nav a {
	display: inline-block;
	font-size: 1.4rem;
	line-height: 1.5;
	margin-bottom: 5px;
}
.meal_list {
	max-width: 1000px;
	width: calc(100% - 20px);
	margin: 0 auto;
}
.meal_list figure img:not(:first-of-type) {
	margin-top: 5px;
}
.meal_list h2 {
	font-size: 2.5rem;
	letter-spacing: .05em;
	font-feature-settings: "palt";
	margin-bottom: 20px;
}
.meal_list h2 span {
	font-size: .8em;
}
.meal_list h2 > span.en {
	display: block;
	font-size: .5em;
	margin-top: 5px;
}
.meal_list p {
	line-height: 2;
}
.meal_list dl {
	margin: 20px 0;
}
.meal_list dl dt {
	width: 80px;
}
.meal_list dl dd {
	width: calc(100% - 80px);
}
.meal_list dl dt,
.meal_list dl dd {
	margin-top: 10px;
}
.meal_list p.asterisk {
	font-size: 1.4rem;
	text-align: center;
	padding: 10px 0;
	margin-top: 40px;
	border-top: 1px solid #9A9;
	border-bottom: 1px solid #999;
}
/* PC */
@media print, screen and (min-width: 769px) {
	.meal_nav a:not(:first-of-type) {
		margin-left: 10px;
		padding-left: 10px;
		border-left: 1px solid #000;
	}
	.meal_list {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		padding-top: 100px;
	}
	.meal_list figure {
		width: 55% ;
	}
	.meal_list .restaurant_txt {
		width: calc(45% - 50px);
	}
	.meal_list figure img:not(:first-of-type) {
		width: calc(100% / 2 - 2.5px);
	}
	.meal_list figure img:not(:first-of-type) {
		width: calc(100% / 2 - 2.5px);
	}
	.meal_list figure img:not(:first-of-type):nth-of-type(odd) {
		margin-left: 5px;
	}
	.meal_list p {
		font-size: 1.8rem;
	}
}
/* SP */
@media (max-width: 767px) {
	.meal_nav a + a {
		margin-left: 10px;
		padding-left: 10px;
		border-left: 1px solid #000;
	}
	.meal_list {
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		padding-top: 60px;
	}
	.meal_list h2 {
		text-align: center;
		margin-top: 35px;
	}
	.meal_list figure,
	.meal_list .restaurant_txt {
		width: 100%;
	}
	.meal_list p {
		font-size: 1.5rem;
	}
	.meal_nav a {
		display: inline-block;
		/*width: 12em;*/
	}
	.meal_nav a:nth-of-type(even) {
		text-align: left;
		margin-left: 0;
	}
	.meal_nav a:nth-of-type(odd) {
		text-align: right;
		padding-right: 5px;
	}
	.meal_nav a:nth-of-type(3) {border: none}
	.meal_list figure img:not(:first-of-type) {
		width: calc(100% / 3 - 5px);
		margin-right: 5px;
	}
}

#allergy h2 {
	font-size: 2rem;
	text-align: center;
	background-color: 797F7A;
	color: #ffffff;
	max-width: 1000px;
	width: calc(100% - 20px);
	margin: 20px auto 20px;
	padding: 10px;
}
#allergy .section_inner {
	max-width: 600px;
	margin: 0 auto;
}
#allergy .section_inner > p {
	font-size: 1.5rem;
    line-height: 1.7;
}
#allergy .section_inner > div {
	margin: 20px 0;
}
#allergy .section_inner .alle_kanou h3 {
	font-size: 2rem;
	text-align: center;
	border: 1px solid #000;
	padding: 10px;
}
#allergy .section_inner .alle_kanou p {
	font-weight: bold;
	line-height: 1.6;
}
#allergy .section_inner .alle_note {
	background: #E8E8E8;
	padding: 40px;
}
#allergy .section_inner .alle_note h3 {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 20px;
}
#allergy .section_inner .alle_note p {
	font-size: 1.5rem;
	line-height: 2;
}
#allergy .section_inner .redtext{
	color: #FF0004;
}
/* PC */
@media print, screen and (min-width: 769px) {
	#allergy .section_inner > p,
	#allergy .section_inner .alle_kanou p {
		padding: 20px;
	}
}
@media screen and (max-width: 767px){
	#allergy .section_inner > p {
		margin: 20px;
	}
	#allergy .section_inner > div {
		margin: 20px 40px;
	}
}


/************ stay ************/
.stay_main_txt {
	text-align: center;
	max-width: 1000px;
	padding: 10px;
	margin: 50 auto;
}
.stay_main_txt h3 {
	font-size: 2.5rem;
	margin-bottom: 50px;
	line-height: 3.5rem;
	letter-spacing: 1.3;
}
.stay_main_txt p {
	line-height: 2.5;
}
#stay .section_inner {
	width: calc(100% - 20px);
	margin: 0 auto;
}
.mitorizu {
	max-width: 1000px;
	margin: 50px auto;
}
.mitorizu p {
	font-size: 1.6rem;
	line-height: 2;
	width: fit-content;
	margin: 0 auto;
}
.mitorizu figure img {
	mix-blend-mode: darken;
	z-index: 1;
}
.stayimage {
	max-width: 900px;
}
.shisetsu {
	max-width: 1000px;
	margin: 0 auto;
}
.shisetsu ul {
	
}
.shisetsu ul li {
	position: relative;
	align-items: flex-start;
}
.shisetsu ul li + li {
	margin-top: 100px;
}
.shisetsu ul li h3 {
	letter-spacing: .05em;
}
.shisetsu ul li p {
	line-height: 2;
}
.shisetsu_gaiyou {
	max-width: 1000px;
	margin: 100px auto;
}
.shisetsu_gaiyou h3 {
	font-size: 2.5rem;
	text-align: center;
}
.shisetsu_gaiyou dl {
	max-width: 640px;
	margin: 50px auto 10px;
	justify-content: space-between;
	border-top: 1px solid #999;
}
.shisetsu_gaiyou dl dt,.shisetsu_gaiyou dl dd {
	align-items: center;
	line-height: 1.5;
	padding: 10px;
	border-bottom: 1px solid #999;
}
.shisetsu_gaiyou dl dt {
	width: 10em;
}
.shisetsu_gaiyou dl dd {
	width: calc(100% - 10em);
}
.shisetsu_gaiyou p {
	line-height: 1.5;
	letter-spacing: .1em;
	width: fit-content;
	margin: 20px auto;
}
/* PC */
@media print, screen and (min-width: 769px) {
	.stay_main_txt p {
		font-size: 2rem;
	}
	.mitorizu figure {
		flex-direction: row;
		justify-content: space-between;
	}
	.mitorizu figure img {
		width: calc(50% - 10px);
	}
	.stayimage {
		margin: 100px auto;
	}
	.shisetsu ul li {
		justify-content: space-between;
	}
	.shisetsu ul li figure {
		width: 55%;
	}
	.shisetsu ul li div {
		width: calc(45% - 50px);
	}
	.shisetsu ul li h3 {
		font-size: 3rem;
		margin-bottom: 20px;
	}
	.shisetsu ul li p {
		font-size: 1.6rem;
	}
	.shisetsu_gaiyou dl dt,.shisetsu_gaiyou dl dd {
		font-size: 1.6rem;
	}
	.shisetsu_gaiyou p {
		font-size: 1.6rem;
	}
}
/* SP */
@media (max-width: 767px) {
	.stay_main_txt p {
		font-size: 1.4rem;
	}
	.mitorizu figure {
		flex-direction: column;
	}
	.mitorizu figure img {
		width: 100%;
		mix-blend-mode: darken;
	}
	.stayimage {
		margin: 50px auto;
	}
	.shisetsu ul li figure, .shisetsu ul li div {
		width: 100%;
	}
	.shisetsu_gaiyou {
		width: calc(100% - 20px);
	}
	.shisetsu ul li h3 {
		font-size: 2.5rem;
		text-align: center;
		margin: 35px 0 20px;
	}
	.shisetsu ul li p {
		font-size: 1.4rem;
	}
	.shisetsu_gaiyou dl dt,.shisetsu_gaiyou dl dd {
		font-size: 1.4rem;
	}
	.shisetsu_gaiyou p {
		font-size: 1.4rem;
	}
}



/************ hospitality ************/
.hospitality_txt {
	text-align: center;
	max-width: 1000px;
	padding: 10px;
	margin: 0 auto;
}
.hospitality_txt h3 {
	line-height: 1.5;
	margin: 50px auto;
}
.hospitality_txt p {
	line-height: 2.5;
	max-width: 720px;
	margin: 0 auto 50px;
}
.hospitality_txt figure {
	max-width: 400px;
	margin: 0 auto;
}
/* PC */
@media print, screen and (min-width: 769px) {
	.hospitality_txt h3 {
		font-size: 3rem;
	}
	.hospitality_txt p {
		font-size: 2rem;
	}
}
/* SP */
@media (max-width: 767px) {
	.hospitality_txt h3 {
		font-size: 2.5rem;
	}
	.hospitality_txt p {
		font-size: 1.4rem;
	}
}



/************ access ************/
.access {
	margin: 50px 0;
}
.access .section_inner {
	justify-content: center;
	max-width: 1000px;
	width: calc(100% - 20px);
	margin: 0 auto;
}
.access .section_inner h3 {
	text-align: center;
}
.access .section_inner p {
	text-align: center;
	line-height: 2;
	width: fit-content;
	margin: 0 auto 50px;
}
.trafic {
	max-width: 720px;
	line-height: 1.5;
}
.trafic li + li {
	margin-top: 50px;
}
.trafic dt {
	font-size: 2rem;
}
.trafic dt i {
	margin-right: .25em;
}
.trafic dd {
	line-height: 2;
	margin-left: .5em;
	padding: 30px;
	border-left: 1px solid #666;
}
.trafic dd span {
	color: #FFF;
	background: #474a4d;
	padding: 0 1em;
}
.trafic dd img {
	margin: 50px 0;
}
.contact_btn {
	align-items: center;
	justify-content: center;
	margin: 50px auto;
}
.contact_btn a {
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	text-align: center;
	line-height: 1.5;
	width: 300px;
	height: 100px;
	padding: 10px;
	box-shadow: inset 0 0 0 1px #000;
	border-radius: 10px;
}
.contact_btn a.tel_btn span {
	font-size: 3.5rem;
}
/* PC */
@media print, screen and (min-width: 769px) {
	.access .section_inner h3 {
		font-size: 3rem;
		margin-bottom: 50px;
	}
	.access .section_inner p {
		font-size: 2rem;
	}
	.trafic dd {
		font-size: 1.8rem;
	}
	.contact_btn {
		flex-direction: row;
	}
	.contact_btn a + a {
		margin-left: 20px;
	}
}
/* SP */
@media (max-width: 767px) {
	.access .section_inner h3 {
		font-size: 2.5rem;
		margin-bottom: 20px;
	}
	.access .section_inner p {
		font-size: 1.4rem;
	}
	.trafic dt span {
		position: absolute;
		display: block;
		margin-left: 1em;
	}
	.trafic li:not(:last-of-type) dd {
		padding-top: 60px;
	}
	.contact_btn {
		flex-direction: column;
	}
	.contact_btn a + a {
		margin-top: 20px;
	}
}



/************ bath ************/
#bath .under_layer_MV img {
	height: 100vh;
	object-fit: cover;
	object-position: 20%;
}
.bath {
	max-width: 1000px;
	width: calc(100% - 20px);
	margin: 50px auto 0;
}
.bath_txt {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 50px;
}
.bath_txt h3 {
	font-size: 2.5rem;
	margin-bottom: 50px;
}
.bath_txt p {
	line-height: 2;
}
.bath_list {
	background: #000;
	background-size: cover;
}
.bath_list ul {
	max-width: 1000px;
	margin: 50px auto;
}
.bath_list ul li  {
	background: rgba(255,255,255);
}
.bath_list ul li + li {
	margin-top: 20px;
}
.bath_list ul li p {
	line-height: 2;
}
.bath_img .section_inner {
	align-items: flex-start;
	justify-content: center;
	width: 100%;
}
.bath_img p.bath_img_txt {
	text-align: center;
	line-height: 2;
	padding: 20px;
}
.bath_img_floorplan {
	margin: 50px auto;
}
.bath_img_floorplan figure p {
	text-align: center;
	line-height: 1.5;
	width: 100px;
	border: 1px solid #000;
	margin: 0 auto;
}
/* PC */
@media print, screen and (min-width: 769px) {
	.bath_txt p {
		font-size: 1.8rem;
	}
	.bath_list ul {
		padding: 50px 0;
		width: calc(100% - 50px);
	}
	.bath_list ul li {
		flex-direction: row;
		justify-content: space-between;
		padding: 50px;
	}
	.bath_list ul li figure {
		width: 55%;
	}
	.bath_list ul li div {
		width: calc(45% - 50px);
	}
	.bath_list ul li h3 {
		font-size: 2em;
		margin-bottom: 20px;
	}
	.bath_list ul li p {
		font-size: 1.6rem;
		margin-bottom: 20px;
	}
	.bath_img p {
		font-size: 1.8rem;
	}
	.bath_img_floorplan figure {
		width: calc(50% - 5px);
		max-width: 400px;
	}
	.bath_img_floorplan figure + figure {
		margin-left: 10px;
	}
}
/* SP */
@media (max-width: 767px) {
	.bath_txt p {
		font-size: 1.4rem;
	}
	.bath_list ul {
		padding: 20px;
	}
	.bath_list ul li {
		padding: 20px;
	}
	.bath_list ul li h3 {
		font-size: 1.6em;
		text-align: center;
		margin: 20px auto;
	}
	.bath_list ul li p {
		font-size: 1.4rem;
	}
	.bath_img p {
		font-size: 1.4rem;
	}
	.bath_img_floorplan figure {
		width: 100% ;
		max-width: 400px;
		margin: 0 auto;
	}
	.bath_img_floorplan figure + figure {
		margin-top: 10px;
	}
}


/************ footer_fixed_menu ************/
/* SP */
@media (max-width: 767px) {
	#footer_fixed_menu {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		background: #FFF;
		border-top: 1px solid #474a4d;
	}
	#footer_fixed_menu ul {
		width: 100vw;
		height: 55px;
	}
	#footer_fixed_menu ul li {
		align-items: center;
		justify-content: center;
		width: calc(100% / 4);
		height: 50px;
	}
	#footer_fixed_menu ul li {
		border-right: 1px solid #ddd;
	}
}

/************ footer ************/
footer {
	background: #474a4d;
}
footer * {
	color: #FFF;
}
footer a.footer_logo img {
	display: block;
	width: 280px;
	height: auto;
	margin-bottom: 30px;
}
.footer_info {
	line-height: 1.5;
}
.footer_tel a {
	font-size: 1.5em;
}
footer .copylight {
	font-size: 1.1rem;
	text-align: center;
	padding: 5px;
}
.footer_link {
	margin: 30px auto;
}
.footer_link ul li {
	position: relative;
}
/* PC */
@media print, screen and (min-width: 769px) {
	.footer_inner {
		justify-content: space-between;
		max-width: 620px;
		margin: 0 auto;
		padding-top: 50px;
	}
	.footer_nav {
		font-size: 1.3rem;
	}
	.footer_link ul {
		max-width: 620px;
		width: calc(100% - 50px);
		margin: 0 auto;
		justify-content: space-between;
	}
	.footer_link ul li {
		width: calc(100% / 3 - 10px);
		height: auto;
		aspect-ratio: 4/3;
	}
	.footer_nav li + li {
		margin-top: 5px;
	}
	.footer_link ul li a img {
		width: 100%;
		height: auto;
		aspect-ratio: 4/3;
		object-fit: cover;
	}
	.footer_link ul li a span {
		position: absolute;
		font-size: 1.2rem;
		bottom: 5px;
		left: 5px;
	}
	.footer_link ul li a span strong {
		font-size: 1.6rem;
	}
}
/* SP */
@media (max-width: 767px) {
	footer {
		padding-bottom: 60px;
	}
	.footer_inner {
		justify-content: center;
		padding: 20px;
	}
	.footer_link {
		text-align: center;
		width: fit-content;
		min-width: 300px;
		margin: 15px auto;
	}
	.footer_link label {
		border: 1px solid #FFF;
		border-radius: 5px;
		width: 100%;
		padding: 5px;
		margin: 0 auto;
	}
	.footer_link ul li {
		width: 100%;
		padding: 5px;
		text-align: left;
	}
	#toggle {
		display: none;
		cursor: pointer;
	}
	.dropdown_list {
		display: none;
	}
	#toggle:checked + .dropdown_list {
		display: block;
	}
}

/************ footer_tour_bnr ************/
@keyframes floatBnr_pc {
  from {
    transform: translateX(100px) translateY(-50%);
    opacity:0;
  }
  to {
    transform: translateX(0) translateY(-50%);
    opacity:100;
  }
}

@keyframes floatBnr_sp {
  from {
    transform: translateX(0) translateY(30px);
    opacity:0;
  }
  to {
    transform: translateX(0) translateY(0);
    opacity:100;
  }
}

.floatBnr {
    position: fixed;
    left: auto;
    top: 50%;
    right: -10px;
    bottom: auto;
    margin: 0;
    width: 132px;
    height: 286px;
    max-width: 100%;
    transform: translateX(100px) translateY(-50%);
    opacity: 0;
    animation-name: floatBnr_pc;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    z-index: 999;
}

.floatBnr-inner {
    display: block;
    text-align: center;
    position: relative;
}

.floatBnr-inner button.close {
    position: absolute;
    right: 25px;
    top: 10px;
    width: 25px;
    height: 25px;
	font-weight: 700;
    background: #000;
    color: #fff;
    border-radius: 50%;
	z-index: 11;
}

.floatBnr-inner button {
    margin: 0 auto;
    padding: 0;
    border: none;
    background-color: transparent;
}


.floatBnr-inner button img {
    max-width: 100%;
}

.floatBnr-inner > a {
    display: block;
    z-index: 10;
}

.floatBnr-inner figure {
    display: block;
}

.floatBnr-inner figure img.pc {
    display: inline-block;
}

.floatBnr-inner figure img.sp {
    display: none;
}

.floatBnr-inner figure img {
    max-width: 100%;
}

.floatBnr.hide{
	display:none;
}

@media (max-width: 767px){
.floatBnr {
    position: fixed;
    left: auto;
    top: auto;
    right: -10px;
    bottom: 56px;
    width: auto;
    height: auto;
    max-width: 283px;
    border-radius: 10px;
    transform: translateX(0) translateY(30px);
    opacity: 0;
    animation-name: floatBnr_sp;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}
	
	.floatBnr-inner button.close {
    right: auto;
    top: 12px;
    right: 12px;
    width: 22px;
    height: 22px;
}
	
	.floatBnr-inner figure img.pc {
    display: none;
}
	.floatBnr-inner figure img.sp {
    display: inline-block;
}

}