@charset "UTF-8";

@import url("https://use.typekit.net/blx8eoi.css");

:root {
	/* font */
	--gothic: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--mincho: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
	--athelas: "athelas", serif;
	--frutiger: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

	/* color */
	--blk: 35, 24, 21;
	--wht: 255, 255, 255;
	--yel: 255, 239, 38;
	--bwn: 50, 39, 35;
	--red: 230, 40, 54;
	--gry: 128, 128, 128;

	--spr: 248, 180, 188;
	--sum: 115, 189, 233;
	--aut: 277, 180, 134;
	--win: 186, 186, 186;
}

/* ----------------------------------------------------
	基本設定
---------------------------------------------------- */
html {
	scroll-behavior: smooth;
	/* scroll-padding-top: 80px; */
}

@media screen and (max-width: 768px) {
	html {
		/* scroll-padding-top: 21.33333vw; */
	}
}

/*
	reset
------------------------------ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
}

p {
	word-wrap: break-word;
}

p:not(:last-of-type) {
	margin-bottom: 1em;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset,
img {
	border: 0;
}

address,
b,
caption,
cite,
code,
dfn,
em,
i,
strong,
th,
var {
	font-style: normal;
	font-weight: normal;
}

caption,
th {
	text-align: left;
}

a {
	text-decoration: underline;
	transition: all 0.5s ease 0s;
}

a:hover {
	text-decoration: none;
	opacity: 0.7;
}

area {
	border: none;
	outline: none;
}

img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

/*
	表示設定
------------------------------ */
body {
	background: rgb(var(--yel));
	height: 100vh;
	height: 100dvh;
	line-height: 1.8;
	overflow-y: hidden;
}

*::-webkit-scrollbar {
	display: none;
}

.container {
	margin: 0 auto;
	width: 100%;
	height: 600px;
	/* overflow-y: hidden; */
	position: relative;
}

@media screen and (max-width: 768px) {
	.container {
		padding-top: 5vw;
		height: 100%;
		height: 91vh;
		position: relative;
		top: 9vw;
	}
}

/*
	font
------------------------------ */
body {
	font-family: var(--gothic);
	font-feature-settings: "palt"1;
	letter-spacing: 0.05em;
	font-weight: 500;
}

body,
th,
td {
	color: var(--blk);
	font-size: 16px;
	font-weight: normal;
}

@media screen and (max-width: 768px) {

	body,
	th,
	td {
		font-size: 3.73333vw;
	}
}

/*
	SP,PC表示切り替え
------------------------------ */
.pc {
	display: block;
}

.sp {
	display: none;
}

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

	.sp {
		display: block;
	}
}

/*
	list
------------------------------ */
ul.list li {
	padding-left: 1.25em;
	text-indent: 0;
	position: relative;
}

ul.list li::before {
	margin-right: 0.25em;
	position: absolute;
	left: 0;
}

/* note */
ul.note li {
	font-size: 12px;
}

ul.note li::before {
	content: "※";
}

@media screen and (max-width: 768px) {
	ul.note li {
		font-size: 2.93333vw;
	}
}

/* type */
ul.type1 li::before {
	content: "●";
}

