/* tablet */
@media screen and (min-width:769px) and (max-width:991px){
}

/* mobile */
@media screen and (max-width:768px){
}
.bus.bus_mo{
        display:none;
    }


.bus{
}

.bus ul{
}

.bus li{
      display: inline-block;
  width: 48%;
  vertical-align: top;
}

.bus li h3{
      font-size: 32px;
  letter-spacing: -1px;
  margin-bottom: 10px;
      padding-top: 20px;
}

.bus li p{
      font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.5;
  margin-left: 3px;
    color:#333;
}

.bus li p:before{
    display:inline-block;
    content:'';
    background-color:#3292EA;
    width:5px;
    height:5px;
    border-radius:50%;
    vertical-align:middle;
    margin-right:3px;
}

.bus li img{
      width: 100%;
  max-width: 370px;
}

.bus li:nth-child(odd){
    margin-right:2%;
}


/* mobile */
@media screen and (max-width:650px){
    .bus.bus_pc{
        display:none;
    }
    
    .bus.bus_mo{
        display:block;
    }

    .bus{
        text-align:center;
    }

    .bus ul{
    }
    
    .bus li{
        width: 100%;
        display:inline-block;
    }
    
    .bus li p {
        text-align:left;
    }
}


