/***  color ***/
/***  border ***/
/*** font ***/
/*** sp size ***/
#desc {
  padding-top: 70px;
}
#desc h2 {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: bold;
  color: #003C87;
  text-align: center;
}
#desc p {
  margin-bottom: 25px;
  text-align: center;
}
#desc .notes {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 30px;
  border-radius: 20px;
  background-color: #f6f6f6;
}
#desc .notes h3 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
#desc .notes ul {
  padding-left: 25px;
  list-style: disc;
}
#desc .notes ul li {
  padding: 5px 0;
}
@media screen and (max-width: 750px) {
  #desc {
    padding-top: 8vw;
  }
  #desc h2 {
    margin-bottom: 5.33vw;
    font-size: 4.8vw;
  }
  #desc p {
    margin-bottom: 5.33vw;
    text-align: left;
  }
  #desc .notes {
    padding: 5.33vw;
    font-size: 4.27vw;
    border-radius: 5.33vw;
  }
  #desc .notes h3 {
    font-size: 4.27vw;
  }
  #desc .notes ul {
    padding-left: 2.67vw;
  }
  #desc .notes ul li {
    padding: 1.33vw 0;
    font-size: 3.73vw;
  }
}

#pageItems {
  padding: 50px 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;
  }
}

.difference {
  padding-bottom: 100px;
}
.difference .differenceWrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.difference .differenceBox {
  width: calc((100% - 40px) / 2);
  padding: 50px 30px;
  border-radius: 30px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}
.difference .imgBox {
  margin-bottom: 25px;
  text-align: center;
}
.difference h3 {
  margin-bottom: 25px;
  font-size: 30px;
  font-weight: bold;
  color: #003C87;
  text-align: center;
}
.difference p {
  margin-bottom: 45px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.difference .pointList {
  counter-reset: my-counter;
  position: relative;
  padding: 35px 20px 15px;
  border-radius: 20px;
  background-color: #f6f6f6;
}
.difference .pointList::before {
  content: "Point";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  width: 112px;
  height: 40px;
  margin: auto;
  font-size: 22px;
  font-weight: bold;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  border-radius: 1000px;
  background-color: #003C87;
}
.difference .pointList li {
  display: flex;
  counter-increment: my-counter;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
}
.difference .pointList 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: 1024px) {
  .difference .differenceWrap {
    gap: 20px;
  }
  .difference .differenceBox {
    width: calc((100% - 20px) / 2);
    padding: 30px 20px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 750px) {
  .difference {
    padding-bottom: 13.33vw;
  }
  .difference .differenceWrap {
    display: block;
  }
  .difference .differenceBox {
    width: 100%;
    margin-bottom: 5.33vw;
    padding: 5.33vw;
    border-radius: 5.33vw;
  }
  .difference .imgBox {
    margin-bottom: 4vw;
  }
  .difference .imgBox img {
    width: 21.33vw;
  }
  .difference h3 {
    margin-bottom: 2.67vw;
    font-size: 4.8vw;
  }
  .difference p {
    margin-bottom: 8vw;
    font-size: 4.27vw;
  }
  .difference .pointList {
    padding: 8vw 2.67vw 5.33vw;
    border-radius: 2.67vw;
  }
  .difference .pointList::before {
    top: -3.73vw;
    width: 18.13vw;
    height: 7.46vw;
    font-size: 4.27vw;
  }
  .difference .pointList li {
    margin-bottom: 1.38vw;
    font-size: 3.73vw;
  }
  .difference .pointList li::before {
    width: 8vw;
    height: 8vw;
    margin-right: 2.67vw;
    font-size: 3.73vw;
  }
}

#rateTable {
  padding: 100px 0 80px;
  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;
  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 .rateData.multiPrice {
  flex-wrap: wrap;
}
#rateTable .rateBox .osususme {
  display: inline-block;
  width: 40px;
  margin-right: 5px;
  transform: translateY(-6px);
}
#rateTable .rateBox .multiPriceBox {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 15px;
}
#rateTable .rateBox .multiPriceBox:last-child {
  margin-bottom: 0;
}
#rateTable .rateBox .optionBox {
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
}
#rateTable .rateBox .optionBox h6 {
  margin-bottom: 10px;
}
#rateTable .rateBox .optionBox .optionList {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
}
#rateTable .rateBox .optionBox .optionPrice {
  text-align: right;
}
#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;
  }
  #rateTable .rateBox .optionBox {
    padding: 15px;
  }
  #rateTable .rateBox .optionBox h6 {
    margin-bottom: 10px;
  }
  #rateTable .rateBox .optionBox .optionList {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
  }
  #rateTable .rateBox .optionBox .optionName {
    font-size: 14px;
  }
  #rateTable .rateBox .optionBox .optionPrice {
    font-size: 14px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 750px) {
  #rateTable {
    padding: 13.33vw 0;
  }
  #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 .osususme {
    width: 9.33vw;
    margin-right: 1.33vw;
    transform: translateY(-1.33vw);
  }
  #rateTable .rateBox .optionBox {
    padding: 3.2vw;
  }
  #rateTable .rateBox .optionBox h6 {
    margin-bottom: 1.33vw;
    font-size: 3.73vw;
  }
  #rateTable .rateBox .optionBox .optionList {
    padding: 1.33vw 0;
  }
  #rateTable .rateBox .optionBox .optionName {
    font-size: 3.73vw;
  }
  #rateTable .rateBox .optionBox .optionPrice {
    font-size: 3.73vw;
  }
  #rateTable .rateBox hr {
    margin-bottom: 5.33vw;
  }
}

#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=fees.css.map */
