@charset "UTF-8";

/*
Theme Name: SHE
Author: 
Version: 1.0
*/

:root {
    --header-height: 0px;
}

html {
    font-size: calc(100vw * 16 / 375);
}

@media screen and (min-width: 1500px) {
    html {
        font-size: 16px;
    }
}

@media screen and (min-width: 767.9px) and (max-width: 1500px) {
    html {
        font-size: calc(100vw * 16 / 1500);
    }
}

@media screen and (min-width: 375px) and (max-width: 767.9px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: "hiragino-mincho-pron", "Yu Mincho", sans-serif;
}

a {
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

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


/* Remove default padding */

ul,
ol {
    padding: 0;
}


/* Remove default margin */

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


/* Set core root defaults */

html {
    scroll-behavior: smooth;
}


/* Set core body defaults */

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}


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

ul,
ol {
    list-style: none;
}


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

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

a {
    text-decoration: none;
}


/* Make images easier to work with */

img {
    max-width: 100%;
    display: block;
    width: 100%;
}


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

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


/* Inherit fonts for inputs and buttons */

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


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


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

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

textarea {
    resize: vertical;
}

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

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 12.5rem;
    background-color: #171717;
}

@media screen and (max-width: 767.9px) {
    .header {
        height: 5rem;
    }
}

