@charset "UTF-8";

:root {
    --zIndex-screenKV1: 800;
    --zIndex-screenKVmovie: 810;
    --zIndex-screenKV2: 820;
    --zIndex-menu: 825;
    --zIndex-lang: 825;
    --zIndex-opening: 850;
    --zIndex-screenEnter: 900;
    --zIndex-loading: 1000;
    --jp-font: "Century Sans JP", sans-serif;
    --en-font: "Century Sans EN", sans-serif;
    --fw-Regular: 400;
    --fw-ExtraLight: 200;
    --color-black: #000;
    --color-white: #fff;
    --color-orange: #FF5700;
}
a,
button {
    color: inherit;
    text-decoration: none;
    border: none;
}
button:hover {
    cursor: pointer;
}
img {
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
}
.sr_only {
    position: absolute;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border-width: 0;
    white-space: nowrap;
}

.text_wrap {
    display: flex;
    overflow: hidden;
}
.letter {
    overflow: hidden;
    transition-property: translate;
    transition-duration: 0.7s;
    transition-delay: calc(var(--index) * 0.04s);
    translate: 0 100%;
    display: inline-block;
}
.letter:nth-child(1)  {--index:0;}
.letter:nth-child(2)  {--index:1;}
.letter:nth-child(3)  {--index:2;}
.letter:nth-child(4)  {--index:3;}
.letter:nth-child(5)  {--index:4;}
.letter:nth-child(6)  {--index:5;}
.letter:nth-child(7)  {--index:6;}
.letter:nth-child(8)  {--index:7;}
.letter:nth-child(9)  {--index:8;}
.letter:nth-child(10) {--index:9;}
.letter:nth-child(11) {--index:10;}
.letter:nth-child(12) {--index:11;}
.letter:nth-child(13) {--index:12;}
.letter:nth-child(14) {--index:13;}
.letter:nth-child(15) {--index:14;}
.animation_loaded .cm.is_active .cm_btn .letter,
.animation_loaded .menu .letter,
.animation_loaded .lang_btn_list .letter,
.animation_loaded .cm_select_list .letter,
.animation_loaded .js_text_wrap.is_animated .letter {
    translate: 0 0;
}
.hover_text_wrap {
    overflow: hidden;
    display: block;
    height: 1em;
    line-height: 1;
}

.hover_text_after {
    display: inline-block;
    transition: transform .6s;
    transform-origin: 0% 100%;
    transform: translate(0px, 0%) skew(0deg, 32deg) scale(1, 1);
}
.hover_text_before {
    width: max-content;
    transition: transform .6s;
    transform-origin: 100% 100%;
    transform: translate(0px, 0px) skew(0deg, 0deg) scale(1, 1);
}
.hover_text:hover .hover_text_after,
.cm_btn_wrap:hover .cm_btn .hover_text_after {
    transform: translate(0px, -100%) skew(0deg, 0deg) scale(1, 1);
}
.hover_text:hover .hover_text_before,
.cm_btn_wrap:hover .cm_btn .hover_text_before {
    transform: translate(0px, -100%) skew(0deg, 32deg) scale(1, 1);
}

.hover_text_line {
    width: 100%;
    height: 3px;
    background-color: var(--color-black);
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
}
.animation_ready .hover_text_line {
    transform: scale(0,1);
    transition: transform .6s .1s;
    transform-origin: left center;
}
.animation_loaded .cm.is_active .hover_text_line {
    transform: scale(1,1);
}
@keyframes hover_line {
    0% {
        transform: scale(1,1);
        transform-origin: right center;
    }
    33% {
        transform: scale(0,1);
        transform-origin: right center;
    }
    50% {
        transform: scale(0,1);
        transform-origin: left center;
    }
    100% {
        transform: scale(1,1);
        transform-origin: left center;
    }
}
@keyframes hover_line_reverse {
    0% {
        transform: scale(1,1);
        transform-origin: left center;
    }
    33% {
        transform: scale(0,1);
        transform-origin: left center;
    }
    50% {
        transform: scale(0,1);
        transform-origin: right center;
    }
    100% {
        transform: scale(1,1);
        transform-origin: right center;
    }
}
@media (min-width: 769px) {
    @media(hover:hover) {
        .hover_text:hover .hover_text_line {
            animation: hover_line .8s forwards;
        }
    }
}
@media (max-width: 768px) {
    html {
        font-size: calc(100 / 375 * 1vw);
    }
    body {
        font-size: 16rem;
    }
} 

