/*==================================================
sp pc
==================================================*/
@media all and (max-width: 1200px) {
  .pc-only {
    display: none !important;
  }
}

@media all and (min-width: 1201px) {
  .sp-tb-only {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .tb-only {
    display: none !important;
  }
}
@media all and (min-width: 1201px) {
  .tb-only {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .tb-pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

@media all and (max-width: 1023px) {
  body {
    padding-bottom: 100px;
  }
}

/*==================================================
simulation
==================================================*/
.simulation {
  margin-bottom: 100px;
}
@media all and (max-width: 767px) {
  .simulation {
    margin-bottom: 0;
  }
}
.simulation__head {
  margin-bottom: 40px;
  text-align: center;
}
@media all and (max-width: 767px) {
  .simulation__head {
    text-align: left;
  }
}
.simulation__content {
  align-items: flex-start;
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 280px;
}
@media all and (max-width: 1023px) {
  .simulation__content {
    display: block;
  }
}
.simulation__side {
  position: -webkit-sticky;
  position: sticky;
  right: 0;
  top: 40px;
}
@media all and (max-width: 1023px) {
  .simulation__side {
    bottom: 0;
    left: 20px;
    position: fixed;
    top: auto;
    transform: translateY(100%);
    transition: transform 0.6s;
    width: calc(100% - 40px);
    z-index: var(--z-index-simulation);
  }
  .simulation__side.-show {
    transform: translateY(0);
  }
}

/*==================================================
result
==================================================*/
@media all and (max-width: 1023px) {
  .result {
    padding-bottom: 20px;
    margin-top: -60px;
  }
}
.result__head {
  background-color: var(--main-color);
  border-radius: 16px 16px 0 0;
  color: #fff;
  display: grid;
  height: 60px;
  place-content: center;
}
.result__head-ttl {
  font-size: 2.4rem;
  font-weight: var(--font-weight-base);
}
@media all and (max-width: 1023px) {
  .result__head-ttl {
    font-size: 1.6rem;
  }
  .result__head-ttl::after {
    background: url(/assets/img/common/ico-arrow-top-wh.svg) center/100% no-repeat;
    content: "";
    display: inline-block;
    height: 12px;
    margin-left: 12px;
    width: 20px;
  }
}
.-show .result__head .result__head-ttl::after {
  transform: scale(1, -1);
}
.result__main {
  background-color: #fff;
  border: 2px solid var(--main-color);
  border-radius: 0 0 16px 16px;
}
.result__body {
  padding: 20px 0 0;
}
.result__foot {
  padding: 0 20px 20px;
}
@media all and (max-width: 1023px) {
  .result__foot {
    padding: 0 30px 20px;
  }
}
.result__foot .modal-trigger {
  background: unset;
  padding-left: 0;
}
.result__list-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  line-height: 1.4;
  margin-bottom: 20px;
  padding: 0 20px;
}
.result__list-item.-total {
  border-bottom: 1px solid #E7E7E7;
  border-top: 1px solid #E7E7E7;
  padding-bottom: 20px;
  padding-top: 20px;
}
@media all and (max-width: 1023px) {
  .result__list-item {
    padding: 0 30px;
  }
}
.result__list-ttl, .result__list-txt {
  font-weight: var(--font-weight-bold);
}
.result__list-ttl {
  color: var(--main-color);
}
/*# sourceMappingURL=simulation.css.map */