/* =========================================================
   VENUE PAGE
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #f8f6f2;
    color: #333;
    font-family:
        "Noto Sans JP",
        "Yu Gothic",
        "YuGothic",
        sans-serif;
    font-weight: 300;
    line-height: 1.9;
}

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

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

.venue-container {
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;
}

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}



/* =========================================================
   HERO
========================================================= */

.venue-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
}

.venue-hero-image {
    position: absolute;
    inset: 0;

    /*
       ここにTOP画像を置きます
       ↓
       /img/venue/hero.jpg
    */
    background-image: url("../img/hero.jpg");
    background-size: cover;
    background-position: center;
}

.venue-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(20, 18, 15, 0.62) 0%,
            rgba(20, 18, 15, 0.22) 55%,
            rgba(20, 18, 15, 0.08) 100%
        );
}

.venue-hero-content {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;

    padding-bottom: clamp(70px, 10vh, 130px);
}

.venue-hero-en {
    margin: 0 0 18px;

    font-family: "Cormorant Garamond", serif;
    font-size: 15px;
    letter-spacing: 0.3em;
}

.venue-hero h1 {
    margin: 0;

    font-family:
        "Noto Sans JP",
        sans-serif;

    font-size: clamp(34px, 4.3vw, 65px);
    font-weight: 300;
    line-height: 1.55;
    letter-spacing: 0.08em;
}

.venue-hero-text {
    max-width: 720px;

    margin: 35px 0 0;

    font-size: 14px;
    line-height: 2.1;
    letter-spacing: 0.08em;
}


.venue-hero-text,
.venue-intro-text,
.area-heading > p:last-child,
.venue-description,
.venue-message p {
    font-family: "Meiryo", "Yu Gothic", Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;

}

/* =========================================================
   COMMON
========================================================= */

.section-en {
    margin: 0 0 8px;

    font-family: "Cormorant Garamond", serif;

    font-size: 15px;
    letter-spacing: 0.32em;

    color: #a18b70;
}



/* =========================================================
   INTRO
========================================================= */

.venue-intro {
    padding: 140px 0;
    background: #fff;
}

.venue-intro-inner {
    text-align: center;
}

.venue-intro h2 {
    margin: 18px 0 35px;

    font-size: clamp(25px, 2.6vw, 38px);
    font-weight: 300;

    line-height: 1.8;
    letter-spacing: 0.07em;
}

.venue-intro-text {
    margin: 8px 0;

    font-size: 14px;
    line-height: 2.1;

    color: #666;
}



/* =========================================================
   AREA NAV
========================================================= */

.area-nav {
    display: flex;
    justify-content: center;

    max-width: 720px;

    margin: 75px auto 0;

    border-top: 1px solid #d8d1c8;
    border-bottom: 1px solid #d8d1c8;
}

.area-nav a {
    position: relative;

    flex: 1;

    padding: 22px 20px;

    font-size: 11px;
    letter-spacing: 0.15em;

    transition: 0.3s;
}

.area-nav a + a {
    border-left: 1px solid #d8d1c8;
}

.area-nav span {
    display: block;

    margin-bottom: 2px;

    font-family: "Cormorant Garamond", serif;

    font-size: 20px;
    letter-spacing: 0.18em;
}

.area-nav a:hover {
    background: #f3efe9;
}



/* =========================================================
   AREA
========================================================= */

.venue-area {
    padding: 145px 0;
}

.venue-area-light {
    background: #fff;
}

.area-heading {
    margin-bottom: 100px;
    text-align: center;
}

.area-heading h2 {
    margin: 0 0 20px;

    font-size: clamp(30px, 3vw, 45px);
    font-weight: 300;

    letter-spacing: 0.15em;
}

.area-heading > p:last-child {
    margin: 0;

    font-size: 14px;
    color: #777;

    line-height: 2;
}



/* =========================================================
   VENUE CARD
========================================================= */

.venue-card {
    display: grid;

    grid-template-columns:
        minmax(0, 1.3fr)
        minmax(360px, 0.7fr);

    align-items: center;

    gap: clamp(50px, 7vw, 110px);

    margin-bottom: 160px;
}

