@charset "utf-8";

/* ----------------------------------------------
    reset
---------------------------------------------- */
*, ::before, ::after {
	box-sizing: border-box;
	border-width: 0;
	border-style: solid;
}
html {
	/*line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;*/
}
body {
	margin: 0;
}
main {
	display: block;
}
p, table, blockquote, address, pre, iframe, form, figure, dl {
	margin: 0;
} 
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
}
ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
dd {
	margin-left: 0;
}
hr {
	height: 0;
	margin: 0;
	color: inherit;
	border-top-width: 1px;
	box-sizing: content-box;
	clear: both;
	overflow: visible;
}
pre {
	font-size: inherit;
	font-family: monospace, monospace;
}
address {
	font-style: inherit;
}
a {
	color: inherit;
	word-break: break-all;
	text-decoration: none;
	background-color: transparent;
}
abbr[title] {
	text-decoration: underline dotted;
}
b, strong {
	font-weight: bolder;
}
code, kbd, samp {
	font-size: inherit;
	font-family: monospace, monospace;
}
small {
	font-size: 80%;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
svg, img, embed, object, iframe {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
button, input, optgroup, select, textarea {
	margin: 0;
	padding: 0;
	color: inherit;
	background: transparent;
	border-radius: 0;
	font: inherit;
	text-align: inherit;
	text-transform: inherit;
	vertical-align: middle;
	appearance: none;
	-webkit-appearance: none;
}
button, [type="button"], [type="reset"], [type="submit"] {
	cursor: pointer;
}
button:disabled, [type="button"]:disabled, [type="reset"]:disabled, [type="submit"]:disabled {
	cursor: default;
}
:-moz-focusring {
	outline: auto;
}
select:disabled {
	opacity: inherit;
}
option {
	padding: 0;
}
fieldset {
	margin: 0;
	padding: 0;
	min-width: 0;
}
legend {
	padding: 0;
}
progress {
	vertical-align: baseline;
}
textarea {
	overflow: auto;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
[type="search"] {
	outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
::-webkit-file-upload-button {
	font: inherit;
	-webkit-appearance: button;
}
[type="number"] {
	/*-moz-appearance: textfield;*/
}
label[for] {
	cursor: pointer;
}
details {
	display: block;
}
summary {
	display: list-item;
}
[contenteditable]:focus {
	outline: auto;
}
table {
	border-color: inherit;
	border-collapse: collapse;
}
caption {
	text-align: left;
}
td, th {
	padding: 0;
	font-weight: 500;
    text-align: left;
	vertical-align: top;
}
i {
    display: flex;
}

/* ----------------------------------------------
    base
---------------------------------------------- */
:root {
	--color-Black: #2e2e2e;
	--color-GrayB: #9b9b9b;
	--color-GrayN: #e3e3e3;
	--color-GrayL: #f8f8f8;
	--color-Red:   #89413a;
	--color-Brown: #8e786e;
	--color-Navy:  #202858;
	--font-Mincho: "Zen Old Mincho", serif;
}
html {
	font-size: 62.5%;
    scroll-behavior: smooth;
    touch-action: manipulation;
}
body {
	color: var(--color-Black);
	font: 500 1.8rem / 2 var(--font-Mincho);
	/*letter-spacing: .05em;*/
	font-feature-settings: "path";
}
#wrap {
	width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}
@media (hover: hover) {
	a {
		transition: opacity ease .3s;
	}
	a:hover {
		opacity: .6;
	}
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.5rem;
	}
}
/* ------------------------------------------- */
.w-90 {
	width: 90%;
}
.max-w-800 {
	max-width: 800px;
}
.max-w-900 {
	max-width: 900px;
}
.max-w-1000 {
	max-width: 1000px;
}
.max-w-1200 {
	max-width: 1200px;
}
.mx-auto {
	margin-left: auto;
	margin-right: auto;
}
.mb-1 {
	margin-bottom: 1em;
}
.mb-2 {
	margin-bottom: 2em;
}
.mb-3 {
	margin-bottom: 3em;
}
.mb-4 {
	margin-bottom: 4em;
}
.mb-5 {
	margin-bottom: 5em;
}
.mb-6 {
	margin-bottom: 6em;
}
.pt-6 {
	padding-top: 6em;
}
.pb-6 {
	padding-bottom: 6em;
}
.text-12 {
	font-size: 1.2rem;
}
.text-16 {
	font-size: 1.6rem;
}
.text-18 {
	font-size: 1.8rem;
}
.text-20 {
	font-size: 2.0rem;
}
.text-24 {
	font-size: 2.4rem;
}
.text-26 {
	font-size: 2.6rem;
}
.text-28 {
	font-size: 2.8rem;
}
.text-32 {
	font-size: 3.2rem;
}
.text-34 {
	font-size: 3.4rem;
}
.text-40 {
	font-size: 4.0rem;
}
.text-60 {
	font-size: 6.0rem;
}
.text-center {
	text-align: center;
}
.text-white {
	color: #fff;
}
.text-red {
	color: var(--color-Red);
}
.text-navy {
	color: var(--color-Navy);
}
.bg-grayl {
	background: var(--color-GrayL);
}
.bg-grayn {
	background: var(--color-GrayN);
}
.bg-grayb {
	background: var(--color-GrayB);
}
.bg-brown {
	background: var(--color-Brown);
}
.bg-black {
	background: var(--color-Black);
}
.bg-white {
	background: #fff;
}
.bg-red {
	background: var(--color-Red);
}
.bg-navy {
	background: var(--color-Navy);
}
.font-mincho {
    font-family: var(--font-Mincho);
}
.pos-relative {
	position: relative;
}
.z-1 {
	z-index: 1;
}
.radius {
	border-radius: .5em;
    overflow: hidden;
}
@media screen and (max-width: 768px) {
	.pt-6 {
		padding-top: 4em;
	}
	.pb-6 {
		padding-bottom: 4em;
	}
	.text-12-sm {
		font-size: 1.3rem;
	}
	.text-14-sm {
		font-size: 1.5rem;
	}
	.text-16-sm {
		font-size: 1.65rem;
	}
	.text-18-sm {
		font-size: 1.8rem;
	}
	.text-20-sm {
		font-size: 2.0rem;
	}
	.text-22-sm {
		font-size: 2.2rem;
	}
	.text-24-sm {
		font-size: 2.4rem;
	}
	.text-28-sm {
		font-size: 2.8rem;
	}
}
/* ------------------------------------------- */
.title01 {
	padding: 0 0 1em;
	line-height: 1.6;
    display: grid;
    gap: .5em;
    justify-content: center;
}
.title01::after {
    content: "";
    width: 2.5em;
    height: .5em;
    margin: .5em auto 0;
    border-top: 1px solid var(--color-Navy);
    border-bottom: 1px solid var(--color-Navy);
}
@media screen and (max-width: 768px) {
}
/* ------------------------------------------- */
.btn01 a {
    width: fit-content;
    padding: 0 1em;
    display: flex;
    gap: .5em;
    align-items: center;
}
.btn01.right a {
    margin: 0 0 0 auto;
}
.btn01.center a {
    margin: 0 auto;
}
.btn01 a::after {
	content: "";
	width: .5em;
	aspect-ratio: 1;
	border-top: 1px solid;
	border-right: 1px solid;
	transform: rotate(45deg);
}
.btn02 a {
    width: 100%;
    max-width: 360px;
    height: 60px;
    display: grid;
    place-items: center;
}
.btn03 a {
    width: 100%;
    max-width: 300px;
    height: 60px;
    border: 1px solid;
    display: grid;
    place-items: center;
}
.btn03 a::after {
    content: "";
    width: .5em;
    aspect-ratio: 1;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(45deg);
    position: absolute;
    right: 1.5em;
}
@media screen and (max-width: 768px) {
}
/* ------------------------------------------- */
.table01 {
    width: 100%;
    border: 1px solid var(--color-GrayN);
}
.table01 tbody th,
.table01 tbody td {
    padding: 2em 4em;
    border-bottom: 1px solid var(--color-GrayN);
}
.table01 tbody th {
    background: var(--color-GrayL);
}
@media screen and (max-width: 768px) {
	.table01 tbody th,
	.table01 tbody td {
	    padding: 1em;
	}
}
/* ------------------------------------------- */
:is(.swiper .menu, .swiper + .menu) {
	width: 100%;
    display: flex;
    gap: 1em;
    align-items: center;
    justify-content: center;
}
:is(.swiper .menu, .swiper + .menu) * {
    margin: 0;
    position: static;
}
:is(.swiper .menu, .swiper + .menu) .swiper-pagination {
    width: fit-content;
    display: flex;
    gap: .5em;
    align-items: center;
}
:is(.swiper .menu, .swiper + .menu) .swiper-pagination-bullet {
	width: 10px;
	height: auto;
	aspect-ratio: 1;
	background: var(--color-GrayN);
    opacity: 1;
}
:is(.swiper .menu, .swiper + .menu) .swiper-pagination-bullet-active {
	background: var(--color-Brown);
}
:is(.swiper .menu, .swiper + .menu) .swiper-button-next,
:is(.swiper .menu, .swiper + .menu) .swiper-button-prev {
	width: auto;
	height: auto;
    color: var(--color-Red);
}
:is(.swiper .menu, .swiper + .menu) .swiper-button-next:after,
:is(.swiper .menu, .swiper + .menu) .swiper-button-prev:after {
    font-size: 1em;
    font-weight: bold;
}
:is(.swiper .menu.white, .swiper + .menu.white) .swiper-pagination-bullet {
	background: #fff;
    opacity: .5;
}
:is(.swiper .menu.white, .swiper + .menu.white) .swiper-pagination-bullet-active {
	background: #fff;
    opacity: 1;
}
:is(.swiper .menu.white, .swiper + .menu.white) .swiper-button-next,
:is(.swiper .menu.white, .swiper + .menu.white) .swiper-button-prev {
    color: #fff;
}
/* ------------------------------------------- */
@media screen and (min-width: 769px) {
	.desk-hidden {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.mobile-hidden {
		display: none !important;
	}
}
/* ------------------------------------------- */
.anime.fade {
    transition: opacity .8s cubic-bezier(.4, 0, .6, 1);
    -webkit-transition: opacity .8s cubic-bezier(.4, 0, .6, 1);
    opacity: 0;
}
.anime.fade.active {
    opacity: 1;
}

/* ----------------------------------------------
    header
---------------------------------------------- */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
	/*transition: background ease .3s;*/
}
header .inner {
    height: 80px;
    display: flex;
    gap: 1em;
    align-items: center;
    justify-content: space-between;
}
header .inner .gnav {
    margin: 0 0 0 auto;
}
header .inner .gnav nav {
    display: flex;
    gap: 1.5em;
    align-items: baseline;
}
header .inner .gnav nav ul {
	text-shadow: 0 0 .3em var(--color-Black);
    display: flex;
    gap: 1.5em;
    align-items: center;
}
header .inner .hamburger {
    display: none;
}
@media screen and (min-width: 769px) {
	header.scrolled {
		background: rgb(0 0 0 / 80%);
	}
}
@media screen and (max-width: 768px) {
	header {
		background: rgb(0 0 0 / 70%);
	    position: fixed;
	    top: 0;
	    left: 0;
	    z-index: 9999;
	}
	header .inner {
		height: 60px;
	}
	header .inner .hamburger {
	    height: 60px;
	    border: none;
	    cursor: pointer;
	    display: flex;
        gap: 8px;
	    flex-shrink: 0;
        align-items: center;
	    flex-direction: column;
        justify-content: center;
	}
	header .inner .hamburger .bar {
	    width: 30px;
	    height: 2px;
	    background: #fff;
	    border-radius: 100vmax;
	    display: block;
	    transition: transform 0.3s ease, opacity 0.3s ease;
	}
	header .inner .hamburger.open .bar:nth-child(1) {
	    transform: rotate(45deg) translate(7px, 7px);
	}
	header .inner .hamburger.open .bar:nth-child(2) {
	    opacity: 0;
	}
	header .inner .hamburger.open .bar:nth-child(3) {
	    transform: rotate(-45deg) translate(7px, -7px);
	}
	header .gnav {
	    width: 100%;
	    height: calc(100dvh - 60px);
	    padding: 2em 5% 4em;
	    background: rgb(0 0 0 / 70%);
        backdrop-filter: blur(.5em);
	    position: fixed;
	    top: 60px;
	    left: 0;
	    transform: translateX(100vw);
	    transition: transform 0.3s ease, opacity 0.3s ease;
	}
	header .gnav.open {
	    transform: translateX(0);
	}
	header .inner .gnav nav {
	    align-items: center;
	    flex-direction: column;
	}
	header .inner .gnav nav ul {
	    gap: 1em;
	    flex-direction: column;
	}
}

/* ----------------------------------------------
    pagehead
---------------------------------------------- */
#pagehead {
    height: 500px;
    padding: 2em 0 0;
    background: url(../img/common/header.jpg) center / cover no-repeat;
    display: grid;
    place-items: center;
}
body.facility #pagehead {
    background: url(../img/facility/header.jpg) center / cover no-repeat;
}
body.room #pagehead {
    background: url(../img/room/header.jpg) center / cover no-repeat;
}
body.access #pagehead {
    background: url(../img/access/header.jpg) center bottom / cover no-repeat;
}
body.amenities #pagehead {
    background: url(../img/amenities/header.jpg) center / cover no-repeat;
}
body.voice #pagehead {
    background: url(../img/voice/header.jpg) center / cover no-repeat;
}
body.amenities #pagehead {
    background: url(../img/amenities/img02.jpg) center top / cover no-repeat;
}
body.service #pagehead {
    background: url(../img/facility/header.jpg) center / cover no-repeat;
}
body.parking #pagehead {
    background: url(../img/parking/header.jpg) center / cover no-repeat;
}
#pagehead::after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color-Black);
    mix-blend-mode: multiply;
    opacity: .3;
    position: absolute;
    top: 0;
    left: 0;
}
#pagehead h2 {
	text-shadow: 0 0 .3em var(--color-Black);
    display: grid;
    z-index: 1;
}
#pagehead h2 .en {
    letter-spacing: .1em;
}
#pagehead.none {
    background: var(--color-GrayL);
}
#pagehead.none::after {
	display: none;
}
#pagehead.none h2 span {
    color: var(--color-Black);
    text-shadow: none;
}
@media screen and (min-width: 769px) {
	:has(#pagehead.none) header:not(.scrolled) .inner {
	    color: var(--color-Black);
	}
	:has(#pagehead.none) header:not(.scrolled) .inner .logo {
	    filter: grayscale(1) brightness(.5);
	}
	:has(#pagehead.none) header:not(.scrolled) .inner .gnav nav ul {
	    text-shadow: none;
	}
}
@media screen and (max-width: 768px) {
	#pagehead {
	    height: 300px;
	    padding: 60px 0 0;
	}
}

