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

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;
}

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

/*                   Error                     */

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

.error {
	font-feature-settings: "palt";
	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;
}

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

/*                   Header                    */

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

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

.header__inner {
	grid-gap: 1.25rem;
	align-items: center;
	display: grid;
	gap: 1.25rem;
	grid-template-columns: max-content 1fr;
	height: inherit;
}

.header__logo {
	align-items: center;
	display: flex;
	height: inherit;
	justify-items: center;
	place-items: center;
	position: relative;
	z-index: 50;
}

.header__logo-link {
	align-items: center;
	display: flex;
	width: 15.5rem;
}

.header__logo-link {
	transition: opacity 0.3s ease;
}

.header__logo-link img {
	-o-object-fit: cover;
	aspect-ratio: 293/53;
	object-fit: cover;
}

.header__nav-wrapper {
	display: none;
}

.header__pc-nav {
	display: none;
}

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

/*                  PC Header                  */

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

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

/*                  SP Header                  */

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

.header__drawer {
	background-color: rgba(246, 244, 244, 0.97);
	display: none;
	height: 100vh;
	height: 100dvh;
	overflow-y: auto;
	padding-bottom: 3.75rem;
	padding-top: 8.75rem;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}

.header__sp-nav {
	margin-bottom: 2.5rem;
}

