body{
  width: 100%;
}
.col_blue0353a1{
  color: #0353a1;
}
strong{
  font-weight: bold;
}
header{
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  height: 90px;
  padding: 0 8%;
}
header nav ul{
  display: flex;
  justify-content: space-between;
}
header nav ul li{
  font-weight: bold;
  margin-right: 30px;
  font-size: 12px;
}
header nav ul li span{
  display: none;
}
header h1 a{
  font-size: 28px;
  color: #0353a1;
  font-family: 'Oswald', sans-serif;
  letter-spacing: -0.05em;
}
.toggle_btn{
  width: 26px;
  height: 18px;
  position: relative;
  display: none;
}

@media screen and (max-width:768px) {
  .toggle_btn span{
    position: absolute;
    background: #0353a1;
    width: 100%;
    height: 4px;
    top: 50%;
    transition: all .5s;
  }
  .toggle_btn::before{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #2e4b92;
    position: absolute;
    left: 50%;
    transform: translate(-50%,0%);
    top: 0;
  }
  .toggle_btn::after{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #2e4b92;
    position: absolute;
    left: 50%;
    transform: translate(-50%,0%);
    bottom: 0;
  }
  .toggle_btn{
    display: block;
  }
  .toggle_btn span{
    height: 2px;
  }
  header{
    border-bottom: 2px solid #0353a1;
  }
  header h1 a{
    font-size: 20px;
  }
  header nav{
    position: fixed;
    height: 0;
    width: 100%;
    top: 90px;
    left: 0;
    background: #fff;
    overflow: hidden;
    transition: height .4s cubic-bezier(.210, .60, .350, 1);
  }
  header nav ul li span{
    display: inline;
  }
  header.open nav{
    height: 100%;
    transition: height .8s cubic-bezier(.210, .60, .350, 1);
  }
  header nav ul{
    display: block;
    padding: 8% 5%;
  }
  header nav ul li{
    font-size: 16px;

  }
  header nav ul li:nth-child(n+2){
    margin-top: 8%;
  }
  header.open .toggle_btn span:nth-child(1){
    transform: rotate(45deg) translate(-0%,-0%);
    transition: all 0.3s;
  }
  header.open .toggle_btn span:nth-child(2){
    display: none;
  }
  header.open .toggle_btn span:nth-child(3){
    transform: rotate(-45deg) translate(-0%,0%);
    transition: all 0.3s;
  }
}
#wrap{
  overflow: hidden;
}
section {
  padding: 0 8%;
  margin: 11.11% 0 0 0;
}
section h2{
  color: #0353a1;
  font-size: 24px;
  text-align: center;
}
section h2 span{
  display: block;
  margin-top: 1.25%;
  font-size: 16px;
  color: #000;
}
table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid #0353a1;
}
table th,
table td{
  border-bottom: 1px solid #0353a1;
  
}
table th{
  padding: 15px 0 15px 60px;
}
table td{
  padding: 15px 0 15px 40px;
}
.underbar{
  display: block;
  width: 20%;
  height: 3px;
  margin: 0 auto;

}
section h3{
  font-size: 38px;
  
}