/***  color ***/
/***  border ***/
/*** font ***/
/*** sp size ***/
#pageItems {
  padding: 100px 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: 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%;
}

.reason {
  background-color: #f6f6f6;
  padding: 100px 0 50px;
}
.reason .titleBox {
  padding-bottom: 50px;
}
.reason .titleBox p {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.reason .layout {
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
}
.reason .layout img {
  margin-right: 100px;
}
.reason .txt {
  text-align: left;
}
.reason .txt h4 {
  font-size: 20px;
  font-weight: bold;
}
.reason .txt div {
  padding-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .reason .layout img {
    max-width: 50%;
    margin-right: 50px;
  }
}
@media screen and (max-width: 750px) {
  .reason {
    padding: 13.33vw 0 6.67vw;
  }
  .reason .titleBox {
    padding-bottom: 20px;
  }
  .reason .titleBox p {
    font-size: 4.8vw;
  }
  .reason .layout {
    flex-direction: column;
  }
  .reason .layout img {
    margin: 0 0 20px 0;
    max-width: 100%;
  }
  .reason .layout .txt h4 {
    font-size: 4.27vw;
    font-weight: bold;
  }
  .reason .layout .txt p {
    font-size: 3.73vw;
  }
  .reason .layout .txt div {
    padding-bottom: 20px;
  }
}

.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 .flowList {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.structure .flowList li {
  position: relative;
  width: calc((100% - 60px) / 4);
  padding: 20px 20px 40px;
  border: 1px solid #ccc;
  border-radius: 30px;
  background-color: #fff;
}
.structure .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%;
}
.structure .flowList li:last-child::after {
  content: none;
}
.structure .flowList li .txt {
  position: relative;
  display: flex;
}
.structure .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 .flowList li:nth-child(2) .txt::before {
  content: "02";
}
.structure .flowList li:nth-child(3) .txt::before {
  content: "03";
}
.structure .flowList li:nth-child(4) .txt::before {
  content: "04";
}
.structure .flowList li .imgBox {
  margin-top: -30px;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .structure .flowList {
    padding: 30px 20px 80px;
  }
}
@media screen and (max-width: 750px) {
  .structure .flowList {
    display: block;
    padding: 2.4vw;
    border-radius: 5.33vw;
  }
  .structure .flowList li {
    display: flex;
    width: 100%;
    margin-bottom: 3.73vw;
    padding: 3.73vw 3.73vw 5.33vw 3.73vw;
    border-radius: 3.73vw;
  }
  .structure .flowList li::after {
    top: 90%;
    bottom: auto;
    left: 0;
    right: 0;
    width: 10.66vw;
    height: 9.86vw;
    transform: rotate(90deg);
  }
  .structure .flowList li .titleBox {
    width: 100%;
    margin-right: 20px;
  }
  .structure .flowList li .titleBox .txt::before {
    width: 6.4vw;
    height: 6.4vw;
    margin-top: 0;
    margin-right: 2.67vw;
    font-size: 3.73vw;
  }
  .structure .flowList li .titleBox .imgBox {
    margin: 2.67vw 2.67vw 0 0;
  }
  .structure .flowList li .titleBox .imgBox img {
    width: 100%;
  }
  .structure .flowList li .txtBox {
    max-width: 68%;
  }
  .structure .flowList li .txtBox p {
    font-size: 4.27vw;
  }
}

.aga-flow {
  padding: 100px 0;
  background-color: #f6f6f6;
}
.aga-flow .agaFlowList li {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.aga-flow .agaFlowList .imgBox {
  margin-right: 50px;
}
.aga-flow .agaFlowList .txtBox {
  position: relative;
  width: 50%;
  padding-left: 75px;
}
.aga-flow .agaFlowList .txtBox .num2 {
  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;
}
.aga-flow .note {
  padding: 50px;
  background-color: #fff;
  border-radius: 50px;
}
.aga-flow .note .title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.aga-flow .note ol {
  counter-reset: my-counter;
}
.aga-flow .note ol li {
  display: flex;
  align-items: center;
  counter-increment: my-counter;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}
.aga-flow .note 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;
}
.aga-flow .note ol .small {
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .aga-flow {
    padding: 50px 0;
  }
  .aga-flow .agaFlowList li {
    gap: 20px;
    margin-bottom: 30px;
  }
  .aga-flow .agaFlowList li .imgBox {
    max-width: 700px;
    width: 100%;
  }
  .aga-flow .agaFlowList li .txtBox {
    flex-shrink: 0;
    padding-left: 50px;
  }
  .aga-flow .agaFlowList li .txtBox .num2 {
    top: -7px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .aga-flow .agaFlowList li .txtBox p {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .aga-flow {
    padding: 13.33vw 0;
  }
  .aga-flow .agaFlowList li {
    display: block;
  }
  .aga-flow .agaFlowList li .imgBox {
    margin-bottom: 5.33vw;
  }
  .aga-flow .agaFlowList li .txtBox {
    width: 100%;
    padding-left: 10.67vw;
  }
  .aga-flow .agaFlowList li .txtBox .num2 {
    top: -1.33vw;
    width: 8vw;
    height: 8vw;
    font-size: 4.27vw;
    border-radius: 3px;
  }
  .aga-flow .agaFlowList li .txtBox p {
    font-size: 3.73vw;
  }
  .aga-flow .note {
    border-radius: 30px;
  }
  .aga-flow .note .title {
    font-size: 4.27vw;
  }
  .aga-flow .note ol li {
    margin-bottom: 1.38vw;
    font-size: 3.73vw;
  }
  .aga-flow .note ol li::before {
    width: 8vw;
    height: 8vw;
    margin-right: 2.67vw;
    font-size: 3.73vw;
  }
  .aga-flow .note ol .small {
    font-size: 3.2vw;
  }
}

.difference, .minoxidil {
  padding: 100px 0;
}
.difference .layout, .minoxidil .layout {
  display: flex;
}
.difference .layout .txtContainer, .minoxidil .layout .txtContainer {
  margin-right: 100px;
}
.difference .layout .txtContainer .txtBox:nth-child(-n+2) p, .minoxidil .layout .txtContainer .txtBox:nth-child(-n+2) p {
  margin-bottom: 50px;
}
.difference .layout .txtContainer h3, .minoxidil .layout .txtContainer h3 {
  font-size: 30px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px 20px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1;
}
.difference .layout .txtContainer h3::before, .minoxidil .layout .txtContainer 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%);
}
.difference .layout .txtContainer h4, .minoxidil .layout .txtContainer h4 {
  margin-bottom: 15px;
  font-size: 20px;
}
.difference .layout img, .minoxidil .layout img {
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .difference .layout .txtContainer, .minoxidil .layout .txtContainer {
    margin-right: 50px;
  }
  .difference .layout .txtContainer .txtBox h3::before, .minoxidil .layout .txtContainer .txtBox h3::before {
    height: 100%;
  }
}
@media screen and (max-width: 1024px) and (max-width: 750px) {
  .difference .layout, .minoxidil .layout {
    display: block;
  }
  .difference .layout .txtContainer, .minoxidil .layout .txtContainer {
    width: 100%;
    margin-right: 0px;
  }
  .difference .layout .txtContainer .txtBox h3, .minoxidil .layout .txtContainer .txtBox h3 {
    font-size: 5.33vw;
    margin: 0 auto 4vw 0;
    padding-left: 2.67vw;
  }
  .difference .layout .txtContainer .txtBox h3::before, .minoxidil .layout .txtContainer .txtBox h3::before {
    height: 6.93vw;
  }
  .difference .layout .txtContainer .txtBox h4, .minoxidil .layout .txtContainer .txtBox h4 {
    margin-bottom: 4vw;
    font-size: 4.27vw;
  }
  .difference .layout .txtContainer .txtBox p, .minoxidil .layout .txtContainer .txtBox p {
    font-size: 3.73vw;
  }
  .difference .layout img, .minoxidil .layout img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
}

.minoxidil {
  padding-top: 0px;
}
.minoxidil .layout .txtContainer .txtBox:nth-child(1) p {
  margin-bottom: 20px;
}
.minoxidil .layout .txtContainer .txtBox:nth-child(2) p {
  margin-bottom: 0px;
}

.threeDifferences {
  padding-bottom: 100px;
}
.threeDifferences .layout {
  text-align: center;
}
.threeDifferences .layout .imgBox img {
  width: 100%;
  max-width: 800px;
}

.rateTable {
  padding: 100px 0 120px;
  background-color: #F6F6F6;
}
.rateTable .imgBox {
  margin-bottom: 50px;
}
.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 .txtBox {
  text-align: center;
}
.rateTable .txtBox .strong {
  font-size: 20px;
  font-weight: bold;
  color: #003C87;
}

.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 .campaignText strong {
  font-size: 20px;
}
.rateBox .rateData .campaignText small {
  font-weight: normal;
}
.rateBox .rateData .colorRed {
  font-weight: bold;
  color: #E54154;
}
.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 .imgBox {
    margin-bottom: 13.33vw;
  }
  .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 .campaignText strong {
    font-size: 5.33vw;
  }
  .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=aga.css.map */
