@charset "UTF-8";

/* ----------------------------------------------------
	area_menu（ヘッダーメニュー）
---------------------------------------------------- */
.area_menu {
	background: rgb(255,128,155);
	background: linear-gradient(142deg, rgba(255,128,155,1) 0%, rgba(255,196,141,1) 100%);
	padding: 10px 100px;
	position: sticky;
	top: 0;
	z-index: 9999;
}

.area_menu ul {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	max-width: 1150px;
	margin: 0 auto;
}

.area_menu ul li {
	width: 15%;
}

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

/* ----------------------------------------------------
	history
---------------------------------------------------- */
.history {
	background-image: url(../img/bg01.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: auto;
	padding: 100px 0;
	text-align: center;
}

.history h3 {
	width: 40%;
	margin: 0 auto;
}

.history p {
	font-size: 18px;
	line-height: 2;
	padding-top: 30px;
}

@media screen and (max-width: 768px) {
	.history {
		background-image: url(../img/sp_bg01.png);
		padding: 50px 0;
	}
	.history h3 {
		width: 50%;
	}
	.history p {
		font-size: 14px;
		padding: 30px 10px 0;
	}
}


/* ----------------------------------------------------
	restaurant（レストラン）
---------------------------------------------------- */
#restaurant {
	background-color: #FFE9DF;
	padding-bottom: 100px;
}

#restaurant h2 {
	width: 65%;
	margin: 0 auto;
	padding-top: 30px;
}

#restaurant .intro {
	text-align: center;
	padding: 10px 0 50px;
}

#restaurant ul.box {
	justify-content: flex-start;
}

#restaurant ul.box li img:last-child {
	display: block;
	width: 80%;
	margin: 10px 0 0 auto;
}

#restaurant ul.box li:last-child {
	width: 40%;
	margin-left: 37px;
}

#restaurant ul.box li:last-child h3 {
	color: #FF8256;
	font-size: 24px;
	line-height: 1.5;
	margin-bottom: 20px;
}

#restaurant ul.box li:last-child .deta {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 5px;
}

#restaurant ul.box li:last-child .category {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	background-color: #FF8256;
	color: #fff;
	font-size: 13px;
	border-radius: 20px;
	padding: 0 10px;
	margin-bottom: 5px;
}

#restaurant ul.box li:last-child .article {
	font-size: 16px;
	line-height: 1.5;
}

#restaurant ul.box li:last-child tr {
	vertical-align: top;
}

#restaurant ul.box li:last-child tr th {
	display: inline-block;
	color: #FF8256;
	margin-right: 10px;
	width: 40px;
}

#restaurant ul.box li:last-child tr td span {
	display: flex;
	text-align: right;
}

#restaurant ul.box li:last-child tr td span.note {
	width: 100%;
	text-align: left;
}

#restaurant a.btn {
	background: rgb(255,102,92);
	background: linear-gradient(142deg, rgba(255,102,92,1) 0%, rgba(255,188,105,1) 100%);
	color: #fff;
	margin-top: 20px;
	padding: 16.5px 0;
}

/*
	アコーディオン
------------------------------ */
.toggle_contents {
	margin-top: 20px;
}
.toggle_title {
	background: rgb(255,102,92);
	background: linear-gradient(142deg, rgba(255,102,92,1) 0%, rgba(255,188,105,1) 100%);
	color: #fff;
	position: relative;
	padding: 20px;
	cursor: pointer;
	font-size: 18px;
	text-align: center;
	line-height: 1.4;
}
.toggle_title::after {
	width: 7px;
	height: 7px;
	margin-left: 10px;
	border-bottom: 3px solid #fff;
	border-right: 3px solid #fff;
	content: '';
	transition: transform .3s;
	display: inline-block;
	position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
}
.toggle_title.selected::after  {
	transform: rotate(225deg);
}
.toggle_btn {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	display: block;
	width: 24px;
	height: 24px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	border-radius: 50%;
}
.toggle_contents dd {
	display: none;
}
.toggle_contents dd ul {
	margin-top: 20px;
}
.toggle_contents dd ul li {
	width: 100%;
	margin-bottom: 30px;
}
#restaurant .toggle_contents dd ul li:last-child {
	padding-right: 0;
	width: 100%;
	margin-left: 0;
}
.toggle_contents dd ul li p:first-child {
	color: #FF8256;
	margin-bottom: 0;
}
/*END アコーディオン
------------------------------ */

