@charset "UTF-8";

:root {
    --zIndex-screenKV1: 800;
    --zIndex-screenKVmovie: 820;
    --zIndex-screenKV2: 822;
    --zIndex-menu: 825;
    --zIndex-lang: 825;
    --zIndex-opening: 850;
    --zIndex-loading: 1000;
    --zIndex-statement-txt: 840;
    --jp-font: "Century Sans JP", sans-serif;
    --en-font: "Century Sans EN", sans-serif;
    --fw-ExtraLight: 200;
    --fw-Light: 300;
    --fw-Regular: 400;
    --fw-Medium: 500;
    --fw-DemiBold: 600;
    --fw-Bold: 700;
    --color-black: #000;
    --color-white: #fff;
    --color-orange: #E53F28;
}
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;}
.letter:nth-child(16) {--index:15;}
.letter:nth-child(17) {--index:16;}
.letter:nth-child(18) {--index:17;}
.letter:nth-child(19) {--index:18;}
.letter:nth-child(20) {--index:19;}
.letter:nth-child(21) {--index:20;}
.letter:nth-child(22) {--index:21;}
.letter:nth-child(23) {--index:22;}
.letter:nth-child(24) {--index:23;}
.letter:nth-child(25) {--index:24;}
.letter:nth-child(26) {--index:25;}
.letter:nth-child(27) {--index:26;}
.letter:nth-child(28) {--index:27;}
.letter:nth-child(29) {--index:28;}
.letter:nth-child(30) {--index:29;}
.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 .jms_link .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) {
    html {
        overflow: hidden;
    }
    @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 JP";
    font-display: swap;
    src: url("../fonts/CenturySansJP2510-Light.otf") format("opentype");
    font-weight: 300;
}
@font-face {
    font-family: "Century Sans JP";
    font-display: swap;
    src: url("../fonts/CenturySansJP2510-Regular.otf") format("opentype");
    font-weight: 400;
}
@font-face {
    font-family: "Century Sans JP";
    font-display: swap;
    src: url("../fonts/CenturySansJP2510-Medium.otf") format("opentype");
    font-weight: 500;
}
@font-face {
    font-family: "Century Sans JP";
    font-display: swap;
    src: url("../fonts/CenturySansJP2510-DemiBold.otf") format("opentype");
    font-weight: 600;
}
@font-face {
    font-family: "Century Sans JP";
    font-display: swap;
    src: url("../fonts/CenturySansJP2510-Bold.otf") format("opentype");
    font-weight: 700;
}


@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_jp {
    font-family: var(--jp-font);
    font-weight: var(--fw-Regular);
}
.font_en {
    font-family: var(--en-font);
    font-weight: var(--fw-Regular);
}
.fw200 {
    font-weight: var(--fw-ExtraLight);
}
.fw300 {
    font-weight: var(--fw-Light);
}
.fw400 {
    font-weight: var(--fw-Regular);
}
.fw500 {
    font-weight: var(--fw-Medium);
}
.fw600 {
    font-weight: var(--fw-DemiBold);
}
.fw700 {
    font-weight: var(--fw-Bold);
}

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

.wrapper {
    font-family: var(--jp-font);
}
@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;
    }
}
.kv_wrap {
    height: 100vh;
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
}
.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%;
}
.opening_skip {
    position: absolute;
    border: 1px solid var(--color-white);
    color: var(--color-white);
}
@media (min-width: 769px) {
    .opening_skip {
        font-size: 14px;
        bottom: 40px;
        right: 40px;
        width: 120px;
        padding-block: 6px;
    }
}
@media (max-width: 768px) {
    .opening {
        background: url(../images/kv_noise.jpg) no-repeat center center;
        background-size: cover;
    }
    .opening_skip {
        font-size: 14rem;
        bottom: 25rem;
        right: 0;
        left: 0;
        margin: auto;
        width: 120rem;
        padding-block: 6rem;
    }
    .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;
}
.header_logo {
    line-height: 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: 40px;
        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: 15rem;
        right: 14rem;
        font-size: 12rem;
    }
    .menu a {
        display: block;
        padding: 7rem 0;
    }
    .menu_list {
        transition: opacity .5s;
    }
    .menu.is_hidden .menu_list {
        opacity: 0;
        pointer-events: none;
    }
}

