/* リキッドレイアウト対応 */

body {
	font-family: "Noto Serif", serif;
	font-weight: 400;
}

.pc-only {
	display: none;
}

html {
	font-size: 16px;
	font-size: 3.7209302326vw;
}

html {
	scroll-padding-top: 4.3125rem;
}

body.wp-theme-ks-com-group-theme {
	background-color: #F6F4F4;
	color: #000000;
}

body.wp-theme-ks-com-group-theme main {
	margin-top: 4.3125rem;
}

body.wp-theme-ks-com-hotel-theme {
	background-color: var(--color-primary);
	color: var(--color-text);
}

body.wp-theme-ks-com-hotel-theme main {
	margin-top: 3.75rem;
}

/* 画面の高さに合わせてフッターを下に広げる */

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

footer {
	margin-top: auto;
}

/* ドロワー表示時、 背景を固定してスクロールできないようにする */

body.is-fixed {
	height: 100%;
	overflow: hidden;
	width: 100%;
}

/* pcの電話番号発信対応 */

/* ホバー */

a,
button {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

/* 非表示設定（視覚的に隠しつつスクリーンリーダーでは読み上げられる） */

/* https://gist.github.com/roatnek/c24d5257c4f6d5b1ef0f2328609a0221 */

.visually-hidden {
	clip: rect(1px, 1px, 1px, 1px) !important;
	height: 1px !important;
	overflow: hidden !important;
	position: absolute !important;
	width: 1px !important;
}

.wbr {
	display: inline-block;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body { /* 実機端末を横向きにした際のブラウザの自動拡大をオフ */
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%; /* 上記のSafari用 */
	-webkit-text-size-adjust: 100%; /* フォントを滑らかに（GoogleFontsがデザインより太く見える時の対処） */
	-webkit-font-smoothing: antialiased;
	line-height: 1;
	min-height: 100vh;
	text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	display: inline-block;
	max-width: 100%;
	vertical-align: bottom;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

hr {
	border: 0;
	height: 0;
	margin: 0;
	padding: 0;
}

address {
	font-style: normal;
}

/* js-triggerと一緒に使う */

/* =========================================== */

/*                 inview                      */

/* =========================================== */

.inview {
	opacity: 0;
	transform: translateY(30px);
	transition: transform 2s, opacity 2s;
}

.inview.show {
	opacity: 1;
	transform: translateY(0);
}

/* =========================================== */

/*                slide-up                     */

/* =========================================== */

.slide-up {
	display: inline-block;
	overflow: hidden;
}

.slide-up * {
	display: inline-block;
	opacity: 0;
	transform: translateY(100%);
}

.slide-up.show * {
	animation-duration: 1s;
	animation-fill-mode: forwards;
	animation-name: slideInFromBottom;
}

/* =========================================== */

/*               anime-zoom                    */

/* =========================================== */

.anime-zoom__img {
	overflow: hidden;
}

.anime-zoom:hover .anime-zoom__img img {
	transform: scale(1.2, 1.2);
}

/* =========================================== */

/*          ACF Blocks - 汎用スタイル            */

/* =========================================== */

/* ------------------------------------------- */

/*          block-section-header               */

/* ------------------------------------------- */

.block-section-header {
	border-bottom: 0.1875rem solid currentColor;
	padding-bottom: 1.1875rem;
	position: relative;
	width: 100%;
}

.block-section-header__title {
	font-feature-settings: "palt";
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 0.875;
}

/* ------------------------------------------- */

/*          block-category-header              */

/* ------------------------------------------- */

.block-category-header {
	border-bottom: 0.0625rem dashed currentColor;
	padding-bottom: 0.375rem;
	padding-top: 0.375rem;
	width: 100%;
}

.block-category-header.-line-solid {
	border-bottom-style: solid;
}

.block-category-header__title {
	font-feature-settings: "palt";
	font-size: 1.5625rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 130%;
}

.block-category-header.-size-large .block-category-header__title {
	font-size: 1.6875rem;
	font-weight: 500;
}

.block-category-header__title span {
	font-size: 0.875rem;
	font-weight: 700;
	vertical-align: middle;
}

/* ------------------------------------------- */

/*          block-category-list                */

/* ------------------------------------------- */

.block-category-list {
	width: 100%;
}

.block-category-list__category-sets {
	grid-gap: 2.5rem;
	align-items: start;
	display: grid;
	gap: 2.5rem;
}

.block-category-list__set {
	grid-gap: 1.5rem;
	display: grid;
	gap: 1.5rem;
}

.block-category-list__items {
	grid-gap: 1.875rem;
	display: grid;
	gap: 1.875rem;
}

.block-category-list__item {
	font-feature-settings: "palt";
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.5625;
}

.block-category-list__item-title {
	font-feature-settings: "palt";
	font-size: 0.8125rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	line-height: 1.9230769231;
	margin-bottom: 0.5rem;
}

.block-category-list__item-text {
	font-feature-settings: "palt";
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.5625;
}

/* ------------------------------------------- */

/*          block-full-image                   */

/* ------------------------------------------- */

.block-full-image {
	width: 100%;
}

.block-full-image__img {
	-o-object-fit: cover;
	aspect-ratio: 370/190;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.block-full-image__placeholder {
	align-items: center;
	aspect-ratio: 370/190;
	background-color: #C9C9C9;
	color: #979797;
	display: flex;
	font-size: 0.875rem;
	justify-content: center;
	width: 100%;
}

/* ------------------------------------------- */

/*          block-link-button                  */

/* ------------------------------------------- */

.block-link-button {
	display: inline-grid;
	gap: 0.625rem;
}

.block-link-button__description {
	font-feature-settings: "palt";
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.5625;
}

/* ------------------------------------------- */

/*          block-rich-text                    */

/* ------------------------------------------- */

.block-rich-text {
	font-feature-settings: "palt";
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.5625;
}

.block-rich-text strong {
	font-size: 0.8125rem;
	font-weight: 900;
	letter-spacing: 0.1em;
}

/* ------------------------------------------- */

/*          block-page-nav                     */

/* ------------------------------------------- */

.block-page-nav {
	width: 100%;
}

.block-page-nav__items {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5625rem 1.3125rem;
}

.block-page-nav__item {
	width: 100%;
}

.block-page-nav__link {
	align-items: baseline;
	border-bottom: 0.0625rem solid currentColor;
	display: flex;
	justify-content: space-between;
	min-height: 1.9375rem;
	padding-bottom: 0.625rem;
	transition: opacity 0.3s;
}

.block-page-nav__label {
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1;
}

.block-page-nav__arrow {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M0.353516 0.353516L5.52246 5.52246L10.6914 0.353516' stroke='black' stroke-width='1'/%3E%3C/svg%3E");
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: currentColor;
	height: 0.4375rem;
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M0.353516 0.353516L5.52246 5.52246L10.6914 0.353516' stroke='black' stroke-width='1'/%3E%3C/svg%3E");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 0.75rem;
}

/* =========================================== */

/*             Common Button 1                 */

/* =========================================== */

.c-btn-1 a {
	display: inline-grid;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.714;
	position: relative;
	text-transform: uppercase;
	transition: opacity 0.3s ease;
	width: -moz-fit-content;
	width: fit-content;
}

.c-btn-1 a::after {
	-webkit-mask-image: url("../img/common/icon-arrow-right-1.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 0.75rem;
	mask-image: url("../img/common/icon-arrow-right-1.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: right 0.3s ease, left 0.3s ease;
	width: 0.8125rem;
}

.c-btn-1[data-direction=right] a {
	padding-right: 1.125rem;
}

.c-btn-1[data-direction=right] a::after {
	right: 0;
}

.c-btn-1[data-direction=left] a {
	padding-left: 1.125rem;
}

.c-btn-1[data-direction=left] a::after {
	left: 0;
	transform: translateY(-50%) rotate(180deg);
}

/* =========================================== */

/*             Common Button 2                 */

/* =========================================== */

.c-btn-2__link {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.714;
	margin-bottom: 0.0625rem;
	min-width: 11.875rem;
	padding: 0 1.25rem 0.3125rem 0.25rem;
	position: relative;
	transition: opacity 0.3s ease;
}

.c-btn-2__link::before {
	border-bottom: 0.09375rem solid currentColor;
	border-right: 0.09375rem solid currentColor;
	bottom: 0;
	content: "";
	height: 0.5rem;
	left: 0;
	position: absolute;
	transform: skewX(50deg);
	transition: left 0.5s ease;
	width: 100%;
}

/* =========================================== */

/*            Common Contact                    */

/* =========================================== */

.c-contact {
	align-items: end;
	display: flex;
	gap: 2.375rem;
	justify-content: space-between;
	margin-top: 0.8125rem;
	padding-left: 0.9375rem;
	padding-right: 0.625rem;
}

.c-contact__tel {
	align-items: center;
	display: flex;
	gap: 0.625rem;
}

.c-contact__icon {
	height: 2.125rem;
	width: 2.125rem;
}

.c-contact__icon img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.c-contact__info {
	display: flex;
	flex-direction: column;
	gap: 0.1875rem;
}

.c-contact__label {
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1;
}

.c-contact__tel-link {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
}

.c-contact__sns {
	align-items: center;
	display: flex;
	gap: 0.75rem;
}

.c-contact__sns-link {
	align-items: center;
	display: flex;
	height: 2rem;
	justify-content: center;
	width: 2rem;
}

.c-contact__sns-link.-insta {
	height: 2.125rem;
	width: 2.125rem;
}

.c-contact__sns-link.-insta::before {
	-webkit-mask-image: url("../img/common/icon-insta.svg");
	-webkit-mask-size: contain;
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 100%;
	mask-image: url("../img/common/icon-insta.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	transition: background-color 0.3s;
	width: 100%;
}

.c-contact__sns-link.-line::before {
	-webkit-mask-image: url("../img/common/icon-line.svg");
	-webkit-mask-size: contain;
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 100%;
	mask-image: url("../img/common/icon-line.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	transition: background-color 0.3s;
	width: 100%;
}

.c-content {
	--default-font-size: 1rem;
	--default-line-height: 1.5625;
	font-feature-settings: "palt";
	letter-spacing: 0.1em;
}

.c-content h2,
.c-content h3,
.c-content h4,
.c-content h5,
.c-content h6 {
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.35;
}

.c-content h4,
.c-content h5,
.c-content h6 {
	margin-bottom: -0.9375rem;
}

.c-content h2 {
	border-bottom: 0.0625rem solid currentColor;
	border-top: 0.0625rem solid currentColor;
	font-size: 1.5rem;
	padding: 1rem 0.75rem 1.0625rem;
}

.c-content h2:not(:first-child) {
	margin-top: 1.875rem;
}

.c-content h3 {
	font-size: 1.5rem;
}

.c-content h4 {
	font-size: 1.25rem;
}

.c-content h5 {
	color: #979797;
	font-size: 1.25rem;
}

.c-content h6 {
	font-size: 1.125rem;
}

.c-content p {
	font-size: var(--default-font-size);
	line-height: var(--default-line-height);
}

.c-content a {
	-webkit-text-decoration: underline;
	color: #91A226;
	text-decoration: underline;
	text-underline-offset: 0.3ex;
	transition: opacity 0.3s ease;
}

.c-content img {
	height: auto;
	width: 100%;
}

.c-content strong {
	font-weight: 700;
}

.c-content hr {
	border-top: 0.0625rem solid #000000;
}

.c-content blockquote {
	background-color: #fff;
	font-style: italic;
	padding: 2.5rem 1.5rem 1.25rem;
	position: relative;
}

.c-content blockquote::before {
	color: #000000;
	content: "“";
	font-size: 7.5rem;
	left: 0;
	position: absolute;
	top: -2rem;
}

.c-content blockquote cite {
	color: #979797;
	margin-top: 0.75rem;
	text-align: right;
}

.c-content blockquote p + p {
	margin-top: 0.75rem;
}

.c-content ul li,
.c-content ol li {
	font-size: var(--default-font-size);
	letter-spacing: 0.05em;
	line-height: var(--default-line-height);
	margin-bottom: 0.625rem;
	margin-left: 0.75rem;
	position: relative;
}

.c-content ul li {
	padding-left: 1.25rem;
}

.c-content ul li::before {
	background-color: #91A226;
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 0.5rem;
	left: 0;
	position: absolute;
	top: 0.75em;
	transform: translateY(-50%);
	width: 0.5rem;
}

.c-content ol {
	counter-reset: num;
}

.c-content ol li {
	padding-left: 1.5rem;
}

.c-content ol li::before {
	color: #91A226;
	content: counter(num) ".";
	counter-increment: num;
	font-size: var(--default-font-size);
	font-weight: 700;
	left: 0;
	position: absolute;
	text-align: left;
	top: 0;
	width: 1.5rem;
}

.c-content ul ul,
.c-content ol ul,
.c-content ul ol,
.c-content ol ol {
	margin: 0.625rem 0 0.625rem 1.125rem;
}

.c-content table thead {
	background-color: #e5e5e5;
	border-bottom: 0.0625rem solid;
	color: #000000;
}

.c-content table tfoot {
	background-color: #e5e5e5;
	border-top: 0.0625rem solid;
}

.c-content table td {
	background-color: #fff;
}

.c-content table th,
.c-content table td {
	line-height: 1.25;
	padding: 0.5rem;
}

/* =========================================== */

/*         Common Reservation Links             */

/* =========================================== */

.c-reservation-links {
	align-items: center;
	display: flex;
	height: 3.875rem;
}

.c-reservation-links__link {
	grid-gap: 0.5rem;
	-webkit-text-decoration: none;
	align-items: center;
	display: grid;
	gap: 0.5rem;
	grid-template-columns: repeat(2, auto);
	height: inherit;
	padding-left: 1.5625rem;
	padding-right: 1.5625rem;
	text-decoration: none;
	transition: opacity 0.3s;
}

.c-reservation-links__link::before {
	-webkit-mask-image: var(--icon);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: currentColor;
	content: "";
	display: inline-block;
	flex-shrink: 0;
	height: var(--icon-height);
	mask-image: var(--icon);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: var(--icon-width);
}

.c-reservation-links__link:nth-of-type(2) {
	border-left: 0.0625rem solid #282828;
}

.c-reservation-links__item-text {
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.2em;
}

/* =========================================== */

/*          Footer                             */

/* =========================================== */

.footer {
	background-color: #000000;
	color: #fff;
	padding-bottom: 1.25rem;
	padding-top: 2.5rem;
}

.footer__inner {
	position: relative;
}

.footer__main {
	grid-gap: 3.375rem;
	display: grid;
	gap: 3.375rem;
	grid-template-columns: 1fr;
	margin-bottom: 4.375rem;
}

.footer__logo {
	margin-bottom: 0.3125rem;
	width: 21.375rem;
}

.footer__logo img {
	filter: brightness(1) invert(1);
}

.footer__description {
	font-feature-settings: "palt";
	color: #fff;
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.533;
	text-align: center;
}

.footer__line {
	text-align: center;
}

.footer__line-link {
	align-items: center;
	border: 1px solid #fff;
	border-radius: 0.25rem;
	display: inline-flex;
	flex-direction: column;
	gap: 0.3125rem;
	height: 5.8125rem;
	justify-content: center;
	transition: background-color 0.3s ease;
	width: 17.375rem;
}

.footer__line-icon {
	height: 2.5625rem;
	width: 2.6875rem;
}

.footer__line-icon svg {
	height: 100%;
	width: 100%;
}

.footer__line-icon .footer__line-icon-path {
	fill: #fff;
}

.footer__line-text {
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	line-height: 1.714;
	margin: 0;
	text-align: center;
}

.footer__bottom {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.footer__links {
	align-items: center;
	display: flex;
	gap: 1.25rem;
}

.footer__privacy,
.footer__company {
	-webkit-text-decoration: underline;
	color: #fff;
	font-family: "Inter", sans-serif;
	font-size: 0.6875rem;
	font-weight: 400;
	line-height: 1.818;
	text-decoration: underline;
	text-underline-offset: 0.215em;
}

.footer__copyright {
	color: #fff;
	font-family: "Inter", sans-serif;
	font-size: 0.6875rem;
	font-weight: 400;
	line-height: 1.818;
	margin: 0;
	text-align: center;
}

/* =========================================== */

/*          Google reCAPTCHA Badge             */

/* =========================================== */

.grecaptcha-badge {
	visibility: hidden;
}

.info-card__link {
	grid-gap: 1.375rem;
	background: #fff;
	border-radius: 0.625rem;
	color: #000000;
	display: grid;
	gap: 1.375rem;
	grid-template-rows: auto 1fr;
	min-height: 100%;
	padding: 1.0625rem 0.9375rem 2.25rem;
}

.info-card__thumbnail {
	border: 0.0625rem solid #C9C9C9;
	border-radius: 0.3125rem;
	overflow: hidden;
}

.info-card__thumbnail img {
	-o-object-fit: cover;
	aspect-ratio: 340/200;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.info-card__link:hover .info-card__thumbnail img {
	transform: scale(1.05);
}

.info-card__content {
	display: flex;
	flex-direction: column;
	position: relative;
}

.info-card__meta {
	align-items: center;
	display: flex;
	gap: 0.75rem;
	margin-bottom: 0.25rem;
}

.info-card__date {
	font-family: "Poppins", sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.05em;
	line-height: 1.2;
}

.info-card__label {
	font-family: "Inter", sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.333;
}

.info-card__title {
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.5;
	margin-bottom: 0.6875rem;
}

.info-card__description {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: var(--line-clamp);
	display: -webkit-box;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	line-height: 1.692;
	overflow: hidden;
}

.info-card__btn {
	margin-top: 1rem;
}

.inner {
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.875rem;
	padding-right: 1.875rem;
	width: 100%;
}

/* ページ表示時の全体ふわっと表示 */

body {
	animation: pageFadeIn 0.5s ease-out forwards;
}

/* =========================================== */

/*          Page FV                            */

/* =========================================== */

.page-fv {
	position: relative;
}

/* Group */

.wp-theme-ks-com-group-theme .page-fv {
	background-color: #fff;
	padding-bottom: 1.875rem;
	padding-top: 1.75rem;
}

.wp-theme-ks-com-group-theme .page-fv .page-fv__title-en {
	font-size: 2.6875rem;
}

.wp-theme-ks-com-group-theme .page-fv .page-fv__title-ja {
	font-size: 1.0625rem;
}

/* Hotel */

.wp-theme-ks-com-hotel-theme .page-fv {
	background-image: var(--page-fv-bg-sp);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	height: 12.5rem;
	padding-top: 5.125rem;
}

.wp-theme-ks-com-hotel-theme .page-fv .page-fv__contact {
	position: absolute;
	right: 0;
	top: 0;
}

.wp-theme-ks-com-hotel-theme .page-fv .page-fv__title-en {
	font-size: 2.5rem;
}

.wp-theme-ks-com-hotel-theme .page-fv .page-fv__title-ja {
	font-size: 0.8125rem;
}

.page-fv__title {
	display: inline-grid;
	gap: 0.875rem;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-left: calc(50vw - 50%);
	position: relative;
}

.page-fv__title::before {
	background-color: currentColor;
	content: "";
	display: block;
	height: 0.0625rem;
	position: absolute;
	right: 0;
	top: 62%;
	transform: translateY(-50%);
	width: 100%;
}

.page-fv__title-en {
	display: inline-block;
	font-family: "Abhaya Libre", serif;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 0.844;
	text-transform: uppercase;
}

.page-fv__title-ja {
	font-feature-settings: "palt";
	font-weight: 700;
	letter-spacing: 0.1em;
}

/* =========================================== */

/*                Social Icons                 */

/* =========================================== */

.social-icons {
	align-items: center;
	display: flex;
	gap: 1.375rem;
	justify-content: center;
}

.social-icons__link {
	align-items: center;
	display: flex;
	height: 2.5rem;
	justify-content: center;
	width: 2.5rem;
}

.social-icons__link svg {
	display: block;
	height: 100%;
	width: 100%;
}

.social-icons__link .social-icons__icon-path {
	fill: #000000;
	transition: fill 0.3s ease;
}

.spotlight-articles .splide__arrow {
	--arrow-width: 1rem;
	--arrow-position: -0.5rem;
	background: transparent;
	height: 1.875rem;
	top: 46%;
	transition: opacity 0.3s ease;
	width: 1rem;
	width: var(--arrow-width);
}

.spotlight-articles .splide__arrow--prev {
	left: calc(var(--arrow-width) * -1 + var(--arrow-position));
}

.spotlight-articles .splide__arrow--next {
	right: calc(var(--arrow-width) * -1 + var(--arrow-position));
}

.spotlight-articles .splide__arrow svg {
	fill: transparent;
	height: inherit;
	width: inherit;
}

.spotlight-articles .splide__pagination {
	flex-wrap: nowrap;
	gap: 0.5rem;
	height: 0.625rem;
	margin-top: 1.3125rem;
	position: static;
}

.spotlight-articles .splide__pagination li {
	height: inherit;
	width: 0.625rem;
}

.spotlight-articles .splide__pagination__page {
	background: transparent;
	border: 0.0625rem solid currentColor;
	color: var(--color-body);
	display: block;
	height: inherit;
	margin: 0;
	opacity: 1;
	transition: opacity 0.3s ease;
	width: inherit;
}

.spotlight-articles .splide__pagination__page.is-active {
	background: currentColor !important;
}

.spotlight-articles .splide__pagination__page.is-active {
	transform: none;
	transform: initial;
}

.spotlight-articles.-pink .splide__pagination__page {
	background: #D69393;
	border: none;
}

.spotlight-articles.-grid .spotlight-articles__list {
	grid-gap: 1.875rem;
	display: grid;
	gap: 1.875rem;
	grid-template-columns: 1fr;
}

.spotlight-articles.-empty {
	border: 0.0625rem solid currentColor;
	padding: 1.25rem;
}

.spotlight-articles__message {
	font-feature-settings: "palt";
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.563;
	text-align: center;
}

/* =========================================== */

/*            Access                            */

/* =========================================== */

.access {
	font-feature-settings: "palt";
	background-color: #F6F4F4;
	color: #000000;
}

.access__inner {
	grid-gap: 2.3125rem;
	display: grid;
	gap: 2.3125rem;
}

.access__map {
	height: 25rem;
	width: 100%;
}

.access__map iframe {
	border: 0;
	height: 100%;
	width: 100%;
}

.access__info {
	display: contents;
}

.access__info-top {
	grid-gap: 1.125rem;
	display: grid;
	gap: 1.125rem;
	justify-content: center;
}

.access__info-hotel {
	grid-gap: 1.125rem;
	display: grid;
	gap: 1.125rem;
}

.access__info-hotel-logo {
	display: inline-block;
	width: -moz-fit-content;
	width: fit-content;
}

.access__info-hotel-logo img {
	height: auto;
	width: 50%;
}

.access__info-hotel-name {
	font-family: "Marcellus", serif;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1;
}

.access__info-car {
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.6;
}

.access__info-address {
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.667;
	margin-bottom: 0.6875rem;
}

.access__info-google-map-link {
	align-items: center;
	display: inline-flex;
	font-family: "Inter", sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	gap: 0.5rem;
	margin-bottom: 2.25rem;
	padding-left: 1.625rem;
	position: relative;
	transition: opacity 0.3s;
}

.access__info-google-map-link::before {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="24" viewBox="0 0 18 24" fill="none"><g clip-path="url(%23clip0_760_1875)"><path d="M17.4498 8.72C17.4498 13.54 8.72976 23.19 8.72976 23.19C8.72976 23.19 0.00976562 13.54 0.00976562 8.72C0.00976562 3.9 3.90977 0 8.71977 0C13.5298 0 17.4398 3.91 17.4398 8.72H17.4498Z" fill="black"/><path d="M8.7191 13.54C11.3534 13.54 13.489 11.4045 13.489 8.77013C13.489 6.13579 11.3534 4.00024 8.7191 4.00024C6.08477 4.00024 3.94922 6.13579 3.94922 8.77013C3.94922 11.4045 6.08477 13.54 8.7191 13.54Z" fill="white"/></g><defs><clipPath id="clip0_760_1875"><rect width="17.45" height="23.19" fill="white"/></clipPath></defs></svg>');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 1.5rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1.125rem;
}

.access__info-train {
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.923;
}

.access__info-train span {
	font-weight: 900;
}

/* =========================================== */

/*            Contact                            */

/* =========================================== */

.contact {
	font-feature-settings: "palt";
	background-color: #F6F4F4;
	color: #000000;
}

.contact--layout {
	padding-bottom: 5rem;
	padding-top: 4.6875rem;
}

.contact__description {
	border-bottom: 0.0625rem dashed currentColor;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.389;
	margin-bottom: 2.3125rem;
	padding-bottom: 1.875rem;
	text-align: center;
}

.contact__form {
	margin-left: auto;
	margin-right: auto;
	max-width: 46rem;
}

/* Contact Form 7 Styles */

.wpcf7 input:-webkit-autofill:not([readonly]) {
	box-shadow: 0 0 0 1000px #fff inset;
}

.wpcf7.-is-confirm input:-webkit-autofill {
	box-shadow: 0 0 0 1000px #F6F4F4 inset;
}

.wpcf7.-is-confirm input:-webkit-autofill:hover,
.wpcf7.-is-confirm input:-webkit-autofill:focus {
	box-shadow: 0 0 0 1000px #F6F4F4 inset;
}

.wpcf7.-is-confirm .contact-form__field {
	margin-bottom: 1.5625rem;
}

.wpcf7.-is-confirm .contact-form__field.-privacy,
.wpcf7.-is-confirm .contact__recaptcha {
	display: none;
}

.wpcf7.-is-confirm .contact-form__submit {
	margin-bottom: 0;
	margin-top: 3.125rem;
}

.wpcf7 .contact-form__field {
	margin-bottom: 2.3125rem;
}

.wpcf7 .contact-form__label {
	display: block;
	font-size: 1.0625rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.471;
	margin-bottom: 0.5rem;
}

.wpcf7 .contact-form__require {
	color: #91A226;
	margin-left: 0.1875rem;
}

.wpcf7 .contact-form__input input[type=text],
.wpcf7 .contact-form__input input[type=email],
.wpcf7 .contact-form__input input[type=tel],
.wpcf7 .contact-form__input input[type=number],
.wpcf7 .contact-form__input textarea {
	background-color: #fff;
	border: 0.0625rem solid #C9C9C9;
	border-radius: 0.3125rem;
	color: #000000;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.563;
	padding: 0.5625rem 0.75rem 0.625rem;
	transition: border-color 0.3s;
	width: 100%;
}

.wpcf7 .contact-form__input input[type=text]::-moz-placeholder,
.wpcf7 .contact-form__input input[type=email]::-moz-placeholder,
.wpcf7 .contact-form__input input[type=tel]::-moz-placeholder,
.wpcf7 .contact-form__input input[type=number]::-moz-placeholder,
.wpcf7 .contact-form__input textarea::-moz-placeholder {
	color: #979797;
}

.wpcf7 .contact-form__input input[type=text]::placeholder,
.wpcf7 .contact-form__input input[type=email]::placeholder,
.wpcf7 .contact-form__input input[type=tel]::placeholder,
.wpcf7 .contact-form__input input[type=number]::placeholder,
.wpcf7 .contact-form__input textarea::placeholder {
	color: #979797;
}

.wpcf7 .contact-form__input input[type=text]:focus,
.wpcf7 .contact-form__input input[type=email]:focus,
.wpcf7 .contact-form__input input[type=tel]:focus,
.wpcf7 .contact-form__input input[type=number]:focus,
.wpcf7 .contact-form__input textarea:focus {
	border-color: #000000;
	outline: none;
}

.wpcf7 .contact-form__input input[type=text][readonly],
.wpcf7 .contact-form__input input[type=email][readonly],
.wpcf7 .contact-form__input input[type=tel][readonly],
.wpcf7 .contact-form__input input[type=number][readonly],
.wpcf7 .contact-form__input textarea[readonly] {
	background-color: transparent;
	border: none;
	border-bottom: 0.0625rem solid #B6B4B4;
	border-radius: 0;
	padding: 0 0 1.5625rem;
}

.wpcf7 .contact-form__input textarea {
	field-sizing: content;
	min-height: 10.625rem;
	resize: vertical;
}

.wpcf7 .contact-form__input textarea[readonly] {
	min-height: 0;
	min-height: initial;
	resize: none;
}

.wpcf7 .contact-form__field.-privacy {
	margin-bottom: 2.5rem;
	text-align: center;
}

.wpcf7 .contact-form__field.-privacy .wpcf7-acceptance .wpcf7-list-item {
	margin: 0;
}

.wpcf7 .contact-form__field.-privacy .wpcf7-acceptance .wpcf7-list-item label {
	align-items: center;
	cursor: pointer;
	display: flex;
	font-size: 0.875rem;
	font-weight: 700;
	gap: 0.625rem;
	letter-spacing: 0.1em;
	line-height: 1.923;
	position: relative;
}

.wpcf7 .contact-form__field.-privacy .wpcf7-acceptance .wpcf7-list-item label::before {
	background-color: #fff;
	border: 0.0625rem solid #C9C9C9;
	border-radius: 0.3125rem;
	content: "";
	display: block;
	flex-shrink: 0;
	height: 1.25rem;
	transition: border-color 0.3s, background-color 0.3s;
	width: 1.25rem;
}

.wpcf7 .contact-form__field.-privacy .wpcf7-acceptance .wpcf7-list-item label::after {
	border-bottom: 0.125rem solid #fff;
	border-left: 0.125rem solid #fff;
	content: "";
	display: none;
	height: 0.5rem;
	left: 0.625rem;
	position: absolute;
	top: 46%;
	transform: translate(-50%, -60%) rotate(-45deg);
	width: 0.75rem;
	z-index: 1;
}

.wpcf7 .contact-form__field.-privacy .wpcf7-acceptance .wpcf7-list-item label input[type=checkbox] {
	height: 0;
	margin: 0;
	opacity: 0;
	padding: 0;
	position: absolute;
	width: 0;
}

.wpcf7 .contact-form__field.-privacy .wpcf7-acceptance .wpcf7-list-item label input[type=checkbox]:focus {
	outline: none;
}

.wpcf7 .contact-form__field.-privacy .wpcf7-acceptance .wpcf7-list-item label input[type=checkbox]:focus + .wpcf7-list-item-label ~ label::before,
.wpcf7 .contact-form__field.-privacy .wpcf7-acceptance .wpcf7-list-item label input[type=checkbox]:focus ~ label::before {
	border-color: #000000;
}

.wpcf7 .contact-form__field.-privacy .wpcf7-acceptance .wpcf7-list-item label:has(input[type=checkbox]:checked)::before {
	background-color: #000000;
	border-color: #000000;
}

.wpcf7 .contact-form__field.-privacy .wpcf7-acceptance .wpcf7-list-item label:has(input[type=checkbox]:checked)::after {
	display: block;
}

.wpcf7 .contact-form__field.-privacy .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label a {
	-webkit-text-decoration: underline;
	text-decoration: underline;
	text-underline-offset: 0.3ex;
	transition: opacity 0.3s;
}

.wpcf7 .contact-form__submit {
	align-items: center;
	display: flex;
	gap: 1.25rem;
	justify-content: center;
	margin-bottom: 1.25rem;
	position: relative;
}

.wpcf7 .contact-form__submit input[type=submit],
.wpcf7 .contact-form__submit button[type=submit],
.wpcf7 .contact-form__submit input[type=button],
.wpcf7 .contact-form__submit button[type=button] {
	border: none;
	border-radius: 0.5625rem;
	color: #fff;
	cursor: pointer;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.4444444444;
	padding: 1.15625rem 2.5rem 1.09375rem;
	transition: opacity 0.3s;
}

.wpcf7 .contact-form__submit input[type=submit],
.wpcf7 .contact-form__submit button[type=submit],
.wpcf7 .contact-form__submit .contact-form__btn--confirm {
	background-color: #ae3636;
}

.wpcf7 .contact-form__submit input[type=button],
.wpcf7 .contact-form__submit .contact-form__btn--back {
	background-color: #382222;
}

.wpcf7 .contact-form__submit .contact-form__confirm-actions:not([hidden]) {
	align-items: center;
	display: flex;
	gap: 1.25rem;
}

.wpcf7 .contact-form__submit .wpcf7-spinner {
	height: 1.5rem;
	margin: 0;
	position: absolute;
	right: 4.6%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 1.5rem;
}

.wpcf7 .wpcf7-response-output {
	display: none;
}

.wpcf7 .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
	display: none;
}

.wpcf7 .wpcf7-form-control-wrap.is-show .wpcf7-not-valid-tip {
	color: #ae3636;
	display: block;
	font-size: 0.75rem;
	margin-top: 0.3125rem;
}

.contact__recaptcha {
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.68;
	text-align: center;
}

.contact__recaptcha a {
	-webkit-text-decoration: underline;
	text-decoration: underline;
	text-underline-offset: 0.3ex;
	transition: opacity 0.3s;
}

/* =========================================== */

/*                   Error                     */

/* =========================================== */

.error {
	font-feature-settings: "palt";
	background-color: #F6F4F4;
	color: #000000;
	padding-bottom: 6.25rem;
	padding-top: 4.6875rem;
}

.error__inner {
	text-align: center;
}

.error__heading {
	font-size: 1.3125rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.4285714286;
	margin-bottom: 1.625rem;
}

.error__text {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.563;
	margin-bottom: 1.625rem;
}

.error__btn {
	margin-top: 1.625rem;
}

/* =========================================== */

/*          Facility Page                      */

/* =========================================== */

.facility--layout {
	margin-bottom: 6.875rem;
	margin-top: 5.5625rem;
}

/* =========================================== */

/*          Header                             */

/* =========================================== */

.facility__header {
	margin-bottom: 4.5rem;
	text-align: center;
}

.facility__header-icon {
	display: inline-block;
	height: 2.5rem;
	margin-bottom: 0.5rem;
	width: 3.3125rem;
}

.facility__header-icon::before {
	-webkit-mask-image: var(--icon);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 100%;
	mask-image: var(--icon);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 100%;
}

.facility__header-title {
	font-feature-settings: "palt";
	font-family: "Abhaya Libre", serif;
	font-size: 1.5rem;
	letter-spacing: 0.1em;
	margin-bottom: 1.125rem;
	text-transform: uppercase;
}

.facility__header-description {
	font-feature-settings: "palt";
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.5625;
}

/* =========================================== */

/*              Limited Facility               */

/* =========================================== */

.facility__limited-heading {
	font-feature-settings: "palt";
	border-bottom: 0.125rem solid currentColor;
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.4375;
	margin-bottom: 3.375rem;
	padding-bottom: 0.5rem;
}

.facility__limited-items {
	grid-gap: 3.75rem;
	display: grid;
	gap: 3.75rem;
}

.facility__limited-items.-has-img {
	margin-bottom: 4rem;
}

.facility__limited-items.-has-img .facility__limited-item {
	grid-gap: 0.6875rem;
	align-items: flex-start;
	display: grid;
	gap: 0.6875rem;
	grid-template-rows: auto auto 1fr;
}

.facility__limited-items.-no-img {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.facility__limited-items.-no-img .facility__limited-item {
	align-items: center;
	display: flex;
	gap: 2.0625rem;
	justify-content: flex-start;
}

.facility__limited-items.-no-img .facility__limited-item-title {
	min-width: 5.25rem;
}

.facility__limited-item-title {
	font-size: 1.3125rem;
	font-weight: 700;
	line-height: 1.3333333333;
}

.facility__limited-item-img {
	margin-bottom: 0.75rem;
}

.facility__limited-item-img img {
	-o-object-fit: cover;
	aspect-ratio: 626/418;
	object-fit: cover;
}

.facility__limited-item-room-numbers {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem 1.125rem;
}

.facility__limited-item-room-number a {
	align-items: center;
	background-color: #fff;
	border-radius: 0.25rem;
	color: #382222;
	display: inline-flex;
	font-family: "Abhaya Libre", serif;
	font-size: 1rem;
	font-weight: 700;
	height: 1.3125rem;
	justify-content: center;
	line-height: 1.1875;
	min-width: 2.6875rem;
	padding: 0.0625rem 0.5625rem 0;
	transition: opacity 0.3s ease;
	white-space: nowrap;
}

/* =========================================== */

/*          Common Facilities                  */

/* =========================================== */

.common-facilities {
	background-color: #F6F4F4;
	color: #000000;
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.common-facilities__heading {
	border-bottom: 0.125rem solid currentColor;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.4375;
	margin-bottom: 3.375rem;
	padding-bottom: 0.5rem;
}

.common-facilities__content {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.9;
}

/* =========================================== */

/*          Food & Drink Page                  */

/* =========================================== */

/* ------------------------------------------- */

/*          Page Layout                        */

/* ------------------------------------------- */

.food-and-drink--layout {
	margin-bottom: 5rem;
	margin-top: 5rem;
}

.food-and-drink__content {
	grid-gap: 4.375rem;
	display: grid;
	gap: 4.375rem;
}

.food-and-drink__content .wp-block-group {
	gap: 2.5rem;
}

/* ------------------------------------------- */

/*          fd-menu-grid                       */

/* ------------------------------------------- */

.fd-menu-grid {
	width: 100%;
}

.fd-menu-grid__layouts {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.fd-menu-grid__layout-items {
	grid-gap: 2.5rem 1.25rem;
	display: grid;
	gap: 2.5rem 1.25rem;
}

.fd-menu-grid__layout.-layout-3col .fd-menu-grid__layout-items {
	grid-template-columns: repeat(2, 1fr);
}

.fd-menu-grid__layout-item {
	grid-gap: 1.25rem;
	display: grid;
	gap: 1.25rem;
	grid-row: span 3;
	grid-template-rows: subgrid;
}

.fd-menu-grid__layout-item.-no-image {
	gap: 0;
}

.fd-menu-grid__layout-item-title {
	font-feature-settings: "palt";
	align-self: end;
	font-size: 1.1875rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.34;
}

.fd-menu-grid__layout-item-img {
	overflow: hidden;
}

.fd-menu-grid__layout-item-img img {
	-o-object-fit: cover;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.fd-menu-grid__layout.-layout-2col .fd-menu-grid__layout-item-img img {
	aspect-ratio: 335/213;
}

.fd-menu-grid__layout.-layout-3col .fd-menu-grid__layout-item-img img {
	aspect-ratio: 335/213;
}

.fd-menu-grid__layout-item-description {
	font-feature-settings: "palt";
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.5625;
}

/* =========================================== */

/*                   Header                    */

/* =========================================== */

.header {
	background-color: #000000;
	color: #fff;
	height: 3.75rem;
	position: fixed;
	width: 100%;
	z-index: 200;
}

.header__inner {
	align-items: center;
	display: flex;
	height: inherit;
	justify-content: space-between;
	padding-left: 0.9375rem;
	padding-right: 0.9375rem;
}

/* =========================================== */

/*                  Left Side                  */

/* =========================================== */

.header__left {
	align-items: center;
	display: flex;
	gap: 0;
	height: inherit;
}

.header__logo {
	align-items: center;
	display: none;
	height: inherit;
	justify-items: center;
	place-items: center;
}

.header__logo-link {
	align-items: center;
	color: #fff;
	display: flex;
	font-family: "Marcellus", serif;
	font-size: 1.0625rem;
	height: inherit;
	letter-spacing: -0.03em;
	transition: opacity 0.3s ease;
}

.header__hotel-logo {
	align-items: center;
	display: flex;
	height: inherit;
}

.header__hotel-logo-link {
	color: #fff;
	font-family: "Marcellus", serif;
	font-size: 1.78375rem;
	font-weight: 400;
	letter-spacing: -0.04em;
	transition: opacity 0.3s ease;
}

/* =========================================== */

/*                 Right Side                  */

/* =========================================== */

.header__right {
	align-items: center;
	display: flex;
	gap: 0.625rem;
	height: inherit;
}

/* =========================================== */

/*                 Hamburger                   */

/* =========================================== */

.header__hamburger {
	align-items: center;
	background: transparent;
	border: none;
	color: #fff;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	padding: 0;
	position: relative;
	width: 2.3125rem;
	z-index: 50;
}

.header__hamburger span {
	background-color: currentColor;
	display: block;
	height: max(0.125rem, 2px);
	position: relative;
	transition: 0.5s;
	width: 100%;
}

.header__hamburger span:nth-of-type(2) {
	top: -0.46875rem;
}

.header__hamburger span:nth-of-type(3) {
	top: 0.46875rem;
}

.header__hamburger.is-open span {
	color: var(--color-text-block);
}

.header__hamburger.is-open span:nth-of-type(2) {
	top: 0.0625rem;
	transform: rotate(30.6deg);
}

.header__hamburger.is-open span:nth-of-type(3) {
	top: -0.0625rem;
	transform: rotate(-30.6deg);
}

/* =========================================== */

/*                  Drawer                     */

/* =========================================== */

.header__drawer {
	background-color: var(--color-bg-nav);
	color: var(--color-text-block);
	height: 100vh;
	height: 100dvh;
	left: 0;
	opacity: 0;
	overflow-y: auto;
	position: fixed;
	top: 0;
	transition: opacity 0.4s ease, visibility 0.4s ease;
	visibility: hidden;
	width: 100%;
	z-index: 40;
}

.header__drawer.is-open {
	opacity: 1;
	visibility: visible;
}

.header__drawer-inner {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 100vh;
}

.header__drawer-content {
	gap: 4.25rem;
	width: 100%;
}

/* =========================================== */

/*              Drawer Group Section           */

/* =========================================== */

.header__drawer-group-title {
	border-bottom: 0.0625rem solid currentColor;
	font-family: "Marcellus", serif;
	font-size: 1.9375rem;
	line-height: 1;
	margin-bottom: 3.75rem;
	padding-bottom: 1.9375rem;
	padding-top: 0.8125rem;
}

.header__drawer-group-items {
	grid-gap: 2.1875rem;
	border-bottom: 0.0625rem dashed currentColor;
	display: grid;
	gap: 2.1875rem;
	margin-bottom: 2rem;
	padding-bottom: 3.75rem;
}

.header__drawer-group-link {
	grid-gap: 0.5rem;
	align-items: center;
	display: grid;
	gap: 0.5rem;
	grid-template-columns: auto 1fr;
	transition: opacity 0.3s;
}

.header__drawer-group-link::before {
	-webkit-mask-image: url("../img/common/icon-arrow-right-1.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 0.75rem;
	margin-top: 0.1875rem;
	mask-image: url("../img/common/icon-arrow-right-1.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 0.5625rem;
}

.header__drawer-group-link-text {
	font-feature-settings: "palt";
	font-size: 1.0625rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	line-height: 1;
}

.header__drawer-group-sns-link {
	align-items: center;
	display: flex;
	gap: 0.75rem;
	padding-bottom: 0.96875rem;
	padding-top: 0.96875rem;
	transition: opacity 0.3s;
}

.header__drawer-group-sns-link::before {
	-webkit-mask-image: var(--icon);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: currentColor;
	content: "";
	display: inline-block;
	flex-shrink: 0;
	height: 2.1875rem;
	mask-image: var(--icon);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 2.1875rem;
}

.header__drawer-group-sns-text {
	font-feature-settings: "palt";
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.18em;
}

/* =========================================== */

/*              Drawer Hotel Section           */

/* =========================================== */

.header__drawer-hotel-header {
	align-items: center;
	border-bottom: 0.0625rem solid currentColor;
	display: flex;
	gap: 0.75rem;
	margin-bottom: 3.75rem;
	padding-bottom: 1.25rem;
}

.header__drawer-hotel-logo {
	flex-shrink: 0;
	height: 3.4375rem;
	width: auto;
}

.header__drawer-hotel-logo img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.header__drawer-hotel-title {
	font-family: "Marcellus", serif;
	font-size: 1.75rem;
	letter-spacing: -0.04em;
	line-height: 1.27;
}

.header__drawer-nav {
	border-bottom: 0.0625rem dashed currentColor;
	margin-bottom: 2.1875rem;
	padding-bottom: 3.75rem;
}

.header__drawer-nav-items {
	grid-gap: 2.1875rem 0.3125rem;
	display: grid;
	gap: 2.1875rem 0.3125rem;
	grid-template-columns: 10.625rem 1fr;
}

.header__drawer-nav-item a {
	grid-gap: 0.375rem;
	font-feature-settings: "palt";
	-webkit-text-decoration: none;
	align-items: baseline;
	display: grid;
	font-size: 1.125rem;
	font-weight: 500;
	gap: 0.375rem;
	grid-template-columns: auto 1fr;
	letter-spacing: 0.2em;
	line-height: 1.1;
	text-decoration: none;
	transition: opacity 0.3s;
}

.header__drawer-nav-item a::before {
	-webkit-mask-image: url("../img/common/icon-arrow-right-1.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 0.75rem;
	margin-top: 0.3125rem;
	mask-image: url("../img/common/icon-arrow-right-1.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 0.5625rem;
}

.header__drawer-hotel-contact {
	align-items: center;
	display: flex;
	flex-direction: column-reverse;
	gap: 1.375rem;
	justify-content: center;
}

.header__drawer-hotel-contact-tel {
	grid-gap: 1rem;
	align-items: center;
	display: grid;
	gap: 1rem;
	text-align: center;
}

.header__drawer-hotel-contact-icon {
	align-items: center;
	display: flex;
	flex-shrink: 0;
	height: 2.125rem;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	width: 2.125rem;
}

.header__drawer-hotel-contact-icon::before {
	-webkit-mask-image: var(--icon);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 100%;
	mask-image: var(--icon);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 100%;
}

.header__drawer-hotel-contact-info {
	display: flex;
	flex-direction: column;
	gap: 0.3125rem;
}

.header__drawer-hotel-contact-label {
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.06875rem;
	line-height: 1;
}

.header__drawer-hotel-contact-tel-link {
	-webkit-text-decoration: none;
	font-size: 1.25rem;
	font-weight: 700;
	text-decoration: none;
	transition: opacity 0.3s;
}

/* =========================================== */

/*           Information Detail Page           */

/* =========================================== */

.information-detail {
	background-color: #F6F4F4;
	color: #000000;
	padding-bottom: 6.875rem;
	padding-top: 1.5rem;
}

.information-detail--layout {
	margin-bottom: 3.5rem;
}

.information-detail__back-btn {
	margin-bottom: 1.5625rem;
}

/* =========================================== */

/*                   Header                    */

/* =========================================== */

.information-detail__header {
	margin-bottom: 3.5625rem;
}

.information-detail__title {
	border-bottom: 0.125rem solid currentColor;
	font-size: 1.5625rem;
	letter-spacing: 0.1em;
	line-height: 1.44;
	margin-bottom: 0.625rem;
	padding-bottom: 0.75rem;
}

.information-detail__meta {
	align-items: center;
	display: flex;
	gap: 1rem;
}

.information-detail__date {
	font-family: "Poppins", sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.05em;
	line-height: 1.2;
}

.information-detail__hotel-name {
	font-family: "Inter", sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.333;
}

/* =========================================== */

/*                    Body                     */

/* =========================================== */

.information-detail__body {
	margin-left: auto;
	margin-right: auto;
	max-width: 60.75rem;
}

.information-detail__thumbnail {
	margin-bottom: 3.75rem;
}

.information-detail__thumbnail img {
	display: block;
	height: auto;
	width: 100%;
}

.information-detail__content {
	grid-gap: 2.1875rem;
	display: grid;
	gap: 2.1875rem;
}

/* =========================================== */

/*              Spotlight Articles              */

/* =========================================== */

.information-detail-spotlight--layout {
	margin-bottom: 3.5rem;
}

.information-detail-spotlight__heading {
	display: grid;
	margin-bottom: 1rem;
	text-align: center;
}

.information-detail-spotlight__heading .-en {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.125;
}

.information-detail-spotlight__heading .-ja {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.5625;
}

/* =========================================== */

/*          Information Page                  */

/* =========================================== */

.information {
	background-color: #F6F4F4;
	color: #000000;
	padding-bottom: 6.875rem;
	padding-top: 1.5rem;
}

.information__back-btn {
	margin-bottom: 1.5625rem;
}

.information__header {
	display: flex;
	flex-direction: column;
	gap: 1.125rem;
	margin-bottom: 2.75rem;
}

.information__title {
	font-size: 1.3125rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.information__filters {
	align-items: center;
	display: flex;
	gap: 2.5rem;
}

.information__filter {
	align-items: center;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 0.3125rem;
	padding: 0;
	transition: opacity 0.3s ease;
}

.information__filter:not(.is-active) {
	opacity: 0.5;
}

.information__filter.is-active {
	opacity: 1;
}

.information__filter-text {
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.067;
}

.information__filter-icon {
	align-items: center;
	display: flex;
	height: 0.3125rem;
	justify-content: center;
	width: 0.625rem;
}

.information__filter-icon svg {
	stroke: currentColor;
	height: 0.625rem;
	transform: rotate(90deg);
	width: 0.4375rem;
}

.information__list {
	grid-gap: 1.875rem;
	display: grid;
	gap: 1.875rem;
	margin-bottom: 5rem;
}

.information__item {
	list-style: none;
}

.information__no-posts {
	font-size: 1rem;
	padding: 3.75rem 0;
	text-align: center;
}

/* =========================================== */

/*                 Pagination                  */

/* =========================================== */

.information__articles .pagination {
	text-align: center;
}

.information__articles .nav-links {
	align-items: center;
	display: flex;
	gap: 1.375rem;
	justify-content: center;
}

.information__articles .page-numbers {
	font-family: "Abhaya Libre", serif;
	font-size: 1.6875rem;
}

.information__articles .page-numbers[href] {
	transition: opacity 0.3s ease;
}

.information__articles .prev,
.information__articles .next {
	align-items: center;
	display: flex;
	height: 1.6875rem;
	justify-content: right;
	width: 1.6875rem;
}

.information__articles .prev svg,
.information__articles .next svg {
	height: 1.625rem;
	width: 1.0625rem;
}

.information__articles .prev {
	transform: scaleX(-1);
}

.information__articles .current {
	align-items: center;
	background-color: #382222;
	border-radius: 50%;
	color: #fff;
	display: flex;
	height: 2rem;
	justify-content: center;
	text-align: center;
	width: 2rem;
}

/* =========================================== */

/*          Room Detail                        */

/* =========================================== */

.room-detail {
	overflow: hidden;
}

.room-detail--layout {
	margin-bottom: 6.875rem;
	margin-top: 1.5rem;
}

.room-detail__back-btn {
	margin-bottom: 4.5rem;
}

.room-detail__header {
	margin-bottom: 4.0625rem;
}

.room-detail__title {
	border-bottom: 0.1875rem solid currentColor;
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.3333333333;
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	position: relative;
}

.room-detail__description {
	font-feature-settings: "palt";
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.5625;
}

.room-detail__images {
	margin-bottom: 4.0625rem;
}

.room-detail__images:not(.splide) {
	grid-gap: 1.25rem;
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
}

.room-detail__images.splide .splide__track {
	overflow: hidden;
}

.room-detail__images.splide .splide__list {
	display: flex;
}

.room-detail__images.splide .splide__slide {
	width: 100%;
}

.room-detail__images.splide .splide__arrow {
	background: none;
	height: 2rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: opacity 0.3s ease;
	width: 2rem;
	z-index: 2;
}

.room-detail__images.splide .splide__arrow:disabled {
	cursor: not-allowed;
	opacity: 0.3;
}

.room-detail__images.splide .splide__arrow svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 0.125rem;
	height: inherit;
	width: inherit;
}

.room-detail__images.splide .splide__arrow--prev {
	left: -2.5rem;
}

.room-detail__images.splide .splide__arrow--next {
	right: -2.5rem;
}

.room-detail__image {
	overflow: hidden;
}

.room-detail__image img {
	-o-object-fit: cover;
	aspect-ratio: 600/401;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.room-detail__info-list {
	grid-gap: 0;
	display: grid;
	gap: 0;
	margin-bottom: 3.125rem;
}

.room-detail__info-item {
	border-bottom: 0.0625rem dashed currentColor;
	border-top: 0.0625rem dashed currentColor;
	display: grid;
	padding-bottom: 1.25rem;
	padding-top: 1.25rem;
}

.room-detail__info-item:not(:first-child) {
	border-top: none;
}

.room-detail__info-label {
	font-feature-settings: "palt";
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.5625;
}

.room-detail__info-content {
	font-feature-settings: "palt";
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.7857142857;
}

.room-detail__info-footer {
	display: contents;
}

.room-detail__room-numbers {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem 1.125rem;
}

.room-detail__room-number {
	align-items: center;
	background-color: #fff;
	border-radius: 0.25rem;
	color: #382222;
	display: inline-flex;
	font-family: "Abhaya Libre", serif;
	font-size: 1rem;
	font-weight: 700;
	height: 1.3125rem;
	justify-content: center;
	line-height: 1.1875;
	min-width: 2.6875rem;
	padding: 0.0625rem 0.5625rem 0;
	white-space: nowrap;
}

/* =========================================== */

/*          Room Pricing                       */

/* =========================================== */

.room-pricing {
	padding-bottom: 5rem;
	padding-top: 6.25rem;
}

.room-pricing--layout {
	background-color: #F6F4F4;
	color: #000000;
}

.room-pricing__title {
	border-bottom: 0.125rem solid currentColor;
	font-size: 1.3125rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: normal;
	margin-bottom: 5.125rem;
	padding-bottom: 0.9375rem;
}

.room-pricing__content {
	grid-gap: 3.8125rem;
	display: grid;
	gap: 3.8125rem;
	margin-bottom: 2.5rem;
}

.room-pricing__category {
	grid-gap: 0.6875rem;
	display: grid;
	gap: 0.6875rem;
}

.room-pricing__category-label {
	font-feature-settings: "palt";
	font-size: 1rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	line-height: 1.5625;
	text-orientation: upright;
	white-space: nowrap;
}

.room-pricing__category-list {
	grid-gap: 0;
	display: grid;
	gap: 0;
}

.room-pricing__category-item {
	border-bottom: 0.0625rem dashed currentColor;
	border-top: 0.0625rem dashed currentColor;
	display: grid;
	grid-template-columns: auto 1fr;
	padding-bottom: 1.5rem;
	padding-top: 1.5rem;
}

.room-pricing__category-item:not(:first-child) {
	border-top: none;
}

.room-pricing__category-day,
.room-pricing__category-price {
	align-items: center;
	border-right: 0.0625rem solid currentColor;
	display: grid;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25;
}

.room-pricing__category-time {
	align-items: left;
	display: grid;
	font-size: 1rem;
	font-weight: 700;
	line-height: 120%;
}

.room-pricing__note {
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 120%;
}

/* =========================================== */

/*          Rooms                              */

/* =========================================== */

.rooms--layout {
	margin-bottom: 3.75rem;
	margin-top: 3.75rem;
}

.rooms__items {
	grid-gap: 2.5rem;
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr;
}

.rooms__item {
	padding-top: 0.6875rem;
	position: relative;
}

.rooms__item-link {
	grid-gap: 1rem;
	display: grid;
	gap: 1rem;
}

.rooms__item-title {
	font-size: 1.3125rem;
	font-weight: 700;
	line-height: 1.3333333333;
	position: relative;
}

.rooms__item-title::before {
	background-color: currentColor;
	content: "";
	height: 0.1875rem;
	left: 0;
	position: absolute;
	top: -0.5rem;
	width: 2.0625rem;
}

.rooms__item-img {
	border-radius: 0.625rem;
	overflow: hidden;
}

.rooms__item-img img {
	-o-object-fit: cover;
	aspect-ratio: 335/213;
	height: auto;
	object-fit: cover;
	transition: transform 0.6s ease, filter 0.6s ease;
	width: 100%;
}

.rooms__item-description {
	font-feature-settings: "palt";
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.7857142857;
}

/* =========================================== */

/*          Usage Time                         */

/* =========================================== */

.usage-time {
	background-color: #F6F4F4;
	color: #000000;
	padding-bottom: 5.75rem;
	padding-top: 4.375rem;
}

.usage-time__header {
	align-items: center;
	display: flex;
	gap: 0.625rem;
	margin-bottom: 2.1875rem;
}

.usage-time__header-icon {
	width: 2.0625rem;
}

.usage-time__header-icon img {
	height: auto;
	width: 100%;
}

.usage-time__header-title {
	font-size: 1.3125rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.4285714286;
}

.usage-time__items {
	display: grid;
}

.usage-time__item {
	border-bottom: 0.0625rem solid currentColor;
	border-top: 0.0625rem solid currentColor;
	display: grid;
	padding-bottom: 1.25rem;
	padding-top: 1.125rem;
}

.usage-time__item:not(:first-child) {
	border-top: none;
}

.usage-time__item-label,
.usage-time__item-day,
.usage-time__item-time {
	align-items: center;
	display: flex;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 160%;
	padding-left: 0.9375rem;
	padding-right: 0.9375rem;
}

.usage-time__item-daytime {
	font-size: 1rem;
	font-weight: 700;
	line-height: 123%;
	padding-left: 0.9375rem;
	padding-right: 0.9375rem;
	padding-top: 0.9375rem;
}

/* =========================================== */

/*          Service Page                       */

/* =========================================== */

/* ------------------------------------------- */

/*          Page Layout                        */

/* ------------------------------------------- */

.service--layout {
	margin-bottom: 5rem;
	margin-top: 5rem;
}

.service__content {
	grid-gap: 4.375rem;
	display: grid;
	gap: 4.375rem;
}

.service__content .wp-block-group {
	gap: 2.5rem;
}

/* ------------------------------------------- */

/*          block-service-grid                 */

/* ------------------------------------------- */

.block-service-grid {
	grid-gap: 1.5rem;
	display: grid;
	gap: 1.5rem;
	width: 100%;
}

.block-service-grid__items {
	grid-gap: 2.5rem 1.25rem;
	display: grid;
	gap: 2.5rem 1.25rem;
	grid-template-columns: 1fr;
}

.block-service-grid__item {
	grid-gap: 0.6875rem;
	display: grid;
	gap: 0.6875rem;
}

.block-service-grid__item-title {
	font-feature-settings: "palt";
	align-self: end;
	font-size: 1.125rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.34;
}

.block-service-grid__item-img {
	overflow: hidden;
}

.block-service-grid__item-img img {
	-o-object-fit: cover;
	aspect-ratio: 1/1;
	height: auto;
	object-fit: cover;
	width: 100%;
}

/* =========================================== */

/*            Page Thanks                        */

/* =========================================== */

.page-thanks {
	font-feature-settings: "palt";
	background-color: #F6F4F4;
	color: #000000;
	padding-bottom: 6.25rem;
	padding-top: 4.6875rem;
}

.page-thanks__inner {
	text-align: center;
}

.page-thanks__text {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.563;
	margin-bottom: 1.625rem;
}

/* =========================================== */

/*                    Top FV                    */

/* =========================================== */

.top-fv {
	height: 28.125rem;
	overflow: hidden;
	position: relative;
}

.top-fv--layout {
	margin-bottom: 5.9375rem;
}

.top-fv__inner {
	color: #fff;
	height: 100%;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: 100%;
}

.top-fv__img {
	height: 100%;
	width: 100%;
}

.top-fv__img img {
	-o-object-fit: cover;
	aspect-ratio: 1440/610;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.top-fv > .top-fv__img {
	left: 0;
	position: absolute;
	top: 0;
}

.top-fv__content {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	left: 50%;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.top-fv__logo img {
	-o-object-fit: contain;
	height: auto;
	max-width: 100%;
	object-fit: contain;
	width: 50%;
}

.top-fv__catchcopy {
	font-feature-settings: "palt";
	font-size: 1.9375rem;
	font-weight: 300;
	letter-spacing: 0.08em;
	line-height: 1.462;
}

/* Splide */

.top-fv__slider {
	height: 100%;
	width: 100%;
}

.top-fv__slider .splide__track {
	height: 100%;
	width: 100%;
}

.top-fv__slider .splide__list {
	height: 100%;
	width: 100%;
}

.top-fv__slider .splide__slide {
	height: 100%;
	width: 100%;
}

.top-fv__slider .splide__pagination {
	align-items: center;
	bottom: 1.25rem;
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 100%;
	z-index: 10;
}

.top-fv__slider .splide__pagination__page {
	background-color: #fff;
	border-radius: 0;
	height: 0.25rem;
	margin: 0;
	opacity: 0.15;
	transition: opacity 0.3s ease;
	width: 2.75rem;
}

.top-fv__slider .splide__pagination__page.is-active {
	opacity: 1;
	transform: none;
	transform: initial;
}

/* =========================================== */

/*            Top Information                  */

/* =========================================== */

.top-information--layout {
	margin-bottom: 8.125rem;
}

.top-information__header {
	grid-gap: 0.625rem;
	align-items: center;
	display: grid;
	gap: 0.625rem;
	grid-template-columns: 1fr auto;
	margin-bottom: 2.625rem;
}

.top-information__heading {
	grid-gap: 0.4375rem;
	align-items: center;
	display: grid;
	font-family: "Abhaya Libre", serif;
	font-size: 2.278125rem;
	font-weight: 700;
	gap: 0.4375rem;
	grid-template-columns: auto 1fr;
	line-height: 1;
}

.top-information__heading::after {
	background-color: currentColor;
	content: "";
	height: 0.0625rem;
	width: 100%;
}

.top-information__list {
	grid-gap: 2.5rem;
	display: grid;
	gap: 2.5rem;
}

.top-information__item-link {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.top-information__item-thumbnail {
	border: 0.0625rem solid #C9C9C9;
	border-radius: 0.625rem;
	height: 18.75rem;
	overflow: hidden;
}

.top-information__item-thumbnail img {
	-o-object-fit: cover;
	aspect-ratio: 300/300;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease, filter 0.6s ease;
}

.top-information__item-content {
	display: flex;
	flex-direction: column;
	gap: 0.5625rem;
}

.top-information__item-hotel-name {
	font-family: "Inter", sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.333;
}

.top-information__item-title {
	font-family: "Noto Serif", serif;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.0675rem;
	line-height: 1.5;
	white-space: pre-line;
}

.top-information__item-btn {
	display: inline-block;
	font-family: "Noto Serif", serif;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.714;
	padding-bottom: 0.1875rem;
	position: relative;
	text-transform: uppercase;
	width: 9.625rem;
}

.top-information__item-btn::after {
	border-bottom: 0.09375rem solid currentColor;
	border-right: 0.09375rem solid currentColor;
	bottom: 0.125rem;
	content: "";
	height: 0.375rem;
	position: absolute;
	right: 0;
	transform: skewX(50deg);
	transform-origin: bottom right;
	width: 9.625rem;
}

/* =========================================== */

/*            Top Rooms                        */

/* =========================================== */

.top-rooms__inner {
	position: relative;
}

.top-rooms__content {
	background-color: var(--color-bg-block);
	color: var(--color-text-block);
	left: 0;
	padding: 1.25rem 1.5625rem 1.5625rem;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

.top-rooms__heading {
	font-family: "Abhaya Libre", serif;
	font-size: 3.4375rem;
	font-weight: 400;
	line-height: 1.2;
	text-transform: uppercase;
}

.top-rooms__description {
	font-feature-settings: "palt";
	font-size: 1rem;
	letter-spacing: 0.1em;
	line-height: 1.5625;
}

.top-rooms__card-link {
	display: block;
	height: 100%;
}

.top-rooms__card {
	flex-shrink: 0;
	height: inherit;
	position: relative;
}

.top-rooms__card-img {
	height: 100%;
	overflow: hidden;
	width: 100%;
}

.top-rooms__card-img img {
	-o-object-fit: cover;
	aspect-ratio: 430/610;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.top-rooms__card-img.-no-image {
	align-items: center;
	background-color: var(--color-bg-block);
	color: var(--color-text-block);
	display: flex;
	justify-content: center;
	padding: 1rem;
}

.top-rooms__card-img.-no-image span {
	font-size: 0.875rem;
	line-height: 1.5;
	text-align: center;
}

.top-rooms__card-name {
	align-items: center;
	background-color: color-mix(in srgb, var(--color-primary) 50%, transparent);
	border-top-right-radius: 0.3125rem;
	bottom: 0;
	display: flex;
	font-family: "Noto Serif", serif;
	font-size: 0.875rem;
	font-weight: 400;
	height: 1.75rem;
	justify-content: center;
	left: 0;
	min-width: 11.25rem;
	padding-left: 1.875rem;
	padding-right: 1.875rem;
	position: absolute;
	text-align: center;
	width: -moz-fit-content;
	width: fit-content;
}

/* Rooms Slider */

.js-rooms-slider {
	height: 100%;
	width: 100%;
}

.js-rooms-slider .splide__track {
	height: 100%;
	width: 100%;
}

.js-rooms-slider .splide__list {
	height: 100%;
}

.js-rooms-slider .splide__slide {
	height: 100%;
}

/* =========================================== */

/*            Top Service                      */

/* =========================================== */

.top-service {
	background: var(--gradient-primary);
	padding-bottom: 6.25rem;
	padding-top: 3.75rem;
}

.top-service__inner {
	text-align: center;
}

.top-service__heading {
	align-items: center;
	display: flex;
	flex-direction: column;
	font-family: "Abhaya Libre", serif;
	font-size: 3rem;
	font-weight: 700;
	gap: 0.5625rem;
	line-height: 1.2;
	margin-bottom: 0.625rem;
	text-transform: uppercase;
}

.top-service__icon {
	align-items: center;
	display: flex;
	height: 2.4375rem;
	justify-content: center;
	width: 3.3125rem;
}

.top-service__icon::before {
	-webkit-mask-image: var(--icon);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 100%;
	mask-image: var(--icon);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 100%;
}

.top-service__description {
	font-feature-settings: "palt";
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.5625;
	margin-bottom: 3.375rem;
	text-align: center;
}

.top-service__links {
	grid-gap: 1.25rem;
	display: grid;
	gap: 1.25rem;
	justify-content: center;
}

.top-service__link {
	-webkit-text-decoration: none;
	align-items: center;
	display: flex;
	gap: 0.8125rem;
	justify-content: center;
	text-decoration: none;
	transition: opacity 0.3s;
}

.top-service__link-text {
	font-feature-settings: "palt";
	font-family: "Noto Serif", serif;
	font-size: 2rem;
	letter-spacing: 0.17em;
	line-height: 1;
}

.top-service__link-arrow {
	align-items: center;
	display: flex;
	height: 3.3125rem;
	justify-content: center;
	position: relative;
	width: 3.3125rem;
}

.top-service__link-arrow::before {
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"53\" height=\"53\" viewBox=\"0 0 53 53\" fill=\"none\"><g clip-path='url(%23clip0_523_5649)'><circle cx=\"26.4997\" cy=\"26.5\" r=\"25.5417\" stroke=\"white\"/><path d=\"M26.5003 16.0834L36.917 26.5L26.5003 36.9167\" stroke=\"white\"/><path d=\"M16.083 26.5H36.9163\" stroke=\"white\"/></g><defs><clipPath id=\"clip0_523_5649\"><rect width=\"53\" height=\"53\" fill=\"white\"/></clipPath></defs></svg>");
	-webkit-mask-size: cover;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: currentColor;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"53\" height=\"53\" viewBox=\"0 0 53 53\" fill=\"none\"><g clip-path='url(%23clip0_523_5649)'><circle cx=\"26.4997\" cy=\"26.5\" r=\"25.5417\" stroke=\"white\"/><path d=\"M26.5003 16.0834L36.917 26.5L26.5003 36.9167\" stroke=\"white\"/><path d=\"M16.083 26.5H36.9163\" stroke=\"white\"/></g><defs><clipPath id=\"clip0_523_5649\"><rect width=\"53\" height=\"53\" fill=\"white\"/></clipPath></defs></svg>");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: cover;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
}

.top-service__link-arrow::after {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"53\" height=\"53\" viewBox=\"0 0 53 53\" fill=\"none\"><g clip-path='url(%23clip0_523_5649)'><circle cx=\"26.4997\" cy=\"26.5\" r=\"25.5417\" stroke=\"white\"/><path d=\"M26.5003 16.0834L36.917 26.5L26.5003 36.9167\" stroke=\"white\"/><path d=\"M16.083 26.5H36.9163\" stroke=\"white\"/></g><defs><clipPath id=\"clip0_523_5649\"><rect width=\"53\" height=\"53\" fill=\"white\"/></clipPath></defs></svg>");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
}

.top-service__divider {
	background-color: currentColor;
	height: 0.0625rem;
	width: 21.25rem;
}

/* =========================================== */

/*            Top Map                          */

/* =========================================== */

.top-map--layout {
	margin-bottom: 6.25rem;
}

/* =========================================== */

/*            Top Contact                      */

/* =========================================== */

.top-contact--layout {
	margin-bottom: 9rem;
}

.top-contact__inner {
	grid-gap: 3.4375rem;
	align-items: center;
	display: grid;
	gap: 3.4375rem;
	justify-content: center;
}

.top-contact__heading {
	align-items: center;
	display: flex;
	font-family: "Abhaya Libre", serif;
	font-size: 3rem;
	font-weight: 700;
	justify-content: center;
	line-height: 1.088;
	text-transform: uppercase;
}

.top-contact__items {
	grid-gap: 2.5rem;
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr;
}

.top-contact__item-link {
	align-items: center;
	display: flex;
	gap: 0.9375rem;
	justify-content: center;
	transition: opacity 0.3s;
}

.top-contact__item-icon {
	align-items: center;
	display: flex;
	height: var(--icon-height);
	justify-content: center;
	width: 2.8125rem;
}

.top-contact__item-icon::before {
	-webkit-mask-image: var(--icon);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 100%;
	mask-image: var(--icon);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 100%;
}

.top-contact__item-content {
	grid-gap: 0.3125rem;
	display: grid;
	gap: 0.3125rem;
}

.top-contact__item-label {
	font-size: 0.8125rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1;
}

.top-contact__item-text {
	font-size: 1.6875rem;
	font-weight: 500;
	line-height: 1;
}

/* =========================================== */

/*            Top Hotel Group                  */

/* =========================================== */

.top-hotel-group {
	background-color: #F6F4F4;
	padding-bottom: 6.875rem;
	padding-top: 6.25rem;
}

.top-hotel-group__inner {
	color: #000000;
}

.top-hotel-group__heading {
	font-family: "Abhaya Libre", serif;
	font-size: 2.25rem;
	font-weight: 400;
	line-height: 1.339;
	margin-bottom: 6.25rem;
}

.top-hotel-group__list {
	grid-gap: 2.375rem;
	display: grid;
	gap: 2.375rem;
	grid-template-columns: 1fr;
}

.top-hotel-group__item {
	display: grid;
	grid-row: span 4;
	grid-template-rows: subgrid;
}

.top-hotel-group__item-link {
	grid-gap: 0.9375rem;
	align-items: center;
	display: grid;
	gap: 0.9375rem;
	grid-row: span 4;
	grid-template-rows: subgrid;
}

.top-hotel-group__item-name {
	font-family: "Abhaya Libre", serif;
	font-size: 1.875rem;
	font-weight: 400;
	line-height: 1.12;
	margin-bottom: -0.6875rem;
	position: relative;
}

.top-hotel-group__item-name::before {
	background-color: currentColor;
	content: "";
	height: 0.1875rem;
	left: 0;
	position: absolute;
	top: -0.5rem;
	width: 2.0625rem;
}

.top-hotel-group__item-catchcopy {
	font-feature-settings: "palt";
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.538;
}

.top-hotel-group__item-img {
	border-radius: 0.625rem;
	overflow: hidden;
	width: 100%;
}

.top-hotel-group__item-img img {
	-o-object-fit: cover;
	aspect-ratio: 298/250;
	object-fit: cover;
	transition: transform 0.6s ease, filter 0.6s ease;
}

.top-hotel-group__item-tags {
	align-self: flex-start;
	font-family: "Inter", sans-serif;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.333;
}

@media (hover: hover) and (pointer: fine) {

.block-page-nav__link:hover {
	opacity: 0.5;
}

.c-btn-1 a:hover {
	opacity: 0.5;
}

.c-btn-1[data-direction=right] a:hover::after {
	right: -0.3125rem;
}

.c-btn-1[data-direction=left] a:hover::after {
	left: -0.3125rem;
}

.c-btn-2__link[href]:hover {
	opacity: 0.5;
}

.c-btn-2__link[href]:hover::before {
	left: 0.625rem;
}

.c-contact__sns-link.-insta:hover::before {
	background-color: #E4405F;
}

.c-contact__sns-link.-line:hover::before {
	background-color: #00C300;
}

.c-content a:hover {
	opacity: 0.5;
}

.c-reservation-links__link:hover {
	opacity: 0.5;
}

.footer__logo:hover {
	opacity: 0.5;
}

.footer__line-link:hover {
	background-color: #00C300;
}

.footer__privacy:hover,
.footer__company:hover {
	opacity: 0.5;
}

.info-card__link:hover {
	opacity: 0.5;
}

.social-icons__link.-line:hover .social-icons__icon-path {
	fill: #00C300;
}

.social-icons__link.-insta:hover .social-icons__icon-path {
	fill: #E4405F;
}

.spotlight-articles .splide__arrow:hover {
	opacity: 0.4;
}

.spotlight-articles .splide__pagination__page:hover {
	opacity: 0.5;
}

.access__info-google-map-link:hover {
	opacity: 0.5;
}

.wpcf7 .contact-form__field.-privacy .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label a:hover {
	opacity: 0.5;
}

.wpcf7 .contact-form__submit input[type=submit]:hover,
.wpcf7 .contact-form__submit button[type=submit]:hover,
.wpcf7 .contact-form__submit input[type=button]:hover,
.wpcf7 .contact-form__submit button[type=button]:hover {
	opacity: 0.5;
}

.contact__recaptcha a:hover {
	opacity: 0.5;
}

.facility__limited-item-room-number a:hover {
	opacity: 0.7;
}

.header__logo-link:hover {
	opacity: 0.5;
}

.header__hotel-logo-link:hover {
	opacity: 0.5;
}

.header__drawer-group-link:hover {
	opacity: 0.5;
}

.header__drawer-group-sns-link:hover {
	opacity: 0.5;
}

.header__drawer-nav-item a:hover {
	opacity: 0.5;
}

.header__drawer-hotel-contact-tel-link:hover {
	opacity: 0.5;
}

.information__filter:hover {
	opacity: 1;
}

.information__articles .page-numbers[href]:hover {
	opacity: 0.5;
}

.rooms__item-link:hover .rooms__item-img img {
	filter: brightness(130%);
	transform: scale(1.05);
}

.top-fv__slider .splide__pagination__page:not(.is-active):hover {
	opacity: 0.5;
}

.top-information__item-link:hover .top-information__item-thumbnail img {
	filter: brightness(130%);
	transform: scale(1.35);
}

.top-rooms__card-link:hover .top-rooms__card-img img {
	filter: brightness(130%);
	transform: scale(1.35);
}

.top-service__link:hover {
	opacity: 0.5;
}

.top-contact__item-link:hover {
	opacity: 0.5;
}

.top-hotel-group__item-link:hover .top-hotel-group__item-img img {
	filter: brightness(130%);
	transform: scale(1.35);
}

}

@media (prefers-reduced-motion: reduce) {

body {
	animation: none;
}

}

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

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

html {
	font-size: 1.248049922vw;
}

body.wp-theme-ks-com-group-theme main {
	margin-top: 6.0625rem;
}

body.wp-theme-ks-com-hotel-theme main {
	margin-top: 5.5625rem;
}

body.is-fixed {
	position: static;
	position: initial;
}

a[href^="tel:"] {
	pointer-events: none;
}

a:not([href]):hover {
	opacity: 1;
}

.anime-zoom__img img {
	transition: 0.8s all;
}

.block-section-header__title {
	font-size: 2.5rem;
	line-height: 0.7;
}

.block-category-header__title {
	font-size: 1.3125rem;
}

.block-category-list__category-sets {
	gap: 3.125rem 2rem;
}

.block-category-list.-category-sets-2 .block-category-list__category-sets {
	grid-template-columns: 1fr 1fr;
}

.block-category-list__items.-col-2 {
	grid-template-columns: repeat(2, 1fr);
}

.block-category-list__items.-col-3 {
	grid-template-columns: repeat(3, 1fr);
}

.block-full-image__img {
	aspect-ratio: 1282/290;
}

.block-full-image__placeholder {
	aspect-ratio: 1282/290;
}

.block-page-nav__items {
	gap: 2.5rem 1.3125rem;
}

.block-page-nav__item {
	width: calc((100% - 5.25rem) / 5);
}

.block-page-nav__items.-items-1 .block-page-nav__item {
	width: 100%;
}

.block-page-nav__items.-items-2 .block-page-nav__item {
	width: calc((100% - 1.3125rem) / 2);
}

.block-page-nav__items.-items-3 .block-page-nav__item {
	width: calc((100% - 2.625rem) / 3);
}

.block-page-nav__items.-items-4 .block-page-nav__item {
	width: calc((100% - 3.9375rem) / 4);
}

.block-page-nav__label {
	font-size: 1.3125rem;
}

.c-btn-2__link {
	display: inline-block;
	padding: 0 1.25rem 0.125rem 0.25rem;
	text-transform: uppercase;
	width: 13.25rem;
}

.c-contact {
	justify-content: flex-end;
	margin-top: 1.6875rem;
	padding-right: 1.875rem;
}

.c-content h4,
.c-content h5,
.c-content h6 {
	margin-bottom: -1.875rem;
}

.c-content h2 {
	font-size: 1.75rem;
	padding: 1.625rem 1rem 1.6875rem;
}

.c-content blockquote {
	padding: 2.5rem 2.5rem 1.25rem;
}

.c-content blockquote::before {
	left: 1.125rem;
}

.c-content ul li,
.c-content ol li {
	margin-left: 1.25rem;
}

.c-content table th,
.c-content table td {
	padding: 0.625rem 1rem;
}

.footer {
	padding-bottom: 1.25rem;
	padding-top: 2.25rem;
}

.footer__main {
	gap: 3.125rem;
	grid-template-columns: auto 1fr;
	margin-bottom: 12.5rem;
}

.footer__left {
	max-width: 25rem;
}

.footer__logo {
	margin-bottom: 0.625rem;
	transition: opacity 0.3s;
}

.footer__description {
	text-align: left;
}

.footer__line {
	justify-self: end;
}

.footer__line-link {
	max-width: 17.3125rem;
}

.footer__bottom {
	flex-direction: row;
	justify-content: space-between;
}

.footer__copyright {
	text-align: center;
}

.info-card__link {
	grid-template-columns: auto 1fr;
	grid-template-rows: auto;
	padding: 1.25rem;
}

.info-card__thumbnail {
	width: 15.3125rem;
}

.info-card__thumbnail img {
	aspect-ratio: 245/245;
}

.info-card__meta {
	margin-bottom: 0.875rem;
}

.info-card__title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	margin-bottom: 1.25rem;
	min-height: 3.375rem;
	overflow: hidden;
}

.info-card__btn {
	margin-top: auto;
}

.inner {
	max-width: 83.875rem;
	padding-left: 1.875rem;
	padding-right: 1.875rem;
}

.page-fv {
	overflow: hidden;
}

.wp-theme-ks-com-group-theme .page-fv {
	padding-bottom: 3.125rem;
	padding-top: 2.9375rem;
}

.wp-theme-ks-com-group-theme .page-fv .page-fv__title-en {
	font-size: 4rem;
}

.wp-theme-ks-com-hotel-theme .page-fv {
	background-image: var(--page-fv-bg-pc);
	height: 21.875rem;
	padding-bottom: 6.875rem;
	padding-top: 6.875rem;
}

.wp-theme-ks-com-hotel-theme .page-fv .page-fv__title-en {
	font-size: 4rem;
}

.wp-theme-ks-com-hotel-theme .page-fv .page-fv__title-ja {
	font-size: 1.0625rem;
}

.page-fv__title {
	gap: 0.75rem;
}

.page-fv__title::before {
	top: 65%;
}

.page-fv__title-en {
	font-size: 4rem;
}

.spotlight-articles .splide__arrow {
	--arrow-width: 1.25rem;
	--arrow-position: 0.5rem;
	height: 2.3125rem;
	top: 43%;
}

.spotlight-articles .splide__pagination {
	margin-top: 1.625rem;
}

.spotlight-articles.-grid .spotlight-articles__list {
	gap: 1.875rem;
	grid-template-columns: repeat(2, 1fr);
}

.spotlight-articles.-grid-fallback .splide__track {
	overflow: visible;
}

.spotlight-articles.-grid-fallback .splide__list {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr) !important;
	transform: none !important;
}

.spotlight-articles.-grid-fallback .splide__list {
	grid-gap: 1.875rem;
	gap: 1.875rem;
}

.spotlight-articles.-grid-fallback .splide__slide {
	display: list-item !important;
	opacity: 1 !important;
	visibility: visible !important;
	width: 100% !important;
}

.spotlight-articles.-empty {
	padding: 2.5rem;
}

.access__inner {
	align-items: center;
	gap: 1.875rem;
	grid-template-columns: repeat(2, 1fr);
}

.access__map {
	height: 44.0625rem;
}

.access__info {
	display: block;
}

.access__info-top {
	border-bottom: 0.0625rem dashed currentColor;
	justify-content: start;
	margin-bottom: 1.3125rem;
	max-width: 39rem;
	padding-bottom: 1.5rem;
}

.access__info-hotel {
	gap: 2.0625rem;
}

.access__info-hotel-name {
	font-size: 1.875rem;
}

.access__info-google-map-link {
	margin-bottom: 3rem;
}

.contact--layout {
	padding-bottom: 7.5rem;
	padding-top: 4.0625rem;
}

.contact__description {
	margin-bottom: 4.6875rem;
	padding-bottom: 4.25rem;
}

.wpcf7.-is-confirm .contact-form__submit {
	margin-bottom: 0;
	margin-top: 3.5rem;
}

.wpcf7 .contact-form__label {
	margin-bottom: 0.625rem;
}

.wpcf7 .contact-form__input input[type=text],
.wpcf7 .contact-form__input input[type=email],
.wpcf7 .contact-form__input input[type=tel],
.wpcf7 .contact-form__input input[type=number],
.wpcf7 .contact-form__input textarea {
	font-size: 1.125rem;
}

.wpcf7 .contact-form__field.-privacy {
	margin-bottom: 3.125rem;
}

.wpcf7 .contact-form__submit {
	gap: 1.875rem;
	margin-bottom: 1rem;
}

.wpcf7 .contact-form__submit .contact-form__confirm-actions:not([hidden]) {
	gap: 1.875rem;
}

.wpcf7 .contact-form__submit .wpcf7-spinner {
	right: 26.6%;
}

.error {
	padding-bottom: 12.5rem;
	padding-top: 9.125rem;
}

.error__heading {
	font-size: 1.5625rem;
	line-height: 1.4;
	margin-bottom: 2.125rem;
}

.error__text {
	margin-bottom: 2.125rem;
}

.error__btn {
	margin-top: 2.125rem;
}

.facility--layout {
	margin-bottom: 7.5rem;
	margin-top: 5.5625rem;
}

.facility__header-title {
	font-size: 1.5rem;
}

.facility__limited-heading {
	font-size: 2.5rem;
	margin-bottom: 2.875rem;
	padding-bottom: 0.6875rem;
}

.facility__limited-items {
	gap: 3.75rem 1.875rem;
	grid-template-columns: repeat(2, 1fr);
	justify-content: space-between;
	margin-bottom: 2.5rem;
}

.facility__limited-items.-has-img {
	margin-bottom: 5.25rem;
}

.common-facilities {
	padding-bottom: 7.5rem;
	padding-top: 6.25rem;
}

.common-facilities__heading {
	font-size: 2.5rem;
	margin-bottom: 2.875rem;
	padding-bottom: 0.6875rem;
}

.common-facilities__content {
	max-width: 69.6875rem;
}

.food-and-drink--layout {
	margin-bottom: 7.5rem;
	margin-top: 7.5rem;
}

.food-and-drink__content {
	gap: 8.125rem;
}

.food-and-drink__content .wp-block-group {
	gap: 4.875rem;
}

.food-and-drink__content #special-menu {
	margin-bottom: -2.375rem;
}

.fd-menu-grid__layouts {
	gap: 3.125rem;
}

.fd-menu-grid__layout-items {
	align-items: start;
	gap: 3.125rem;
}

.fd-menu-grid__layout.-layout-2col .fd-menu-grid__layout-items {
	gap: 3.125rem 1.9375rem;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto auto 1fr;
}

.fd-menu-grid__layout.-layout-3col .fd-menu-grid__layout-items {
	gap: 3.125rem 1.84375rem;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto auto 1fr;
}

.fd-menu-grid__layout.-description-only .fd-menu-grid__layout-items {
	grid-template-rows: auto;
}

.fd-menu-grid__layout.-description-only .fd-menu-grid__layout-item {
	grid-row: span 1;
	grid-template-rows: auto;
}

.fd-menu-grid__layout-item {
	gap: 0.6875rem;
}

.fd-menu-grid__layout-item-title {
	font-size: 1.125rem;
}

.fd-menu-grid__layout.-layout-2col .fd-menu-grid__layout-item-img img {
	aspect-ratio: 626/417;
}

.fd-menu-grid__layout.-layout-3col .fd-menu-grid__layout-item-img img {
	aspect-ratio: 408/272;
}

.header {
	height: 5.5625rem;
}

.header__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 90rem;
	padding-left: 1.5rem;
	padding-right: 1.625rem;
}

.header__left {
	gap: 1.875rem;
}

.header__separator {
	background-color: #282828;
	flex-shrink: 0;
	height: 100%;
	width: 0.0625rem;
}

.header__logo {
	display: flex;
}

.header__right {
	gap: 3.125rem;
}

.header__hamburger {
	width: 3.25rem;
}

.header__hamburger span:nth-of-type(2) {
	top: -0.5rem;
}

.header__hamburger span:nth-of-type(3) {
	top: 0.5rem;
}

.header__drawer-content {
	display: grid;
	grid-template-columns: repeat(2, auto);
	justify-content: space-between;
	max-width: 72.8125rem;
}

.header__drawer-group {
	width: 23.75rem;
}

.header__drawer-hotel {
	width: 37.625rem;
}

.header__drawer-nav-items {
	gap: 2.1875rem 1.25rem;
	grid-template-columns: repeat(2, 1fr);
	max-width: 30rem;
}

.header__drawer-nav-item a {
	font-size: 1.1875rem;
	gap: 0.5rem;
	letter-spacing: 0.2em;
}

.header__drawer-hotel-contact {
	display: grid;
	grid-template-columns: repeat(2, auto);
	justify-content: space-between;
}

.header__drawer-hotel-contact-tel {
	gap: 0.5rem;
	grid-template-columns: repeat(2, auto);
	text-align: left;
}

.information-detail {
	padding-bottom: 7.5rem;
	padding-top: 2rem;
}

.information-detail--layout {
	margin-bottom: 3.75rem;
}

.information-detail__back-btn {
	margin-bottom: 3.4375rem;
}

.information-detail__title {
	margin-bottom: 0.9375rem;
	padding-bottom: 1.0625rem;
}

.information-detail__thumbnail {
	margin-bottom: 4.75rem;
}

.information-detail__thumbnail img {
	-o-object-fit: cover;
	aspect-ratio: 972/423;
	object-fit: cover;
}

.information-detail__content {
	gap: 3.125rem;
}

.information-detail-spotlight--layout {
	margin-bottom: 3.75rem;
}

.information-detail-spotlight__heading {
	gap: 0.3125rem;
	margin-bottom: 2rem;
}

.information {
	padding-bottom: 7.5rem;
	padding-top: 2rem;
}

.information__back-btn {
	margin-bottom: 3.4375rem;
}

.information__header {
	align-items: center;
	border-bottom: 0.125rem solid currentColor;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 5.5rem;
	padding-bottom: 0.9375rem;
}

.information__title {
	font-size: 1.3125rem;
}

.information__filters {
	gap: 1.875rem;
}

.information__list {
	grid-template-columns: repeat(2, 1fr);
}

.room-detail--layout {
	margin-bottom: 7.5rem;
	margin-top: 2rem;
}

.room-detail__back-btn {
	margin-bottom: 6.875rem;
}

.room-detail__title {
	margin-bottom: 2.5rem;
	padding-bottom: 2.5rem;
}

.room-detail__description {
	line-height: 1.5625;
}

.room-detail__images {
	margin-bottom: 5.625rem;
}

.room-detail__images:not(.splide) {
	gap: 0;
	grid-template-columns: repeat(2, 1fr);
}

.room-detail__images.splide .splide__slide {
	width: 50%;
}

.room-detail__images.splide .splide__arrow {
	height: 2.5rem;
	width: 2.5rem;
}

.room-detail__images.splide .splide__arrow--prev {
	left: -3.5rem;
}

.room-detail__images.splide .splide__arrow--next {
	right: -3.5rem;
}

.room-detail__image img {
	aspect-ratio: 626/418;
}

.room-detail__info-list {
	margin-bottom: 3.75rem;
}

.room-detail__info-item {
	align-items: center;
	grid-template-columns: 12rem 1fr;
	padding-bottom: 1.5rem;
	padding-top: 1.5rem;
}

.room-detail__info-label {
	padding-left: 1.375rem;
}

.room-detail__info-content {
	border-left: 0.0625rem solid currentColor;
	line-height: 1.6;
	padding-left: 2.3125rem;
}

.room-detail__info-footer {
	align-items: center;
	display: flex;
	gap: 1.25rem;
	justify-content: space-between;
}

.room-pricing {
	padding-bottom: 8.75rem;
	padding-top: 6.25rem;
}

.room-pricing__title {
	margin-bottom: 5.4375rem;
}

.room-pricing__content {
	gap: 3.4375rem;
	margin-bottom: 4.0625rem;
}

.room-pricing__category-list {
	grid-template-columns: auto auto 1fr;
}

.room-pricing__category-item {
	grid-column: 1/-1;
	grid-template-columns: subgrid;
	min-height: 5.875rem;
}

.room-pricing__category-day,
.room-pricing__category-price {
	padding-left: 1.875rem;
	padding-right: 1.875rem;
	text-align: center;
}

.room-pricing__category-day {
	min-width: 9.8125rem;
}

.room-pricing__category-price {
	min-width: 12.125rem;
}

.room-pricing__category-time {
	align-items: center;
	padding-left: 1.875rem;
	padding-right: 1.875rem;
}

.rooms--layout {
	margin-bottom: 7.3125rem;
	margin-top: 7.3125rem;
}

.rooms__items {
	gap: 3.125rem 1.875rem;
	grid-template-columns: repeat(2, 1fr);
}

.rooms__item-img img {
	aspect-ratio: 626/400;
}

.rooms__item-description {
	font-size: 1rem;
	line-height: 1.5625;
}

.usage-time__header {
	margin-bottom: 3.875rem;
}

.usage-time__items {
	grid-template-columns: auto auto 1fr;
}

.usage-time__item {
	border-bottom: 0.0625rem dashed currentColor;
	border-top: 0.0625rem dashed currentColor;
	grid-column: 1/-1;
	grid-template-columns: subgrid;
	padding-bottom: 1.5rem;
	padding-top: 1.5rem;
}

.usage-time__item-label,
.usage-time__item-day,
.usage-time__item-time {
	min-height: 2.8125rem;
	padding-left: 1.875rem;
	padding-right: 1.875rem;
}

.usage-time__item-label,
.usage-time__item-day {
	border-right: 0.0625rem solid currentColor;
	justify-content: center;
	text-align: center;
}

.service--layout {
	margin-bottom: 7.5rem;
	margin-top: 7.5rem;
}

.service__content {
	gap: 8.125rem;
}

.service__content .wp-block-group {
	gap: 3.125rem;
}

.block-service-grid__items {
	align-items: start;
	gap: 2.1875rem;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto auto;
}

.block-service-grid__item {
	grid-row: span 2;
	grid-template-rows: subgrid;
}

.block-service-grid__item.-no-image {
	grid-row: span 2;
}

.page-thanks {
	padding-bottom: 12.5rem;
	padding-top: 9.125rem;
}

.page-thanks__text {
	margin-bottom: 2.125rem;
}

.top-fv {
	height: 38.125rem;
}

.top-fv__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 90rem;
}

.top-fv__content {
	gap: 1.25rem;
	top: 44%;
}

.top-fv__catchcopy {
	font-size: 2.4375rem;
	letter-spacing: 0.25em;
}

.top-fv__slider .splide__pagination {
	bottom: 2.625rem;
}

.top-information--layout {
	margin-bottom: 6.875rem;
}

.top-information__header {
	gap: 0.9375rem;
}

.top-information__heading {
	gap: 1.25rem;
}

.top-information__list {
	gap: 1.625rem;
	grid-template-columns: repeat(4, 1fr);
}

.top-rooms__content {
	left: calc(50% - min(48vw, 40.5rem));
	padding: 1.5rem 1.875rem 1.9375rem;
	width: -moz-fit-content;
	width: fit-content;
}

.top-rooms__description {
	font-size: 0.8125rem;
	line-height: 1.923;
}

.top-rooms__card-img img {
	aspect-ratio: 533/610;
	transition: transform 0.6s ease, filter 0.6s ease;
}

.top-rooms__card-name {
	font-size: 1.0625rem;
	height: 2.0625rem;
	min-width: 14.375rem;
}

.top-service {
	padding-bottom: 4.5rem;
	padding-top: 4.5rem;
}

.top-service__description {
	line-height: 1.5625;
	margin-bottom: 2.5rem;
}

.top-service__links {
	align-items: center;
	gap: 3.75rem;
	grid-template-columns: repeat(3, auto);
}

.top-service__link {
	gap: 1.25rem;
}

.top-service__divider {
	height: 8.3125rem;
	rotate: 15deg;
	width: 0.0625rem;
}

.top-map--layout {
	margin-bottom: 5.375rem;
}

.top-contact--layout {
	margin-bottom: 5.875rem;
}

.top-contact__inner {
	gap: 5.46875rem;
	grid-template-columns: auto auto;
}

.top-contact__heading {
	border-right: 0.0625rem solid currentColor;
	height: 9.5625rem;
	padding-right: 4.125rem;
}

.top-contact__items {
	gap: 4.625rem;
	grid-template-columns: repeat(2, 1fr);
}

.top-hotel-group {
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
}

.top-hotel-group__heading {
	font-size: 2.4375rem;
	margin-bottom: 7.1875rem;
}

.top-hotel-group__list {
	gap: 3.5rem 1.875rem;
	grid-template-columns: repeat(4, 1fr);
}

.top-hotel-group__item-link {
	gap: 0.5rem;
}

.top-hotel-group__item-name {
	font-size: 1.5625rem;
	margin-bottom: -0.625rem;
}

.top-hotel-group__item-name::before {
	top: -0.375rem;
}

.top-hotel-group__item-catchcopy {
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0;
}

}

@media screen and (min-width: 1024px) {

html {
	scroll-padding-top: 6.0625rem;
}

}

@media (min-width: 1282px) {

html {
	font-size: 16px;
}

}

@media screen and (min-width: 1370px) {

.spotlight-articles .splide__arrow {
	--arrow-position: -1.125rem;
}

}

@media (md) and (max-width: 1360px) {

.room-detail__images.splide .splide__arrow--prev {
	left: -2.875rem;
}

.room-detail__images.splide .splide__arrow--next {
	right: -2.875rem;
}

}

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

.block-page-nav__items.-sp-col-2 .block-page-nav__item {
	width: calc((100% - 1.3125rem) / 2);
}

.block-page-nav__item.-sp-small .block-page-nav__label {
	font-size: 0.9375rem;
}

.wp-theme-ks-com-hotel-theme .page-fv .page-fv__contact {
	width: 100%;
}

.access {
	padding-bottom: 3.75rem;
	padding-top: 2.6875rem;
}

.access__info-top {
	order: -1;
	text-align: center;
}

.access__info-hotel-logo {
	margin-left: auto;
	margin-right: auto;
}

.access__info-bottom {
	padding-left: 1.875rem;
	padding-right: 1.875rem;
}

.fd-menu-grid__layout.-description-only .fd-menu-grid__layout-items {
	gap: 0;
	grid-template-columns: 1fr;
}

.header__nav-links {
	display: none;
}

.header__drawer {
	padding-bottom: 3.125rem;
	padding-top: 6.25rem;
}

.header__drawer-content {
	display: flex;
	flex-direction: column-reverse;
}

.information__title {
	border-bottom: 0.125rem solid currentColor;
	padding-bottom: 0.875rem;
}

.room-detail__info-label {
	border-bottom: 0.0625rem dashed currentColor;
	margin-bottom: 1.25rem;
	padding-bottom: 1.25rem;
}

.room-detail__room-numbers {
	margin-bottom: 2.3125rem;
}

.room-pricing__category-item {
	gap: 0.6875rem 1rem;
	padding-left: 0.9375rem;
	padding-right: 0.9375rem;
}

.room-pricing__category-day,
.room-pricing__category-price {
	padding-bottom: 0.5625rem;
	padding-top: 0.5625rem;
}

.room-pricing__category-day {
	max-width: 11.875rem;
	min-width: 7.125rem;
	padding-right: 1rem;
}

.room-pricing__category-price {
	border-right: none;
}

.room-pricing__category-time {
	grid-column: 1/-1;
}

.usage-time__item-label {
	border-bottom: 0.0625rem dashed currentColor;
	padding-bottom: 0.9375rem;
}

.block-service-grid__items {
	margin-left: auto;
	margin-right: auto;
	margin-top: 1rem;
	max-width: 18.3125rem;
}

.top-contact__heading {
	border-bottom: 0.0625rem solid currentColor;
	padding-bottom: 0.875rem;
	width: 21.25rem;
}

}

@keyframes slideInFromBottom {

to {
	opacity: 1;
	transform: translateY(0);
}

}

@keyframes pageFadeIn {

from {
	opacity: 0;
}

to {
	opacity: 1;
}

}


/*# sourceMappingURL=style-hotel.css.map */