.header__sp-nav-items {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.header__sp-nav-item {
	padding-left: 2.3125rem;
	padding-right: 2.3125rem;
}

.header__sp-nav-item:first-child a {
	border-top: 0.0625rem solid #C9C9C9;
}

.header__sp-nav-item a {
	grid-gap: 0.625rem;
	align-items: center;
	border-bottom: 0.0625rem solid #C9C9C9;
	display: grid;
	font-size: 1.375rem;
	font-weight: 600;
	gap: 0.625rem;
	grid-template-columns: repeat(2, auto);
	justify-content: center;
	letter-spacing: 0.2em;
	padding-bottom: 1.71875rem;
	padding-top: 1.71875rem;
}

.header__sp-nav-item a::before {
	background: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width='7' height='10' viewBox='0 0 7 10' fill='none'><path d='M0.720703 0.721558L6.08913 4.70458L0.720703 8.6876' stroke='black' stroke-width='1.44312' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
	content: "";
	display: block;
	height: 0.625rem;
	width: 0.4375rem;
}

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

/*                 Hamburger                   */

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

.header__hamburger {
	display: block;
	height: inherit;
	margin-left: auto;
	max-width: 3.8125rem;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	position: relative;
	width: 100%;
	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:nth-of-type(2) {
	top: 0.0625rem;
	transform: rotate(45deg);
}

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

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

/*           Information Detail Page           */

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

.information-detail--layout {
	margin-bottom: 6.875rem;
	margin-top: 1.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 {
	background-color: #e5e5e5;
	padding-bottom: 3.5rem;
	padding-top: 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--layout {
	margin-bottom: 6.875rem;
	margin-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;
	text-transform: uppercase;
}

.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;
}

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

/*                   Policy                    */

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

.policy--layout {
	margin-bottom: 6.875rem;
	margin-top: 4.625rem;
}

.policy__title {
	border-bottom: 0.125rem solid currentColor;
	font-size: 1.3125rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.4285714286;
	margin-bottom: 3.125rem;
	padding-bottom: 0.75rem;
}

.policy__content {
	grid-gap: 1.875rem;
	display: grid;
	gap: 1.875rem;
}

.policy__content p {
	font-feature-settings: "palt";
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.9230769231;
}

.policy__content strong {
	font-weight: 900;
}

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

/*                    Top FV                    */

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

.top-fv {
	height: 39.4375rem;
}

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

.top-fv__inner {
	height: 100%;
	padding-left: 1.875rem;
	padding-right: 1.875rem;
	position: relative;
	width: 100%;
}

.top-fv__img {
	border-radius: 0.625rem;
	height: 100%;
	overflow: hidden;
	width: 100%;
}

.top-fv__img img {
	-o-object-fit: cover;
	-o-object-position: center;
	aspect-ratio: 370/631;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.top-fv__content {
	left: 50%;
	position: absolute;
	top: 25rem;
	transform: translateX(-50%);
	z-index: 10;
}

.top-fv__catchcopy {
	grid-gap: 1rem;
	background-color: #fff;
	box-shadow: 0px 0px 1.83125rem 0px rgba(0, 0, 0, 0.25);
	display: grid;
	gap: 1rem;
	padding: 1.75rem 0.8125rem 1.5625rem;
}

.top-fv__catchcopy-main {
	width: 23.375rem;
}

.top-fv__catchcopy-main img {
	-o-object-fit: contain;
	aspect-ratio: 537/114;
	object-fit: contain;
}

.top-fv__catchcopy-sub {
	margin-left: 0.25rem;
	width: 19rem;
}

.top-fv__catchcopy-sub img {
	-o-object-fit: contain;
	aspect-ratio: 355/21;
	object-fit: contain;
}

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

/*                  Splide FV                  */

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

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

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

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

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

/* Splide pagination（インジケーター） */

.js-fv-slider .splide__pagination {
	bottom: 2rem;
	display: flex;
	gap: 0.5rem;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 100%;
	z-index: 20;
}

.js-fv-slider .splide__pagination__page {
	background-color: #000000;
	border-radius: 0;
	height: 0.25rem;
	margin: 0;
	opacity: 1;
	transition: background-color 0.3s ease;
	width: 2.625rem;
}

.js-fv-slider .splide__pagination__page.is-active {
	background-color: #fff;
	transform: none;
	transform: initial;
}

.js-fv-slider .splide__pagination__page:not(.is-active) {
	transition: opacity 0.3s ease;
}

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

/*              How do you feel today          */

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

.top-feeling {
	background-color: #fff;
	box-shadow: 0px 0px 2.86875rem 0px rgba(0, 0, 0, 0.09);
}

.top-feeling--layout {
	margin-bottom: 7rem;
	padding-bottom: 5.75rem;
	padding-top: 3.875rem;
}

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

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

.top-feeling__title {
	font-family: "Abhaya Libre", serif;
	font-size: 2.25rem;
	font-weight: 400;
	line-height: 1.133;
	margin-bottom: 0.375rem;
}

.top-feeling__subtitle {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.556;
}

.top-feeling__cards {
	grid-gap: 1.875rem;
	display: grid;
	gap: 1.875rem;
	grid-template-columns: 1fr;
}

.top-feeling__card {
	border-radius: 0.625rem;
	display: block;
	height: 23.125rem;
	overflow: hidden;
	position: relative;
}

.top-feeling__card-img {
	height: 100%;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.top-feeling__card-img img {
	-o-object-fit: cover;
	aspect-ratio: 407/374;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease, filter 0.6s ease;
	width: 100%;
}

.top-feeling__card-content {
	left: 50%;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	z-index: 2;
}

.top-feeling__card-title {
	color: #fff;
	font-family: "Abhaya Libre", serif;
	font-size: 2.25rem;
	font-weight: 400;
	line-height: 0.683;
	margin-bottom: 0.5625rem;
}

.top-feeling__card-tag {
	color: #fff;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.556;
	margin-bottom: 1.1875rem;
}

.top-feeling__card-icon {
	height: 4.0625rem;
	margin: 0 auto;
	width: 4.0625rem;
}

.top-feeling__card-icon img {
	-o-object-fit: contain;
	aspect-ratio: 1/1;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

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

/*              Our 9 Worlds                   */

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

.top-worlds--layout {
	margin-bottom: 7.125rem;
}

.top-worlds__heading {
	margin-bottom: 1rem;
}

.top-worlds__title {
	border-bottom: 0.0625rem solid currentColor;
	font-family: "Abhaya Libre", serif;
	font-size: 3.4375rem;
	font-weight: 400;
	line-height: 1.133;
	margin-bottom: 0.8125rem;
	padding-bottom: 0.4375rem;
}

.top-worlds__subtitle {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.556;
}

.top-worlds__description {
	font-feature-settings: "palt";
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.5625;
	margin-bottom: 5.4375rem;
}

.top-worlds__categories {
	grid-gap: 3.75rem;
	display: grid;
	gap: 3.75rem;
}

.top-worlds__category-heading {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1.875rem;
}

.top-worlds__category-icon {
	height: 2.4375rem;
	width: 2.5625rem;
}

.top-worlds__category-icon img {
	-o-object-fit: contain;
	aspect-ratio: 41/39;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.top-worlds__category-title {
	font-family: "Abhaya Libre", serif;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 0.683;
}

.top-worlds__category-subtitle {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.556;
}

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

.top-worlds__hotel-link {
	display: grid;
}

.top-worlds__hotel-name {
	font-family: "Abhaya Libre", serif;
	font-size: 1.3125rem;
	font-weight: 400;
	line-height: 1.333;
	margin-bottom: 0.25rem;
	position: relative;
}

.top-worlds__hotel-name::before {
	background-color: #000000;
	content: "";
	height: 0.1875rem;
	left: 0;
	position: absolute;
	top: -0.375rem;
	width: 2.0625rem;
}

.top-worlds__hotel-img {
	border-radius: 0.625rem;
	margin-bottom: 0.9375rem;
	overflow: hidden;
	width: 100%;
}

.top-worlds__hotel-img picture {
	display: block;
}

.top-worlds__hotel-img img {
	-o-object-fit: cover;
	aspect-ratio: 370/260;
	object-fit: cover;
	transition: transform 0.6s ease, filter 0.6s ease;
	width: 100%;
}

.top-worlds__hotel-description {
	font-feature-settings: "palt";
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.563;
	margin-bottom: 1.1875rem;
}

.top-worlds__hotel-tags {
	font-family: "Inter", sans-serif;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.333;
}

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

/*          Find Your Best Moments             */

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

.top-moments__content {
	overflow: hidden;
	position: relative;
}

.top-moments__panel {
	display: block;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	transition: opacity 0.35s ease, visibility 0.35s ease;
	visibility: hidden;
	width: 100%;
}

.top-moments__panel.is-active {
	opacity: 1;
	pointer-events: auto;
	position: relative;
	visibility: visible;
}

.top-moments__img {
	width: 100%;
}

.top-moments__img img {
	-o-object-fit: cover;
	aspect-ratio: 430/295;
	object-fit: cover;
	width: 100%;
}

.top-moments__right {
	border-bottom: 0.0625rem solid #979797;
	display: grid;
	padding-bottom: 5rem;
}

.top-moments__heading {
	border-bottom: 0.0625rem solid #979797;
	padding: 1.5625rem 1.875rem 1.875rem;
}

.top-moments__title {
	font-family: "Abhaya Libre", serif;
	font-size: 2.0625rem;
	font-weight: 400;
	line-height: 1.133;
}

.top-moments__subtitle {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.556;
}

.top-moments__bottom {
	padding: 2.1875rem 1.875rem 0;
}

.top-moments__tabs {
	display: flex;
	gap: 2.5rem;
	justify-content: flex-start;
	margin-bottom: 1.875rem;
}

.top-moments__tab {
	align-items: start;
	background: none;
	border: none;
	border-bottom: 1px solid transparent;
	cursor: pointer;
	display: flex;
	gap: 0.3125rem;
	padding: 0;
	padding-bottom: 0.0625rem;
	position: relative;
	transition: border-color 0.3s ease, opacity 0.3s ease;
}

.top-moments__tab::after {
	border-left: 0.21875rem solid transparent;
	border-right: 0.21875rem solid transparent;
	border-top: 0.375rem solid #000000;
	content: "";
	display: block;
	flex-shrink: 0;
	height: 0;
	transition: border-top-color 0.3s ease, transform 0.3s ease;
	width: 0;
}

.top-moments__tab.is-active {
	border-bottom-color: #91A226;
	cursor: auto;
}

.top-moments__tab.is-active .top-moments__tab-text {
	color: #91A226;
}

.top-moments__tab.is-active::after {
	border-top-color: #91A226;
}

.top-moments__tab-text {
	color: #000000;
	font-family: "Abhaya Libre", serif;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.2;
	transition: color 0.3s ease;
}

.top-moments__panel-title {
	font-size: 2.0625rem;
	font-weight: 700;
	line-height: 0.97;
}

.top-moments__label {
	font-size: 0.5625rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	line-height: 2.778;
	margin-bottom: 0.5625rem;
}

.top-moments__description {
	font-feature-settings: "palt";
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.9230769231;
}

.top-moments__btn {
	margin-top: 2.5rem;
}

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

/*          Our Hospitality                   */

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

.top-hospitality {
	background-color: #fff;
}

.top-hospitality--layout {
	margin-bottom: 7.8125rem;
	padding-bottom: 1.3125rem;
	padding-top: 3.125rem;
}

.top-hospitality__heading {
	margin-bottom: 2.625rem;
	text-align: center;
}

.top-hospitality__title {
	font-family: "Abhaya Libre", serif;
	font-size: 2.1875rem;
	font-weight: 400;
	line-height: 1.139;
}

.top-hospitality__subtitle {
	font-feature-settings: "palt";
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.563;
}

.top-hospitality__items {
	grid-gap: 0;
	display: grid;
	gap: 0;
	grid-template-columns: 1fr;
}

.top-hospitality__item {
	align-items: center;
	border-bottom: 1px solid #000000;
	display: flex;
	flex-direction: column;
	padding-bottom: 2.5rem;
	padding-top: 0;
}

.top-hospitality__icon {
	height: 4.375rem;
	margin-bottom: 0.9375rem;
	width: 4.375rem;
}

.top-hospitality__icon img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.top-hospitality__item-title {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 0.5rem;
	text-align: center;
}

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

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

/*          More Stories, More Fun             */

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

.top-stories--layout {
	margin-bottom: 5.875rem;
}

.top-stories__heading {
	margin-bottom: 2rem;
	text-align: center;
}

.top-stories__title {
	font-family: "Abhaya Libre", serif;
	font-size: 2.1875rem;
	font-weight: 400;
	line-height: 1.139;
}

.top-stories__subtitle {
	font-feature-settings: "palt";
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.563;
}

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

/*          INFORMATION                        */

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

.top-information {
	background-color: #fff;
	padding-bottom: 6.25rem;
	padding-top: 3.375rem;
}

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

.top-information__header {
	align-items: flex-start;
	display: flex;
	justify-content: space-between;
	margin-bottom: 1.5625rem;
}

.top-information__title {
	font-family: "Abhaya Libre", serif;
	font-size: 1.6875rem;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.top-information__item {
	border-top: 1px dashed #000000;
}

.top-information__item:last-child {
	border-bottom: 1px dashed #000000;
}

.top-information__link {
	display: grid;
	padding-bottom: 1.25rem;
	padding-left: 0.125rem;
	padding-right: 1.375rem;
	padding-top: 1.375rem;
	position: relative;
}

.top-information__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;
	mask-image: url("../img/common/icon-arrow-right-1.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	right: 0.375rem;
	top: 50%;
	transform: translateY(-50%);
	transition: right 0.3s ease;
	width: 0.8125rem;
}

.top-information__meta {
	grid-gap: 0.625rem;
	align-items: center;
	display: grid;
	gap: 0.625rem;
	grid-template-columns: repeat(2, auto);
	justify-content: start;
}

.top-information__date {
	font-family: "Poppins", sans-serif;
	font-size: 0.75rem;
	line-height: 1.2;
}

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

.top-information__item-title {
	font-feature-settings: "palt";
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.563;
	overflow: hidden;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.top-information__item-title::after {
	background-color: #000000;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transition: width 0.3s ease;
	width: 0;
}

.top-information__link:hover .top-information__item-title::after {
	width: 100%;
}

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

/*          Follow our World (Instagram)      */

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

.top-instagram--layout {
	margin-bottom: 4.375rem;
}

.top-instagram__container {
	border: 0.0625rem solid #000000;
}

.top-instagram__heading {
	border-bottom: 0.0625rem solid #000000;
	padding-bottom: 1.75rem;
	padding-top: 1.5625rem;
	text-align: center;
}

.top-instagram__title {
	font-family: "Abhaya Libre", serif;
	font-size: 2.1875rem;
	font-weight: 400;
	line-height: 1.139;
}

.top-instagram__subtitle {
	font-feature-settings: "palt";
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.1;
}

.top-instagram__body {
	grid-gap: 1.5rem;
	display: grid;
	gap: 1.5rem;
	padding: 2.25rem 0.9375rem 1.6875rem;
}

.top-instagram__posts #sb_instagram {
	padding-bottom: 0 !important;
}

.top-instagram__posts #sb_instagram #sbi_images {
	gap: 1.25rem !important;
	padding-bottom: 0 !important;
	padding-top: 0 !important;
}

.top-instagram__posts #sb_instagram #sbi_images .sbi_item {
	border-radius: 0.5rem;
	overflow: hidden;
}

.top-instagram__posts #sb_instagram #sbi_images .sbi_item .sbi_photo img {
	transition: transform 0.6s ease, filter 0.6s ease;
}

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

.top-instagram__btn a {
	align-items: center;
	display: inline-grid;
	gap: 0.125rem;
	justify-content: center;
	transition: opacity 0.3s ease;
}

.top-instagram__btn a img {
	-o-object-fit: contain;
	aspect-ratio: 1/1;
	height: 1.875rem;
	margin-left: auto;
	margin-right: auto;
	object-fit: contain;
	width: 1.875rem;
}

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

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

/*          Open The Next Door (CTA)          */

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

.top-cta {
	background-image: url("../img/group/top/sp/cta-bg-01.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 19.375rem;
}

.top-cta__inner {
	height: 100%;
	position: relative;
}

.top-cta__content {
	background-color: #fff;
	bottom: 2.1875rem;
	display: flex;
	flex-direction: column;
	gap: 0.3125rem;
	height: 4.5rem;
	justify-content: center;
	left: 3.34375rem;
	padding-left: 1rem;
	position: absolute;
	width: 20.1875rem;
}

.top-cta__text-ja {
	font-feature-settings: "palt";
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	line-height: 1;
}

.top-cta__text-en {
	font-family: "Abhaya Libre", serif;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
	padding-left: 0.1875rem;
}

@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;
}

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

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

.information__filter:hover {
	opacity: 1;
}

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

.js-fv-slider .splide__pagination__page:not(.is-active):hover {
	opacity: 0.5;
}

.top-feeling__card:hover .top-feeling__card-img img {
	filter: brightness(150%);
	transform: scale(1.35);
}

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

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

.top-information__link:hover::before {
	right: 0.625rem;
}

.top-instagram__posts #sb_instagram #sbi_images .sbi_item .sbi_photo:hover img {
	filter: brightness(115%);
	transform: scale(1.35);
}

.top-instagram__btn a:hover {
	opacity: 0.5;
}

}

@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;
}

.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;
}

.header {
	height: 6.0625rem;
}

.header__logo-link {
	width: 18.3125rem;
}

.header__nav-wrapper {
	align-items: center;
	display: flex;
	gap: 1.75rem;
	height: 100%;
	justify-content: flex-end;
}

.header__pc-nav {
	display: block;
	height: 100%;
}

.header__pc-nav-items {
	align-items: center;
	display: flex;
	gap: 1.75rem;
	height: inherit;
}

.header__pc-nav-item {
	height: inherit;
	width: -moz-fit-content;
	width: fit-content;
}

.header__pc-nav-item a {
	font-feature-settings: "palt";
	align-items: center;
	color: #000000;
	display: inline-flex;
	font-family: "Noto Serif", serif;
	font-size: 1rem;
	font-weight: 600;
	height: inherit;
	justify-content: center;
	letter-spacing: 0.2em;
	line-height: 1.5;
	width: inherit;
	word-break: keep-all;
}

.header__hamburger {
	display: none;
}

.header__drawer {
	display: none;
}

.header__hamburger {
	display: none;
}

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

.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 {
	padding-bottom: 3.75rem;
	padding-top: 3.75rem;
}

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

.information--layout {
	margin-bottom: 7.5rem;
}

.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);
}

