/***  color ***/
/***  border ***/
/*** font ***/
/*** sp size ***/
#pageItems {
  padding: 100px 0 100px;
}
#pageItems .pageList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 1%;
}
#pageItems .pageList li {
  width: 19.2%;
}
#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: 13.33vw 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;
  }
}

#explanation {
  padding-top: 100px;
}
#explanation .layout {
  text-align: center;
}
#explanation .layout .imgBox img {
  width: 100%;
}

.recommendation {
  background-color: #f6f6f6;
  padding: 50px 0 100px;
}
.recommendation .layout {
  display: flex;
  gap: 30px;
}
.recommendation .layout .txtBox {
  text-align: center;
}
.recommendation .layout .txtBox p {
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .recommendation {
    padding: 6.67vw 0 13.33vw;
  }
  .recommendation .layout {
    display: block;
  }
  .recommendation .layout .txtBox {
    display: flex;
    align-items: center;
    text-align: left;
  }
  .recommendation .layout .txtBox:nth-child(-n+2) {
    margin-bottom: 15px;
  }
  .recommendation .layout .txtBox img {
    width: 50%;
  }
  .recommendation .layout .txtBox p {
    margin-top: 0;
    margin-left: 10px;
    font-size: 4.27vw;
  }
}

.structure {
  padding: 100px 0;
}
.structure .structureList {
  margin-bottom: 50px;
}
.structure .structureList .titleBox {
  text-align: center;
  margin-bottom: 50px;
}
.structure .structureList .flowList {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.structure .structureList .flowList li {
  position: relative;
  width: calc((100% - 60px) / 2);
  padding: 20px 20px 40px;
  border: 1px solid #ccc;
  border-radius: 30px;
  background-color: #fff;
}
.structure .structureList .flowList li::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 98%;
  z-index: 1;
  width: 47px;
  height: 50px;
  margin: auto;
  background: url("../img/icon_arrow2.svg") no-repeat center;
  background-size: 100% 100%;
}
.structure .structureList .flowList li:last-child::after {
  content: none;
}
.structure .structureList .flowList li .txt {
  position: relative;
  display: flex;
}
.structure .structureList .flowList li .txt::before {
  content: "01";
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-top: -3px;
  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;
}
.structure .structureList .flowList li:nth-child(2) .txt::before {
  content: "02";
}
.structure .structureList .flowList li .txtBox .title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.structure .structureList .flowList li .imgBox {
  margin: -30px 0;
  text-align: center;
}
.structure .structureList .flowList li .imgBox img {
  width: 85%;
}
.structure .mechanism {
  padding: 50px;
  background-color: #f6f6f6;
  border-radius: 50px;
}
.structure .mechanism .title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.structure .mechanism .txtBox {
  display: flex;
}
.structure .mechanism .txtBox ol {
  counter-reset: my-counter;
  width: 80%;
  margin-right: 50px;
}
.structure .mechanism .txtBox ol li {
  display: flex;
  align-items: center;
  counter-increment: my-counter;
  padding: 10px 0;
}
.structure .mechanism .txtBox 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;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .structure .flowList {
    padding: 30px 20px 80px;
  }
}
@media screen and (max-width: 750px) {
  .structure .structureList {
    margin-bottom: 0;
  }
  .structure .structureList .titleBox {
    margin-bottom: 4vw;
  }
  .structure .structureList .flowList {
    display: block;
    padding: 2.4vw;
    border-radius: 5.33vw;
  }
  .structure .structureList .flowList li {
    width: 100%;
    margin-bottom: 3.73vw;
    padding: 3.73vw 3.73vw 5.33vw 3.73vw;
    border-radius: 3.73vw;
  }
  .structure .structureList .flowList li::after {
    top: 95%;
    bottom: auto;
    left: 0;
    right: 0;
    width: 10.66vw;
    height: 9.86vw;
    transform: rotate(90deg);
  }
  .structure .structureList .flowList li .titleBox {
    width: 100%;
  }
  .structure .structureList .flowList li .titleBox .txt::before {
    width: 6.4vw;
    height: 6.4vw;
    margin-top: 0;
    margin-right: 2.67vw;
    font-size: 3.73vw;
  }
  .structure .structureList .flowList li .titleBox .imgBox {
    margin: 1.33vw 0 0 2.67vw;
  }
  .structure .structureList .flowList li .titleBox .imgBox img {
    width: 100%;
  }
  .structure .structureList .flowList li .txtBox .title {
    font-size: 4.27vw;
    margin-bottom: 10px;
  }
  .structure .structureList .flowList li .txtBox p {
    font-size: 3.73vw;
  }
  .structure .mechanism {
    border-radius: 30px;
  }
  .structure .mechanism .title {
    font-size: 4.27vw;
  }
  .structure .mechanism .txtBox {
    display: block;
  }
  .structure .mechanism .txtBox ol {
    width: 100%;
    margin: 0 0 14px 0;
  }
  .structure .mechanism .txtBox ol li {
    margin-bottom: 1.38vw;
    font-size: 3.73vw;
    padding: 6px 0;
  }
  .structure .mechanism .txtBox ol li::before {
    width: 8vw;
    height: 8vw;
    margin-right: 2.67vw;
    font-size: 3.73vw;
  }
  .structure .mechanism img {
    width: 100%;
  }
}

