@charset "UTF-8";
main {
    position: relative;
}

/* ===============
    video-background
================ */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    filter: brightness(70%) contrast(90%);
}
.video-background.hide {
    opacity: 0;
}

.video-background .video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}
.video-background .video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}
.video-background .video-container.pc-video iframe {
    width: 180vh;
}
.video-background .video-container.sp-video iframe {
    height: 180vw;
}
.pc-video {
    display: none;
}
.sp-video {
    display: block;
}
@media (min-width: 769px) {
    .pc-video {
        display: block;
    }
    .sp-video {
        display: none;
    }
}

.video-background .background-video-player {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}


/* ===============
    scroll-indicator
================ */
.scroll-indicator {
    position: fixed;
    bottom: 0px;
    right: 18px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
@media (min-width: 769px) {
    .scroll-indicator {
        right: 68px;
        gap: 10px;
    }
}
.scroll-text {
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
}
@media (min-width: 769px) {
    .scroll-text {
        font-size: 12px;
    }
}
.line-wrapper {
    width: 1px;
    height: 160px;
    position: relative;
    overflow: hidden;
    /*debug*/
    /*
    background-color: #444; 
    */
}
@media (min-width: 769px) {
    .line-wrapper {
        height: 200px;
    }
}
.scroll-indicator .line {
    width: 100%;
    height: 0;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    animation: growAndShrink 2.5s ease-in-out infinite;
}
@keyframes growAndShrink {
    0% {
        height: 0;
        top: 0;
    }
    30% {
        height: 100%;
        top: 0;
    }
    70% {
        height: 100%;
        top: 100%;
    }
    100% {
        height: 0;
        top: 100%;
    }
}

/* ===============
    kv　main-title
================ */
.kv-sec {
    padding-top: 50vh;  /*main-title position-Y*/
}
.background-transparent {
    width: 100%;
    height: 37vh;   /*100vh --> (padding-top + main-title-height + this-elm-height)*/
    position: relative;
}
.kv-sec .main-title {
    position: sticky;
    width: 172px;
    top: calc(var(--winH) * 140);  /*sticky時の固定ポジション*/
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}
@media (min-width: 769px) {
    .kv-sec .main-title {
        position: sticky;
        width: 260px;
        top: calc(var(--winH) * 220);  /*sticky時の固定ポジション*/
    }
}

/* ===============
    introduction
================ */
.introduction {
    width: 100%;
    height: auto;
    background: #0BCFDD;
    position: relative;
    padding-top: 297px;
}
@media (min-width: 769px) {
    .introduction {
        padding-top: 297px;
    }
}

.introduction .main-logo {
    position: sticky;
    width: 300px;
    top: calc(var(--winH) * 198);  /*sticky時の固定ポジション*/
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 769px) {
    .introduction .main-logo {
        width: 736px;
        top: calc(var(--winH) * 320);  /*sticky時の固定ポジション*/
    }
}
.intro-text {
    color: #333;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 2.5;
    position: sticky;
    width: 100%;
    top: calc(var(--winH) * 455);  /*sticky時の固定ポジション*/
    transform: translateY(-50%);
}
@media (min-width: 769px) {
    .intro-text {
        font-size: 16px;
        letter-spacing: 0.15em;
        line-height: 2.375;
        top: calc(var(--winH) * 650);  /*sticky時の固定ポジション*/
    }
}
.intro-space {
    width: 100%;
    height: 300px;
}
.movie-sec {
    background-color: #0BCFDD;
    height: 1500px;
    position: sticky;
    z-index: 2;
    top: 0;
    overflow: hidden;
}
@media (min-width: 769px) {
    .movie-sec {
        height: 2000px;
        top: -60px;
    }
}
.movie-sec-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    font-size: 34px;
    letter-spacing: 0.2em;
    gap: 10px;
    color: #fff;
    margin-bottom: 5px;
}
@media (min-width: 769px) {
    .movie-sec-title {
        margin-top: 70px;
        font-size: 50px;
        letter-spacing: 0.3em;
        gap: 13px;
        margin-bottom: 15px;
    }
}

.movie-sec-title .sub {
    font-size: 0.411em;
    letter-spacing: 0.2em;
}
.movie-sec .white-area {
    background-color: #fff;
    width: 100%;
    height: calc(var(--winW) * 360);
    margin-top: calc(var(--winW) * (-250));
}
@media (min-width: 500px) and (max-width: 768px) {
    .movie-sec .white-area {
        height: 370px;
        margin-top: -333.333px;
    }
}
@media (min-width: 769px) {
    .movie-sec .white-area {
        height: calc(var(--winW) * 400);
        margin-top: calc(var(--winW) * (-250));
    }
}

.aftertalk-sec {
    background-color: #0BCFDD;
    height: auto;
    position: relative;
    z-index: 3;
    padding-top: 100px;
    padding-bottom: 74px;
}
@media (min-width: 769px) {
    .aftertalk-sec {
        padding-top: 198px;
    }
}
.aftertalk-sec-logo {
    width: 102px;
    margin: 0 auto;
    margin-bottom: 25px;
}
@media (min-width: 769px) {
    .aftertalk-sec-logo {
        width: 122px;
        margin-bottom: 25px;
    }
}
.aftertalk-sec-title {
    color: #fff;
    font-size: 34px;
    letter-spacing: 0.2em;
    text-align: center;
    margin-bottom: 41px;
}
@media (min-width: 769px) {
    .aftertalk-sec-title {
        font-size: 43px;
        letter-spacing: 0.3em;
        margin-bottom: 49px;
    }
}
.aftertalk-sec-intro {
    color: #333333;
    font-size: 12px;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}