@font-face {
    font-family: "Century Sans EN";
    font-display: swap;
    src: url("../fonts/CenturySansEN2510-Regular.otf") format("opentype");
    font-weight: 400;
}
@font-face {
    font-family: "Century Sans EN";
    font-display: swap;
    src: url("../fonts/CenturySansEN2510-ExtraLight.otf") format("opentype");
    font-weight: 200;
}
.font_en {
    font-family: var(--en-font);
    font-weight: var(--fw-Regular);
}
.fw200 {
    font-weight: var(--fw-ExtraLight);
}
.fw400 {
    font-weight: var(--fw-Regular);
}

body {
    background-color: var(--color-black);
    color: var(--color-white);
}

.wrapper {
    font-family: var(--en-font);
}
.wrapper.scroll_off {
    height: 100vh;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
@media (min-width: 769px) {
    .sp_only {
        display: none!important;
    }
}
@media (max-width: 768px) {
    .pc_only {
        display: none!important;
    }
}

/* loading */
.loading {
    background-color: var(--color-black);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    z-index: var(--zIndex-loading);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 1s;
    row-gap: 40px;
}
.loading_text {
    color: rgba(255,255,255,0.5);
    font-size: 18px; 
    animation: blink 0.3s ease-in infinite alternate;
}
.loading_line {
    width: 80px;
    height: 1px;
    position: relative;
    display: block;
    background-color: rgba(255,255,255,0.5);
    animation: loadingLine 1.5s infinite ;
}
@media (max-width: 768px) {
    .loading {
        row-gap: 40rem;
    }
    .loading_text {
        font-size: 18rem;
    }
    .loading_line {
        width: 80rem;
    }
}
@keyframes blink {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}
@keyframes loadingLine {
    0% {
        scale: 0 1;
        transform-origin: 0 0;
    }
    50% {
        scale: 1 1;
        transform-origin: 0 0;
    }
    50.1% {
        scale: 1 1;
        transform-origin: 100% 0;
    }
    100% {
        scale: 0 1;
        transform-origin: 100% 0;
    }
}
.main_content {
    overflow: clip;
}
.kv_wrap {
    height: 100vh;
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
}
.kv_1 {
    overflow: clip;
    flex-shrink: 0;
    background-color: var(--color-black);
    position: relative;
    z-index: var(--zIndex-screenKV1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.kv_2 {
    flex-shrink: 0;
    z-index: var(--zIndex-screenKV2);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150vh;
    opacity: 0;
    pointer-events: none;
}
.kv_space {
    height: 70vh;
    position: relative;
}
.kv_space2 {
    height:100vh;
    position: relative;
}

.opening {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--zIndex-opening);
    background-color: var(--color-black);
}
.opening_video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
@media (max-width: 768px) {
    .opening {
        background: url(../images/kv_noise.jpg) no-repeat center center;
        background-size: cover;
    }
    .opening_video {
        height: 375rem;
        position: relative;
        top: calc(50dvh - 187.5rem);
    }
}

/* header */
.header {
    position: fixed;
    z-index: var(--zIndex-menu);
    opacity: 0;
    translate: 0 -100%;
    transition: translate .6s, opacity .6s;
}
.has-scrolled .header {
    translate: 0 0;
    opacity: 1;
}
@media (min-width: 769px) {
    .header {
        top: 24px;
        left: 40px;
    }
    .header_logo {
        width: 231px;
    }
}
@media (max-width: 768px) {
    .header {
        top: 20rem;
        left: 20rem;
    }
    .header_logo {
        width: 180rem;
    }
}

.lang_btn_list {
    display: flex;
    position: absolute;
    z-index: var(--zIndex-lang);
}
.lang_btn_list > li + li {
    position: relative;
}
.lang_btn_list > li + li::before {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: 50%;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: var(--color-white);
    rotate: 12deg;
}
.lang_btn {
    display: block;
}
.lang_btn:not(.hover_text) {
    opacity: 0.5;
}
@media (min-width: 769px) {
    .lang_btn_list {
        right: 20px;
        top: 20px;
        font-size: 12px;
        column-gap: 8px;
    }
    .lang_btn_list > li + li::before {
        left: -4px;
    }
    .lang_btn {
        padding: 8px 10px;
    }    
}
@media (max-width: 768px) {
    .lang_btn_list {
        right: 20rem;
        top: 20rem;
        font-size: 12rem;
        column-gap: 8rem;
    }
    .lang_btn_list > li + li::before {
        left: -4rem;
    }
    .lang_btn {
        padding: 4rem 5rem;
    }
}


.menu {
    position: fixed;
    z-index: var(--zIndex-menu);
    color: var(--color-white);
    text-transform: uppercase;
    pointer-events: none;
    opacity: 0;
}
.menu a {
    display: block;
    color: var(--color-white);
}
.menu > ul > li {
    opacity: 1;
}
.menu > ul > li.is_active {
    opacity: .5;
}
.menu .hover_text_wrap {
    margin-left: auto;
    max-width: max-content;
}
@media (min-width: 769px) {
    .menu {
        bottom: 20px;
        right: 20px;
        font-size: 14px;
    }
    .menu a {
        padding: 10px 0;
    }
}
@media (max-width: 768px) {
    .menu {
        bottom: 45rem;
        right: 14rem;
        font-size: 14rem;
    }
    .menu a {
        padding: 7rem;
        display: block;
    }
    .menu a {
        padding: 10rem 0;
    }
}

.kv_1_inner {
    position: relative;
    overflow: hidden;
    pointer-events: none;
}
.kv_1_scale {
    height: 100%;
}
.kv_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/kv_bg.jpg) no-repeat center center / cover;
}
.kv_mayu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
}
.kv_mayu img {
    object-fit: cover;
    object-position: center center;
    height: 100%;
    width: auto;
}
.kv_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    translate: -50% 0;
}
.kv_logo img {
    translate: 0% -50%;
    width: 100%;
    height: auto;
}
.kv_enter {
    position: absolute;
    left: 50%;
    text-align: center;
    translate: -50% 0;
}
.kv_enter_txt {
    text-transform: uppercase;
    border: 1px solid var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.kv_enter_line {
    width: 10px;
    margin-inline: auto;
    position: relative;
    animation: scrollbarEnter 2.0s ease-in-out infinite;
}
.kv_enter_line::before,
.kv_enter_line::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
}
.kv_enter_line::before {
    width: 1px;
    height: 100%;
    top: 0;
    background-color: var(--color-white);
}
.kv_enter_line::after {
    bottom: 1px;
    border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
    rotate: 135deg;
}
@keyframes scrollbarEnter {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);/*全部みえている*/
    }
    35% {
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);/*下でつぶれている*/
    }
    50% {
        clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);/*上でつぶれている*/
    }
    51% {
        clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);/*上でつぶれている*/
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);/*全部みえている*/
    }
}

