@charset "utf-8";
/************** base *************/

body {
    font-family: "IBM Plex Sans JP", sans-serif;
    line-height: 1.5;
    color: #241E1C;
}

:root {
    --white-color: #ffffff;
    --Black-color: #000000;
}

:root {
    /* コンテンツ幅管理用の変数 */
    --content-width-sm: 680px;
    --content-width-md: 960px;
    --content-width: 1200px;
    --content-width-lg: 1124px;
}

/* base */
.container-sm,
.container-md,
.container-lg {
    width: 100%;
    padding: 0 25px;
    margin: 0 auto;
}


.container-sm {
    max-width: calc(var(--content-width-sm) + 50px);
}

.container-md {
    max-width: calc(var(--content-width-md) + 50px);
}

.container-lg {
    max-width: calc(var(--content-width-lg) + 50px);
}


.container {
    max-width: 70%;
    margin: 0 auto;
}

@media screen and (max-width: 1080px) {
    .container {
        max-width: 82%;
    }
}

@media screen and (max-width: 768px) {
    .container {
        max-width: 96%;
    }
}

@media screen and (max-width: 600px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 25px;
    }
}

.container-85 {
    max-width: 85%;
}

@media screen and (max-width: 1080px) {
    .container-85 {
        max-width: 90%;
    }
}

@media screen and (max-width: 600px) {
    .container-85 {
        max-width: 100%;
    }
}

.container-left {
    margin: auto 0 0 0;

}

@media screen and (max-width: 600px) {
    .container-left {
        margin: 0 auto;
        padding: 0 25px;
    }
}

.container-right {
    margin: 0 0 0 auto;

}

@media screen and (max-width: 600px) {
    .container-right {
        margin: 0 auto;
        padding: 0 25px;
    }
}

.contents {
    padding: 80px 0 0 0;
}

@media screen and (min-width: 1080px) {
    .contents {
        padding: 120px 0 0 0;
    }
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


a {
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.6;
}






/*************** Layout ***************/
/* 共通ヘッダー */



.m-header__inner-left {
    width: 12vw;
    position: absolute;
    top: 38px;
    left: 32px;
    z-index: 100;
}


/* トップページでのm-hamburger制御（PCのみ） */
@media screen and (min-width: 1080px) {
    .top-page .m-hamburger {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
    }

    .top-page .m-hamburger.is-visible {
        opacity: 1;
        visibility: visible;
    }
}


.m-hamburger__lang {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    gap: 6px;
    transition: color 0.3s ease;
}

.m-hamburger__lang .m-hamburger__lang-item:first-child {
    color: #707070;
}


.m-hamburger__lang-item--en {
    border-bottom: 1px solid #000;
    transition: border-color 0.3s ease;
}

.m-hamburger__lang-item {
    transition: color 0.3s ease;
}

.m-hamburger__lang-item a {
    transition: color 0.3s ease;
}

.m-hamburger {
    width: 55px;
    text-align: center;
    position: fixed;
    right: 24px;
    top: 26px;
    z-index: 1000;
}

.m-hamburger__inner {
    cursor: pointer;
}

.m-hamburger__icon {
    width: 55px;
    height: 20px;
    position: relative;
}

.m-hamburger__icon span {
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    transition: background-color 0.3s ease;
}

.m-hamburger__icon span:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
}

.m-hamburger__icon span:nth-child(2) {
    position: absolute;
    top: 50%;
    right: 0;
    width: 75%;

    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.m-hamburger__icon span:nth-child(3) {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    transition: all 0.3s ease;
}

/* ハンバーガーメニュー開閉状態 */
.m-hamburger.is-open .m-hamburger__icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    left: 0;
}

.m-hamburger.is-open .m-hamburger__icon span:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scale(0);
}

.m-hamburger.is-open .m-hamburger__icon span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
    width: 100%;
}