.top_kv_inner {
    position: relative;
    overflow: hidden;
    pointer-events: none;
}
.top_kv_scale {
    height: 100%;
}
.top_kv_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    translate: -50% 0;
}
.top_kv_logo img {
    translate: 0% -50%;
    width: 100%;
    height: auto;
}
.top_kv_enter {
    position: absolute;
    left: 50%;
    text-align: center;
    translate: -50% 0;
}
.top_kv_enter_txt {
    text-transform: uppercase;
    border: 1px solid var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.top_kv_enter_line {
    width: 10px;
    margin-inline: auto;
    position: relative;
    animation: scrollbarEnter 2.0s ease-in-out infinite;
}
.top_kv_enter_line::before,
.top_kv_enter_line::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
}
.top_kv_enter_line::before {
    width: 1px;
    height: 100%;
    top: 0;
    background-color: var(--color-white);
}
.top_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_video_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--zIndex-screenKVmovie);
}
.kv_video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.statement_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;
}
.statement_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;
}
.statement_kv_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;
}
.statement_kv_scroll {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    text-align: center;
    opacity: 0;
    z-index: 1;
    transition: opacity .4s;
}
.statement_kv_scroll.is_active {
    opacity: 1;
}
.statement_kv_scroll_txt {
    rotate: 90deg;
    text-transform: uppercase;
}
.statement_kv_scroll_line {
    position: relative;
    width: 1px;
    overflow: hidden;
    margin-inline: auto;
}
.statement_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) {
    .top_kv_enter {
        bottom: 15px;
    }
    .top_kv_enter_txt {
        font-size: 14px;
        width: 120px;
        height: 30px;
    }
    .top_kv_enter_line {
        height: 40px;
        margin-top: 18px;
    }
    .top_kv_enter_line::after {
        width: 7px;
        height: 7px;
    }
    .top_kv_inner {
        height: 100%;
    }
    .top_kv_logo {
        width: 550px;
    }
    .kv_ttl {
        width: 680px;
    }
    .statement_kv_scroll {
        right: 12px;
    }
    .statement_kv_scroll_txt {
        font-size: 14px;
    }
    .statement_kv_scroll_line {
        margin-top: 30px;
        height: 180px;
    }
    .statement_kv_copy {
        font-size: 12px;
        bottom: 20px;
        left: 20px;
    }
}
@media (max-width: 768px) {
    .top_kv_enter {
        top: calc(100svh - 80rem);
    }
    .top_kv_enter_txt {
        font-size: 12rem;
        width: 100rem;
        height: 24rem;
    }
    .top_kv_enter_line {
        height: 30rem;
        margin-top: 10rem;
    }
    .top_kv_enter_line::after {
        width: 5rem;
        height: 5rem;
    }
    .top_kv_logo {
        width: 227rem;
    }
    .top_kv_inner {
        height: 375rem;
        top: calc(50dvh - 187.5rem);
    }
    .top_kv,
    .kv_video_wrap {
        background: url(../images/kv_noise.jpg) no-repeat center center;
        background-size: cover;
    }
    .kv_video {
        height: 375rem;
        top: calc(50dvh - 187.5rem);
        position: relative;
        aspect-ratio: 1 / 1;
    }
    .statement_kv_ttl_wrap {    
        row-gap: 40rem;
    }
    .kv_ttl {
        width: 275rem;
    }
    .statement_kv_scroll {
        right: 0;
    }
    .statement_kv_scroll_txt {
        font-size: 12rem;
    }
    .statement_kv_scroll_line {
        margin-top: 30rem;
        height: 180rem;
    }
    .statement_kv_img_wrap {
        --notice-height:25rem;
    }
    .statement_kv_img {
        height: calc(100% - var(--notice-height));
    }
    .statement_kv_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;
    }
}

/* top */
.section_top {
    overflow: clip;
}
.top_kv {
    height: 100svh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overscroll-behavior: contain;
    z-index: var(--zIndex-screenKV1);
}
.top_kv_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/kv_bg.jpg) no-repeat center center / cover;
}
.top_kv_mayu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
}
.top_kv_mayu img {
    object-fit: cover;
    object-position: center center;
    height: 100%;
    width: auto;
}

