html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background-color: ghostwhite;
}


.title {
    font-size: 15px;
    color: forestgreen;
    text-align: left;
}

.input {
    font-size: 24px;
    text-align: left;
    border: none;
    border-bottom: solid 2px forestgreen;
    background-color: #F0F0F0;
    outline: none;
}

    .input:focus {
        border: solid 1px forestgreen;
        border-bottom: solid 2px black;
    }

.btn {
    font-size: 24px;
    text-align: center;
    border: none;
    border-radius: 5px;
    background-color: forestgreen;
    color: white;
    outline: none;
}

    .btn:hover,
    .btn:focus {
        box-shadow: 0px 0px 10px 2px rgb(0 0 0 / 60%);
        outline: none;
    }

.ttl {
    font-size: 15px;
    line-height: 30px;
    color: white;
    background-color: forestgreen;
    text-align: center;
    border: solid 1px darkgray;
    grid-column: 2/3;
}

.ddl {
    font-size: 15px;
    line-height: 28px;
    width: 100%;
    height: 28px;
    background-color: white;
    border: none;
}

.frame {
    border: none;
    border-right: solid 1px darkgray;
    border-bottom: solid 1px darkgray;
    grid-column: 3/4;
    background-color: white;
}

.no {
    grid-column: 2/3;
    font-size: 15px;
    text-align: center;
    padding: 0px;
    line-height: 25px;
    border: solid 1px darkgray;
    border-top: none;
}
.bus {
    grid-column: 4/5;
    font-size: 15px;
    text-align: left;
    padding: 0px 0px 0px 5px;
    line-height: 25px;
    border: solid 1px darkgray;
    border-top: none;
    border-left: none;
    background-color: white;
}
.time {
    grid-column: 2/3;
    font-size: 15px;
    text-align: center;
    line-height: 25px;
    border: solid 1px darkgray;
    border-top: none;
    background-color: white;
}
.cnt {
    grid-column: 3/4;
    font-size: 15px;
    text-align: right;
    padding: 0px 5px 0px 0px;
    line-height: 25px;
    border: solid 1px darkgray;
    border-top: none;
    border-left: none;
    background-color: white;
}

.block {
    display: grid;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 50px 50px max(30vw, 240px) 1fr;
    width: 100%;
    margin: 0px 0px 10px 0px;
    border: none;
}

.head {
    grid-row: 1;
    grid-column: 2/5;
    border: solid 1px darkgray;
    text-align: center;
    color: white;
    background-color: gray;
    font-size: 15px;
    line-height: 25px;
    height: 27px;
}

.foot {
    grid-row: 2;
    grid-column: 2/5;
    border: none;
    text-align: center;
    font-size: 15px;
    line-height: 25px;
    height: 27px;
}