@charset "utf-8";
/* CSS Document */

/* =========================================================
   HEADER / NAV
     siteHeader 10000 / globalNav 10001 / menuBtn 10002
========================================================= */

.siteHeader {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10000;
    opacity: 0;
    transform: translateY(-18px);
    transition:
        opacity .9s var(--ease),
        transform .9s var(--ease);
}

body.is-ready .siteHeader {
    opacity: 1;
    transform: none;
    transition-delay: .35s;
}


/* =========================================================
   MENU BUTTON
========================================================= */

.menuBtn {
    position: relative;
    z-index: 10002;
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    background: #050505;
    border: 0;
    cursor: pointer;
    pointer-events: auto;
    overflow: visible;
    transition: background .35s var(--ease);
}

.menuBtn:hover,
body.nav-open .menuBtn {
    background: #111;
}

.menuBtn__icon {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
}

.menuBtn__icon span {
    position: absolute;
    left: 0;
    top: 50%;
    width: 48px;
    height: 2px;
    background: var(--accent-bright);
    transform-origin: center;
    transition:
        transform .55s cubic-bezier(.76, 0, .24, 1),
        width .35s var(--ease),
        background .35s var(--ease);
}

.menuBtn__icon span:nth-child(1) {
    transform: translateY(-8px);
}

.menuBtn__icon span:nth-child(2) {
    transform: translateY(8px);
}

.menuBtn:hover .menuBtn__icon span {
    width: 58px;
}

body.nav-open .menuBtn__icon span:nth-child(1) {
    width: 52px;
    transform: translateY(0) rotate(45deg);
}

body.nav-open .menuBtn__icon span:nth-child(2) {
    width: 52px;
    transform: translateY(0) rotate(-45deg);
}


/* =========================================================
   GLOBAL NAV
========================================================= */

.globalNav {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, .96);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity .45s var(--ease),
        visibility .45s var(--ease);
}

.globalNav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.globalNav::before {
    content: "LAST STAND";
    position: absolute;
    left: -4vw;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--serif);
    font-size: clamp(120px, 16vw, 300px);
    line-height: 1;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .025);
    white-space: nowrap;
    pointer-events: none;
}

.globalNav__inner {
    position: relative;
    z-index: 2;
    width: min(1080px, 88vw);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    counter-reset: nav;
}


/* =========================================================
   NAV LINK
========================================================= */

.globalNav__inner > a {
    position: relative;
    display: block;
    padding-left: 54px;
    color: #fff;
    text-decoration: none;
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 58px);
    line-height: 1.1;
    counter-increment: nav;
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity .45s,
        transform .45s,
        color .35s,
        padding-left .35s;
}

.globalNav__inner > a::before {
    content: counter(nav, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 16px;
    font-family: var(--serif);
    letter-spacing: .18em;
}

.globalNav__inner > a::after {
    content: "";
    position: absolute;
    left: 64px;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width .4s var(--ease);
}

.globalNav.is-open .globalNav__inner > a {
    opacity: 1;
    transform: none;
}

.globalNav__inner > a:hover {
    color: var(--accent);
    padding-left: 56px;
}

.globalNav__inner > a:hover::after {
    width: 100%;
}


/* =========================================================
   NAV OPEN STAGGER
========================================================= */

.globalNav.is-open a:nth-child(1) {
    transition-delay: .08s;
}

.globalNav.is-open a:nth-child(2) {
    transition-delay: .14s;
}

.globalNav.is-open a:nth-child(3) {
    transition-delay: .20s;
}

.globalNav.is-open a:nth-child(4) {
    transition-delay: .26s;
}

.globalNav.is-open a:nth-child(5) {
    transition-delay: .32s;
}

.globalNav.is-open a:nth-child(6) {
    transition-delay: .38s;
}

.globalNav.is-open a:nth-child(7),
.globalNav.is-open a:nth-child(8),
.globalNav.is-open a:nth-child(9),
.globalNav.is-open a:nth-child(10) {
    transition-delay: .40s;
}


/* =========================================================
   GLOBAL NAV PROJECT
========================================================= */

.globalNav__inner > a.globalNav__project {
    padding-top: 12px;
    border-top: 1px solid rgba(168, 152, 88, .18);
    color: var(--accent);
}


/* =========================================================
   GLOBAL NAV SNS
========================================================= */

.globalNav__sns {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(168, 152, 88, .18);
}

.globalNav__snsList {
    display: flex;
    align-items: center;
    gap: 18px;
}

.globalNav__snsList a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    opacity: .75;
    transition:
        opacity .35s,
        transform .35s;
}