#restaurant .post_show {
	border: 10px solid rgb(255,102,92);
	border-image: linear-gradient(142deg, rgba(255,102,92,1) 0%, rgba(255,188,105,1) 100%);
	border-image-slice: 1;
	border-radius: 25px;
	padding: 30px 30px 20px;
	background-color: #fff;
	position: relative;
}

#restaurant .post_show h2 {
	position: absolute;
	width: 60%;
	top: -1px;
	left: 30px;
	padding: 0;
}

#restaurant .post_show .icon {
	position: absolute;
	width: 150px;
	bottom: -30px;
	right: -16px;
}

#restaurant .post_show ul {
	display: flex;
	justify-content: space-between;
}

#restaurant .post_show ul li:first-child {
	width: 87%;
	padding-top: 40px;
}

#restaurant .post_show ul li:first-child h3 {
	color: #FF8256;
	font-size: 24px;
	margin-bottom: 0;
}

#restaurant .post_show ul li:first-child .deta {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 0;
}

#restaurant .post_show ul li:first-child tr {
	vertical-align: top;
}

#restaurant .post_show ul li:first-child tr th {
	display: inline-block;
	color: #FF8256;
	margin-right: 10px;
}

#restaurant .post_show ul li:first-child .note {
	line-height: 1.3;
	margin-top: 10px;
}
#restaurant .post_show ul li:last-child {
	margin-left: 20px;
}

#restaurant ul.box2 li:first-child {
	width: 54%;
	order: 2;
}

#restaurant ul.box2 li:last-child {
	width: 43%;
	order: 1;
}

#restaurant ul.box2 li:last-child img {
	display: block;
}
#restaurant ul.box2 li:first-child img:last-child {
	margin-top: 10px;
}

#restaurant ul.box2 h3 {
	color: #FF8256;
	font-size: 24px;
	margin-bottom: 0;
}

#restaurant ul.box2 .deta {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 0;
}

#restaurant ul.box2 li tr {
	vertical-align: top;
}

#restaurant ul.box2 li tr th {
	display: inline-block;
	color: #FF8256;
	margin-right: 10px;
}

#restaurant ul.box2 li tr th.category {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	color: #fff;
	font-size: 13px;
	border-radius: 20px;
	padding: 0 10px;
	margin-bottom: 5px;
}
#restaurant ul.box2 li tr th.category.lunch {
	background-color: #FF9638;
}
#restaurant ul.box2 li tr th.category.dinner {
	background-color: #6B7097;
}

#restaurant ul.box2 li a.btn.dinner {
	background: rgb(112,107,165);
	background: linear-gradient(142deg, rgba(112,107,165,1) 0%, rgba(128,188,180,1) 100%);
}

#restaurant ul.box.reverse {
	justify-content: flex-end;
}

#restaurant ul.box.reverse li:first-child {
	order: 2;
}
#restaurant ul.box.reverse li:last-child {
	order: 1;
}

#restaurant ul.box.reverse li:last-child {
	width: 40%;
	margin-left: 0;
	margin-right: 37px;
}

#restaurant ul.box.reverse li img:last-child {
    width: 100%;
    margin: 0;
}

#restaurant ul.box.reverse li:last-child .deta {
	color: #323232;
}

#restaurant ul.area_s-dining {
	display: flex;
	justify-content: space-between;
	border: 1px solid rgb(255,102,92);
	border-image: linear-gradient(142deg, rgba(255,102,92,1) 0%, rgba(255,188,105,1) 100%);
	border-image-slice: 1;
	border-radius: 25px;
	margin-bottom: 30px;
}

