@charset 'utf-8';

body{
    background-color: var(--red);
    padding: 115px 35px 35px;
}

body.home .wrap,
.wrap{
    max-width: 1600px;
    padding: 0 50px;
}


/* ASIDE */
#aside{
    position: fixed;
    z-index: 98;
    transform: translateY(-50%);
    top: 50%;
    right: 0;
}


/* INDEX */
main{
    background: var(--yellow) url(img/bg.png) no-repeat center center / cover;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    z-index: 0;
}
main::before{
    content: "";
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    pointer-events: none;
    z-index: 1;
    border-radius: 35px;
    border: 6px dotted var(--red);
}

.mv{
    padding: 75px 50px 0;
    text-align: center;
    background: url(img/mv-bg.webp) no-repeat center top / 100%;
    position: relative;
    z-index: 0;
}
.mv-logo{
    width: 7.29vw;
    position: absolute;
    top: 4vw;
    left: 4vw;
    z-index: 1;
}
.mv-text{
    position: absolute;
    top: 17vw;
    left: 0;
    width: 100%;
    z-index: -1;
}
.lead-sec__cont{
    padding: 0 80px;
}
.lead-sec__cont-text{
    position: absolute;
    z-index: 1;
}
.lead-sec__cont-text.n1{
    top: 15%;
    left: 0;
    width: 41%;
}
.lead-sec__cont-text.n2{
    bottom: 18%;
    right: 0;
    width: 49.9%;
}
.contents-sec__bnr{
    max-width: 81%;
    text-align: center;
    margin: 60px auto;
}
.contents-sec__bnr.mt-0{
    margin-top: 0;
}
.contents-sec__bnr a{
    display: block;
}


@media screen and (max-width: 1560px){
    
    /* ASIDE */
    #aside img{
        width: 110px;
    }
}

@media screen and (max-width: 991px){

    /* ASIDE */
    #aside img{
        width: 80px;
    }
    
    /* INDEX */
    body{
        padding: 80px 20px 20px;
    }
    main,
    main::before{
        border-radius: 15px;
    }
    .mv-logo{
        top: 7vw;
        left: 7vw;
    }
    .contents-sec__bnr{
        margin: 20px auto;
    }
}

@media screen and (max-width: 767px){

    /* ASIDE */
    #aside img{
        width: 55px;
    }

    /* INDEX */
    body.home .wrap, .wrap{
        padding: 0 30px;
    }
    body{
        padding: 60px 10px 10px;
    }
    main{
        background: var(--yellow) url(img/bg.webp) repeat center center / 170%;
    }
    main,
    main::before{
        border-radius: 8px;
    }
    main::before {
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        border-width: 4px;
    }
    .mv{
        padding: 50px 0 0;
    }
    .mv-img{
        overflow: hidden;
    }
    .mv-img img{
        width: 120%;
        max-width: 120%;
        position: relative;
        transform: translateX(-50%) !important;
        left: 50%;
    }
    .lead-sec__cont-text{
        position: initial;
        margin-bottom: 10px;
        text-align: center;
    }
    .lead-sec__cont-text img{
        width: auto;
        height: 9vw;
    }
    .lead-sec__cont-text.n1,
    .lead-sec__cont-text.n2{
        width: 100%;
    }
    .lead-sec__cont{
        padding: 0;
        margin-top: 30px;
    }
    .contents-sec__bnr{
        width: 70%;
    }
    .contents-sec__img{
        padding: 0 20px;
    }
}