.policy--layout {
	margin-bottom: 9.0625rem;
	margin-top: 5.625rem;
}

.policy__title {
	margin-bottom: 6.0625rem;
}

.top-fv {
	height: 50.625rem;
}

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

.top-fv__inner {
	padding-left: 5.125rem;
	padding-right: 5.125rem;
}

.top-fv__img img {
	aspect-ratio: 1282/810.133;
}

.top-fv__content {
	left: 3.8125rem;
	top: 50%;
	transform: translateY(-50%);
}

.top-fv__catchcopy {
	gap: 1.3125rem;
	min-height: 14.125rem;
	padding: 2rem 3.375rem 2.375rem;
	width: 41.1875rem;
}

.top-fv__catchcopy-main {
	width: 33.5625rem;
}

.top-fv__catchcopy-sub {
	margin-left: 0.5rem;
	width: 22.1875rem;
}

.js-fv-slider .splide__pagination {
	bottom: 2.25rem;
	width: auto;
}

.js-fv-slider .splide__pagination__page {
	width: 2rem;
}

.top-feeling--layout {
	margin-bottom: 8.1875rem;
	padding-bottom: 6.25rem;
	padding-top: 4.6875rem;
}

.top-feeling__inner {
	gap: 1.875rem;
}

.top-feeling__title {
	font-size: 2.5rem;
	line-height: 1.133;
}