#restaurant ul.area_s-dining li:first-child {
	padding: 20px 30px 0;
	width: 60%;
}

#restaurant ul.area_s-dining li:first-child h2 {
	position: relative;
	background-color: #FFE9DF;
    margin: -30px 0;
    padding-top: 0;
}

#restaurant ul.area_s-dining li:first-child p {
	margin-top: 50px;
}

#restaurant ul.area_s-dining li:first-child a.btn {
    font-size: 16px;
	padding: 10px 0;
}

#restaurant ul.area_s-dining li:last-child {
	width: 40%;
}

#restaurant .post_show ul li:first-child tr td span {
	font-size: 13px;
}

#restaurant ul.box2 li:last-child p.note,
#restaurant ul.box.reverse li:last-child p.note {
	padding-left:1em;
	text-indent:-1em;
}

@media screen and (max-width: 768px) {
	#restaurant {
		padding-bottom: 50px;
	}
	#restaurant h2 {
		width: 90%;
		padding-top: 15px;
	}
	#restaurant .intro {
		font-size: 13px;
		padding: 10px 0 30px;
	}
	#restaurant ul.box li img:last-child {
		width: 100%;
	}
	#restaurant ul.box li:last-child {
		width: 100%;
		margin-left: 0;
	}
	#restaurant ul.box li:last-child h3 {
		font-size: 20px;
		margin-top: 20px;
		margin-bottom: 10px;
	}
	#restaurant ul.box li:last-child .deta {
		font-size: 13px;
	}
	#restaurant ul.box li:last-child .category {
		width: 70px;
		font-size: 11px;
	}
	#restaurant ul.box li:last-child .article {
		font-size: 13px;
	}
	#restaurant ul.box li:last-child tr th {
		width: 30px;
		font-size: 13px;
	}
	#restaurant ul.box li:last-child tr td {
		font-size: 13px;
	}
	#restaurant ul.box li:last-child tr td span.note {
		font-size: 10px;
	}
	.toggle_title {
		padding: 15px;
		font-size: 16px;
	}
	.toggle_contents dd ul li {
		margin-bottom: 15px;
	}
	.toggle_contents dd ul li {
		padding: 0;
	}
	.toggle_contents dd p {
		font-size: 13px;
		padding: 0 20px;
	}
	#restaurant a.btn {
		font-size: 16px;
		padding: 13.5px 0;
	}
	#restaurant .post_show {
		border: 5px solid rgb(255, 102, 92);
		border-radius: 0;
		padding: 0 10px 10px;
		margin: 50px 20px 0;
	}
	#restaurant .post_show ul {
		display: block;
	}
	#restaurant .post_show h2 {
		position: relative;
		width: 100%;
		top: -14px;
		left: 10px;
	}
	#restaurant .post_show ul li:first-child h3 {
		font-size: 20px;
	}
	#restaurant .post_show ul li:first-child .deta {
		font-size: 13px;
	}
	#restaurant .post_show ul li:first-child .article {
		font-size: 13px;
	}
	#restaurant .post_show ul li:first-child tr th {
		width: 30px;
		font-size: 13px;
	}
	#restaurant .post_show ul li:first-child tr td {
		font-size: 13px;
	}
	#restaurant .post_show ul li:first-child tr td span {
		font-size: 10px;
	}
	#restaurant .post_show ul li:first-child .note {
		margin-top: 5px;
		font-size: 10px;
	}
	#restaurant .post_show ul li:last-child {
		margin: 10px 0;
	}
	#restaurant .post_show ul li:first-child {
		width: 100%;
		padding-top: 0;
	}
	#restaurant .post_show .icon {
		width: 110px;
		bottom: 0px;
		right: -10px;
	}
	#restaurant ul.box2 li:first-child {
		width: 100%;
	}
	#restaurant ul.box2 li:last-child {
		width: 100%;
	}
	#restaurant ul.box2 h3 {
		font-size: 20px;
		margin-top: 20px;
	}
	#restaurant ul.box2 .deta {
		font-size: 13px;
	}
	#restaurant ul.box2 .article {
		font-size: 13px;
	}
	#restaurant ul.box2 li tr th {
		font-size: 13px;
	}
	#restaurant ul.box2 li tr td {
		font-size: 13px;
	}
	#restaurant ul.box2 li tr th.category {
		width: 60px;
		font-size: 11px;
	}
	#restaurant ul.box.reverse li:last-child {
		width: 100%;
		margin-right: 0;
	}
	#restaurant ul.area_s-dining {
		display: block;
		border-radius: 0;
		margin-bottom: 30px;
		margin: 50px 20px 20px;
	}
	#restaurant ul.area_s-dining li:first-child {
		padding: 20px 30px;
		width: 100%;
	}
	#restaurant ul.area_s-dining li:last-child {
		width: 100%;
	}
	#restaurant ul.area_s-dining li:first-child h2 {
		width: 65%;
	}
	#restaurant ul.area_s-dining li:first-child p {
		font-size: 13px;
	}
	#restaurant ul.area_s-dining li:first-child a.btn {
		margin-top: 10px;
	}
	#restaurant .w630 .note {
		font-size: 10px;
		margin: 0 20px;
	}
	#restaurant ul.box2 li tr td .note,
	#restaurant ul.box2 li:last-child p.note,
	#restaurant ul.box.reverse li:last-child p.note {
		font-size: 10px;
	}
}