.treatment {
  padding: 100px 0;
  background-color: #f6f6f6;
}
.treatment .treatmentList {
  padding: 50px;
  background-color: #fff;
  border-radius: 50px;
}
.treatment .treatmentList ol li {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}
.treatment .treatmentList ol li .title {
  width: 13%;
  font-size: 20px;
  font-weight: bold;
}
.treatment .treatmentList ol li .txt {
  width: 87%;
  margin-left: 50px;
}
@media screen and (max-width: 750px) {
  .treatment {
    padding: 13.33vw 0;
  }
  .treatment .treatmentList {
    border-radius: 30px;
  }
  .treatment .treatmentList ol li {
    display: block;
  }
  .treatment .treatmentList ol li .title {
    width: 100%;
    font-size: 4.27vw;
  }
  .treatment .treatmentList ol li .txt {
    width: 100%;
    margin-left: 0;
    font-size: 3.73vw;
  }
}

.comparison {
  padding: 100px 0;
}
.comparison .titleBox p {
  text-align: center;
  margin-bottom: 50px;
}
.comparison .layout .comparisonTable:first-child {
  margin-bottom: 50px;
}
.comparison .layout .comparisonTable h3 {
  font-size: 30px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px 20px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1;
}
.comparison .layout .comparisonTable h3::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 5px;
  height: 30px;
  margin: 0 auto 0 0;
  border-radius: 100px;
  background: linear-gradient(to bottom, #003C87 0%, #003C87 50%, #FDDB0A 50%, #FDDB0A 100%);
}
.comparison .layout .comparisonTable .timeWrap {
  margin: 0 auto;
}
.comparison .layout .comparisonTable .timeWrap table {
  width: 100%;
  border-color: #ccc;
}
.comparison .layout .comparisonTable .timeWrap table .tableheader {
  background-color: #003C87;
  color: #fff;
  text-align: center;
}
.comparison .layout .comparisonTable .timeWrap table .tableheader td {
  font-weight: bold;
}
.comparison .layout .comparisonTable .timeWrap table .tableSideHeader th {
  background-color: #4C76AA;
  color: #fff;
}
.comparison .layout .comparisonTable .timeWrap table tr {
  padding: 10px;
  background-color: #fff;
}
.comparison .layout .comparisonTable .timeWrap table tr th, .comparison .layout .comparisonTable .timeWrap table tr td {
  padding: 20px;
  font-size: 16px;
}
.comparison .layout .comparisonTable .timeWrap table tr th {
  text-align: center;
}
.comparison .layout .comparisonTable .timeWrap table tr td {
  vertical-align: top;
}
.comparison .layout .comparisonTable .timeWrap .note {
  margin-top: 20px;
  font-size: 16px;
}
.comparison .layout .comparisonTable .timeWrap .note .title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 750px) {
  .comparison {
    padding: 13.33vw 0;
  }
  .comparison .titleBox p {
    text-align: left;
    margin-bottom: 5.33vw;
    padding: 0 20px;
  }
  .comparison .layout .comparisonTable:first-child {
    margin-bottom: 8vw;
  }
  .comparison .layout .comparisonTable h3 {
    font-size: 5.33vw;
    margin: 0 auto 4vw 0;
    padding-left: 2.67vw;
  }
  .comparison .layout .comparisonTable h3::before {
    height: 6.93vw;
  }
  .comparison .layout .comparisonTable .timeWrap .sp .table {
    font-size: 3.73vw;
    margin-bottom: 2.67vw;
  }
  .comparison .layout .comparisonTable .timeWrap .sp .table .tableheader {
    padding: 2.67vw;
    background-color: #003C87;
    font-weight: bold;
    color: #fff;
  }
  .comparison .layout .comparisonTable .timeWrap .sp .table .datawrap .data {
    border: 1px solid #ccc;
  }
  .comparison .layout .comparisonTable .timeWrap .sp .table .datawrap .data .title {
    padding: 2.67vw;
    font-weight: bold;
    color: #fff;
    background-color: #4C76AA;
  }
  .comparison .layout .comparisonTable .timeWrap .sp .table .datawrap .data p {
    padding: 2.67vw;
  }
  .comparison .layout .comparisonTable .timeWrap .note .title {
    font-size: 4.27vw;
  }
  .comparison .layout .comparisonTable .timeWrap .note p {
    font-size: 3.73vw;
  }
}

