.info{
  display: flex;
}

.info h1{
  margin: 0;
  height: 100px;
}

.info img{
  width: 500px;
  height: 100px;
  margin-top: 25px;
}

.info .time{
  text-align: right;
  width: 400px;
  margin-right: 0px;
  margin-left: auto;
}

.info .time h2{
  margin-bottom: 10px;
}

.info .time p{
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: bold;
}

.mgr-26{
  margin-right: 26px;
}

.head_item ul{
  list-style-type: none;
  text-align: center;
  /* background-color: rgb(0, 255, 85); */
  background-color: mediumblue;
}

.head_item li{
  display: inline-block;
  width: 200px;
  text-align: center;
  border-left: 1px solid white;
  font-size: 20px;
}

.head_item li a{
  text-decoration: none;
  color: white;
  padding: 1px;
}

.head_item li a:hover{
  background-color: rgba(255, 255, 255, 0.8);
  color: black;
}

.head_item li:last-child{
  border-right: 1px solid white;
}

.drawer-hidden{
  display: none;
}

.breadcrumbs {
  margin: 10px 0 10px 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: inline;
  list-style: none;
  font-weight: bold;
  font-size: 18px;
}

.breadcrumbs li:after {
  content: '>';
  padding: 0 0.2em;
  color: #555;
}

.breadcrumbs li:last-child:after {
  content: '';
}

.breadcrumbs li a {
  text-decoration: none;
  color: mediumblue;
}

.breadcrumbs li a:hover {
  text-decoration: underline;
}

.requirement{
  width: 400px;
  margin: 0 auto;
}

.requirement h2{
  border-left: 5px solid mediumblue;
  padding-left: 10px;
}

table{
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

table tr{
  border-bottom: solid 2px white;
}

table tr:last-child{
  border-bottom: none;
}

table th{
  position: relative;
  text-align: left;
  width: 25%;
  background-color: mediumblue;
  color: white;
  text-align: center;
  padding: 10px 0;
}

table td{
  text-align: left;
  width: 75%;
  text-align: center;
  background-color: white;
  padding: 10px 0;
  font-size: 18px;
}

table th,td{
  border: solid 2px black;
}

.requirement ul{
  text-align: left;
}

.requirement a{
  text-decoration: underline dotted;
}

footer {
  text-align: center;
  margin-top: 50px;
}

footer p {
  margin-bottom: 5px;
}

footer a {
  font-size: 14px;
  color: black;
  text-decoration: none;
  border-bottom: 1px dotted black;
}

@media screen and (max-width:480px){
  .info{
    display: block;
    width: 100%;
  }

  .info h2{
    display: none;
  }

  .info img{
    width: 300px;
    height: 60px;    
  }

  .info .time{
    width: 200px;
    font-size: 12px;
    margin-left: 10px;    
  }

  .mgr-26{
    margin-right: 18px;
  }

  .head_item{
    position: relative;
    bottom: 55px;
    left: 80%;
    width: 50px;
  }

  .head_item ul{
    padding: 10px;
  }

  .head_item li{
    border-left: none;
    width: 100%;
    border-bottom: 2px solid white;
    text-align: left;
  }
  
  .head_item li:last-child{
    border-right: none;
  }

  .drawer-open{
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    cursor: pointer;
    background-color: mediumblue;
  }

  .drawer-open span, .drawer-open span::before, .drawer-open span::after{
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: white;
    transition: 0.5s;
    position: absolute;
  }

  .drawer-open span::before{
    bottom: 8px;
  }
  
  .drawer-open span::after{
    top: 8px;
  }

  #drawer-check:checked ~ .drawer-open span{
    background-color: rgba(255, 255, 255, 0);
  }
  
  #drawer-check:checked ~ .drawer-open span::before{
    bottom: 0;
    transform: rotate(45deg);
  }
  
  #drawer-check:checked ~ .drawer-open span::after{
    top: 0;
    transform: rotate(-45deg);
  }

  .drawer-content{
    width: 50%;
    position: fixed;
    left: 100%;
    z-index: 99;
    background-color: mediumblue;
    transition: 0.5s;
  }

  #drawer-check:checked ~ .drawer-content{
    left: 50%;
  }

  .requirement{
    width: 300px;
  }

  table th, table td{
    display: block;
    width: 95%;
    margin: 0 auto;
  }

  .requirement ul{
    padding-left: 30px;
  }
}