@charset "UTF-8";
:root{
    --black: #1b1b1b;
    --green: #A0D137;
}
.top main{
    margin-top: 0 !important;
}
#header{
    background: var(--black);
}
.btn{
    background-color: var(--green);
    padding: 1em 3em;
    position: relative;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    color: var(--black) !important;
    font-weight: 700;
    transition: 0.3s all ease !important;
    margin: 1em 0;
}
.btn:hover{
    background: #000;
    color: #fff !important;
}
.right{
    text-align: right;
}
@media screen and (max-width: 680px) {
    .btn{
        padding: 1em 2em;
    }
}

/*MV*/
.mv{
    position: relative;
}
.mv-container{
    width: 70%;
    margin: 0 0 0 auto !important;
    overflow: hidden;
}
.mv-container .swiper-slide,
.mv-container .swiper-slide img{
    width: 100% !important;
    object-fit: cover;
    aspect-ratio: 1.7 / 1 !important;
    object-position: center center !important;
    overflow: hidden;
}
.mv-catch{
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 2em;
    transform: translateY(-50%);
}
.mv-h1{
    padding: 0.5em 0 !important;
    font-size: clamp(21px, 2vw, 28px);
    color: #fff;
    display: inline-block;
    background: var(--black);
}
.mv-p{
    color: #fff;
    font-size: clamp(58px, 3.4vw, 98px);
    font-weight: 900;
    line-height: 1.2;
    background: var(--black);
    margin-bottom: 0 !important;
    margin-top: -1px !important;
    padding-bottom: 5px;
    width: 11.5em;
}
.mv-p b{
    color: var(--green);
}
.mv-summary{
    width: 27%;
    line-height: 1.6;
    font-size: clamp(14px, 1.4vw, 18px);
    margin-bottom: 1em;
}
.swiper,
.swiper-wrapper,
.swiper-slide{
    height: auto !important;
}
@media screen and (max-width: 1280px) {
    .mv-p{
        font-size: clamp(48px, 5vw, 58px);
    }
    .mv-container{
        width: 90%;
    }
    .mv-catch{
        top: inherit;
        bottom: 1em;
        transform: inherit;
    }
    .mv-summary {
        width: 53.1%;
        line-height: 1.6;
        background: var(--black);
        padding: 1em 1em 1em 0;
    }
}
@media screen and (max-width: 980px) {
    .mv-container{
        width: 96%;
        margin: 0 auto !important;
    }
    .mv-summary {
        width: 100%;
        padding: 0;
    }
    .mv-catch {
        position: relative;
        left: 0em;
        padding: 4%;
        background: var(--black);
    }
    .mv-p {
        font-size: 8.2vw;
        padding-right: 5px;
    }

}
@media screen and (max-width: 680px) {
    .mv-container .swiper-slide,
    .mv-container .swiper-slide img{
        aspect-ratio: 1 / 1 !important;
    }
}