/* ----------------------------------------------
    breadcrumb
---------------------------------------------- */
#breadcrumb nav ol {
    padding-top: .5em;
    display: flex;
    gap: 0 1em;
    flex-wrap: wrap;
    align-items: center;
}
#breadcrumb nav ol li {
    display: flex;
    gap: 0 1em;
    align-items: center;
}
#breadcrumb nav ol li:not(:last-child)::after {
	content: "｜";
	display: block;
}
@media screen and (max-width: 768px) {
}

/* ----------------------------------------------
    contents
---------------------------------------------- */
#contents {
    display: flex;
    gap: 3em;
}
#contents:has(aside) #main {
    width: 100%;
}
#contents aside {
    width: 360px;
    flex-shrink: 0;
}
#contents aside .inner h3 {
    margin: 0 0 .5em;
    padding: 0 .5em .3em;
    border-left: .5em solid var(--color-Navy);
    border-bottom: 1px solid var(--color-Navy);
}
#contents aside .inner ul li {
    border-bottom: 1px dashed var(--color-GrayN);
}
#contents aside .inner ul li a {
    padding: .5em;
    line-height: 1.4;
    display: block;
}
@media screen and (max-width: 768px) {
	#contents {
	    flex-direction: column;
	}
	#contents aside {
	    width: 100%;
	}
}

