/******************************************
    リセットcss
******************************************/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
button,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	border: 0;
	font: inherit;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

li,
dd {
	list-style-type: none;
}

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

caption,
th,
td {
	font-weight: normal;
	text-align: left;
	vertical-align: middle;
}

q,
blockquote {
	quotes: none;
}

q:before,
q:after {
	content: "";
	content: none;
}

blockquote:before,
blockquote:after {
	content: "";
	content: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}

img {
	border: none;
	vertical-align: bottom;
}

/******************************************
    google font import
******************************************/

/******************************************
    color setting
******************************************/

/******************************************
    font setting
******************************************/

/******************************************
    base setting
******************************************/

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

a {
	cursor: pointer;
	text-decoration: none;
	color: inherit;
}

html {
	font-size: 62.5%;
}

body {
	background: #fff;
	color: #1A1A1A;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.448;
	font-family: "Zen Kaku Gothic New";
}

.inner {
	max-width: 1220px;
	width: 100%;
	margin-inline: auto;
	padding-inline: 40px;
}

.header {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	padding-inline: 40px;
	padding-block: 17px;
	background: transparent;
}

.header.--black {
	background: #1A1A1A;
}

.header__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: -1;
	clip-path: inset(0 0 100% 0);
	transition: clip-path 0.3s ease;
}

.header__bg.is-show {
	clip-path: inset(0 0 0 0);
	transition: clip-path 0.5s ease;
}

.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	-moz-column-gap: 20px;
	column-gap: 20px;
	max-width: 1240px;
	margin-inline: auto;
}

.header__logo {
	flex: 0 0 auto;
	width: 80px;
	height: 66px;
	transition: opacity 0.3s ease;
}

.header__logo-img {
	width: 100%;
	height: 100%;
}

.header__nav {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	justify-content: space-between;
	-moz-column-gap: 0px;
	column-gap: 0px;
	padding-right: 45px;
}

.header__list {
	display: none;
	align-items: center;
	-moz-column-gap: 32px;
	column-gap: 32px;
}

.header__list li a {
	color: #fff;
	transition: opacity 0.3s ease;
	font-family: "Inter";
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: 0.9px;
}

.header__btn-wrap {
	display: flex;
	align-items: center;
	-moz-column-gap: 20px;
	column-gap: 20px;
	width: 100%;
}

.header__btn {
	min-width: 170px;
	display: flex;
	align-items: center;
	-moz-column-gap: 8px;
	column-gap: 8px;
	padding: 8px 24px;
	background: #fff;
	color: #1A1A1A;
	border: #fff 1px solid;
	border-radius: 30px;
	transition: background 0.3s ease, color 0.3s ease;
}

.header__btn svg {
	width: 30px;
	height: 30px;
	transition: all 0.3s ease;
}

.header__btn svg .svg-icon {
	transition: fill 0.3s ease;
}

.header__btn-text {
	font-family: "Inter";
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.8px;
}

.language-btn-wrap {
	width: -moz-fit-content;
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: space-between;
	-moz-column-gap: 26px;
	column-gap: 26px;
}

.language-btn {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.9px;
	color: #fff;
	white-space: nowrap;
	background: transparent;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.language-btn.is-active {
	position: relative;
	pointer-events: none;
}

.language-btn.is-active::after {
	content: "";
	position: absolute;
	top: calc(100% + 3px);
	left: 0;
	width: 100%;
	height: 1.5px;
	background: #fff;
}

.language-btn:first-child {
	position: relative;
}

.language-btn:first-child::before {
	content: "/";
	position: absolute;
	top: 50%;
	left: calc(100% + 8px);
	translate: 0 -50%;
	width: 10px;
	height: 100%;
}

.language-btn-wrap.is-drawer {
	display: flex;
	margin-bottom: 8px;
}

.footer {
	background: #1A1A1A;
}

.footer__contents {
	padding-block: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 40px;
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
}

.footer__logo a {
	transition: opacity 0.3s ease;
}

.footer__logo-img {
	width: 120px;
	height: 100px;
}

.footer__list {
	display: flex;
	align-items: center;
	justify-content: center;
	-moz-column-gap: 60px;
	column-gap: 60px;
}

.footer__list li a {
	color: #fff;
	font-family: "Inter";
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: 1px;
	transition: opacity 0.3s ease;
}

.footer__btn-wrap {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	-moz-column-gap: 32px;
	column-gap: 32px;
}

.footer__btn {
	display: flex;
	padding: 10px 40px;
	justify-content: center;
	align-items: center;
	flex: 1 0 0;
	border: 1px solid #fff;
	border-radius: 4px;
	background: #fff;
	color: #1A1A1A;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.8px;
	transition: background 0.3s ease, color 0.3s ease;
}

.copyright {
	padding-block: 20px;
}

.copyright__text {
	color: #FFF;
	text-align: center;
	font-family: "Inter";
	font-size: 1.6rem;
	font-weight: 300;
	line-height: 1.5;
	letter-spacing: 0.8px;
}

.fv {
	width: 100%;
	height: 55.55556vw;
	position: relative;
}

.fv__img-slide {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.fv__img-wrap {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	overflow: hidden;
	will-change: transform, opacity;
	/* パフォーマンス向上 */
}

.fv__img-wrap:nth-child(1) {
	animation: fv-slideshow 16s infinite;
	animation-play-state: paused;
}

.fv__img-wrap:nth-child(2) {
	animation: fv-slideshow 16s infinite 4s;
	animation-play-state: paused;
	/* 開始を少し早める */
}

.fv__img-wrap:nth-child(3) {
	animation: fv-slideshow 16s infinite 8s;
	animation-play-state: paused;
}

.fv__img-wrap:nth-child(4) {
	animation: fv-slideshow 16s infinite 12s;
	animation-play-state: paused;
}

.fv__img-wrap.js-start-animation:nth-child(1) {
	animation-play-state: running;
}

.fv__img-wrap.js-start-animation:nth-child(2) {
	animation-play-state: running;
}

.fv__img-wrap.js-start-animation:nth-child(3) {
	animation-play-state: running;
}

.fv__img-wrap.js-start-animation:nth-child(4) {
	animation-play-state: running;
}

.fv__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.fv__img-wrap.over-ray::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(177deg, rgba(0, 0, 0, 0.6) 2.71%, rgba(111, 111, 111, 0.39) 50.96%, rgba(0, 0, 0, 0.18) 97.38%);
	z-index: 1;
}

.fv__contents {
	position: absolute;
	bottom: 6.25%;
	left: 50%;
	translate: -50%;
	max-width: 1320px;
	width: 100%;
}

.fv__contents-inner {
	padding-inline: 40px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.fv__contents-inner>*:first-child {
	flex: 1;
}

.fv__scrolldown {
	display: flex;
	align-items: center;
	flex-direction: column;
	position: relative;
}

.fv__scrolldown-text {
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.8px;
	font-family: "Inter";
	color: #fff;
}

.fv__scrolldown-bar {
	position: absolute;
	top: 100%;
	height: 35px;
	width: 10px;
	overflow: hidden;
}

.fv__scrolldown-bar span {
	display: inline-block;
}

.fv__scrolldown-bar .bar {
	position: absolute;
	bottom: 100%;
	left: 50%;
	translate: -50%;
	width: 2px;
	height: 35px;
	background: #fff;
	animation: 2.2s ease-in-out infinite scrollDownBar;
}

.fv__scrolldown-bar .bar::after {
	position: absolute;
	top: calc(100% - 5.5px);
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	left: 50%;
	width: 7px;
	height: 7px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(135deg);
	translate: -50% 0;
}

.fv__news {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.fv__news-head {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 1px;
	padding-inline: 20px;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	width: -moz-fit-content;
	width: fit-content;
	font-family: "Inter";
}

.fv__news-title-wrap a {
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 1px;
	display: flex;
	flex-direction: row;
	gap: 32px;
	align-items: center;
	color: #fff;
	width: -moz-fit-content;
	width: fit-content;
	transition: opacity 0.3s ease;
	position: relative;
	padding-inline: 24px;
	background: rgba(0, 0, 0, 0.5);
}

.fv__news-title-wrap a::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff;
	scale: 0 1;
	transition: scale 0.5s ease;
	transform-origin: right center;
}

.concept {
	padding-block: 100px 60px;
}

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

.concept__img {
	display: block;
}

.concept__img.--01 {
	width: 41.667vw;
	height: auto;
	margin-top: 80px;
}

.concept__img.--02 {
	margin-top: -20.83333%;
	margin-left: auto;
	margin-right: 6.9444%;
	width: 23.2638vw;
	height: auto;
}

.concept__img.--03 {
	width: 27.7777vw;
	height: auto;
	margin-left: 10.4166%;
	margin-top: -10.41666%;
}

.concept__img.--04 {
	width: 41.667vw;
	height: auto;
	margin-left: auto;
	margin-top: -23.61111%;
}

.concept__img.--05 {
	width: 34.7222vw;
	height: auto;
	margin-left: 6.9444%;
	margin-top: 0;
}

.concept__img.--06 {
	width: 27.7777vw;
	height: auto;
	margin-left: auto;
	margin-right: 13.8888%;
	margin-top: -19.44444%;
}

.concept__img.--01 {
	order: 1;
}

.concept__img.--02 {
	order: 2;
}

.concept__img.--03 {
	order: 3;
}

.concept__img.--04 {
	order: 5;
}

.concept__img.--05 {
	order: 6;
}

.concept__img.--06 {
	order: 7;
}

.concept__sticky {
	position: absolute;
	top: 15.76%;
	left: 0;
	width: 100%;
	height: calc(84.24% - 100px);
}

.concept__text-wrap {
	position: sticky;
	top: 15.76%;
	margin-inline: auto;
	width: -moz-fit-content;
	width: fit-content;
	max-width: 620px;
	padding-block: 102px 90px;
	padding-inline: 48px;
	z-index: 1;
}

.concept__text-wrap.--bg {
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.95);
	filter: blur(10px);
	z-index: 0;
}

.concept__text-wrap.animated__fadeIn {
	opacity: 0;
	translate: 0 20px;
	transition: opacity 1s ease, translate 0.8s ease;
}

.concept__text-wrap.animated__fadeIn.js-show {
	opacity: 1;
	translate: 0;
}

.concept__title {
	position: relative;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 1.2px;
	text-align: center;
	white-space: nowrap;
	z-index: 1;
	margin-bottom: 48px;
}

.concept__lead {
	position: relative;
	display: flex;
	flex-direction: column;
	row-gap: 16px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.9px;
	text-align: center;
	z-index: 1;
	margin-bottom: 48px;
	white-space: nowrap;
}

.concept__lead .large {
	font-size: 2rem;
}

.concept__text.en {
	white-space: normal;
}

.concept__text {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 20px;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2.5;
	letter-spacing: 0.8px;
	text-align: center;
	z-index: 1;
	white-space: nowrap;
}

.loading__fadeIn,
.loading__fadeInLater {
	opacity: 0;
	translate: 0 20px;
	transition: opacity 0.3s ease, translate 0.8s ease;
}

.loading__fadeIn.js-show,
.loading__fadeInLater.js-show {
	opacity: 1;
	translate: 0 0;
}

.loading {
	width: 100vw;
	height: 100vh;
	position: fixed;
	z-index: 999999;
	background: #fff;
	visibility: visible;
	transition: translate 1.2s ease;
}

.loading.js-fadeOut {
	translate: 0 -120%;
}

.js-loading {
	overflow: hidden;
}

.js-loading.js-fadeOut {
	overflow: auto;
}

.loading__wrap {
	position: absolute;
	top: 45%;
	left: 50%;
	translate: -50% -50%;
	width: -moz-fit-content;
	width: fit-content;
	height: -moz-fit-content;
	height: fit-content;
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 40px;
}

.loading__top-img {
	width: 140px;
	height: auto;
}

.loading__bottom-img {
	width: 180px;
	height: auto;
}

#textAnimation {
	width: 300px;
	height: auto;
}

#base path {
	fill: #000;
}

#mask path {
	fill: none;
	stroke: #ffffff;
	stroke-width: 10px;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 5000;
	/* パスの長さより大きい値 */
	stroke-dashoffset: 5000;
	/* 同じ値で完全に隠す */
}

.about__contents {
	position: sticky;
	width: 100%;
	height: 1000vh;
}

.about__contents.--sm {
	height: auto;
	padding-bottom: 40px;
}

.about__slide {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	opacity: 0;
	clip-path: inset(100% 0 0 0);
	transition: opacity 1.2s ease-in-out, clip-path 1.2s ease-in-out;
}

.about__slide:nth-child(1) {
	z-index: 1;
}

.about__slide:nth-child(2) {
	z-index: 2;
}

.about__slide:nth-child(3) {
	z-index: 3;
}

.about__slide:nth-child(4) {
	z-index: 4;
}

.about__slide:nth-child(5) {
	z-index: 5;
}

.about__slide.--last {
	top: 100%;
	opacity: 1;
	clip-path: inset(0 0 0 0);
}

.about__slide.js-show {
	opacity: 1;
	clip-path: inset(0 0 0 0);
	transition: opacity 0.5s ease-in-out, clip-path 1.2s ease-in-out;
}