.venue-card:last-child {
    margin-bottom: 0;
}

.venue-card.reverse {
    grid-template-columns:
        minmax(360px, 0.7fr)
        minmax(0, 1.3fr);
}

.venue-card.reverse .venue-image {
    order: 2;
}

.venue-card.reverse .venue-content {
    order: 1;
}



/* IMAGE */

.venue-image {
    position: relative;
    overflow: hidden;

    aspect-ratio: 4 / 3;

    background: #e8e4de;
}

.venue-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.venue-card:hover .venue-image img {
    transform: scale(1.025);
}



/* CONTENT */

.venue-content {
    padding: 15px 0;
}

.venue-area-label {
    margin: 0 0 18px;

    font-family: "Cormorant Garamond", serif;

    font-size: 13px;
    letter-spacing: 0.3em;

    color: #a18b70;
}

.venue-content h3 {
    margin: 0;

    font-size: clamp(24px, 2.1vw, 34px);

    font-weight: 400;

    line-height: 1.6;
    letter-spacing: 0.06em;
}

.venue-sub {
    margin: 7px 0 30px;

    font-family: "Cormorant Garamond", serif;

    font-size: 13px;
    letter-spacing: 0.12em;

    color: #999;
}

.venue-copy {
    margin: 0 0 23px;

    font-size: 18px;

    line-height: 1.9;
    letter-spacing: 0.05em;
}

.venue-description {
    margin: 0;

    font-size: 13px;
    line-height: 2.1;

    color: #676767;
}



/* =========================================================
   POINT TAGS
========================================================= */

.venue-points {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 30px;
}

.venue-points span {
    padding: 6px 13px;

    border: 1px solid #c9bba9;

    font-family: "Cormorant Garamond", serif;

    font-size: 11px;
    letter-spacing: 0.14em;

    color: #806e59;
}

.venue-partner {
    margin: 22px 0 0;

    font-family: "Cormorant Garamond", serif;

    font-size: 11px;
    letter-spacing: 0.25em;

    color: #aaa;
}



/* =========================================================
   LAST MESSAGE
========================================================= */

.venue-message {
    padding: 170px 30px;

    background:#c9bba9;

    color: #fff;
}

.venue-message-inner {
    max-width: 800px;
    margin: 0 auto;

    text-align: center;
}

.venue-message .section-en {
    color: #fff;
}

.venue-message h2 {
    margin: 20px 0 50px;

    font-size: clamp(27px, 3vw, 42px);

    font-weight: 300;

    line-height: 1.75;
    letter-spacing: 0.07em;
}

.venue-message p {
    margin: 10px 0;

    font-size: 14px;
    line-height: 2.2;

    color: rgba(255,255,255,.78);
}

.venue-logo-text {
    margin-top: 70px;

    font-family: "Cormorant Garamond", serif;

    font-size: 25px;
    letter-spacing: 0.15em;
}


/* =========================================================
   VENUE ITEM
========================================================= */

.venue-item {
    margin-bottom: 170px;
}

.venue-item:last-child {
    margin-bottom: 0;
}


/* 元々venue-cardに付いていた下余白をなくす */
.venue-item .venue-card {
    margin-bottom: 35px;
}


/* =========================================================
   SUB IMAGES
========================================================= */

.venue-sub-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    width: 100%;
}

.venue-sub-image {
    overflow: hidden;

    aspect-ratio: 16 / 9;

    background: #e8e4de;
}

.venue-sub-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.venue-sub-image:hover img {
    transform: scale(1.025);
}

/* ========================================
   VENUE HEADER
======================================== */

.venue-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 50px;

    z-index: 1000;

    transition:
        background-color 0.4s ease,
        box-shadow 0.4s ease;
}


/* スクロール後 */

.venue-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}


/* ========================================
   LOGO
======================================== */

.venue-header-logo {
    position: relative;
    z-index: 1100;

    color: #fff;

    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.18em;

    text-decoration: none;

    transition: color 0.3s ease;
}