.header__inner {
    width: 100%;
    max-width: 62.5rem;
    margin-inline: auto;
    padding-bottom: 1.25rem;
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

@media screen and (max-width: 767.9px) {
    .header__inner {
        padding-bottom: 0rem;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
    }
}

.header__logo {
    width: 9.625rem;
    height: 5.0625rem;
    margin-top: -0.625rem;
}

@media screen and (max-width: 767.9px) {
    .header__logo {
        width: 6.25rem;
        height: auto;
        margin-top: 0rem;
    }
}

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

.header__nav-items {
    height: inherit;
    display: flex;
    align-items: center;
    gap: 4.375rem;
}

.header__nav-item {
    height: inherit;
    display: flex;
    align-items: center;
}

.header__nav-link {
    text-align: center;
    color: #fff;
    font-size: 1.0625rem;
    height: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header__nav-link:hover {
    opacity: 1;
}

.header__nav-link span {
    font-size: 0.9375rem;
    color: #cfba72;
    position: relative;
    display: inline-block;
    padding-bottom: 0.25rem;
}

.header__nav-link span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0.0625rem;
    background-color: #cfba72;
    transition: width 0.4s ease;
}

.header__nav-link:hover span::after {
    width: 100%;
}

.header__lang {
    position: absolute;
    top: 1.5625rem;
    right: 1.5625rem;
}

@media screen and (max-width: 767.9px) {
    .header__lang {
        top: 1.875rem;
        right: 4.375rem;
    }
}

.header__lang-link {
    font-size: 0.9375rem;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0.04em;
}

@media screen and (max-width: 767.9px) {
    .header__lang-link {
        font-size: 0.875rem;
    }
}

.header__lang-link::before {
    position: absolute;
    content: "";
    width: 1rem;
    height: 1rem;
    top: 0;
    left: -1.6875rem;
    background-image: url(./images/icon_earth.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

@media screen and (max-width: 767.9px) {
    .header__lang-link::before {
        width: 0.875rem;
        height: 0.875rem;
        left: -1.375rem;
    }
}

.header__lang img {
    width: 1rem;
    height: 1rem;
}

.hamburger {
    position: fixed;
    top: 2.03125rem;
    right: 0.9375rem;
    z-index: 9999;
    width: 1.5625rem;
    height: 1rem;
    cursor: pointer;
}

.hamburger span {
    position: absolute;
    left: 0;
    background-color: #cfba72;
    width: 100%;
    height: 0.125rem;
    display: inline-block;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 0.5rem;
}

.hamburger span:nth-child(3) {
    top: 1rem;
}

.hamburger.is-active span:nth-child(1) {
    top: 0.5rem;
    transform: rotate(-135deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    top: 0.5rem;
    transform: rotate(135deg);
}

.drawer-menu {
    width: 100%;
    height: 100vh;
    background-color: rgba(23, 23, 23, 0.95);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5000;
    display: none;
}

.drawer-menu__inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: inherit;
    flex-direction: column;
}

.drawer-menu__items {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1.5625rem;
}

.drawer-menu__item {
    display: inline-block;
    width: 100%;
}

.drawer-menu__link {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    display: inline-block;
    width: 12.5rem;
    text-align: center;
}

.drawer-menu__link span {
    color: #cfba72;
    font-size: 0.875rem;
}

.drawer-menu__btn.btn {
    margin-top: 0;
    max-width: 11.25rem;
    width: 100%;
}

.drawer-menu__btn-link.btn-link {
    padding: 0.625rem;
    border: none;
}

.drawer-menu__btn-link.drawer-menu__btn-link--line.btn-link {
    margin-top: -0.9375rem;
    background-color: #06c755;
}

.footer {
    background-color: #171717;
    padding-top: 5.9375rem;
    padding-bottom: 2.8125rem;
}

@media screen and (max-width: 767.9px) {
    .footer {
        padding-bottom: 4.375rem;
    }
}

.footer__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.footer__instagram {
    width: max-content;
    margin-inline: auto;
    position: relative;
    z-index: 10;
}

.footer__instagram-icon {
    width: 2.3125rem;
    height: 2.3125rem;
}

.footer__links {
    margin-top: 3.4375rem;
    text-align: center;
}

@media screen and (max-width: 767.9px) {
    .footer__links {
        margin-top: 1.25rem;
    }
}

.footer__link {
    font-size: 1rem;
    color: #fff;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
}

.footer__copyright {
    margin-top: 3.125rem;
    font-size: 0.8125rem;
    color: #7f7f7f;
    text-align: center;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
}

body {
    background-color: #171717;
}

main {
    background-color: #171717;
    position: relative;
    z-index: 1;
}

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

.md-show {
    display: none;
}

@media screen and (max-width: 767.9px) {
    .md-show {
        display: block;
    }
}

.btn {
    margin-top: 2.1875rem;
    width: max-content;
    margin-inline: auto;
}

@media screen and (max-width: 767.9px) {
    .btn {
        margin-top: 1.875rem;
    }
}

.btn-link {
    font-size: 1.125rem;
    color: #fff;
    text-align: center;
    background-color: #ad34af;
    padding: 0.90625rem 4.53125rem;
    border: 0.125rem solid #ad34af;
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease, transform 0.3s ease;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
}

@media screen and (max-width: 767.9px) {
    .btn-link {
        font-size: 1rem;
        padding: 0.625rem 3.125rem;
    }
}

.btn-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    z-index: 1;
    pointer-events: none;
}

.btn-link:hover::after {
    animation: shine 1s ease forwards;
}

.btn-link:hover {
    transform: scale(1.03);
    opacity: 1;
}

@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}

.title {
    text-align: center;
}

.title-ja {
    font-size: 2.5rem;
    color: #fff;
    display: block;
}

@media screen and (max-width: 767.9px) {
    .title-ja {
        font-size: 1.5rem;
    }
}

.title-en {
    font-size: 1.25rem;
    color: #cfb663;
    display: block;
}

@media screen and (max-width: 767.9px) {
    .title-en {
        font-size: 1rem;
    }
}

.slideInBottom {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s;
}

@media screen and (max-width: 767.9px) {
    .slideInBottom {
        opacity: 1;
        transform: translateY(0);
    }
}

.slideInBottom.active {
    opacity: 1;
    transform: translateY(0);
}

.floating__reserve-btn {
    position: fixed;
    bottom: 5rem;
    right: 1.25rem;
    z-index: 999;
    transition: bottom 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    pointer-events: none;
}

@media screen and (max-width: 767.9px) {
    .floating__reserve-btn {
        right: 0.625rem;
    }
}

.floating__reserve-btn.is-visible {
    bottom: 1.25rem;
    opacity: 1;
    pointer-events: auto;
}

@media screen and (max-width: 767.9px) {
    .floating__reserve-btn.is-visible {
        bottom: 0.3125rem;
    }
}

@media screen and (max-width: 767.9px) {
    .floating__reserve-btn-link.btn-link {
        padding: 0.625rem 1.875rem;
    }
}

.page-fv {
    margin-top: 12.5rem;
}

@media screen and (max-width: 767.9px) {
    .page-fv {
        margin-top: 5rem;
    }
}

.page-fv__title {
    text-align: center;
    background-color: #000;
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
}

@media screen and (max-width: 767.9px) {
    .page-fv__title {
        padding-top: 3.125rem;
        padding-bottom: 3.125rem;
    }
}

.page-fv__title-ja {
    font-size: 2.5rem;
    color: #fff;
    display: block;
}

@media screen and (max-width: 767.9px) {
    .page-fv__title-ja {
        font-size: 1.625rem;
    }
}

.page-fv__title-en {
    font-size: 1.25rem;
    color: #cfb663;
    display: block;
}

@media screen and (max-width: 767.9px) {
    .page-fv__title-en {
        font-size: 1rem;
    }
}

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

.page-title-ja {
    font-size: 1.875rem;
    color: #fff;
    display: block;
}

@media screen and (max-width: 767.9px) {
    .page-title-ja {
        font-size: 1.5rem;
    }
}

.page-title-en {
    font-size: 1.25rem;
    color: #cfb663;
}

@media screen and (max-width: 767.9px) {
    .page-title-en {
        font-size: 1rem;
    }
}

.link {
    background-color: #171717;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
}

@media screen and (max-width: 767.9px) {
    .link {
        padding-top: 2.1875rem;
        padding-bottom: 2.1875rem;
    }
}

.link__inner {
    max-width: 87.5rem;
    margin-inline: auto;
}

@media screen and (max-width: 767.9px) {
    .link__inner {
        max-width: 37.5rem;
        padding-right: 0.9375rem;
        padding-left: 0.9375rem;
    }
}

.link__items {
    display: grid;
    gap: 0.9375rem;
    grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 767.9px) {
    .link__items {
        grid-template-columns: repeat(1, 1fr);
    }
}

.link__img-wrap {
    position: relative;
}

.link__img {
    aspect-ratio: 456/434;
    object-fit: cover;
    height: auto;
}

@media screen and (max-width: 767.9px) {
    .link__img {
        aspect-ratio: 345/160;
    }
}

.link__caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.link__caption-ja {
    font-size: 2.5rem;
    color: #fff;
    display: block;
    text-shadow: 0 0 1.25rem rgb(0, 0, 0), 0 0 1.25rem rgb(0, 0, 0), 0 0 1.25rem rgb(0, 0, 0), 0 0.3125rem 1.25rem rgb(0, 0, 0), 0.3125rem 0 1.25rem rgb(0, 0, 0), 0 -0.3125rem 1.25rem rgb(0, 0, 0), -0.3125rem 0 1.25rem rgb(0, 0, 0);
}

@media screen and (max-width: 767.9px) {
    .link__caption-ja {
        font-size: 1.5rem;
    }
}

.link__caption-en {
    font-size: 1.25rem;
    color: #cfb663;
    display: block;
    text-shadow: 0 0 0.9375rem rgb(0, 0, 0), 0 0 0.9375rem rgb(0, 0, 0), 0 0 0.9375rem rgb(0, 0, 0), 0 0.3125rem 0.9375rem rgb(0, 0, 0), 0.3125rem 0 0.9375rem rgb(0, 0, 0), 0 -0.3125rem 0.9375rem rgb(0, 0, 0), -0.3125rem 0 0.9375rem rgb(0, 0, 0);
}

@media screen and (max-width: 767.9px) {
    .link__caption-en {
        font-size: 1rem;
    }
}

.reservation {
    /* padding-top: 7.8125rem; */
    margin-top: calc((var(--header-height))*-1);
    padding-top: calc((var(--header-height)) + 1.8125rem);
    position: relative;
}

@media screen and (max-width: 767.9px) {
    .reservation {
        padding-top: calc((var(--header-height)) + 2.1875rem);
    }
}

.reservation__inner {
    padding-top: 2.5rem;
    padding-bottom: 5.9375rem;
    max-width: 77.1875rem;
    margin-inline: auto;
}

@media screen and (max-width: 767.9px) {
    .reservation__inner {
        padding-top: 0;
        padding-bottom: 2.1875rem;
        max-width: 31.25rem;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
    }
}

.reservation__parallax-bg {
    position: absolute;
    top: calc((var(--header-height)) + -20.875rem);
    left: 50%;
    transform: translateX(-50%);
    width: 77.1875rem;
    height: 41.875rem;
    z-index: -1;
    background-image: url(./images/bg_reservation.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    pointer-events: none;
}

@media screen and (max-width: 767.9px) {
    .reservation__parallax-bg {
        width: 100%;
        height: 56.25rem;
    }
}

.reservation__parallax-bg.is-loaded {
    visibility: visible;
    transition: transform 0.3s ease;
}

.reservation__text-wrap {
    margin-top: 2.5rem;
}

@media screen and (max-width: 767.9px) {
    .reservation__text-wrap {
        margin-top: 1.875rem;
    }
}

.reservation__text {
    font-size: 1.125rem;
    color: #fff;
    line-height: 1.8333333333;
    text-align: center;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
}

@media screen and (max-width: 767.9px) {
    .reservation__text {
        font-size: 1rem;
        line-height: 1.875;
        text-align: left;
    }
}

.reservation__methods {
    margin-top: 4.375rem;
    display: flex;
    gap: 3.75rem;
    justify-content: center;
}

@media screen and (max-width: 767.9px) {
    .reservation__methods {
        margin-top: 1.875rem;
        gap: 0.625rem;
    }
}

.reservation__method {
    max-width: 14.8125rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reservation__btn {
    font-size: 1rem;
    color: #fff;
    width: 100%;
    display: inline-block;
    text-align: center;
    padding: 0.875rem 0.625rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
}

.reservation__btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    z-index: 2;
}

.reservation__btn:hover::before {
    animation: shine 0.8s forwards;
}

.reservation__btn:hover {
    transform: scale(1.03);
    opacity: 1;
}

.reservation__btn--tel {
    background-color: #ad34af;
}

.reservation__tel {
    margin-top: 2.5rem;
}

.reservation__tel-link {
    font-size: 1.375rem;
    color: #fff;
}

.reservation__time {
    margin-top: 0.3125rem;
    font-size: 0.9375rem;
    color: #fff;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
}

@media screen and (max-width: 767.9px) {
    .reservation__time {
        font-size: 0.875rem;
    }
}

.reservation__btn--line {
    background-color: #06c755;
}

.reservation__qr-img {
    margin-top: 1.25rem;
    width: 6.25rem;
    height: 6.25rem;
}

.top-fv {
    position: relative;
    margin-top: 12.5rem;
    height: 37.9375rem;
    background-image: url(./images/top_fv.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

@media screen and (max-width: 767.9px) {
    .top-fv {
        margin-top: 5rem;
        height: 31.25rem;
    }
}

.top-fv::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #171717;
    z-index: 2;
    transform: translateX(0%);
    animation: curtainOpen 1s ease-out forwards;
}

@keyframes curtainOpen {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.top-fv__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 3;
    animation: fadeUp 1.2s ease-out 1s forwards;
}

@media screen and (max-width: 767.9px) {
    .top-fv__inner {
        max-width: 21.5625rem;
        width: 100%;
    }
}

.top-fv__title {
    font-size: 2.25rem;
    color: #fff;
    line-height: 1.25;
    text-align: center;
    font-style: italic;
    text-shadow: 0 0 1.25rem rgb(0, 0, 0), 0 0 1.25rem rgb(0, 0, 0), 0 0 1.25rem rgb(0, 0, 0), 0 0 1.25rem rgb(0, 0, 0), 0 0 1.25rem rgb(0, 0, 0), 0 0 1.25rem rgb(0, 0, 0), 0 0 1.25rem rgb(0, 0, 0), 0 0.3125rem 1.25rem rgb(0, 0, 0), 0.3125rem 0 1.25rem rgb(0, 0, 0), 0 -0.3125rem 1.25rem rgb(0, 0, 0), -0.3125rem 0 1.25rem rgb(0, 0, 0);
}

@media screen and (max-width: 767.9px) {
    .top-fv__title {
        font-size: 1.625rem;
        line-height: 1.2692307692;
        text-shadow: 0 0 0.625rem rgb(0, 0, 0), 0 0 0.625rem rgb(0, 0, 0), 0 0 0.625rem rgb(0, 0, 0), 0 0 0.625rem rgb(0, 0, 0), 0 0 0.625rem rgb(0, 0, 0), 0 0 0.625rem rgb(0, 0, 0), 0 0 0.625rem rgb(0, 0, 0), 0 0.3125rem 0.625rem rgb(0, 0, 0), 0.3125rem 0 0.625rem rgb(0, 0, 0), 0 -0.3125rem 0.625rem rgb(0, 0, 0), -0.3125rem 0 0.625rem rgb(0, 0, 0);
    }
}

.top-fv__sub-title {
    margin-top: 2.5rem;
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.35;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
    text-shadow: 0 0 0.9375rem rgb(0, 0, 0), 0 0 0.9375rem rgb(0, 0, 0), 0 0 0.9375rem rgb(0, 0, 0), 0 0 0.9375rem rgb(0, 0, 0), 0 0 0.9375rem rgb(0, 0, 0), 0 0.3125rem 0.9375rem rgb(0, 0, 0), 0.3125rem 0 0.9375rem rgb(0, 0, 0), 0 -0.3125rem 0.9375rem rgb(0, 0, 0), -0.3125rem 0 0.9375rem rgb(0, 0, 0);
    font-style: italic;
    text-align: center;
}

@media screen and (max-width: 767.9px) {
    .top-fv__sub-title {
        margin-top: 1.25rem;
        font-size: 1rem;
        line-height: 1.5;
        text-shadow: 0 0 0.46875rem rgb(0, 0, 0), 0 0 0.46875rem rgb(0, 0, 0), 0 0 0.46875rem rgb(0, 0, 0), 0 0 0.46875rem rgb(0, 0, 0), 0 0 0.46875rem rgb(0, 0, 0), 0 0.3125rem 0.46875rem rgb(0, 0, 0), 0.3125rem 0 0.46875rem rgb(0, 0, 0), 0 -0.3125rem 0.46875rem rgb(0, 0, 0), -0.3125rem 0 0.46875rem rgb(0, 0, 0);
    }
}

.top-marquee {
    overflow-x: clip;
    background: #171717;
    padding-bottom: 3.125rem;
    position: relative;
    z-index: 10;
}

@media screen and (max-width: 767.9px) {
    .top-marquee {
        padding-bottom: 1.875rem;
    }
}

.top-marquee__track {
    display: flex;
    width: max-content;
    animation: marquee 60s linear infinite;
}

.top-marquee__text {
    font-size: 4.8125rem;
    color: #ae9335;
    white-space: nowrap;
    margin-top: -3.125rem;
    margin-right: 3.125rem;
    font-family: "Bodoni Moda", serif;
    font-variation-settings: "wght" 500, "opsz" 11;
}

@media screen and (max-width: 767.9px) {
    .top-marquee__text {
        font-size: 3.125rem;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.top-news {
    background-color: #171717;
    background-image: url(./images/bg_top-news.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.top-news__inner {
    max-width: 75rem;
    margin-inline: auto;
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
}

@media screen and (max-width: 767.9px) {
    .top-news__inner {
        max-width: 37.5rem;
        padding-top: 2.1875rem;
        padding-bottom: 2.1875rem;
    }
}

.top-news__lists {
    margin-top: 5.3125rem;
}

@media screen and (max-width: 767.9px) {
    .top-news__lists {
        margin-top: 3.125rem;
    }
}

.top-news__list-inner {
    max-width: 75rem;
    margin-inline: auto;
    display: grid;
    column-gap: 2.5rem;
    row-gap: 4.375rem;
    grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 767.9px) {
    .top-news__list-inner {
        max-width: 23.4375rem;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        grid-template-columns: repeat(1, 1fr);
    }
}

.top-news__list-img {
    aspect-ratio: 373/186;
    object-fit: cover;
    height: auto;
    border-radius: 0.625rem;
}

@media screen and (max-width: 767.9px) {
    .top-news__list-img {
        aspect-ratio: 345/160;
    }
}

.top-news__list-body {
    margin-top: 1.25rem;
}

@media screen and (max-width: 767.9px) {
    .top-news__list-body {
        margin-top: 0.625rem;
    }
}

.top-news__list-title {
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.7;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media screen and (max-width: 767.9px) {
    .top-news__list-title {
        font-size: 1.125rem;
    }
}

.top-news__list-date {
    font-size: 1.125rem;
    color: #cfb764;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
}

@media screen and (max-width: 767.9px) {
    .top-news__list-date {
        font-size: 1rem;
    }
}

.top-news__list-text {
    margin-top: 0.625rem;
    font-size: 1.125rem;
    color: #fff;
    line-height: 1.6666666667;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

@media screen and (max-width: 767.9px) {
    .top-news__list-text {
        font-size: 1rem;
    }
}

.top-news__btn.btn {
    margin-top: 4.375rem;
}

@media screen and (max-width: 767.9px) {
    .top-news__btn.btn {
        margin-top: 1.875rem;
    }
}

.top-news__btn-link.btn-link {
    padding: 0.90625rem 1.71875rem;
}

@media screen and (max-width: 767.9px) {
    .top-news__btn-link.btn-link {
        padding: 0.625rem 1.25rem;
    }
}

.top-about {
    padding-top: 6.875rem;
    padding-bottom: 6.875rem;
}

@media screen and (max-width: 767.9px) {
    .top-about {
        padding-top: 2.1875rem;
        padding-bottom: 0;
    }
}

.top-about__inner {
    max-width: 57.5rem;
    margin-inline: auto;
}

@media screen and (max-width: 767.9px) {
    .top-about__inner {
        max-width: 37.5rem;
        padding-right: 0.9375rem;
        padding-left: 0.9375rem;
    }
}

.top-about__feature-icons {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(5, 1fr);
    max-width: 52.1875rem;
    margin-inline: auto;
}

@media screen and (max-width: 767.9px) {
    .top-about__feature-icons {
        margin-top: 1.875rem;
        max-width: 21.5625rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.3125rem;
    }
}

.top-about__feature-icon {
    margin-top: 3.125rem;
    background-color: #000;
    border-radius: 100vw;
    font-size: 1.25rem;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    width: 9.375rem;
    height: 9.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 767.9px) {
    .top-about__feature-icon {
        width: 6.5625rem;
        height: 6.5625rem;
        font-size: 0.9375rem;
        margin-top: 0;
    }
}

.top-about__feature-imgs {
    margin-top: 0.9375rem;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
    max-width: 41.5625rem;
    margin-inline: auto;
    border-radius: 100vw;
}

@media screen and (max-width: 767.9px) {
    .top-about__feature-imgs {
        margin-top: 0.3125rem;
        max-width: 21.5625rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.3125rem;
    }
}

.top-about__feature-img {
    width: 9.375rem;
    height: 9.375rem;
    object-fit: cover;
    border-radius: 100vw;
}

@media screen and (max-width: 767.9px) {
    .top-about__feature-img {
        width: 6.5625rem;
        height: 6.5625rem;
    }
}

.top-about__text-wrap {
    margin-top: 2.5rem;
}

@media screen and (max-width: 767.9px) {
    .top-about__text-wrap {
        margin-top: 1.875rem;
    }
}

.top-about__text {
    font-size: 1.125rem;
    color: #fff;
    line-height: 2;
    font-style: italic;
    text-align: center;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
}

@media screen and (max-width: 767.9px) {
    .top-about__text {
        font-size: 0.9375rem;
        line-height: 1.875;
        text-align: left;
    }
}

.top-about__btn.btn {
    margin-top: 2.5rem;
}

@media screen and (max-width: 767.9px) {
    .top-about__btn.btn {
        margin-top: 1.875rem;
    }
}

.top-about__btn-link.btn-link {
    padding: 0.90625rem 1.21875rem;
}

@media screen and (max-width: 767.9px) {
    .top-about__btn-link.btn-link {
        padding: 0.625rem 0.9375rem;
    }
}

.about__read {
    margin-top: 6.875rem;
}

@media screen and (max-width: 767.9px) {
    .about__read {
        margin-top: 3.125rem;
    }
}

.about__read-inner {
    max-width: 81.875rem;
    margin-inline: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

@media screen and (max-width: 767.9px) {
    .about__read-inner {
        max-width: 37.5rem;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
    }
}

.about__read-text {
    font-size: 1.125rem;
    color: #fff;
    line-height: 2;
    font-style: italic;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
    text-align: center;
}

@media screen and (max-width: 767.9px) {
    .about__read-text {
        text-align: left;
        font-size: 1rem;
    }
}

.about__read-text+.about__read-text {
    margin-top: 3.125rem;
}

@media screen and (max-width: 767.9px) {
    .about__read-text+.about__read-text {
        margin-top: 1.875rem;
    }
}

.about__read-img-wrap {
    margin-top: 3.75rem;
}

@media screen and (max-width: 767.9px) {
    .about__read-img-wrap {
        margin-top: 2.5rem;
    }
}

.about__read-img {
    width: 79.375rem;
    height: 24.625rem;
}

@media screen and (max-width: 767.9px) {
    .about__read-img {
        width: 100%;
        height: auto;
        box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.6);
    }
}

.about__special {
    padding-top: 9.375rem;
    padding-bottom: 9.375rem;
}

@media screen and (max-width: 767.9px) {
    .about__special {
        padding-top: 3.125rem;
        padding-bottom: 3.125rem;
    }
}

.about__special-inner {
    max-width: 81.25rem;
    margin-inline: auto;
}

@media screen and (max-width: 767.9px) {
    .about__special-inner {
        max-width: 37.5rem;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
    }
}

.about__special-items {
    margin-top: 3.75rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media screen and (max-width: 767.9px) {
    .about__special-items {
        margin-top: 1.875rem;
    }
}

.about__special-item {
    display: flex;
    gap: 3.125rem;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 767.9px) {
    .about__special-item {
        flex-direction: column-reverse;
        gap: 1.25rem;
    }
}

.about__special-item.about__special-item--reverse {
    flex-direction: row-reverse;
}

@media screen and (max-width: 767.9px) {
    .about__special-item.about__special-item--reverse {
        flex-direction: column-reverse;
    }
}

.about__special-img-wrap {
    width: 20.9375rem;
    height: 19.0625rem;
}

@media screen and (max-width: 767.9px) {
    .about__special-img-wrap {
        width: 100%;
        min-height: 12.5rem;
        max-height: 15.625rem;
        height: auto;
    }
}

.about__special-img {
    aspect-ratio: 335/305;
    object-fit: cover;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 767.9px) {
    .about__special-img {
        width: 100%;
        min-height: 12.5rem;
        max-height: 15.625rem;
    }
}

.about__special-item-title {
    font-size: 1.5rem;
    color: #fff;
}

@media screen and (max-width: 767.9px) {
    .about__special-item-title {
        font-size: 1.25rem;
    }
}

.about__special-number {
    font-size: 1.5rem;
    color: #cfb663;
    padding-right: 1.5625rem;
}

@media screen and (max-width: 767.9px) {
    .about__special-number {
        font-size: 1.125rem;
        padding-right: 0.9375rem;
    }
}

.about__special-item-text {
    max-width: 40.625rem;
    margin-top: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.6666666667;
    color: #fff;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
}

@media screen and (max-width: 767.9px) {
    .about__special-item-text {
        font-size: 1rem;
        margin-top: 0.625rem;
        line-height: 1.5;
    }
}

.price__read {
    padding-top: 6.875rem;
}

@media screen and (max-width: 767.9px) {
    .price__read {
        padding-top: 3.125rem;
    }
}

.price__read-inner {
    max-width: 55.875rem;
    margin-inline: auto;
}

@media screen and (max-width: 767.9px) {
    .price__read-inner {
        max-width: 37.5rem;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
    }
}

.price__read-text {
    font-size: 1.125rem;
    color: #fff;
    line-height: 2;
    font-style: italic;
    text-align: center;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
}

@media screen and (max-width: 767.9px) {
    .price__read-text {
        font-size: 1rem;
        text-align: left;
    }
}

.price__read-img-wrap {
    margin-top: 5rem;
}

@media screen and (max-width: 767.9px) {
    .price__read-img-wrap {
        margin-top: 2.5rem;
    }
}

.price__read-img {
    object-fit: cover;
    box-shadow: 0 0 0.9375rem rgba(0, 0, 0, 0.6);
    aspect-ratio: 894/426;
    object-fit: cover;
    height: auto;
}

@media screen and (max-width: 767.9px) {
    .price__read-img {
        width: 100%;
        aspect-ratio: 345/200;
    }
}

.price__menu {
    margin-top: 9.375rem;
    margin-bottom: 8.125rem;
}

@media screen and (max-width: 767.9px) {
    .price__menu {
        margin-top: 3.125rem;
        margin-bottom: 3.125rem;
    }
}

.price__menu-inner {
    max-width: 26.875rem;
    margin-inline: auto;
}

@media screen and (max-width: 767.9px) {
    .price__menu-inner {
        max-width: 23.4375rem;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
    }
}

.price__menu-wrap:not(:first-child) {
    margin-top: 12.5rem;
}

@media screen and (max-width: 767.9px) {
    .price__menu-wrap:not(:first-child) {
        margin-top: 5rem;
    }
}

.price__menu-lists {
    margin-top: 4.375rem;
    color: #fff;
    font-size: 1.5rem;
}

@media screen and (max-width: 767.9px) {
    .price__menu-lists {
        margin-top: 1.875rem;
        font-size: 1rem;
    }
}

.price__menu-list {
    display: flex;
    justify-content: space-between;
}

.price__menu-list:not(:first-child) {
    margin-top: 0.9375rem;
}

@media screen and (max-width: 767.9px) {
    .price__menu-list:not(:first-child) {
        margin-top: 0.625rem;
    }
}

.price__menu-caption {
    margin-top: 3.75rem;
    font-size: 1.3125rem;
    color: #fff;
}

@media screen and (max-width: 767.9px) {
    .price__menu-caption {
        margin-top: 2.5rem;
        font-size: 1rem;
    }
}

.access__read {
    padding-top: 6.875rem;
}

@media screen and (max-width: 767.9px) {
    .access__read {
        padding-top: 3.125rem;
    }
}

.access__read-inner {
    max-width: 55.875rem;
    margin-inline: auto;
}

@media screen and (max-width: 767.9px) {
    .access__read-inner {
        max-width: 37.5rem;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
    }
}

.access__read-text {
    font-size: 1.125rem;
    color: #fff;
    line-height: 2;
    font-style: italic;
    text-align: center;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
}

@media screen and (max-width: 767.9px) {
    .access__read-text {
        font-size: 1rem;
        text-align: left;
    }
}

.access__read-img-wrap {
    margin-top: 5rem;
}

@media screen and (max-width: 767.9px) {
    .access__read-img-wrap {
        margin-top: 2.5rem;
    }
}

.access__read-img {
    box-shadow: 0 0 0.9375rem rgba(0, 0, 0, 0.6);
    aspect-ratio: 894/426;
    object-fit: cover;
    height: auto;
}

@media screen and (max-width: 767.9px) {
    .access__read-img {
        width: 100%;
        height: 12.5rem;
        aspect-ratio: 345/200;
    }
}

.access__info {
    margin-top: 8.75rem;
}

@media screen and (max-width: 767.9px) {
    .access__info {
        margin-top: 3.125rem;
    }
}

.access__info-inner {
    max-width: 37.5rem;
    margin-inline: auto;
}

@media screen and (max-width: 767.9px) {
    .access__info-inner {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
    }
}

.access__info-lists {
    margin-top: 5rem;
}

@media screen and (max-width: 767.9px) {
    .access__info-lists {
        margin-top: 1.875rem;
    }
}

.access__info-list {
    display: flex;
    align-items: start;
    gap: 2.8125rem;
}

@media screen and (max-width: 767.9px) {
    .access__info-list {
        gap: 1.25rem;
    }
}

.access__info-list:not(:first-child) {
    margin-top: 3.125rem;
}

@media screen and (max-width: 767.9px) {
    .access__info-list:not(:first-child) {
        margin-top: 1.875rem;
    }
}

.access__info-head {
    font-size: 1.25rem;
    color: #fff;
    width: 5rem;
}

@media screen and (max-width: 767.9px) {
    .access__info-head {
        font-size: 1.125rem;
    }
}

.access__info-body {
    font-size: 1.125rem;
    color: #fff;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
}

@media screen and (max-width: 767.9px) {
    .access__info-body {
        font-size: 1rem;
        flex: 1 1 0;
    }
}

.access__map {
    margin-top: 8.75rem;
}

@media screen and (max-width: 767.9px) {
    .access__map {
        margin-top: 5rem;
    }
}

.access__map-inner {
    max-width: 70.625rem;
    margin-inline: auto;
    padding-bottom: 7.5rem;
}

@media screen and (max-width: 767.9px) {
    .access__map-inner {
        max-width: 37.5rem;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        padding-bottom: 3.125rem;
    }
}

.access__map-contents {
    margin-top: 4.375rem;
}

@media screen and (max-width: 767.9px) {
    .access__map-contents {
        margin-top: 1.875rem;
    }
}

.access__map-wrap {
    width: 100%;
    height: 31.25rem;
}

@media screen and (max-width: 767.9px) {
    .access__map-wrap {
        height: 15.625rem;
    }
}

.access__map-wrap iframe {
    width: 100%;
    height: 100%;
}

.access__map-captions {
    margin-top: 0.9375rem;
}

.access__map-link {
    font-size: 1.125rem;
    color: #fff;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
    padding-left: 2.1875rem;
    position: relative;
}

@media screen and (max-width: 767.9px) {
    .access__map-link {
        font-size: 1rem;
        padding-left: 1.875rem;
    }
}

.access__map-link::before {
    position: absolute;
    content: "";
    width: 1.0625rem;
    height: 1.4375rem;
    top: 50%;
    transform: translateY(-50%);
    left: 0.1875rem;
    background-image: url(./images/icon_map.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.access__map-caption {
    margin-top: 1.5625rem;
    font-size: 1.125rem;
    color: #fff;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
    line-height: 1.6666666667;
}

@media screen and (max-width: 767.9px) {
    .access__map-caption {
        margin-top: 1.25rem;
        font-size: 1rem;
        line-height: 1.875;
    }
}

.access__map-caption-thai {
    display: inline-block;
    margin-top: 0.9375rem;
    font-size: 1.625rem;
    background-color: #94913e;
    padding: 0 0.3125rem;
    font-family: "Noto Sans Thai", sans-serif;
}

@media screen and (max-width: 767.9px) {
    .access__map-caption-thai {
        font-size: 1.25rem;
        display: inline;
    }
}

.access__map-parking {
    margin-top: 1.5625rem;
    font-size: 1.125rem;
    color: #fff;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
    padding-left: 1.875rem;
    position: relative;
}

@media screen and (max-width: 767.9px) {
    .access__map-parking {
        font-size: 1rem;
    }
}

.access__map-parking::before {
    position: absolute;
    content: "";
    width: 1.25rem;
    height: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background-image: url(./images/icon_parking.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.access__map-parking-caption {
    margin-top: 0.625rem;
    font-size: 1.125rem;
    color: #fff;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
    line-height: 1.8888888889;
}

@media screen and (max-width: 767.9px) {
    .access__map-parking-caption {
        font-size: 1rem;
        line-height: 1.875;
    }
}

.floor__read {
    padding-top: 6.875rem;
}

@media screen and (max-width: 767.9px) {
    .floor__read {
        padding-top: 3.125rem;
    }
}

.floor__read-inner {
    max-width: 55.875rem;
    margin-inline: auto;
}

@media screen and (max-width: 767.9px) {
    .floor__read-inner {
        max-width: 37.5rem;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
    }
}

.floor__read-text {
    font-size: 1.125rem;
    color: #fff;
    line-height: 2;
    font-style: italic;
    text-align: center;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
}

@media screen and (max-width: 767.9px) {
    .floor__read-text {
        font-size: 1rem;
        text-align: left;
    }
}

.floor__feature-icons {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, 1fr);
    max-width: 30.9375rem;
    margin-inline: auto;
}

@media screen and (max-width: 767.9px) {
    .floor__feature-icons {
        margin-top: 1.875rem;
        max-width: 21.5625rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.3125rem;
    }
}

.floor__feature-icon {
    margin-top: 3.125rem;
    background-color: #000;
    border-radius: 100vw;
    font-size: 1.25rem;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    width: 9.375rem;
    height: 9.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 767.9px) {
    .floor__feature-icon {
        width: 6.5625rem;
        height: 6.5625rem;
        font-size: 0.9375rem;
        margin-top: 0;
    }
}

.floor {
    padding-top: 9.0625rem;
}

@media screen and (max-width: 767.9px) {
    .floor {
        padding-top: 5rem;
    }
}

.floor__inner {
    max-width: 93.75rem;
    margin-inline: auto;
}

.floor__detail-wrap {
    margin-top: 3.75rem;
}

@media screen and (max-width: 767.9px) {
    .floor__detail-wrap {
        margin-top: 2.5rem;
    }
}

.floor__sub-title {
    font-size: 1.875rem;
    color: #fff;
    text-align: center;
}

@media screen and (max-width: 767.9px) {
    .floor__sub-title {
        font-size: 1.375rem;
    }
}

.floor__text {
    margin-top: 3.125rem;
    max-width: 40.625rem;
    margin-inline: auto;
    font-size: 1.125rem;
    color: #fff;
    line-height: 1.6666666667;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
}

@media screen and (max-width: 767.9px) {
    .floor__text {
        margin-top: 1.25rem;
        max-width: 37.5rem;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        font-size: 1rem;
        line-height: 1.875;
    }
}

.floor__splide {
    padding-top: 4.375rem;
    padding-bottom: 9.375rem;
    width: 100%;
}

@media screen and (max-width: 767.9px) {
    .floor__splide {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}

.floor-splide .splide__slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 0 0.9375rem rgb(0, 0, 0);
    aspect-ratio: 900/429;
}

@media screen and (max-width: 767.9px) {
    .floor-splide .splide__slide img {
        height: auto;
        aspect-ratio: 300/170;
    }
}

.floor-splide .splide__arrow {
    background: none;
    width: 2.5rem;
    height: 2.5rem;
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.floor-splide .splide__arrow--prev {
    background-image: url("./images/icon_arrow.png");
    width: 4.25rem;
    height: 4.25rem;
    opacity: 1;
    left: 15rem;
    border-radius: 0;
    box-shadow: 0 0 0.9375rem rgb(0, 0, 0);
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 767.9px) {
    .floor-splide .splide__arrow--prev {
        width: 2.5rem;
        height: 2.5rem;
        left: calc(10px + 40 * (100vw - 375px) / 392);
    }
}

.floor-splide .splide__arrow--next {
    background-image: url("./images/icon_arrow.png");
    width: 4.25rem;
    height: 4.25rem;
    opacity: 1;
    right: 15rem;
    border-radius: 0;
    box-shadow: 0 0 0.9375rem rgb(0, 0, 0);
    top: 50%;
    transform: translateY(-50%) scaleX(-1);
}

@media screen and (max-width: 767.9px) {
    .floor-splide .splide__arrow--next {
        width: 2.5rem;
        height: 2.5rem;
        right: calc(10px + 40 * (100vw - 375px) / 392);
    }
}

.floor-splide .splide__arrow svg {
    display: none;
}

.floor-splide .splide__arrow {
    opacity: 1 !important;
    transition: none;
}

.floor-splide .splide__arrow:hover {
    opacity: 1 !important;
}

.floor__karaoke {
    padding-bottom: 11.875rem;
}

@media screen and (max-width: 767.9px) {
    .floor__karaoke {
        padding-bottom: 3.125rem;
    }
}

.floor__karaoke-inner {
    max-width: 57rem;
    margin-inline: auto;
}

@media screen and (max-width: 767.9px) {
    .floor__karaoke-inner {
        max-width: 37.5rem;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
    }
}

.floor__karaoke-wrap {
    margin-top: 5.625rem;
}

@media screen and (max-width: 767.9px) {
    .floor__karaoke-wrap {
        margin-top: 3.125rem;
    }
}

.floor__karaoke-img {
    width: 57rem;
    height: 21rem;
}

@media screen and (max-width: 767.9px) {
    .floor__karaoke-img {
        width: 100%;
        height: auto;
    }
}

.floor__karaoke-text {
    margin-top: 4.6875rem;
    max-width: 40.625rem;
    margin-inline: auto;
    font-size: 1.125rem;
    color: #fff;
    line-height: 1.6666666667;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
}

@media screen and (max-width: 767.9px) {
    .floor__karaoke-text {
        margin-top: 2.5rem;
        max-width: 37.5rem;
        font-size: 1rem;
        line-height: 1.875;
    }
}

.news__read {
    padding-top: 6.875rem;
}

@media screen and (max-width: 767.9px) {
    .news__read {
        padding-top: 3.125rem;
    }
}

.news__read-inner {
    max-width: 55.875rem;
    margin-inline: auto;
}

@media screen and (max-width: 767.9px) {
    .news__read-inner {
        max-width: 37.5rem;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
    }
}

.news__read-text {
    font-size: 1.125rem;
    color: #fff;
    line-height: 2;
    font-style: italic;
    text-align: center;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
}

@media screen and (max-width: 767.9px) {
    .news__read-text {
        font-size: 1rem;
        text-align: left;
    }
}

.news {
    margin-top: 5.3125rem;
}

@media screen and (max-width: 767.9px) {
    .news {
        margin-top: 3.125rem;
    }
}

.news__title {
    margin-bottom: 3.75rem;
}

@media screen and (max-width: 767.9px) {
    .news__title {
        margin-bottom: 2.5rem;
    }
}

.news__list-inner {
    max-width: 75rem;
    margin-inline: auto;
    display: grid;
    column-gap: 2.5rem;
    row-gap: 4.375rem;
    grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 767.9px) {
    .news__list-inner {
        max-width: 23.4375rem;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        grid-template-columns: repeat(1, 1fr);
    }
}

.news__img {
    aspect-ratio: 373/186;
    object-fit: cover;
    height: auto;
    border-radius: 0.625rem;
}

@media screen and (max-width: 767.9px) {
    .news__img {
        aspect-ratio: 345/160;
    }
}

.news__body {
    margin-top: 1.25rem;
}

@media screen and (max-width: 767.9px) {
    .news__body {
        margin-top: 0.625rem;
    }
}

.news__body-title {
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.7;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media screen and (max-width: 767.9px) {
    .news__body-title {
        font-size: 1.125rem;
    }
}

.news__date {
    font-size: 1.125rem;
    color: #cfb764;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
}

@media screen and (max-width: 767.9px) {
    .news__date {
        font-size: 1rem;
    }
}

.news__text {
    margin-top: 0.625rem;
    font-size: 1.125rem;
    color: #fff;
    line-height: 1.6666666667;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

@media screen and (max-width: 767.9px) {
    .news__text {
        font-size: 1rem;
    }
}

.news__pagination {
    margin-top: 3.4375rem;
}

.news__pagination-links {
    display: flex;
    justify-content: center;
    gap: 0.625rem;
}

.news__pagination-link {
    background-color: #fff;
    display: inline-block;
    font-size: 1rem;
    color: #ad34af;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
    padding: 0.84375rem 1.0625rem;
    border: 0.0625rem solid #ad34af;
}

@media screen and (max-width: 767.9px) {
    .news__pagination-link {
        padding: 0.625rem 0.9375rem;
    }
}

.page-numbers.current .news__pagination-link {
    background-color: #ad34af;
    border: 0.0625rem solid #ad34af;
    color: #fff;
}

.instagram {
    padding-top: 9.0625rem;
    padding-bottom: 6.25rem;
}

@media screen and (max-width: 767.9px) {
    .instagram {
        padding-top: 3.125rem;
        padding-bottom: 3.125rem;
    }
}

.instagram__inner {
    max-width: 75rem;
    margin-inline: auto;
}

@media screen and (max-width: 767.9px) {
    .instagram__inner {
        max-width: 37.5rem;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
    }
}

.instagram__head {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

@media screen and (max-width: 767.9px) {
    .instagram__head {
        gap: 1.25rem;
    }
}

.instagram__head-img-wrap {
    width: 7.5rem;
    height: 7.5rem;
    background-color: #000;
    border-radius: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.625rem 0.9375rem;
}

.instagram__head-text {
    font-size: 1.25rem;
    color: #cfb663;
}

.detail {
    padding-bottom: 10rem;
}

@media screen and (max-width: 767.9px) {
    .detail {
        padding-bottom: 4.375rem;
    }
}

.detail__inner {
    max-width: 48.5625rem;
    margin-inline: auto;
}

@media screen and (max-width: 767.9px) {
    .detail__inner {
        max-width: 37.5rem;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
    }
}

.detail__head {
    margin-top: 3.75rem;
}

@media screen and (max-width: 767.9px) {
    .detail__head {
        margin-top: 3.125rem;
    }
}

.detail__thumb {
    border-radius: 0.4375rem;
    max-width: 48.5625rem;
    aspect-ratio: 777/388;
    object-fit: cover;
    height: auto;
}

@media screen and (max-width: 767.9px) {
    .detail__thumb {
        max-width: 100%;
        aspect-ratio: 345/172;
    }
}

.detail__title {
    margin-top: 4.0625rem;
    font-size: 2.5rem;
    color: #fff;
    line-height: 1.25;
}

@media screen and (max-width: 767.9px) {
    .detail__title {
        margin-top: 1.875rem;
        font-size: 1.5rem;
    }
}

.detail-content {
    margin-top: 5rem;
    color: #fff;
    font-size: 1.25rem;
    font-family: "hiragino-kaku-gothic-pron", "Yu Mincho", sans-serif;
}

@media screen and (max-width: 767.9px) {
    .detail-content {
        margin-top: 1.25rem;
        font-size: 1rem;
    }
}

.detail-content h1 {
    background-color: #cfba72;
    color: #171717;
    padding-left: 0.625rem;
}

.detail-content h2 {
    color: #cfba72;
    border-bottom: 0.0625rem solid #cfba72;
}

.detail-content h3 {
    border-left: 0.3125rem solid #cfba72;
    padding-left: 0.625rem;
    color: #cfba72;
}

.detail-content h4,
.detail-content h5,
.detail-content h6 {
    color: #cfba72;
}

.detail-content>*+* {
    margin-top: 1.25rem;
}

.detail-content p {
    line-height: 1.8;
}

.detail-content a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s;
}

.detail-content a:hover {
    color: #cfba72;
    opacity: 1;
}

.detail-content ul li {
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.3125rem;
}

@media screen and (max-width: 767.9px) {
    .detail-content ul li {
        padding-left: 0.9375rem;
    }
}

.detail-content ul li::before {
    position: absolute;
    content: "・";
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.detail-content ol {
    counter-reset: number;
}

.detail-content ol li {
    position: relative;
    counter-increment: number;
    padding-left: 1.25rem;
    margin-bottom: 0.3125rem;
}

@media screen and (max-width: 767.9px) {
    .detail-content ol li {
        padding-left: 0.9375rem;
    }
}

.detail-content ol li::before {
    content: counter(number) ".";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}


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