.top_kv_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% 0;
}
.top_kv_logo img {
    translate: 0% -50%;
    width: 100%;
    height: auto;
}

.section_statement {
    overflow: clip;
    margin-top: 10px;
}
.statement_kv {
    height: 100vh;
    position: sticky;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: var(--zIndex-screenKV2);
}
.statement_kv_img_wrap {
    position: sticky;
    bottom: 0;
    left: 0;
    z-index: 1;
    height: 100dvh;
    width: 100%;
}
.statement_kv_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 100%;
    transform-origin: 50% 100%;
}
.statement_kv_ttl {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

/* lead/statement */
.lead {
    position: relative;
    z-index: 2;
}
.lead_txt_wrap {
    margin: auto;
    position: relative;
    z-index: var(--zIndex-statement-txt);
}
.lead_txt {
    will-change: filter;
}
@media (min-width: 769px) {
    .lead {
        padding: 100px 26px ;
    }
    .lead_txt_wrap {
        max-width: 660px;
    }
    .lead_txt {
        font-size: 28px;
        line-height: 4.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: 4.1;
    }
    .lead_txt + .lead_txt {
        margin-top: 120rem;
    }
    .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;
    overflow: clip;
}
.gallery_ttl {
    text-transform: uppercase;
    color: var(--color-orange);
}
.gallery_contents {
    width: 100%;
}
.gallery_thumb_list_wrap {
    flex: 1;
}
.gallery_thumb_list {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.gallery_copy {
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    line-height: 0.9;
    color: #878787;
}
.gallery_thumb_img img {
    width: 100%;
}
.accordion_trigger {
    display: block;
    position: relative;
    overflow: hidden;
}
.accordion_trigger_img {
    display: block;
    position: relative;
}
.accordion_trigger_info {
    display: block;
} 
.accordion_trigger_img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.accordion_trigger_num {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    line-height: 1;
}
.accordion_trigger_more {
    display: flex;
    flex-direction: column;
    position: absolute;
}
.accordion_trigger_more_icon {
    line-height: 1;
}
.accordion_trigger_more_txt {
    text-transform: uppercase;
}
.accordion_panel {
    overflow: clip;
    display: none;
}
.accordion_panel_inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.btn_accordion_close {
    position: relative;
    border: 1px solid var(--color-orange);
}
.btn_accordion_close_icon {   
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 50%;
    height: 50%;
    display: block;
}
.btn_accordion_close_icon::before,
.btn_accordion_close_icon::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    background-color: var(--color-orange);
}
.btn_accordion_close_icon::before {
    rotate: 45deg;
}
.btn_accordion_close_icon::after {
    rotate: -45deg;
}
@media (min-width: 769px) {
    .gallery {
        padding: 383px 40px 230px;
        gap: 40px 0;
    }
    .gallery_ttl {
        font-size: 40px;
        width: 20%;
        min-width: 230px;
    }
    .accordion + .accordion {
        margin-top: 10px;
    }
    .accordion_panel_inner {
        padding-top: 40px;
        padding-bottom: 110px;
        column-gap: 16px;
    }
    .gallery_thumb_list_wrap {
        text-align: right;
        max-width: 1000px;
    }
    .gallery_thumb_list {
        margin-top: -16px;
        padding-bottom: 32px;
    }
    .gallery_thumb {
        width: 25%;
        padding:16px 2.4%;
    }
    .accordion_trigger {
        width: 100%;
    }
    .accordion_trigger::before,
    .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);
    }
    .accordion_trigger_num {
        bottom: 12%;
        left: 2.4%;
        font-size: 73px;
        min-width: 110px;
    }
    .accordion_trigger_more {
        bottom: 24px;
        right: 40px;
    }
    .accordion_trigger_more_icon {
        font-size: 50px;
    }
    .accordion_trigger_more_txt {
        font-size: 14px;
    }
    .btn_accordion_close {
        width: 40px;
        height: 40px;
    }
    .gallery_copy {
        padding-right: 2.4%;
        bottom: 2.4%;
        font-size: 12px;
    }
    @media(hover:hover) {
        .accordion_trigger:hover::before,
        .gallery_thumb:hover::before {
            opacity: 0.2;
        }
        .accordion_trigger_more_icon {
            transition: rotate .4s,translate .4s;
        }
        .accordion_trigger:hover .accordion_trigger_more_icon {
            rotate: 45deg;
            translate: 2px 0;
        }
        .accordion_trigger_info img {
            transition: scale .8s;
        }
        .accordion_trigger:hover .accordion_trigger_info img {
            scale: 1.08;
        }
        .btn_accordion_close_icon {
            transition: rotate .4s;
        }
        .btn_accordion_close:hover .btn_accordion_close_icon {
            rotate: 90deg;
        }
    }
}
@media (max-width: 768px) {
    .gallery {
        flex-direction: column;
        padding: 100rem 15rem 200rem;
        gap: 15rem;
    }
    .gallery_ttl {
        font-size: 40rem;
    }
    .gallery_contents {
        margin-top: 14rem;
    }
    .accordion + .accordion {
        margin-top: 6rem;
    }
    .gallery_thumb_list { 
        justify-content: flex-start;
        gap: 8rem;
    }
    .gallery_thumb {
        width: calc((100% - (8rem * 3))/ 4);
    }
    .gallery_copy {
        bottom: -60rem;
        font-size: 12rem;
    }
    .accordion_trigger {
        width: calc(100% + 30rem);
        margin-left: -15rem;
    }
    .accordion_trigger_num {
        bottom: 10rem;
        left: 10rem;
        font-size: 86rem;
    }
    .accordion_trigger_more {
        bottom: 20rem;
        right: 20rem;
    }
    .accordion_trigger_more_icon {
        font-size: 50rem;
    }
    .accordion_trigger_more_txt {
        font-size: 18rem;
    }
    .accordion_trigger_more_line {
        width: 100%;
        height: 1px;
        background-color: var(--color-white);
        margin-top: 6rem;
        animation: loopLine 1.5s infinite;
    }
    .accordion_panel_inner {
        padding-top: 20rem;
        padding-bottom: 44rem;
        row-gap: 20rem;
        flex-direction: column-reverse;
    }
    .btn_accordion_close {
        width: 40rem;
        height: 40rem;
    }
}