/* メニューテキストの非表示 */
.m-hamburger.is-open .m-hamburger__txt {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* ハンバーガーメニューがfooterに来た時の白表示（メニューが開いている時は無効） */
.m-hamburger.is-white:not(.is-open) .m-hamburger__icon span {
    background: #fff !important;
}

.m-hamburger.is-white:not(.is-open) .m-hamburger__txt {
    color: #fff !important;
}

.m-hamburger.is-white:not(.is-open) .m-hamburger__lang {
    color: #fff !important;
}

.m-hamburger.is-white:not(.is-open) .m-hamburger__lang-item--en {
    border-bottom-color: #fff !important;
}



/* page-mv-controlクラスのフッター背景色を確実に黒に */
body.page-mv-control .footer {
    background: #241E1C !important;
}

.m-hamburger__txt {
    font-size: 12px;
    margin-top: 14px;
    color: #000;
    transition: color 0.3s ease;
}




/* モーダル */

.m-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.m-nav__wrapper {
    background: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-nav__copy {
    position: absolute;
    bottom: 40px;
    left: 5%;
    font-size: 12px;
    color: #241E1C;
    text-align: center;
    margin-top: 40px;
}

@media screen and (max-width: 600px) {
    .m-nav__wrapper {
        align-items: flex-start;
        padding: 100px 25px 25px;
        overflow-y: auto;
    }

    .m-nav__copy {
        position: relative;
        bottom: inherit;
        left: inherit;
        margin-top: 20px;
        font-size: 12px;
    }
}

.m-nav__inner {
    display: flex;
    gap: 80px;
}



.m-nav__list {
    display: grid;
    gap: 28px;
}

.m-nav__item {
    font-size: 30px;
    font-weight: 300;
}

.m-nav__inner-right-sns {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

.m-nav__inner-right-item {
    line-height: 2;
    font-size: 20px;
}

.m-nav__inner-right-sns-item {
    width: 20px;
}

.m-nav__inner-right-item--tel {
    font-size: 30px;
    margin-top: 32px;
}

.m-nav__inner-right-sns img {
    object-fit: contain;
}

.m-nav__inner-right-cta {
    display: grid;
    margin-top: 80px;
    gap: 20px;
}


.m-nav__inner-right-cta-item a {
    display: block;
    font-size: 20px;
    font-weight: 300;
    border: 1px solid #000;
    padding: 15px 20px;
    text-align: center;
}

.m-nav__inner-right-cta-item {
    cursor: pointer;
    display: block;
    transition: background 0.3s ease;
}

.m-nav__inner-right-cta-item:hover {
    background: #000;
    color: #fff;
}


@media screen and (max-width: 600px) {
    .m-nav__inner {
        flex-direction: column;
        gap: 30px;
        width: 100%;
        max-width: 100%;
    }

    .m-nav__list {
        gap: 20px;
    }

    .m-nav__item {
        font-size: 20px;
    }

    .m-nav__inner-right-item {
        font-size: 16px;
    }

    .m-nav__inner-right-item--tel {
        font-size: 24px;
        margin-top: 20px;
    }

    .m-nav__inner-right-cta {
        width: 100%;
        margin-top: 40px;
        gap: 15px;
    }

    .m-nav__inner-right-cta-item {
        font-size: 16px;
        padding: 12px 15px;
    }

    .m-nav__inner-right {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
    }
}









/* 共通フッター */
.footer {
    background: #241E1C;
}

.footer__inner-left-logo {
    width: 18vw;
    max-width: 300px;
}

@media screen and (max-width: 600px) {
    .footer__inner-left-logo {
        width: 50%;
        margin: 0 auto;
    }
}

.footer__inner {
    width: 85%;
    margin: 0 auto;
    padding: 50px;
    color: #fff;
    display: grid;
    grid-template-columns: .8fr 1fr;
    gap: 100px;
}

@media screen and (max-width: 1080px) {
    .footer__inner {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .footer__inner {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 25px;
        padding-top: 80px;
    }
}

.footer__inner-right-info-sns {
    display: flex;
    gap: 14px;
}

.footer__inner-right-info-sns-item {
    width: 20px;
}

.footer__inner-right-info-sns-item img {
    object-fit: contain;
}

.footer__inner-right-language {
    width: fit-content;
    margin: 0 0 0 auto;
    margin-bottom: 46px;
}

@media screen and (max-width: 600px) {
    .footer__inner-right-language {
        display: none;
    }
}

.footer__inner-right-language-list {
    display: flex;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: "IBM Plex Sans JP", sans-serif;
}

.footer__inner-right-language-list li:first-child a {
    color: #707070;
}

.footer__inner-right-language-list li:nth-child(2) a {
    border-bottom: 1px solid #fff;
}

.footer__nav-list {
    display: flex;
    gap: 22px;
    font-weight: 300;
    font-size: 15px;
    font-family: "IBM Plex Sans JP", sans-serif;
}

@media screen and (max-width: 600px) {
    .footer__nav-list {
        font-size: 15px;
        flex-direction: column;
        gap: 30px;
    }
}

.footer__inner-right-info {
    margin-top: 72px;
    font-weight: 300;
    font-family: "IBM Plex Sans JP", sans-serif;
}

.footer__inner-right-info-wrap {
    display: flex;
    margin-top: 30px;
    gap: 32px;
}

@media screen and (max-width: 600px) {
    .footer__inner-right-info-wrap {
        flex-direction: column;
        gap: 10px;
    }
}

.footer__inner-right-info-txt {
    line-height: 2;
}

@media screen and (max-width: 600px) {
    .footer__inner-right-info-ttl {
        font-size: 15px;
    }
}

@media screen and (max-width: 600px) {
    .footer__inner-right-info-txt {
        font-size: 15px;
    }
}

.footer__inner-right-info-txt--tel {
    font-size: 20px;
}

.footer__inner-right-info-sns {
    margin-top: 30px;
}

.footer__inner-right-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 32px;
}

@media screen and (max-width: 600px) {
    .footer__inner-right-cta-inner {
        font-size: 14px;
        grid-template-columns: 1fr;
    }
}

.footer__inner-right-cta-inner-item {
    border: 1px solid #fff;
}

.footer__inner-right-cta-inner-item a {
    display: block;
    padding: 15px;
    text-align: center;
    font-size: 15px;
    font-weight: 300;
    font-family: "IBM Plex Sans JP", sans-serif;
}

.footer__inner-right-copyright {
    text-align: right;
    font-size: 14px;
    font-weight: 300;
    font-family: "IBM Plex Sans JP", sans-serif;
    margin-top: 40px;
}

@media screen and (max-width: 600px) {
    .footer__inner-right-copyright {
        font-size: 12px;
        text-align: center;
        padding-bottom: 30px;
    }
}

.footer__inner-right-cta .footer__inner-right-cta-inner-item {
    transition: background 0.3s ease;
}

.footer__inner-right-cta .footer__inner-right-cta-inner-item:hover {
    background: #fff;
    color: #000;
}



/* ナビゲーションを下に配置 */
.slider-nav {
    display: flex;
    justify-content: end;
    gap: 60px;
    /* ボタンの間隔 */
    margin-top: 40px;
    margin-right: 40px;
    /* スライダーとの距離 */
}

@media screen and (max-width: 600px) {
    .slider-nav {
        justify-content: center;
        margin-right: 0;
        gap: 40px;
        margin-top: 30px;
    }
}

.swiper-slide img {
    aspect-ratio: 1/.54;
}

@media screen and (max-width: 600px) {
    .swiper-slide img {
        aspect-ratio: 1/.73;
    }

}

/* デフォルト矢印をリセット */
.swiper-button-prev,
.swiper-button-next {
    position: static !important;
    /* Swiperのabsoluteを無効化 */
    width: 13px;
    /* 画像サイズに合わせる */
    height: auto;
    background: none !important;
    /* デフォルト矢印を消す */
    cursor: pointer;
}

@media screen and (max-width: 600px) {

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

.swiper-button-prev img,
.swiper-button-next img {
    width: 100%;
    height: auto;
    display: block;
}

/* Swiperデフォルトの矢印アイコンを消す */
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}




/*************** Modifier *************/

.m-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media screen and (max-width: 600px) {
    .m-grid-2col {
        grid-template-columns: 1fr;
    }
}

.m-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

@media screen and (max-width: 600px) {
    .m-grid-3col {
        grid-template-columns: 1fr;
    }
}

.m-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 6px;
}

@media screen and (max-width: 600px) {
    .m-grid-4col {
        grid-template-columns: 1fr 1fr;
        gap: 30px 10px;
    }
}



.m-section-ttl {
    font-size: clamp(50px, 9vw, 150px);
    font-weight: 100;
    font-family: "IBM Plex Sans JP", sans-serif;
}

@media screen and (max-width: 600px) {
    .m-section-ttl {
        font-weight: 200;
    }
}

.m-more-btn a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    max-width: 300px;
    font-size: 14px;
    font-weight: 300;
    border-bottom: 1px solid #818181;
    padding: 13px 15px;
    margin-top: 20px;
    font-family: "IBM Plex Sans JP", sans-serif;
}

@media screen and (max-width: 600px) {
    .m-more-btn a {
        max-width: 100%;
    }
}

.m-more-btn-arrow {
    display: inline-block;
    width: 10px;
    line-height: 1;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.m-more-btn:hover .m-more-btn-arrow {
    transform: translateX(5px);
}



/* 下層メインビジュアル */

.page-mv__inner {
    display: flex;
    gap: 20px;
    height: 100vh;
}

@media screen and (max-width: 1080px) {
    .page-mv__inner {
        flex-direction: column-reverse;
        gap: 0;
        justify-content: start;
        height: auto;
    }
}

.page-mv__inner--reverse {
    flex-direction: row-reverse;
}

@media screen and (max-width: 1080px) {
    .page-mv__inner--reverse {
        flex-direction: column-reverse;
    }
}


.page-mv__left {
    position: relative;
    width: 40%;
}

@media screen and (max-width: 1080px) {
    .page-mv__left {
        min-height: 160px;
        width: 100%;
        padding-bottom: 30px;
    }
}

.page-mv__inner-img {
    width: 60%;
}

@media screen and (max-width: 1080px) {
    .page-mv__inner-img {
        width: 100%;
        height: 80vh;
    }
}

.page-mv__left-img {
    position: absolute;
    top: 0;
    left: 0;
}

.page-mv__left-inner {
    width: 50%;
    position: absolute;
    right: 0;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}


@media screen and (max-width: 1080px) {
    .page-mv__left-inner {
        position: relative;
        display: flex;
        flex-direction: row;
        width: 100%;
        bottom: 0;
        padding: 0 20px;
        transform: translateY(30%);
    }
}

.page-mv-control--reverse .page-mv__left-inner {
    right: inherit;
    left: 0;
}


.page-mv__ttl {
    display: flex;
    font-size: 30px;
    font-weight: 300;
    writing-mode: vertical-rl;
}

@media screen and (max-width: 600px) {
    .page-mv__ttl {
        align-items: end;
        font-size: 20px;
    }
}

.page-mv__inner--reverse .page-mv__ttl {
    align-items: end;
}

.page-mv__txt {
    font-size: 14px;
    line-height: 2;
}


/*************** Utility **************/
.u-pc {
    display: block;
}

@media screen and (max-width: 600px) {
    .u-pc {
        display: none;
    }
}

.u-sp {
    display: none;
}

@media screen and (max-width: 600px) {
    .u-sp {
        display: block;
    }
}

.u-center {
    text-align: center !important;
}

.u-pc-logo {
    display: block;
}

@media screen and (max-width: 1080px) {
    .u-pc-logo {
        display: none;
    }
}

/*************** TOPページ **************/

/* topページヘッダー */

.top-page .m-header__inner-left {
    display: none;
}

.m-header__inner-left {
    min-width: 120px;
}

.top-header {
    background: #fff;
}

@media screen and (max-width: 1080px) {
    .top-header {
        display: none;
    }
}

.top-header__logo {
    width: 14vw;
    min-width: 150px;
    max-width: 240px;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.top-header__inner {
    display: flex;
    align-items: center;
    height: 130px;
    padding: 0 40px 0 50px;
    justify-content: space-between;
}

.top-header__nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-header__nav-item {
    font-size: 14px;
}

.top-header__nav-right-sns {
    width: 16px;
    height: 16px;
    margin: 0 auto;
}


.top-header__nav-right-list {
    display: flex;
    align-items: center;
    gap: 40px;
}


.top-header__nav-right-item--reserve {
    font-size: 24px;
    font-weight: 500;
    border-bottom: 2px solid #000;
}

.top-header__nav-right-item {
    text-align: center;
    gap: 24px 10px !important;
}

.top-header__nav-right-language {
    font-size: 14px;
}

.top-header__nav-right-language--jp {
    color: #707070 !important
}

.top-header__nav-right-language--en {
    border-bottom: 1px solid #000;
}

.mainV__inner {
    height: calc(100vh - 130px);
    background: url(../img/top/top-mv.webp) no-repeat center top / cover;
}

@media screen and (max-width: 600px) {
    .mainV__inner {
        height: 100vh;
    }
}

/* コンセプト */
.top-concept {
    padding-top: 280px;
}

@media screen and (max-width: 600px) {
    .top-concept {
        padding-top: 148px;
    }
}

.top-concept__inner {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 600px) {
    .top-concept__inner {
        grid-template-columns: 1fr;
    }
}





.top-concept__inner-left-img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
}

@media screen and (max-width: 600px) {
    .top-concept__inner-left-img img {
        transform: translateX(-25px);
    }
}

.top-concept__inner-right {
    width: auto;
    padding-left: 100px;
}

@media screen and (max-width: 600px) {
    .top-concept__inner-right {
        padding-left: 0;
    }
}

.top-concept__inner-right-head {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(-10%, -66%);
}

@media screen and (max-width: 600px) {
    .top-concept__inner-right-head {
        transform: translate(15px, -66%);
    }
}

.top-concept__inner-right-ttl span {
    display: block;
}

.top-concept__inner-right-ttl span:first-child {
    font-size: 80px;
    font-weight: 300;
}

@media screen and (max-width: 1080px) {
    .top-concept__inner-right-ttl span:first-child {
        font-size: 60px;
    }
}

@media screen and (max-width: 600px) {
    .top-concept__inner-right-ttl span:first-child {
        font-size: 55px;
        margin-top: 20px;
    }
}

.top-concept__inner-right-ttl span:last-child {
    font-size: 18px;
    font-weight: 200;
    line-height: 1;
    font-family: "IBM Plex Sans JP", sans-serif;
    transform: translateX(9px);
}

.top-concept__inner-right-txt {
    width: 80%;
    line-height: 2.2;
    font-size: 16px;
    font-weight: 300;
    margin-top: 40px;
}

@media screen and (max-width: 1080px) {
    .top-concept__inner-right-txt {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .top-concept__inner-right-txt {
        width: 100%;
        font-size: 14px;
    }
}

.top-concept__slider {
    margin-top: 120px;
    min-height: 200px;
}

@media screen and (max-width: 600px) {
    .top-concept__slider {
        margin-top: 80px;
    }
}

@media screen and (max-width: 600px) {
    .top-concept__slider .splide__slide {
        transform: translateY(-6px);
    }
}



.video-container {
    max-width: 700px;
    margin: 0 auto;
    margin-top: 80px;
    position: relative;
    background: #000;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    background: #000;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../mov/thumbnail_clean.jpg");
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: filter 0.5s ease;
    z-index: 2;
}

.video-thumbnail:hover {
    filter: brightness(1.2);
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s ease;
    z-index: 3;
}

.video-thumbnail:hover .play-button-overlay {
    background: rgba(0, 0, 0, 0.8);
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 20px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.video-element.playing {
    display: block;
}

.controls {
    display: none;
}

@media (max-width: 768px) {
    .video-container {
        margin: 0 20px;
        margin-top: 60px;
    }
}



/* floor */
.top-floor {
    margin-top: 130px;
    padding-top: 80px;
    padding-bottom: 120px;
    background: #F0EFE9;
}

@media screen and (max-width: 600px) {
    .top-floor {
        margin-top: 80px;
        padding-top: 40px;
        padding-bottom: 50px;
    }
}

.top-floor__inner-left {
    transform: translateY(35%);
    position: relative;
    z-index: 0;
}

.top-floor__inner-right {
    width: 88%;
    position: relative;
    z-index: 1;
    margin: 0 0 0 auto;
}

@media screen and (max-width: 600px) {
    .top-floor__inner-right {
        transform: translateX(25px);
        width: 100%;
    }
}

.top-floor__inner-right-img img {
    aspect-ratio: 1/.6;
}

@media screen and (max-width: 600px) {
    .top-floor__inner-right-img img {
        aspect-ratio: 1/1;
    }
}

.top-floor__content {
    margin-top: 190px;
}

@media screen and (max-width: 600px) {
    .top-floor__content {
        margin-top: 80px;
    }
}


.top-floor__content-inner {
    padding-right: 40px;
    display: grid;
    grid-template-columns: .5fr 1fr;
    gap: 100px;
}

@media screen and (max-width: 1080px) {
    .top-floor__content-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 600px) {
    .top-floor__content-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-right: 0;
    }
}

.top-floor__content-ttl {
    font-size: 60px;
    font-weight: 300;
    font-family: "IBM Plex Sans JP", sans-serif;
    margin-bottom: 40px;
}

@media screen and (max-width: 600px) {
    .top-floor__content-ttl {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 600px) {
    .top-floor__content-ttl {
        font-size: 35px;
    }
}

@media screen and (max-width: 600px) {
    .top-floor__content-left-head {
        padding-bottom: 40px;
    }
}

.top-floor__content-txt-check {
    line-height: 2;
}

.top-floor__content-ttl--2f {
    margin-bottom: 40px;
}

.top-floor__content-txt {
    padding-top: 32px;
    line-height: 2;
    padding-bottom: 30px;
    margin-top: 10px;
    border-top: 1px solid #000;
}

@media screen and (max-width: 600px) {
    .top-floor__content-txt {
        font-size: 14px;
    }
}

.top-floor__content-txt-ttl {
    font-size: 18px;
    font-weight: 400;
}


.top-floor__slider-wrap {
    width: 85%;
    margin: 0 0 0 auto;
}

@media screen and (max-width: 600px) {
    .top-floor__slider-wrap {
        width: calc(100% - 25px);
        margin: 0 0 0 auto;
    }

}

.top-floor__slider {
    margin-top: 120px;
    overflow: hidden;
    padding-bottom: 72px;
    position: relative;
}

@media screen and (max-width: 600px) {
    .top-floor__slider {
        margin-top: 80px;
        padding-bottom: 30px;
    }
}

@media screen and (max-width: 600px) {
    .top-floor__slider .swiper-pagination {
        position: absolute;
        width: 85%;
        bottom: 0;
        left: calc(50% - 12.5px);
        transform: translateX(-50%);
    }
}



.top-floor__slider .swiper-pagination-bullet {
    width: 140px;
    height: 2px;
    border-radius: 2px;
    background: #D8D8D8;
    opacity: 1;
}

@media screen and (max-width: 600px) {
    .top-floor__slider .swiper-pagination-bullet {
        width: 20%;
    }
}

.top-floor__slider .swiper-pagination-bullet-active {
    background: #818181;
}

.top-info__content {
    margin-top: 213px;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0;
}


.top-floor__slider-txt {
    font-size: 18px;
    padding-top: 20px;
    padding-bottom: 54px;
}

@media screen and (max-width: 600px) {
    .top-floor__slider-txt {
        font-size: 13px;
        padding-bottom: 36px;
    }
}

@media screen and (max-width: 600px) {
    .top-info__content {
        margin-top: 80px;
    }
}

.top-info__content-ttl {
    text-align: end;
    line-height: 1;
    transform: translateY(35%);
    position: relative;
    z-index: -1;
}

@media screen and (max-width: 600px) {
    .top-info__content-ttl {
        transform: translateY(15px);
    }
}

.top-info__content-ttl--area {
    transform: translateY(15%);
}

@media screen and (max-width: 600px) {
    .top-info__content-ttl--area {
        transform: translate(-25px, 15%);
    }
}

.top-info__content__inner {
    display: flex;
    gap: 64px;
    align-items: center;
}

@media screen and (max-width: 600px) {
    .top-info__content__inner {
        flex-direction: column;
        gap: 40px;
    }
}

.top-info__content__inner-left {
    width: 57vw;
}

@media screen and (max-width: 600px) {
    .top-info__content__inner-left {
        width: 100%;
        transform: translateX(-25px);
    }
}

.top-info__content__inner-left img {
    aspect-ratio: 1/.6;
}

@media screen and (max-width: 600px) {
    .top-info__content__inner-left img {
        aspect-ratio: 1/.8;
    }
}

.top-info__content__inner-right {
    flex-shrink: 0;
    width: 25vw;
}

@media screen and (max-width: 600px) {
    .top-info__content__inner-right {
        width: 100%;
    }
}

.top-info__content__inner-right-txt p {
    line-height: 2;
    margin-bottom: 72px;
}

@media screen and (max-width: 600px) {
    .top-info__content__inner-right-txt p {
        font-size: 14px;
    }
}

.top-floor__slider-attention {
    text-align: center;
    font-size: 15px;
}

@media screen and (max-width: 600px) {
    .top-floor__slider-attention {
        text-align: left;
        font-size: 13px;
        padding-right: 25px;
    }

}


/* top-access */
.top-access {
    background: #F0F0F0;
    margin-top: 200px;
    padding: 120px 0;
}

@media screen and (max-width: 600px) {
    .top-access {
        margin-top: 80px;
        padding: 80px 0;
    }
}

@media screen and (max-width: 600px) {
    .top-access__data {
        margin-top: 50px;
    }
}

.top-access__data-map a {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
    margin-top: 32px;
}

.top-access__data-map-icon {
    display: inline-block;
    width: 13px;
    line-height: 1;
    transform: translateY(-2px);
}

.top-access__data p {
    line-height: 2;
}

.top-access__data-txt {
    margin-top: 32px;
}

.top-access__data-tel {
    margin-top: 50px;
}

.top-access__img {
    margin-top: 80px;
}


/* top-message */
.top-message {
    padding-top: 180px;
    padding-bottom: 250px;
}

@media screen and (max-width: 600px) {
    .top-message {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.top-message .m-section-ttl {
    text-align: center;
}

.top-message__contents {
    display: grid;
    grid-template-columns: .7fr 1fr;
    gap: 100px;
    margin-top: 120px;
    align-items: end;
}

@media screen and (max-width: 1080px) {
    .top-message__contents {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: flex-start;
    }
}

@media screen and (max-width: 600px) {
    .top-message__contents {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 80px;
    }
}

.top-message__contents-left {
    max-width: 680px;
    line-height: 2.2;
}

.top-message__contents-left-txt p {
    width: fit-content;
    margin: 0 0 0 auto;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

@media screen and (max-width: 600px) {
    .top-message__contents-left p {
        font-size: 14px;
        margin-top: 40px;
    }
}

@media screen and (max-width: 600px) {
    .top-message__contents-right img {
        transform: translateX(25px);
    }
}



/*************** HISTORY **************/

.history-page__content {
    padding-top: 160px;
    background: #F8F8F8;
}

@media screen and (max-width: 600px) {
    .history-page__content {
        padding-top: 100px;
    }
}

.history-page__content-first-img {
    width: 70vw;
}

.history-page__content-first-img img {
    aspect-ratio: 1/.6;
}

@media screen and (max-width: 600px) {
    .history-page__content-first-img img {
        aspect-ratio: 1/.8;
    }
}

.history-page__content-inner {
    width: 90%;
    margin: 0 auto;
    padding-top: 200px;
    padding-bottom: 80px;
}

@media screen and (max-width: 600px) {
    .history-page__content-inner {
        width: 100%;
        padding-top: 60px;
    }
}

.history-page__content-num {
    font-size: clamp(50px, 10vw, 150px);
    font-weight: 100;
    color: #B4B4B4;
    line-height: 1;
    margin-bottom: 60px;
}

@media screen and (max-width: 600px) {
    .history-page__content-num {
        margin-bottom: 15px;
    }
}

.history-page__content-desc {
    font-size: 24px;
}

@media screen and (max-width: 600px) {
    .history-page__content-desc {
        font-size: 18px;
    }
}

.history-page__content-txt {
    line-height: 2.2;
}

@media screen and (max-width: 600px) {
    .history-page__content-txt {
        margin-top: 60px;
        font-size: 14px;
    }
}

.history-page__gallery-inner {
    display: flex;
    gap: 10px;
    margin-top: 120px;
    justify-content: space-between;
}

@media screen and (max-width: 600px) {
    .history-page__gallery-inner {
        margin-top: 60px;
        flex-direction: column;
    }
}

.history-page__gallery .history-page__gallery-item:nth-child(1) {
    width: 40vw;
}

@media screen and (max-width: 600px) {
    .history-page__gallery .history-page__gallery-item:nth-child(1) {
        width: 80%;
    }
}

.history-page__gallery .history-page__gallery-item:nth-child(2) {
    width: 20vw;
    transform: translateY(120px);
}

@media screen and (max-width: 600px) {
    .history-page__gallery .history-page__gallery-item:nth-child(2) {
        width: 50vw;
        margin: 0 0 0 auto;
        margin-top: 30px;
        transform: translateY(0);
    }
}

.history-page__gallery .history-page__gallery-item--big {
    width: 30vw;
    margin: 0 0 0 auto;
    position: relative;
    z-index: 10;
    margin-top: 80px;
    transform: translateX(-55%);
}

@media screen and (max-width: 600px) {
    .history-page__gallery .history-page__gallery-item--big {
        width: 70vw;
        margin: 0;
        position: relative;
        z-index: 10;
        margin-top: 0px;
        transform: translate(0%, -0%);
        margin-top: -50px;
    }
}

@media screen and (max-width: 600px) {
    .history-page__gallery-02-inner {
        width: 80%;
        margin: 0 auto;
        gap: 30px;
    }
}


.history-page__gallery-item {
    width: 100%;
    height: 100%;
}

.history-page__content-end {
    padding-top: 300px;
    padding-bottom: 200px;
}

@media screen and (max-width: 600px) {
    .history-page__content-end {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.history-page__content-end-head {
    text-align: center;
    font-size: 18px;
}

.history-page__content-end-txt {
    line-height: 2;
    text-align: center;
    margin-top: 80px;
}

@media screen and (max-width: 600px) {
    .history-page__content-end-txt {
        text-align: left;
    }
}

/*************** GASTRONOMY **************/


.gastronomy-page__content {
    padding-top: 160px;
    background: #F8F8F8;
}

@media screen and (max-width: 600px) {
    .gastronomy-page__content {
        padding-top: 40px;
    }
}


.gastronomy-page__concept-txt {
    text-align: center;
    line-height: 2;
}

@media screen and (max-width: 600px) {
    .gastronomy-page__concept-txt {
        font-size: 14px;
        text-align: left;
    }
}

.gastronomy-page__concept-txt--sub {
    max-width: 730px;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 80px;
    text-align: center;
    font-size: 14px;
    padding: 20px 10px;
    line-height: 2;
    border-top: 1px solid #C7C7C7;
    border-bottom: 1px solid #C7C7C7;
}

@media screen and (max-width: 600px) {
    .gastronomy-page__concept-txt--sub {
        font-size: 13px;
    }
}

.gastronomy-page__content .m-section-ttl {
    text-align: center;
}



.gastronomy-page__concept-txt {
    margin-top: 48px;
}

@media screen and (max-width: 600px) {
    .gastronomy-page__concept-wrap-inner-item {
        font-size: 14px;
    }
}

.gastronomy-page__concept-wrap-inner-item-num {
    margin-bottom: 22px;
}


.gastronomy-page__concept-wrap-inner-item-head {
    margin-bottom: 40px;
}

.gastronomy-page__concept-wrap-inner-item-txt {
    line-height: 2;
}


.gastronomy-page__concept-wrap-inner-line {
    width: 1px;
    border-right: 1px solid #C7C7C7;
    height: 100%;
}



.gastronomy-page__concept-wrap-inner {
    grid-template-columns: 1fr 1px 1fr;
    gap: 80px;
    margin-top: 72px;
}

@media screen and (max-width: 600px) {
    .gastronomy-page__concept-wrap-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}


.gastronomy-page__menu {
    margin-top: 136px;
    border-top: 1px solid #000;
}


.gastronomy-page__menu-num span {
    width: 120px;
    height: 120px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    margin: 0 auto;
    background: #F8F8F8;
}

@media screen and (max-width: 600px) {
    .gastronomy-page__menu-num span {
        width: 90px;
        height: 90px;
    }
}

.gastronomy-page__menu-head {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}


.gastronomy-page__menu-head::after {
    content: "";
    display: block;
    width: 1.5em;
    height: 2px;
    background: #000;
}


.gastronomy-page__menu-head-txt {
    margin-top: 40px;
    text-align: center;
    line-height: 2;
    margin-bottom: 30px;
}

@media screen and (max-width: 600px) {
    .gastronomy-page__menu-head-txt {
        font-size: 14px;
        margin-bottom: 50px;
    }
}

.gastronomy-page__break-fast {
    padding: 200px 0;
}

@media screen and (max-width: 600px) {
    .gastronomy-page__break-fast {
        padding: 100px 0;
    }
}

.gastronomy-page__break-fast-txt {
    text-align: center;
    line-height: 2.2;
    margin-top: 40px;
    margin-bottom: 80px;
}

@media screen and (max-width: 600px) {
    .gastronomy-page__break-fast-txt {
        text-align: left;
        font-size: 14px;
    }
}


.gastronomy-page__break-fast-img-wrap-inner {
    grid-template-columns: 1fr 1fr;
    width: 60%;
    margin: 0 auto;
}


@media screen and (max-width: 600px) {
    .gastronomy-page__break-fast-img-wrap-inner {
        gap: 0;
        grid-template-columns: 1fr;
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .gastronomy-page__break-fast-img-wrap-inner__img {
        margin-bottom: 10px;
        width: 80%;
    }
}

.gastronomy-page__break-fast-img-wrap {

    display: grid;
    gap: 10px;
    margin-top: 88px;
    margin: 0 auto;
}

@media screen and (max-width: 600px) {
    .gastronomy-page__break-fast-img-wrap {
        gap: 0;
    }
}

@media screen and (max-width: 600px) {
    .gastronomy-page__break-fast-img-wrap-inner__img--right {
        margin: 0 0 0 auto;
        margin-bottom: 10px;
    }
}


/*************** FEATURE **************/
.feature-page__content {
    background: #F8F8F8;
    padding-top: 20px;
    padding-bottom: 300px;
}

@media screen and (max-width: 600px) {
    .feature-page__content {
        padding-bottom: 150px;
    }
}

.feature-page__content-inner {
    padding-top: 200px;
}

@media screen and (max-width: 600px) {
    .feature-page__content-inner {
        padding-top: 150px;
    }
}

.feature-page__content-inner-wrap {
    align-items: center;
    display: flex;
    position: relative;
}

@media screen and (max-width: 600px) {
    .feature-page__content-inner-wrap {
        flex-direction: column-reverse;

    }
}

.feature-page__content-inner-wrap-left {
    padding: 80px;
    width: 50%;
    flex-shrink: 0;
}

@media screen and (max-width: 1080px) {
    .feature-page__content-inner-wrap-left {
        padding: 60px 20px;
    }
}

@media screen and (max-width: 600px) {
    .feature-page__content-inner-wrap-left {
        padding: 0;
        width: 100%;
        margin-top: 50px;
    }
}

.feature-page__content-ttl {
    white-space: nowrap;
    position: absolute;
    line-height: 1;
    top: 0;
    left: 0;
    transform: translate(.5em, -70%);
    z-index: 0;
}

@media screen and (max-width: 600px) {
    .feature-page__content-ttl {
        transform: translate(0, -70%);
    }
}

.feature-page__content-inner-wrap-left h3 {
    font-size: 18px;
    margin-bottom: 56px;
}

@media screen and (max-width: 600px) {
    .feature-page__content-inner-wrap-left h3 {
        margin-bottom: 50px;
    }
}

.feature-page__content-inner-wrap-left p {
    line-height: 2.2;
}

@media screen and (max-width: 600px) {
    .feature-page__content-inner-wrap-left p {
        font-size: 14px;
    }
}

.feature-page__content-inner-wrap-right-img {
    position: relative;
    z-index: 10;
}

@media screen and (max-width: 600px) {
    .feature-page__content-inner-wrap-right-img {
        width: 90%;
        margin: 0 0 0 auto;
    }
}

.feature-page__content-inner-wrap-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-page__content-slider {
    padding-top: 150px;
}

@media screen and (max-width: 600px) {
    .feature-page__content-slider {
        padding-top: 64px;
    }
}

.feature-page__content-gallery {
    margin-top: 110px;
}

@media screen and (max-width: 600px) {
    .feature-page__content-gallery {
        margin-top: 64px;
    }
}

.feature-page__content-gallery-inner-item figcaption {
    font-size: 14px;
    margin-top: 18px;
    padding-left: 10px;
}


@media screen and (max-width: 600px) {
    .feature-page__content-gallery-inner-item figcaption {
        font-size: 13px;
    }

}


/*************** ABOUT **************/

.about-page__content {
    background: #F8F8F8;
    padding-top: 160px;
    padding-bottom: 200px;
}

.about-page__content .m-section-ttl {
    line-height: 1.1;
}

@media screen and (max-width: 600px) {
    .about-page__content {
        padding-top: 80px;
        padding-bottom: 100px;
    }
}

.about-page__content-inner {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 600px) {
    .about-page__content-inner {
        flex-direction: column-reverse;
        margin-top: 40px;
    }
}

.about-page__content-inner-left {
    width: 50%;
    padding: 80px;
    margin-top: 72px;
}

@media screen and (max-width: 1080px) {
    .about-page__content-inner-left {
        width: 50%;
        padding: 16px;
        margin-top: 0;
    }
}

@media screen and (max-width: 600px) {
    .about-page__content-inner-left {
        width: 100%;
        padding: 0;
    }
}

.about-page__content-inner-left h3 {
    font-size: 18px;
    margin-bottom: 56px;
}

@media screen and (max-width: 600px) {
    .about-page__content-inner-left h3 {
        margin-bottom: 30px;
        margin-top: 28px;
    }
}

.about-page__content-inner-left p {
    line-height: 2.2;
}

@media screen and (max-width: 600px) {
    .about-page__content-inner-left p {
        font-size: 14px;
    }
}

.about-page__content-inner-right {
    width: 50%;
    padding: 80px;
}

@media screen and (max-width: 1080px) {
    .about-page__content-inner-right {
        width: 50%;
        padding: 16px;
    }
}

@media screen and (max-width: 600px) {
    .about-page__content-inner-right {
        padding: 0;
        width: 90%;
        margin: 0 0 0 auto;
        margin-top: 40px;
        transform: translateX(25px);
    }
}

.about-page__content-inner--reverse {
    flex-direction: row-reverse;
}

@media screen and (max-width: 600px) {
    .about-page__content-inner--reverse {
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 600px) {
    .about-page__content-inner--reverse .about-page__content-inner-right {
        transform: translateX(-50px);
        margin: 0;
        margin-top: 40px;
    }
}

.art-spot {
    padding-top: 200px;
}

@media screen and (max-width: 600px) {
    .art-spot {
        padding-top: 120px;
    }
}

.art-spot__head p {
    line-height: 2;
    margin-top: 1em;
}

.art-spot__content {
    margin-top: 80px;
    background: #fff;
    padding: 70px 50px;
}

@media screen and (max-width: 600px) {
    .art-spot__content {
        padding: 40px 20px;
    }
}

.art-spot__content-wrap {
    display: flex;
    gap: 42px;
}

@media screen and (max-width: 600px) {
    .art-spot__content-wrap {
        flex-direction: column-reverse;
    }
}

.art-spot__content-inner-left {
    width: 64%;
    flex-shrink: 0;
}

@media screen and (max-width: 1080px) {
    .art-spot__content-inner-left {
        width: 50%;
        flex-shrink: 0;
    }
}

@media screen and (max-width: 600px) {
    .art-spot__content-inner-left {
        width: 100%;
    }
}

.art-spot__content-inner-right h4 {
    font-size: 18px;
    margin-top: 18px;
    margin-bottom: 40px;
}

.art-spot__content-inner-right {
    width: 100%;
}

.art-spot__content-txt {
    width: 64%;
    line-height: 2;
    margin-top: 20px;
}

@media screen and (max-width: 1080px) {
    .art-spot__content-txt {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .art-spot__content-txt {
        width: 100%;
        font-size: 14px;
    }
}

.art-spot__content-map {
    border-top: 1px solid #C7C7C7;
}

.art-spot__content-map {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 40px;
}

@media screen and (max-width: 600px) {
    .art-spot__content-map {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        font-size: 14px;
    }
}

.art-spot__content-map a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

@media screen and (max-width: 600px) {
    .art-spot__content-map a {
        justify-content: flex-start;
    }
}


.art-spot__content-map-icon {
    display: inline-block;
    width: 13px;
    line-height: 1;
    transform: translateY(-2px);
}

.art-spot__content-map p {
    flex-shrink: 0;

}