/* Scss Document */
/* CSS Document */
/*------------------------------mixin bg------------------------------*/
/*------------------------------mixin flex------------------------------*/
body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.popup-container {
  overflow: auto;
  overscroll-behavior-y: contain;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: flex-start;
  z-index: 1000;
  padding: 5rem 0;
}

.popup-wrap {
  overflow-y: scroll;
  overflow-x: hidden;
  max-height: 90vh;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}
.popup-wrap .close-button {
  cursor: pointer;
  position: fixed;
  top: 3.5rem;
  right: 13rem;
  width: 5rem;
  height: 5rem;
  background: #000;
  border: #fff solid 0.1rem;
  color: #fff;
  z-index: 2;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
}
@media only screen and (max-width: 768px) {
  .popup-wrap .close-button {
    right: 2rem;
    width: 3rem;
    height: 3rem;
    font-size: 1.8rem;
  }
}

.price-simulation {
  background: #EAF0F5;
  margin: 0 auto;
  width: 120rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation {
    width: 33rem;
  }
}
.price-simulation h1 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-size: 3.8rem;
  background: #212C36;
  color: #fff;
  font-weight: 500;
  text-align: center;
  line-height: 9rem;
  height: 9rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation h1 {
    line-height: 5.8rem;
    height: 5.8rem;
    font-size: 2rem;
  }
}
.price-simulation .contents {
  background: #EAF0F5;
  padding: 4rem 8rem 8rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents {
    padding: 2rem;
    padding-bottom: 4rem;
  }
}
.price-simulation .contents input {
  display: none;
}
.price-simulation .contents h2 {
  font-size: 2.8rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents h2 {
    font-size: 1.6rem;
  }
}
.price-simulation .contents ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents ul {
    flex-direction: column;
    gap: 2rem;
  }
}
.price-simulation .contents ul li {
  cursor: pointer;
  border-radius: 2rem;
  background-color: #DDDDDD;
  border: 0.4rem solid #C8C8C8;
  color: #C8C8C8;
  width: 43rem;
  height: 18.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 3.4rem 4rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents ul li {
    width: 100%;
    height: 13rem;
    padding: 2rem 1.5rem;
  }
}
.price-simulation .contents ul li .icon {
  width: 12rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents ul li .icon {
    width: 8rem;
  }
}
.price-simulation .contents ul li .icon.selected {
  display: none;
}
.price-simulation .contents ul li .price .small {
  font-size: 1.4rem;
  font-weight: normal;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents ul li .price .small {
    font-size: 1rem;
  }
}
.price-simulation .contents ul li .price .open-sans {
  font-size: 4rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents ul li .price .open-sans {
    font-size: 2.2rem;
  }
}
.price-simulation .contents ul li .txt_wrap .name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents ul li .txt_wrap .name {
    font-size: 1.6rem;
  }
}
.price-simulation .contents ul li.selected {
  background-color: #FD9214;
  border: 0.4rem solid #FD9214;
  background: #FFF5E8;
}
.price-simulation .contents ul li.selected .price .small {
  color: #222;
}
.price-simulation .contents ul li.selected .price .open-sans {
  color: #439CF0;
}
.price-simulation .contents ul li.selected .name {
  color: #446B90;
}
.price-simulation .contents ul li.selected .icon.selected {
  display: block;
}
.price-simulation .contents ul li.selected .icon.deselected {
  display: none;
}
.price-simulation .contents .plan .plan-list .plan-list-item {
  width: calc((100% - 8rem) / 3);
  height: 37.5rem;
  padding: 3rem 2rem;
  text-align: center;
  display: block;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .plan .plan-list .plan-list-item {
    width: 100%;
    height: auto;
    padding: 2rem 1.5rem;
  }
}
.price-simulation .contents .plan .plan-list .plan-list-item .bubble {
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .plan .plan-list .plan-list-item .bubble {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .plan .plan-list .plan-list-item .flex_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
}
.price-simulation .contents .plan .plan-list .plan-list-item .device {
  width: 100%;
  height: 18rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .plan .plan-list .plan-list-item .device {
    width: 10.4rem;
    height: 9rem;
  }
}
.price-simulation .contents .plan .plan-list .plan-list-item .device.air-1 img {
  width: 18rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .plan .plan-list .plan-list-item .device.air-1 img {
    width: 10.4rem;
  }
}
.price-simulation .contents .plan .plan-list .plan-list-item .device.air-2 img {
  width: 15.8rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .plan .plan-list .plan-list-item .device.air-2 img {
    width: 8.5rem;
  }
}
.price-simulation .contents .plan .plan-list .plan-list-item .device.homerooter img {
  width: 20rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .plan .plan-list .plan-list-item .device.homerooter img {
    width: 10.4rem;
  }
}
.price-simulation .contents .plan .plan-list .plan-list-item .device.selected {
  display: none;
}
.price-simulation .contents .plan .plan-list .plan-list-item .txt-wrap .name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  width: 100%;
  height: 4.8rem;
  background: #C8C8C8;
  color: #fff;
  line-height: 4.8rem;
  border-radius: 0.5rem;
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .plan .plan-list .plan-list-item .txt-wrap .name {
    font-size: 1.6rem;
    height: 3.4rem;
    line-height: 3.4rem;
    width: 14.3rem;
  }
}
.price-simulation .contents .plan .plan-list .plan-list-item.selected .bubble {
  color: #FD9214;
}
.price-simulation .contents .plan .plan-list .plan-list-item.selected .name {
  background: #FD9214;
}
.price-simulation .contents .plan .plan-list .plan-list-item.selected .device.deselected {
  display: none;
}
.price-simulation .contents .plan .plan-list .plan-list-item.selected .device.selected {
  display: flex;
}
.price-simulation .contents .course, .price-simulation .contents .option {
  margin-top: 8rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .course, .price-simulation .contents .option {
    margin-top: 4rem;
  }
}
.price-simulation .contents .result {
  width: 74rem;
  margin: 0 auto;
  margin-top: 8rem;
  border-radius: 2rem;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .result {
    width: 100%;
    border-radius: 1rem;
    margin-top: 6rem;
  }
}
.price-simulation .contents .result .result-ttl {
  width: 100%;
  height: 8rem;
  line-height: 8rem;
  font-size: 2.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-weight: 500;
  position: relative;
  background: #212C36;
  color: #fff;
  border-radius: 2rem 2rem 0 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .result .result-ttl {
    height: 3.8rem;
    line-height: 3.8rem;
    font-size: 1.6rem;
    border-radius: 1rem 1rem 0 0;
  }
}
.price-simulation .contents .result .result-ttl::before {
  content: "";
  position: absolute;
  top: 98%;
  left: 50%;
  margin-left: -1.5rem;
  border: 1.5rem solid transparent;
  border-top: 1.5rem solid #212C36;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .result .result-ttl::before {
    margin-left: -1rem;
    border: 1rem solid transparent;
    border-top: 1rem solid #212C36;
  }
}
.price-simulation .contents .result .result-content {
  padding: 6rem 8rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .result .result-content {
    padding: 2rem;
  }
}
.price-simulation .contents .result .result-content dl {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
}
.price-simulation .contents .result .result-content .monthly-price .monthly-price-total dt {
  font-size: 2.4rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .result .result-content .monthly-price .monthly-price-total dt {
    font-size: 1.4rem;
  }
}
.price-simulation .contents .result .result-content .monthly-price .monthly-price-total dd {
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .result .result-content .monthly-price .monthly-price-total dd {
    font-size: 1.2rem;
  }
}
.price-simulation .contents .result .result-content .monthly-price .monthly-price-total dd .open-sans {
  font-size: 6rem;
  color: #FD9214;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .result .result-content .monthly-price .monthly-price-total dd .open-sans {
    font-size: 2.8rem;
  }
}
.price-simulation .contents .result .result-content .monthly-price .line {
  display: block;
  height: 1px;
  width: 100%;
  background: #C8C8C8;
  margin: 2rem 0;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .result .result-content .monthly-price .line {
    margin: 1rem 0;
  }
}
.price-simulation .contents .result .result-content .monthly-price .total-detail {
  font-weight: normal;
  font-size: 1.8rem;
  color: #C8C8C8;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .result .result-content .monthly-price .total-detail {
    font-size: 1.2rem;
  }
}
.price-simulation .contents .result .result-content .monthly-price .total-detail dt {
  font-weight: normal;
}
.price-simulation .contents .result .result-content figure {
  width: 4rem;
  margin: 3rem auto;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .result .result-content figure {
    width: 1.5rem;
    margin: 1.5rem auto;
  }
}
.price-simulation .contents .result .result-content .initial-administrative-fee .initial-administrative-fee-total {
  font-size: 2.4rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .result .result-content .initial-administrative-fee .initial-administrative-fee-total {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .result .result-content .initial-administrative-fee .initial-administrative-fee-total dd {
    font-size: 1.6rem;
  }
}
.price-simulation .contents .result .result-content .initial-administrative-fee .initial-administrative-fee-total dd .tax {
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .result .result-content .initial-administrative-fee .initial-administrative-fee-total dd .tax {
    font-size: 1.2rem;
  }
}
.price-simulation .contents .result .result-content .initial-administrative-fee .note {
  font-weight: normal;
  font-size: 1.2rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .result .result-content .initial-administrative-fee .note {
    font-size: 1rem;
  }
}
.price-simulation .contents .accordion_wrap {
  margin: 0 auto;
  margin-top: 4rem;
  width: 90rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .accordion_wrap {
    width: 100%;
    margin-top: 2rem;
  }
}
.price-simulation .contents .accordion_wrap .accordion {
  cursor: pointer;
  width: 100%;
  background: #222;
  color: #fff;
  text-align: center;
  height: 5.8rem;
  line-height: 5.8rem;
  position: relative;
  font-size: 2.4rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .accordion_wrap .accordion {
    font-size: 1.2rem;
    height: 3rem;
    line-height: 3rem;
  }
}
.price-simulation .contents .accordion_wrap .accordion::before {
  content: "";
  background: url(../img/plus.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 2rem;
  height: 2rem;
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .accordion_wrap .accordion::before {
    right: 2rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}
.price-simulation .contents .accordion_wrap .accordion.close::before {
  background: url(../img/minus.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.price-simulation .contents .accordion_wrap .box {
  background: #fff;
  padding: 4rem 8rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .accordion_wrap .box {
    padding: 2rem 1rem;
  }
}
.price-simulation .contents .accordion_wrap .box .detail_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  gap: 8rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .accordion_wrap .box .detail_wrap {
    flex-direction: column;
    gap: 2rem;
  }
}
.price-simulation .contents .accordion_wrap .box .detail_wrap::before {
  content: "";
  background: #FD9214;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 5rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .accordion_wrap .box .detail_wrap::before {
    height: 100%;
    width: 2px;
    left: 3.3rem;
    top: 0rem;
  }
}
.price-simulation .contents .accordion_wrap .box .detail_wrap .month_list {
  width: 28.8rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .accordion_wrap .box .detail_wrap .month_list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    align-items: flex-start;
  }
}
.price-simulation .contents .accordion_wrap .box .detail_wrap .month_list .top {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .accordion_wrap .box .detail_wrap .month_list .top {
    width: 6.7rem;
  }
}
.price-simulation .contents .accordion_wrap .box .detail_wrap .month_list .top .month {
  font-size: 2rem;
  font-weight: normal;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .accordion_wrap .box .detail_wrap .month_list .top .month {
    font-size: 1rem;
    font-weight: bold;
    text-shadow: 1.5px 1.5px 1.5px #fff, -1.5px 1.5px 1.5px #fff, -1.5px -1.5px 0 #fff, 1.5px -1.5px 0 #fff;
  }
}
.price-simulation .contents .accordion_wrap .box .detail_wrap .month_list .top .circle {
  margin: 0 auto;
  margin-top: 0.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #FD9214;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .accordion_wrap .box .detail_wrap .month_list .top .circle {
    width: 2rem;
    height: 2rem;
  }
}
.price-simulation .contents .accordion_wrap .box .detail_wrap .month_list .top .circle::before {
  content: "";
  background: url(../img/dotted-line.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 0.4rem;
  height: 4rem;
  position: absolute;
  left: 50%;
  bottom: -3rem;
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .accordion_wrap .box .detail_wrap .month_list .top .circle::before {
    top: 50%;
    left: auto;
    right: 0;
    transform: translate(100%, -50%) rotate(90deg);
  }
}
.price-simulation .contents .accordion_wrap .box .detail_wrap .month_list .txt_wrap {
  margin-top: 4rem;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .accordion_wrap .box .detail_wrap .month_list .txt_wrap {
    flex: 1;
    margin-top: 1.2rem;
  }
}
.price-simulation .contents .accordion_wrap .box .detail_wrap .month_list .txt_wrap .accordion-total {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
}
.price-simulation .contents .accordion_wrap .box .detail_wrap .month_list .txt_wrap .accordion-total dt {
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .accordion_wrap .box .detail_wrap .month_list .txt_wrap .accordion-total dt {
    font-size: 1.2rem;
  }
}
.price-simulation .contents .accordion_wrap .box .detail_wrap .month_list .txt_wrap .accordion-total dd {
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .accordion_wrap .box .detail_wrap .month_list .txt_wrap .accordion-total dd {
    font-size: 1rem;
  }
}
.price-simulation .contents .accordion_wrap .box .detail_wrap .month_list .txt_wrap .accordion-total dd .open-sans {
  font-size: 3.6rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .accordion_wrap .box .detail_wrap .month_list .txt_wrap .accordion-total dd .open-sans {
    font-size: 2.4rem;
  }
}
.price-simulation .contents .accordion_wrap .box .detail_wrap .month_list .txt_wrap .accordion-detail {
  font-size: 1.6rem;
  color: #C8C8C8;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .accordion_wrap .box .detail_wrap .month_list .txt_wrap .accordion-detail {
    font-size: 1rem;
  }
}
.price-simulation .contents .accordion_wrap .box .detail_wrap .month_list .txt_wrap .accordion-detail dl {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  font-weight: normal;
}
.price-simulation .contents .accordion_wrap .box .detail_wrap .month_list .txt_wrap .accordion-detail dl dt {
  font-weight: normal;
}
.price-simulation .contents .accordion_wrap .box .detail_wrap .month_list .txt_wrap .accordion-detail dl dd .tax {
  font-size: 1.2rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .accordion_wrap .box .detail_wrap .month_list .txt_wrap .accordion-detail dl dd .tax {
    font-size: 1rem;
  }
}
.price-simulation .contents .cv-btn {
  display: block;
  text-align: center;
  margin-top: 4rem;
  width: 65rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .cv-btn {
    width: 100%;
    margin-top: 2rem;
  }
}
.price-simulation .contents .cv-btn p {
  font-size: 2.8rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .cv-btn p {
    font-size: 2rem;
  }
}
.price-simulation .contents .cv-btn p::after {
  width: 1.4rem;
  height: 1.4rem;
  top: 1.8rem;
  right: -17rem;
}
@media only screen and (max-width: 768px) {
  .price-simulation .contents .cv-btn p::after {
    right: -4rem;
    width: 1rem;
    height: 1rem;
    top: 1.5rem;
  }
}
.price-simulation .contents .cv-btn::before {
  height: 4rem;
}/*# sourceMappingURL=price-simulation.css.map */