/* ----------------------------------------------------
	bar（BAR）
---------------------------------------------------- */
#bar {
	background-color: #E2E8E9;
	padding-bottom: 100px;
}

#bar h2 {
	width: 30%;
	margin: 0 auto;
	padding-top: 30px;
	padding-bottom: 10px;
}

#bar .intro {
	text-align: center;
	padding: 20px 0;
}

#bar .period {
	font-weight: bold;
	text-align: center;
	margin-bottom: 0;
}

#bar .period span {
	display: block;
	text-decoration: underline;
}

#bar .place,
#bar .time,
#bar .note {
	text-align: center;
	margin-bottom: 0;
}
#bar .place span,
#bar .time span {
	color: #4976BE;
	padding-right: 20px;
}

#bar .box {
	margin-top: 40px;
}

#bar .box h3 {
	font-size: 24px;
	color: #4976BE;
	padding: 25px 0 5px;
}

#bar .box ul {
	display: flex;
	justify-content: space-between;
}

#bar .box ul li {
	width: 45%;
}

#bar .box ul li div {
	margin-bottom: 30px;
}

#bar .box ul li h4 {
	color: #4976BE;
}

#bar ul.area_s-dining {
	display: flex;
	justify-content: space-between;
	border: 1px solid rgb(112,107,165);
	border-image: linear-gradient(142deg, rgba(112,107,165,1) 0%, rgba(128,188,180,1) 100%);
	border-image-slice: 1;
	border-radius: 25px;
	margin-bottom: 30px;
}

#bar ul.area_s-dining li:first-child {
	padding: 20px 30px 0;
	width: 60%;
}

#bar ul.area_s-dining li:first-child h2 {
	position: relative;
    margin: -30px 0;
    padding-top: 0;
	width: 80%;
	z-index: 100;
}
#bar ul.area_s-dining li:first-child h2::before {
	content: '';
	position: absolute;
	background-color: #E2E8E9;
	width: 70px;
	height: 30px;
	top: 0;
	left: -10px;
	z-index: -1;
}

#bar ul.area_s-dining li:first-child p {
	margin-top: 40px;
}