.about__item {
	position: relative;
	width: 100%;
	height: 100vh;
}

.about__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.about__body,
.rooms__body {
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	z-index: 2;
}

.about__text-wrap,
.rooms__text-wrap {
	min-width: 620px;
	padding: 50px 30px;
	border: 4px solid #FFF;
	background: rgba(0, 0, 0, 0.5);
	box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.6);
	margin-bottom: 60px;
}

.about__title,
.rooms__title {
	color: #FFF;
	font-family: "Inter";
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 2px;
	text-align: center;
	position: relative;
	padding-bottom: 16px;
	margin-bottom: 16px;
}

.about__title::after,
.rooms__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	translate: -50%;
	width: 25px;
	height: 1px;
	background: #FFF;
}

.about__lead,
.rooms__lead {
	color: #FFF;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.8px;
	margin-bottom: 40px;
}

.about__text,
.rooms__text {
	color: #FFF;
	text-align: center;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.9px;
}

.about__text .mb8,
.rooms__text .mb8 {
	display: block;
	margin-bottom: 8px;
}

.about__text .mb16,
.rooms__text .mb16 {
	display: block;
	margin-bottom: 16px;
}

.about__pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	-moz-column-gap: 16px;
	column-gap: 16px;
}

.about__pagination-item {
	width: 50px;
	height: 5px;
	border-radius: 10px;
	border: 1px solid #FFF;
	background: transparent;
	cursor: pointer;
	transition: opacity 0.3s ease-in-out;
}

.about__pagination-item.is-active {
	background: #fff;
	pointer-events: none;
}

/******************************************
    スマホ用
******************************************/

.about__slide-head {
	position: relative;
	margin-bottom: 32px;
}

.about__slide-head::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(171deg, rgba(0, 0, 0, 0) 4.41%, rgba(0, 0, 0, 0.39) 50.38%, rgba(0, 0, 0, 0.6) 94.61%);
	z-index: 1;
}

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

.about__slide-head-text {
	position: absolute;
	left: 5.3333%;
	bottom: 8.8888%;
	z-index: 2;
}

.about__slide-title {
	color: #FFF;
	font-family: "Inter";
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 1.2px;
	margin-bottom: 8px;
}

.about__slide-lead {
	color: #FFF;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.7px;
}

.about__slide-body {
	padding-inline: 4.26667%;
	margin-bottom: 40px;
}

@media (max-width: 768px) {
	.about__slide-body {
		margin-bottom: 24px;
	}
}

.about__slide-text span {
	color: #3C3C3C;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
	/* 25.2px */
	letter-spacing: 0.7px;
}

.about__slide-text .mb16 {
	display: block;
	margin-bottom: 16px;
}

.about__swiper-container,
.about__swiper,
.about__swiper-wrapper,
.about__swiper-slide {
	position: relative;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
	top: unset;
	bottom: unset;
	left: unset;
	right: unset;
	margin: 0;
	padding: 0;
}

.about__swiper-container .swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: 0;
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.about__swiper-container .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
	opacity: 1;
	width: 25px;
	height: 5px;
	border-radius: 15px;
	background: #D9D9D9;
	margin-inline: 8px;
}

.about__swiper-container .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet:first-child {
	margin-left: 0;
}

.about__swiper-container .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet-active {
	background: #3C3C3C;
}

.rooms {
	width: 100%;
	height: 100vh;
	position: sticky;
	z-index: 10;
	background: transparent;
}

.rooms.--sm {
	height: auto;
	padding-block: 60px 40px;
}

.rooms__overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(200, 200, 200, 0.36) 53.37%, rgba(0, 0, 0, 0.36) 100%);
	z-index: 1;
}

.rooms__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: -1;
}

.rooms__img.--sm {
	display: block;
	border-radius: 4px;
	position: static;
	width: 100%;
	height: auto;
}

.rooms__contents {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}

.rooms__contents.--sm {
	height: auto;
	display: flex;
	flex-direction: column;
	row-gap: 32px;
}

.rooms__text {
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
	margin-bottom: 40px;
}

/******************************************
    Roomsページ
******************************************/

.roomsFv__img-wrap.over-ray::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(183deg, rgba(0, 0, 0, 0.15) 2.06%, rgba(0, 0, 0, 0.3) 49.92%, rgba(0, 0, 0, 0.5) 97.79%);
	z-index: 1;
}

.roomsFv__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.roomsFv__contents {
	position: absolute;
	bottom: 14.2857%;
	left: 6.94444%;
	z-index: 2;
}

.roomsFv__title {
	color: #FFF;
	font-family: "Inter";
	font-size: 100px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 5px;
	margin-bottom: 16px;
}

.roomsFv__text {
	color: #FFF;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: 0.9px;
	margin-bottom: 40px;
}

.roomsFv__sub-title {
	display: none;
	color: #FFF;
	text-align: center;
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.7px;
}

.rooms__navigation {
	display: flex;
	flex-wrap: wrap;
	-moz-column-gap: 20px;
	column-gap: 20px;
	row-gap: 12px;
}

.rooms__navigation li a {
	color: #FFF;
	font-size: 1.6rem;
	font-family: "Inter";
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.9px;
	display: flex;
	min-width: 220px;
	padding: 10px 16px 8px 18px;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid #FFF;
	background: rgba(0, 0, 0, 0.7);
	position: relative;
	transition: opacity 0.3s ease;
}

.rooms__navigation li a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 16px;
	translate: 0 -50%;
	width: 20px;
	height: auto;
	aspect-ratio: 1/1;
	background: url(../img/angle-down.png) no-repeat center center/contain;
}

.page-rooms {
	padding-block: 100px;
	overflow: hidden;
}

.page-rooms__contents,
.page-service__contents {
	margin-top: -45px;
	margin-left: 10.9649%;
	margin-right: auto;
	max-width: 900px;
	width: 78.9473vw;
	display: flex;
	flex-direction: column;
	row-gap: 100px;
}

.page-rooms__body {
	margin-top: 32px;
}

.page-rooms__item-title {
	display: flex;
	padding: 0 0 2px 24px;
	align-items: center;
	-moz-column-gap: 32px;
	column-gap: 32px;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: 1.2px;
	margin-bottom: 40px;
	position: relative;
}

.page-rooms__item-title::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 44px;
	background: #656565;
}

.page-rooms__item-title .large {
	flex: 0 1 auto;
}

.page-rooms__item-title .small {
	flex: 1;
	color: #3C3C3C;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.8px;
}

.page-rooms__info.--column2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	-moz-column-gap: 32px;
	column-gap: 32px;
}

.page-rooms__info.--col {
	width: 100%;
}

.page-rooms__info.--mb24 {
	margin-bottom: 24px;
}

.page-rooms__info.--grid {
	display: flex;
	-moz-column-gap: 32px;
	column-gap: 32px;
}

.page-rooms__info.--grid .grid__item {
	display: flex;
	flex-direction: column;
}

.page-rooms__info.--grid .grid__item.--lc-sp span:last-child::after {
	display: none;
}

.page-rooms__info.--grid .grid__item span {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.8px;
	white-space: nowrap;
	width: -moz-fit-content;
	width: fit-content;
	padding-left: 24px;
	position: relative;
}

.page-rooms__info.--grid .grid__item span::before {
	content: "";
	position: absolute;
	top: 0.875em;
	left: 0.75em;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #1A1A1A;
}

.page-rooms__info.--grid .grid__item span::after {
	content: "/";
	position: absolute;
	top: 50%;
	right: 0;
	translate: 0 -50%;
	width: 10px;
	height: 100%;
	display: none;
}

.page-rooms__info-heading {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.8px;
	border-bottom: 1px solid #666;
	margin-bottom: 8px;
	padding-left: 16px;
	background: #F4F4F4;
}

.page-rooms__info-heading.--mb16 {
	margin-bottom: 16px;
}

.page-rooms__info-text {
	color: #3C3C3C;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.8px;
	padding-left: 16px;
}

.room-facilities {
	margin-bottom: 8px;
}

.room-facilities__item-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
}

.room-facilities__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 8px;
	max-width: 90px;
}

.room-facilities__img {
	display: block;
	width: 75px;
	height: auto;
	aspect-ratio: 1/1;
	-o-object-fit: contain;
	object-fit: contain;
}

.room-facilities__item-text {
	display: none;
}

.room-facilities__item-text span {
	position: relative;
	padding-right: 12px;
}

.room-facilities__item-text span::after {
	content: "/";
	position: absolute;
	top: 50%;
	right: 0;
	translate: 0 -50%;
	width: 10px;
	height: 100%;
}

.room-facilities__text {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.7px;
	text-align: center;
}

.page-rooms__caution {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.7px;
	margin-block: 50px;
}

.page-rooms__btn {
	display: flex;
	padding: 10px 40px;
	justify-content: center;
	align-items: center;
	gap: 40px;
	align-self: stretch;
	background: #1A1A1A;
	color: #FFF;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.8px;
	border: #1A1A1A 1px solid;
	border-radius: 4px;
	transition: background 0.3s ease, color 0.3s ease;
}

.page-rooms__img-wrap {
	overflow: hidden;
	margin-right: calc(50% - 50vw);
}

.page-rooms__swiper-container,
.page-rooms__swiper,
.page-rooms__swiper-wrapper,
.page-rooms__swiper-slide {
	position: relative;
}

.page-rooms__swiper {
	overflow: visible;
}

.page-rooms__swiper-slide {
	position: relative;
	width: 78.9473vw;
	/* ビューポート基準の幅 */
	max-width: 900px;
	/* 最大幅制限 */
	aspect-ratio: 900/540;
	flex-shrink: 0;
}

.page-rooms__swiper-slide img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
	position: relative;
	top: unset;
	bottom: unset;
	left: unset;
	right: unset;
	margin: 0;
	padding: 0;
}

/* =============================
   ナビゲーションボタン
============================= */

/* デフォルトのボタンを初期化 */

.swiper-button-prev::after,
.swiper-button-next::after {
	content: "";
	/* デフォルトのものを初期化 */
}

/* 各ボタンのカスタマイズ */

.swiper-button-prev,
.swiper-button-next {
	width: 40px;
	height: 40px;
}

.page-rooms__swiper-bottom {
	max-width: 900px;
	width: 78.9473vw;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 24px;
	-moz-column-gap: 16px;
	column-gap: 16px;
}

/* =============================
   ページネーション (bullets)
============================= */

/* 位置の設定 (枠組み) */

.swiper-pagination-bullets.swiper-pagination-horizontal {
	width: -moz-fit-content;
	width: fit-content;
}

/* それぞれのページネーション */

.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
	opacity: 1;
	width: 12px;
	height: auto;
	aspect-ratio: 1;
	background: #D6D6D6;
	margin-inline: 16px;
}

/* activeな部分 */

.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet-active {
	background: #1A1A1A;
}

.rooms__text--sm {
	color: #3C3C3C;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.8px;
}

.page-rooms-top {
	padding-block: 24px;
	display: none;
}

.page-rooms-top__text {
	color: #3C3C3C;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.7px;
	margin-bottom: 34px;
}

.page-rooms-top__navigation {
	display: flex;
	flex-direction: column;
}

.page-rooms-top__navigation li {
	width: 100%;
	border-bottom: 1px solid #666;
	padding-block: 10px;
}

.page-rooms-top__navigation li a {
	width: 100%;
	display: block;
	position: relative;
}

.page-rooms-top__navigation li a::after {
	content: "";
	position: absolute;
	top: 46%;
	right: 12px;
	translate: 0 -50%;
	width: 8px;
	height: auto;
	aspect-ratio: 1/1;
	border-left: 1.5px solid #222;
	border-bottom: 1.5px solid #222;
	rotate: -45deg;
}

.btn {
	display: flex;
	width: -moz-fit-content;
	width: fit-content;
	justify-content: center;
	align-items: center;
	margin-inline: auto;
}

.btn.--right {
	margin-left: auto;
	margin-right: 0;
}

.btn.--facility {
	margin-top: 80px;
	margin-left: auto;
	margin-right: 17.3684%;
}

