*{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
}
body{
    font-size: 16px;
    background: #FBC02D;
}
img{
    width: 100%;
}
.fv{
    background-image: url('../../images/mascot_img/fv_bg.png');
    background-size: cover;
    background-position: 50%  50%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fv_wrap{
    width: 80%;
}
.fv_main_box{
    width: 80%;
    margin: auto;
}
.fv_main{
    
}
.fv_mascot_box{
    width: 30%;
    margin: auto;
}
.fv_mascot{
    
}
.fv_link{
    margin-top: 10vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.fv_link_a{
    color: #fff;
    font-size: 1.2rem;
    border-radius: 3px;
    padding: 1.2rem 3.2rem 1.2rem 1.2rem;
    position: relative;
}
.fv_link_a::after{
    content: "";
    border-top: 10px solid #fff;
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid transparent;
    position: absolute;
    top: 56%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: 1rem;
}
#fla1{
    background: #2E7D32;
}
#fla2{
    background: #E53935;
}
#fla3{
    background: #1E88E5;
}

/* sec01 */
.sec01{
    width: 90%;
    margin: 60px auto;
}
.sec_title_box{
    width: 30%;
    margin: auto;
}
.sec_title{
    display: block;
    margin: auto;
}
.sec01_top{
    margin: 50px auto 70px auto;
    display: flex;
    justify-content: center;
    width: 60%;
    gap: 4rem;
}
.sec01_top_img_box{
    width: 30%;
}
.sec01_top_img{
    width: 100%;
}
.sec01_top_text_wrap{
    width: 50%;
}
.sec01_top_text_wrap_01{
    font-size: 2rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 1rem;
}
.sec01_top_text_wrap_02{

}
.sec01_under{
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2vw;
}
.mascot_wrap{
    width: 18%;
}
.mascot_wrap_img{
    width: 100%;
}
.mascot_wrap_text_01{
    text-align: center;
    font-weight: bold;
    margin: 10px 0;
}
.mascot_wrap_text_02{

}

/* sec02 */
.sec02{
    margin: 60px auto;
    width: 60%;
}
.sec02_wrap{
    margin-top: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.sec02_wrap_img_box{
    width: 40%;
}
.sec02_wrap_img{
    width: 100%;
}
.sec02_wrap_text_box{
    width: 50%;
}
.sec02_wrap_text_p{

}
.sec02_wrap_text_a_wrap{
    width: 80%;
    margin: 40px auto 0 auto;
    display: flex;
    justify-content: center;

}
.sec02_wrap_text_a{
    background: #E53935;
    color: #FFF;
    padding: 1rem 2rem;
    border-radius: 2rem;
    box-shadow: 3px 3px 6px -4px #777777;
}
#nurie_link{
    background: #1E88E5;
}
.conditions{
    height: 150px;
    overflow: scroll;
    background: #fff;
    margin-top: 20px;
    padding: 0.6rem;
}
.jimocari_return{
    margin: 100px auto;
    display: flex;
    justify-content: center;
}
.jimocari_return_link{
    background: #ff701e;
    border: 2px solid #ff701e;
    border-radius: 60px;
    color: #fff;
    display: block;
    font-weight: bold;
    max-width: 300px;
    padding: 15px 40px;
    text-align: center;
}

.jimocari_return_link.slide {
    background: #fff;
    color: #ff701e;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.jimocari_return_link.slide::after {
    background: #ff701e;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}
.jimocari_return_link.slide:hover {
    color: #fff;
}
.jimocari_return_link.slide:hover::after {
    transform: scale(1, 1);
}

@media screen and (max-width: 767px){
    .fv_wrap {
        width: 98%;
    }
    .fv_main_box {
        width: 100%;
    }
    .fv_mascot_box {
        width: 60%;
    }
    .fv_link{
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 6vw;
    }
    .fv_link_a{
        width: 60%;
        margin-top: 4vw;
    }
    .sec_title_box {
        width: 70%;
    }
    .sec01_top {
        margin: 50px auto 70px auto;
        display: flex;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .sec01_top_img_box{
        width: 50%;
    }
    .sec01_top_text_wrap{
        width: 90%;
    }
    .mascot_wrap {
        width: 42%;
    }
    .sec01_under {
        width: 90%;
        gap: 6vw;
    }
    .sec02{
        width: 90%;
    }
    .sec02_wrap{
        flex-wrap: wrap;
    }
    .sec02_wrap_img_box{
        width: 100%;
    }
    .sec02_wrap_text_box{
        width: 94%;
        margin-top: 4vw;
    }
    .sec02_wrap_text_a_wrap{
        margin: 4vw auto 0 auto;
    }
}