@charset "UTF-8";

/* =========================================================
   ABOUT PAGE
========================================================= */

/* =========================================================
   Reset
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    background: #0b0b0b;
    color: #fff;
    font-family:
        "Noto Serif JP",
        "Yu Mincho",
        YuMincho,
        serif;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

a {
    color: inherit;
}


/* =========================================================
   Header
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 92px;

    background: transparent;

    z-index: 9999;

    transition:
        background .35s ease,
        border-color .35s ease;
}

.header-inner {
    width: min(92%, 1400px);
    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    position: relative;

    display: flex;
    align-items: center;

    width: 180px;
}

.header-logo img {
    width: 180px;
    height: auto;

    transition: opacity .35s ease;
}

.logo-black {
    position: absolute;

    top: 0;
    left: 0;

    opacity: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 34px;
}

.header-btn {
    color: #d4b06a;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 13px;

    letter-spacing: .16em;

    text-decoration: none;

    transition:
        color .3s ease,
        opacity .3s ease;
}

.header-btn:hover {
    color: #fff;
}

.hamburger {
    width: 42px;
    height: 42px;

    padding: 0;

    border: none;
    background: transparent;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 7px;

    cursor: pointer;
}

.hamburger span {
    display: block;

    width: 32px;
    height: 2px;

    background: #d4b06a;

    border-radius: 10px;

    transition:
        transform .35s ease,
        opacity .35s ease,
        background .35s ease;
}

.hamburger:hover span {
    background: #fff;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


/* =========================================================
   Header Scroll
========================================================= */

.header.scrolled {
    background: rgba(255, 255, 255, .96);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid #ececec;
}

.header.scrolled .logo-white {
    opacity: 0;
}

.header.scrolled .logo-black {
    opacity: 1;
}

.header.scrolled .header-btn {
    color: #222;
}

.header.scrolled .header-btn:hover {
    color: #b78b2e;
}

.header.scrolled .hamburger span {
    background: #222;
}


/* =========================================================
   Global Menu
========================================================= */

.global-menu {
    position: fixed;

    top: 0;
    right: -420px;

    width: 420px;
    max-width: 88%;
    height: 100vh;

    background: #0b0b0b;
    color: #fff;

    z-index: 9998;

    padding: 90px 70px;

    overflow-y: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-left: 1px solid rgba(212, 176, 106, .18);

    transition:
        right .65s cubic-bezier(.77, 0, .18, 1);
}

.global-menu.active {
    right: 0;
}

.global-menu ul {
    width: 100%;

    margin: 0;
    padding: 0;

    list-style: none;
}

.global-menu li {
    margin: 0 0 24px;

    opacity: 0;

    transform: translateX(35px);

    transition:
        opacity .6s ease,
        transform .6s cubic-bezier(.22, 1, .36, 1);
}

.global-menu.active li {
    opacity: 1;
    transform: translateX(0);
}

.global-menu li:nth-child(1) {
    transition-delay: .08s;
}

.global-menu li:nth-child(2) {
    transition-delay: .14s;
}

.global-menu li:nth-child(3) {
    transition-delay: .20s;
}

.global-menu li:nth-child(4) {
    transition-delay: .26s;
}

.global-menu li:nth-child(5) {
    transition-delay: .32s;
}

.global-menu li:nth-child(6) {
    transition-delay: .38s;
}

.global-menu li:nth-child(7) {
    transition-delay: .44s;
}

.global-menu li:nth-child(8) {
    transition-delay: .50s;
}

.global-menu li:nth-child(9) {
    transition-delay: .56s;
}

.global-menu a {
    display: block;

    color: #fff;

    font-family:
        "Cormorant Garamond",
        "Times New Roman",
        serif;

    font-size: 27px;

    font-weight: 400;

    letter-spacing: .08em;

    text-decoration: none;

    transition:
        color .3s ease,
        transform .3s ease;
}

.global-menu a:hover {
    color: #d4b06a;

    transform: translateX(6px);
}

.global-menu .sp-menu {
    margin-top: 18px;
}

.global-menu .sp-menu a {
    color: #d4b06a;

    font-size: 18px;

    letter-spacing: .18em;
}

.menu-overlay {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .68);

    opacity: 0;
    visibility: hidden;

    z-index: 9997;

    transition:
        opacity .5s ease,
        visibility .5s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}


/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 720px;

    overflow: hidden;

    background: #000;
}

