@charset "utf-8";
/* ===================================================
	Room CSS
====================================================== */
#sec_lead {
	padding-bottom: clamp(50px, 8.6vw, 6.8rem);
}
.cmn_tit_02 .cap {
	display: inline-block;
	margin-bottom: 1.25rem;
	padding: 7px 2%;
	font-size: var(--f18);
	color: #fff;
	background-color: #000;
}
.cmn_tit_02 .jp {
	display: block;
}
.cmn_tit_02 .en {
	margin-top: 20px;
	font-size: var(--f14);
}
.cmn_table_01,
.cmn_table_01>div {
	border-color: #999;
}
.cmn_table_01>div>dt {
	background-color: var(--cl-01);
}

@media screen and (min-width: 769px) {
	.cmn_table_01>div>dt {
		flex-shrink: 0;
		width: max(135px,18.7%);
		padding: var(--f21) 1rem var(--f21) var(--f66);
	}
}
@media screen and (max-width: 768px) {
	.cmn_tit_02 .cap {
		margin-bottom: 0.5rem;
		padding: 5px 4%;
		font-size: var(--f17);
	}
	.cmn_tit_02 .jp {
		font-size: var(--f27);
	}
	.cmn_tit_02 .en {
		font-size: var(--f13);
	}
}


/* ---------------------------------------------------
	Common Parts
------------------------------------------------------ */
.r_nav {
	padding: min(39vw,50px) 0 min(78vw,100px);
}
.r_nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: min(2vw, 30px);
	margin-top: min(7.4vw, 95px);
}
.r_nav li:not(.other) {
	width: 19.5%;
}
.r_nav li:not(.other) a {
	position: relative;
	z-index: 0;
	border: 1px solid #d0cccc;
	padding: min(2.5vw,30px) min(1.2vw,1rem);
	background: linear-gradient(to top, var(--cl-grad));
	transition: border 0.5s, background 0.5s, color 0.35s;
}
.r_nav li:not(.other) a::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background-color: #fff;
	transition: opacity 0.5s;
}
.r_nav li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	text-align: center;
}
.r_nav li .line {
	border-bottom: 1px solid rgba(0,0,0,0.2);
	margin-bottom: 5px;
	padding: 0 5px;
	transition: border-color 0.3s;
}
.r_nav li .current {
	border: 0 !important;
	color: #fff;
}
.r_nav li .current::before {
	opacity: 0;
}
.r_nav li .current .line {
	border-color: rgba(255,255,255,0.5);
}
.r_nav .other {
	align-self: center;
	text-decoration: underline;
	text-underline-offset: 3px;
	padding-left: min(1.5vw, 30px);
}
.r_nav .other a {
	padding-right: 1.5rem;
	background: url(../../room/img/arrow.svg)no-repeat center right/1rem;
}

@media screen and (min-width: 961px) {
	.r_nav.south li:not(.other) {
		width: 18%;
	}
}
@media screen and (hover: hover) and (min-width: 769px) {
	.r_nav li:not(.other) a:hover {
		opacity: 1;
		border: 0;
		background: linear-gradient(to top, var(--cl-grad));
		color: #fff;
	}
	.r_nav li a:hover::before {
		opacity: 0;
	}
	.r_nav li:not(.other) a:hover .line {
		border-color: rgba(255,255,255,0.5);
	}
}
@media screen and (max-width: 768px) {
	.r_nav {
		padding: 40px 0 50px;
	}
	.r_nav ul {
		gap: 12px 2%;
	}
	.r_nav li:not(.other) {
		width: 49%;
	}
	.r_nav .other {
		margin-top: 1.5rem;
	}
}
@media screen and (max-width: 400px) {
	.r_nav li:not(.other) {
		width: 100%;
	}
}


.r_tit {
	text-align: center;
	text-transform: uppercase;
}
.r_tit span {
	display: block;
	font-size: var(--f37);
}


/* ---------------------------------------------------
	.p-list
------------------------------------------------------ */
#sec_main {
	padding-bottom: min(15.6vw,200px);
}
#sec_south {
	margin-bottom: min(3.1vw,40px);
	padding: min(12.5vw,160px) 0 min(8.6vw,110px);
	background: url(../img/point_flower_wh.webp) no-repeat right -1vw bottom -3.8vw / min(20vw, 320px),
	url(../img/bg_grad_l.webp) no-repeat left top / 100%,
	url(../img/bg_grad_gr.webp);
}
.p-list .r_tit {
	display: flex;
	align-items: center;
}
.p-list .r_tit span {
	margin-right: 1em;
}
.r_lists {
	display: flex;
    flex-wrap: wrap;
    gap: 3.5rem 6.6%;
    margin-top: min(5.5vw, 70px);
}
.r_lists .item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.r_lists .item .image {
	overflow: hidden;
	background-color: #181818;
}
.r_lists .item .image .ofi {
	transition: opacity 0.4s linear, transform 0.5s linear;
}
.r_lists .item .cap {
	position: absolute;
	z-index: 1;
	top: -3%;
	left: -3%;
    padding: 1.4% 4.5%;
	font-size: var(--f18);
	color: #fff;
	background-color: #000;
}
.r_lists .item .r_name {
	border-bottom: 1px solid rgba(0,0,0,0.2);
	padding: 1rem 0 0.75rem;
	font-size: var(--f24);
	text-align: center;
}
.r_lists .item ul {
	display: flex;
	flex-wrap: wrap;
	justify-self: center;
	gap: 5px 2rem;
	margin-top: 1rem;
}

