/***  color ***/
/***  border ***/
/*** font ***/
/*** sp size ***/
#pageTableContents {
  padding: 70px 0 100px;
}
#pageTableContents .sectionText {
  margin-bottom: 40px;
  font-size: 30px;
  font-weight: bold;
  color: #003C87;
  text-align: center;
}
#pageTableContents .attributeList {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
}
#pageTableContents .attributeList li {
  width: calc((100% - 60px) / 4);
}
#pageTableContents .attributeList li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 1000px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}
#pageTableContents .attributeList li a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 15px;
  right: 0;
  left: 0;
  width: 24px;
  height: 24px;
  margin: auto;
  background: url("../img/icon_arrow.svg") no-repeat center;
  background-size: 100% 100%;
  transform: rotate(90deg);
}
#pageTableContents .attributeList li p {
  margin-bottom: 20px;
  line-height: 1;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #003C87;
}
#pageTableContents .attributeList li p small {
  font-size: 18px;
}
#pageTableContents .attributeList li:nth-child(-n+2) p {
  margin-bottom: 37px;
}
@media screen and (max-width: 1200px) {
  #pageTableContents .attributeList {
    gap: 1%;
  }
  #pageTableContents .attributeList li {
    width: 24%;
  }
  #pageTableContents .attributeList li a::after {
    bottom: 10px;
  }
  #pageTableContents .attributeList li p {
    margin-bottom: 15px;
    line-height: 1.2;
    font-size: 18px;
  }
  #pageTableContents .attributeList li p small {
    font-size: 14px;
  }
  #pageTableContents .attributeList li img {
    max-width: 60px;
  }
}
@media screen and (max-width: 1024px) {
  #pageTableContents .attributeList li p {
    margin-bottom: 0;
  }
  #pageTableContents .attributeList li:nth-child(-n+2) p {
    margin-bottom: 0;
  }
  #pageTableContents .attributeList li img {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  #pageTableContents {
    padding: 8vw 0 13.33vw;
  }
  #pageTableContents .sectionText {
    margin-bottom: 5.33vw;
    font-size: 4.27vw;
  }
  #pageTableContents .attributeList li a::after {
    bottom: -4.2vw;
    width: 6.4vw;
    height: 6.4vw;
  }
  #pageTableContents .attributeList li p {
    font-size: 3.2vw;
  }
  #pageTableContents .attributeList li p small {
    font-size: 2.67vw;
  }
}

.examinationBox {
  position: relative;
  margin-bottom: 30px;
  padding: 50px;
  border-radius: 50px;
  background-color: #F6F6F6;
}
.examinationBox .examinationWrap {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "txt img" "desc img" "point img";
  column-gap: 50px;
  row-gap: 20px;
  margin-bottom: 30px;
}
.examinationBox .examinationWrap .textBox {
  grid-area: txt;
  position: relative;
  padding-left: 75px;
}
.examinationBox .examinationWrap .num {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -10px;
  left: 0;
  width: 60px;
  height: 60px;
  font-size: 30px;
  font-weight: bold;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #003C87;
  border-radius: 8px;
  background-color: #FDDB0A;
}
.examinationBox .examinationWrap h3 {
  font-size: 30px;
  font-weight: bold;
}
.examinationBox .examinationWrap p {
  grid-area: desc;
  margin-bottom: 30px;
  padding-left: 75px;
  font-size: 16px;
}
.examinationBox .examinationWrap .pointBox {
  grid-area: point;
  position: relative;
  padding: 35px 20px 15px;
  border-radius: 10px;
  background-color: #fff;
}
.examinationBox .examinationWrap .pointBox::before {
  content: "Point";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -20px;
  left: 20px;
  width: 112px;
  height: 40px;
  font-size: 22px;
  font-weight: bold;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  border-radius: 1000px;
  background-color: #003C87;
}
.examinationBox .examinationWrap .pointBox ol {
  counter-reset: my-counter;
}
.examinationBox .examinationWrap .pointBox ol li {
  display: flex;
  align-items: center;
  counter-increment: my-counter;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
}
.examinationBox .examinationWrap .pointBox ol 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;
}
.examinationBox .examinationWrap .imgBox {
  grid-area: img;
}
.examinationBox .flowBox h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.examinationBox .flowBox h4::before, .examinationBox .flowBox h4::after {
  content: "";
  flex: 1;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}
