@charset "UTF-8";
/* CSS Document */

.sec1 {
  width: 100%;
  height: 375px;
  position: relative;
  background: url(../images/common/other-top.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.sec1__title {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  width: 100%;
  text-align: center;
}

.sec1__h1 {
  font-size: 3.6rem;
  font-weight: 700;
}

.sec1__title small {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.1rem;
}


@media (max-width: 1024px) {
  .sec1__h1 {
    font-size: 2.8rem;
  }

  .sec1__title small {
    font-size: 1.5rem;
  }
}


@media (max-width: 600px) {
  .sec1__h1 {
    font-size: 2rem;
  }

  .sec1__title small {
    font-size: 1.4rem;
  }
}




.nav {
  padding-top: 125px;
}

.nav ul {
  display: flex;
  width: 90%;
  max-width: 1200px;
  justify-content: center;
  gap: 50px;
  margin: 0 auto;
}

.nav ul li a {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  border-radius: 100px;
  transition: 0.4s;
  transition-timing-function: ease-out;
  background: linear-gradient(90deg, #0c72b5, #0288d1, #0c72b5) 0 / 200% 100%;
  color: #FFFFFF;
}

.nav ul li a:hover {
  background-position: 100% 0;
}

.nav ul li a span {
  display: block;
  width: 10px;
  height: 10px;
  border-right: solid 2px #FFFFFF;
  border-bottom: solid 2px #FFFFFF;
  transform: translate(-2px, -2px);
  rotate: 45deg;
  transition: 0.4s;
  transition-timing-function: ease-out;
}


.nav ul li a:hover span {
  transform: translate(2px, 2px);
}

@media (max-width: 900px) {
  .nav {
    padding-top: 75px;
  }

  .nav ul {
    flex-direction: column;
    gap: 25px;
    max-width: 500px;
    margin: 0 auto;
  }
}



.sec2 {
  padding-top: 150px;
  line-height: 1.75;
  letter-spacing: 0.1rem;
}

.sec2__wapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.sec2__wapper__small {
  display: block;
  text-align: center;
  font-weight: 400;
}

.sec2__wapper__h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0288D1;
  text-align: center;
  margin-bottom: 100px;
}

.sec2__wapper__p1 {
  margin-bottom: 30px;
}

.sec2__wapper__p2 {
  margin-top: 20px;
  margin-bottom: 50px;
  width: fit-content;
  margin-left: auto;
}

.sec2__wapper ol {
  margin-left: 25px;
}

.sec2__wapper ol li {
  list-style: auto;
}




@media (max-width: 1024px) {
  .sec2 {
    padding-top: 125px;
  }

  .sec2__wapper__small {
    font-size: 1.5rem;
  }

  .sec2__wapper__h2 {
    font-size: 2.5rem;
    margin-bottom: 75px;
  }
}


@media (max-width: 600px) {
  .sec2 {
    padding-top: 100px;
  }

  .sec2__wapper__small {
    font-size: 1.4rem;
  }

  .sec2__wapper__h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
  }
}




.sec3 {
  padding-top: 150px;
  line-height: 1.75;
  letter-spacing: 0.1rem;
}

.sec3__wapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.sec3 ol {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.sec3 ol li h3 {
  margin-bottom: 10px;
  color: #0288D1;
  font-weight: 700;
  font-size: 1.8rem;
}

.sec3 table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}

.sec3 table tbody tr:first-child th {
  color: #0288D1;
  font-size: 1.7rem;
}

.sec3 table tbody tr th,
.sec3 table tbody tr td {
  border: solid 1px #cccccc;
  padding: 7.5px 10px;
}

.sec3 .center {
  text-align: center;
}

.sec3 ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sec3 ul li h4 {
  font-size: 1.7rem;
  margin-bottom: 5px;
}


@media (max-width: 1024px) {
  .sec3 {
    padding-top: 125px;
  }
}


@media (max-width: 600px) {
  .sec3 {
    padding-top: 100px;
  }
}




.sec4 {
  padding: 150px 0;
}

.sec4__wapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.sec4__p {
  margin-bottom: 50px;
}

.sec4 ol {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 20px;
}

.sec4 .center {
  text-align: center;
}

.sec4 ol li h3 {
  margin-bottom: 10px;
  color: #0288D1;
  font-weight: 700;
  font-size: 1.8rem;
}

.sec4 table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}

.sec4 table tbody tr:first-child th {
  color: #0288D1;
  font-size: 1.7rem;
}

.sec4 table tbody tr th,
.sec4 table tbody tr td {
  border: solid 1px #cccccc;
  padding: 7.5px 10px;
}





.br {
  display: none;
}

section:not(.sec1) a {
  text-decoration: underline;
  transition: 0.5s;
  transition-timing-function: ease-out;
}

section a:hover {
  opacity: 0.5;
}

@media (max-width: 600px) {
  .br {
    display: block;
  }

  .sp {
    display: none;
  }
}