@media screen and (hover: hover) and (min-width: 769px) {
	.r_lists .item:hover {
		opacity: 1;
	}
	.r_lists .item:hover .image .ofi {
		transform: scale(1.1) translateZ(0); // or will-change: filter;
		opacity: 0.62;
	}
}
@media screen and (min-width: 769px) {
	.r_lists .item {
		width: 46.7%;
	}
}
@media screen and (max-width: 768px) {
	.r_lists {
		justify-content: center;
		gap: 2rem 3%;
		margin-top: 40px;
	}
	.r_lists .item {
		width: max(280px, 48.5%);
	}
	.r_lists .item .cap {
		font-size: var(--f14);
	}
	.r_lists .item .r_name {
		font-size: var(--f18);
	}
}


/* ---------------------------------------------------
	.p-detail
------------------------------------------------------ */
.p-detail .r_tit span {
	color: #183209;
}

#sec_detail .bg_grad {
	background: url(../img/bg_grad_l.webp) no-repeat left top 15% / auto,
	url(../img/bg_grad_gr.webp);
}
#sec_detail .bg_grad .cmn_tit_02 {
	padding: min(7.8vw,100px) 0 min(5.5vw, 70px);
}
#sec_detail .txt {
	padding: min(5.9vw,75px) 0 min(8.6vw,110px);
	line-height: 2;
}
.calendar_col .cmn_tit_02 {
	padding: min(10vw,120px) 0 min(3.9vw,50px);
}
.calendar_col .cmn_tit_02 .en {
	margin-top: 7px;
}
.calendar_489ban {
	display: flex;
	align-items: flex-start;
	gap: 20px 4%;
}
.calendar_489ban table {
	width: min(100%,400px);
	text-align: center;
}
.calendar_489ban table caption {
	padding: 1rem 0;
	font-size: var(--f18);
}
.calendar_489ban table th {
	padding: 1.15rem 0;
	border: 2px solid #e4e0dd;
	border-bottom: none;
    background-color: #f1f1e8;
}
.calendar_489ban table td {
	border: 2px solid #e4e0dd;
	padding: 0.75rem 0;
	line-height: 1.2;
}
.calendar_489ban table th:first-child,
.calendar_489ban table td:first-child,
.calendar_489ban table td:first-child a,
.calendar_489ban table .holiday,
.calendar_489ban table .holiday a {
	color: #d43337;
}
.calendar_489ban table th:last-child,
.calendar_489ban table td:last-child,
.calendar_489ban table td:last-child a {
    color: #777bb4;
}

.summary_col {
	padding: min(7.8vw,100px) 0 min(9.4vw,120px);
}
.summary_col h2 {
	display: flex;
	align-items: center;
	gap: 0 var(--f21);
	padding: 20px 0;
	font-size: var(--f27);
	text-transform: uppercase;
}
.summary_col h2::before {
	content: '';
	display: block;
	width: var(--f30);
	height: 1px;
	background-color: #a49999;
}
.summary_col .link_col {
	margin-top: min(7.8vw, 100px);
	text-align: center;
}
.summary_col .back {
	display: inline-block;
	margin-top: 30px;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}
.summary_col dd .icon {
	margin-right: 10px;
	padding-left: 30px;
	background: url(../img/icon_nonsmk.svg)no-repeat center left/20px;
}
.summary_col .list_note {
	margin-top: 1rem;
}
.summary_col .list_note li,
.summary_col .note {
	display: inline-block;
	padding-left: 1rem;
	text-indent: -1rem;
}
.summary_col .list_note li::before {
	content: '※';
}

@media screen and (min-width: 769px) {
	#sec_detail .txt {
		text-align: center;
	}
	.calendar_489ban table {
		width: 48%;
	}
}
@media screen and (max-width: 768px) {
	#sec_detail .bg_grad {
		background-size: 100%, 10%;
		background-position: top left;
	}
	#sec_detail .slick .ofi {
		aspect-ratio: 20 / 21;
	}
	.calendar_489ban {
		flex-direction: column;
		align-items: center;
	}
	.calendar_489ban table th,
	.calendar_489ban table td {
		padding: 0.5rem 0;
	}
}