.rateTable {
  padding: 100px 0 120px;
  background-color: #F6F6F6;
}
.rateTable .txtBox {
  text-align: center;
  margin-bottom: 30px;
}
.rateTable .txtBox h3 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #003C87;
}
.rateTable .rateList {
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.rateTable .rateList li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 70%;
  height: 80px;
  margin-bottom: 15px;
  padding: 0 40px;
  font-size: 20px;
  font-weight: bold;
  border: 2px solid #ccc;
  border-radius: 10px;
  background-color: #fff;
}
.rateTable .rateList li .price {
  text-align: right;
}
.rateTable .rateList li .campaignText {
  font-size: 16px;
}
.rateTable .rateList li .campaignText strong {
  font-size: 20px;
}
.rateTable .rateList li .campaignText small {
  font-weight: normal;
}
.rateTable .rateList li .colorRed {
  font-weight: bold;
  color: #E54154;
}

.rateBox {
  margin-bottom: 20px;
}
.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;
}
.rateBox h3 small {
  display: inline-block;
  margin-left: 10px;
  font-size: 16px;
  text-align: left;
  vertical-align: middle;
}
.rateBox h3 .toggleIcon {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
}
.rateBox h3 .toggleIcon::before, .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;
}
.rateBox h3 .toggleIcon::after {
  transform: rotate(90deg);
}
.rateBox h3.active .toggleIcon::after {
  transform: rotate(360deg);
}
.rateBox .rateWarp {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0 40px;
}
.rateBox .rateDataBox {
  width: calc((100% - 40px) / 2);
}
.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;
}
.rateBox h4.full {
  width: 100%;
}
.rateBox h5 {
  margin-bottom: 10px;
}
.rateBox h5.full {
  width: 100%;
}
.rateBox .rateData {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
.rateBox .rateData p {
  margin-bottom: 0;
  text-align: left;
}
.rateBox .rateData .price {
  text-align: right;
  white-space: nowrap;
}
.rateBox .rateData.multi p, .rateBox .rateData.multi .price {
  line-height: 2.4;
}
.rateBox .rateData.borderNone {
  padding-bottom: 0;
  border-bottom: none;
}
.rateBox .optionBox {
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
}
.rateBox .optionBox h6 {
  margin-bottom: 10px;
}
.rateBox .optionBox .optionList {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
}
.rateBox .optionBox .optionPrice {
  text-align: right;
}
.rateBox hr {
  width: 100%;
  height: 1px;
  margin-bottom: 20px;
  border: none;
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 1024px) {
  .rateBox h3 {
    font-size: 20px;
  }
  .rateBox h3 small {
    font-size: 12px;
  }
  .rateBox .rateWarp {
    gap: 0 20px;
  }
  .rateBox .rateDataBox {
    width: calc((100% - 20px) / 2);
  }
  .rateBox .rateData p {
    font-size: 14px;
  }
  .rateBox .rateData .price {
    font-size: 14px;
  }
  .rateBox .optionBox {
    padding: 15px;
  }
  .rateBox .optionBox h6 {
    margin-bottom: 10px;
  }
  .rateBox .optionBox .optionList {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
  }
  .rateBox .optionBox .optionName {
    font-size: 14px;
  }
  .rateBox .optionBox .optionPrice {
    font-size: 14px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 750px) {
  .rateTable {
    padding: 13.33vw 0 18.67vw;
  }
  .rateTable .txtBox h3 {
    margin-bottom: 5.33vw;
    font-size: 4.8vw;
  }
  .rateTable .txtBox p {
    margin-bottom: 5.33vw;
    font-size: 3.73vw;
  }
  .rateTable .rateList {
    margin-bottom: 5.33vw;
  }
  .rateTable .rateList li {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 4vw;
    padding: 4vw;
    font-size: 4.27vw;
  }
  .rateTable .rateList li .price {
    text-align: left;
  }
  .rateTable .rateList li .campaignText {
    font-size: 4.27vw;
  }
  .rateTable .rateList li .campaignText strong {
    font-size: 5.33vw;
  }
  .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 .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;
  }
}

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