/*-------------------------------------------------------------
    index
-------------------------------------------------------------*/
.index {
    position: relative;
}

.index_body {
    position: relative;
}

.index_bg_area {
    position: relative;
    overflow: hidden;
}

.index_bg_area > :not(.top_bg) {
    position: relative;
    z-index: 1;
}

.top_bg01 img {
    opacity: 0.7;
}

.index_head {
    margin: 0;
}

.index_head.center {
    text-align: center;
}

.index_ttl + .index_sub {
    margin-top: clamp(0, 1.2vw, 1.2rem);
}

.index_ttl {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(4.0rem, 6.92vw, 9rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
}

.index_sub {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.5rem, 1.85vw, 2.4rem);
    font-weight: 600;
    line-height: calc(70 / 24);
    letter-spacing: 0.06em;
}

.index_message {
    position: relative;
    overflow: hidden;
    padding-top: clamp(24rem, 23.08vw, 30rem);
    padding-bottom: clamp(5rem, 8vw, 9rem);
}

.index_message_obj {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.index_message_obj img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center center;
}

.index_message .inner {
    position: relative;
    z-index: 1;
}

.index_message_inner {
    display: flex;
    align-items: flex-start;
    gap: clamp(3rem, 7vw, 10rem);
}

.index_message_inner > .index_head {
    flex: 0 0 clamp(180px, 24vw, 280px);
}

.index_message_body {
    flex: 1;
    min-width: 0;
}

.index_message_catch {
    margin: 0 0 clamp(2.4rem, 3.5vw, 5rem);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(2rem, 2.6vw, 3.6rem);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.index_message_catch_line {
    display: block;
}

.index_message_txt p {
    margin: 0 0 1.6em;
    font-size: clamp(1.4rem, 1.6vw, 2.4rem);
    line-height: 2;
}

.index_message_txt p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .index_message {
        padding-block: clamp(4rem, 12vw, 6rem);
    }

    .index_message_obj {
        overflow: hidden;
    }

    .index_message_obj img {
        object-fit: cover;
        object-position: top center;
        transform: scale(1.55);
        transform-origin: top center;
    }

    .top_bg img {
        width: 100%;
        height: 100% !important;
        max-width: none;
        object-fit: cover;
        object-position: top center;
    }

    .index_message_inner {
        flex-direction: column;
        gap: clamp(2.4rem, 8vw, 3.2rem);
    }

    .index_message_inner > .index_head {
        flex: none;
    }
}

/*-------------------------------------------------------------
    index zoom
-------------------------------------------------------------*/
.index_zoom {
    padding-block: clamp(6rem, 10vw, 12rem);
}

.index_zoom_inner {
    display: flex;
    align-items: flex-start;
    gap: clamp(3rem, 5vw, 6rem);
}

.index_zoom_head {
    flex: 0 0 clamp(180px, 24vw, 280px);
    margin: 0;
    color: #222;
}

.index_zoom_lead {
    display: block;
    width: fit-content;
    margin: 0 0 clamp(0.8rem, 1.2vw, 0.9rem) auto;
    font-size: clamp(1.1rem, 1.4vw, 1.75rem);
    font-weight: 500;
    line-height: 1.4;
}

.index_zoom_sub {
    display: block;
    width: fit-content;
    margin: 0 0 clamp(-0.8rem, -1.2vw, -1.2rem) auto;
    border-top: 2px solid #222;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(2.0rem, 2.31vw, 3.0rem);
    font-weight: 600;
    line-height: calc(70 / 24);
    letter-spacing: 0.06em;
}

.index_zoom_ttl {
    margin-top: clamp(-1.5rem, -2.31vw, -3rem);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(6rem, 9.23vw, 12rem);
    font-style: italic;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
}