@media (min-width: 769px) {
    .aftertalk-sec-intro {
        font-size: 14px;
        margin-bottom: 44px;
    }
}
.aftertalk-sec .movie_modal {
    position: relative;
    width: 315px;
    display: block;
    margin: 0 auto;
    margin-bottom: 32px;
}
@media (min-width: 769px) {
    .aftertalk-sec .movie_modal {
        width: 1000px;
        max-width: 90%;
        margin-bottom: 91px;
    }
}
.aftertalk-sec .movie_modal .play-button {
    position: absolute;
    top: 87%;
    left: 88%;
    transform: translate(-50% , -50%);
    width: 60px;
}
@media (min-width: 769px) {
    .aftertalk-sec .movie_modal .play-button {
        width: 80px;
        top: 90%;
        left: 94%;
    }
}
.movie_open .modaal-container {
    padding-top: 60px;
    background-color: #000;
}

.comment-wrap {
    position: relative;
    width: 315px;
    margin: 0 auto;
}
@media (min-width: 769px) {
    .comment-wrap {
        width: 1000px;
        max-width: 90%;
        display: flex;
        column-gap: 5.4%;
        align-items: center;
    }
}
.profile-img {
    width: 140px;
    position: absolute;
    top: 237px;
    right: 5px;
}
@media (min-width: 769px) {
    .profile-img {
        position: relative;
        width: 30%;
        top: auto;
        right: auto;
    }
}
.comment-wrap .text-elm {
    color: #333333;
}
@media (min-width: 769px) {
    .comment-wrap .text-elm {
        width: 65.3%;
        padding-top: 23px;
    }
}
.comment-wrap .text-elm .comment-text {
    margin-bottom: 114px;
}
@media (min-width: 769px) {
    .comment-wrap .text-elm .comment-text {
        margin-bottom: 34px;
    }
}
.comment-wrap .text-elm .title-white {
    font-size: 12px;
    letter-spacing: 0.3em;
    margin-bottom: 1.5em;
    color: #fff;
}
@media (min-width: 769px) {
    .comment-wrap .text-elm .title-white {
        font-size: 14px;
        margin-bottom: 1.92em;
    }
}
.comment-wrap .text-elm .comment-text .detail {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.8;
}
@media (min-width: 769px) {
    .comment-wrap .text-elm .comment-text .detail {
        font-size: 16px;
        line-height: 2.1;
    }
}
.profile-name {
    margin-bottom: 73px;
}
@media (min-width: 769px) {
    .profile-name {
        display: flex;
        align-items: flex-end;
        margin-bottom: 22px;
        column-gap: 20px;
    }
}
.profile-name .jp {
    font-size: 20px;
    letter-spacing: 0.65em;
    line-height: 2;
}
@media (min-width: 769px) {
    .profile-name .jp {
        font-size: 30px;
        line-height: 1;
    }
}
.profile-name .en {
    font-size: 12px;
    letter-spacing: 0.15em;
    line-height: 2;
}
@media (min-width: 769px) {
    .profile-name .en {
        font-size: 14px;
        line-height: 1.5;
    }
}
.profile-detail {
    font-size: 11px;
    line-height: 1.8;
}
@media (min-width: 769px) {
    .profile-detail {
        font-size: 11px;
        letter-spacing: 0.05em;
    }
}

.movie_open {
	.modaal-video-container {
		max-width: none;
		max-height: none;
	}
	.modaal-inner-wrapper {
		@media (max-width: 768px) {
			padding-left: 0;
			padding-right: 0;
		}
	}
	.modaal-video-wrap {
		@media (max-width: 768px) {
			margin: auto;
		}
	}

	.modaal-close:after,
	.modaal-close:before {
		width: 2px;
	}
	.modaal-close:focus, .modaal-close:hover {
		background: none;
	}
	.modaal-close:focus:after, .modaal-close:focus:before, .modaal-close:hover:after, .modaal-close:hover:before {
		background: var(--color-gray01);
	}
}

.support-sec {
    background-color: #0BCFDD;
    height: auto;
    position: relative;
    z-index: 3;
    border-top: solid 2px #fff;
    padding-top: 78px;
    padding-bottom: 72px;
}
@media (min-width: 769px) {
    .support-sec {
        padding-top: 88px;
        padding-bottom: 94px;
    }
}
.support-sec-title {
    color: #fff;
    text-align: center;
    font-size: 30px;
    margin-bottom: 44px;
    letter-spacing: 0.2em;
}
@media (min-width: 769px) {
    .support-sec-title {
        font-size: 32px;
        margin-bottom: 61px;
    }
}
.support-sec-link-list {
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
}
@media (min-width: 769px) {
    .support-sec-link-list {
        flex-direction: row;
        justify-content: center;
        column-gap: 2.77%;
        width: 1080px;
        max-width: 90%;
    }
}
.support-sec-link-list .item {
    width: 315px;
    height: 120px;
    background-color: #fff;
    border-radius: 5px;
}
@media (min-width: 769px) {
    .support-sec-link-list .item {
        width: 31.48%;
        height: 180px;
        border-radius: 10px;
    }
}
.support-sec-link-list .item a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333333;
    font-size: 14px;
    letter-spacing: 0.1em;
}
@media (min-width: 769px) {
    .support-sec-link-list .item a {
        font-size: 17px;
    }
}