/* history */
.history_inner {
    overflow: clip;
    height: 800vh;/*大きいとスクロールがゆっくりに*/
}
.history_sticky {
    position: sticky;
    height: 100vh;
    left: 0;
    top: 0;
}
.history_item {
    position: relative;
    flex-shrink: 0;
    min-width: 100vw;
    height: 100vh;
}
.history_item_list {
    will-change: transform;
    display: flex;
}
.history_item_0 {    
    position: relative;
}
.history_item_0,
.history_item_1,
.history_item_2,
.history_item_3,
.history_item_4 {
    background-color: var(--color-black);
}
.history_item_0_inner {
    height: 100%;
    overflow: clip;
}
.history_item_0_ttl_wrap {
    position: absolute;
    color: var(--color-orange);
    z-index: 1;
}
.history_item_0_ttl {
    text-transform: uppercase;
}
.history_item_0_img {
    aspect-ratio: 1440 / 810;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.history_item_0_scroll {
    position: absolute;
    z-index: 1;
}
.history_item_0_scroll_img {
    animation: rotate_scroll 30s infinite linear;
}
.history_item_0_scroll_arrow {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 1px;
    translate: -50% -50%;
    animation: loopLine 2s infinite;
}
.history_item_0_scroll_arrow::before,
.history_item_0_scroll_arrow::after {
    content: '';
    display: block;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
}
.history_item_0_scroll_arrow::before {
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--color-white);
}
.history_item_0_scroll_arrow::after {
    right: 1px;
    rotate: 45deg;
    border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
}
@keyframes rotate_scroll {
    0% {
        rotate: 0deg;
    }
    100% {
        rotate: 360deg;
    }
}
.history_txt_area {
    display: flex;
}
.history_item_1,
.history_item_2,
.history_item_3 {
    display: flex;
}
.history_item_1_img_area,
.history_item_2_img_area,
.history_item_3_img_area,
.history_item_4_img_area {
    display: grid;
    align-content: center;
    margin: auto; 
    perspective: 500px;
}
.history_item_1_img_area img,
.history_item_2_img_area img,
.history_item_3_img_area img,
.history_item_4_img_area img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center bottom;
}
.history_item_3_img_left,
.history_item_4_img_left {
    display: grid;
    grid-template-rows: repeat(3, 1fr); /* 左は3分割 */
}
.history_item_3_img_right,
.history_item_4_img_right {
    display: grid;
    grid-template-rows: repeat(2, 1fr); /* 右は2分割 */
}
.history_item_1_img_1 {
    grid-column: 1 / 3;
}
.history_item_2_img_3 {
    grid-column: 1 / 3;
}
.history_item_1_inner, 
.history_item_2_inner, 
.history_item_3_inner, 
.history_item_4_inner {
    display: flex;
    position: relative;
    z-index: 1;
}
.history_item_txt_wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-height: 640px;
    margin: auto;
    height: 100%;
}
.history_item_ttl_wrap {
    display: flex;
    flex-direction: column;
    position: relative;
}
.history_item_ttl_wrap::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(255,255,255,0.2);
}
.history_item_ttl {
    display: flex;
    flex-direction: column;
}
.history_item_ttl_en {
    color: rgba(255,255,255,0.4);
}
.history_item_num {
    color: var(--color-orange);
}
.history_item_5_img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.history_divider {
    position: relative;
    overflow: clip;
    background-color: var(--color-black);
}
.history_divider_mask {
    display: block;
    position: absolute;
    width: 114%;
    height: 100%;
    top: 0;
    left: -7%;
    background-color: var(--color-black);
    z-index: 2;
    transform-origin: left center;
}
.history_divider_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: left center;
}
.history_txt_item {
    font-feature-settings:"halt";
    transition: opacity 1s ease-out,transform 1s ease-out;
}

