#freePage p {
  line-height: 1.4;
}
  
.box-check{
 display: none;
}

nav .access-list{
  margin: auto;
  display: flex;
  padding: 10px 15px 15px;
  justify-content: space-between;  
}

nav .access-list li{
  font-size: 110%;
  font-weight: bold;
  color: #333;
  text-align: center;
  width: 24%;
  
  
}

nav .access-list li a{
  display: block;
  width: auto;
  height: 2.6em;
  line-height: 2.6em;
  text-decoration: none;
  border-radius: 3px;
  background-color: #eee;
}

nav .access-list li a:hover{
  background-color: #fff1bc;
}


.txt-red{
  color: #C00;
  font-weight: bold;
  font-size: 150%;
}
.btn-bus{
  display: block;
  padding: 0 0 15px 15px;
}
.area-station{
  margin-bottom: 10px;
  padding-left: 15px;
}
.name-station{
  text-align: center;
  border-radius: 3px;
  display: inline-block;
  width: 8em;
  padding:8px 12px;
  background-color: #eeeeee;
}

.area-time-tables{
  display: flex;
  padding: 15px;
  justify-content: space-between;
}
.time-table{
  width: 49.3%;
}
.time-table table.border{
  width: 40%;
}
.time-table table.bus-border th{
  color: #fff;
}
.time-table table.border th,
.time-table table.border td{
  padding: 9px;
}
.time-table tr.ttl-area th{
  background-color: #302384;
}
.time-table tr.ttl-way th{
  background-color: #6269B9;
}

/* -- sp -- */
@media screen and (max-width: 767px) {
  
  #freePage p{
    padding-right: 15px;
  }
  #access_data {
    background: #ececec;
    padding: 15px;
  }
    
  #freePage .box-check + label h2,
  #freePage .box-check + label h3{
    position: relative;
    box-sizing: border-box;
    margin: -1px auto 0;
    padding: 12px;
    background-color: #d9dbfb;
    border: 1px solid #ddd;
  }
    
  .box-check + label h2::after,
  .box-check + label h3::after{
    box-sizing: border-box;
    content: '';
    display: block;
    width: 12px;
    background: #707070;
    height: 2px;
    position: absolute;
    transform: rotate(90deg);
    right: 13px;
    top: calc(50% - 1px);
    transition: .2s;
  }
  
  .box-check + label h2::before,
  .box-check + label h3::before{
    box-sizing: border-box;
    content: '';
    display: block;
    width: 12px;
    background: #707070;
    height: 2px;
    position: absolute;
    right: 13px;
    top: calc(50% - 1px);
  }
  
  .box-check:checked + label h2:after,
  .box-check:checked + label h3:after{
    transform: rotate(0deg);
    transition: .2s;
  }
  
  .box-check + label + .area_con{
    height: 0;
    line-height: 0;
    opacity: 0;
    transition: .7s;
    visibility: hidden;
  }
  
  .box-check:checked + label + .area_con{
    height: 100%;
    line-height: 1.5;
    opacity: 1;
    visibility: visible;
    padding: 5% 0 1%;
  }
  
  .area-time-tables {
    display: block;
  }
  
  .time-table {
    width: 100%;
  }
  
  .time-table tr.ttl-way th {
    padding: 4px;
    text-align: center;
  }
  
}