/***  color ***/
/***  border ***/
/*** font ***/
/*** sp size ***/
#pageItems {
  padding: 70px 0 100px;
}
#pageItems .pageList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 1%;
}
#pageItems .pageList li {
  width: 24%;
}
#pageItems .pageList li a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 80px;
  font-size: 18px;
  font-weight: bold;
  color: #003C87;
  text-align: center;
  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%;
  transform: rotate(90deg);
}
@media screen and (max-width: 1300px) {
  #pageItems .pageList {
    gap: 1%;
  }
  #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;
  }
  #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 13.33vw;
  }
  #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: 1.37vw;
    width: 3.73vw;
    height: 3.73vw;
  }
}

.inspection .flowList {
  display: flex;
  justify-content: center;
  gap: 2%;
  padding: 50px 50px 100px;
  border-radius: 50px;
  background-color: #F6F6F6;
}
.inspection .flowList li {
  position: relative;
  width: 18.4%;
  padding: 50px 10px;
  border: 1px solid #ccc;
  border-radius: 30px;
  background-color: #fff;
}
.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%;
}
.inspection .flowList li:last-child::after {
  content: none;
}
.inspection .flowList li .imageBox {
  margin-bottom: 15px;
  text-align: center;
}
.inspection .flowList li .imageBox img {
  max-width: 118px;
  width: 100%;
}
.inspection .flowList li p {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.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;
}
@media screen and (max-width: 1024px) {
  .inspection .flowList {
    padding: 30px 20px 80px;
  }
}
@media screen and (max-width: 750px) {
  .inspection .flowList {
    display: block;
    padding: 8vw 16vw 8vw 5.33vw;
    border-radius: 5.33vw;
  }
  .inspection .flowList li {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 2.67vw;
    padding: 2.67vw;
    border-radius: 2.67vw;
  }
  .inspection .flowList li::after {
    top: 90%;
    bottom: auto;
    left: 0;
    right: 0;
    width: 10.66vw;
    height: 9.86vw;
    transform: rotate(90deg);
  }
  .inspection .flowList li .imageBox {
    margin-bottom: 0;
    margin-right: 2.67vw;
  }
  .inspection .flowList li .imageBox img {
    max-width: 16vw;
  }
  .inspection .flowList li p {
    font-size: 4.27vw;
  }
  .inspection .flowList li .tag {
    position: absolute;
    top: 0;
    bottom: auto;
    left: auto;
    right: -10.66vw;
    width: auto;
    height: calc(200% + 2.67vw);
    padding: 0 2.13vw;
    line-height: 1;
    writing-mode: vertical-rl;
  }
  .inspection .flowList li .tag .num {
    text-orientation: upright;
  }
}

.examinationTable {
  padding: 100px 0;
}
.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, .examinationTable table td {
  width: 33.33%;
}
.examinationTable table th {
  padding: 15px 0;
  font-weight: normal;
  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;
}
@media screen and (max-width: 750px) {
  .examinationTable {
    padding: 13.33vw 0;
  }
  .examinationTable table caption {
    padding-top: 4vw;
    font-size: 3.2vw;
  }
  .examinationTable table th, .examinationTable table td {
    width: auto;
    font-size: 3.73vw;
  }
  .examinationTable table th {
    padding: 2.67vw 0;
  }
  .examinationTable table td {
    padding: 2.37vw 5.33vw;
  }
  .examinationTable table td:not(:first-child) {
    text-align: center;
  }
}

#rateTable {
  padding: 100px 0 120px;
  background-color: #F6F6F6;
}
#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 small {
  display: inline-block;
  margin-left: 10px;
  font-size: 16px;
  text-align: left;
  vertical-align: middle;
}
#rateTable .rateBox h3 .toggleIcon {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
}
#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;
  transition: 0.2s ease-in-out;
}
#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 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 h4.full {
  width: 100%;
}
#rateTable .rateBox h5 {
  margin-bottom: 10px;
}
#rateTable .rateBox h5.full {
  width: 100%;
}
#rateTable .rateBox .rateData {
  display: flex;
  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;
  white-space: nowrap;
}
#rateTable .rateBox .rateData.multi p, #rateTable .rateBox .rateData.multi .price {
  line-height: 2.4;
}
#rateTable .rateBox .rateData.borderNone {
  padding-bottom: 0;
  border-bottom: none;
}
#rateTable .rateBox hr {
  width: 100%;
  height: 1px;
  margin-bottom: 20px;
  border: none;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 1024px) {
  #rateTable .rateBox h3 {
    font-size: 20px;
  }
  #rateTable .rateBox h3 small {
    font-size: 12px;
  }
  #rateTable .rateBox .rateWarp {
    gap: 0 20px;
  }
  #rateTable .rateBox .rateDataBox {
    width: calc((100% - 20px) / 2);
  }
  #rateTable .rateBox .rateData p {
    font-size: 14px;
  }
  #rateTable .rateBox .rateData .price {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  #rateTable {
    padding: 13.33vw 0 18.67vw;
  }
  #rateTable h3 {
    margin-bottom: 5.33vw;
    font-size: 4.8vw;
  }
  #rateTable p {
    margin-bottom: 4vw;
    font-size: 3.73vw;
    text-align: left;
  }
  #rateTable .rateBox {
    margin-bottom: 2.67vw;
  }
  #rateTable .rateBox h3 {
    margin-bottom: 3.2vw;
    height: auto;
    padding: 4vw 2.67vw;
    font-size: 4.27vw;
    text-align: left;
    border-top-left-radius: 2.67vw;
    border-top-right-radius: 2.67vw;
  }
  #rateTable .rateBox h3 small {
    display: block;
    margin-left: 0;
    font-size: 3.2vw;
  }
  #rateTable .rateBox h3 .toggleIcon {
    width: 4.8vw;
    height: 4.8vw;
    transition: 0.3s ease-in-out;
  }
  #rateTable .rateBox h3 .toggleIcon::before, #rateTable .rateBox h3 .toggleIcon::after {
    width: 4.8vw;
    height: 2px;
  }
  #rateTable .rateBox .rateWarp {
    display: block;
  }
  #rateTable .rateBox .rateDataBox {
    width: 100%;
  }
  #rateTable .rateBox h4 {
    margin-bottom: 2.67vw;
    padding: 2.67vw;
    font-size: 4.27vw;
    font-weight: bold;
    color: #003C87;
    border-top-left-radius: 2.67vw;
    border-top-right-radius: 2.67vw;
  }
  #rateTable .rateBox h5 {
    margin-bottom: 2.67vw;
    font-size: 3.73vw;
  }
  #rateTable .rateBox .rateData {
    margin-bottom: 4vw;
    padding-bottom: 4vw;
  }
  #rateTable .rateBox .rateData p {
    font-size: 3.73vw;
    letter-spacing: -1px;
  }
  #rateTable .rateBox .rateData .price {
    font-size: 3.73vw;
  }
  #rateTable .rateBox .rateData.multi p, #rateTable .rateBox .rateData.multi .price {
    line-height: 2.4;
  }
  #rateTable .rateBox hr {
    margin-bottom: 5.33vw;
  }
}

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