.globalNav__snsList a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.globalNav__snsList img {
    display: block;
    width: 22px;
    height: 22px;
}


/* =========================================================
   GLOBAL NAV / PC
   Current computed appearance is preserved.
========================================================= */

@media (min-width: 861px) {

    .globalNav__inner {
        width: min(1120px, 86vw);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: clamp(56px, 8vw, 130px);
        row-gap: 18px;
        align-items: start;
    }

    .globalNav__inner > a {
        min-width: 0;
    }

    .globalNav__inner > a.globalNav__project {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 8px;
    }

    .globalNav__sns {
        grid-column: 1 / -1;
        margin-top: 10px;
    }
}


/* =========================================================
   GLOBAL NAV / SP
========================================================= */

@media (max-width: 860px) {

    .siteHeader {
        width: auto;
        display: flex;
        justify-content: flex-end;
    }

    .menuBtn {
        width: 64px;
        height: 64px;
        background: rgba(8, 8, 8, .92);
        backdrop-filter: blur(10px);
    }

    .menuBtn__icon {
        width: 34px;
        height: 34px;
    }

    .menuBtn__icon span {
        width: 34px;
        height: 1px;
    }

    .menuBtn:hover .menuBtn__icon span {
        width: 40px;
    }

    body.nav-open .menuBtn__icon span {
        width: 38px;
    }

    .globalNav::before {
        display: none;
    }

    .globalNav__inner {
        width: 90vw;
        gap: 12px;
    }

    .globalNav__inner > a {
        font-size: 22px;
    }

    .globalNav__inner > a::before {
        width: 36px;
        font-size: 12px;
    }

    .globalNav__inner > a::after {
        left: 40px;
    }

    .globalNav__sns {
        margin-top: 0px;
        padding-top: 20px;
    }

    .globalNav__snsList {
        gap: 16px;
    }
}


/* =========================================================
   SPECIAL PROJECT
========================================================= */
.specialProject {
    position:relative;
    display:flex;
    align-items:center;
   justify-content:flex-end;
    gap:34px;
    padding:30px 24px;
    background:#070707;
    border-top:1px solid rgba(168,152,88,.18);
    border-bottom:1px solid rgba(168,152,88,.12);
}

.specialProject__label {
    margin:0;
    color:var(--accent);
    font-family:var(--serif);
    font-size:.9rem;
    font-weight:600;
    letter-spacing:.28em;
    white-space:nowrap;
}

.specialProject__banner {
    display:block;
  width:min(520px,56vw);
}

.specialProject__banner img {
    display:block;
    width:100%;
    height:auto;
}
.specialProject__banner:hover {
    transform:translateY(-4px);
    border-color:rgba(168,152,88,.7);
}
@media (max-width:860px) {
    .specialProject {
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:16px;
        padding:24px 18px;
        text-align:center;
    }

    .specialProject__label {
        font-size:.78rem;
        letter-spacing:.22em;
    }

    .specialProject__banner {
        width:min(100%, 520px);
    }

    .specialProject__banner:hover {
        transform:none;
    }
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:28px;
    padding:70px 20px 68px;
    overflow:hidden;
    background:#030303;
}

.footer::before {
    content:"FINAL ACT";
    position:absolute;
    left:50%;
    bottom:0px;
    transform:translateX(-50%);
    color:rgba(255,255,255,.035);
    font-family:var(--serif);
    font-size:clamp(90px,17vw,240px);
    line-height:.8;
    letter-spacing:0;
    white-space:nowrap;
    pointer-events:none;
}

.footer__logo {
    position:relative;
    z-index:1;
    width:min(360px,66vw);
    margin:0;
}

.footer__logo img {
    display:block;
    width:100%;
    height:auto;
}