#bar ul.area_s-dining li:first-child a.btn {
	background: rgb(112,107,165);
	background: linear-gradient(142deg, rgba(112,107,165,1) 0%, rgba(128,188,180,1) 100%);
	color: #fff;
    font-size: 16px;
	padding: 10px 0;
	margin-top: 20px;
}

#bar ul.area_s-dining li:last-child {
	width: 40%;
}


@media screen and (max-width: 768px) {
	#bar {
		padding-bottom: 50px;
	}
	#bar h2 {
		width: 70%;
		padding-top: 10px;
	}
	#bar .period {
		font-size: 13px;
	}
	#bar .intro {
		font-size: 13px;
		padding: 10px 0;
	}
	#bar .place,
	#bar .time {
		font-size: 13px;
	}
	#bar .place span,
	#bar .time span {
		padding-right: 10px;
	}
	#bar .note {
		font-size: 10px;
	}
	#bar .box {
		margin-top: 40px;
		margin: 20px 20px 0;
	}
	#bar .box h3 {
		font-size: 20px;
		padding: 15px 0 5px;
	}
	#bar .box ul {
		display: block;
		font-size: 13px;
	}
	#bar .box ul li {
		width: 100%;
	}
	#bar .box ul li div {
		margin-bottom: 15px;
	}
	#bar ul.area_s-dining {
		display: block;
		margin: 50px 20px 20px;
	}
	#bar ul.area_s-dining li:first-child {
		padding: 20px 30px;
		width: 100%;
	}
	#bar ul.area_s-dining li:first-child h2 {
		width: 90%;
	}
	#bar ul.area_s-dining li:first-child p {
		font-size: 13px;
	}
	#bar ul.area_s-dining li:last-child {
		width: 100%;
	}
	#bar .w630 .note {
		margin: 0 20px;
		text-align: left;
	}

}


/* ----------------------------------------------------
	event（イベント）
---------------------------------------------------- */
#event {
	background-color: #FFE1E5;
	padding-bottom: 100px;
}

#event h2 {
	width: 40%;
	margin: 0 auto;
	padding-top: 30px;
}

#event .intro {
	text-align: center;
	padding: 10px 0 50px;
}

#event ul.box {
	justify-content: flex-start;
	padding-top: 0;
}

#event ul.box li:last-child {
	width: 40%;
	margin-left: 37px;
}

#event ul.box li:last-child h3,
#event ul.box2 li:last-child h3 {
	color: #FF72A9;
	font-size: 24px;
	line-height: 1.5;
	margin-bottom: 20px;
}

#event ul.box li:last-child .deta,
#event ul.box2 li:last-child .deta {
	color: #323232;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 5px;
}

#event ul.box li:last-child .category {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40%;
	background-color: #FF72A9;
	color: #fff;
	font-size: 13px;
	border-radius: 20px;
	padding: 0 10px;
	margin-bottom: 5px;
}

#event ul.box li:last-child .article,
#event ul.box2 li:last-child .article {
	font-size: 16px;
	line-height: 1.5;
}

#event ul.box li:last-child tr,
#event ul.box2 li:last-child tr {
	vertical-align: top;
}

#event ul.box li:last-child tr th,
#event ul.box2 li:last-child tr th {
	display: inline-block;
	color: #FF72A9;
	margin-right: 10px;
}

#event ul.box li:last-child tr td span,
#event ul.box2 li:last-child tr td span {
	display: block;
	width: 240px;
}

#event ul.box li:last-child span.note,
#event ul.box2 li:last-child span.note {
	display: block;
	width: 100%;
	padding-left:1em;
	text-indent:-1em;
}

#event a.btn {
	background: rgb(255,114,180);
	background: linear-gradient(142deg, rgba(255,114,180,1) 0%, rgba(255,176,151,1) 100%);
	color: #fff;
	margin-top: 20px;
	padding: 16.5px 0;
}

#event ul.box.reverse {
	justify-content: flex-end;
}

#event ul.box.reverse li:first-child {
	order: 2;
}
#event ul.box.reverse li:last-child {
	order: 1;
}

