
@charset "UTF-8";

.auth_main {
  padding: 100px 100px 0;
  position: relative;
  margin-bottom: 100px;
}

.auth_main::before {
  content: "";
  width: 500px;
  height: 250px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #326BC9;
}

.auth_wrapper {
  position: relative;
  background-color: #e7f0fc;
  padding: 130px 0 80px;
}

.auth_contents {
  width: 90%;
  max-width: 860px;
  margin: 0 auto;
}

.auth_contents dl {
  margin-bottom: 85px;
}
.auth_contents dl.notice {
  margin: 30px;
}
.auth_contents dt {
  font-size: 3.8rem;
  font-weight: bold;
  line-height: 1em;
  color: #326BC9;
  margin-bottom: 55px;
  text-align: center;
}

.auth_contents dd {
  line-height: 2em;
}

.auth_contents .auth_q_title {
  font-size: 2.6rem;
  color: #013057;
  margin-bottom: 30px;
  text-align: center;
}

.auth_contents .auth_link_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.auth_contents .auth_link_list li {
  width: calc(33% - 18px);
  min-width: 265px;
}

.auth_contents .auth_link_list li a {
  display: inline-block;
  width: 100%;
  background-color: #326bc9;
  border: 1px solid #326bc9;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  padding: 28px 0;
  transition: .3s;
}

.auth_contents .auth_link_list li.auth_link_no a {
  background-color: #738595;
  border: 1px solid #738595;
}

.auth_contents .auth_link_list li a:hover {
  background-color: #fff;
  color: #326bc9;
  border: 1px solid #326bc9;
}

.auth_contents .auth_link_list li.auth_link_no a:hover {
  color: #013057;
}

@media screen and (max-width: 1170px) {
  .auth_main {
    padding: 60px 100px 0;
  }

  .auth_main::before {
    width: 100px;
  }
}

@media screen and (max-width: 768px) {
  .auth_main {
    padding: 60px 30px 0;
  }

  .auth_wrapper {
    padding: 80px 0 40px;
  }

  .auth_contents dl {
    margin-bottom: 45px;
  }

  .auth_contents dt {
    font-size: 2.2rem;
    margin-bottom: 35px;
  }

  .auth_contents .auth_q_title {
    font-size: 2.0rem;
    margin-bottom: 20px;
  }

  .auth_contents .auth_link_list li a {
    padding: 20px 0;
  }
}