/* ----------------------------------------------
    pager
---------------------------------------------- */
#pager ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
#pager ul li a {
    padding: .2em 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}
#pager ul li.act a {
	opacity: .3;
    pointer-events: none;
}
@media screen and (max-width: 768px) {
}

/* ----------------------------------------------
    bottom
---------------------------------------------- */
.bottom .inner {
    padding: 2em 0 3em;
    border-top: 1px solid var(--color-Red);
    border-bottom: 1px solid var(--color-Red);
    display: grid;
    gap: .5em;
}
.bottom .inner .box {
	margin: 1em 0 0;
    display: flex;
    gap: 1em 3em;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.bottom .inner .box .btn02 {
    width: 100%;
    max-width: 300px;
}
@media screen and (max-width: 768px) {
	.bottom .inner h2 {
	    line-height: 1.6;
	}
}

/* ----------------------------------------------
    footer
---------------------------------------------- */
footer .fixed {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9998;
}
footer .fixed a {
    padding: 1em .5em;
    display: grid;
    gap: .5em;
    place-items: center;
}
footer .fixed a span {
	letter-spacing: .1em;
    writing-mode: vertical-rl;
}
footer .inner .info {
    display: flex;
    gap: 2em 1em;
    justify-content: space-between;
}
footer .inner .info .social-links {
	margin: .5em 0 0;
    display: flex;
    gap: .5em;
    align-items: center;
}
footer .inner .info .fnav nav dl {
    display: flex;
    gap: 1em 2em;
}
footer .inner .copy {
    padding: 0 0 3em;
}
@media screen and (max-width: 768px) {
	footer .fixed {
	    width: 100%;
	    display: grid;
	    grid-template-columns: 1fr 1fr;
	    top: auto;
	    left: 0;
	    right: auto;
	    bottom: 0;
	    transform: translateY(0);
	}
	footer .fixed a {
		padding: .5em;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	}
	footer .fixed a span {
	    writing-mode: initial;
	}
	footer .inner .info {
	    flex-direction: column;
	}
	footer .inner .info .address {
	    text-align: center;
	    display: grid;
	    place-items: center;
	    justify-content: center;
	}
	footer .inner .info .fnav nav dl {
	    border-top: 1px solid var(--color-GrayN);
		display: grid;
	    gap: 0;
	    grid-template-columns: repeat(1, 1fr);
	}
	footer .inner .info .fnav nav dl div {
	    border-bottom: 1px solid var(--color-GrayN);
	    display: flex;
	    gap: 0 1em;
	    flex-wrap: wrap;
	}
	footer .inner .info .fnav nav dl div dt {
	    width: 100%;
	}
	footer .inner .info .fnav nav dl div:has(dd) dt {
	    border-bottom: 1px solid var(--color-GrayN);
	}
	footer .inner .info .fnav nav dl div dt:not(:has(a)),
	footer .inner .info .fnav nav dl div a {
	    padding: .5em 0;
	    display: block;
	}
}

/* ----------------------------------------------
    home
---------------------------------------------- */
body.home .sec01 .inner .text {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
body.home .sec01 .inner .swiper.mv::after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color-Black);
    opacity: .2;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
body.home .sec01 .inner .swiper.mv img {
    width: 100%;
    height: 770px;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
	body.home .sec01 .inner .swiper.mv img {
	    height: 500px;
	}
}
/* ------------------------------------------- */
body.home .sec02 .renewal {
    padding: .5em 5%;
}
body.home .sec02 .inner {
    padding: 2em 0;
}
body.home .sec02 .inner h2 {
    display: flex;
    gap: 4em;
    align-items: center;
    justify-content: center;
}
body.home .sec02 .inner h2::before,
body.home .sec02 .inner h2::after {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--color-Brown);
    display: block;
}
body.home .sec02 .inner h2 span {
    padding: 0 2em;
    border-radius: 100vmax;
    flex-shrink: 0;
}
body.home .sec02 .inner form {
    display: flex;
    gap: 1em;
    align-items: center;
    justify-content: center;
}
body.home .sec02 .inner form * {
    display: flex;
    align-items: center;
}
body.home .sec02 .inner form dl,
body.home .sec02 .inner form dl dd {
    gap: .3em;
}
body.home .sec02 .inner form .inbox_489ban {
    gap: 1em;
}
body.home .sec02 .inner form :is(label, span, button) {
    font-size: 1.6rem;
}
body.home .sec02 .inner form select {
	width: fit-content;
	appearance: auto;
	background: #fff;
    border: 1px solid;
}
body.home .sec02 .inner form label:has(input[type="checkbox"]),
body.home .sec02 .inner form .stay_489ban dt,
body.home .sec02 .inner form .room_489ban dt,
body.home .sec02 .inner form .person_489ban dt {
    display: none;
}
body.home .sec02 .inner form button {
    height: 40px;
    padding: 0 1.5em;
    color: var(--color-GrayL);
    background: var(--color-Navy);
    display: grid;
    place-items: center;
}
@media screen and (max-width: 768px) {
	body.home .sec02 .renewal {
	    padding: 1em 5%;
	    line-height: 1.4;
	}
	body.home .sec02 .inner h2 {
	    gap: 1em;
	}
	body.home .sec02 .inner form {
		gap: .5em;
	    flex-wrap: wrap;
	    justify-content: flex-end;
	}
}
/* ------------------------------------------- */
body.home .sec03::before,
body.home .sec03::after {
	content: "";
	width: 40%;
    position: absolute;
    z-index: 0;
}
body.home .sec03::before {
    max-width: 210px;
    aspect-ratio: 208 / 114;
    background: url(../img/common/curve.svg) center / cover no-repeat;
    opacity: .3;
    top: 4em;
    right: 5%;
}
body.home .sec03::after {
    max-width: 160px;
    aspect-ratio: 161 / 160;
    background: url(../img/common/block.svg) center / cover no-repeat;
    opacity: .2;
    left: 5%;
    bottom: 0;
}
body.home .sec03 .inner {
    padding: 8em 0;
}
body.home .sec03 .inner ul {
    max-width: 840px;
    display: grid;
    gap: 1em;
    grid-template-columns: repeat(3, 1fr);
}
body.home .sec03 .inner ul li {
    padding: 1em 0;
    border: 1px solid;
    line-height: 1.4;
    letter-spacing: 0;
    display: grid;
    place-items: center;
}
@media screen and (max-width: 768px) {
	body.home .sec03 .inner {
	    padding: 6em 0;
	}
	body.home .sec03::before,
	body.home .sec03::after {
		opacity: .1;
	}
	body.home .sec03::before {
	    top: 2.5em;
	}
	body.home .sec03 .inner ul {
	    grid-template-columns: repeat(1, 1fr);
	}
	body.home .sec03 .inner ul li {
	    min-height: 5em;
	}
}
/* ------------------------------------------- */
body.home .sec04 .inner ul {
    border-top: 1px solid var(--color-GrayN);
}
body.home .sec04 .inner ul li {
    border-bottom: 1px solid var(--color-GrayN);
}
body.home .sec04 .inner ul li a {
    padding: 1em 0;
    display: flex;
    gap: .5em 2em;
    align-items: center;
}
body.home .sec04 .inner ul li a .time {
    flex-shrink: 0;
}
body.home .sec04 .inner ul li a .cate {
    width: 90px;
    flex-shrink: 0;
}
body.home .sec04 .inner ul li a .title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media screen and (max-width: 768px) {
	body.home .sec04 .inner ul li a {
	    flex-wrap: wrap;
	}
}
/* ------------------------------------------- */
body.home .sec05 .inner .box {
    display: grid;
    gap: 10em;
}
body.home .sec05 .inner .box .item .text {
    max-width: 480px;
    padding: 3em;
    background: rgb(255 255 255 / 85%);
    display: grid;
    gap: 1em;
    position: absolute;
    right: 0;
    bottom: -3em;
}
body.home .sec05 .inner .box .item:nth-child(odd) .text {
    left: 0;
    right: auto;
}
body.home .sec05 .inner .box .item .text .label {
    width: fit-content;
    padding: 0 .5em;
    border: 1px solid;
    display: flex;
    gap: .5em;
    align-items: center;
}
body.home .sec05 .inner .box .item .text .more a {
    margin: 2em 0 0;
    display: flex;
    gap: 1em;
    width: fit-content;
    align-items: center;
}
body.home .sec05 .inner .box .item .img {
    width: 80%;
}
body.home .sec05 .inner .box .item:nth-child(odd) .img {
    margin: 0 0 0 auto;
}
body.home .sec05 .inner .box .item .img h3 {
    padding: 1em .2em;
    box-shadow: .2em .2em .2em rgb(99 99 99 / 20%);
    writing-mode: vertical-rl;
    letter-spacing: .2em;
    position: absolute;
    top: -1em;
    left: 5%;
}
body.home .sec05 .inner .box .item:nth-child(odd) .img h3 {
    left: auto;
    right: 5%;
}
body.home .sec05 .inner .box .item .img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
body.home .sec05 .inner .box .item:nth-child(odd) .img img {
	border-radius: .6em 0 0 .6em;
    overflow: hidden;
}
body.home .sec05 .inner .box .item:nth-child(even) .img img {
	border-radius: 0 .6em .6em 0;
    overflow: hidden;
}
@media screen and (max-width: 768px) {
	body.home .sec05 .inner .box {
	    gap: 4em;
	}
	body.home .sec05 .inner .box .item {
	    display: flex;
	    flex-direction: column-reverse;
	}
	body.home .sec05 .inner .box .item .img {
	    width: 90%;
	}
	body.home .sec05 .inner .box .item .img h3 {
		letter-spacing: .1em;
	    top: -2em;
	}
	body.home .sec05 .inner .box .item .img img {
	    height: 200px;
	}
	body.home .sec05 .inner .box .item .text {
	    width: 90%;
	    margin: -1em 0 0;
	    padding: 1.5em;
	    position: relative;
	    bottom: auto;
	    top: -.5em;
	}
	body.home .sec05 .inner .box .item:nth-child(even) .text {
	    margin-left: auto;
	}
	body.home .sec05 .inner .box .item .text .more a {
	    margin: 0;
	}
}
/* ------------------------------------------- */
body.home .sec06::before {
    content: "";
    width: 50%;
    max-width: 260px;
    aspect-ratio: 260 / 130;
    background: url(../img/common/flash.svg) center / cover no-repeat;
    opacity: .1;
    position: absolute;
    top: -2.5em;
    right: 5%;
    z-index: 0;
}
body.home .sec06 .inner .box .block {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
body.home .sec06 .inner .box .block::after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color-Black);
    opacity: .2;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