.more-btn {
	display: flex;
	width: 206px;
	padding: 14px 40px;
	justify-content: space-between;
	align-items: center;
	border: 1px solid #1A1A1A;
	border-radius: 4px;
	background: #1A1A1A;
	color: #fff;
	position: relative;
	transition: opacity 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.more-btn::after {
	content: "→";
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	right: 40px;
	width: 20px;
	height: auto;
	aspect-ratio: 1;
	transition: right 0.5s ease;
}

.more-btn.--overlap {
	background: linear-gradient(0deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
}

.more-btn__text {
	font-family: "Inter";
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.8px;
}

.single__btn-wrap {
	margin-top: 64px;
	display: flex;
	justify-content: center;
}

.single__btn-wrap .single__btn {
	color: #fff;
	text-decoration: none;
}

.single__btn {
	display: flex;
	width: -moz-fit-content;
	width: fit-content;
	padding: 14px 40px;
	justify-content: flex-end;
	align-items: center;
	border: 1px solid #1A1A1A;
	border-radius: 4px;
	background: rgba(26, 26, 26, 0.95);
	position: relative;
	transition: opacity 0.3s ease;
	color: #fff;
}

.single__btn::before {
	content: "←";
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	left: 40px;
	width: 20px;
	height: auto;
	aspect-ratio: 1;
	transition: left 0.5s ease;
}

.single__btn-text {
	padding-left: 36px;
	font-family: "Inter";
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.8px;
	position: relative;
}

.service {
	padding-block: 100px 60px;
}

.service__contents {
	display: flex;
	flex-direction: row-reverse;
	-moz-column-gap: 10.5263%;
	column-gap: 10.5263%;
}

.service__info {
	width: 35.0877192982%;
}

.service__img-wrap {
	margin-top: 50px;
	width: 54.3859649123%;
}

.service__img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.service__head {
	margin-bottom: 48px;
}

.service__text {
	color: #3C3C3C;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.4px;
	margin-bottom: 48px;
}

/******************************************
    サービスページ
******************************************/

.page-service {
	padding-block: 100px;
	overflow: hidden;
}

.slider__inner {
	max-width: 900px;
	width: 100%;
	margin-inline: auto;
	margin-bottom: 48px;
}

.page-service__contents {
	row-gap: 0 !important;
}

.section__head.--mb80 {
	margin-bottom: 80px;
}

.section__head.--right {
	text-align: right;
}

.section__head.--column2 {
	display: flex;
	flex-direction: row;
	-moz-column-gap: 6.6666%;
	column-gap: 6.6666%;
}

.section__head-block {
	display: block;
	display: flex;
	flex-direction: row;
	background: #666;
}

.section__head-block.--top {
	width: 60px;
	height: 30px;
	margin-bottom: 16px;
}

.section__head-block.--bottom {
	width: 60px;
	height: 90px;
}

.section__head-block.--right {
	margin-left: auto;
	margin-right: 0;
}

.section__title {
	font-family: "Inter";
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 1.6px;
	margin-bottom: 4px;
}

.section__title.--center {
	text-align: center;
}

.section__title.--white {
	color: #fff;
}

.section__sub-title {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 1px;
	margin-bottom: 16px;
}

.section__sub-title.--center {
	text-align: center;
}

.section__sub-title.--white {
	color: #fff;
}

.section__sub-title.mb20 {
	margin-bottom: 20px;
}

.facility {
	padding-block: 80px;
	overflow: hidden;
}

.facility__head {
	margin-bottom: 48px;
}

.facility__text {
	max-width: 520px;
	width: 50%;
	color: #3C3C3C;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.5px;
}

.facility__img-wrap {
	display: flex;
	flex-direction: column;
}

.facility__img-item {
	display: flex;
	-moz-column-gap: 80px;
	column-gap: 80px;
}

.facility__img {
	display: block;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.facility__img-item.--top .facility__img:first-child {
	width: 48.2456140351%;
	margin-top: 88px;
	margin-left: -40px;
}

.facility__img-item.--top .facility__img:last-child {
	width: 36.2280701754%;
	margin-top: -92px;
}

.facility__img-item.--middle {
	justify-content: flex-end;
}

.facility__img-item.--middle .facility__img:first-child {
	width: 30.701754386%;
	margin-top: 80px;
}

.facility__img-item.--middle .facility__img:last-child {
	width: 48.2456140351%;
	margin-right: -40px;
}

.facility__img-item.--bottom {
	-moz-column-gap: 5.70175%;
	column-gap: 5.70175%;
	margin-top: 10px;
}

.facility__img-item.--bottom .facility__img:first-child {
	width: 48.2456140351%;
	margin-left: -13.1579%;
}

.facility__img-item.--bottom .facility__img:last-child {
	width: 22.9824561404%;
	margin-top: 70px;
}

/******************************************
    スライダー
******************************************/

.facility__slider {
	display: none;
	margin-bottom: 32px;
}

.facility__swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	width: -moz-fit-content;
	width: fit-content;
	height: 69.3333vw;
	max-height: 360px;
}

.facility__swiper-slide.--slide-01 {
	width: 69.3333%;
}

.facility__swiper-slide.--slide-02 {
	width: 52%;
}

.facility__swiper-slide.--slide-03 {
	width: 53.3333%;
}

.facility__swiper-slide.--slide-04 {
	width: 53.3333%;
}

.facility__swiper-slide.--slide-05 {
	width: 52%;
}

.facility__swiper-slide.--slide-06 {
	width: 69.3333%;
}

.facility__swiper-slide .facility__img {
	height: auto;
	width: 100%;
	display: block;
}

.facility__swiper {
	overflow: visible;
}

.facility__swiper-container,
.facility__swiper,
.facility__swiper-wrapper,
.facility__swiper-slide {
	position: relative;
}

.facility__swiper-container+.facility__swiper-container {
	margin-top: 23.468%;
}

.facility__swiper-wrapper {
	transition-timing-function: linear;
}

.page-facility {
	padding-block: 100px;
}

.page-facility__head {
	margin-bottom: 40px;
}

.page-facility__title,
.page-facility__sub-title {
	text-align: center;
}

.page-facility__bath {
	display: flex;
	flex-direction: column;
	row-gap: 60px;
	margin-bottom: 100px;
}

.page-facility__bath-head {
	width: 100vw;
	margin-inline: calc(50% - 50vw);
	position: relative;
	height: 48.88889vw;
}

.page-facility__bath-head.over-ray::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(183deg, rgba(0, 0, 0, 0.18) 2.13%, rgba(111, 111, 111, 0.39) 49.08%, rgba(0, 0, 0, 0.6) 97.87%);
	z-index: 0;
}

.page-facility__bath-head-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: -1;
}

.page-facility__bath-head-contents {
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	width: -moz-fit-content;
	width: fit-content;
	min-width: 900px;
	padding: 40px;
	z-index: 1;
}

.page-facility__bath-head-text {
	display: flex;
	flex-direction: column;
	color: #FFF;
	text-align: center;
	font-size: 2rem;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.9px;
	white-space: nowrap;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}

.page-facility__bath-head-text.mb24 {
	margin-bottom: 24px;
}

.page-facility__bath-item-title {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 1px;
	padding-left: 24px;
	border-left: 10px solid #666;
	margin-bottom: 40px;
}

.page-facility__bath-item-img {
	display: block;
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	margin-bottom: 45px;
}

.page-facility__bath-caption {
	display: none;
}

.page-facility__bath-item .grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	-moz-column-gap: 3.947368%;
	column-gap: 3.947368%;
	row-gap: 24px;
	justify-content: start;
}

.page-facility__bath-item .grid__item-img {
	display: block;
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	margin-bottom: 8px;
}

.page-facility__bath-item .grid__item-text {
	text-align: center;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.8px;
}

.page-facility__bath-text {
	margin-top: 40px;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.8px;
	color: #3C3C3C;
}

.news {
	padding-block: 100px;
}

.news__contents {
	display: flex;
	flex-direction: row-reverse;
	-moz-column-gap: 40px;
	column-gap: 40px;
}

.news__list-wrap {
	width: 795px;
	max-width: 100%;
	margin-right: auto;
	margin-top: 50px;
}

.news__list {
	display: flex;
	flex-direction: column;
	margin-bottom: 60px;
}

.news__item {
	padding: 40px 52px 40px 20px;
	border-bottom: 1px solid #DDDDDD;
	position: relative;
}

.news__item::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 14px;
	translate: 0 -50%;
	width: 20px;
	height: auto;
	aspect-ratio: 1;
	background: transparent url(../img/right-angle.png) no-repeat center center/contain;
	transition: right 0.3s ease, opacity 0.3s ease;
}

.news__item a {
	display: flex;
	-moz-column-gap: 25px;
	column-gap: 25px;
	align-items: center;
	transition: opacity 0.3s ease;
}

.news__date {
	color: #666;
	font-family: "Inter";
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.8px;
}

.news__item-title {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.9px;
}

.access {
	padding-top: 100px;
}

.access__contents {
	display: flex;
	-moz-column-gap: 5.26358%;
	column-gap: 5.26358%;
	align-items: center;
}

.access__head {
	margin-bottom: 40px;
}

.access__map-wrap {
	width: 64.0350877193%;
}

.access__map {
	width: 100%;
	height: auto;
	aspect-ratio: 730/548;
	overflow: hidden;
	position: relative;
}

.access__map iframe {
	position: absolute;
	bottom: -62%;
	right: -5%;
	width: 105%;
	height: 162%;
	-o-object-fit: cover;
	object-fit: cover;
}

.access__map.--md {
	display: none;
}

.access__map.--sm {
	display: none;
}

.access__info {
	flex: 1;
}

.access__text {
	color: #3C3C3C;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.8px;
	margin-bottom: 26px;
}

.access__text .large {
	font-weight: 700;
}

.access__address {
	margin-bottom: 24px;
}

.access__address-text {
	display: flex;
	flex-direction: column;
	row-gap: 5px;
}

.access__address-text span {
	color: #3C3C3C;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.8px;
}

.access__address-text .large {
	font-weight: 700;
}

.access__check-time,
.access__check-time-caution {
	color: #666;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.8px;
}

.access__check-time .large {
	font-weight: 700;
}

.access__check-time-wrap {
	margin-bottom: 32px;
}

.access__caution {
	margin-bottom: 24px;
}

.access__caution p {
	color: #3C3C3C;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.8px;
}

.access__caution p.large {
	font-weight: 700;
}

.access__btn-wrap {
	display: flex;
	flex-direction: column;
	row-gap: 24px;
	margin-top: 40px;
}

.access__btn-wrap.is-sm {
	display: none;
}


.access__btn {
	display: flex;
	max-width: 343px;
	margin-left: auto;
	min-width: 260px;
	padding: 10px;
	justify-content: center;
	align-items: center;
	gap: 40px;
	align-self: stretch;
	background: #1A1A1A;
	border-radius: 4px;
	color: #fff;
	border: #1A1A1A 1px solid;
	transition: background 0.3s ease, color 0.3s ease;
}

.access__tel {
	pointer-events: none;
}

.nearby {
	padding-block: 100px;
}

.nearby__head {
	margin-bottom: 36px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.nearby__sub-title {
	margin-bottom: 0;
}

.nearby__contents {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	-moz-column-gap: 11.228%;
	column-gap: 11.228%;
	row-gap: 48px;
	padding-inline: 56px;
	align-items: stretch;
}

.nearby__contents.--sp {
	display: none;
}

.nearby__item {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.nearby__item-head {
	display: flex;
	padding-bottom: 8px;
	align-items: center;
	gap: 24px;
	border-bottom: 1px solid #1A1A1A;
	margin-bottom: 16px;
}

.nearby__item-title {
	align-self: stretch;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 1px;
}

.nearby__item-time {
	flex: 1;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.7px;
}

.nearby__text {
	color: #666;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.8px;
	margin-bottom: 24px;
}

.nearby__btn-wrap {
	display: flex;
	justify-content: flex-end;
	margin-top: auto;
	align-self: flex-end;
}

.nearby__btn {
	display: flex;
	padding: 10px 40px;
	justify-content: center;
	align-items: center;
	gap: 40px;
	background: #1A1A1A;
	border-radius: 4px;
	color: #fff;
	border: #1A1A1A 1px solid;
	transition: background 0.3s ease, color 0.3s ease;
}

.brand-hotel__contents {
	display: flex;
}

.brand-hotel__item {
	width: 50%;
	height: auto;
	aspect-ratio: 720/300;
	position: relative;
}

.brand-hotel__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: 0;
}

.brand-hotel__body {
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	z-index: 3;
}

.brand-hotel__item-title {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	row-gap: 16px;
	color: #FFF;
	font-family: "Inter";
	font-size: 4rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 2px;
	white-space: nowrap;
	margin-bottom: 24px;
}

.brand-hotel__item-title .small {
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 1.2px;
}

.brand-hotel__item-title.mb16 {
	margin-bottom: 16px;
}

.brand-hotel__text {
	color: #FFF;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.8px;
	white-space: nowrap;
}

.brand-hotel__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.3);
	z-index: 2;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.brand-hotel__item:hover .brand-hotel__overlay {
	opacity: 1;
}

.floor-map {
	background: #505050;
	padding-block: 100px;
	padding-inline: 40px;
}

.floor-map__contents {
	margin-top: 36px;
	max-width: 1100px;
	width: 100%;
	margin-inline: auto;
	position: relative;
}

.floor-map__img-wrapper {
	width: 100%;
}

.floor-map__img {
	width: 100%;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
}

.floor-map__btn {
	background: #fff;
	padding-block: 3px;
	padding-inline: 16px;
	border-radius: 40px;
	cursor: pointer;
	transition: background 0.3s ease;
	border: solid 1px #fff;
}



.floor-map__btn-text {
	font-size: 1rem;
	line-height: 1.8;
	color: #505050;
	font-family: "Inter";
	white-space: nowrap;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	-moz-column-gap: 8px;
	column-gap: 8px;
	transition: color 0.3s ease;
}

.floor-map__btn-text .number {
	display: none;
}

.floor-map__btn-text .arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 12px;
	height: 12px;
}

.floor-map__btn-text .arrow svg {
	display: block;
	width: 100% !important;
	height: 100% !important;
}

.floor-map__btn {
	position: absolute;
	z-index: 1;
}