.kv_blur {   
    position: absolute;
    background-color: rgb(0 0 0 / 60%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    backdrop-filter: blur(0px);
    z-index: 830;
}
.kv_movie {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.kv_img2_wrap {
    position: sticky;
    bottom: 0;
    left: 0;
    z-index: 1;
    height: 100dvh;
    width: 100%;
    opacity: 0;
}
.kv_img2 {
    object-fit: cover;
    height: 100%;
    width: 100%;
    object-position: 50% 100%;
    transform-origin: 50% 100%;
}
.kv_ttl_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;  
    width: 100%;
    height: 100dvh;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
}
.kv_2_copy {
    position: absolute;
    z-index: 1;
    line-height: 0.9;
}
.kv_ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-black);
    opacity: 1;
    transition: opacity .6s;
}
.kv_ttl.is_hidden {
    opacity: 0;
}
.kv_scroll {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    text-align: center;
    opacity: 0;
    z-index: 1;
    transition: opacity .4s;
}
.kv_scroll.is_active {
    opacity: 1;
}
.kv_scroll_txt {
    rotate: 90deg;
    text-transform: uppercase;
}
.kv_scroll_line {
    position: relative;
    width: 1px;
    overflow: hidden;
    margin-inline: auto;
}
.kv_scroll_line::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    height: 100%;
    animation: scrollbarScroll 2.0s ease-in-out infinite;
}
@keyframes scrollbarScroll {
    0% {
        height: 0;
        top: 0;
    }
    30% {
        height: 100%;
    }
    100% {
        top: 100%;
    }
}
@media (min-width: 769px) {
    .kv_enter {
        bottom: 15px;
    }
    .kv_enter_txt {
        font-size: 14px;
        width: 120px;
        height: 30px;
    }
    .kv_enter_line {
        height: 40px;
        margin-top: 18px;
    }
    .kv_enter_line::after {
        width: 7px;
        height: 7px;
    }
    .kv_1_inner {
        height: 100%;
    }
    .kv_logo {
        width: 550px;
    }
    .kv_ttl {
        width: 680px;
    }
    .kv_scroll {
        right: 12px;
    }
    .kv_scroll_txt {
        font-size: 14px;
    }
    .kv_scroll_line {
        margin-top: 30px;
        height: 180px;
    }
    .kv_2_copy {
        font-size: 12px;
        bottom: 20px;
        left: 20px;
    }
}
@media (max-width: 768px) {
    .kv_enter {
        top: calc(100svh - 80rem);
    }
    .kv_enter_txt {
        font-size: 12rem;
        width: 100rem;
        height: 24rem;
    }
    .kv_enter_line {
        height: 30rem;
        margin-top: 10rem;
    }
    .kv_enter_line::after {
        width: 5rem;
        height: 5rem;
    }
    .kv_logo {
        width: 227rem;
    }
    .kv_1 {
        top: 0;
        height: 100%;
        height: 100dvh;
    }
    .kv_1,
    .kv_wrap {
        background: url(../images/kv_noise.jpg) no-repeat center center;
        background-size: cover;
    }
    .kv_1_inner {
        height: 375rem;
        top: calc(50dvh - 187.5rem);
        transition: height .8s ease-in-out,top .8s ease-in-out;
    }
    .kv_movie_wrap {
        height: 100dvh;
    }
    .kv_movie {
        height: 375rem;
        aspect-ratio: 1 / 1;
        top: calc(50dvh - 187.5rem);
        transition: height .8s ease-in-out,top .8s ease-in-out;
    }
    .has-scrolled .kv_movie {
        aspect-ratio: auto;
        top: 0;
        height: 100lvh;
    }
    .has-scrolled .kv_1_inner {
        height: 100vh;
        top: 0;
    }
    .kv_ttl_wrap {    
        row-gap: 40rem;
    }
    .kv_ttl {
        width: 275rem;
    }
    .kv_scroll {
        right: 0;
    }
    .kv_scroll_txt {
        font-size: 12rem;
    }
    .kv_scroll_line {
        margin-top: 30rem;
        height: 180rem;
    }
    .kv_img2_wrap {
        --notice-height:25rem;
    }
    .kv_img2 {
        height: calc(100% - var(--notice-height));
    }
    .kv_2_copy {
        background-color: var(--color-black);
        width: 100%;
        font-size: 11rem;
        bottom: 0;
        left: 0;
        height: var(--notice-height);
        padding: 0 10rem;
        display: flex;
        align-items: center;
    }
}

