@charset "utf-8";

main {
  margin-bottom: 12rem;
}

section {
  width: 70%;
  margin: 0 auto;
}

.international {
  padding-top: 5rem;
}

.links01 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.links01 li {
  width: 48%;
  list-style-type: none;
}

.links01 li a {
  position: relative;
  display: flex;
  border-bottom: solid 1px #88a5c2;
  min-height: 4rem;
  align-items: center;
  padding-right: 5.6rem;
  color: #00a2e0;
  transition: 0.3s;
}

.links01 li a::after {
  content: "";
  display: block;
  background: url(../img/links_icon01.png) center center no-repeat;
  background-size: cover;
  height: 1.2rem;
  width: 1.2rem;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.links01 li a:hover {
    filter: brightness(0.7);
}

.internal h2 {
  color: #17458f;
  font-size: 1.5em;
  margin: 3rem 0 1.5rem 0;
}

@media screen and (max-width:767px){
  section {
    width: 90%;
  }

  .links01 {
    flex-direction: column;
    align-items: center;
  }

  .links01 li {
    width: 80%;
    align-items: center;
  }

  .internal {
    margin-top: 5rem;
  }

  .internal h2 {
    text-align: center;
  }
}