.floor-map__btn.--01 {
	top: 58%;
	left: 39.5%;
}

.floor-map__btn.--02 {
	top: 17%;
	left: 10.5%;
}

.floor-map__btn.--03_1 {
	top: 28%;
	left: 25%;
}

.floor-map__btn.--03_2 {
	top: 45%;
	left: 10%;
}

.floor-map__btn.--04 {
	top: 33%;
	left: 36%;
}

.floor-map__btn.--05 {
	top: 40%;
	left: 39.2%;
}

.floor-map__btn.--06 {
	top: 32%;
	left: 62.5%;
}

.floor-map__btn.--07 {
	top: 59.5%;
	left: 56%;
}

.floor-map__btn.--08 {
	top: 8%;
	left: 68.5%;
}

.floor-map__btn.--09 {
	top: 4.5%;
	left: 83.7%;
}

.floor-map__btn.--10 {
	top: 74.5%;
	left: 69.2%;
}

.floor-map__btn.--11 {
	top: 84%;
	left: 84%;
}

.floor-map__btn.--12 {
	top: 3%;
	left: 56%;
}

.floor-map__bottom {
	margin-top: 40px;
}

.floor-map__bottom-btn {
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	min-width: 343px;
	margin-inline: auto;
	padding: 4px 12px;
	border-radius: 40px;
	background: #FFF;
	border: 1px solid #fff;
	cursor: pointer;
	transition: background 0.3s ease;
}

.floor-map__bottom-btn+.floor-map__bottom-btn {
	margin-top: 24px;
}

.floor-map__bottom-btn-text {
	color: #1A1A1A;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.8px;
	display: flex;
	justify-content: center;
	align-items: center;
	-moz-column-gap: 16px;
	column-gap: 16px;
	transition: color 0.3s ease;
}

.floor-map__grid-wrapper {
	display: none;
}

.floor-map__grid {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	-moz-column-gap: 3.79%;
	column-gap: 3.79%;
	row-gap: 24px;
	justify-content: start;
}

.floor-map__grid-item {
	width: 100%;
}

.floor-map__grid-img {
	width: 100%;
	height: auto;
	aspect-ratio: 165/110;
	-o-object-fit: cover;
	object-fit: cover;
}

.floor-map__grid-item-text {
	margin-top: 4px;
	font-family: "Inter";
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.8px;
	color: #fff;
	padding-left: 24px;
	position: relative;
}

.floor-map__grid-item-text .number {
	position: absolute;
	top: 0;
	left: 10px;
	translate: -50%;
}

.floor-map__grid-close {
	margin-top: 24px;
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.floor-map__bottom {
	display: none;
}

.floor-map__grid-icon {
	display: block;
	margin-left: auto;
	margin-right: 3%;
	background: transparent;
	color: #fff;
	font-size: 2rem;
}

.information {
	padding-block: 100px;
}

.information__contents {
	display: flex;
	-moz-column-gap: 11.22807%;
	column-gap: 11.22807%;
	align-items: flex-start;
}

.information__list {
	margin-top: 120px;
	width: 70.1754385965%;
	height: -moz-fit-content;
	height: fit-content;
}

.information__item {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.9px;
	padding: 20px 25px;
	border-bottom: 1px solid #1A1A1A;
}

.information__body {
	padding: 20px 52px 24px 52px;
	height: -moz-fit-content;
	height: fit-content;
}

.information__body.--column2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	-moz-column-gap: 10%;
	column-gap: 10%;
}

.information__body-list {
	display: grid;
	grid-template-columns: 1fr;
	height: -moz-fit-content;
	height: fit-content;
}

.information__body-list.--mb16 {
	margin-bottom: 16px;
}

.information__body-list li {
	color: #666;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.8px;
	padding-left: 22px;
	position: relative;
	align-items: stretch;
	height: -moz-fit-content;
	height: fit-content;
	white-space: nowrap;
}

.information__body-list li::before {
	content: "";
	position: absolute;
	top: 1em;
	left: 0.75em;
	translate: 0 -50%;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #666;
}

summary {
	display: block;
}

summary::-webkit-details-marker {
	display: none;
}

.js-details {
	position: relative;
}

.js-details::before {
	content: "";
	position: absolute;
	top: 16px;
	right: 10px;
	width: 16px;
	height: 1px;
	background: #1A1A1A;
	transition: rotate 0.3s ease;
}

.js-details::after {
	content: "";
	position: absolute;
	top: 16px;
	right: 10px;
	width: 16px;
	height: 1px;
	rotate: 90deg;
	background: #1A1A1A;
	transition: rotate 0.3s ease;
}

.js-details.is-opened::before {
	rotate: -45deg;
}

.js-details.is-opened::after {
	rotate: 45deg;
}

.information__item-summary {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.9px;
}

.information__body-text,
.information__body-caution {
	color: #666;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.8px;
}

.information__body-text.--sp,
.--sp.information__body-caution {
	display: none;
}

.information__body-text.--mb16,
.--mb16.information__body-caution {
	margin-bottom: 16px;
}

.cancellation-item {
	display: flex;
	-moz-column-gap: 16px;
	column-gap: 16px;
}

.cancellation-item span:first-child {
	min-width: 225px;
	width: -moz-fit-content;
	width: fit-content;
}

.cancellation-rate {
	width: 100%;
}

.information__body-caution {
	position: relative;
	padding-left: 24px;
}

.information__body-caution::before {
	content: "※";
	position: absolute;
	top: 0.5em;
	left: 0.75em;
	translate: -50% -50%;
	width: 1em;
	height: 1em;
}

.pageFv {
	height: 500px;
	position: relative;
}

.pageFv__img-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pageFv__img-wrap.over-ray::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(183deg, rgba(0, 0, 0, 0.15) 2.06%, rgba(0, 0, 0, 0.3) 49.92%, rgba(0, 0, 0, 0.5) 97.79%);
	z-index: 1;
}

.pageFv__img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.pageFv__contents {
	position: absolute;
	left: 6.94444%;
	bottom: 25px;
	z-index: 2;
}

.pageFv__title {
	color: #FFF;
	font-family: "Inter";
	font-size: 12rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 6px;
}

.pageFv__text {
	color: #FFF;
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: 2px;
}

.page__inner {
	max-width: 900px;
	width: 100%;
	margin-inline: auto;
	padding-left: 20px;
}

.page__heading {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.9px;
	padding-bottom: 8px;
	border-bottom: 1px solid #1A1A1A;
	margin-bottom: 16px;
}

.page__lead {
	color: #3C3C3C;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.8px;
	margin-bottom: 48px;
}

.page__lead.mb16 {
	margin-bottom: 16px;
}

.page__lead.--en {
	font-family: "Inter";
}

.page__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	-moz-column-gap: 4.54545%;
	column-gap: 4.54545%;
	row-gap: 40px;
}

.page__grid.mb100 {
	margin-bottom: 100px;
}

.page__grid-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 16px;
	position: relative;
}

.page__grid-item.--fullWidth {
	grid-column: span 2;
}

.page__grid-item.--fullWidth .page__grid-item-wrap {
	width: 47.7272727273%;
	align-self: flex-start;
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 16px;
	position: relative;
}

.page__grid-item-caution {
	display: block;
	margin-top: -10px;
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.6px;
}

.page__grid-img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
}

.page__grid-title {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.8px;
	text-align: center;
}

.page__grid-title .caution {
	display: block;
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.6px;
}

.page__grid-caption-title {
	font-size: 1.8rem;
	padding-bottom: 8px;
	width: 100%;
	text-align: center;
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: 0.8px;
	border-bottom: 1px solid #F4F4F4;
}

.page__grid-item-text {
	display: flex;
	align-items: center;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.8px;
}

.page__grid.--full {
	width: 100vw;
	margin-inline: calc(50% - 50vw);
}

.page__grid.--mediaText {
	display: flex;
	flex-direction: column;
	row-gap: 80px;
}

.page__grid.--mediaText .page__grid-item {
	display: flex;
	justify-content: space-between;
}

.page__grid.--mediaText .page__grid-item:nth-child(odd) {
	flex-direction: row-reverse;
}

.page__grid.--mediaText .page__grid-item:nth-child(even) {
	flex-direction: row;
}

.page__grid-img.--mediaText {
	width: 55.5555555556%;
}

.page__grid-body {
	position: absolute;
	top: 45.83333%;
	left: 40%;
	translate: -50% 0;
	width: 350px;
	height: auto;
	aspect-ratio: 350/210;
	background: rgba(26, 26, 26, 0.95);
	box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25);
	display: flex;
	flex-direction: column;
	row-gap: 16px;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.page__grid-body.--right {
	left: auto;
	right: 40%;
	translate: 50% 0;
}

.page__grid-body.--wide {
	width: 400px;
}

.page__grid-body .page__grid-title {
	color: #FFF;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: 0.9px;
}

.page__grid-text {
	color: #FFF;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.8px;
}

.page__section-head-wrap {
	max-width: 885px;
	width: 100%;
	margin-top: 180px;
	align-self: flex-end;
}

.breadcrumb {
	padding-block: 20px;
	padding-inline: 6.94444%;
	display: flex;
	flex-wrap: wrap;
	-moz-column-gap: 15px;
	column-gap: 10px;
	align-items: center;
}

.breadcrumb .separator {
	display: inline-block;
	margin-top: -3px;
}

.breadcrumb span {
	font-size: 1.6rem;
}

@media (max-width: 601px) {
	.breadcrumb span {
		font-size: 1.4rem;
	}
}


.breadcrumb svg {
	display: block;
	margin-top: 2px;
}

.breadcrumb__item a {
	font-size: 1.6rem;
	font-weight: 500;
	white-space: nowrap;
	line-height: 1;
	letter-spacing: 0.8px;
	transition: opacity 0.3s ease;
	position: relative;
}

.breadcrumb__item a.current {
	pointer-events: none;
}

.archive__contents {
	padding-block: 100px;
}

.archive__inner {
	max-width: 900px;
	width: 100%;
	margin-inline: auto;
}

.archive__list {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
	margin-bottom: 80px;
}

.archive__item {
	padding: 40px 52px 40px 40px;
	border-bottom: 1px solid #1A1A1A;
}

.archive__item a {
	display: flex;
	-moz-column-gap: 25px;
	column-gap: 25px;
	align-items: center;
	transition: opacity 0.3s ease;
	position: relative;
}

.archive__item a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -28px;
	translate: 0 -50%;
	width: 20px;
	height: auto;
	aspect-ratio: 1;
	background: transparent url(../img/right-angle.png) no-repeat center center/contain;
}

.archive__item-date {
	color: #666;
	font-family: "Inter";
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.8px;
}

.archive__item-title {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.9px;
}

.pagination {
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
}

.pagination__wrap {
	display: flex;
	-moz-column-gap: 24px;
	column-gap: 24px;
}

.page-numbers.--active {
	background: #F3F3F3;
	pointer-events: none;
}

.page-numbers.prev {
	background: #B9B9B9;
}

.page-numbers.next {
	background: #1A1A1A;
}

.page-numbers {
	width: 40px;
	height: auto;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

@media (max-width: 601px) {
	.page-numbers {
		width: 32px;
	}
}

@media (max-width: 400px) {
	.page-numbers {
		width: 24px;
	}
}



.single__contents {
	padding-block: 100px;
}

.single__inner {
	display: flex;
	-moz-column-gap: 3.50877%;
	column-gap: 3.50877%;
	overflow-wrap: anywhere;
}

.single__main-contents {
	width: 68.4210526316%;
	padding-right: 40px;
	border-right: 1px solid #666;
}

.single__sidebar {
	width: 28.0701754386%;
}

.single__date {
	color: #666;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.7px;
	margin-bottom: 16px;
}

.single__title {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 1px;
	margin-bottom: 32px;
}

.single__thumbnail {
	margin-bottom: 32px;
}

.single__thumbnail img {
	width: 100%;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
}

.single__main-contents img {
	width: 100%;
	height: auto;
	margin-bottom: 1.5em;
}

.single__main-contents p+ul,
.single__main-contents p+ol,
.single__main-contents ul+p,
.single__main-contents ol+p,
.single__main-contents ul+ol,
.single__main-contents ol+ul {
	margin-bottom: 2em;
}

.single__main-contents p+h2,
.single__main-contents ul+h2,
.single__main-contents ol+h2,
.single__main-contents figure+h2,
.single__main-contents table+h2 {
	margin-bottom: 2em;
}

.single__main-contents p+h3,
.single__main-contents ul+h3,
.single__main-contents ol+h3,
.single__main-contents figure+h3,
.single__main-contents table+h3 {
	margin-bottom: 1.5em;
}

.single__main-contents p+h4,
.single__main-contents ul+h4,
.single__main-contents ol+h4,
.single__main-contents figure+h4,
.single__main-contents table+h4 {
	margin-bottom: 1.5em;
}

.single__main-contents table+table {
	margin-bottom: 2em;
}

.single__main-contents h2 {
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: 0.8px;
	padding: 0.5em 1em;
	background: #3C3C3C;
	margin-bottom: 2em;
}

.single__main-contents h3 {
	color: #3C3C3C;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	padding-block: 7px;
	padding-left: 24px;
	position: relative;
	margin-bottom: 2em;
	background: #F3F3F3;
}

.single__main-contents h3::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background: #3C3C3C;
}