.top-feeling__cards {
	grid-template-columns: repeat(3, 1fr);
}

.top-feeling__card {
	height: 23.375rem;
}

.top-feeling__card-title {
	font-size: 2.25rem;
	line-height: 0.683;
	margin-bottom: 0.5625rem;
}

.top-feeling__card-tag {
	font-size: 1rem;
	line-height: 1.556;
	margin-bottom: 1.1875rem;
}

.top-worlds--layout {
	margin-bottom: 11rem;
}

.top-worlds__title {
	font-size: 4.625rem;
	line-height: 0.708;
	padding-bottom: 0.75rem;
}

.top-worlds__description {
	font-size: 0.8125rem;
	line-height: 1.923;
	margin-bottom: 2.6875rem;
}

.top-worlds__categories {
	gap: 6.875rem;
}

.top-worlds__category-heading {
	margin-bottom: 3.125rem;
}

.top-worlds__hotels {
	gap: 1.875rem;
}

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

.top-worlds__category.-grid-3 .top-worlds__hotels {
	grid-template-columns: repeat(3, 1fr);
}

.top-worlds__category.-grid-4 .top-worlds__hotels {
	gap: 1.25rem;
	grid-template-columns: repeat(4, 1fr);
}

.top-worlds__hotel {
	grid-gap: 0;
	cursor: pointer;
	display: grid;
	gap: 0;
	grid-row: span 4;
	grid-template-rows: subgrid;
}