.index_zoom_list {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: clamp(1.6rem, 2.4vw, 2.4rem);
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.index_zoom_link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.index_zoom_link:hover {
    opacity: 0.85;
}

.index_zoom_img {
    display: block;
    aspect-ratio: 960 / 515;
}

.index_zoom_img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index_zoom_link::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.index_zoom_item:first-child .index_zoom_link::after {
    background: linear-gradient(to bottom, rgba(10, 32, 101, 0), #0A2065);
}

.index_zoom_item:last-child .index_zoom_link::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000);
}

.index_zoom_body {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(1.6rem, 2.4vw, 2.4rem);
    padding: clamp(1.6rem, 2.4vw, 2.4rem) clamp(2rem, 3vw, 3.2rem);
}

.index_zoom_txt {
    display: flex;
    flex-direction: column;
    gap: clamp(0.4rem, 0.8vw, 0.8rem);
    min-width: 0;
}

.index_zoom_card_ttl {
    margin-bottom: clamp(0.8rem, 1.2vw, 1.6rem);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(2rem, 4.5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.04em;
    color: #fff;
}

.index_zoom_desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.4rem, 2.4vw, 2.4rem);
    font-weight: 500;
    line-height: 1.6;
    color: #fff;
}

.index_zoom_more {
    display: inline-flex;
    flex-shrink: 0;
    align-items: stretch;
    width: clamp(16rem, 15.38vw, 20rem);
    height: clamp(4.4rem, 4.23vw, 5.5rem);
}

.index_zoom_more_txt {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.2rem, 1.23vw, 1.6rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #fff;
}

.index_zoom_more_icon {
    display: flex;
    flex: 0 0 50%;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #FF7200;
}

@media screen and (max-width: 767px) {
    .index_zoom {
        padding-top: clamp(2rem, 5vw, 4rem);
        padding-bottom: clamp(4rem, 8vw, 6rem);
    }

    .index_zoom_inner {
        flex-direction: column;
        gap: clamp(2.4rem, 8vw, 3.2rem);
    }

    .index_zoom_head {
        display: grid;
        grid-template-columns: auto auto;
        grid-template-rows: auto auto;
        column-gap: 5px;
        flex: none;
        align-self: flex-end;
        align-items: end;
        justify-content: flex-end;
        width: 100%;
        max-width: 100%;
    }

    .index_zoom_lead {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        align-self: end;
        width: fit-content;
        margin: 0 0 clamp(0.6rem, 2vw, 0.8rem) 0;
    }

    .index_zoom_sub {
        grid-column: 1;
        grid-row: 2;
        justify-self: start;
        align-self: end;
        width: fit-content;
        margin: 0;
    }

    .index_zoom_ttl {
        grid-column: 2;
        grid-row: 1 / -1;
        margin: 0;
        align-self: end;
    }

    .index_zoom_body {
        flex-direction: column;
        align-items: flex-start;
    }

    .index_zoom_more {
        align-self: flex-end;
    }
}

.index_products {
    padding-block: clamp(6rem, 10vw, 12rem);
    background: #f6f6f6;
}

.index_products_lead {
    margin: clamp(2.4rem, 4vw, 4rem) auto clamp(4rem, 6vw, 8rem);
    max-width: clamp(60rem, 72vw, 90rem);
    text-align: center;
}

.index_products_lead p {
    margin: 0;
    font-size: clamp(1.4rem, 1.6vw, 1.6rem);
    line-height: 2;
}

.index_products_lead p + p {
    margin-top: 0.5em;
}

.index_products_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2rem, 3vw, 3.2rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.index_products_card {
    height: 100%;
}

.index_products_img {
    overflow: hidden;
    border-radius: 5px;
}

.index_products_img img {
    display: block;
    width: 100%;
    height: auto;
}

.index_products_name {
    margin: clamp(1.6rem, 2vw, 2.4rem) 0 clamp(0.8rem, 1vw, 1.2rem);
    font-size: clamp(1.8rem, 2vw, 2.2rem);
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
}

.index_products_txt {
    margin: 0;
    font-size: clamp(1.5rem, 1.6vw, 1.8rem);
    font-weight: 400;
    line-height: 1.8;
    text-align: center;
}