.single__main-contents h4 {
	color: #3C3C3C;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	padding: 4px 10px;
	margin-bottom: 2em;
}

.single__main-contents p {
	color: #3C3C3C;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.8px;
	margin-bottom: 2em;
}

.single__main-contents a {
	color: #0000ee;
	text-decoration: underline;
	font-weight: 700;
	transition: opacity 0.3s ease;
}

.single__main-contents .image {
	width: 100%;
	height: auto;
}

.single__main-contents ul,
.single__main-contents ol {
	padding-left: 32px;
}

.single__main-contents li {
	color: #3C3C3C;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.8;
}

.single__main-contents ul li {
	position: relative;
}

.single__main-contents ul li::before {
	content: "";
	position: absolute;
	top: 0.85em;
	left: -0.75em;
	width: 3px;
	height: auto;
	aspect-ratio: 1;
	background: #3C3C3C;
	border-radius: 50%;
}



.wp-block-table td,
.wp-block-table th {
	border: none;
	padding: 0;
}

.single__main-contents table {
	width: 100%;
	overflow-x: scroll;
	margin-bottom: 2em;
	border-collapse: collapse;
	border-right: 1px solid #666;
}

.single__main-contents table tbody {
	display: block;
	margin-inline: auto;
	max-width: 800px;
}

.single__main-contents table tr {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #666;
}

.single__main-contents table tr:last-of-type {
	border-bottom: 1px solid #666;
}

.single__main-contents table th {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60px;
	flex: 1;
	padding-block: 14px;
	padding-inline: 4px;
	background: #F3F3F3;
	color: #3C3C3C;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}

.single__main-contents table td {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	align-self: stretch;
	min-height: 60px;
	padding-block: 10px;
	padding-inline: 4px;
	color: #3C3C3C;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.5;
	border-left: 1px solid #666;
}

.single__main-contents b,
.single__main-contents strong {
	text-decoration: underline;
	text-decoration-thickness: 0.5em;
	text-decoration-color: rgb(255, 230, 0);
	text-underline-offset: -0.2em;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none;
}

.single__main-contents ol {
	counter-reset: li;
}

.single__main-contents ol li {
	list-style: none;
	position: relative;
}

.single__main-contents ol li::before {
	counter-increment: li;
	content: counter(li) ".";
	position: absolute;
	left: -1em;
}

.single__sidebar__title {
	display: flex;
	flex-direction: row;
	-moz-column-gap: 16px;
	column-gap: 16px;
	align-items: center;
	margin-bottom: 8px;
}

.single__sidebar__title .en {
	font-family: "Inter";
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: 0.8px;
}

.single__sidebar__title .ja {
	font-size: 1.2rem;
	letter-spacing: 0.65px;
}

.single__sidebar-list {
	display: flex;
	flex-direction: column;
}

.single__sidebar-item {
	display: flex;
	flex-direction: column;
	row-gap: 8px;
	padding: 16px 8px;
	border-bottom: 1px solid #1A1A1A;
}

.single__sidebar-date {
	color: #666;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.7px;
}

.single__sidebar-item-title {
	color: #1A1A1A;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.7px;
	transition: opacity 0.3s ease;
}

.drawer__icon {
	position: fixed;
	z-index: 102;
	top: 28px;
	right: 20px;
	padding: 15px;
	width: 45px;
	height: auto;
	aspect-ratio: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-radius: 45px;
	background: rgba(54, 54, 54, 0.85);
	transition: background 0.3s ease;
	cursor: pointer;
}

.drawer__icon.js-show {
	background: #fff;
}

.drawer__icon--bar {
	width: 100%;
	height: 2px;
	background: #fff;
	transform-origin: center;
	transition: background 0.3s ease, rotate 0.3s ease, translate 0.3s ease;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
	rotate: 45deg;
	translate: 0 6.5px;
	background: #1A1A1A;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
	display: none;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
	rotate: -45deg;
	translate: 0 -6.5px;
	background: #1A1A1A;
}

.drawer {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	position: fixed;
	z-index: 101;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background: #1A1A1A;
	overflow-y: scroll;
}

.drawer.js-show {
	opacity: 1;
	visibility: visible;
}

.drawer__body {
	width: 100%;
	height: -moz-fit-content;
	height: fit-content;
	padding-block: 88px 40px;
	padding-inline: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 24px;
}

.drawer__list {
	display: flex;
	flex-direction: column;
	row-gap: 24px;
}

.drawer__list li {
	text-align: center;
}

.drawer__list li a {
	color: #FFF;
	font-size: 2rem;
	font-weight: 400;
	line-height: normal;
	transition: opacity 0.3s ease;
}

.drawer__btn {
	max-width: 342px;
	width: 100%;
	display: inline-block;
	padding: 8px 30px;
	text-align: center;
	background: #fff;
	border-radius: 4px;
	color: #1A1A1A;
	border: 1px solid #fff;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.8px;
	transition: background 0.3s ease, color 0.3s ease;
}

.drawer__logo {
	width: 80px;
	height: 66px;
}

.drawer__logo a {
	transition: opacity 0.3s ease;
}

.drawer__logo img {
	width: 100%;
	height: 100%;
}

.error {
	margin-top: 100px;
	padding-block: 100px;
}

.error__contents {
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 24px;
	padding-block: 8.3333vw;
}

.error__title {
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 1.2px;
}

.error__text {
	color: #3C3C3C;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.8px;
	margin-bottom: 32px;
}

.error__btn {
	display: flex;
	width: -moz-fit-content;
	width: fit-content;
	padding: 14px 40px;
	justify-content: flex-end;
	align-items: center;
	border: 1px solid #1A1A1A;
	border-radius: 4px;
	background: rgba(26, 26, 26, 0.95);
	position: relative;
	transition: opacity 0.3s ease;
	color: #fff;
}

.error__btn::before {
	content: "←";
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	left: 40px;
	width: 20px;
	height: auto;
	aspect-ratio: 1;
	transition: left 0.5s ease;
}

.error__btn-text {
	padding-left: 36px;
	font-family: "Inter";
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.8px;
	position: relative;
}

.other__contents {
	margin-top: -60px;
	margin-left: 13.1578%;
	margin-right: auto;
	max-width: 900px;
	width: 78.9473vw;
	padding-left: 16px;
}

.other__title {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.9px;
	margin-bottom: 16px;
	padding-bottom: 8px;
	border-bottom: 1px solid #1A1A1A;
}

.other__lead {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.6px;
	margin-bottom: 48px;
}

.other__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	-moz-column-gap: 4.5455%;
	column-gap: 4.5455%;
	row-gap: 40px;
}

.other__grid-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 8px;
}

.other__grid-img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
}

.other__grid-text {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.8px;
}

.other__list {
	display: none;
}

.other__list li {
	padding-left: 1em;
	font-size: 1.4rem;
	color: #3C3C3C;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.7px;
	position: relative;
}

.other__list li::before {
	content: "";
	position: absolute;
	top: 0.825em;
	left: 0.25em;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #3C3C3C;
}

.other__swiper-container {
	display: none;
}

.other__swiper-container,
.other__swiper,
.other__swiper-wrapper,
.other__swiper-slide {
	position: relative;
}

.other__swiper-container {
	margin-bottom: 32px;
}

.other__swiper-slide {
	width: 100%;
	height: auto;
}

.other__swiper-img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 343/206;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 4px;
	margin-bottom: 4px;
}

.other__swiper-text {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.7px;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
	top: unset;
	bottom: unset;
	left: unset;
	right: unset;
	margin: 0;
	padding: 0;
}

.swiper-pagination-bullets.swiper-pagination-horizontal.other__swiper-pagination .swiper-pagination-bullet {
	margin-inline: 8px;
}

.swiper-pagination-bullets.swiper-pagination-horizontal.other__swiper-pagination .swiper-pagination-bullet:first-child {
	margin-left: 0;
}

.swiper-pagination-bullets.swiper-pagination-horizontal.other__swiper-pagination .swiper-pagination-bullet:last-child {
	margin-right: 0;
}

.modal,
.modal-slider {
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.1s ease, opacity 0.1s ease;
}

.modal.is-active,
.modal-slider.is-active {
	visibility: visible;
	opacity: 1;
}

.modal.is-active .modal__contents,
.modal-slider.is-active .modal__contents {
	opacity: 1;
	translate: -50% -50%;
}

.modal__body {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(3px);
	z-index: 1000;
}

.modal__contents {
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% calc(-50% + 20px);
	z-index: 1001;
	max-width: 600px;
	max-height: 90vh;
	width: 100%;
	background: #fff;
	padding: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 0;
	transition: translate 0.6s ease, opacity 0.6s ease;
}

.modal__close {
	margin-left: auto;
	margin-bottom: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: auto;
	aspect-ratio: 1;
	background: #505050;
	border-radius: 50%;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.modal__img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 55vh;
	-o-object-fit: contain;
	object-fit: contain;
}

.modal__text {
	margin-top: 16px;
	color: #505050;
	font-family: Inter;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.8;
	align-self: flex-start;
}

.modal__swiper-container,
.modal__swiper,
.modal__swiper-wrapper,
.modal__swiper-slide {
	position: relative;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
	top: unset;
	bottom: unset;
	left: unset;
	right: unset;
	margin: 0;
	padding: 0;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
	margin-top: 10px;
}

.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
	opacity: 1;
}

.modal-map__wrap {
	position: absolute;
	top: 50%;
	left: 0;
	translate: 0 -50%;
	z-index: 1001;
	width: 100%;
	overflow-x: auto;
}

.modal-map__contents {
	width: 900px;
	margin-inline: auto;
	background: #505050;
	padding: 80px 80px 40px 24px;
	position: relative;
}

.modal-map__close {
	position: absolute;
	top: 40px;
	right: 80px;
	background: transparent;
	color: #fff;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.8px;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.modal-map__img {
	width: 100%;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
}

.contracts__title {
	font-size: 72px;
	letter-spacing: 2px;
}

.contracts__contents {
	width: 100%;
	border: none;
	padding-right: 0 !important;
}

.is-sp {
	display: none;
}

.is-not-sp {
	display: block;
}

.is-sm {
	display: none;
}

.is-not-sp {
	display: block;
}

.is-tab {
	display: none;
}

.is-not-tab {
	display: block;
}

.is-pc {
	display: none;
}

.is-not-pc {
	display: block;
}

.is-md {
	display: none;
}

.uppercase-letter {
	text-transform: uppercase;
}

/******************************************
    アニメーション
******************************************/

.animated__fadeIn,
.animated__fadeInItem,
.animated__fadeInItemEarly {
	opacity: 0;
	translate: 0 20px;
	transition: opacity 1s ease, translate 0.8s ease;
}

.animated__fadeIn.js-show,
.animated__fadeInItem.js-show,
.animated__fadeInItemEarly.js-show {
	opacity: 1;
	translate: 0 0;
}

.animated__fadeIn.--center {
	opacity: 0;
	translate: -50% calc(-50% + 20px);
}

.animated__fadeIn.--center.js-show {
	opacity: 1;
	translate: -50% -50%;
}

.animated__fadeInEarly {
	opacity: 0;
	transition: opacity 1s ease;
}

.animated__fadeInEarly.js-show {
	opacity: 1;
}

.text-wrap {
	white-space: normal;
}

.lang-change.js-lang-show {
	animation-name: lang-change-animation;
	animation-fill-mode: backwards;
	animation-duration: 0.8s;
	animation-iteration-count: finite;
	animation-direction: normal;
	animation-timing-function: ease;
}

