@charset "utf-8";

.step-lists__container {
  padding: 24px 0;
  margin-right: 0;
}
.step-lists {
  width: calc(100% + 24px);
  padding-left: 12px;
}
.step-lists .slick-list {
  padding: 0 32.5% 0 0!important;
}
.step-lists__item {
  margin-right: 23px;
}
.step-lists__item-pic {
  padding: 9% 7.75% 0;
  position: relative;
}
.step-lists__item .step-lists__item-pic::before {
  content: "";
  display: block;
  width: 18.5%;
  height: 14%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}
.step-lists__item:nth-of-type(1) .step-lists__item-pic::before {
  background-image: url(/learn-first/images/03/step-01__icon.png);
}
.step-lists__item:nth-of-type(2) .step-lists__item-pic::before {
  background-image: url(/learn-first/images/03/step-02__icon.png);
}
.step-lists__item:nth-of-type(3) .step-lists__item-pic::before {
  background-image: url(/learn-first/images/03/step-03__icon.png);
}
.step-lists__item .step-lists__item-pic::after {
  content: "";
  display: block;
  width: 16px;
  height: 32px;
  background: url(/learn-first/images/03/step-arrow.png) no-repeat center;
  background-size: contain;
  position: absolute;
  right: -20px;
  top: 50%;
}
.step-lists__item:last-child .step-lists__item-pic::after {
  display: none !important;
}
.step-lists__item-text {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 24px;
  padding: 0 4%;
}
.step-lists__item-text--title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.step-lists__controller {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 327px;
  height: 40px;
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  text-align: center;
  position: relative;
}
.step-lists__controller-prev,
.step-lists__controller-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 0;
}
.step-lists__controller-prev {
  left: 0;
}
.step-lists__controller-next {
  right: 0;
}
.step-lists__controller-prev.slick-disabled,
.step-lists__controller-next.slick-disabled {
  opacity: 0;
}
.step-lists__controller-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 45px;
}
.step-lists__controller-dots li {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.step-lists__controller-dots li button {
  display: block;
  width: 12px;
  height: 12px;
  background: transparent;
  border: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
  outline: none;
  padding: 0;
  cursor: pointer;
}
.step-lists__controller-dots li button:hover,
.step-lists__controller-dots li button:focus {
  outline: none;
}
.step-lists__controller-dots li button:hover:before,
.step-lists__controller-dots li button:focus:before {
  opacity: 1;
}
.step-lists__controller-dots li button:before {
  content: '';
  width: 8px;
  height: 8px;
  background: #ddd;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.step-lists__controller-dots li.slick-active button:before {
  width: 12px;
  height: 12px;
  background: #4da0ff;
}

@media screen and (min-width:768px) {

  .graphic-box {
    grid-template-columns: 327px 1fr;
  }
  .cost-img {
    max-width: 328px;
    margin: 0 auto;
  }
  .step-lists__container {
    margin-bottom: 0;
  }
  .step-lists {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0px;
    padding-left: 0;
  }
  .step-lists__item {
    padding: 24px 29px;
    margin-right: 0;
  }
  .step-lists__item-pic {
    padding: 14px 15px 0;
  }
  .step-lists__item .step-lists__item-pic::before {
    width: 38px;
    height: 38px;
    background-position: center;
  }
  .step-lists__item:not(:last-child) .step-lists__item-pic::after {
    right: -40px;
  }
  .step-lists__item-text--title {
    font-size: 2.0rem;
  }
  .step-lists__controller {
    display: none;
  }
  .btn-style-bg-white {
    max-width: 558px;
  }
}