
/*ani  */
@keyframes tit_op {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes scaleBg {
    0% {
        transform: scale(1.04);
    }
    100% {
        transform: scale(1.0);
    }
 /* 0% { background-size: 100% auto; }
  100% { background-size: 100% auto; }  
  */
}

.side_list_pop {
    position: fixed;
    left: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 2000;
    transition: left .7s ease;
}

.side_list_pop.show {
    left: 0;
}

.side_list_pop .inner_dimd {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: -1;
}

.side_list_pop .for_bg {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: #fff;
}

.side_list_pop .for_bg .list_w {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.side_list_pop .for_bg .list_w .subsidiary_list {
    margin: 10px 20px;
    width: 100%;
    color: #c7c7c7;
    font-size: 48px;
    transition: color .3s ease;
}

.side_list_pop .for_bg .list_w .subsidiary_list:hover {
    color: #000;
}

.side_list_pop .btn_close_subsidiary {
    position: absolute;
    right: 30px;
    top: 30px;
}





