.main-main{
    .main-hero-typo{
        width: 100%;
        height: 100%;
        z-index: 5;
        writing-mode: vertical-rl;
        position: absolute;
        top: 0;
        pointer-events: none;
        display: flex;
    }
    .main-hero-typo .wrap{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        margin:0 auto;
    }
    .main-hero-typo .typo:first-child{
        color: var(--color-white);
        padding-top: 35%;
    }
    .main-hero-typo .typo:last-child{
        color: var(--color-1);
        margin-top: 97%;
        height: max-content;
    }
    .section10{
        padding-top: 261px;
        .section10-wrap>div{
            height: clamp(130px,20vw,360px);
            position: relative;
        }
        .title{
            color: var(--color-white);
            position: absolute;
            bottom: 0;
            line-height: 1.5;
            padding-left: clamp(0px, 9.7vw, 186px);
            padding-right: clamp(0px, 9.7vw, 186px);
        }
        .section10-wrap>div:nth-child(2) .title{
            right: 0;
        }
    }
    .section20{
        padding-block: clamp(80px,15vw,280px);
        .wrap{
            display: flex;
            gap: 10px;
        }
        .title{
            white-space: nowrap;
            height: max-content;
            transform: rotateZ(90deg);
            transform-origin: center bottom;
            font-size: var(--f-size-14);
            font-family: var(--font-3);
        }
        .swiper-slide{
            display: inline-block;
            aspect-ratio: 37/30;
            padding: 10px;
        }
        .swiper-slide > div{
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: end;
            align-items: end;
            text-align: right;
            color: var(--color-white);
            transition: .5s all;
            opacity: 0;
        }
        .swiper-slide:hover > div{
            opacity: 1;
        }
    }
    .section30{
        height: 100vh;
        h3{
            color: var(--color-1);
            text-align: right;
            line-height: 0.8;
        }
        .video{
            height: 100%;
            position: relative;
        }
        #main-video-play{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: transparent;
            border: none;
            color: var(--color-white);
            cursor: pointer;
            z-index: 10;
        }
        #main-video-play span{
            font-size: 72px;
            font-weight: 200;
        }
        #main-video-play.pause .pause-circle{
            display: none;
        }
        #main-video-play.play .play-circle{
            display: none;
        }
        #main-video-play.play .pause-circle{
            opacity: 0;
            transition: .5s all;
        }
        #main-video-play.play:hover .pause-circle{
            opacity: 1;
        }
    }
}
@media(width < 1400px){
}
@media(width < 1024px){
    .main-main{
        .title{
                font-size: 20px !important;
            }
        .section10{
        }
        .section20 {
            .swiper{
                width: 65%;
                height: 80dvh;
                margin-right: 0;
            }
            .swiper-slide {
                width: 100%;
                height: clamp(0px,40vw,99999px);
                aspect-ratio: unset;
            }
        }
    }
}
@media(width < 768px){
}
@media(width < 576px){
}