.support-sec-link-list .item a .icon_1 {
    width: 64.8px;
    margin-bottom: 12.2px;
}
.support-sec-link-list .item a .icon_2 {
    width: 37.81px;
    margin-bottom: 20.1px;
}
.support-sec-link-list .item a .icon_3 {
    width: 45px;
    margin-bottom: 18.6px;
}
@media (min-width: 769px) {
    .support-sec-link-list .item a .icon_1 {
        width: 72px;
        margin-bottom: 30px;
    }
    .support-sec-link-list .item a .icon_2 {
        width: 42.01px;
        margin-bottom: 33px;
    }
    .support-sec-link-list .item a .icon_3 {
        width: 50px;
        margin-bottom: 32px;
    }
}

.links-sec {
    background-color: #EEEEEE;
    height: auto;
    position: relative;
    z-index: 3;
    padding-top: 62px;
    padding-bottom: 67px;
}
@media (min-width: 769px) {
    .links-sec {
        padding-top: 82px;
        padding-bottom: 81px;
    }
}
.links-sec-title {
    color: #333333;
    font-size: 30px;
    text-align: center;
    letter-spacing: 0.3em;
    margin-bottom: 30px;
}
@media (min-width: 769px) {
    .links-sec-title {
        font-size: 32px;
        margin-bottom: 67px;
    }
}
.links-sec-link-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 28px;
}
@media (min-width: 769px) {
    .links-sec-link-list {
        flex-direction: row;
        justify-content: center;
        width: 880px;
        max-width: 90%;
        margin: 0 auto;
        column-gap: 3.2%;
    }
}
.links-sec-link-list .item {
    width: 335px;
}
@media (min-width: 769px) {
    .links-sec-link-list .item {
        width: 48%;
    }
}



        .swiper-container {
            width: 640px;
            height: 360px;
            margin: 0 auto;
            position: relative;
        }

        .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .swiper-container .video-container {
            width: 100%;
            height: auto;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            background-color: #000;
        }

        /*
        .video-container .thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-container .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background-color: rgba(0, 0, 0, 0.6);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10;
            pointer-events: none;
        }
        
        .video-container .play-button::after {
            content: '';
            border-style: solid;
            border-width: 20px 0 20px 30px;
            border-color: transparent transparent transparent #fff;
            margin-left: 5px;
        }
        */


        .video-container .mp4-player {
            width: 100%;
            height: 100%;
            display: block;
        }

        .swiper-control-container {
            position: relative;
            max-width: 800px;
            margin: 40px auto;
            padding: 0 80px;
            box-sizing: border-box;
        }

        .swiper-button-next,
        .swiper-button-prev {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
            background-color: rgba(0, 0, 0, 0.5);
            padding: 10px;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .swiper-button-prev {
            left: 15px;
        }

        .swiper-button-next {
            right: 15px;
        }

.swiper-pagination {
    position: relative;
    left: 50%;
    width: auto !important;
}
        .swiper-pagination-bullet {
            background-color: #000;
            opacity: 0.8;
            margin: 0 5px;
        }

        .swiper-pagination-bullet-active {
            background-color: #f00;
        }
        
        #main-swiper-container {
            display: block;
        }
#thumbnail-swiper-container {
    display: none;
    max-width: 500px;
    padding: 0 5.13%;
    margin: 0 auto;
    padding-bottom: calc(var(--winW) * 30);
}
@media (min-width: 500px) {
    #thumbnail-swiper-container {
        padding-bottom: 40px;
    }
}