.top-worlds__hotel-link {
	display: contents;
}

.top-worlds__hotel-img img {
	aspect-ratio: 626/320;
}

.top-worlds__category.-grid-2 .top-worlds__hotel-img img {
	aspect-ratio: 626/320;
}

.top-worlds__category.-grid-3 .top-worlds__hotel-img img {
	aspect-ratio: 407/250;
}

.top-worlds__category.-grid-4 .top-worlds__hotel-img img {
	aspect-ratio: 298/250;
}

.top-worlds__hotel-description {
	font-size: 1rem;
}

.top-worlds__category.-grid-4 .top-worlds__hotel-description {
	font-size: 0.78125rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1.538;
}

.top-moments__panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.top-moments__img img {
	aspect-ratio: 719/691;
}

.top-moments__right {
	border-bottom: 0.0625rem solid #979797;
	border-top: 0.0625rem solid #979797;
	grid-template-rows: 31.163% 1fr;
	padding-bottom: 0;
}

.top-moments__heading {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 3.125rem;
}

.top-moments__title {
	font-size: 2.625rem;
	line-height: 1.252;
}

.top-moments__bottom {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 3.125rem;
}

.top-moments__tabs {
	margin-bottom: 3.125rem;
}

.top-moments__description {
	min-height: 4.6875rem;
}