body.home .sec06 .inner .box .block .text {
    width: 100%;
    height: 100%;
    display: grid;
    gap: .5em;
    place-items: center;
    align-content: center;
    position: absolute;
    top: 0;
    left: 0;
}
body.home .sec06 .inner .box .block .text h3 {
    text-shadow: 0 0 .3em var(--color-Black);
}
body.home .sec06 .inner .box .block .text p {
    padding: 0 .5em;
    background: rgb(0 0 0 / 30%);
}
body.home .sec06 .inner .box .block .img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
	body.home .sec06 .inner .text01 p {
	    text-align: left;
	}
	body.home .sec06 .inner .box .block .text p {
	    padding: .5em 1em;
	    line-height: 1.4;
	}
	body.home .sec06 .inner .box .block .img img {
	    height: 260px;
	}
	body.home .sec06 .inner .box .block + p {
	    margin: 0 0 1em;
	    text-align: left;
	}
	body.home .sec06 .inner .box  .btn01.center a {
	    margin: 0 0 0 auto;
	}
}
/* ------------------------------------------- */
body.home .sec07::before {
    content: "";
    width: 50%;
    max-width: 235px;
    aspect-ratio: 235 / 175;
    background: url(../img/common/flower.svg) center / cover no-repeat;
    opacity: .3;
    position: absolute;
    top: 6em;
    left: 5%;
    z-index: 0;
}
body.home .sec07 .inner .box {
    display: grid;
    gap: 2em 4em;
    grid-template-columns: 1fr 1fr;
}
body.home .sec07 .inner .box .item {
    display: flex;
    gap: 1em;
    flex-direction: column;
}
body.home .sec07 .inner .box .item .block {
	border-radius: .6em;
    overflow: hidden;
}
body.home .sec07 .inner .box .item .block::after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color-Black);
    opacity: .7;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
body.home .sec07 .inner .box .item .block .text {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    align-content: center;
    position: absolute;
}
body.home .sec07 .inner .box .item .block .text h3 {
    text-shadow: 0 0 .2em var(--color-Black), 0 0 .2em var(--color-Black);
    line-height: 1.2;
}
body.home .sec07 .inner .box .item .block .text .price {
    margin: 1em 0 0;
    padding: 0 1em;
}
body.home .sec07 .inner .box .item .block .img img {
    aspect-ratio: 460 / 310;
    object-fit: cover;
}
body.home .sec07 .inner .box .item .more {
    margin: auto 0 0;
}
body.home .sec07 .inner .box .item .more a {
    padding: 1em;
    border: 1px solid;
    display: grid;
    place-items: center;
}
@media screen and (max-width: 768px) {
	body.home .sec07::before {
	    top: -1em;
	}
	body.home .sec07 .inner .box {
	    grid-template-columns: 1fr;
	}
}
/* ------------------------------------------- */
body.home .sec08 .inner .box .item .block {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 0 0 5%;
    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 20%, rgba(245, 246, 244, 1) 20%,
    								 rgba(245, 246, 244, 1) 80%, rgba(255, 255, 255, 1) 80%);
    display: flex;
    gap: 2em 4em;
    justify-content: center;
}
body.home .sec08 .inner .box .item .block h3 {
    writing-mode: vertical-rl;
    display: flex;
    flex-direction: column-reverse;
}
body.home .sec08 .inner .box .item .block h3 .jp {
    letter-spacing: .3em;
}
body.home .sec08 .inner .box .item .block .img img {
    aspect-ratio: 870 / 600;
    object-fit: cover;
}
body.home .sec08 .inner .box .item .text {
    display: grid;
    gap: 2em;
    grid-template-columns: 2fr 1fr;
}
body.home .sec08 .inner .box .item .text .left {
    border-right: 1px solid var(--color-GrayB);
    display: grid;
    gap: .5em;
    align-content: flex-start;
}
body.home .sec08 .inner .box .item .text .right ul {
    padding: 0 0 0 1em;
    display: grid;
    gap: 1em;
    align-content: flex-start;
}
body.home .sec08 .inner .box .item .text .right ul li {
    display: flex;
    gap: .5em;
    align-items: flex-start;
}
body.home .sec08 .inner .box .item .text .right ul li::before {
    content: "";
    width: .4em;
    aspect-ratio: 1;
    margin: .85em 0 0;
    background: var(--color-GrayB);
    border-radius: 100vmax;
    display: block;
    flex-shrink: 0;
}
@media screen and (max-width: 768px) {
	body.home .sec08 .inner .box .item .block {
	    gap: 2em 1em;
	}
	body.home .sec08 .inner .box .item .text {
		gap: 1.5em;
	    grid-template-columns: 1fr;
	}
	body.home .sec08 .inner .box .item .text .left {
	    padding: 0 0 1.5em;
	    border-right: none;
	    border-bottom: 1px solid var(--color-GrayB);
	}
	body.home .sec08 .inner .box .item .text .right ul {
	    padding: 0;
	    gap: 0;
	}
}
/* ------------------------------------------- */
body.home .sec09::before,
body.home .sec09::after {
	content: "";
	width: 370px;
	aspect-ratio: 370 / 230;
    background: url(../img/common/banboo.svg) top -13em center / 370px no-repeat;
    opacity: .2;
    position: absolute;
    top: 0;
    z-index: 0;
}
body.home .sec09::before {
    left: -4em;
}
body.home .sec09::after {
    right: -4em;
}
body.home .sec09 .inner .img01 {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
body.home .sec09 .inner .img01 h3 {
    width: 100%;
    height: 100%;
    text-shadow: 0 0 .3em var(--color-Black);
    display: grid;
    place-items: center;
    position: absolute;
}
body.home .sec09 .inner .img01 .img::after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color-Black);
    opacity: .2;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