#thumbnail-swiper-container .swiper-container {
    width: 100%;
    height: auto;
    overflow: visible;
}
#thumbnail-swiper-container .swiper-slide {
    cursor: pointer;
}
#thumbnail-swiper-container .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}
#thumbnail-swiper-container .swiper-slide {
    flex-direction: column;
    width: 71.3%;
    /* 左右のスライドを少し小さく、半透明にする */
    transform: scale(0.8);
    opacity: 1;
    filter: brightness(0.7);
    transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
}
#thumbnail-swiper-container .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    filter: brightness(1);
}
#thumbnail-swiper-container .text-area {
    text-align: center;
    padding-top: calc(var(--winW) * 16);
}
@media (min-width: 500px) {
    #thumbnail-swiper-container .text-area {
        padding-top: 21.333px;
    }
}
#thumbnail-swiper-container .text-area .movie-title {
    font-size: calc(var(--winW) * 24);
    margin-bottom: calc(var(--winW) * 11);
    color: #333333;
    white-space: nowrap;
}
@media (min-width: 500px) {
    #thumbnail-swiper-container .text-area .movie-title {
        font-size: 32px;
        margin-bottom: 14.6667px;
    }
}
#thumbnail-swiper-container .text-area .movie-title > .text-min {
    font-size: 0.583em;
    padding-left: 0.5em;
}
#thumbnail-swiper-container .text-area .movie-text {
    color: #999999;
    font-size: calc(var(--winW) * 11);
    letter-spacing: 0.05em;
    white-space: nowrap;
    line-height: 1.636;
    margin-bottom: calc(var(--winW) * 16);
}
#thumbnail-swiper-container .text-area .movie-text > .min {
    font-size: 0.7272em;
}
@media (min-width: 500px) {
    #thumbnail-swiper-container .text-area .movie-text {
        font-size: 14.6667px;
        margin-bottom: 21.3333px;
    }
}
#thumbnail-swiper-container .text-area .movie-btn {
    color: #333333;
    display: flex;
    font-size: calc(var(--winW) * 12);
    width: calc(var(--winW) * 240);
    height: calc(var(--winW) * 40);
    justify-content: center;
    align-items: center;
    background-color: #0BCFDD;
    position: relative;
    margin: 0 auto;
}
@media (min-width: 500px) {
    #thumbnail-swiper-container .text-area .movie-btn {
        font-size: 16px;
        width: 320px;
        height: 53.3333px;
    }
}
#thumbnail-swiper-container .text-area .movie-btn .arrow {
    width: calc(var(--winW) * 8);
    position: absolute;
    right: calc(var(--winW) * 25);
}
@media (min-width: 500px) {
    #thumbnail-swiper-container .text-area .movie-btn .arrow {
        width: 10.6667px;
        right: 33.3333px;
    }
}
#thumbnail-swiper-container .swiper-slide .text-area .movie-title {
    transform: translateY(25%);
    opacity: 0;
}
#thumbnail-swiper-container .swiper-slide-active .text-area .movie-title {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.4s ease 0.4s, opacity 0.4s ease 0.4s;
}
#thumbnail-swiper-container .swiper-slide .text-area .movie-text {
    transform: translateY(25%);
    opacity: 0;
}
#thumbnail-swiper-container .swiper-slide-active .text-area .movie-text {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.4s ease 0.5s, opacity 0.4s ease 0.5s;
}
#thumbnail-swiper-container .swiper-slide .text-area .movie-btn {
    transform: translateY(25%);
    opacity: 0;
}
#thumbnail-swiper-container .swiper-slide-active .text-area .movie-btn {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.4s ease 0.6s, opacity 0.4s ease 0.6s;
}
#thumbnail-swiper-container .swiper-button-next,
#thumbnail-swiper-container .swiper-button-prev {
    color: #333;
    background: rgba(255,255,255,0.8);
}
#thumbnail-swiper-container .swiper-pagination {
    bottom: calc(var(--winW) * (-14)) !important;
}
@media (min-width: 500px) {
    #thumbnail-swiper-container .swiper-pagination {
        bottom: -18.6667px !important;
    }
}
#thumbnail-swiper-container .swiper-pagination-bullet {
    opacity: 1;
    margin: 0 5px;
    border: solid 1px #0BCFDD;
    background-color: transparent;
}
#thumbnail-swiper-container .swiper-pagination-bullet-active {
    background-color: #0BCFDD;
}
#thumbnail-swiper-container .play-button {
    position: absolute;
    top: 81%;
    left: 87%;
    transform: translate(-50%, 0);
    width: calc(var(--winW) * 47.21);
    z-index: 10;
    pointer-events: none;
}
.thumbnail-wrap {
    position: relative;
    width: 100%;
}
@media (min-width: 500px) {
    #thumbnail-swiper-container .play-button {
        width: 62.9467px;
    }
}
#thumbnail-swiper-container .movie-num {
    margin-right: auto;
    color: #fff;
    margin-bottom: 0;
    font-size: calc(var(--winW) * 34);
    position: relative;
    display: flex;
    align-items: flex-start;
}
@media (min-width: 500px) {
    #thumbnail-swiper-container .movie-num {
        font-size: 41.3333px;
    }
}
#thumbnail-swiper-container .movie-num > .min {
    font-size: 0.6em;
    padding-top: 0.2em;
}


@media (max-width: 768px) {
    #main-swiper-container {
        display: none;
    }
    #thumbnail-swiper-container {
        display: block;
    }
    .swiper-container {
        width: 100%;
    }
}

#main-swiper-container.swiper-control-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 calc(var(--winW) * 83);
    box-sizing: border-box;
}