.examinationBox .flowList {
  display: flex;
  justify-content: center;
  gap: 2%;
}
.examinationBox .flowList li {
  width: 18.4%;
}
.examinationBox .flowList li:last-child .imageBox::after {
  content: none;
}
.examinationBox .flowList li .imageBox {
  position: relative;
  margin-bottom: 15px;
}
.examinationBox .flowList li .imageBox::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 95%;
  z-index: 1;
  width: 47px;
  height: 50px;
  margin: auto;
  background: url("../img/icon_arrow2.svg") no-repeat center;
  background-size: 100% 100%;
}
.examinationBox .flowList li .imageBox img {
  border-radius: 20px;
}
.examinationBox .flowList li p {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .examinationBox {
    margin-bottom: 20px;
    padding: 50px;
    border-radius: 30px;
  }
  .examinationBox .examinationWrap {
    align-items: center;
    grid-template-areas: "txt img" "desc desc" "point point";
    column-gap: 20px;
    margin-bottom: 30px;
  }
  .examinationBox .examinationWrap .textBox {
    position: static;
    padding-left: 0;
  }
  .examinationBox .examinationWrap p {
    padding-left: 0;
  }
  .examinationBox .examinationWrap .num {
    top: 0;
    left: 50px;
  }
  .examinationBox .flowList {
    display: flex;
    justify-content: flex-start;
    gap: 2.67vw;
    padding-bottom: 20px;
    overflow-x: auto;
  }
  .examinationBox .flowList li {
    min-width: 38.13vw;
  }
  .examinationBox .flowList li .imageBox {
    position: relative;
    margin-bottom: 15px;
  }
  .examinationBox .flowList li .imageBox::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 95%;
    z-index: 1;
    width: 47px;
    height: 50px;
    margin: auto;
    background: url("../img/icon_arrow2.svg") no-repeat center;
    background-size: 100% 100%;
  }
  .examinationBox .flowList li .imageBox img {
    width: 100%;
  }
  .examinationBox .flowList li p {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .examinationBox {
    margin-bottom: 2.67vw;
    padding: 5.33vw;
    border-radius: 20px;
  }
  .examinationBox .examinationWrap {
    column-gap: 2.67vw;
    row-gap: 2.67vw;
    margin-bottom: 5.33vw;
  }
  .examinationBox .examinationWrap .num {
    left: 5.33vw;
    width: 8vw;
    height: 8vw;
    font-size: 4.27vw;
    border-radius: 3px;
  }
  .examinationBox .examinationWrap h3 {
    font-size: 4.27vw;
  }
  .examinationBox .examinationWrap p {
    margin-bottom: 5.33vw;
    font-size: 3.73vw;
  }
  .examinationBox .examinationWrap .pointBox {
    padding: 8vw 2.67vw 5.33vw;
  }
  .examinationBox .examinationWrap .pointBox::before {
    top: -3.73vw;
    left: 2.67vw;
    width: 18.13vw;
    height: 7.46vw;
    font-size: 4.27vw;
  }
  .examinationBox .examinationWrap .pointBox ol li {
    margin-bottom: 1.38vw;
    font-size: 3.73vw;
  }
  .examinationBox .examinationWrap .pointBox ol li::before {
    width: 8vw;
    height: 8vw;
    margin-right: 2.67vw;
    font-size: 3.73vw;
  }
  .examinationBox .flowBox h4 {
    gap: 2.67vw;
    margin-bottom: 2.67vw;
    font-size: 3.73vw;
  }
  .examinationBox .flowList li .imageBox {
    position: relative;
    margin-bottom: 2.67vw;
  }
  .examinationBox .flowList li .imageBox::after {
    width: 7.2vw;
    height: 7.73vw;
  }
  .examinationBox .flowList li .imageBox img {
    border-radius: 10px;
  }
  .examinationBox .flowList li p {
    font-size: 3.2vw;
  }
}