#event ul.box.reverse li:last-child {
	width: 40%;
	margin-left: 0;
	margin-right: 37px;
}

#event ul.box.reverse li img:last-child {
    width: 100%;
    margin: 0;
}

#event ul.box.reverse li:last-child .deta {
	color: #323232;
}

#event ul.box2 {
	padding-top: 0;
}

#event ul.box2 li:first-child {
	width: 56%;
}

#event ul.box2 li:last-child {
	width: 40%;
	margin-left: 37px;
}

#event ul.box2 li:last-child p.note {
	margin-top: 10px;
	padding-left:1em;
	text-indent:-1em;
}

#event ul.box2 li:last-child p.note.text {
	padding-left:0;
	text-indent:0;
} 

@media screen and (max-width: 768px) {
	#event {
		padding-bottom: 50px;
	}
	#event h2 {
		width: 70%;
		padding-top: 10px;
	}
	#event .intro {
		font-size: 13px;
		padding: 10px 0 25px;
	}
	#event ul.box {
		margin-bottom: 50px;
	}
	#event ul.box li:last-child {
		width: 100%;
		margin-left: 0;
	}
	#event ul.box li:last-child h3,
	#event ul.box2 li:last-child h3 {
		font-size: 20px;
		margin-top: 20px;
		margin-bottom: 10px;
	}
	#event ul.box li:last-child .deta,
	#event ul.box2 li:last-child .deta {
		font-size: 13px;
	}
	#event ul.box li:last-child .article,
	#event ul.box2 li:last-child .article {
		font-size: 13px;
	}
	#event ul.box li:last-child tr th,
	#event ul.box2 li:last-child tr th {
		font-size: 13px;
	}
	#event ul.box li:last-child tr td,
	#event ul.box2 li:last-child tr td {
		font-size: 13px;
	}
	#event ul.box li:last-child span.note,
	#event ul.box2 li:last-child span.note,
	#event ul.box2 li:last-child p.note  {
		font-size: 10px;
	}
	#event a.btn {
		font-size: 16px;
		padding: 13.5px 0;
	}
	#event ul.box.reverse li:last-child {
		width: 100%;
		margin-right: 0;
	}
	#event ul.box li:last-child .category {
		width: 45%;
		font-size: 11px;
	}
	#event ul.box2 li:first-child {
		width: 100%;
	}
	#event ul.box2 li:last-child {
		width: 100%;
		margin-left: 0;
	}
}


/* ----------------------------------------------------
	spabar（SPA Bar）
---------------------------------------------------- */
#spabar {
	background-color: #1D2055;
	padding-bottom: 100px;
	color: #fff;
}

#spabar h2 {
	width: 40%;
	margin: 0 auto;
	padding-top: 30px;
}

#spabar .intro {
	text-align: center;
	padding: 10px 0 50px;
}

#spabar ul.box li:first-child {
	width: 56%;
}

#spabar ul.box li:last-child {
	width: 45%;
	margin-left: 37px;
}

#spabar ul.box li:last-child h3 {
	color: #CD80DF;
	font-size: 24px;
	line-height: 1.5;
	margin-bottom: 20px;
}

#spabar ul.box li:last-child .deta {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 5px;
}

#spabar ul.box li:last-child .category {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	background-color: #CD80DF;
	color: #fff;
	font-size: 13px;
	border-radius: 20px;
	padding: 0 10px;
	margin-bottom: 5px;
}

#spabar ul.box li:last-child .article {
	font-size: 16px;
	line-height: 1.5;
}

#spabar ul.box li:last-child tr {
	vertical-align: top;
}

#spabar ul.box li:last-child tr th {
	display: inline-block;
	color: #CD80DF;
	margin-right: 10px;
}

#spabar ul.box li:last-child tr td {
	color: #fff;
}

#spabar ul.box li:last-child tr td span {
	display: block;
	text-align: right;
	width: 190px;
}