.footer__sns {
    position:relative;
    z-index:1;
    display:flex;
    justify-content:center;
    gap:22px;
}
/* COPYRIGHT */
.footer small {
    position:relative;
    z-index:1;
    margin-top:12px;
    color:var(--muted);
    font-family:var(--serif);
}

/* SNS */
.footer__sns {
    position:relative; z-index:1;
    display:flex; justify-content:center;
    gap:22px;
    margin:0 auto 70px;
}
.footer__sns a {
    opacity:.7;
    transition:opacity .3s, transform .3s;
}
.footer__sns a:hover {
    opacity:1; transform:translateY(-3px);
}
.footer__sns img {
    display:block; width:24px; height:24px;
}



/* SP */
@media(max-width:860px) {
    .footer {
        padding:38px 20px 86px;
    }

    .footer::before {
        bottom:90px;
        font-size:24vw;
    }

    .footer__sns {
        margin-bottom:56px;
    }

    .footer__logo {
        width:80%;
    }

    .footer small {
        margin-top:0;
        align-self:center;
    }
}
/* =========================================================
   PC / SP VISIBILITY
========================================================= */

.sp {
    display: none !important;
}

.pc {
    display: block !important;
}

@media (max-width: 860px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }
}


/* =========================================================
   FLOATING BANNER
========================================================= */

.floatingBanner {
    position: fixed;
    left: 40px;
    bottom: 40px;
    z-index: 950;
    width: 240px;
    display: flex;
    flex-direction: column;
    gap: 14px;

    opacity: 0;
    transform: translateY(32px) scale(.98);
    filter: blur(8px);

    transition:
        opacity 2s cubic-bezier(.22, .61, .36, 1),
        transform 2.2s cubic-bezier(.22, .61, .36, 1),
        filter 2.2s cubic-bezier(.22, .61, .36, 1);

    will-change: opacity, transform, filter;
}

body.is-ready .floatingBanner {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    transition-delay: 3.5s;
}

.floatingBanner__item {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 14px;
    background: rgba(18, 16, 14, .92);
    backdrop-filter: blur(24px);
    border-top: 2px solid rgba(181, 166, 106, .28);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
    transition:
        background .35s var(--ease),
        border-color .35s var(--ease),
        transform .35s var(--ease);
}

.floatingBanner__line {
    display: block;
    width: 42px;
    height: 2px;
    background: var(--accent-bright);
    transition: width .45s var(--ease);
}

.floatingBanner__title {
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.25;
    color: #fff;
}

.floatingBanner__item:hover {
    transform: translateY(-3px);
    background: rgba(24, 21, 18, .96);
    border-color: rgba(181, 166, 106, .55);
}

.floatingBanner__item:hover .floatingBanner__line {
    width: 92px;
}


/* =========================================================
   FLOATING BANNER / SP
========================================================= */

@media (max-width: 860px) {

    .floatingBanner {
        left: 8px;
        bottom: 8px;
        width: 160px;
        gap: 5px;
    }

    .floatingBanner__item {
        padding: 10px 8px 10px 10px;
        gap: 8px;
    }

    .floatingBanner__title {
        font-size: 14px;
    }

    .floatingBanner__line {
        width: 28px;
    }

    .floatingBanner__item:hover .floatingBanner__line {
        width: 58px;
    }
}
/* =========================================================
   INVIEW VARIATION
========================================================= */
.js-inview {
    opacity:0;
    filter:blur(4px);
    transition:
        opacity .7s var(--ease),
        transform .9s var(--ease),
        filter .8s var(--ease);
    will-change:opacity, transform;
}

.js-inview.is-inview {
    opacity:1;
    filter:blur(0);
}

.fade-up,
.slide-left,
.slide-right,
.zoom-in {
    transition:
        opacity .7s var(--ease),
        transform .9s var(--ease),
        filter .8s var(--ease);
}

.fade-up {
    transform:translateY(80px);
}
.fade-up.is-inview {
    transform:translateY(0);
}

.slide-left {
    transform:translateX(-100px);
}
.slide-left.is-inview {
    transform:translateX(0);
}

.slide-right {
    transform:translateX(100px);
}
.slide-right.is-inview {
    transform:translateX(0);
}

.zoom-in {
    transform:scale(.86);
}
.zoom-in.is-inview {
    transform:scale(1);
}