.top-moments__btn {
	margin-top: 3.125rem;
}

.top-hospitality--layout {
	margin-bottom: 6.875rem;
	padding-bottom: 6.25rem;
	padding-top: 5.625rem;
}

.top-hospitality__heading {
	margin-bottom: 2rem;
}

.top-hospitality__items {
	grid-template-columns: repeat(4, 1fr);
}

.top-hospitality__item {
	border-bottom: none;
	border-right: 1px solid #000000;
	padding: 3.75rem 0 4.25rem;
}

.top-hospitality__item:last-child {
	border-right: none;
}

.top-hospitality__icon {
	margin-bottom: 1.375rem;
}

.top-stories--layout {
	margin-bottom: 7.125rem;
}

.top-information {
	padding-top: 5.875rem;
}

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

.top-information__header {
	padding-left: 0;
	padding-right: 0;
}

.top-information__link {
	align-items: center;
	gap: 2.5rem;
	grid-template-columns: auto 1fr auto;
	padding-bottom: 1.875rem;
	padding-left: 0.5625rem;
	padding-right: 1rem;
	padding-top: 1.875rem;
}

.top-information__link::before {
	right: 1rem;
}

.top-information__meta {
	gap: 0.25rem;
	grid-template-columns: 1fr;
	min-width: 8rem;
}