#main-swiper-container .swiper-container {
    width: 100%;
    height: auto;
    overflow: visible;
}
#main-swiper-container .swiper-slide {
    flex-direction: column;
    width: 65.5%;
    height: auto;
    transform: scale(0.8);
    opacity: 1;
    filter: brightness(0.7);
    transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
}
#main-swiper-container .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    filter: brightness(1);
}
#main-swiper-container .video-container {
    width: calc(var(--winW) * 940);
    height: calc(var(--winW) * 528);
}
#main-swiper-container .text-area {
    display: flex;
    text-align: left;
    padding-top: calc(var(--winW) * 30);
    width: 100%;
}
#main-swiper-container .text-area .movie-title {
    font-size: calc(var(--winW) * 34);
    color: #333333;
    white-space: nowrap;
    padding-top: 0.4em;
    margin-right: calc(var(--winW) * 26);
}
#main-swiper-container .text-area .movie-title > .text-min {
    font-size: 0.529em;
    padding-left: 0.5em;
}
#main-swiper-container .text-area .movie-text {
    color: #999999;
    font-size: calc(var(--winW) * 14);
    letter-spacing: 0.05em;
    white-space: nowrap;
    line-height: 1.714;
    flex-grow: 1;
}
#main-swiper-container .text-area .movie-text > .min {
    font-size: 0.7272em;
}
#main-swiper-container .text-area .movie-btn {
    color: #333333;
    display: flex;
    font-size: calc(var(--winW) * 15);
    width: calc(var(--winW) * 270);
    height: calc(var(--winW) * 60);
    justify-content: center;
    align-items: center;
    background-color: #0BCFDD;
    position: relative;
    margin: 0 auto;
    margin-left: 0.5em;
}
#main-swiper-container .text-area .movie-btn .arrow {
    width: calc(var(--winW) * 10);
    position: absolute;
    right: calc(var(--winW) * 24);
}
#main-swiper-container .swiper-slide .text-area .movie-title {
    transform: translateY(25%);
    opacity: 0;
}
#main-swiper-container .swiper-slide-active .text-area .movie-title {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.4s ease 0.4s, opacity 0.4s ease 0.4s;
}
#main-swiper-container .swiper-slide .text-area .movie-text {
    transform: translateY(25%);
    opacity: 0;
}
#main-swiper-container .swiper-slide-active .text-area .movie-text {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.4s ease 0.5s, opacity 0.4s ease 0.5s;
}
#main-swiper-container .swiper-slide .text-area .movie-btn {
    transform: translateY(25%);
    opacity: 0;
}
#main-swiper-container .swiper-slide-active .text-area .movie-btn {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.4s ease 0.6s, opacity 0.4s ease 0.6s, filter 0.6s ease;
}

#main-swiper-container .movie-num {
    margin-right: auto;
    color: #fff;
    margin-bottom: 0;
    font-size: calc(var(--winW) * 60);
    position: relative;
    display: flex;
    align-items: flex-start;
    z-index: 1;
}
#main-swiper-container .movie-num > .min {
    font-size: 0.5em;
    padding-top: 0.3em;
}
#main-swiper-container .swiper-button-next::after,
#main-swiper-container .swiper-button-prev::after {
    content: none;
}
#main-swiper-container .swiper-button-next {
    background: none;
    height: auto;
    right: calc(var(--winW) * 266);
    width: calc(var(--winW) * 31);
    padding: 0;
}
#main-swiper-container .swiper-button-prev {
    background: none;
    height: auto;
    left: calc(var(--winW) * 266);
    width: calc(var(--winW) * 31);
    padding: 0;
}
#main-swiper-container .swiper-pagination {
    top: calc(var(--winW) * 37);
    right: calc(var(--winW) * 325);
    left: auto;
    bottom: inherit !important;
    position: absolute;
}
#main-swiper-container .swiper-pagination-bullet {
    opacity: 1;
    margin: 0 5px;
    border: solid 1px #fff;
    background-color: transparent;
}
#main-swiper-container .swiper-pagination-bullet-active {
    background-color: #fff;
}
#main-swiper-container .play-button {
    position: absolute;
    top: 76%;
    left: 69.8%;
    transform: translate(-50%, -50%);
    width: calc(var(--winW) * 94.43);
    z-index: 10;
    pointer-events: none;
}

.movie-modal-style .modaal-content-container {
    padding: 0;
}
.movie-modal-style .modaal-container {
    background-color: #000;
}
.movie-modal-style .modaal-inner-wrapper {
    padding-left: 0;
    padding-right: 0;
}
.movie-modal-style .modaal-content {
    padding: 0;
    background: #000;
}
.movie-modal-style .modal-swiper-container {
    width: 100%;
    height: auto;
}
.movie-modal-style .swiper-control-container {
    padding: 0;
    max-width: calc(var(--winW) * 356);
}
.movie-modal-style .swiper-pagination {
    display: none;
}
.movie-modal-style .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(var(--winW) * 44);
    z-index: 10;
    pointer-events: none;
}
.movie-modal-style  .swiper-slide {
    flex-direction: column;
    height: auto;
}
.movie-modal-style .text-area {
    display: flex;
    text-align: center;
    position: relative;
    margin-bottom: 16px;
    margin-top: 36px;
}
.movie-modal-style .text-area .movie-title {
    font-size: 18px;
    color: #fff;
    white-space: nowrap;
}
.movie-modal-style .text-area .movie-title > .text-min {
    font-size: 0.729em;
    padding-left: 0.5em;
}

.movie-modal-style .swiper-button-next::after,
.movie-modal-style .swiper-button-prev::after {
    content: none;
}
.movie-modal-style .swiper-button-next {
    background: none;
    height: auto;
    padding: 0;
    top: inherit;
    bottom: inherit;
    right: inherit;
    width: calc(var(--winW) * 59.16);
    position: relative;
    margin-left: auto;
}
.movie-modal-style .swiper-button-prev {
    background: none;
    height: auto;
    padding: 0;
    top: inherit;
    bottom: inherit;
    left: inherit;
    width: calc(var(--winW) * 59.16);
    position: relative;
    margin-right: auto;
}
.next-prev-wrap {
    display: flex;
    flex-direction: row-reverse;
}
.movie-modal-style .movie-num {
    margin-right: auto;
    color: #fff;
    margin-bottom: 22px;
    font-size: calc(var(--winW) * 52);
    position: relative;
    display: flex;
    align-items: flex-start;
    z-index: 1;
}
.movie-modal-style .movie-num > .min {
    font-size: 0.5em;
    padding-top: 0.3em;
}
.movie-modal-style .movie-num .total {
    font-size: 0.4em;
    color: #999999;
    padding-top: 0.3em;
    padding-left: 0.2em;
}
.movie-modal-style .movie-num .total > .min{
    font-size: 0.5em;
    vertical-align: top;
}
.movie-modal-style .video-container {
    width: calc(var(--winW) * 356);
    height: calc(var(--winW) * 200.25);
}