#examination {
  padding: 0 0 70px;
}
@media screen and (max-width: 750px) {
  #examination {
    padding: 0 0 13.33vw;
  }
}

#online {
  padding: 100px 0;
  background-color: #F6F6F6;
}
#online .examinationBox {
  background-color: #fff;
}
#online .examinationBox .pointBox {
  background-color: #F6F6F6;
}
@media screen and (max-width: 750px) {
  #online {
    padding: 13.33vw 0 18.67vw;
  }
}

.examinationTable {
  margin-top: 70px;
}
.examinationTable h3 {
  margin-bottom: 15px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
.examinationTable table {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  caption-side: bottom;
}
.examinationTable table caption {
  padding-top: 15px;
  text-align: left;
}
.examinationTable table th {
  padding: 15px 0;
  color: #fff;
  text-align: center;
  border: 1px solid #ccc;
  background-color: #003C87;
}
.examinationTable table td {
  padding: 15px 20px;
  border: 1px solid #ccc;
  background-color: #fff;
}

#rateTable {
  padding: 0 0 120px;
  background-color: #F6F6F6;
}
#rateTable h2 {
  margin-bottom: 25px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
#rateTable h3 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #003C87;
  text-align: center;
}
#rateTable p {
  margin-bottom: 40px;
  text-align: center;
}
#rateTable .rateBox {
  margin-bottom: 20px;
}
#rateTable .rateBox h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  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;
}
#rateTable .rateBox h3 .toggleIcon {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
  transition: 0.3s ease-in-out;
}
#rateTable .rateBox h3 .toggleIcon::before, #rateTable .rateBox 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;
}
#rateTable .rateBox h3 .toggleIcon::after {
  transform: rotate(90deg);
}
#rateTable .rateBox h3.active .toggleIcon::after {
  transform: rotate(360deg);
}
#rateTable .rateBox .rateWarp {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0 40px;
}
#rateTable .rateBox .rateDataBox {
  width: calc((100% - 40px) / 2);
}
#rateTable .rateBox .rateDataBox h4 {
  margin-bottom: 15px;
  padding: 15px 20px;
  font-weight: bold;
  color: #003C87;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: #fff;
}
#rateTable .rateBox .rateDataBox h5 {
  margin-bottom: 10px;
}
#rateTable .rateBox .rateData {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
#rateTable .rateBox .rateData p {
  margin-bottom: 0;
  text-align: left;
}
#rateTable .rateBox .rateData .price {
  text-align: right;
}
#rateTable .inspection {
  margin-top: 80px;
  padding: 50px 50px 100px;
  border-radius: 50px;
  background-color: #fff;
}
#rateTable .inspection .flowList {
  display: flex;
  justify-content: center;
  gap: 2%;
}
#rateTable .inspection .flowList li {
  position: relative;
  width: 18.4%;
  padding: 50px 0;
  border: 1px solid #ccc;
  border-radius: 30px;
}
#rateTable .inspection .flowList li::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 95%;
  z-index: 1;
  width: 47px;
  height: 50px;
  margin: auto;
  background: url("../img/icon_arrow2.svg") no-repeat center;
  background-size: 100% 100%;
}
#rateTable .inspection .flowList li:last-child::after {
  content: none;
}
#rateTable .inspection .flowList li .imageBox {
  margin-bottom: 15px;
  text-align: center;
}
#rateTable .inspection .flowList li .imageBox img {
  max-width: 118px;
}
#rateTable .inspection .flowList li p {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
#rateTable .inspection .flowList li .tag {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 212%;
  padding: 10px 0;
  font-weight: bold;
  text-align: center;
  border-radius: 1000px;
  background-color: #ccc;
}

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