body.home .sec09 .inner .img01 .img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}
body.home .sec09 .inner .box {
    display: grid;
    gap: 2em 4em;
    grid-template-columns: 1fr 1fr;
}
body.home .sec09 .inner .box .item {
    padding: 2em 4em 3em;
    border: 1px solid var(--color-Red);
    display: flex;
    gap: 1em;
    align-content: flex-start;
    flex-direction: column;
}
body.home .sec09 .inner .box .item p {
    word-break: auto-phrase;
}
body.home .sec09 .inner .box .item p.text-red {
    margin: auto 0 0;
}
@media screen and (max-width: 768px) {
	body.home .sec09::before,
	body.home .sec09::after {
	    width: 180px;
	    aspect-ratio: 370 / 430;
	    background-position: top -5em center;
	    background-size: 180px;
	}
	body.home .sec09::after {
	    right: -6em;
	}
	body.home .sec09 .inner .img01 .img img {
	    height: 360px;
	}
	body.home .sec09 .inner .text01 {
	    text-align: left;
	}
	body.home .sec09 .inner .box {
	    grid-template-columns: 1fr;
	}
	body.home .sec09 .inner .box .item {
	    padding: 1em 2em 2em;
	}
}
/* ------------------------------------------- */
body.home .sec10 .inner .swiper.voice .swiper-slide {
    padding: 3em;
}
body.home .sec10 .inner .swiper.voice .swiper-slide .review {
    width: fit-content;
    margin: 0 0 0 auto;
}
body.home .sec10 .inner .swiper.voice .swiper-slide .review .star {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
body.home .sec10 .inner .img {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    display: flex;
    gap: 2em 6em;
    align-items: flex-start;
    justify-content: center;
}
body.home .sec10 .inner .img img {
	object-fit: cover;
	border-radius: .6em;
    overflow: hidden;
}
body.home .sec10 .inner .img01 {
    margin: 4em 0 0;
}
body.home .sec10 .inner .img02 {
    margin: auto 0 0;
}
body.home .sec10 .inner .img03 {
    margin: 0 0 4em;
}
body.home .sec10 .inner .img01 img {
    aspect-ratio: 330 / 330;
}
body.home .sec10 .inner .img02 img {
    aspect-ratio: 350 / 410;
}
body.home .sec10 .inner .img03 img {
    aspect-ratio: 480 / 480;
}
@media screen and (max-width: 768px) {
	body.home .sec10 .inner .swiper.voice .swiper-slide {
	    padding: 2em;
	}
	body.home .sec10 .inner .img {
	    gap: 1em;
    }
}
/* ------------------------------------------- */
body.home .sec11 .inner .map {
    width: 100vw;
    height: 500px;
    margin: 0 calc(50% - 50vw) 3em;
}
body.home .sec11 .inner .map iframe {
    height: 100%;
}
body.home .sec11 .inner dl {
    display: flex;
    gap: 1em 2em;
    justify-content: space-between;
}
body.home .sec11 .inner dl div dt {
    margin: 0 0 .5em;
    display: flex;
    gap: .5em;
    align-items: center;
}
body.home .sec11 .inner ul {
	padding: 2em 0 0 1em;
    text-indent: -1em;
    border-top: 1px solid var(--color-GrayN);
}
@media screen and (max-width: 768px) {
	body.home .sec11 .inner .map {
	    height: 300px;
	}
	body.home .sec11 .inner dl {
	    flex-direction: column;
	}
}
/* ------------------------------------------- */
body.home .sec12 .inner .box01 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
body.home .sec12 .inner .box01 .text {
    padding: 3em 2em;
}
body.home .sec12 .inner .box01 .img {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
body.home .sec12 .inner .box01 .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*body.home .sec12 .inner ul {
    display: grid;
    gap: 2px; 
    grid-template-columns: repeat(4, 1fr);
}
body.home .sec12 .inner ul li a {
    display: block;
    overflow: hidden;
}
body.home .sec12 .inner ul li a:hover {
    opacity: 1;
}
body.home .sec12 .inner ul li a h3 {
    width: 100%;
    height: 100%;
    text-shadow: 0 0 .3em var(--color-Black);
    display: grid;
    place-items: center;
    position: absolute;
}
body.home .sec12 .inner ul li a .img {
    display: block;
    overflow: hidden;
}
body.home .sec12 .inner ul li a .img::after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color-Black);
    opacity: .2;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
body.home .sec12 .inner ul li a .img img {
    aspect-ratio: 1;
    object-fit: cover;
    transition: scale ease .6s;
}
body.home .sec12 .inner ul li a:hover .img img {
    scale: 1.1;
}*/
@media screen and (max-width: 768px) {
	body.home .sec12 .inner .box01 {
	    grid-template-columns: 1fr;
	}
	body.home .sec12 .inner .box01 .img img {
	    height: auto;
	    aspect-ratio: 3 / 2;
	}
	/*body.home .sec12 .inner ul {
	    grid-template-columns: repeat(2, 1fr);
	}
	body.home .sec13 .inner ul {
	    grid-template-columns: repeat(2, 1fr);
	}*/
}
/* ------------------------------------------- */
body.home .sec13 .inner ul {
    max-width: 640px;
    display: grid;
    gap: 1em;
    grid-template-columns: repeat(3, 1fr);
}
body.home .sec13 .inner ul li {
    padding: 2.5em 0 1.5em;
    border: 1px solid;
    border-radius: 1em;
    letter-spacing: 0;
    display: flex;
    gap: 1.5em;
    flex-direction: column;
    justify-content: space-between;
}
body.home .sec13 .inner ul li i {
    margin: auto;
    justify-content: center;
}
@media screen and (max-width: 768px) {
	body.home .sec13 .inner ul {
	    gap: .5em;
	    grid-template-columns: repeat(2, 1fr);
	}
	body.home .sec13 .inner ul li {
	    padding: 1em 0 .5em;
	    gap: .5em;
	}
}

/* ----------------------------------------------
    news
---------------------------------------------- */
body.news .sec01 .inner .list {
    border-top: 1px solid var(--color-GrayN);
}
body.news .sec01 .inner .list li {
    border-bottom: 1px solid var(--color-GrayN);
}
body.news .sec01 .inner .list li a {
    padding: 1em 0;
    display: flex;
    gap: .5em 2em;
    align-items: center;
}
body.news .sec01 .inner .list li a .title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
body.news .sec01 .inner .deta {
    display: flex;
    gap: 1em;
    align-items: center;
}
body.news .sec01 .inner .time {
    flex-shrink: 0;
}
body.news .sec01 .inner .cate {
    width: 90px;
    flex-shrink: 0;
}
body.news .sec01 .inner .box {
    display: grid;
    gap: 1em;
}
@media screen and (max-width: 768px) {
	body.news .sec01 .inner .list li a {
	    flex-wrap: wrap;
	}
	body.news .sec01 .inner .list li a .title {
	    overflow: initial;
	    text-overflow: initial;
	    white-space: initial;
	}
}

/* ----------------------------------------------
    room
---------------------------------------------- */
body.room .sec01 .inner::before,
body.room .sec01 .inner::after {
    content: "";
    position: absolute;
    z-index: 0;
    opacity: .2;
}
body.room .sec01 .inner::before {
    width: 40%;
	max-width: 160px;
    aspect-ratio: 161 / 160;
    background: url( "../img/common/block.svg") center / cover no-repeat;
    top: -2em;
    right: 0;
}
body.room .sec01 .inner::after {
    width: 50%;
    max-width: 260px;
    aspect-ratio: 260 / 130;
    background: url(../img/common/flash.svg) center / cover no-repeat;
    left: 0;
    bottom: -10em;
}
@media screen and (max-width: 768px) {
	body.room .sec01 .inner::before,
	body.room .sec01 .inner::after {
        opacity: .1;
    }
    body.room .sec01 .inner p {
	    text-align: left;
	}
}
@media screen and (max-width: 768px) {
}
/* ------------------------------------------- */
body.room .sec02 .inner .tabs {
    padding: 0 2em;
    border-bottom: 1px solid var(--color-GrayN);
    display: flex;
    gap: 1em;
    justify-content: center;
}
body.room .sec02 .inner .tabs button {
    padding: 0 1.5em 1em;
    position: relative;
}
body.room .sec02 .inner .tabs button[aria-selected="true"] {
    color: var(--color-Red);
}
body.room .sec02 .inner .tabs button[aria-selected="true"]::after {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--color-Red);
    position: absolute;
    left: 0;
    bottom: -1px;
}
body.room .sec02 .inner .swiper.room .img img {
    aspect-ratio: 1200 / 620;
    object-fit: cover;
}
body.room .sec02 .inner .swiper.room .menu {
    position: absolute;
    left: 0;
    bottom: 1em;
}
body.room .sec02 .inner .text {
	display: flex;
    gap: 1em 4em;
}
body.room .sec02 .inner .text .left {
    min-width: 200px;
    flex-shrink: 0;
}
body.room .sec02 .inner .text .left h4 {
    line-height: 1.4;
    display: grid;
}
body.room .sec02 .inner .text .left h4 .jp {
    text-indent: -.1em;
}
@media screen and (max-width: 768px) {
	body.room .sec02 .inner .tabs {
		padding: 0;
        border-bottom: none;
        font-size: 1.4rem;
        display: grid;
        gap: 0 .5em;
        grid-template-columns: 1fr 1fr;
    }
    body.room .sec02 .inner .tabs button {
        padding: 1em .5em;
        line-height: 1.4;
        border-bottom: 1px solid var(--color-GrayN);
        gap: .2em;
    }
	body.room .sec02 .inner .text {
	    flex-direction: column;
	}
	body.room .sec02 .inner .text .left {
	    min-width: 100%;
	}
}
/* ------------------------------------------- */
body.room .sec03 .inner dl {
    display: grid;
    gap: 0 2em;
    grid-template-columns: 1fr 1fr;
}
body.room .sec03 .inner dl div {
    padding: 2em 0;
    border-top: 1px solid var(--color-GrayN);
    letter-spacing: 0;
    display: flex;
}
body.room .sec03 .inner dl div dt {
    width: 9em;
    flex-shrink: 0;
}
body.room .sec03 .inner ul {
    padding: 0 0 0 2.75em;
    text-indent: -2.75em;
}
@media screen and (max-width: 768px) {
	body.room .sec03 .inner dl {
	    grid-template-columns: 1fr;
	}
	body.room .sec03 .inner dl div {
	    padding: 1em 0;
	    flex-direction: column;
	}
}
/* ------------------------------------------- */
body.room .sec04 .inner .box ul {
    max-width: 740px;
    padding: 3em 0;
    display: grid;
    gap: .5em;
    grid-template-columns: repeat(2, 1fr);
}
body.room .sec04 .inner .box ul li {
    display: flex;
    gap: .5em;
    align-items: flex-start;
}
body.room .sec04 .inner .box ul li::before {
    content: "";
    width: .4em;
    aspect-ratio: 1;
    margin: .85em 0 0;
    background: var(--color-GrayB);
    border-radius: 100vmax;
    display: block;
    flex-shrink: 0;
}
body.room .sec04 .inner .link {
    display: flex;
    gap: 1em 2em;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
body.room .sec04 .inner .link .btn03 {
    width: 100%;
    max-width: 300px;
}
@media screen and (max-width: 768px) {
	body.room .sec04 .inner .box ul {
	    padding: 2em 0;
	    gap: 0;
	    grid-template-columns: repeat(1, 1fr);
	}
}


/* ----------------------------------------------
    facility
---------------------------------------------- */
body.facility .sec01 .inner .box {
    display: grid;
    gap: 1.5em;
}
body.facility .sec01 .inner .box .item {
    padding: 1.5em 1.5em 1.5em 5%;
    border: 1px solid;
}
body.facility .sec01 .inner .box .item h3 {
    width: 2.5em;
    padding: .5em 0;
    line-height: 1.5;
    display: grid;
    position: absolute;
    top: 50%;
    left: -1.3em;
    transform: translateY(-50%);
}
body.facility .sec01 .inner .box .item h3 span {
    line-height: 2;
    writing-mode: vertical-rl;
}
body.facility .sec01 .inner .box .item > ul {
    display: grid;
    gap: 1em;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
}
body.facility .sec01 .inner .box .item > ul > li:not(:has(a)),
body.facility .sec01 .inner .box .item > ul > li a {
	letter-spacing: 0;
    display: grid;
    gap: 0 1em;
    align-items: center;
    grid-template-columns: 1fr 1fr;
}
body.facility .sec01 .inner .box .item > ul > li.double {
    grid-column: span 2;
    display: block;
}
body.facility .sec01 .inner .box .item > ul > li .img {
    aspect-ratio: 200 / 120;
    background: var(--color-GrayN);
}
body.facility .sec01 .inner .box .item > ul > li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
	body.facility .sec01 .inner .box .item {
	    padding-left: 10%;
	}
	body.facility .sec01 .inner .box .item > ul {
	    grid-template-columns: repeat(1, 1fr);
	}
	body.facility .sec01 .inner .box .item > ul > li:not(:has(a)),
	body.facility .sec01 .inner .box .item > ul > li a {
	    grid-template-columns: 1fr 1.5fr;
	}
	body.facility .sec01 .inner .box .item > ul > li.double {
	    grid-template-columns: 1fr;
	}
}


