.switch {
    margin-top: 25px;
    padding: 50px 0;
    background: url('../images/BG_gray.png');
    background-size: 20px 20px;
}

.switch_list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.switch_list li {
    position: relative;
    top: 0;
    width: calc( 50% - 25px );
    transition: .3s;
}

.switch_list li:hover {
    top: -3px;
}

.switch_list li:first-child {
    background: var( --lightred );
}

.switch_list li:last-child {
    background: var( --lightblue );
}

.switch_list li img {
    width: 100%;
    border: 10px solid;
}

.switch_list li:first-child img {
    border-color: var( --lightred );
}

.switch_list li:last-child img {
    border-color: var( --lightblue );
}

.switch_list li .text {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 25px;
    padding-bottom: 15px;
    width: 100%;
    height: 100%;
    line-height: 25px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: #fff;
}

.switch_list li:first-child .text {
    background: url('../images/switch_title_01.png') center bottom no-repeat;
    background-size: 275px auto;
}

.switch_list li:last-child .text {
    background: url('../images/switch_title_02.png') center bottom no-repeat;
    background-size: 275px auto;
}


@media screen and (max-width: 1024px) {
    .switch_list {
        flex-direction: column;
    }
    
    .switch_list li {
        width: 100%;
    }

    .switch_list li + li {
        margin-top: 25px;
    }
}