.modaal-close-custom {
    width: 68px;
    display: block;
    position: absolute;
    right: 3%;
    top: 12%;
    z-index: 20;
}

/* sp float */
@media (max-width: 768px) {
    .float-nav {
        width: 363px;
        height: 55px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    .float-nav ul {
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        overflow: hidden;
    }
    .float-nav ul li {
        height: 100;
        background-color: rgba(43,43,43,0.8);
    }
    .float-nav ul li a {
        width: 100%;
        height: 100%;
        display: flex;
        font-size: 10px;
        color: #DDDDDD;
        flex-direction: column;
        justify-content: flex-end;
        padding-bottom: 10px;
        align-items: center;
        position: relative;
        letter-spacing: 0.05em;
    }
    .float-nav ul li:nth-child(1) {
        border-radius: 7px 0px 0px 7px;
        width: 94px;
    }
    .float-nav ul li:nth-child(2) {
        width: 75px;
    }
    .float-nav ul li:nth-child(3) {
        border-radius: 0px 7px 7px 0px;
        width: 107px;
    }
    .float-nav ul li:nth-child(1) a .icon {
        width: 20.46px;
        margin-bottom: 11px;
    }
    .float-nav ul li:nth-child(2) a .icon {
        width: 14px;
        margin-bottom: 10px;
    }
    .float-nav ul li:nth-child(3) a .icon {
        width: 14px;
        margin-bottom: 7.5px;
    }

    .float-nav ul li:nth-child(1) a::after,
    .float-nav ul li:nth-child(2) a::after
    {
        content: '';
        display: block;
        width: 1px;
        height: 25px;
        background-color: #999999;
        position: absolute;
        top: 7px;
        right: 0;
    }
}

/*pc float*/
@media (min-width: 769px) {
    .float-nav {
        width: 45px;
        height: 600px;
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto;
    }
    .float-nav ul {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        row-gap: 5px;
    }
    .float-nav ul li {
        width: 100%;
        border-radius: 3px 0px 0px 3px;
    }
    .float-nav ul li a {
        height: 100%;
        width: 100%;
        display: block;
        flex-direction: column;
        align-content: center;
        align-items: center;
        font-size: 11px;
        letter-spacing: 0;
        color: #DDDDDD;
        flex-wrap: wrap;
        justify-content: center;
    }
    .float-nav ul li:nth-child(1) {
        height: 155px;
    }
    .float-nav ul li:nth-child(2) {
        height: 120px;
    }
    .float-nav ul li:nth-child(3) {
        height: 175px;
    }
}

@media (max-width: 768px) {
    .float-nav {
        transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transform: translateY(100%);
    }
    .float-nav.active {
        transform: translateY(0);
    }
}
@media (min-width: 769px) {
    .float-nav {
        transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transform: translateX(100%);
    }
    .float-nav.active {
        transform: translateX(0);
    }
    .float-nav ul li {
        transition: opacity 0.2s ease-in-out;
    }
    .float-nav ul li:hover {
        opacity: 0.8;
    }
}

.profile-img .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.notice-text {
    margin-top: 60px;
    padding-right: 2em;
    text-align: right;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #333333;
    line-height: 1.7;
}
@media (max-width: 508px) {
    .notice-text {
        display: block;
        width: 315px;
        margin: 0 auto;
        margin-top: 60px;
        text-align: left;
        padding-right: 0;
    }
}

@media (min-width: 509px) and (max-width: 520px) {
    .notice-text {
        display: flex;
        width: 315px;
        margin: 0 auto;
        margin-top: 60px;
        white-space: nowrap;
    }
}
@media (min-width: 769px) {
    .notice-text {
        display: block;
        width: 90%;
        max-width: 1000px;
        margin: 0 auto;
        margin-top: 60px;
        padding: 0;
    }
}


/* ===================================================
    hover animation
=================================================== */
.video-container .play-button,
.movie-btn,
.support-sec-link-list .item,
.links-sec-link-list .item,
.movie_modal .play-button
{
    transition: filter 0.6s ease;
}

.video-container:hover .play-button,
.movie-btn:hover,
.support-sec-link-list .item:hover,
.links-sec-link-list .item:hover,
.movie_modal:hover .play-button
{
    filter: brightness(0.7);
}

/* ===================================================
    画面が広くて低い（横長）の場合の表示崩れ対策
=================================================== */
@media (min-width: 1340px) and (max-height: 810px) {

    /* KVタイトルの固定位置を少し上げる */
    .kv-sec .main-title {
        width: calc(var(--winH) * 300);
    }

    /* Introductionロゴの固定位置を調整 */
    .introduction .main-logo {
        top: 35vh; /* 元の値: 244px */
    }
    
    /* Introductionテキストの固定位置を大幅に上げる */
    .intro-text {
        top: 68vh; /* 元の値: 580px */
        line-height: 2; /* 行間も少し詰める */
    }

    /* Introductionセクション全体の高さを少し詰める */
    .introduction {
        padding-top: 200px;
    }

    .intro-space {
        height: 150px;
    }
    
    /* movieセクションの高さを調整 */
    .movie-sec {
        height: 1600px; /* 元の値: 2000px */
        top: -100px;
    }
        /* タイトルの上下マージンと文字サイズを縮小 */
    .movie-sec-title {
        margin-top: 30px;    /* 元の値: 70px */
        font-size: 38px;     /* 元の値: 50px */
        margin-bottom: 10px; /* 元の値: 15px */
    }

    #main-swiper-container.swiper-control-container {
        padding: 0 calc(var(--winW) * 83px);
        max-width: 212svh;
    }
    #main-swiper-container .swiper-button-next {
        right: 27svh;
    }
    #main-swiper-container .swiper-button-prev {
        left: 27svh;
    }
    #main-swiper-container .swiper-pagination {
        right: calc(var(--winW) * 275);
        top: calc(var(--winW) * 30);
    }

    /* スライダーのビデオコンテナの高さを縮小（最重要） */
    /* ※幅も比率を合わせて調整し、アスペクト比を維持します */
    #main-swiper-container .video-container {
        width: 132svh;  /* 元の値: calc(var(--winW) * 940) */
        aspect-ratio: 670 / 376;
        height: auto;
    }

    /* テキストエリアの上の余白を縮小 */
    #main-swiper-container .text-area {
        padding-top: 1.5svh; /* 元の値: calc(var(--winW) * 30) */
        padding-left: 0.5svh; /* 元の値: calc(var(--winW) * 30) */
        padding-right: 0.5svh; /* 元の値: calc(var(--winW) * 30) */

    }

    /* テキストエリア内の各要素の文字サイズや高さを調整 */
    #main-swiper-container .text-area .movie-title {
        font-size: 4svh; /* 元の値: calc(var(--winW) * 34) */
    }

    #main-swiper-container .text-area .movie-text {
        font-size: 2svh; /* 元の値: calc(var(--winW) * 14) */
    }

    #main-swiper-container .text-area .movie-btn {
        width: 40svh;  /* 元の値: calc(var(--winW) * 270) */
        height: 8.33svh;   /* 元の値: calc(var(--winW) * 60) */
        font-size: 2svh; /* 元の値: calc(var(--winW) * 15) */
    }

    /* スライダー全体の高さを確保している white-area も調整 */
    .movie-sec .white-area {
        height: calc(var(--winW) * 250);    /* 元の値: calc(var(--winW) * 400) */
        margin-top: calc(var(--winW) * (-180)); /* 元の値: calc(var(--winW) * (-250)) */
    }
}
@media (min-width: 769px) and (max-width: 1329px) and (max-height: 820px) {
    /* KVタイトルの固定位置を少し上げる */
    .kv-sec .main-title {
        width: calc(var(--winH) * 300);
    }

    /* Introductionロゴの固定位置を調整 */
    .introduction .main-logo {
        top: 35vh; /* 元の値: 244px */
    }
    
    /* Introductionテキストの固定位置を大幅に上げる */
    .intro-text {
        top: 68vh; /* 元の値: 580px */
        line-height: 2; /* 行間も少し詰める */
    }

    /* Introductionセクション全体の高さを少し詰める */
    .introduction {
        padding-top: 200px;
    }

    .intro-space {
        height: 150px;
    }
    
    /* movieセクションの高さを調整 */
    .movie-sec {
        height: 1600px; /* 元の値: 2000px */
        top: 0px;
    }
        /* タイトルの上下マージンと文字サイズを縮小 */
    .movie-sec-title {
        margin-top: 30px;    /* 元の値: 70px */
        font-size: 38px;     /* 元の値: 50px */
        margin-bottom: 10px; /* 元の値: 15px */
    }

    #main-swiper-container.swiper-control-container {
        padding: 0 calc(var(--winW) * 83px);
        max-width: 212svh;
    }
    #main-swiper-container .swiper-button-next {
        right: 18.3svh;
    }
    #main-swiper-container .swiper-button-prev {
        left: 18.3svh;
    }
    #main-swiper-container .swiper-pagination {
        right: calc(var(--winW) * 275);
        top: calc(var(--winW) * 30);
    }

    /* スライダーのビデオコンテナの高さを縮小（最重要） */
    /* ※幅も比率を合わせて調整し、アスペクト比を維持します */
    #main-swiper-container .video-container {
        width: 98svh;  /* 元の値: calc(var(--winW) * 940) */
        aspect-ratio: 670 / 376;
        height: auto;
    }

    /* テキストエリアの上の余白を縮小 */
    #main-swiper-container .text-area {
        padding-top: 2svh; /* 元の値: calc(var(--winW) * 30) */
        padding-left: 0; /* 元の値: calc(var(--winW) * 30) */
        padding-right: 0; /* 元の値: calc(var(--winW) * 30) */
        width: 100%;
    }

    /* テキストエリア内の各要素の文字サイズや高さを調整 */
    #main-swiper-container .text-area .movie-title {
        font-size: 2.5svh; /* 元の値: calc(var(--winW) * 34) */
    }

    #main-swiper-container .text-area .movie-text {
        font-size: 1.8svh; /* 元の値: calc(var(--winW) * 14) */
    }

    #main-swiper-container .text-area .movie-btn {
        width: 40svh;  /* 元の値: calc(var(--winW) * 270) */
        height: 8.33svh;   /* 元の値: calc(var(--winW) * 60) */
        font-size: 2svh; /* 元の値: calc(var(--winW) * 15) */
    }

    /* スライダー全体の高さを確保している white-area も調整 */
    .movie-sec .white-area {
        height: calc(var(--winW) * 250);    /* 元の値: calc(var(--winW) * 400) */
        margin-top: calc(var(--winW) * (-180)); /* 元の値: calc(var(--winW) * (-250)) */
    }
    @media (max-width: 1024px) {
        #main-swiper-container .video-container {
            width: 88svh;
        }
    }
    @media (max-width: 1024px) and (max-height: 600px) {
        #main-swiper-container .video-container {
            width: 112svh;
        }
    }
}
@media (min-width: 769px) and (max-width: 1450px) and (max-height: 810px) {
    /* movieセクションの高さを調整 */
    .movie-sec {
        height: 1600px; /* 元の値: 2000px */
        top: -100px;
    }
    #main-swiper-container .video-container {
        width: 118svh;
    }
    #main-swiper-container.swiper-control-container {
        max-width: 182svh;
    }
    #main-swiper-container .swiper-button-next {
        right: 25svh;
    }
    #main-swiper-container .swiper-button-prev {
        left: 25svh;
    }
}
@media (min-width: 769px) and (max-width: 1395px) and (max-height: 790px) {
    /* movieセクションの高さを調整 */
    .movie-sec {
        height: 1600px; /* 元の値: 2000px */
        top: -100px;
    }
    #main-swiper-container .video-container {
        width: 108svh;
    }
    #main-swiper-container.swiper-control-container {
        max-width: 167svh;
    }
    #main-swiper-container .swiper-button-next {
        right: 22svh;
    }
    #main-swiper-container .swiper-button-prev {
        left: 22svh;
    }
}
@media (min-width: 769px) and (max-width: 1300px) and (min-aspect-ratio: 4/3) {
    /* movieセクションの高さを調整 */
    .movie-sec {
        height: 1600px; /* 元の値: 2000px */
        top: 0;
    }
    #main-swiper-container .video-container {
        width: 87svh;
    }
    #main-swiper-container.swiper-control-container {
        max-width: 136svh;
    }
    #main-swiper-container .swiper-button-next {
        right: 18svh;
    }
    #main-swiper-container .swiper-button-prev {
        left: 18svh;
    }
}
@media (min-width: 769px) and (max-width: 1200px) and (min-aspect-ratio: 920/704) {
    /* movieセクションの高さを調整 */
    .movie-sec {
        height: 1600px; /* 元の値: 2000px */
        top: 0;
    }
    #main-swiper-container .video-container {
        width: 82svh;
    }
    #main-swiper-container.swiper-control-container {
        max-width: 127svh;
    }
    #main-swiper-container .swiper-button-next {
        right: 16svh;
    }
    #main-swiper-container .swiper-button-prev {
        left: 16svh;
    }
    #main-swiper-container .swiper-slide .text-area .movie-btn {
        padding: 1em;
    }
    #main-swiper-container .text-area .movie-btn .arrow {
        width: calc(var(--winW) * 10);
        right: 0.4em;
    }
}
@media (min-width: 769px) and (max-width: 800px) and (min-aspect-ratio: 800/619) {
    /* movieセクションの高さを調整 */
    .movie-sec {
        height: 1600px; /* 元の値: 2000px */
        top: 0;
    }
    #main-swiper-container .video-container {
        width: 85svh;
    }
    #main-swiper-container.swiper-control-container {
        max-width: 130svh;
    }
    #main-swiper-container .swiper-button-next {
        right: 17svh;
    }
    #main-swiper-container .swiper-button-prev {
        left: 17svh;
    }
}