.venue-header.is-scrolled .venue-header-logo {
    color: #222;
}


/* メニューOPEN時 */

.venue-header.menu-open .venue-header-logo {
    color: #222;
}


/* ========================================
   HAMBURGER
======================================== */

.venue-menu-button {
    position: relative;
    z-index: 1100;

    width: 46px;
    height: 46px;

    padding: 0;

    border: none;
    background: transparent;

    cursor: pointer;
}


.venue-menu-button span {
    position: absolute;
    left: 8px;

    width: 30px;
    height: 1px;

    background: #fff;

    transition:
        transform 0.35s ease,
        top 0.35s ease,
        opacity 0.25s ease,
        background-color 0.3s ease;
}


.venue-menu-button span:nth-child(1) {
    top: 14px;
}

.venue-menu-button span:nth-child(2) {
    top: 22px;
}

.venue-menu-button span:nth-child(3) {
    top: 30px;
}


/* スクロール後 */

.venue-header.is-scrolled .venue-menu-button span {
    background: #222;
}


/* ========================================
   HAMBURGER OPEN
======================================== */

.venue-header.menu-open .venue-menu-button span {
    background: #222;
}


.venue-header.menu-open .venue-menu-button span:nth-child(1) {
    top: 22px;
    transform: rotate(45deg);
}


.venue-header.menu-open .venue-menu-button span:nth-child(2) {
    opacity: 0;
}


.venue-header.menu-open .venue-menu-button span:nth-child(3) {
    top: 22px;
    transform: rotate(-45deg);
}


/* ========================================
   FULL SCREEN MENU
======================================== */

.venue-menu {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;
    height: 100dvh;

    background: rgba(248, 247, 244, 0.98);

    z-index: 900;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}


.venue-menu.is-open {
    opacity: 1;
    visibility: visible;
}


/* ========================================
   MENU LINKS
======================================== */

.venue-menu-nav {
    width: min(500px, 80%);

    display: flex;
    flex-direction: column;
}


.venue-menu-nav a {
    display: flex;
    align-items: baseline;

    padding: 13px 0;

    color: #222;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 400;
    letter-spacing: 0.08em;

    text-decoration: none;

    border-bottom: 1px solid rgba(0, 0, 0, 0.12);

    transition:
        padding-left 0.25s ease,
        opacity 0.25s ease;
}


.venue-menu-nav a span {
    width: 45px;

    font-family: "Noto Sans JP", sans-serif;
    font-size: 9px;
    letter-spacing: 0.1em;

    opacity: 0.45;
}


.venue-menu-nav a:hover {
    padding-left: 10px;
    opacity: 0.55;
}


/* ========================================
   MENU BOTTOM
======================================== */

.venue-menu-bottom {
    position: absolute;

    bottom: 35px;
    left: 50%;

    transform: translateX(-50%);

    font-family: "Cormorant Garamond", serif;
    font-size: 12px;
    letter-spacing: 0.25em;

    color: #777;

    white-space: nowrap;
}


/* メニュー表示中はスクロール禁止 */