@media (any-hover: hover) {

	.header__logo:hover {
		opacity: 0.7;
	}

	.header__list li a:hover {
		opacity: 0.7;
	}

	.header__btn:hover {
		background: transparent;
		color: #fff;
	}

	.header__btn:hover svg {
		filter: brightness(0) invert(1);
	}

	.language-btn:hover {
		opacity: 0.7;
	}

	.footer__logo a:hover {
		opacity: 0.7;
	}

	.footer__list li a:hover {
		opacity: 0.7;
	}

	.footer__btn:hover {
		background: transparent;
		color: #fff;
	}

	.fv__news-title-wrap a:hover {
		opacity: 0.7;
	}

	.fv__news-title-wrap a:hover::before {
		scale: 1 1;
		transform-origin: left center;
	}

	.about__pagination-item:hover {
		opacity: 0.7;
	}

	.rooms__navigation li a:hover {
		opacity: 0.7;
	}

	.page-rooms__btn:hover {
		background: #fff;
		color: #1A1A1A;
	}

	.more-btn:hover {
		background: #fff;
		color: #1A1A1A;
	}

	.more-btn:hover::after {
		right: 30px;
	}

	.single__btn-wrap .single__btn:hover {
		opacity: 1;
	}

	.single__btn:hover {
		background: #fff;
		color: #1A1A1A;
	}

	.single__btn:hover::before {
		left: 30px;
	}

	.news__item:hover::after {
		right: 10px;
		opacity: 0.7;
	}

	.news__item a:hover {
		opacity: 0.7;
	}

	.news__item a:hover .news__item::after {
		right: 10px;
		opacity: 0.7;
	}

	.access__btn:hover {
		background: #fff;
		color: #1A1A1A;
	}

	.nearby__btn:hover {
		background: #fff;
		color: #1A1A1A;
	}

	.floor-map__btn:hover {
		background: #505050;
	}

	.floor-map__btn:hover .floor-map__btn-text {
		color: #fff;
	}

	.floor-map__btn:hover .floor-map__btn-text .arrow svg {
		fill: #fff;
		transition: fill 0.3s ease;
	}

	.floor-map__btn:hover rect {
		fill: #fff;
		transition: fill 0.3s ease;
	}

	.floor-map__btn:hover path {
		fill: #505050;
		transition: fill 0.3s ease;
	}

	.floor-map__bottom-btn:hover {
		background: #505050;
	}

	.floor-map__bottom-btn:hover .floor-map__bottom-btn-text {
		color: #fff;
	}

	.floor-map__grid-close:hover {
		opacity: 0.7;
	}

	summary:hover {
		cursor: pointer;
	}

	.breadcrumb__item a:hover {
		opacity: 0.7;
	}

	.archive__item a:hover {
		opacity: 0.7;
	}

	.pagination__item a:hover {
		opacity: 0.7;
	}

	.single__main-contents a:hover {
		opacity: 0.7;
	}

	.single__sidebar-item-title:hover {
		opacity: 0.7;
	}

	.drawer__icon:hover {
		background: #fff;
	}

	.drawer__icon:hover .drawer__icon--bar {
		background: #1A1A1A;
	}

	.drawer__list li a:hover {
		opacity: 0.7;
	}

	.drawer__btn:hover {
		background: #1A1A1A;
		color: #fff;
	}

	.drawer__logo a:hover {
		opacity: 0.7;
	}

	.error__btn:hover {
		background: #fff;
		color: #1A1A1A;
	}

	.error__btn:hover::before {
		left: 30px;
	}

	.modal__close:hover {
		opacity: 0.7;
	}

	.modal-map__close:hover {
		opacity: 0.7;
	}

	.page-numbers:hover {
		opacity: 0.7;
	}

}

@media (min-width: 768px) {

	.about__contents.--sm {
		display: none;
	}

	.rooms.--sm {
		display: none;
	}

	.access__map.--md {
		display: block;
	}

	.is-md {
		display: block;
	}

}

@media (min-width: 1025px) {

	.header__btn-wrap {
		-moz-column-gap: 40px;
		column-gap: 40px;
	}

}

@media (min-width: 1280px) {

	.header__nav {
		-moz-column-gap: 52px;
		column-gap: 52px;
		padding-right: 0;
	}

	.header__list {
		display: flex;
	}

	.header__btn-wrap {
		-moz-column-gap: 52px;
		column-gap: 52px;
	}

	.rooms__navigation {
		-moz-column-gap: 36px;
		column-gap: 36px;
	}

	.rooms__navigation li a {
		min-width: 240px;
		padding: 10px 16px 8px 32px;
	}

	.drawer__icon {
		display: none;
	}

	.error__contents {
		padding-block: 120px;
	}

	.is-pc {
		display: block;
	}

	.is-not-pc {
		display: none;
	}

}

@media (max-width: 1140px) {

	.floor-map__btn {
		padding-inline: 0.8%;
		padding-block: 0.2%;
	}

	.floor-map__btn-text {
		font-size: 0.877193vw;
	}

}

@media (max-width: 1024px) {

	.footer__list {
		flex-wrap: wrap;
		row-gap: 24px;
		-moz-column-gap: 30px;
		column-gap: 30px;
	}

	.footer__list li a {
		font-size: 1.8rem;
	}

	.fv {
		height: 70vw;
	}

	.fv__news-head {
		font-size: 1.6rem;
	}

	.fv__news-title-wrap a {
		font-size: 1.6rem;
		gap: 20px;
	}

	.concept__img.--03 {
		margin-left: 0;
	}

	.concept__text-wrap {
		padding-block: 56px;
		padding-inline: 44px;
		top: 32.22222%;
	}

	.about__text-wrap,
	.rooms__text-wrap {
		min-width: 580px;
		padding: 40px 20px;
		margin-bottom: 40px;
	}

	.about__title,
	.rooms__title {
		font-size: 2.8rem;
	}

	.roomsFv__contents {
		bottom: 8%;
	}

	.roomsFv__text {
		margin-bottom: 24px;
	}

	.rooms__navigation {
		padding-right: 60px;
		-moz-column-gap: 36px;
		column-gap: 36px;
	}

	.rooms__navigation li a {
		min-width: 280px;
	}

	.page-rooms__item-title::before {
		height: 38px;
	}

	.page-rooms__item-title .small {
		font-size: 1.4rem;
		letter-spacing: 0.6px;
		line-height: 1.2;
	}

	.page-rooms__item-title {
		font-size: 2rem;
		-moz-column-gap: 24px;
		column-gap: 24px;
	}

	.page-rooms__item-title.--tab-column {
		align-items: flex-start;
		flex-direction: column;
		row-gap: 4px;
	}

	.page-rooms__info.--column2.--tab {
		grid-template-columns: 1fr;
		row-gap: 24px;
	}

	.service__contents {
		-moz-column-gap: 8%;
		column-gap: 8%;
	}

	.service__info {
		width: 37%;
	}

	.service__img-wrap {
		width: 55%;
	}

	.page-facility__bath-head {
		height: 66.88889vw;
	}

	.page-facility__bath-head-contents {
		min-width: 768px;
	}

	.news__item a {
		flex-direction: column;
		align-items: flex-start;
	}

	.news__item-title {
		font-size: 1.6rem;
	}

	.nearby__contents {
		padding-inline: 20px;
		-moz-column-gap: 6.5%;
		column-gap: 6.5%;
	}

	.nearby__item-head {
		gap: 16px;
	}

	.nearby__item-title {
		font-size: 1.8rem;
	}

	.brand-hotel__item {
		aspect-ratio: 500/300;
	}

	.brand-hotel__item-title {
		font-size: 3.2rem;
	}

	.brand-hotel__item-title .small {
		font-size: 2rem;
	}

	.brand-hotel__text {
		font-size: 1.4rem;
	}

	.floor-map {
		padding-inline: 20px;
	}

	.information__contents {
		-moz-column-gap: 6.5%;
		column-gap: 6.5%;
	}

	.information__body.--column2 {
		-moz-column-gap: 6.5%;
		column-gap: 6.5%;
	}

	.information__body {
		padding-inline: 0;
	}

	.information__body-list li {
		font-size: 1.4rem;
		letter-spacing: 0.7px;
	}

	.single__inner {
		-moz-column-gap: 2.34375%;
		column-gap: 2.34375%;
	}

	.single__main-contents {
		flex: 1;
		padding-right: 24px;
	}

	.single__sidebar {
		width: 23.4375%;
	}

	.single__sidebar__title {
		flex-direction: column;
		row-gap: 4px;
	}

	.modal__contents {
		padding: 24px;
	}

	.contracts__title {
		font-size: 8vw;
	}

	.is-tab {
		display: block;
	}

	.is-not-tab {
		display: none;
	}

}