.about-hero__image {
    position: absolute;

    inset: 0;

    z-index: 1;
}

.about-hero__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.about-hero__overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .72) 0%,
            rgba(0, 0, 0, .40) 45%,
            rgba(0, 0, 0, .12) 100%
        );
}

.about-hero__content {
    position: absolute;

    left: 9%;
    bottom: 13%;

    z-index: 3;

    max-width: 760px;
}

.about-hero__label {
    margin-bottom: 28px;

    color: #d4b06a;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 15px;

    letter-spacing: .38em;
}

.about-hero__title {
    color: #fff;

    font-family:
        "Noto Serif JP",
        "Yu Mincho",
        YuMincho,
        serif;

    font-size: clamp(42px, 5vw, 76px);

    font-weight: 300;

    line-height: 1.45;

    letter-spacing: .06em;
}

.about-hero__line {
    width: 54px;
    height: 1px;

    margin: 38px 0 30px;

    background: #c9a45b;
}

.about-hero__text {
    color: rgba(255, 255, 255, .88);

    font-size: 16px;

    font-weight: 300;

    line-height: 2.3;

    letter-spacing: .08em;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.about-introduction {
    background: #0d0d0d;

    padding: 150px 0;
}

.about-introduction__inner {
    width: min(1200px, 84%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: 38% 62%;

    gap: 80px;
}

.about-introduction__heading {
    padding-top: 8px;
}

.section-label {
    margin-bottom: 25px;

    color: #d4b06a;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 14px;

    letter-spacing: .35em;
}

.about-introduction__heading h2 {
    color: #fff;

    font-size: clamp(30px, 3vw, 46px);

    font-weight: 300;

    line-height: 1.6;

    letter-spacing: .08em;
}

.about-introduction__content {
    border-left: 1px solid rgba(201, 164, 91, .35);

    padding-left: 70px;
}

.about-introduction__content p {
    margin-bottom: 32px;

    color: #e8e8e8;

    font-size: 17px;

    font-weight: 300;

    line-height: 2.4;

    letter-spacing: .08em;
}

.about-introduction__content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   FEATURE COMMON
========================================================= */

.about-feature {
    width: 100%;
    max-width: 1600px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    background: #111;
}

.about-feature__image {
    position: relative;

    min-height: 720px;

    overflow: hidden;
}

.about-feature__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 1.2s ease;
}

.about-feature__image:hover img {
    transform: scale(1.025);
}

.about-feature__content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 110px 9%;
}

.about-feature__number {
    margin-bottom: 18px;

    color: #c9a45b;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 14px;

    letter-spacing: .25em;
}

.about-feature__label {
    margin-bottom: 28px;

    color: #d4b06a;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 14px;

    letter-spacing: .35em;
}

.about-feature__content h2 {
    color: #fff;

    font-size: clamp(32px, 3vw, 52px);

    font-weight: 300;

    line-height: 1.55;

    letter-spacing: .06em;
}

.about-feature__line {
    width: 54px;
    height: 1px;

    margin: 38px 0;

    background: #c9a45b;
}

.about-feature__content p:not(
    .about-feature__number
):not(
    .about-feature__label
) {
    margin-bottom: 25px;

    color: #ddd;

    font-size: 15px;

    font-weight: 300;

    line-height: 2.3;

    letter-spacing: .07em;
}

.about-feature__content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   FEATURE ALTERNATE
========================================================= */

.about-feature--02 .about-feature__content,
.about-feature--04 .about-feature__content {
    order: 1;
}

.about-feature--02 .about-feature__image,
.about-feature--04 .about-feature__image {
    order: 2;
}


/* =========================================================
   CONCEPT
========================================================= */

.about-concept {
    position: relative;

    min-height: 850px;

    overflow: hidden;

    background: #000;
}

.about-concept__image {
    position: absolute;

    inset: 0;

    z-index: 1;
}

.about-concept__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.about-concept__overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .86) 0%,
            rgba(0, 0, 0, .60) 50%,
            rgba(0, 0, 0, .35) 100%
        );
}