body.facility .sec02 h4 {
	margin-bottom: 1em;
	font-size: 2.8rem;
}
body.facility .sec02 .swiper.fac {
	margin-bottom: 4em;
}
body.facility .sec02 .swiper.fac .swiper-slide {
	opacity: 0.5;
}
body.facility .sec02 .swiper.fac .swiper-slide.swiper-slide-active {
	opacity: 1;
}
body.facility .sec02 .swiper.fac .swiper-slide img {
    border-radius: .5em;
    overflow: hidden;
}
body.facility .sec02 .type {
	display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1em;
}
body.facility .sec02 .type li {
	background: #e6e6e6;
	padding: .2em 0;
}
body.facility .sec02 .detail {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #80786e;
	border-bottom: 1px solid #80786e;
	margin-bottom: 3em;
	padding: 1em 0;
	gap: 0 2.5em;
}
body.facility .sec02 .detail li {
	position: relative;
}
body.facility .sec02 .detail li:before {
	content: "●";
	display: inline-block;
	color: var(--color-GrayB);
	font-size: 14px;
}
body.facility .sec02 .btn_detail {
	width: 180px;
}
body.facility .sec02 .btn_detail a {
    display: grid;
    place-items: center;
	background: #2e2218;
	width: 100%;
    max-width: 180px;
    height: 50px;
	color: #fff;
	position: relative;
}
body.facility .sec02 .btn_detail a:after {
    content: "";
    position: absolute;
    right: 1.5em;
    aspect-ratio: 1;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    width: .5em;
    transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
	body.facility .sec02 h4 {
		font-size: 2.2rem;
	}
	body.facility .sec02 .swiper.fac {
		margin-bottom: 3em;
	}
	body.facility .sec02 .detail {
	    flex-direction: column;
	}
	body.facility .sec02 .detail li:before {
		font-size: 12px;
	}
	body.facility .sec02 .type {
	    gap: .5em;
	    grid-template-columns: repeat(2, 1fr);
	}
}