#spabar ul.box li:last-child tr td span.note {
	width: 100%;
	text-align: left;
}

#spabar a.btn {
	background: rgb(141,89,180);
	background: linear-gradient(142deg, rgba(141,89,180,1) 0%, rgba(218,155,162,1) 100%);
	color: #fff;
	margin-top: 20px;
	padding: 16.5px 0;
}

#spabar #thermal_spa_swave {
	margin-top: -30px;
	padding-top: 30px;
}

#spabar .area_s-wave {
	border: 1px solid rgb(141,89,180);
	border-image: linear-gradient(142deg, rgba(141,89,180,1) 0%, rgba(218,155,162,1) 100%);
	border-image-slice: 1;
	border-radius: 25px;
	margin-bottom: 30px;
}

#spabar .area_s-wave ul {
	display: flex;
	justify-content: space-between;
}

#spabar .area_s-wave ul li:first-child {
	padding: 20px 30px 0;
	width: 46%;
}

#spabar .area_s-wave ul li:first-child h2 {
	position: relative;
    margin: -30px 0;
    padding-top: 0;
	width: 70%;
	z-index: 100;
}
#spabar .area_s-wave ul li:first-child h2::before {
	content: '';
	position: absolute;
	background-color: #1D2055;
	width: 150px;
	height: 30px;
	top: 0;
	left: -10px;
	z-index: -1;
}

#spabar .area_s-wave ul li:first-child p {
	margin-top: 50px;
}

#spabar .area_s-wave ul li:first-child a.btn {
	background: rgb(141,89,180);
	background: linear-gradient(142deg, rgba(141,89,180,1) 0%, rgba(218,155,162,1) 100%);
	color: #fff;
    font-size: 16px;
	padding: 10px 0;
	margin-top: 17px;
}

#spabar .area_s-wave ul li:last-child {
	width: 54%;
}

#spabar .area_s-wave .area_note {
	padding: 30px;
}

#spabar .area_s-wave .note {
	margin-bottom: 0;
	padding-left: 1em;
    text-indent: -1em;
}

@media screen and (max-width: 768px) {
	#spabar {
		padding-bottom: 50px;
	}
	#spabar h2 {
		width: 70%;
		padding-top: 10px;
	}
	#spabar .intro {
		font-size: 13px;
		padding: 10px 0 25px;
	}
	#spabar ul.box li:first-child {
		width: 100%;
	}
	#spabar ul.box li:last-child {
		width: 100%;
		margin-left: 0;
	}
	#spabar ul.box li:last-child h3 {
		font-size: 20px;
		margin-top: 20px;
		margin-bottom: 10px;
	}
	#spabar ul.box li:last-child .deta {
		font-size: 13px;
	}
	#spabar ul.box li:last-child .article {
		font-size: 13px;
	}
	#spabar ul.box li:last-child tr th {
		width: 30px;
		font-size: 13px;
	}
	#spabar ul.box li:last-child tr td {
		font-size: 13px;
	}
	#spabar ul.box .note {
		font-size: 10px;
	}
	#spabar a.btn {
		font-size: 16px;
		padding: 13.5px 0;
	}
	#spabar #thermal_spa_swave {
		margin-top: -1px;
		padding-top: 1px;
	}
	#spabar .area_s-wave {
		margin: 50px 20px 20px;
	}
	#spabar .area_s-wave ul {
		display: block;
	}
	#spabar .area_s-wave ul li:first-child {
		padding: 20px 30px;
		width: 100%;
	}
	#spabar .area_s-wave ul li:first-child p {
		font-size: 13px;
	}
	#spabar .area_s-wave ul li:last-child {
		width: 100%;
	}
	#spabar .area_s-wave .area_note {
		padding: 20px;
	}	
	#spabar .area_s-wave .note {
		font-size: 10px;
	}
}


/* ----------------------------------------------------
	stayplan（STAY PLAN）
---------------------------------------------------- */
#stayplan {
	background-color: #F3EFE6;
	padding-bottom: 100px;
}