@media (max-width: 767px) {

	.inner {
		padding-inline: 20px;
	}

	.subpageHeader .header__bg {
		display: none;
	}

	.header__logo {
		width: 60px;
		height: 49.5px;
	}

	.header__btn {
		min-width: auto;
		padding: 4px 14px;
		background: rgba(54, 54, 54, 0.85);
		border-color: transparent;
		color: #fff;
		-moz-column-gap: 4px;
		column-gap: 4px;
	}

	.header__btn svg {
		width: 25px;
		height: 25px;
		filter: brightness(0) invert(1);
	}

	.header__btn-text {
		font-size: 1.2rem;
		letter-spacing: 0px;
	}

	.language-btn-wrap {
		display: none;
	}

	.footer__contents {
		padding-bottom: 40px;
	}

	.footer__logo-img {
		width: 80px;
		height: 66px;
	}

	.footer__btn {
		padding: 8px 20px;
	}

	.copyright__text {
		font-size: 1.2rem;
		letter-spacing: 0.6px;
	}

	.fv {
		height: 85vw;
	}

	.fv__contents-inner {
		flex-direction: column;
		align-items: flex-start;
		row-gap: 16px;
	}

	.fv__scrolldown {
		margin-left: auto;
		padding-right: 20px;
	}

	.fv__scrolldown-text {
		font-size: 1.4rem;
	}

	.fv__scrolldown-bar {
		top: 0;
		right: 0;
		height: 20px;
	}

	.fv__scrolldown-bar .bar {
		height: 25px;
	}

	.fv__news-head {
		padding-inline: 8px;
		font-size: 1.4rem;
		font-weight: 500;
		line-height: 1.8;
		letter-spacing: 0.7px;
	}

	.fv__news-title-wrap a {
		padding-inline: 0;
		background: transparent;
		flex-direction: column;
		align-items: flex-start;
		row-gap: 0;
	}

	.fv__news-title-wrap a .fv__news-title,
	.fv__news-title-wrap a .fv__news-date {
		padding-inline: 8px;
		background: rgba(0, 0, 0, 0.5);
	}

	.fv__news-date {
		align-self: flex-start;
	}

	.concept {
		padding-block: 60px;
	}

	.concept__img.--01 {
		width: 56vw;
		margin-top: 40px;
	}

	.concept__img.--02 {
		width: 37.3333vw;
		margin-right: 0;
	}

	.concept__img.--03 {
		width: 37.3333vw;
		margin-top: -30.6667%;
	}

	.concept__img.--04 {
		width: 56vw;
		margin-top: 20px;
	}

	.concept__img.--05 {
		width: 56vw;
		margin-top: 25px;
		margin-left: 0;
	}

	.concept__img.--06 {
		width: 37.3333vw;
		margin-top: -22.6667%;
		margin-right: 0;
	}

	.concept__text-wrap {
		order: 4;
		position: relative;
		inset: 0;
		margin-inline: auto;
		margin-top: -20px;
		padding-inline: 24px;
	}

	.concept__text-wrap.animated__fadeIn {
		translate: 0 20px;
	}

	.concept__text-wrap.animated__fadeIn.js-show {
		translate: 0 0;
	}

	.concept__title {
		font-size: 2rem;
		margin-bottom: 24px;
	}

	.concept__lead {
		font-size: 1.6rem;
		margin-bottom: 32px;
		letter-spacing: 0.7px;
	}

	.concept__lead .large {
		font-size: 1.6rem;
	}

	.about__contents.--md {
		display: none;
	}

	.roomsFv__img-wrap.over-ray::before {
		background: linear-gradient(171deg, rgba(0, 0, 0, 0) 4.41%, rgba(0, 0, 0, 0.26) 50.38%, rgba(0, 0, 0, 0.4) 94.61%);
	}

	.roomsFv__contents {
		top: 50%;
		bottom: unset;
		left: 50%;
		translate: -50% -50%;
	}

	.roomsFv__title {
		font-size: 64px;
		text-align: center;
		margin-bottom: 8px;
	}

	.roomsFv__text {
		display: none;
	}

	.roomsFv__sub-title {
		display: block;
	}

	.rooms__navigation {
		display: none;
	}

	.page-rooms {
		padding-block: 60px;
	}

	.page-rooms__head {
		display: none;
	}

	.page-rooms__contents,
	.page-service__contents {
		margin-top: 0;
		margin-left: 0;
		margin-right: 0;
		width: 100%;
		row-gap: 60px;
	}

	.page-rooms__item {
		display: flex;
		flex-direction: column;
	}

	.page-rooms__body {
		display: contents;
	}

	.page-rooms__item-title .small {
		line-height: 1.8;
	}

	.page-rooms__item-title {
		order: 1;
		flex-direction: column;
		row-gap: 4px;
		align-items: flex-start;
	}

	.page-rooms__info {
		order: 3;
	}

	.page-rooms__info-heading {
		padding-block: 4px 6px;
	}

	.room-facilities__img {
		width: 50px;
	}

	.page-rooms__caution {
		order: 4;
	}

	.page-rooms__btn {
		order: 5;
	}

	.page-rooms__img-wrap {
		order: 2;
	}

	.page-rooms__swiper-slide img {
		border-radius: 4px;
	}

	.page-rooms__swiper-slide {
		width: calc(100% - 20px);
	}

	.swiper-button-prev,
	.swiper-button-next {
		display: none;
	}

	.page-rooms__swiper-bottom {
		width: calc(100% - 20px);
		margin-block: 24px;
	}

	.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
		width: 10px;
		background: #D9D9D9;
	}

	.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet-active {
		background: #666;
	}

	.page-rooms-top {
		display: block;
	}

	.btn.--facility {
		margin-right: 0;
	}

	.more-btn::after {
		right: 24px;
	}

	.more-btn {
		width: 163px;
		padding: 14px 24px;
	}

	.more-btn__text {
		font-size: 1.4rem;
		letter-spacing: 0.7px;
	}

	.single__btn-wrap {
		margin-top: 40px;
	}

	.service {
		padding-block: 60px 40px;
	}

	.service__contents {
		flex-direction: column;
	}

	.service__info {
		display: contents;
		width: 100%;
	}

	.service__img-wrap {
		width: 100%;
		order: 1;
		margin-top: 0;
		border-radius: 4px;
		overflow: hidden;
		margin-bottom: 32px;
	}

	.service__head {
		margin-bottom: 16px;
	}

	.service__text {
		margin-bottom: 32px;
		order: 2;
	}

	.service__btn-wrap {
		order: 3;
	}

	.page-service {
		padding-block: 60px 40px;
	}

	.slider__inner {
		margin-bottom: 0;
	}

	.page-service__title,
	.page-service__sub-title {
		display: none;
	}

	.section__head-block.--top {
		display: none;
	}

	.section__head-block.--bottom {
		display: none;
	}

	.section__title {
		text-align: center;
		font-size: 2.8rem;
		letter-spacing: 0.7px;
	}

	.section__sub-title {
		text-align: center;
		font-size: 1.8rem;
		letter-spacing: 0.7px;
	}

	.facility {
		padding-block: 60px;
	}

	.facility__head {
		margin-bottom: 32px;
	}

	.facility__text {
		width: 100%;
		max-width: none;
		margin-bottom: 13.0378%;
	}

	.facility__img-wrap {
		display: none;
	}

	.facility__slider {
		display: block;
	}

	.page-facility {
		padding-block: 60px 40px;
	}

	.page-facility__head {
		margin-bottom: 32px;
	}

	.page-facility__bath {
		row-gap: 40px;
	}

	.page-facility__bath-head {
		height: 85vw;
	}

	.page-facility__bath-head-contents {
		min-width: 100%;
		padding: 40px 16px;
	}

	.page-facility__bath-head-text {
		row-gap: 8px;
		font-size: 1.8rem;
	}

	.page-facility__bath-item-title {
		padding-left: 16px;
		border-width: 6px;
	}

	.page-facility__bath-item {
		padding-block: 40px 20px;
	}

	.news {
		padding-block: 60px 40px;
	}

	.news__contents {
		flex-direction: column;
	}

	.news__list-wrap {
		margin-top: 0;
	}

	.news__list {
		padding-left: 8px;
		margin-bottom: 32px;
	}

	.news__item {
		padding: 0px;
	}

	.news__item::after {
		content: none;
	}

	.news__item a {
		padding: 16px 8px;
	}

	.access {
		padding-block: 60px 0;
	}

	.access__contents {
		flex-direction: column;
		align-items: flex-start;
	}

	.access__head {
		margin-bottom: 16px;
		align-self: center;
	}

	.access__map-wrap {
		order: 1;
		width: 100%;
		margin-bottom: 24px;
	}

	.access__map.--sm {
		display: block;
	}

	.access__info {
		display: contents;
	}

	.access__text {
		order: 2;
		margin-bottom: 16px;
	}

	.access__address {
		order: 2;
		margin-bottom: 8px;
		align-self: flex-start;
	}

	.access__address-text {
		order: 2;
	}

	.access__check-time,
	.access__check-time-caution {
		order: 2;
		margin-bottom: 16px;
		align-self: flex-start;
	}

	.access__check-time-wrap {
		order: 2;
		margin-bottom: 0px;
	}

	.access__caution {
		order: 2;
		margin-bottom: 32px;
	}

	.access__btn-wrap {
		margin-top: 16px;
		order: 3;
		row-gap: 32px;
		align-items: center;
		margin-inline: auto;
	}

	.access__btn-wrap.is-sm {
		display: flex;
	}

	.access__btn-wrap.is-md {
		display: none;
	}

	.access__btn {
		width: 100%;
		max-width: 343px;
		padding: 8px 24px;
	}

	.nearby {
		padding-block: 60px;
	}

	.nearby__head {
		margin-bottom: 32px;
	}

	.nearby__contents {
		grid-template-columns: 1fr;
		row-gap: 36px;
	}

	.brand-hotel__contents {
		flex-direction: column;
	}

	.brand-hotel__item {
		width: 100%;
		aspect-ratio: 375/185;
	}

	.floor-map {
		padding-inline: 12px;
		padding-block: 60px;
	}

	.floor-map__btn-text {
		-moz-column-gap: 3px;
		column-gap: 3px;
	}

	.floor-map__btn-text .number {
		display: block;
	}

	.floor-map__btn-text .arrow {
		display: none;
	}

	.floor-map__btn-text {
		font-size: 1vw;
	}

	.floor-map__bottom {
		display: block;
	}

	.information {
		padding-block: 60px 40px;
	}

	.information__contents {
		flex-direction: column;
		align-items: center;
		row-gap: 16px;
	}

	.information__list {
		margin-top: 0;
		width: 100%;
	}

	.information__item {
		padding: 10px 0;
	}

	.information__body {
		padding-block: 16px;
	}

	.js-details.is-opened {
		padding-bottom: 36px;
	}

	.js-details.is-opened.--pb0 {
		padding-bottom: 0;
	}

	.information__body-caution {
		margin-bottom: 8px;
	}

	.information__body-caution+.information__body-caution {
		margin-bottom: 0;
	}

	.pageFv__img-wrap.over-ray::before {
		background: linear-gradient(171deg, rgba(0, 0, 0, 0) 4.41%, rgba(0, 0, 0, 0.26) 50.38%, rgba(0, 0, 0, 0.4) 94.61%);
	}

	.pageFv__contents {
		top: 50%;
		bottom: unset;
		left: 50%;
		translate: -50% -50%;
	}

	.pageFv__title {
		font-size: 6.4rem;
		text-align: center;
		margin-bottom: 8px;
	}

	.pageFv__text {
		font-size: 2.4rem;
		font-weight: 500;
		line-height: 1;
		letter-spacing: 0.7px;
		text-align: center;
	}

	.page__inner {
		padding-left: 0;
	}

	.page__grid-caption-title {
		font-size: 1.6rem;
	}

	.page__grid-item-text {
		font-size: 1.4rem;
		line-height: 1.4;
	}

	.breadcrumb {
		padding-inline: 16px;
		padding-block: 20px;
		-moz-column-gap: 10px;
		column-gap: 10px;
	}

	.breadcrumb svg {
		margin-top: 5px;
		width: 5px;
		height: 10px;
	}

	.archive__contents {
		padding-block: 60px 40px;
	}

	.archive__list {
		row-gap: 20px;
	}

	.archive__list {
		row-gap: 0;
		margin-bottom: 40px;
	}

	.archive__item {
		padding: 20px 32px 20px 16px;
	}

	.archive__item a {
		flex-direction: column;
		row-gap: 4px;
		align-items: flex-start;
	}

	.pagination__wrap {
		-moz-column-gap: 16px;
		column-gap: 16px;
	}

	.pagination__item {
		border-radius: 4px;
	}

	.single__contents {
		padding-block: 60px;
	}

	.single__inner {
		flex-direction: column;
		row-gap: 80px;
	}

	.single__main-contents {
		width: 100%;
		padding-right: 0;
		border: none;
	}

	.single__sidebar {
		width: 100%;
	}

	.drawer__icon {
		top: 20px;
	}

	.error {
		margin-top: 84px;
	}

	.subpageHeader {
		background: #1A1A1A;
	}

	.subpageHeader .header__btn {
		background: #fff;
		background: #fff;
		color: #1A1A1A;
		border: #fff 1px solid;
	}

	.subpageHeader .header__btn svg {
		width: 25px;
		height: 25px;
		filter: none;
	}

	.subpageDrawerIcon {
		background: #fff;
	}

	.subpageDrawerIcon .drawer__icon--bar {
		background: #1A1A1A;
	}

	.subpageFV {
		height: 52vw !important;
		margin-top: 83px;
	}

	.other__contents {
		margin-top: 0;
		padding-left: 0;
		width: 100%;
		margin-inline: 0;
	}

	.other__head {
		margin-bottom: 32px;
	}

	.other__lead {
		margin-bottom: 24px;
	}

	.other__grid {
		row-gap: 24px;
	}

	.is-sm {
		display: block;
	}

	.is-not-sp {
		display: none;
	}

}

@media (max-width: 767px) and (any-hover: hover) {

	.header__btn:hover {
		color: #1A1A1A;
		background: #fff;
	}

	.header__btn:hover svg {
		filter: none;
	}

}

@media (any-hover: hover) and (max-width: 767px) {

	.more-btn:hover::after {
		right: 14px;
	}

}