.index_products_txt::before,
.index_products_txt::after {
    font-size: clamp(1.6rem, 1.69vw, 2.2rem);
}

.index_products_txt::before {
    content: "\201C";
    margin-right: 0.15em;
}

.index_products_txt::after {
    content: "\201D";
    margin-left: 0.15em;
    position: relative;
    top: 0.9em;
}

.index_products .view_more {
    margin-top: clamp(4rem, 6vw, 6rem);
}

@media screen and (max-width: 767px) {
    .index_products_lead {
        text-align: left;
    }

    .index_products_list {
        grid-template-columns: 1fr;
        gap: clamp(3.2rem, 10vw, 4.8rem);
    }
}

.index_movie {
    position: relative;
    padding-block: clamp(6rem, 10vw, 12rem);
    overflow-x: hidden;
    overflow-y: visible;
}

.index_movie_body {
    position: relative;
    margin-top: clamp(3.2rem, 5vw, 5.6rem);
    padding-bottom: clamp(3.2rem, 7vw, 9.6rem);
}

.index_movie .inner {
    overflow: visible;
}

.index_movie_marquee {
    position: absolute;
    top: calc(100% - clamp(4.8rem, 12vw, 16.8rem));
    left: 50%;
    z-index: 2;
    width: 100vw;
    overflow-x: hidden;
    overflow-y: visible;
    pointer-events: none;
    transform: translateX(-50%);
}

.index_movie_marquee .flow_marquee {
    overflow-x: hidden;
    overflow-y: visible;
}

.index_movie_marquee .flow_marquee_viewport {
    overflow-x: hidden;
    overflow-y: hidden;
    padding-top: 0;
    padding-bottom: clamp(0.8rem, 1.2vw, 1.2rem);
}

.index_movie_embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 5px;
}

.index_movie_embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/*-------------------------------------------------------------
    index uiturn
-------------------------------------------------------------*/
.index_uiturn {
    padding-block: clamp(6rem, 10vw, 12rem);
}

.index_uiturn_body {
    position: relative;
    min-height: clamp(40rem, 53vw, 69.5rem);
    padding-block: clamp(4rem, 8vw, 8rem);
}

.index_uiturn_bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.index_uiturn_bg img {
    display: block;
    width: min(100%, clamp(48rem, 62vw, 81.3rem));
    height: auto;
    max-width: 813px;
}

.index_uiturn_content {
    position: relative;
    z-index: 1;
    margin-top: clamp(16rem, 15.38vw, 20rem);
    text-align: center;
}

.index_uiturn_ttl {
    margin: 0 0 clamp(2.4rem, 4vw, 4rem);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.04em;
}

.index_uiturn_txt {
    margin: 0 auto clamp(4rem, 6vw, 7rem);
    font-size: clamp(1.6rem, 2vw, 1.8rem);
    line-height: 2;
}

.index_uiturn .view_more {
    margin: 0;
}

@media screen and (max-width: 767px) {
    .index_movie {
        padding-top: clamp(2rem, 5vw, 4rem);
        padding-bottom: clamp(4rem, 8vw, 6rem);
    }

    .index_uiturn {
        padding-top: clamp(1.6rem, 4vw, 3.2rem);
        padding-bottom: clamp(4rem, 8vw, 6rem);
    }

    .index_uiturn_body {
        min-height: auto;
        padding-top: 0;
        padding-bottom: clamp(2rem, 4vw, 3.2rem);
    }

    .index_uiturn_content {
        margin-top: clamp(2.4rem, 8vw, 5rem);
    }

    .index_uiturn_bg img {
        width: min(100%, clamp(32rem, 92vw, 48rem));
    }

    .index_uiturn_txt {
        text-align: left;
    }

    .index_uiturn_txt br {
        display: none;
    }
}

.index_number {
    padding-block: clamp(6rem, 10vw, 12rem);
}