/* lead/statement */
.lead {
    position: relative;
    z-index: 2;
}
.lead_txt_wrap {
    margin: auto;
    position: relative;
}
@media (min-width: 769px) {
    .lead {
        padding: 100px 26px ;
    }
    .lead_txt_wrap {
        max-width: 660px;
    }
    .lead_txt {
        font-size: 31px;
        line-height: 3.1;
    }
    .lead_txt + .lead_txt {
        margin-top: 140px;
    }
    .lead_txt_pc {
        position: relative;
        display: block;
        overflow: hidden;
        white-space: nowrap;
    }
}
@media (max-width: 768px) {
    .lead {
        padding: 112rem 0rem;
    }
    .lead_txt_wrap {
        max-width: 320rem;
    }
    .lead_txt {
        font-size: 18rem;
        line-height: 3;
    }
    .lead_txt + .lead_txt {
        margin-top: 80rem;
    }
    .lead_txt_sp {
        position: relative;
        display: block;
        overflow: hidden;
        white-space: nowrap;
    }

}

/* cm */
.cm_wrap {
    position: relative;
    overflow: clip;
    margin-top: -100vh;
}
.cm_sticky {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; 
}
.cm_thumb {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    opacity: 0;
    overflow: hidden;
    will-change: scale;
}
.cm_thumb video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.cm_space1 {
    height: 100vh;
}
.cm_space2 {
    pointer-events: none;
}
.cm {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100lvh;
    margin-top: -100lvh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cm_btn_line {
    overflow: hidden;
    background-color: transparent;
}
.cm.is_active .cm_btn_line::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    animation: loopLine 1.5s infinite;
}
@keyframes loopLine {
    0% {
        clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
    }
    50% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
    50.1% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
    100% {
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    }
}
.cm_btn_wrap {
    position: relative;
}
.cm_btn {
    text-align: left;
    text-transform: uppercase;
    color: var(--color-black);
    position: relative;
    z-index: 1;
}
.cm_btn .hover_text_wrap:nth-of-type(1) {
    position: relative;
}
.cm_btn .hover_text_wrap:nth-of-type(1):after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    translate: 0 115%;
    background: url(../images/cm_arrow.svg) no-repeat right center / contain;
}
.cm.is_active .cm_btn .hover_text_wrap:nth-of-type(1):after {
    translate: 0 0px;
    transition: opacity .7s .17s, translate .7s .17s;
}
.cm_select {
    position: absolute;
    top: 100%;
    left: 50%;
    translate: -50% 0px;
    background-color: var(--color-orange);
    color: var(--color-black);
    opacity: 0;
    transition: opacity .4s 0s, translate .4s 0s;
    padding: 55px 50px 30px;
}
.cm_btn.is_hover + .cm_select,
.cm_btn.is_click + .cm_select {
    translate: -50% -20px;
    opacity: 1;
    transition: opacity .6s .4s, translate .6s .4s;
}
.cm_btn.is_hover .cm_btn_line,
.cm_btn.is_click .cm_btn_line {
    transition: background .3s;
    background: var(--color-black);
}
.cm_btn.is_hover .cm_btn_line::after,
.cm_btn.is_click .cm_btn_line::after {
    animation-play-state: paused;
}
.cm_select_group {
    display: flex;
    font-size: 14px;
    column-gap: 15px;
}
.cm_select_ttl {
    padding-block: 7px;
}
.cm_select_btn {
    position: relative;
    padding: 7px 0 7px 20px;
    text-transform: uppercase;
}
.cm_select_btn::before {
    content: '';
    width: 8px;
    height: 6px;
    background-color: var(--color-black);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media (min-width: 769px) {
    .cm_wrap {
        height: 400vh;/*sticky scroll distance*/
    }
    .cm_space2 {
        height: 200vh;
    }
    .cm_btn {
        font-size: 40px;
        padding-bottom: 20px;
    }
    .cm_btn .hover_text_wrap:nth-of-type(1):after {
        top: 3px;
        width: 32px;
        height: 32px;
    }
    .cm_thumb {
        width: 100%;
        height: 100%;
    }
    .cm_thumb_inner {
        height: 100vh;
    }
    .cm_btn_line {
        height: 3px;
    }
}
@media (max-width: 768px) {
    .cm_wrap {
        height: 350vh;/*sticky scroll distance*/
    }
    .cm_space2 {
        height: 100vh;
    }
    .cm_btn {
        font-size: 28rem;
        padding-bottom: 10rem;
    }
    .cm_btn .hover_text_wrap:nth-of-type(1):after {
        top: 3rem;
        width: 22rem;
        height: 22rem;
    }
    .cm_thumb {
        width: 100%;
        height: 100vw;
    }
    .cm_thumb_inner {
        overflow: hidden;
        height: 100%;
    }
    .cm_btn_line {
        height: 2rem;
    }
}
/* gallery/art */
.gallery {
    margin-inline: auto;
    display: flex;
}
.gallery_ttl {
    text-transform: uppercase;
    color: var(--color-orange);
}
.gallery_thumb_list {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.gallery_thumb_img img {
    width: 100%;
}
.gallery_copy {
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    line-height: 0.9;
    color: #878787;
}
@media (min-width: 769px) {
    .gallery {
        padding: 383px 40px 207px;
        gap: 40px 0;
    }
    .gallery_ttl {
        font-size: 40px;
        width: 20%;
        min-width: 230px;
    }
    .gallery_thumb_list {
        margin-top: -1.2%;
    }
    .gallery_thumb {
        width: 25%;
        padding: 2.4%;
    }
    .gallery_thumb::before {
        content: '';
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100lvh;
        pointer-events: none;
        opacity: 0;
        z-index: -1;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        background-image: var(--background);
    }
    .gallery_thumb:hover::before {
        opacity: 0.2;
    }
    .gallery_copy {
        padding-right: 2.4%;
        bottom: 2.4%;
        font-size: 12px;
    }
}
@media (max-width: 768px) {
    .gallery {
        flex-direction: column;
        padding: 100rem 15rem;
        gap: 15rem;
    }
    .gallery_ttl {
        font-size: 40rem;
    }
    .gallery_thumb_list { 
        justify-content: space-between;
        gap: 15rem;
        margin-top: 80rem;
        padding-bottom: 25rem;
    }
    .gallery_thumb {
        width: calc(50% - 7.5rem);
    }
    .gallery_copy {
        font-size: 10rem;
    }
    .gallery_copy {
        bottom: 0;
        font-size: 12rem;
    }
}

/* lineup */
.links_list {
    display: flex;
    justify-content: center;
}
.links_btn {
    display: block; 
}
.links_ttl {
    position: relative;
    line-height: 1;
    text-transform: uppercase;
}
.links_txt {
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}
.links_arrow {
    overflow: hidden;
    position: absolute;
    line-height: 1;
}
.links_arrow::before,
.links_arrow::after {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    bottom: 0;
    margin: auto;
}
.links_arrow::before {
    right: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-orange);
}
.links_arrow::after {
    right: 1px;
    border-top: 1px solid var(--color-orange);
    border-right: 1px solid var(--color-orange);
    rotate: 45deg;
}
.animation_ready .links_arrow {
    clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
    transition: clip-path .7s;
}
.animation_loaded .links_ttl:has(.is_animated) .links_arrow {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
@media (min-width: 769px) {
    .links {
        padding-block: 170px 280px;
        padding-inline: 40px;
    }
    .links_list {
        gap: 80px;
    }
    .links_ttl {
        font-size: 20px;
        margin-top: 40px;
    }
    .links_arrow {
        width: 120px;
        top: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }
    .links_arrow::after{
        width: 10px;
        height: 10px;
    }
    .links_txt {
        font-size: 14px;
        margin-top: 20px;
    }
    @media(hover:hover) {
        .links_btn:hover .links_arrow {
            animation: hover_line .7s forwards;
        }
    }
}
@media (max-width: 768px) {
    .links {
        padding-block: 100rem;
        padding-inline: 25rem;
    }
    .links_list {
        gap: 37rem;
        flex-direction: column;
    }
    .links_ttl {
        font-size: 18rem;
        margin-top: 20rem;
    }
    .links_arrow {
        bottom: 4rem;
        right: 0;
        width: 150rem;
        height: 10rem;
    }
    .links_arrow::after{
        width: 6rem;
        height: 6rem;
    }
    .links_txt {
        font-size: 14rem;
        margin-top: 10rem;
    }
}

/* modal gallery */
.gallery_main_slider {
    max-width: 1192px;
    margin-left: 0;
    pointer-events: auto;
}
.gallery_main_slider .swiper-slide {
    width: 100%;
    max-width: 1192px;
    background-color: var(--color-black);
}
.gallery_main_slider .swiper-slide img {
    width: 100%;
}
.modal {
    display: none;
}
.modal.is-open {
    display: block;
}
.modal__container {
    width: 100%;
    overflow-y: auto;
    max-height: 100vh;
    opacity: 0;
}
.modal__close {
    position: absolute;
    bottom: 0;
    left: 0;
    border: 1px solid var(--color-orange);
    pointer-events: auto;
}
.modal__close_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 50%;
    height: 50%;
    display: block;
}
.modal__close_icon::before,
.modal__close_icon::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    background-color: var(--color-orange);
}
.modal__close_icon::before {
    rotate: 45deg;
}
.modal__close_icon::after {
    rotate: -45deg;
}
.modal__inner {
    margin: auto;
    max-width: 1440px;
    position: relative;
    pointer-events: none;
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal__overlay::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,1);
}
@keyframes overlaySlideIn {
    from { scale: 1 0; }
    to { scale: 1 1; }
}
@keyframes overlaySlideOut {
    from { scale: 1 1; }
    to { scale: 1 0; }
}
@keyframes mmfadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes mmfadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
@keyframes mmslideIn {
  from { transform: translateY(-10%);opacity: 0; }
    to { transform: translateY(0); opacity: 1;}
}
@keyframes mmslideOut {
    from { transform: translateY(0); opacity: 1;}
    to { transform: translateY(-10%);opacity: 0; }
}
.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn 1s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.micromodal-slide[aria-hidden="false"] .modal__overlay::before {
  animation: overlaySlideIn .8s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transform-origin: 50% 100%;
}
.micromodal-slide[aria-hidden="false"] .modal__container {
    animation: mmslideIn 2s .5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.micromodal-slide[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut 0s 2.8s forwards;
}
.micromodal-slide[aria-hidden="true"] .modal__overlay::before {
    animation: overlaySlideOut .8s 0s cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
    transform-origin: 50% 0%;
}
.micromodal-slide[aria-hidden="true"] .modal__container {
    animation: mmslideOut 2s 0s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.modal__wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.modal_gallery_thumb_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    pointer-events: auto;
}
.modal_gallery_thumb {
    filter: brightness(0.75);
}
.modal_thumb_active {
    filter: brightness(1.75);
}
.gallery_main_caption .color_orange {
    color: var(--color-orange);
}
.gallery_main_caption .color_gray {
    color: #878787;
    display: block;
}
.gallery_main_controls {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    color: var(--color-orange);
    pointer-events: auto;
}
.gallery_main_prev,
.gallery_main_next {
    cursor: pointer;
    display: flex;
    align-items: center;
    outline: none;
}
.gallery_main_prev_txt,
.gallery_main_next_txt {
    text-transform: uppercase;
}
.gallery_main_prev_arrow,
.gallery_main_next_arrow {
    height: 1px;
    background-color: var(--color-orange);
    position: relative;
}
.gallery_main_prev_arrow::after,
.gallery_main_next_arrow::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    border-top: 1px solid var(--color-orange);
    border-right: 1px solid var(--color-orange);
}
.gallery_main_prev_arrow::after {
    left: 0;
    rotate: -135deg;
}
.gallery_main_next_arrow::after {
    rotate: 45deg;
    right: 0;
}
.gallery_main_next { 
    text-align: right;
}
.swiper-button-disabled {
    opacity: .5;
    pointer-events: none;
}
.modal_video {
    max-width: 1200px;
    margin-inline: auto;
    pointer-events: auto;
}
.modal_video video {
    width: 100%;
    height: auto;
}
@media (min-width: 769px) {
    .gallery_main_prev,
    .gallery_main_next {
        column-gap: 10px;
        padding: 10px 5px;
    }
    .gallery_main_prev_arrow,
    .gallery_main_next_arrow {
        width: 120px;
    }
    .gallery_main_prev_arrow::after,
    .gallery_main_next_arrow::after {
        width: 6px;
        height: 6px;
    }
    .gallery_main_prev_txt,
    .gallery_main_next_txt {
        font-size: 14px;
    }
    .modal__close {
        width: 40px;
        height: 40px;
    }
    .modal__inner {
        max-height: 810px;
        padding-bottom: 96px;
    }
    .modal__container {
        padding: 40px;
    }
    .modal__container_cm .modal__inner {
        padding-bottom: 40px;
    }
    .gallery_main_slider_wrap {
        width: calc(100% - 125px);
    }
    .modal_gallery_thumb_wrapper {
        width: 125px;
        gap: 6px;
    }
    .modal_gallery_thumb {
        width: 40px;
    }
    .gallery_main_caption {
        font-size: 14px;
        line-height: 1.5;
        margin-top: 15px;
    }
    .gallery_main_caption .color_gray {
        font-size: 12px;
    }
    .gallery_main_caption .color_orange + .color_gray {
        margin-top: 8px;
    }
    @media(hover:hover) {
        .modal__close_icon {
            transition: rotate .4s;
        }
        .modal__close:hover .modal__close_icon {
            rotate: 90deg;
        }
        .hover_text:hover .gallery_main_prev_arrow {
            animation: hover_line_reverse .6s forwards;
        }
        .hover_text:hover .gallery_main_next_arrow {
            animation: hover_line .6s forwards;
        }
    }
}
@media (max-width: 768px) {
    .gallery_main_prev,
    .gallery_main_next {
        column-gap: 7rem;
        padding: 10rem 0rem;
    }
    .gallery_main_prev_arrow,
    .gallery_main_next_arrow {
        width: 120rem;
    }
    .gallery_main_prev_arrow::after,
    .gallery_main_next_arrow::after {
        width: 6rem;
        height: 6rem;
    }
    .gallery_main_prev_txt,
    .gallery_main_next_txt {
        font-size: 14rem;
        min-width: 3em;
    }
    .modal__close {
        width: 40rem;
        height: 40rem;
    }
    .modal__inner {
        padding-bottom: 90rem;
    }
    .modal__container_cm .modal__inner {
        display: flex;
        align-items: center;
        padding-block: 80px;
    }
    .modal__wrap {
        flex-direction: column;
    }
    .gallery_main_slider_wrap {
        position: relative;
        width: 100%;
        padding-bottom: 50rem;
    }
    .modal_gallery_thumb_wrapper {
        width: 100%;
        gap: 10rem;
        justify-content: flex-start;
        padding: 0 25rem;
        margin-top: 40rem;
    }
    .modal_gallery_thumb {
        width: calc((100% - (10rem * 3)) / 4);
    }
    .modal_gallery_thumb img {
        width: 100%;
    }
    .gallery_main_controls {
        width: 100%;
        padding: 0 24rem;
        column-gap: 10rem;
        justify-content: space-between;
    }
    .gallery_main_caption {
        padding: 0 24rem;
        font-size: 12rem;
        line-height: 1.6;
        margin-top: 20rem;
    }
    .gallery_main_caption .color_gray {
        font-size: 10rem;
    }
    .gallery_main_caption .color_orange + .color_gray {
        margin-top: 8rem;
    }
    .gallery_main_prev,
    .gallery_main_next {
        width: calc(50% - 10rem);
    }
    .modal__close {
        left: 25rem;
        bottom: 25rem;
    }
}
@media (orientation: landscape) and (max-height: 450px) {
    /* ここに横向きのデバイスに適用するスタイルを書く */
    .modal__container {
        padding: 0;
    }
    .modal__container_cm .modal__inner {
        padding-block: 0px;
    }
    .modal_video {
        height: 100vh;
        height: 100dvh;
    }
    .modal_video video {
        object-fit: contain;
        height: 100%;
    }
    .modal__close {
        width: 40px;
        height: 40px;
    }
}
/* footer */
.footer {
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.footer_bg {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
     object-fit: cover;
}
.footer_logo {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    margin: auto;
    translate: -50% -50%;
}
.footer_bottom {
    background: #212121;
    color: var(--color-white);
}
.footer_bottom_inner {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 26px 80px 26px 40px;
    font-size: 12px;
    max-width: 1440px;
}
.footer_copy {
    line-height: 1.4;
}
.icon_privacy {
    margin-left: 4px;
    display: inline-block;
    vertical-align: middle;
}
.footer_legal_link_list {
    display: flex;
    flex-wrap: wrap;
}
@media (min-width: 769px) {
    .footer {
        height: 100vh;
        max-height: 900px;
        min-height: 400px;
    }
    .footer_logo {
        width: 412px;
        padding-inline: 40px;
    }
    .footer_legal_link_list > li + li {
        padding-left: 8px;
        margin-left: 8px;
        border-left: 1px solid #fff;
    }
    @media(hover:hover) {
        .footer_legal_link {
            transition: color .3s;
        }
        .footer_legal_link:hover {
            color: #eb0a1e;
        }
    }
}
@media (max-width: 900px) {
    .footer_bottom_inner {
        flex-direction: column-reverse;
        gap: 16px;
    }
    .footer_copy span {display: block;}
}
@media (max-width: 768px) {
    .footer {
        height: 500rem;
    }
    .footer_bg {
        height: 660rem;
    }
    .footer_logo {
        width: 233rem;
    }
    .footer_bottom_inner {
        padding: 30rem 24rem;
        font-size: 12rem;
        gap: 24rem;
    }
    .footer_legal_link_list > li + li {
        margin-top: 8rem;
    }
}

/* reveal */
.gallery_thumb_img {
    perspective: 500px;
}
.links_list {
    perspective: 1500px;
}
.gallery_thumb_img {
    display: block; 
}
.animation_ready .js_reveal {
    opacity: 0;
    transform: rotateX(-15deg) translateY(35px) scale(0.94);    
    transform-origin: center center;
    transition: transform 2.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 2.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.animation_loaded .js_reveal.is_visible {
    opacity: 1;
    transform: none;
}