/*
	linkBtn
------------------------------ */
.linkBtn a {
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

@media screen and (max-width: 768px) {
	.linkBtn a {}
}

/* ----------------------------------------------------
	ポップアップ
---------------------------------------------------- */
.popup-content {
	background: rgb(var(--wht));
	max-width: 1200px;
	width: 90%;
	border: solid 7px rgb(var(--gry));
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 1001;
	transform: translate(-50%, -50%);
	transition: visibility 0s, opacity 0.5s linear;
}

.popup-content.active {
	opacity: 1;
	visibility: visible;
}

/*
	popupWrap
------------------------------ */
.popup-content .popupWrap {
	position: relative;
}

@media screen and (max-width: 768px) {}

/*
	close
------------------------------ */
.popup-content .close {
	position: absolute;
	top: -20px;
	right: -20px;
}

.popup-content .close .close-btn {
	background: rgb(var(--wht));
	width: 40px;
	height: 40px;
	border: solid 1px rgb(var(--gry));
	border-radius: 40px;
	position: relative;
	transform: rotate(45deg);
	cursor: pointer;
}

.popup-content .close .close-btn::before,
.popup-content .close .close-btn::after {
	background: rgb(var(--gry));
	width: 60%;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	content: "";
}

.popup-content .close .close-btn::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

@media screen and (max-width: 768px) {
	.popup-content .close {
		position: absolute;
		top: -15px;
		right: -15px;
	}

	.popup-content .close .close-btn {
		width: 30px;
		height: 30px;
	}
}

/*
	popup-overlay
------------------------------ */
.popup-overlay {
	background-color: rgba(var(--blk), 0.75);
	width: 100%;
	height: 100%;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}

.popup-overlay.active {
	display: block;
}

/*
	popupWrap
------------------------------ */
.popup-content.room {
	background: rgba(var(--wht), 0.9);
}

.popup-content.room .popupWrap {
	padding: 2rem 5%;
	display: grid;
	grid-template-columns: 60% 40%;
	grid-template-rows: 1.5fr 8.5fr;
}

@media screen and (max-width: 1000px) {
	.popup-content.room .popupWrap {
		padding: 3.2vw 5%;
	}
}

@media screen and (max-width: 768px) {
	.popup-content.room .popupWrap {
		padding: 0;
		display: block;
		/* display: flex; */
	}
}

/* roomTitle */
.popup-content.room .popupWrap .roomTitle {
	padding-top: 1rem;
	padding-left: 3rem;
	line-height: 1;
	font-family: var(--mincho);
	font-size: 45px;
	grid-column: 2/3;
	grid-row: 1/2;
	display: flex;
	align-items: baseline;
}

.popup-content.room .popupWrap .roomTitle span {
	font-size: 24px;
	font-weight: normal;
}

.popup-content.room .popupWrap .roomTitle.spring {
	color: #A83D37;
}

.popup-content.room .popupWrap .roomTitle.summer {
	color: #0080B0;
}

.popup-content.room .popupWrap .roomTitle.autumn {
	color: #DDB252;
}

.popup-content.room .popupWrap .roomTitle.winter {
	color: #838486;
}

@media screen and (max-width: 1000px) {
	.popup-content.room .popupWrap .roomTitle {
		font-size: 4.8vw;
	}

	.popup-content.room .popupWrap .roomTitle span {
		font-size: 2.8vw;
	}
}

@media screen and (max-width: 768px) {
	.popup-content.room .popupWrap .roomTitle {
		padding: 1rem 0;
		font-size: 6.4vw;
		justify-content: center;
	}

	.popup-content.room .popupWrap .roomTitle span {
		font-size: 4.8vw;
	}
}

/* roomContent */
.popup-content.room .popupWrap .roomContent {
	padding-top: 1rem;
	padding-left: 3rem;
	grid-column: 2/3;
	grid-row: 2/3;
}

.popup-content.room .popupWrap .roomContent .text {
	margin-bottom: 1rem;
	font-size: 14px;
}

.popup-content.room .popupWrap .roomContent .text .textColor {
	color: #E60012;
}

.popup-content.room .popupWrap .roomContent .info dt {
	font-size: 14px;
}

.popup-content.room .popupWrap .roomContent .info dd {
	line-height: 1.5;
	font-size: 13px;
	letter-spacing: -0.005em;
}

.popup-content.room .popupWrap .roomContent .info dd li::before {
	color: rgb(var(--gry));
	font-size: 10px;
}

@media screen and (max-width: 1000px) {

	.popup-content.room .popupWrap .roomContent .text,
	.popup-content.room .popupWrap .roomContent .info dt {
		font-size: 1.6vw;
	}

	.popup-content.room .popupWrap .roomContent .info dd {
		font-size: 1.4vw;
	}
}

@media screen and (max-width: 768px) {
	.popup-content.room .popupWrap .roomContent {
		padding: 0.5rem 1rem 1rem;
	}

	.popup-content.room .popupWrap .roomContent .text {
		margin-bottom: 0.5rem;
		line-height: 1.5;
		font-size: 3.46667vw;
		letter-spacing: -0.005em;
	}

	.popup-content.room .popupWrap .roomContent .info dt {
		font-size: 3.2vw;
	}

	.popup-content.room .popupWrap .roomContent .info dd {
		line-height: 1.25;
		font-size: 2.93333vw;
	}
}

/* slideSection */
.popup-content.room .popupWrap .slideSection {
	grid-column: 1/2;
	grid-row: 1/3;
}

.roomSlide {
	margin-bottom: 0 !important;
	line-height: 1;
}

.roomSlide .slide_dots {
	margin-top: 0.5rem;
	display: flex;
	justify-content: center;
}

.roomSlide .slide_dots li {
	margin: 0 0.5rem;
	line-height: 1;
	font-size: 0;
}

.roomSlide .slide_dots button {
	background: rgba(var(--gry), 0.7);
	margin: 0;
	padding: 0;
	width: 10px;
	height: 10px;
	text-indent: -9999px;
	border: none;
	border-radius: 100%;
	display: inline-block;
	outline: none;
}

.roomSlide .slide_dots .slick-active button {
	background: rgb(var(--blk));
}

/*
	amenitiesPopup
------------------------------ */
.amenitiesPopup {
	padding: 3rem 0;
}

.amenitiesPopup .title {
	margin-bottom: 1rem;
	line-height: 1;
	font-family: var(--mincho);
	font-size: 40px;
	font-weight: bold;
	text-align: center;
}

.amenitiesPopup .image {
	text-align: center;
}

.amenitiesPopup .image img {
	width: 83.33333%;
}

@media screen and (max-width: 1000px) {
	.amenitiesPopup {
		padding: 5.4vw 0;
	}

	.amenitiesPopup .title {
		font-size: 4vw;
	}
}

@media screen and (max-width: 768px) {
	.amenitiesPopup {
		padding: 3rem 0;
	}

	.amenitiesPopup .title {
		font-size: 6.4vw;
	}

	.amenitiesPopup .image {
		text-align: center;
	}

	.amenitiesPopup .image img {
		width: 90%;
	}
}