#stayplan h2 {
	width: 45%;
	margin: 0 auto;
	padding-top: 60px;
	padding-bottom: 10px;
}

#stayplan .box {
	margin-top: 40px;
}

#stayplan .box h3 {
	font-size: 24px;
	color: #4976BE;
	padding: 25px 0 5px;
}

#stayplan .box .deta,
#stayplan .box .article {
	margin-bottom: 0;
}

#stayplan .box .deta {
	font-weight: bold;
}

#stayplan .box .note {
	margin: 20px 0;
	padding-left:1em;
	text-indent:-1em;
}

#stayplan .box ul {
	display: flex;
	justify-content: space-between;
	max-width: 840px;
	margin: 0 auto;
}

#stayplan .box ul li {
	width: 48%;
}

#stayplan .box ul li a.btn {
	background: rgb(73,100,192);
	background: linear-gradient(142deg, rgba(73,100,192,1) 0%, rgba(128,178,255,1) 100%);
	color: #fff;
	font-size: 18px;
	padding: 20px 0;
	margin-top: 20px;
}

@media screen and (max-width: 768px) {
	#stayplan {
		padding-bottom: 50px;
	}
	#stayplan h2 {
		width: 80%;
		padding-top: 10px;
	}
	#stayplan .box {
		margin-top: 20px;
	}
	#stayplan .w840 {
		margin: 0 20px;
	}
	#stayplan .box h3 {
		font-size: 20px;
		padding: 15px 0 5px;
		line-height: 1.5;
	}
	#stayplan .box .deta,
	#stayplan .box .article {
		font-size: 13px;
	}
	#stayplan .box .note {
		margin: 10px 0;
		font-size: 10px;
	}
	#stayplan .box ul {
		display: block;
		margin: 0 20px;
	}
	#stayplan .box ul li {
		width: 100%;
	}
	#stayplan .box ul li a.btn {
		font-size: 16px;
		padding: 15px 0;
	}
}

/* ----------------------------------------------------
	inquiry（RESERVATIONS & INQUIRIES）
---------------------------------------------------- */
#inquiry {
	padding-bottom: 20px;
	max-width: 950px;
	margin: 0 auto;
}

#inquiry h2 {
	width: 55%;
	margin: 0 auto;
	text-align: center;
	padding-top: 100px;
	font-size: 18px;
}

#inquiry .note {
	font-size: 13px;
	margin-bottom: 0;
	padding-left:1em;
	text-indent:-1em;
}

#inquiry ul {
	display: flex;
	justify-content: center;
	margin: 50px 0;
}

#inquiry ul li {
	width: 34%;
	text-align: center;
}

#inquiry ul li.border {
	border-left: 1px solid #000;
	width: 1px;
	margin: 0 10px;
}

#inquiry ul li h3 {
	font-size: 18px;
	line-height: 1.3;
}

#inquiry ul li a {
	display: block;
	width: 80%;
	margin: 15px auto 0;
}

#inquiry ul li .note {
	font-size: 15px;
	padding-left: 0;
	text-indent: 0;
	margin-top: 10px;
}

@media screen and (max-width: 768px) {
	#inquiry h2 {
		width: 70%;
		font-size: 16px;
		padding-top: 30px;
	}
	#inquiry ul {
		display: block;
		margin: 25px 0;
	}
	#inquiry ul li {
		width: 100%;
	}
	#inquiry ul li:last-child {
		margin-top: 30px;
	}
	#inquiry ul li h3 {
		font-size: 15px;
	}
	#inquiry ul li a {
		width: 60%;
		margin: 10px auto 0;
	}
	#inquiry ul li .note {
		font-size: 12px;
		margin-top: 5px;
	}
	#inquiry ul li.border {
		display: none;
	}
	#inquiry .note {
		font-size: 10px;
		margin: 0 20px;
	}
}