/* 컨텐츠 */
.middle-area .contents {
  margin-bottom: 54px;
}
.middle-area .contents .content-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px 24px;
  margin-top: 24px;
}

.middle-area .contents .content-box p {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  letter-spacing: -0.5px;
  color: #6e7881;
}
.middle-area .contents .content-box h2 {
  font-weight: 800;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  letter-spacing: -0.5px;
  color: #181a1b;
}
.middle-area .contents .content-box .btn-area {
  width: 100%;
  text-align: center;
  margin-top: 24px;
}
.middle-area .contents .content-box .btn-area *[class^="c-btn-"] {
  display: inline-flex;
  align-items: center;
  padding: 0 32px;
  text-align: center;
}
.middle-area .contents .content-box .c-btn-outline-pink {
  height: 56px;
  background: #fff;
  border: 1px solid #ff2e98;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;

  letter-spacing: -0.5px;
  color: #ff1a8d;
}
.middle-area .contents .content-box .c-btn-gray-icon {
  background: #edeff0;
  border-radius: 12px;
  font-weight: 700;
  height: 52px;
  font-size: 16px;
  letter-spacing: -0.5px;
  color: #181a1b;
}
.middle-area .contents .content-box .c-btn-gray-icon::before {
  display: inline-block;
  margin-right: 4px;

  width: 24px;
  height: 24px;
  background: url(../img/v2/ico-call.svg) no-repeat 0 0 / contain;
  content: "";
}
.middle-area .contents .content-box .cs-center {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  letter-spacing: -0.5px;

  color: #ff2e98;
}
.middle-area .contents .content-box .slider {
  position: relative;
  margin: 24px -24px;
  width: calc(100% + 48px);
  height: 80px;
  overflow: hidden;
}
.middle-area .contents .content-box .slider ul {
  position: absolute;
  width: max-content;
  display: flex;
  flex-flow: row wrap;
  animation: slideloop 20s linear infinite both;
  gap: 10px;
}
.middle-area .contents .content-box .slider ul img {
  width: 62px;
}
.middle-area .contents .content-box .img-box {
  margin: 24px 0;
}
.middle-area .contents .content-box .img-box img {
  width: 272px;
}

.middle-area .howtouse ul {
  position: relative;
  margin-top: 48px;
  background: #fff;
  border-radius: 16px;
  padding: 40px 24px;
}
.middle-area .howtouse ul::before {
  position: absolute;
  left: 0;
  top: -28px;
  width: 100%;
  height: 44px;
  background: url(../img/v2/img-howtouse.png) no-repeat 0 0 / contain;
  content: "";
}
.middle-area .howtouse ul li {
  position: relative;
  padding-left: 38px;
  padding-bottom: 40px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: #181a1b;
}
.middle-area .howtouse ul li .smaller {
  margin-top: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.5px;

  color: #6e7881;
}
.middle-area .howtouse ul li:before {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #b3b3b3;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.5px;
  color: #fff;
}
.middle-area .howtouse ul li:after {
  position: absolute;
  left: 12px;
  top: 34px;
  bottom: 12px;
  width: 2px;
  background: #f3f5f6;
  content: "";
}
.middle-area .howtouse ul li:nth-child(1):before {
  content: "1";
}
.middle-area .howtouse ul li:nth-child(2):before {
  content: "2";
}
.middle-area .howtouse ul li:nth-child(3):before {
  content: "3";
}
.middle-area .howtouse ul li:last-child {
  padding-bottom: 0;
}
.middle-area .howtouse ul li:last-child:after {
  display: none;
}

@keyframes slideloop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