body.facility .sec03 .inner .lh16 {
	line-height: 1.6;
}
body.facility .sec03 .inner figure img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}
body.facility .sec03 .inner .map {
    width: 100%;
    height: 400px;
    margin: 0 0 3em;
}
body.facility .sec03 .inner .map iframe {
	width: 100%;
    height: 100%;
}
body.facility .sec03 .inner dl {
    display: flex;
    gap: 1em 2em;
    justify-content: space-between;
}
body.facility .sec03 .inner dl div dt {
	border-bottom: 1px solid var(--color-Navy);
    margin: 0 0 .5em;
    display: flex;
    gap: .5em;
    align-items: center;
}
body.facility .sec03 .inner .box01 {
    padding: 2em;
}
body.facility .sec03 .inner ul {
	padding: 2em 0 0 1em;
    text-indent: -1em;
    border-top: 1px solid var(--color-GrayN);
}
@media screen and (max-width: 768px) {
	body.facility .sec03 .inner .map {
	    height: 300px;
		margin: 0 0 2em;
	}
	body.facility .sec03 .inner dl {
	    flex-direction: column;
		gap: 2em 2em;
	}
	body.facility .sec03 .inner p.text-center {
		text-align: left;
	}
}


/* ----------------------------------------------
    access
---------------------------------------------- */
body.access .sec01 .inner .block {
	display: grid;
    gap: 2em;
    align-items: center;
    grid-template-columns: 1.3fr 2fr;
}
body.access .sec02 .inner .map {
    width: 100%;
    height: 400px;
    margin: 0 0 3em;
}
body.access .sec02 .inner .map iframe {
	width: 100%;
    height: 100%;
}
body.access .sec02 .inner dl {
    display: flex;
    gap: 1em 2em;
    justify-content: space-between;
}
body.access .sec02 .inner dl div dt {
	border-bottom: 1px solid var(--color-Navy);
    margin: 0 0 .5em;
    display: flex;
    gap: .5em;
    align-items: center;
}
body.access .sec02 .inner dl + ul {
	padding: 2em 0 0 1em;
    text-indent: -1em;
    border-top: 1px solid var(--color-GrayN);
}
body.access .sec03 .inner .box01 {
    display: grid;
    gap: 2em 1em;
    grid-template-columns: 1fr 1fr;
}
body.access .sec03 .inner .box01 .right dl {
    display: grid;
    gap: 1em;
    align-content: flex-start;
}
body.access .sec03 .inner .box01 .right dl div {
    display: grid;
    gap: 1em;
    grid-template-columns: 1fr 1.55fr;
}
@media screen and (max-width: 768px) {
	body.access .sec01 .inner .block {
	    grid-template-columns: 1fr;
	}
	body.access .sec02 .inner .map {
	    height: 300px;
		margin: 0 0 2em;
	}
	body.access .sec02 .inner dl {
	    flex-direction: column;
		gap: 2em 2em;
	}
	body.access .sec03 .inner .box01 {
	    grid-template-columns: 1fr;
	}
	body.access .sec03 .inner .box01 .right dl div {
	    grid-template-columns: 1fr;
	}
}


/* ----------------------------------------------
    amenities
---------------------------------------------- */
body.amenities .sec01 .inner .photo01 {
    display: flex;
	flex-wrap: wrap;
	margin-bottom: 2em;
}
body.amenities .sec01 .inner .photo01 li {
    width: 33.333333%;
}
body.amenities .sec01 .inner .photo02 {
    display: flex;
	flex-wrap: wrap;
	margin-bottom: 2em;
}
body.amenities .sec01 .inner .photo02 li {
    width: 25%;
}
body.amenities .sec01 .inner .lh16 {
	line-height: 1.6;
}
@media screen and (max-width: 768px) {
	body.amenities .sec01 .inner .photo01 {
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 2em;
	}
	body.amenities .sec01 .inner .photo01 li {
		width: 50%;
	}
	body.amenities .sec01 .inner .photo02 {
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 2em;
	}
	body.amenities .sec01 .inner .photo02 li {
		width: 50%;
	}
}