/* Safariのフルスクリーン競合対策 */
.swiper-control-container.swiper-is-fullscreen {
    /* Swiperが作るz-indexの重なり順をリセット */
    z-index: auto !important;
    /* Swiperが作るtransformによる座標変更をリセット */
    transform: none !important;
}
.swiper-control-container.is-mac-safari video::-webkit-media-controls-fullscreen-button {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    max-width: 0 !important;
}


/*video-js */
.video-container .video-js {
    width: 100%;
    height: 100%;
}
/*video-js icon fontfamily上書き対策*/
.vjs-icon-play, .video-js .vjs-play-control .vjs-icon-placeholder, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
    font-family: VideoJS !important;
}
.vjs-icon-volume-high, .video-js .vjs-mute-control .vjs-icon-placeholder {
    font-family: VideoJS !important;
}
.vjs-icon-fullscreen-enter, .video-js .vjs-fullscreen-control .vjs-icon-placeholder {
    font-family: VideoJS !important;
}
.vjs-icon-circle, .vjs-seek-to-live-control .vjs-icon-placeholder, .video-js .vjs-volume-level, .video-js .vjs-play-progress {
    font-family: VideoJS !important;;
}
.vjs-icon-picture-in-picture-enter, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder {
   font-family: VideoJS !important;;
}


/* Video.jsの初回再生ボタン（Big Play Button）を非表示にする */
.swiper-slide .video-container .vjs-big-play-button {
    display: none !important;
}
/* Video.jsのボリュームバーが最前面に表示されるように修正 */
.video-js .vjs-volume-panel {
    z-index: 100 !important;
}

.movie_open .modaal-container .video-js {
    aspect-ratio: 16 / 9;
}