@media (max-width: 601px) {

	.inner {
		padding-inline: 16px;
	}

	.header {
		padding-inline: 12px;
		padding-block: 12px;
	}

	.header__logo {
		width: 50px;
		height: 41px;
	}

	.header__nav {
		padding-right: 60px;
	}

	.footer__list li a {
		font-size: 1.4rem;
	}

	.footer__btn-wrap {
		grid-template-columns: 1fr;
		row-gap: 24px;
	}

	.copyright__text {
		font-size: 1rem;
		letter-spacing: 0.4px;
	}

	.fv {
		height: 186.66666vw;
	}

	.fv__img {
		width: auto;
		height: 100%;
		-o-object-fit: fill;
		object-fit: fill;
	}

	.fv__img.--01 {
		animation: img-move-right 16s linear infinite;
	}

	.fv__img.--02 {
		animation: img-move-left 16s linear infinite;
		animation-delay: 4s;
		left: unset;
		right: 0%;
	}

	.fv__img.--03 {
		animation: img-move-right 16s linear infinite;
		animation-delay: 8s;
		left: -25%;
	}

	.fv__img.--04 {
		animation: img-move-right 16s linear infinite;
		animation-delay: 12s;
	}

	.fv__contents-inner {
		padding-inline: 16px;
	}

	.fv__news-title a {
		font-size: 1.4rem;
	}

	.concept__sticky {
		position: static;
		display: contents;
	}

	.concept__title {
		font-size: 1.6rem;
	}

	.concept__lead {
		font-size: 1.4rem;
		row-gap: 8px;
	}

	.concept__lead .large {
		font-size: 1.4rem;
	}

	.concept__text {
		font-size: 1.4rem;
		line-height: 2;
	}

	.about__slide-title {
		font-size: 2.4rem;
	}

	.about__slide-lead {
		font-size: 1.4rem;
	}

	.about__slide-text span {
		font-size: 1.4rem;
	}

	.roomsFv__title {
		font-size: 2.4rem;
		font-weight: 700;
		letter-spacing: 1.2px;
	}

	.roomsFv__sub-title {
		font-size: 1.4rem;
	}

	.page-rooms__item-title::before {
		width: 6px;
		height: 20px;
	}

	.page-rooms__item-title {
		font-size: 1.6rem;
		line-height: 1;
		margin-bottom: 16px;
		padding-left: 16px;
	}

	.page-rooms__info.--column2.--tab {
		row-gap: 20px;
	}

	.page-rooms__info.--column2.--sp {
		grid-template-columns: 1fr;
		row-gap: 20px;
	}

	.page-rooms__info.--mb24 {
		margin-bottom: 20px;
	}

	.page-rooms__info.--grid {
		padding-left: 16px;
		flex-direction: row;
		flex-wrap: wrap;
		-moz-column-gap: 0;
		column-gap: 0;
	}

	.page-rooms__info.--grid .grid__item.--sp {
		display: contents;
	}

	.page-rooms__info.--grid .grid__item span::before {
		content: none;
	}

	.page-rooms__info.--grid .grid__item span::after {
		display: block;
	}

	.page-rooms__info.--grid .grid__item span {
		padding-left: 0;
		padding-right: 12px;
		white-space: auto;
		font-size: 1.4rem;
		letter-spacing: 0.7px;
	}

	.page-rooms__info-heading {
		font-size: 1.4rem;
	}

	.page-rooms__info-text {
		font-size: 1.4rem;
	}

	.room-facilities__item-wrap {
		display: none;
	}

	.room-facilities__item-text {
		font-size: 1.4rem;
		font-weight: 500;
		line-height: 1.8;
		letter-spacing: 0.7px;
		padding-left: 16px;
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
	}

	.page-rooms__caution {
		padding-left: 16px;
		font-size: 1.2rem;
		letter-spacing: 0.6px;
		margin-block: 0 32px;
	}

	.page-rooms__btn {
		font-size: 1.4rem;
		line-height: 1;
		padding: 15px 24px;
	}

	.rooms__text--sm {
		font-size: 1.4rem;
		line-height: 1.8;
		letter-spacing: 0.7px;
	}

	.page-rooms-top__text {
		font-size: 1.4rem;
	}

	.single__btn {
		padding: 12px 24px;
	}

	.single__btn::before {
		left: 24px;
	}

	.single__btn-text {
		font-size: 1.4rem;
		letter-spacing: 0.7px;
	}

	.service__text {
		font-size: 1.4rem;
		line-height: 1.8;
		letter-spacing: 0.7px;
	}

	.page-service {
		padding-top: 24px;
	}

	.section__title {
		font-size: 2.4rem;
	}

	.section__sub-title {
		font-size: 1.4rem;
	}

	.facility__text {
		font-size: 1.4rem;
		line-height: 1.8;
		letter-spacing: 0.7px;
		margin-bottom: 32px;
	}

	.facility__swiper-container+.facility__swiper-container {
		margin-top: 24px;
	}

	.page-facility {
		padding-block: 24px 40px;
	}

	.page-facility__bath {
		row-gap: 0;
		margin-bottom: 60px;
	}

	.page-facility__bath-head {
		height: 115.7333vw;
	}

	.page-facility__bath-head-text {
		font-size: 1.4rem;
		letter-spacing: 0.7px;
	}

	.page-facility__bath-item-title {
		font-size: 1.6rem;
		font-weight: 700;
		line-height: 1;
		padding-bottom: 2px;
		margin-bottom: 24px;
	}

	.page-facility__bath-item-img {
		border-radius: 4px;
		margin-bottom: 8px;
	}

	.page-facility__bath-caption {
		display: block;
		font-size: 1.4rem;
		font-weight: 500;
		line-height: 1.8;
		letter-spacing: 0.7px;
		margin-bottom: 24px;
	}

	.page-facility__bath-item .grid {
		grid-template-columns: 1fr;
	}

	.page-facility__bath-item .grid__item {
		width: 74.6666666667%;
		min-width: 280px;
	}

	.page-facility__bath-item .grid__item:nth-child(odd) {
		justify-self: end;
	}

	.page-facility__bath-item .grid__item:nth-child(even) {
		justify-self: start;
	}

	.page-facility__bath-item .grid__item-img {
		border-radius: 4px;
	}

	.page-facility__bath-item .grid__item-text {
		text-align: left;
		font-size: 1.4rem;
		line-height: 1.8;
		letter-spacing: 0.7px;
	}

	.page-facility__bath-text {
		font-size: 1.4rem;
		margin-top: 24px;
	}

	.news__date {
		font-size: 1.4rem;
		letter-spacing: 0.7px;
	}

	.news__item-title {
		font-size: 1.4rem;
		letter-spacing: 0.7px;
	}

	.access__text {
		font-size: 1.4rem;
		letter-spacing: 0.7px;
	}

	.access__address {
		font-size: 1.4rem;
		letter-spacing: 0.7px;
	}

	.access__address-text span {
		font-size: 1.4rem;
		line-height: 1.8;
		letter-spacing: 0.7px;
	}

	.access__check-time,
	.access__check-time-caution {
		font-size: 1.4rem;
		letter-spacing: 0.7px;
	}

	.access__caution p {
		font-size: 1.4rem;
		letter-spacing: 0.7px;
	}

	.access__tel {
		pointer-events: auto;
	}

	.nearby__contents.--sm {
		display: none;
	}

	.nearby__contents.--sp {
		display: flex;
		flex-direction: column;
		padding-inline: 0;
	}

	.nearby__item-head {
		padding-right: 24px;
	}

	.nearby__item-title {
		font-size: 1.4rem;
		letter-spacing: 0.7px;
		gap: 16px;
	}

	.nearby__item-time {
		font-size: 1.2rem;
	}

	.nearby__text {
		font-size: 1.4rem;
		letter-spacing: 0.7px;
		margin-bottom: 16px;
	}

	.nearby__btn {
		padding: 10px 24px;
	}

	.brand-hotel__title {
		font-size: 2rem;
		font-weight: 700;
		line-height: 1;
		letter-spacing: 1px;
	}

	.brand-hotel__sub-title {
		font-size: 1.4rem;
		font-weight: 500;
		letter-spacing: 0.7px;
	}

	.brand-hotel__item-title {
		font-size: 2rem;
		letter-spacing: 1px;
		margin-bottom: 8px;
		row-gap: 8px;
	}

	.brand-hotel__item-title .small {
		font-size: 1.4rem;
	}

	.brand-hotel__item-title.mb16 {
		margin-bottom: 8px;
	}

	.brand-hotel__text {
		font-size: 1.2rem;
		letter-spacing: 0.6px;
	}

	.floor-map__bottom-btn {
		min-width: auto;
		max-width: 340px;
		width: 100%;
	}

	.floor-map__grid {
		row-gap: 20px;
	}

	.floor-map__grid-item-text {
		font-size: 1.4rem;
	}

	.information__body.--column2.--sp {
		grid-template-columns: 1fr;
	}

	.information__body-list {
		display: none;
	}

	.information__body-list.--mb16 {
		margin-bottom: 8px;
	}

	.information__body-list {
		display: flex;
		flex-direction: column;
		row-gap: 8px;
	}

	.js-details::before {
		top: 10px;
		width: 10px;
	}

	.js-details::after {
		top: 10px;
		width: 10px;
	}

	.information__details::before {
		top: 14px;
	}

	.information__details::after {
		top: 14px;
	}

	.information__item-summary {
		font-size: 1.4rem;
	}

	.information__body-text,
	.information__body-caution {
		font-size: 1.4rem;
	}

	.information__body-text.--sp,
	.--sp.information__body-caution {
		display: block;
	}

	.cancellation-item {
		flex-direction: column;
	}

	.pageFv__title {
		font-size: 2.4rem;
		font-weight: 700;
		letter-spacing: 1.2px;
	}

	.pageFv__text {
		font-size: 1.4rem;
	}

	.page__heading {
		font-size: 1.4rem;
		letter-spacing: 0.7px;
		margin-bottom: 8px;
	}

	.page__lead {
		font-size: 1.4rem;
		letter-spacing: 0.7px;
		margin-bottom: 40px;
	}

	.page__grid {
		display: flex;
		flex-direction: column;
		row-gap: 24px;
	}

	.page__grid-item.--fullWidth .page__grid-item-wrap {
		width: 100%;
	}

	.page__grid-item {
		row-gap: 8px;
		align-items: flex-start;
		width: 74.6666666667%;
		min-width: 280px;
	}

	.page__grid-item:nth-child(even) {
		align-self: flex-end;
	}

	.page__grid-item.--left {
		align-self: flex-start;
	}

	.page__grid-item.--right {
		align-self: flex-end;
	}

	.page__grid-item.--order02-sp {
		order: 2;
		margin-top: -16px;
	}

	.page__grid-item.--order01-sp {
		order: 1;
	}

	.page__grid-item.--order03-sp {
		order: 3;
	}

	.page__grid-item.--order04-sp {
		order: 4;
		margin-top: -16px;
	}

	.page__grid-title {
		font-size: 1.4rem;
		letter-spacing: 0.7px;
		text-align: left;
	}

	.page__grid-caption-title {
		font-size: 1.4rem;
		letter-spacing: 0.7px;
		text-align: left;
		padding-bottom: 4px;
	}

	.breadcrumb__item a {
		font-size: 1.2rem;
	}

	.archive__contents {
		padding-block: 0px 40px;
	}

	.archive__item {
		padding-inline: 0;
	}

	.archive__item a::after {
		content: none;
	}

	.archive__item-date {
		font-size: 1.2rem;
		letter-spacing: 0.6px;
	}

	.archive__item-title {
		font-size: 1.4rem;
		letter-spacing: 0.7px;
		padding-left: 8px;
	}

	.pagination__wrap {
		-moz-column-gap: 5px;
		column-gap: 5px;
	}

	.pagination__item.--prev {
		margin-right: 8px;
	}

	.pagination__item.--next {
		margin-left: 8px;
	}

	.pagination__item a {
		max-width: 40px;
		width: 10vw;
	}

	.single__contents {
		padding-block: 34px 40px;
	}

	.single__inner {
		row-gap: 60px;
	}

	.single__date {
		font-size: 1.2rem;
		letter-spacing: 0.6px;
		margin-bottom: 4px;
	}

	.single__title {
		font-size: 1.6rem;
		padding-bottom: 8px;
		border-bottom: 1px solid #DDD;
		margin-bottom: 16px;
	}

	.single__thumbnail {
		margin-bottom: 16px;
	}

	.single__main-contents h2 {
		font-size: 1.8rem;
		padding: 0.25em 0.5em;
	}

	.single__main-contents h3 {
		font-size: 1.8rem;
		padding-block: 4px;
		padding-left: 18px;
	}

	.single__main-contents h4 {
		font-size: 1.8rem;
	}

	.single__main-contents p {
		font-size: 1.4rem;
		letter-spacing: 0.7px;
	}

	.single__main-contents ul,
	.single__main-contents ol {
		padding-left: 16px;
	}

	.single__main-contents li {
		font-size: 1.4rem;
		letter-spacing: 0.7px;
	}

	.single__main-contents table th {
		font-size: 1.6rem;
	}

	.single__main-contents table td {
		font-size: 1.4rem;
	}

	.single__sidebar__title .ja {
		font-size: 1.4rem;
	}

	.single__sidebar-item {
		row-gap: 4px;
		padding: 16px 0;
	}

	.single__sidebar-date {
		font-size: 1.2rem;
	}

	.single__sidebar-item-title {
		padding-left: 8px;
	}

	.drawer__icon {
		width: 40px;
		padding: 12px;
		top: 12px;
		right: 12px;
		justify-content: center;
		row-gap: 4px;
	}

	.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
		translate: 0 3px;
	}

	.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
		translate: 0 -3px;
	}

	.error {
		margin-top: 65px;
		padding-block: 100px 80px;
	}

	.error__contents {
		row-gap: 16px;
		padding-block: 0;
	}

	.error__title {
		text-align: center;
		font-size: 1.6rem;
		font-weight: 700;
		line-height: 1.8;
		letter-spacing: 0.8px;
	}

	.error__text {
		font-size: 1.4rem;
		letter-spacing: 0.7px;
		margin-bottom: 24px;
	}

	.error__btn {
		padding: 12px 24px;
	}

	.error__btn::before {
		left: 24px;
	}

	.error__btn-text {
		font-size: 1.4rem;
		letter-spacing: 0.7px;
	}

	.subpageFV {
		margin-top: 65px;
	}

	.other__title {
		font-size: 1.4rem;
		font-weight: 700;
		margin-bottom: 8px;
	}

	.other__lead {
		font-size: 1.4rem;
		letter-spacing: 0.7px;
		margin-bottom: 8px;
	}

	.other__grid {
		display: none;
	}

	.other__list {
		display: flex;
		flex-direction: column;
	}

	.other__swiper-container {
		display: block;
	}

	.is-sp {
		display: block;
	}

	.is-not-sp {
		display: none;
	}

}

@keyframes fv-slideshow {

	0% {
		opacity: 0;
		transform: scale(1);
	}

	12% {
		opacity: 1;
	}

	25% {
		opacity: 1;
		transform: scale(1.03);
	}

	42% {
		opacity: 0;
	}

	100% {
		opacity: 0;
	}

}

@keyframes img-move-right {

	0% {
		translate: 0 0;
	}

	50% {
		translate: -10% 0;
	}

	100% {
		translate: -10% 0;
	}

}

@keyframes img-move-left {

	0% {
		translate: 0 0;
	}

	50% {
		translate: 10% 0;
	}

	100% {
		translate: 10% 0;
	}

}

@keyframes scrollDownBar {

	0% {
		bottom: 100%;
	}

	70% {
		bottom: -35px;
	}

	100% {
		bottom: -35px;
	}

}

@keyframes lang-change-animation {

	0% {
		opacity: 0;
		translate: 0 10px;
	}

	100% {
		opacity: 1;
		translate: 0 0;
	}

}

.floating {
	position: fixed;
	bottom: 8%;
	right: -300px;
	width: fit-content;
	height: fit-content;
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid #fff;
	border-radius: 4px;
	padding: 8px 12px;
	z-index: 100;
	cursor: pointer;
	transition: right 0.8s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);

	&:hover {
		opacity: 0.8;
		box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
	}
}

.floating.js-show {
	right: 1.5%;
}

.floating__title {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: 0.1px;
	color: #fff;
	margin-bottom: 4px;
}

.floating__text {
	display: flex;
	flex-direction: column;
	row-gap: 8px;
	font-size: 1.4rem;
	line-height: 1;
	letter-spacing: 0.7px;
	color: #fff;
	margin-bottom: 10px;
}

.floating__btn {
	font-size: 1.4rem;
	line-height: 1;
	letter-spacing: 0.6px;
	color: #fff;
	display: block;
	width: fit-content;
	margin-inline: auto;
	background: transparent;
	text-align: center;
	position: relative;
	padding-right: 1em;
	cursor: pointer;

	&::before {
		content: "";
		position: absolute;
		top: 50%;
		translate: 0 -50%;
		right: 0;
		width: 0;
		height: 0;
		border-style: solid;
		border-right: 5px solid transparent;
		border-left: 5px solid transparent;
		border-top: 10px solid #ffffff;
		border-bottom: 0;
	}
}

@media (max-width: 1024px) {

	.floating {
		padding: 6px 8px;
	}

	.floating__title {
		font-size: 1.4rem;
		font-weight: 700;
		line-height: 1.2;
		margin-bottom: 10px;
	}

	.floating__text {
		font-size: 1.2rem;
		line-height: 1;
		letter-spacing: 0.3px;
		margin-bottom: 8px;
	}

	.floating__btn {
		font-size: 1.2rem;
		line-height: 1;
		letter-spacing: 0.3px;
		padding-right: 12px;

		&::before {
			top: 52%;
			border-right: 4px solid transparent;
			border-left: 4px solid transparent;
			border-top: 8px solid #ffffff;
			border-bottom: 0;

		}
	}
}

.--font-kaku {
	font-family: "Zen Kaku Gothic New";
}