.about-concept__content {
    position: relative;

    z-index: 3;

    width: min(1200px, 84%);

    min-height: 850px;

    margin: 0 auto;

    padding: 130px 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-concept__label {
    margin-bottom: 28px;

    color: #d4b06a;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 14px;

    letter-spacing: .4em;
}

.about-concept__content h2 {
    color: #fff;

    font-size: clamp(36px, 4vw, 62px);

    font-weight: 300;

    line-height: 1.5;

    letter-spacing: .07em;
}

.about-concept__line {
    width: 54px;
    height: 1px;

    margin: 42px 0 38px;

    background: #c9a45b;
}

.about-concept__text {
    max-width: 680px;
}

.about-concept__text p {
    margin-bottom: 28px;

    color: rgba(255, 255, 255, .88);

    font-size: 16px;

    font-weight: 300;

    line-height: 2.3;

    letter-spacing: .08em;
}

.about-concept__text .about-concept__strong {
    margin: 45px 0;

    color: #d4b06a;

    font-size: clamp(24px, 2.5vw, 36px);

    letter-spacing: .12em;
}


/* =========================================================
   RESERVE
========================================================= */

.about-reserve {
    background: #0d0d0d;

    padding: 160px 30px;

    text-align: center;
}

.about-reserve__inner {
    max-width: 900px;

    margin: 0 auto;
}

.about-reserve__label {
    margin-bottom: 35px;

    color: #d4b06a;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 15px;

    letter-spacing: .42em;
}

.about-reserve h2 {
    color: #fff;

    font-size: clamp(32px, 4vw, 54px);

    font-weight: 300;

    line-height: 1.6;

    letter-spacing: .08em;
}

.about-reserve__text {
    margin-top: 35px;

    color: #ddd;

    font-size: 16px;

    line-height: 2.2;

    letter-spacing: .08em;
}

.about-reserve__button {
    display: inline-flex;

    align-items: center;

    gap: 30px;

    margin-top: 55px;

    padding: 16px 0;

    border-bottom: 1px solid #c9a45b;

    color: #d4b06a;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 16px;

    letter-spacing: .2em;

    text-decoration: none;

    transition:
        color .3s ease,
        border-color .3s ease;
}

.about-reserve__button span:last-child {
    font-size: 22px;

    transition: transform .3s ease;
}

.about-reserve__button:hover {
    color: #fff;

    border-color: #fff;
}

.about-reserve__button:hover span:last-child {
    transform: translateX(8px);
}


/* =========================================================
   Footer
========================================================= */

.footer {
    background: #080808;

    padding: 90px 0 40px;

    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-inner {
    width: min(1200px, 84%);

    margin: 0 auto;
}

.footer-logo {
    display: block;

    width: 180px;

    margin-bottom: 60px;
}

.footer-links {
    display: flex;

    flex-wrap: wrap;

    gap: 28px 40px;

    padding-bottom: 55px;

    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-links a {
    color: #aaa;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 14px;

    letter-spacing: .12em;

    text-decoration: none;

    transition: color .3s ease;
}

.footer-links a:hover {
    color: #d4b06a;
}

.footer-bottom {
    padding-top: 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.footer-bottom a,
.footer-bottom p {
    color: #666;

    font-size: 11px;

    letter-spacing: .08em;

    text-decoration: none;
}


/* =========================================================
   Tablet
========================================================= */

@media screen and (max-width: 1024px) {

    .about-hero {
        min-height: 680px;
    }

    .about-feature__image {
        min-height: 600px;
    }

    .about-feature__content {
        padding: 80px 7%;
    }

    .about-introduction {
        padding: 120px 0;
    }

    .about-introduction__inner {
        gap: 50px;
    }

    .about-introduction__content {
        padding-left: 45px;
    }

}


/* =========================================================
   Smartphone
========================================================= */

@media screen and (max-width: 768px) {

    /* Header */

    .header {
        height: 72px;
    }

    .header-inner {
        width: 92%;
    }

    .header-logo,
    .header-logo img {
        width: 165px;
    }

    .header-right {
        gap: 18px;
    }

    .header-btn {
        display: none;
    }

    .hamburger {
        width: 38px;
        height: 38px;
    }

    .hamburger span {
        width: 30px;
    }


    /* Global Menu */

    .global-menu {
        right: -100%;

        width: 100%;
        max-width: 100%;

        padding: 90px 12%;

        border-left: none;
    }

    .global-menu.active {
        right: 0;
    }

    .global-menu a {
        font-size: 25px;
    }

    .global-menu li {
        margin-bottom: 22px;
    }

    .global-menu .sp-menu {
        margin-top: 14px;
    }

    .global-menu .sp-menu a {
        font-size: 17px;
    }


    /* Hero */

    .about-hero {
        height: 100svh;
        min-height: 620px;
    }

    .about-hero__image img {
        object-position: center;
    }

    .about-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, .68),
                rgba(0, 0, 0, .25)
            );
    }

    .about-hero__content {
        left: 8%;
        right: 8%;
        bottom: 10%;

        max-width: none;
    }

    .about-hero__label {
        margin-bottom: 20px;

        font-size: 12px;

        letter-spacing: .3em;
    }

    .about-hero__title {
        font-size: 35px;

        line-height: 1.55;
    }

    .about-hero__line {
        margin: 28px 0 24px;
    }

    .about-hero__text {
        font-size: 13px;

        line-height: 2.1;
    }


    /* Introduction */

    .about-introduction {
        padding: 90px 0;
    }

    .about-introduction__inner {
        width: 84%;

        display: block;
    }

    .about-introduction__heading {
        margin-bottom: 50px;
    }

    .about-introduction__heading h2 {
        font-size: 29px;
    }

    .about-introduction__content {
        padding-left: 25px;
    }

    .about-introduction__content p {
        font-size: 14px;

        line-height: 2.2;

        margin-bottom: 25px;
    }


    /* Feature */

    .about-feature {
        display: flex;

        flex-direction: column;
    }

    .about-feature__image {
        order: 1 !important;

        width: 100%;

        min-height: 0;

        aspect-ratio: 4 / 3;
    }

    .about-feature__content {
        order: 2 !important;

        padding: 75px 8% 85px;
    }

    .about-feature__number {
        margin-bottom: 14px;

        font-size: 12px;
    }

    .about-feature__label {
        margin-bottom: 22px;

        font-size: 12px;

        letter-spacing: .3em;
    }

    .about-feature__content h2 {
        font-size: 28px;

        line-height: 1.65;
    }

    .about-feature__line {
        margin: 30px 0;
    }

    .about-feature__content p:not(
        .about-feature__number
    ):not(
        .about-feature__label
    ) {
        font-size: 13px;

        line-height: 2.15;

        margin-bottom: 22px;
    }


    /* Concept */

    .about-concept {
        min-height: 760px;
    }

    .about-concept__image img {
        object-position: center;
    }

    .about-concept__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, .82),
                rgba(0, 0, 0, .52)
            );
    }

    .about-concept__content {
        width: 84%;

        min-height: 760px;

        padding: 90px 0;
    }

    .about-concept__label {
        margin-bottom: 22px;

        font-size: 12px;
    }

    .about-concept__content h2 {
        font-size: 29px;

        line-height: 1.65;
    }

    .about-concept__line {
        margin: 30px 0;
    }

    .about-concept__text p {
        font-size: 13px;

        line-height: 2.15;

        margin-bottom: 23px;
    }

    .about-concept__text .about-concept__strong {
        margin: 35px 0;

        font-size: 23px;
    }


    /* Reserve */

    .about-reserve {
        padding: 100px 25px;
    }

    .about-reserve__label {
        margin-bottom: 25px;

        font-size: 12px;

        letter-spacing: .3em;
    }

    .about-reserve h2 {
        font-size: 27px;

        line-height: 1.7;
    }

    .about-reserve__text {
        margin-top: 28px;

        font-size: 13px;

        line-height: 2.1;
    }

    .about-reserve__button {
        margin-top: 40px;

        font-size: 14px;

        gap: 20px;
    }


    /* Footer */

    .footer {
        padding: 70px 0 30px;
    }

    .footer-logo {
        width: 155px;

        margin-bottom: 45px;
    }

    .footer-links {
        gap: 22px 28px;

        padding-bottom: 40px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom p {
        margin-top: 15px;
    }

}
/* ========================================
   PRICE SECTION HERO
======================================== */

.price-section__hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    margin-bottom: 90px;
}

.price-section__hero .price-section__heading {
    margin-bottom: 0;
}

.price-section__hero .price-section__image {
    width: 100%;
    max-width: none;
    margin: 0;
}

.price-section__hero .price-section__image img {
    display: block;
    width: 100%;
    height: auto;
}


/* ========================================
   SMARTPHONE
======================================== */

@media screen and (max-width: 768px) {

    .price-section__hero {
        display: flex;
        flex-direction: column;
        gap: 35px;
        margin-bottom: 60px;
    }

    .price-section__hero .price-section__heading {
        width: 100%;
    }

    .price-section__hero .price-section__image {
        width: 100%;
    }

}