/* ----------------------------------------------
    voice
---------------------------------------------- */
body.voice .sec02::before {
    content: "";
    width: 100%;
    height: 15em;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
body.voice .sec02 .inner .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
body.voice .sec02 .inner .img.img01 {
    width: 90%;
    position: relative;
    z-index: 1;
    border-radius: 0 .5em .5em 0;
    overflow: hidden;
}
body.voice .sec02 .inner .img.img01 img {
    height: 540px;
    object-position: center 10%;
}
body.voice .sec02 .inner .img.img02 {
    width: 20%;
    max-width: 210px;
    aspect-ratio: 210 / 190;
    position: absolute;
    top: -4em;
    left: 5%;
    z-index: 2;
}
body.voice .sec02 .inner .img.img02 img {
    object-position: 5% bottom;
}
body.voice .sec02 .inner .img.img03 {
    width: 20%;
    max-width: 150px;
    aspect-ratio: 150 / 220;
    border-radius: 0 .5em .5em 0;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 2;
}
body.voice .sec02 .inner .img.img03 img {
    object-position: 5% bottom;
}
body.voice .sec02 .inner .img.img04 {
    width: 20%;
    max-width: 220px;
    aspect-ratio: 220 / 210;
    border-radius: .5em 0 0 .5em;
    overflow: hidden;
    position: absolute;
    top: 10em;
    right: 0;
    z-index: 2;
}
body.voice .sec02 .inner .img.img03 img {
    object-position: 20% bottom;
}
body.voice .sec02 .inner .swiper.voice {
    width: 90%;
    max-width: 1280px;
    margin: -5em 0 3em auto;
    position: relative;
    z-index: 3;
}
body.voice .sec02 .inner .swiper.voice .swiper-slide {
    height: auto;
    padding: 4em 4em 6em;
    background: #fff;
}
body.voice .sec02 .inner .swiper.voice .swiper-slide .star {
    display: flex;
    align-items: center;
}
@media screen and (max-width: 768px) {
	body.voice .sec02 .inner .img.img01 img {
	    height: 240px;
	}
	body.voice .sec02 .inner .img.img03 {
	    top: 6em;
	}
	body.voice .sec02 .inner .img.img04 {
	    top: 4em;
	}
	body.voice .sec02 .inner .swiper.voice .swiper-slide {
	    padding: 2em 2em 4em;
	}
}

/* ----------------------------------------------
    form
---------------------------------------------- */
form > dl {
    display: grid;
    gap: 2em;
}
form > dl > div {
    display: flex;
    gap: 1em 2em;
    align-items: baseline;
}
form > dl > div > dt {
    width: 220px;
    padding: 0 0 0 .5em;
    border-left: 1px solid var(--color-Red);
    letter-spacing: 0;
    display: flex;
    gap: .5em;
    flex-shrink: 0;
    align-items: baseline;
    position: relative;
}
form > dl > div:has(textarea) > dt {
    margin: 0 0 auto;
}
form > dl > div > dt .required {
    padding: 0 .3em;
    line-height: 1.4;
}
form > dl > div > dd {
    width: 100%;
}
form input,
form select,
form textarea {
    width: 100%;
    height: 40px;
    padding: .2em 1em;
    background: var(--color-GrayL);
	border: 1px solid var(--color-GrayN);
    cursor: pointer;
}
form textarea {
    min-height: 180px;
}
form input:focus-visible,
form select:focus-visible,
form textarea:focus-visible {
    outline: none;
    border: 1px solid var(--color-GrayB);
}
form input::placeholder,
form select::placeholder,
form textarea::placeholder {
	color: var(--color-GrayM);
	opacity: .5;
}
form .tel {
    display: flex;
    gap: .5em;
    align-items: center;
}
form .tel input {
    max-width: 90px;
}
form .address dl {
    display: grid;
    gap: 1em;
}
form .address dl > div {
    display: flex;
    gap: .5em 0;
    align-items: center;
}
form .address dl > div dt {
    width: 10em;
    flex-shrink: 0;
}
form .address dl > div dd {
    width: 100%;
}
form .address dl > div dd .zip {
    display: flex;
    gap: .5em;
    align-items: center;
}
form .address dl > div dd .zip input:nth-of-type(1) {
    max-width: 90px;
}
form .address dl > div dd .zip input:nth-of-type(2) {
    max-width: 130px;
}
form .address dl > div dd .zip .search {
    height: 40px;
    margin: 0 0 0 .5em;
    padding: 0 1em;
    color: #fff;
    background: var(--color-Red);
    text-align: center;
    display: grid;
    flex-shrink: 0;
    place-items: center;
}
form .address dl > div dd .select {
    max-width: 180px;
}
form .select {
	display: flex;
    align-items: center;
    position: relative;
}
form .select::after {
    content: "";
    width: .4em;
    aspect-ratio: 1;
    border-right: 1px solid var(--color-Red);
    border-bottom: 1px solid var(--color-Red);
    position: absolute;
    right: 1em;
    transform: rotate(45deg);
    pointer-events: none;
}
form .select select {
    padding-right: 2.5em;
}
form .check,
form .radio {
    display: flex;
    gap: .5em 1em;
    flex-wrap: wrap;
}
form .check li input[type="checkbox"],
form .radio li input[type="radio"] {
	display: none;
}
form .check li label,
form .radio li label {
	display: flex;
	gap: 0 .5em;
    align-items: center;
	cursor: pointer;
}
form .check li label span,
form .radio li label span {
	width: 1.5em;
    aspect-ratio: 1;
    background: var(--color-GrayL);
    border: 1px solid var(--color-GrayN);
    display: grid;
    flex-shrink: 0;
    place-items: center;
    transition: border 0.2s linear;
    -webkit-transition: border 0.2s linear;
	transition: background 0.2s linear;
	-webkit-transition: background 0.2s linear;
}
form .radio li label span {
	border-radius: 100vmax;
}
form .check li label span::before,
form .radio li label span::before {
    content: "";
    width: .5em;
    aspect-ratio: 7 / 10;
    margin: 0 0 .2em;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transition: opacity 0.2s linear;
    -webkit-transition: opacity 0.2s linear;
    opacity: 0;
}
form .radio li label span::before {
    aspect-ratio: 1;
    margin: 0;
    background: #fff;
    border-right: none;
    border-bottom: none;
	border-radius: 100vmax;
    transform: rotate(0deg) translate(0);
    -ms-transform: rotate(0deg) translate(0);
    -webkit-transform: rotate(0deg) translate(0);
    transition: opacity 0.2s linear;
    -webkit-transition: opacity 0.2s linear;
    opacity: 0;
}
form .check li input:checked + label span,
form .radio li input:checked + label span {
	background: var(--color-Red);
	border-color: var(--color-Red);
}
form .check li input:checked + label span::before,
form .radio li input:checked + label span::before {
	opacity: 1.0;
}
form .agree .check {
    width: fit-content;
    margin: 0 auto;
    gap: 1em;
    flex-direction: column;
}
form .submit ul {
    display: grid;
    gap: 1em;
}
form .submit ul li button {
    width: 100%;
    max-width: 360px;
    height: 60px;
    margin: 0 auto;
    background: var(--color-GrayN);
    display: grid;
    place-items: center;
}
form .submit ul li button.next {
    color: #fff;
    background: var(--color-Red);
}
@media screen and (max-width: 768px) {
	form > dl > div {
	    flex-direction: column;
	}
	form > dl > div > dt {
	    width: 100%;
	}
	form .address dl > div {
	    flex-direction: column;
	}
	form .address dl > div dt {
	    width: 100%;
	}
}
/* ------------------------------------------- */
.conf form > dl {
    padding: 0 0 2em;
    border-bottom: 1px solid var(--color-GrayN);
}
.conf form > dl > div {
    padding: 2em 0 0;
    border-top: 1px solid var(--color-GrayN);
}

/* ----------------------------------------------
    amenities
---------------------------------------------- */
body.amenities .sec01 .inner .box01 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
body.amenities .sec01 .inner .box01 .text {
    padding: 0 0 0 5%;
    background: var(--color-GrayL);
    display: flex;
}
body.amenities .sec01 .inner .box01 .text .item {
    width: 100%;
    max-width: 680px;
    margin: 0 0 0 auto;
    padding: 2em;
    display: grid;
    gap: 1em;
    flex-shrink: 0;
    align-content: center;
}
body.amenities .sec01 .inner .box01 .text .item h2 {
    padding: 0 0 0 .3em;
    border-left: .2em solid var(--color-GrayB);
    line-height: 1;
}
body.amenities .sec01 .inner .box01 .img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}
body.amenities .sec02 .inner .box01 {
    display: grid;
    gap: 3em;
}
body.amenities .sec02 .inner .box01 .item {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
body.amenities .sec02 .inner .box01 .item .text {
    padding: 2em;
}
body.amenities .sec02 .inner .box01 .item .text h3 {
    display: grid;
}
body.amenities .sec02 .inner .box01 .item .text h3 .en {
    color: #c8c8c8;
    line-height: 1;
}
body.amenities .sec02 .inner .box01 .item .img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
body.amenities .sec03 .inner .swiper.amenities .swiper-wrapper {
	transition-timing-function: linear !important;
}
body.amenities .sec03 .inner .swiper.amenities .swiper-slide {
    max-width: 300px;
}
body.amenities .sec03 .inner .swiper.amenities .swiper-slide img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
@media screen and (min-width: 769px) {
	body.amenities .sec02 .inner .box01 .item:nth-child(even) .text {
	    order: 1;
	}
	body.amenities .sec02 .inner .box01 .item:nth-child(even) .img {
	    order: 2;
	}
}
@media screen and (max-width: 768px) {
	body.amenities .sec01 .inner .box01 {
	    display: flex;
	    flex-direction: column-reverse;
	}
	body.amenities .sec01 .inner .box01 .img img {
	    height: auto;
	}
	body.amenities .sec01 .inner .box01 .text .item {
	    gap: .5em;
	}
	body.amenities .sec02 .inner .box01 .item {
	    grid-template-columns: 1fr;
	}
	body.amenities .sec02 .inner .box01 .item .img img {
	    height: auto;
	    aspect-ratio: 3 / 2;
	}
	body.amenities .sec02 .inner .box01 .item .text {
	    padding: 2em 0 0;
	}
	body.amenities .sec03 .inner .swiper.amenities .swiper-slide {
	    max-width: 140px;
	}
}

/* ----------------------------------------------
    service
---------------------------------------------- */
body.service .sec01 .inner ul {
    display: grid;
    gap: 2em;
    grid-template-columns: repeat(3, 1fr);
}
body.service .sec01 .inner ul li .img {
    aspect-ratio: 3 / 2.3;
    margin: 0 0 .5em;
    background: var(--color-GrayN);
}
body.service .sec01 .inner ul li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
body.service .sec01 .inner ul li h3 {
    padding: 0 0 .5em;
    border-bottom: 1px solid;
    line-height: 1.5;
}
@media screen and (max-width: 768px) {
	body.service .sec01 .inner ul {
	    grid-template-columns: repeat(1, 1fr);
	}
}

/* ----------------------------------------------
    parking
---------------------------------------------- */
body.parking .sec01 .inner .box01 {
	display: grid;
    gap: 2em;
    grid-template-columns: 1fr 1fr;
}
body.parking .sec01 .inner .box01 .right dl {
    display: grid;
    gap: 1em;
    align-content: flex-start;
}
body.parking .sec01 .inner .box01 .right dl div {
    display: grid;
    gap: 1em;
    grid-template-columns: 1fr 1.55fr;
}
@media screen and (max-width: 768px) {
	body.parking .sec01 .inner .box01,
	body.parking .sec01 .inner .box01 .right dl div {
	    grid-template-columns: 1fr;
	}
	body.parking .sec01 .inner .box01 {
	    gap: 3em;
	}
}


