@charset "UTF-8";

body{
  width: 100%;
}
/*お知らせ*/
 h2{
  color: #30347F;
  font-weight: bold;
  text-align: center;
  letter-spacing: 6.4px;
}

.listir.info_list{
  max-width: 1024px;
  width: 100%;
  margin: auto;
}

 .info_link{
  color: #fff;
  max-width: 267px;
  width: 100%;
  margin: auto;
  height: 60px;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  position: relative;
}
.info_link::before {
  transform: skewX(-20deg);
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: #30347F;
}
.info_list{
  margin-top: 35px;
  margin-bottom: 35px;
  border-top: 2px solid #E5E5E5;
}
.info_list li{
  display: flex;
  align-items: center;
  padding: 15px 25px;
  border-bottom: 2px solid #E5E5E5;
}
.info_list li a{
  text-decoration: underline;
  text-underline-offset: 0.2em;
  color: #000;
  transition: .5s;
  position: relative;
  left: 25px;
}
.info_list li a:hover{
  text-decoration: none;
  transition: .5s;
}
.info_list li .info_ir{
  border: 2px solid #30347F;
  width: 80px;
  display: flex;
  height: 28px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #30347F;
}
.info_b{
  border: 4px solid #30347F;
  border-image: linear-gradient(to right, #30347F 0%, #0071BB 100%);
  border-image-slice: 1;
  max-width: 676px;
  width: 100%;
  margin: auto;
  margin-top: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  color: #30347F;
  font-weight: bold;
  font-size: 2rem;
  position: relative;
}
.info_b::before{
  content: url("../img/top_logo.svg");
  position: relative;
  left: -25px;
  line-height: 1;
}
a.info_b:link, a.info_b:visited{
  color: #30347F;
}
.info_b:hover{
  opacity: .7;
}


/*タブレット（縦）*/
@media screen and (orientation: portrait) and (min-width: 768px){

}
@media screen and (max-width: 555px) {

  .info_b{
    flex-direction: column;
    height: auto;
    padding: 10px 0;
  }
  .info_b::before{
    left: 0;
  }
  /*お知らせ*/
  .info_list li {
    padding: 15px 5px;
    flex-direction: column;
    align-items: flex-start;
  }
  .info_list li a {
    margin-top: 10px;
    left: auto;
  }
  .info{
    padding: 50px 0;
  }


}