@charset "utf-8";

.to_h_lineup {
    text-align: center;
    margin: 1.2em auto 0;
    width: 17em;
}

.to_h_lineup a {
    border: solid 2px #000;
    border-radius: 5px;
    padding: 0.7em 0; 
    background: #fff;
    display: block;
}
.to_h_lineup a:hover {
    background: #000;
    color: #FFF;
}

.list_basesvs {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: flex-start;    /*左（上）揃え*/
    justify-content: flex-end;      /*右（下）揃え*/
    justify-content: center;        /*中央揃え*/
    justify-content: space-between; /*均等に間隔をあける*/
    justify-content: space-around;  /*均等に間隔をあける・両端にも間隔をあける*/
	flex-wrap: wrap;
    margin: 0 auto;    
}

.list_basesvs li {
    width: 30%;
}

.list_basesvs li h3 {
    font-size: 110%;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.1em;
}

@media screen and (min-width:768px) and (max-width:1299px) {
    
    .list_basesvs li {
        width: 31%;
    }
}

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

    .to_h_lineup a {
        padding: 0.6em 0; 
    }
    
    .list_basesvs {
        display: block;
        margin: 0 auto;
    }

    .list_basesvs li {
        width: 92%;
        margin: 0 auto 1.2em;
    }
    .list_basesvs li:last-child {
        margin-bottom: 0;
    }

    .list_basesvs li h3 {
        font-size: 115%;
        margin-bottom: 0.1em;
    }    
    
}