.index_number .index_head {
    margin-bottom: clamp(3.2rem, 5vw, 5.6rem);
}

.index_number_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.8rem, 1.2vw, 1.2rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.index_number_item {
    display: flex;
}

.index_number_card {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    box-sizing: border-box;
    width: 100%;
    max-width: 46.5rem;
    height: 100%;
    min-height: 33rem;
    margin-inline: auto;
    padding-top: 5rem;
    padding-bottom: 5.5rem;
    padding-inline: clamp(1.2rem, 1.6vw, 2rem);
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
}

.index_number_bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.index_number_bg img {
    display: block;
    width: 100%;
    max-width: 469px;
    height: auto !important;
    object-fit: contain;
}

.index_number_body {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
}

.index_number_label {
    display: inline-block;
    margin: 0;
    padding: 6px 40px;
    border-radius: 999px;
    background: #DA2F1D;
    font-size: clamp(1.5rem, 1.6vw, 1.6rem);
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
}

.index_number_lead {
    margin: clamp(2rem, 2.4vw, 2.4rem) 0 0;
    font-size: clamp(1.6rem, 1.8vw, 1.6rem);
    font-weight: 600;
    line-height: 1.6;
}

.index_number_value {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.15em 0.3em;
    margin: 0;
    line-height: 1;
}

.index_number_label + .index_number_value {
    margin-top: 5.8rem;
}

.index_number_item--proposal .index_number_label + .index_number_value {
    margin-top: 3.0rem;
}

.index_number_lead + .index_number_value {
    margin-top: clamp(0.8rem, 1.2vw, 1.2rem);
}

.index_number_num {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(8rem, 8.46vw, 11rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #DA2F1D;
}

.index_number_item--proposal .index_number_num {
    font-size: clamp(4rem, 5.46vw, 7rem);
}

.index_number_unit,
.index_number_prefix {
    font-size: clamp(2.0rem, 4.4vw, 3.8rem);
    font-weight: 500;
    line-height: 1.4;
}

.index_number_item--proposal .index_number_unit,
.index_number_item--proposal .index_number_prefix {
    font-size: clamp(2rem, 3.4vw, 2.8rem);
}

.index_number_value--ratio {
    align-items: flex-end;
    gap: clamp(0.4rem, 0.8vw, 0.8rem);
}

.index_number_ratio_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2em;
}

.index_number_ratio_label {
    font-size: clamp(1.1rem, 1.2vw, 1.3rem);
    font-weight: 600;
    line-height: 1.4;
}

.index_number_ratio_colon {
    margin-bottom: 0.15em;
}

.index_number_note {
    margin: clamp(0.8rem, 1.2vw, 1.2rem) 0 0;
    font-size: clamp(1.4rem, 1.6vw, 1.6rem);
    font-weight: 600;
    line-height: 1.6;
}

@media screen and (max-width: 767px) {
    .index_number_list {
        grid-template-columns: 1fr;
        gap: clamp(1.2rem, 4vw, 1.6rem);
    }

    .index_number_card {
        height: auto;
        min-height: auto;
        aspect-ratio: 465 / 330;
        padding-top: 2.5rem;
    }

    .index_number_label {
        padding: 3px 20px;
    }

    .index_number_label + .index_number_value {
        margin-top: clamp(5.5rem, 10vw, 5.8rem);
    }
}

/*-------------------------------------------------------------
    top（MV）
-------------------------------------------------------------*/
.top_hero {
    position: relative;
    overflow: hidden;
}

.top_bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.top_bg img {
    display: block;
    width: 100%;
    height: 100% !important;
    max-width: none;
    object-fit: cover;
    object-position: top center;
}
/*
.top_bg01 img {
    opacity: 0.7;
}*/

.top_bg02 img {
    opacity: 0.7;
}

.top_hero > :not(.top_bg) {
    position: relative;
    z-index: 1;
}

.top_mv_area {
    position: relative;
    min-height: 100vh;
    overflow: visible;
}