.animation_ready .js_history_item_img {
    opacity: 0;
    transform: rotateX(-15deg) translateY(35px) scale(0.94);    
    transform-origin: center center;
    will-change: transform;
    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_history_item_img.is_active {
    opacity: 1;
    transform: rotateX(0deg) translateY(0px) scale(1);  
}
.history_item_5_img_wrap {
    height: 100%;
    position: relative;
    overflow: clip;
}
.history_item_5_mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: var(--color-orange) url(../images/history_pattern.png) repeat;
    background-position: left center;
    transform-origin: left center;
}
.history_item_4::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background: url(../images/history_pattern.png) repeat right center;
}
@media (min-width: 769px) {
    .history_item_0_ttl_wrap {
        top: 80px;
        left: 26px;
    }
    .history_item_0_ttl {
        font-size: 40px;
    }
    .history_item_0_year {
        font-size: 20px;
    }
    .history_item_0_scroll {
        bottom: 30px;
        left: calc(100vw - 280px);
    }
    .history_item_0_scroll_arrow {
        width: 64px;
        height: 10px;
    }
    .history_item_0_scroll_arrow::before {
        height: 1px;
    }
    .history_item_0_scroll_arrow::after {
        width: 10px;
        height: 10px;
    }
    .history_item_1 {
        padding-left: 80px;
    }
    .history_item_1_inner,
    .history_item_2_inner,
    .history_item_3_inner,
    .history_item_4_inner {
        column-gap: 40px;
        padding: 73px 240px 73px 120px;
        height: 100%;
    }
    .history_item_4_inner {
        padding: 73px 120px;
    }
    .history_txt_area {
        column-gap: 40px;
        line-height: 2;
        font-size: 14px;
    }
    .history_item_1_img_area,
    .history_item_2_img_area,
    .history_item_3_img_area,
    .history_item_4_img_area {
        gap: 20px;
    }
    .history_item_1_img_area {
        grid-template-columns: 38% 1fr;
        grid-template-rows: 50% 1fr;
        width: 530px;
    }
    .history_item_2_img_area {
        grid-template-columns: 55% 1fr;
        grid-template-rows: 38% 1fr;
        width: 585px;
    }
    .history_item_3_img_area,
    .history_item_4_img_area {
        width: 735px;
        grid-template-columns: 38% 1fr;
    }
    .history_item_3_img_left,
    .history_item_4_img_left,
    .history_item_3_img_right,
    .history_item_4_img_right {
        gap: 20px;
    }
    .history_txt_item {
        width: 287px;
    }
    .history_item_4 .history_txt_item {
        width: 335px;
    }
    .history_item_ttl_wrap {
        row-gap: 10px;
        padding-bottom: 40px;
    }
    .history_item_ttl_wrap::after {
        width: 50px;
        height: 3px;
    }
    .history_item_ttl {
        font-size: 24px;
        line-height: 1.6;
    }
    .history_item_ttl_en {
        font-size: 14px;
        line-height: 1.3;
    }
    .history_item_num {
        font-size: 18px;
    }
    .history_txt + .history_txt {
        margin-top: 30px;
    }
    .history_txt_large {
        font-size: 22px;
    }
    .history_item_4 {
        background: linear-gradient(90deg, #000 0%, var(--color-orange) 100%) ;
    }
    .history_item_4::after {
        background-size: 50px auto;
    }
    .history_item_5 {
        width: 100vw;
    }
    .history_item_5_mask {
        background-size: 50px auto;
    }
}
@media (max-width: 768px) {
    .history_item_0_ttl_wrap {
        top: 45rem;
        left: 26rem;
    }
    .history_item_0_ttl {
        font-size: 40rem;
    }
    .history_item_0_year {
        font-size: 20rem;
    }
    .history_item_0_scroll {
        left: calc(100vw - 130rem - 80rem);
        width: 130rem;
        top: calc(100dvh - 130rem - 40rem);
    }
    .history_item_0_scroll_arrow {
        width: 55rem;
        height: 10rem;
    }
    .history_item_0_scroll_arrow::before {
        height: 1rem;
    }
    .history_item_0_scroll_arrow::after {
        width: 10rem;
        height: 10rem;
    }
    .history_item_1_inner,
    .history_item_2_inner,
    .history_item_3_inner,
    .history_item_4_inner {
        column-gap: 40rem;
        padding: 73rem 300rem 73rem 120rem;
        height: 100%;
    }
    .history_item_4_inner {
        padding: 73rem 120rem;
    }
    .history_txt_area {
        column-gap: 40rem;
        line-height: 2;
        font-size: 14rem;
    }
    .history_item_1_img_area,
    .history_item_2_img_area,
    .history_item_3_img_area,
    .history_item_4_img_area {
        gap: 20rem;
    }
    .history_item_1_img_area {
        grid-template-columns: 38% 1fr;
        grid-template-rows: 50% 1fr;
        width: 464rem;
    }
    .history_item_2_img_area {
        grid-template-columns: 55% 1fr;
        grid-template-rows: 38% 1fr;
        width: 505rem;
    }
    .history_item_3_img_area,
    .history_item_4_img_area {
        width: 635rem;
        grid-template-columns: 38% 1fr;
    }
    .history_item_3_img_left,
    .history_item_4_img_left,
    .history_item_3_img_right,
    .history_item_4_img_right {
        gap: 20rem;
    }
    .history_txt_item {
        width: 335rem;
    }
    .history_item_4 .history_txt_item {
        width: 335rem;
    }
    .history_item_txt_wrap {
        row-gap: 20rem;
    }
    .history_item_ttl_wrap {
        row-gap: 10rem;
        padding-bottom: 20rem;
    }
    .history_item_ttl_wrap::after {
        width: 50rem;
        height: 3rem;
    }
    .history_item_ttl {
        font-size: 22rem;
        line-height: 1.6;
    }
    .history_item_ttl_en {
        font-size: 12rem;
        line-height: 1.3;
    }
    .history_item_num {
        font-size: 16rem;
    }
    .history_txt + .history_txt {
        margin-top: 30rem;
    }
    .history_txt_large {
        font-size: 14rem;
    }
    .history_item_4 {
        background: linear-gradient(90deg, #000 0%, var(--color-orange) 100%) ;
    }
    .history_item_4::after {
        background-size: 47rem auto;
    }
    .history_divider {
        width: 375rem;
    }
    .history_item_5 {
        width: 330vw;
    }
    .history_item_5_mask {
        background-size: 47rem auto;
    }
}

/* jms */
.jms {
    color: var(--color-orange);
}
.jms_ttl_wrap {
    max-width: 1440px;
    margin-inline: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.jms_ttl {
    text-transform: uppercase;
}
.jms_date_wrap {
    display: flex;
    position: relative;
    justify-content: space-between;
}
.jms_date_wrap::before {
    content: '';
    display: block;
    height: 1px;
    margin: auto;
    position: absolute;
    inset: 0;
    background-color: var(--color-orange);
}
.jms_date {
    display: flex;
    line-height: 1;
    align-items: center;
}
.jms_date_day {
    writing-mode: vertical-rl;
}
.jms_links_wrap {
    max-width: 1440px;
    margin-inline: auto;
}
.jms_links {
    color: var(--color-white);
    display: flex;
    flex-direction: column;
}
.jms_link {
    display: grid;
    align-items: center;
}
.jms_link_line {
    background: var(--color-orange);
    height: 1px;
}    
.jms_link_icon {
    background: url(../images/icon_newtab.svg) no-repeat center center / contain;
}
.jms_slider .swiper-wrapper {
  transition-timing-function: linear;
}
@media (min-width: 769px) {
    .jms {
        padding-top: 140px;
        margin-top: 140px;
        margin-bottom: 110px;
    }
    .jms_ttl_wrap {
        padding-inline: 40px;
    }
    .jms_ttl {
        font-size: 40px;
    }
    .jms_info {
        width: 360px;/*jms ttl*/
    }
    .jms_info_ttl {
        font-size: 31px;
    }
    .jms_date_wrap {
        column-gap: 96px;
        margin-top: 10px;
    }
    .jms_date_wrap::before {
        width: 110px;
    }
    .jms_date {
        column-gap: 4px;
    }
    .jms_date_num {
        font-size: 40px;
    }
    .jms_date_day {
        font-size: 16px;
    }
    .jms_venue {
        margin-top: 10px;
    }
    .jms_links_wrap {
        padding-inline: 40px;
    }
    .jms_links {
        margin-top: 34px;
        row-gap: 10px;
        max-width: 360px;/*jms ttl*/
        margin-left: auto;
    }
    .jms_link {
        column-gap: 5px;
        grid-template-columns: 1fr 80px auto;
    }
    .jms_link_icon {
        width: 16px;
        height: 16px;
    }
    .jms_slider {
        margin-left: -130px;
        margin-top: 40px;
    }    
    .jms_slider .swiper-slide {
        width: 680px;
    }
    @media(hover:hover) {
        .hover_text:hover .jms_link_line {
            animation: hover_line .6s forwards;
        }
    }
}
@media (max-width: 768px) {
    .jms {
        padding-block: 100rem;
        margin-top: 100rem;
    }
    .jms_ttl_wrap {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 15rem;
    }
    .jms_ttl {
        font-size: 40rem;
    }
    .jms_info {
        margin-top: 38rem;
        width: 100%;
    }
    .jms_info_ttl {
        font-size: 30rem;
    }
    .jms_date_wrap {
        justify-content: space-between;
        margin-top: 10rem;
    }
    .jms_date_wrap::before {
        width: 120rem;
    }
    .jms_date_num {
        font-size: 36rem;
    }
    .jms_date_day {
        font-size: 14rem;
    }
    .jms_venue {
        margin-top: 10rem;
        font-size: 16rem;
    }
    .jms_links {
        margin-top: 24rem;
        row-gap: 12rem;
        padding: 0 15rem;
    }
    .jms_link {
        column-gap: 8rem;
        font-size: 14rem;
        grid-template-columns: 1fr 80rem auto;
    }
    .jms_link_txt {
        font-size: 14rem;
        padding-right: 10rem;
    }
    .jms_link_icon {
        width: 13rem;
        height: 13rem;
    }
    .jms_slider {
        margin-top: 30rem;
    }
    .jms_slider .swiper-slide {
        width: 310rem;
    }
}

/* 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-start;
    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_caption {
    opacity: 0;
    transition: opacity 0.6s;
}
.gallery_main_slider .swiper-slide.swiper-slide-active .gallery_main_caption {
    opacity: 1;
}
.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: 55px;
    }
    .modal__container {
        padding: 40px;
    }
    .modal__container_cm .modal__inner {
        padding-bottom: 40px;
    }
    .gallery_main_slider_wrap {
        width: calc(100% - 110px);
    }
    .modal_gallery_thumb_wrapper {
        width: 86px;
        gap: 6px;
        padding-bottom: 65px;
    }
    .modal_gallery_thumb {
        width: 40px;
    }
    .gallery_main_caption {
        font-size: 14px;
        line-height: 1.5;
        margin-top: 15px;
        min-height: 50px;
    }
    .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;
        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) {
    /* ここに横向きのデバイスに適用するスタイルを書く */
    html {
        font-size: 0.17vw;
    }
    .header {
        top: 15rem;
        left: 15rem;
    }
    .header_logo {
        width: 140rem;
    }
    .lang_btn_list {
        font-size: 10rem;
        right: 6rem;
        top: 15rem;
    }
    .menu {        
        bottom: 8rem;
        right: 8rem;
        font-size: 10rem;
    }
    .menu a {
        padding: 6rem 0;
    }
    .statement_kv_scroll_txt {
        font-size: 10rem;
    }
    .statement_kv_scroll_line {
        height: 50rem;
        margin-top: 10rem;
    }
    .top_kv_logo {
        width: 190rem;
    }
    .top_kv_enter {
        top: calc(100svh - 60rem);
    }
    .top_kv_enter_txt {
        font-size: 10rem;
        width: 90rem;
        height: 20rem;
    }
    .top_kv_enter_line {
        height: 20rem;
    }
    .history_item_1_inner,
    .history_item_2_inner,
    .history_item_3_inner,
    .history_item_4_inner {
        column-gap: 20rem;
        padding: 20rem 200rem 20rem 120rem;
    }
    .history_item_ttl_wrap {
        row-gap: 5rem;
        padding-bottom: 10rem;
    }
    .history_item_txt_wrap {
        row-gap: 10rem;
    }
    .history_item_num {
        font-size: 12rem;
    }
    .history_item_ttl {
        font-size: 14rem;
    }
    .history_item_ttl_en {
        font-size: 10rem;
    }
    .history_txt_area {
        font-size: 10rem;
        line-height: 1.6;
    }
    .history_txt + .history_txt {
        margin-top: 10rem;
    }
    .history_txt_item {
        width: 250rem;
    }
    .history_item_1_img_area,
    .history_item_2_img_area,
    .history_item_3_img_area,
    .history_item_4_img_area {
        width: 250rem;
    }
    .history_item_4 .history_txt_item {
        width: 280rem;
    }
    .history_item_5 {
        width: 120vw;
    }
    .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;
    }
}
@media (orientation: landscape) and (min-width: 769px) and (max-height: 450px) {
    .top_kv_logo {
        width: 300px;
    }
    .kv_ttl {
        width: 400px;
    }
    .lead_txt  {
        font-size: 18px;
        line-height: 3.5;
    }
    .lead_txt + .lead_txt {
        margin-top: 80px;
    }
    .history_txt_area {
        font-size: 12px;
    }
}

/* 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;
}
@media (min-width: 769px) {
    .footer {
        height: 100vh;
        max-height: 900px;
        min-height: 400px;
    }
    .footer_logo {
        width: 412px;
        padding-inline: 40px;
    }
    @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: 650rem;
    }
    .footer_logo {
        width: 233rem;
    }
    .footer_bottom_inner {
        padding: 30rem 24rem;
        font-size: 12rem;
        gap: 24rem;
    }
}

/* reveal */
.links_list,
.accordion_trigger_img {
    perspective: 1500px;
}
.animation_ready .js_reveal,
.animation_ready .js_reveal_gallery {
    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,
.animation_loaded .js_reveal_gallery.is_visible {
    opacity: 1;
    transform: none;
}