body.menu-open {
    overflow: hidden;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

    .venue-header {
        height: 70px;
        padding: 0 20px;
    }


    .venue-header-logo {
        font-size: 14px;
        letter-spacing: 0.14em;
    }


    .venue-menu-button {
        width: 40px;
        height: 40px;
    }


    .venue-menu-button span {
        left: 7px;

        width: 26px;
    }


    .venue-menu-button span:nth-child(1) {
        top: 12px;
    }

    .venue-menu-button span:nth-child(2) {
        top: 20px;
    }

    .venue-menu-button span:nth-child(3) {
        top: 28px;
    }


    .venue-header.menu-open .venue-menu-button span:nth-child(1),
    .venue-header.menu-open .venue-menu-button span:nth-child(3) {
        top: 20px;
    }


    .venue-menu-nav {
        width: calc(100% - 60px);
    }


    .venue-menu-nav a {
        padding: 11px 0;

        font-size: 31px;
    }


    .venue-menu-nav a span {
        width: 38px;
        font-size: 8px;
    }


    .venue-menu-bottom {
        bottom: 25px;

        font-size: 10px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .venue-container {
        width: min(100% - 50px, 900px);
    }

    .venue-hero-content {
        width: calc(100% - 50px);
    }

    .venue-card,
    .venue-card.reverse {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

}



/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 767px) {

    body {
        line-height: 1.8;
    }

    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }

    .venue-container {
        width: calc(100% - 40px);
    }


    /* HERO */

    .venue-hero {
        min-height: 82svh;
    }

    .venue-hero-content {
        width: calc(100% - 40px);

        padding-bottom: 60px;
    }

    .venue-hero-en {
        margin-bottom: 12px;

        font-size: 12px;
    }

    .venue-hero h1 {
        font-size: clamp(30px, 8vw, 42px);

        line-height: 1.55;
    }

    .venue-hero-text {
        margin-top: 25px;

        font-size: 11px;

        line-height: 2;
    }



    /* INTRO */

    .venue-intro {
        padding: 90px 0 100px;
    }

    .venue-intro h2 {
        margin-top: 12px;

        font-size: 20px;

        line-height: 1.8;
    }

    .venue-intro-text {
        font-size: 11px;
    }



    /* NAV */

    .area-nav {
        margin-top: 50px;
    }

    .area-nav a {
        padding: 17px 5px;

        font-size: 10px;
    }

    .area-nav span {
        font-size: 17px;
        letter-spacing: 0.1em;
    }



    /* AREA */

    .venue-area {
        padding: 95px 0;
    }

    .area-heading {
        margin-bottom: 65px;
    }

    .area-heading h2 {
        font-size: 30px;
    }

    .area-heading > p:last-child {
        font-size: 11px;
    }



    /* CARD */

    .venue-card,
    .venue-card.reverse {
        display: flex;
        flex-direction: column;

        gap: 0;

        margin-bottom: 100px;
    }

    .venue-card.reverse .venue-image,
    .venue-card.reverse .venue-content {
        order: initial;
    }

    .venue-image {
        width: 100%;

        aspect-ratio: 4 / 3;
    }

    .venue-content {
        width: calc(100% - 24px);

        margin: -25px 0 0 auto;

        padding: 32px 22px 10px 26px;

        position: relative;
        z-index: 2;

        background: #f8f6f2;
    }

    .venue-area-light .venue-content {
        background: #fff;
    }

    .venue-area-label {
        margin-bottom: 10px;
    }

    .venue-content h3 {
        font-size: 23px;
    }

    .venue-sub {
        margin-bottom: 22px;
    }

    .venue-copy {
        font-size: 16px;
    }

    .venue-description {
        font-size: 11px;
        line-height: 2;
    }

    .venue-points {
        margin-top: 20px;
    }



    /* MESSAGE */

    .venue-message {
        padding: 110px 25px;
    }

    .venue-message h2 {
        margin-bottom: 40px;

        font-size: 20px;
    }

    .venue-message p {
        font-size: 11px;
        line-height: 2.1;
    }

    .venue-logo-text {
        margin-top: 55px;

        font-size: 21px;
    }

    .venue-item {
        margin-bottom: 110px;
    }

    .venue-item .venue-card {
        margin-bottom: 20px;
    }

    .venue-sub-images {
        gap: 7px;
    }

    .venue-sub-image {
        aspect-ratio: 4 / 3;
    }
    
    .venue-hero-text,
    .venue-intro-text,
    .area-heading > p:last-child,
    .venue-description,
    .venue-message p {
        font-size: 11px;
        font-weight: 400;
        line-height: 1.9;
    }

}


/* =========================================================
   VERY SMALL
========================================================= */

@media (max-width: 400px) {

    .venue-container,
    .venue-hero-content {
        width: calc(100% - 30px);
    }

    .venue-hero h1 {
        font-size: 28px;
    }

    .venue-content {
        width: calc(100% - 12px);

        padding-left: 20px;
        padding-right: 15px;
    }

}