.top-instagram--layout {
	margin-bottom: 9.375rem;
}

.top-instagram__heading {
	padding-bottom: 1.5625rem;
	padding-top: 1.5rem;
}

.top-instagram__subtitle {
	line-height: 1.563;
}

.top-instagram__body {
	gap: 2.75rem;
	padding: 3.125rem 3rem 3.5rem;
}

.top-instagram__posts #sb_instagram #sbi_images {
	gap: 4.375rem !important;
}

.top-cta {
	background-image: url("../img/group/top/cta-bg-01.webp");
	height: 29.375rem;
}

.top-cta__content {
	bottom: 3.375rem;
	gap: 0.5rem;
	height: 5.5625rem;
	left: 0;
	padding-left: 1.5625rem;
	width: 27.0625rem;
}

.top-cta__text-ja {
	font-size: 1.5625rem;
}

.top-cta__text-en {
	padding-left: 0.0625rem;
}

}

@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: 1320px) {

.top-worlds__category.-grid-4 .top-worlds__hotels {
	gap: 1.875rem;
}

.top-worlds__category.-grid-4 .top-worlds__hotel-description {
	font-size: 0.8125rem;
}

}

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

.spotlight-articles .splide__arrow {
	--arrow-position: -1.125rem;
}

}

@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%;
}

.header__inner {
	padding-left: 0.9375rem;
	padding-right: 0.375rem;
}

.information__title {
	border-bottom: 0.125rem solid currentColor;
	padding-bottom: 0.875rem;
}

.top-hospitality__item:first-child {
	padding-top: 0;
}

.top-hospitality__item:not(:first-child) {
	padding-top: 3.125rem;
}

.top-hospitality__item:last-child {
	border-bottom: none;
}

}

@keyframes slideInFromBottom {

to {
	opacity: 1;
	transform: translateY(0);
}

}

@keyframes pageFadeIn {

from {
	opacity: 0;
}

to {
	opacity: 1;
}

}


/*# sourceMappingURL=style-group.css.map */
