/***  color ***/
/***  border ***/
/*** font ***/
/*** sp size ***/
#pageItems {
  padding: 70px 0 0;
}
#pageItems p {
  margin-bottom: 40px;
  text-align: center;
}
#pageItems .pageList {
  display: flex;
  gap: 1%;
}
#pageItems .pageList li {
  width: 19.2%;
}
#pageItems .pageList li a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 70px;
  font-size: 18px;
  font-weight: bold;
  color: #003C87;
  border: 2px solid #003C87;
  border-radius: 1000px;
}
#pageItems .pageList li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 20px;
  height: 20px;
  margin: auto;
  background: url("../img/icon_arrow.svg") no-repeat center;
  background-size: 100% 100%;
}
@media screen and (max-width: 1300px) {
  #pageItems .pageList li {
    margin-bottom: 10px;
  }
  #pageItems .pageList li a {
    height: 60px;
    font-size: 14px;
  }
  #pageItems .pageList li a::after {
    right: 10px;
  }
}
@media screen and (max-width: 1024px) {
  #pageItems .pageList {
    flex-wrap: wrap;
    justify-content: center;
  }
  #pageItems .pageList li {
    width: 32.6666666667%;
  }
  #pageItems .pageList li a {
    height: 60px;
    font-size: 14px;
  }
  #pageItems .pageList li a::after {
    right: 10px;
  }
}
@media screen and (max-width: 750px) {
  #pageItems {
    padding: 8vw 0 0;
  }
  #pageItems p {
    margin-bottom: 6.67vw;
    font-size: 3.73vw;
    text-align: left;
  }
  #pageItems .pageList li {
    width: 49%;
    margin-bottom: 2.67vw;
  }
  #pageItems .pageList li a {
    height: 13.33vw;
    font-size: 3.73vw;
    text-indent: -3.73vw;
  }
  #pageItems .pageList li a::after {
    right: 2.67vw;
    width: 3.73vw;
    height: 3.73vw;
  }
  #pageItems .pageList li:last-child {
    width: 100%;
  }
}

#checkTable {
  padding: 100px 0 120px;
}
#checkTable .checkBox {
  margin-bottom: 20px;
}
#checkTable .checkBox h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 57px;
  padding: 0 20px;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: #4C76AA;
}
#checkTable .checkBox h3 small {
  display: inline-block;
  margin-left: 10px;
  font-size: 16px;
  vertical-align: middle;
}
#checkTable .checkBox h3 .toggleIcon {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
}
#checkTable .checkBox h3 .toggleIcon::before, #checkTable .checkBox h3 .toggleIcon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  margin: auto;
  background-color: #fff;
  transition: 0.2s ease-in-out;
}
#checkTable .checkBox h3 .toggleIcon::after {
  transform: rotate(90deg);
}
#checkTable .checkBox h3.active .toggleIcon::after {
  transform: rotate(360deg);
}
#checkTable .checkBox .checkDataWarp {
  display: flex;
  justify-content: space-between;
  gap: 0 20px;
  padding: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #f6f6f6;
}
#checkTable .checkBox .checkDataBox {
  width: calc((100% - 40px) / 3);
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
}
#checkTable .checkBox h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #003C87;
}
#checkTable .checkBox .checkData {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
#checkTable .checkBox .checkData:last-child {
  margin: 0;
  padding: 0;
  border-bottom: none;
}
@media screen and (max-width: 1024px) {
  #checkTable {
    padding: 50px 0 80px;
  }
  #checkTable .checkBox h3 {
    font-size: 20px;
  }
  #checkTable .checkBox .checkDataBox {
    border-radius: 10px;
  }
  #checkTable .checkBox h4 {
    font-size: 16px;
  }
  #checkTable .checkBox .checkData {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  #checkTable {
    padding: 13.33vw 0;
  }
  #checkTable .checkBox {
    margin-bottom: 2.67vw;
  }
  #checkTable .checkBox h3 {
    padding: 4vw 2.67vw;
    font-size: 4.27vw;
    text-align: left;
    border-top-left-radius: 2.67vw;
    border-top-right-radius: 2.67vw;
  }
  #checkTable .checkBox h3 small {
    display: block;
    margin-left: 0;
    font-size: 3.2vw;
  }
  #checkTable .checkBox h3 .toggleIcon {
    width: 4.8vw;
    height: 4.8vw;
    transition: 0.3s ease-in-out;
  }
  #checkTable .checkBox h3 .toggleIcon::before, #checkTable .checkBox h3 .toggleIcon::after {
    width: 4.8vw;
    height: 2px;
  }
  #checkTable .checkBox .checkDataWarp {
    display: block;
    padding: 2.67vw;
  }
  #checkTable .checkBox .checkDataBox {
    width: 100%;
    margin-bottom: 2.67vw;
  }
  #checkTable .checkBox .checkDataBox:last-child {
    margin-bottom: 0;
  }
  #checkTable .checkBox h4 {
    margin-bottom: 2.67vw;
    font-size: 4.27vw;
  }
  #checkTable .checkBox .checkData {
    font-size: 3.73vw;
  }
}

#notes {
  padding: 100px 0;
}
#notes .notesBox {
  padding: 100px 50px;
  border-radius: 50px;
  background-color: #f6f6f6;
}
#notes .notesList {
  counter-reset: my-counter;
  position: relative;
}
#notes .notesList li {
  display: flex;
  counter-increment: my-counter;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 20px;
  border-bottom: 1px solid #ccc;
}
#notes .notesList li::before {
  content: counter(my-counter, decimal-leading-zero);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  font-size: 16px;
  font-weight: bold;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #003C87;
  border: 1px solid #003C87;
  border-radius: 1000px;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  #notes {
    padding: 13.33vw 0;
  }
  #notes .notesBox {
    padding: 10.67vw 5.33vw;
    border-radius: 5.33vw;
  }
  #notes .notesList li {
    margin-bottom: 4vw;
    padding-bottom: 4vw;
    font-size: 3.73vw;
  }
  #notes .notesList li::before {
    width: 6.93vw;
    height: 6.93vw;
    margin-right: 2.67vw;
    font-size: 3.73vw;
  }
}

/*# sourceMappingURL=check.css.map */