.top_mv_area_kv {
    position: absolute;
    inset: 0;
}

.top_mv_dynamic {
    position: relative;
    width: 100%;
    height: 100%;
}

.top_mv_dynamic_obj {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.top_mv_dynamic_obj img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center center;
}

.top_mv_dynamic_sliders {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-inline: -1.25vw;
}

.top_mv_slider {
    flex: 0 0 auto;
    width: min(61.2vw + 144px, 720px);
    max-width: 720px;
    overflow: hidden;
}

.top_mv_slider_track {
    animation: top_mv_flow_up 120s linear infinite;
}

.top_mv_slider--02 .top_mv_slider_track {
    animation-duration: 120s;
    animation-delay: -25s;
}

.top_mv_slider_slide img {
    display: block;
    width: 100%;
    height: auto;
}

.top_mv {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.top_mv_text {
    text-align: center;
}

.top_mv_catch {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(3.2rem, 4.5vw, 6.8rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.215em;
}

.top_mv_catch_line {
    display: block;
}



@keyframes top_mv_flow_up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* 左右の流れる画像 */
.top_mv_slider {
    opacity: 0;
    animation: mvSliderFadeIn 2.5s ease 0.3s forwards;
}

/* 中央テキスト */
.top_mv_text {
    opacity: 0;
    transform: translateY(10px);
	animation: mvTextFadeIn 1.5s cubic-bezier(.42, 0, 1, 1) 1s forwards;
}

@keyframes mvSliderFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes mvTextFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 左右共通 */
.top_mv_slider {
    opacity: 0;
    scale: 1.08;
    transform-origin: center center;
}

/* 左：画面左側から内側へ */
.top_mv_slider--01 {
    animation: mvSliderLeftIn 3.5s cubic-bezier(.22, 1, .36, 1) 0.2s forwards;
}

/* 右：画面右側から内側へ */
.top_mv_slider--02 {
    animation: mvSliderRightIn 3.5s cubic-bezier(.22, 1, .36, 1) 0.2s forwards;
}

@keyframes mvSliderLeftIn {
    from {
        opacity: 0;
        translate: -3.5vw 0;
        scale: 1.08;
    }

    to {
        opacity: 1;
        translate: 0 0;
        scale: 1;
    }
}

@keyframes mvSliderRightIn {
    from {
        opacity: 0;
		translate: 3.5vw 0;
        scale: 1.08;
    }

    to {
        opacity: 1;
        translate: 0 0;
        scale: 1;
    }
}

@media screen and (max-width: 767px) {
    .top_mv_dynamic_obj {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .top_mv_dynamic_obj img {
        display: block;
        width: min(150vw, 72rem);
        height: auto;
        max-width: none;
        object-fit: contain;
        object-position: center center;
        transform: scale(1.15) translateX(1.5rem);
        transform-origin: center center;
    }

    .top_mv_dynamic_sliders {
        margin-inline: max(-7vw - 48px, -120px);
	    justify-content: space-around;
    }

    .top_mv_slider--01 {
        transform: translateX(clamp(-1.8rem, -4.5vw, -3rem));
    }

    .top_mv_slider--02 {
        transform: translateX(clamp(1.8rem, 4.5vw, 3rem));
    }

    .top_mv_slider {
        width: min(55.98vw, 233.28px);
        max-width: none;
    }

    .top_mv_slider_track {
        animation-duration: 120s;
    }

    .top_mv_slider--02 .top_mv_slider_track {
        animation-duration: 100s;
        animation-delay: -50s;
    }

    .top_mv {
        align-items: center;
        justify-content: center;
    }

    .top_mv_text {
        width: fit-content;
        max-width: calc(100% - 40px);
        margin-left: 1.5rem;
        text-align: center;
    }

    .top_mv_catch {
        font-size: clamp(2.8rem, 7.5vw, 4.8rem);
        line-height: 1.5;
    }

    .top_mv_catch_line + .top_mv_catch_line {
        margin-top: clamp(0.6rem, 2.5vw, 1.2rem);
    }

    .flow_marquee_item {
        font-size: clamp(3.2rem, 12vw, 8rem);
    }
}

/* ========================================
   Scroll Animation
======================================== */

/* 基本：下から上へ + フェード */
.js-scroll-anim {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
    transition:
        opacity 2.0s cubic-bezier(.22, 1, .36, 1),
        transform 2.0s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;
}

.js-scroll-anim.is-show {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}


/* -------------------------
   左から
------------------------- */
.js-scroll-anim.anim-left {
    transform: translate3d(-60px, 20px, 0);
}

.js-scroll-anim.anim-left.is-show {
    transform: translate3d(0, 0, 0);
}


/* -------------------------
   右から
------------------------- */
.js-scroll-anim.anim-right {
    transform: translate3d(60px, 20px, 0);
}

.js-scroll-anim.anim-right.is-show {
    transform: translate3d(0, 0, 0);
}


/* -------------------------
   ズーム
------------------------- */
.js-scroll-anim.anim-scale {
    transform: translate3d(0, 30px, 0) scale(.94);
}

.js-scroll-anim.anim-scale.is-show {
    transform: translate3d(0, 0, 0) scale(1);
}


/* -------------------------
   マスクが開くような演出
------------------------- */
.js-scroll-anim.anim-mask {
    opacity: 1;
    transform: none;
    clip-path: inset(100% 0 0 0);
    transition:
        clip-path 1.1s cubic-bezier(.76, 0, .24, 1);
}

.js-scroll-anim.anim-mask.is-show {
    clip-path: inset(0 0 0 0);
}


/* -------------------------
   奥から浮かび上がる
------------------------- */
.js-scroll-anim.anim-depth {
    transform:
        perspective(1000px)
        translate3d(0, 70px, -80px)
        rotateX(5deg);
    filter: blur(5px);
    transition:
		opacity 2s cubic-bezier(.22, 1, .36, 1),
        transform 2s cubic-bezier(.22, 1, .36, 1),
        filter 2s cubic-bezier(.22, 1, .36, 1);
}

.js-scroll-anim.anim-depth.is-show {
    transform:
        perspective(1000px)
        translate3d(0, 0, 0)
        rotateX(0);
    filter: blur(0);
}


/* ========================================
   Stagger
======================================== */

.js-scroll-stagger > .js-scroll-anim:nth-child(1) {
    transition-delay: 0s;
}

.js-scroll-stagger > .js-scroll-anim:nth-child(2) {
    transition-delay: .12s;
}

.js-scroll-stagger > .js-scroll-anim:nth-child(3) {
    transition-delay: .24s;
}

.js-scroll-stagger > .js-scroll-anim:nth-child(4) {
    transition-delay: .36s;
}

.js-scroll-stagger > .js-scroll-anim:nth-child(5) {
    transition-delay: .48s;
}

.js-scroll-stagger > .js-scroll-anim:nth-child(6) {
    transition-delay: .72s;
}

.js-scroll-stagger > .js-scroll-anim:nth-child(7) {
    transition-delay: .84s;
}

.js-scroll-stagger > .js-scroll-anim:nth-child(8) {
    transition-delay: .96s;
}

.js-scroll-stagger > .js-scroll-anim:nth-child(9) {
    transition-delay: 1.08s;
}

.js-scroll-stagger > .js-scroll-anim:nth-child(10) {
    transition-delay: 1.20s;
}

.js-scroll-stagger > .js-scroll-anim:nth-child(11) {
    transition-delay: 1.32s;
}

.js-scroll-stagger > .js-scroll-anim:nth-child(12) {
    transition-delay: 1.44s;
}


/* アニメーション不要設定 */
@media (prefers-reduced-motion: reduce) {
    .js-scroll-anim {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        clip-path: none !important;
        transition: none !important;
    }
}
