@charset "UTF-8";
:root {
  --vh: 1%;
  /* 기본색상 */
  --color-main: #6796ff;
  --color-main-bg: #f7f7f7;
}
html,
body,
main {
  height: 100%;
  height: calc(var(--vh, 1vh) * 100);
}
html,
body {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  user-select: none;
  min-width: initial;
}
* {
  font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Malgun Gothic', '맑은 고딕', system-ui, sans-serif;
}
section,
.section {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}
body {
  position: relative;
  height: auto !important;
  overflow-y: auto;
}
::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera*/
  scrollbar-width: none;
  /* Firefox */
  scroll-behavior: smooth;
}
body.hide {
  overflow: hidden;
  height: calc(var(--vh, 1vh) * 100);
}

.d-none {
  display: none !important;
}
/* 공통 */
/* popup */
.popups .modal_layer {
  display: table;
  width: 100%;
  height: 100%;
  table-layout: fixed;
}
.popups .inner_layer {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}
.popups .layer_body {
  position: relative;
  max-width: 330px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 20px;
  background: #fff;
  box-sizing: border-box;
}
.popups .area_apply {
  width: 100%;
}
.popups .area_apply .link_g {
  display: inline-block;
  width: 100%;
  padding: 18px 0 18px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  text-align: center;
  background: #000;
  box-sizing: border-box;
}
.popup-youtube {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
.popup-youtube.on {
  opacity: 1;
  transition: all 0.5s 0.8s;
  visibility: visible;
  z-index: 99;
}
.popup-youtube .modal-table {
  display: table;
  width: 100%;
  height: 100%;
  table-layout: fixed;
}
.popup-youtube .modal-cell {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}
.popup-youtube .iframe-wrap {
  display: inline-block;
  width: 100%;
  height: 80%;
}
.popup-youtube .modal-open {
  display: block;
  z-index: 1000;
}
.popup-youtube .btn-close-modal {
  position: fixed;
  top: 22px;
  right: 17px;
  color: transparent;
  font-size: 0;
  width: 36px;
  height: 36px;
  padding: 11px;
}
/** 바텀시트 - 팝업 **/
.popup-more.type-bottom .pop-content {
  position: absolute;
  left: 0;
  bottom: -500px;
  width: 100%;
  transition: bottom 0.7s;
}

.popup-more.type-bottom .pop-content-inner {
  margin: 0 auto;
  padding: 10px 18px 25px 17px;
  background: #fff;
  border-radius: 30px 30px 0 0;
  text-align: center;
}

.popup-more.type-bottom .btn-close {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 5px;
  border-radius: 20px;
  text-indent: -9999px;
  background-color: #eaecef;
}

.popup-more.type-bottom .clear {
  position: relative;
  margin: 0 23px 0 22px;
}

.popup-more.type-bottom .clear::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 30px;
  top: -30px;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}

.popup-more.type-bottom .btn-confirm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 15px;
  background: #000;
  padding: 16.5px 20px;
}

.popup-more.type-bottom.on {
  visibility: visible;
  opacity: 1;
}

.popup-more.type-bottom.on .pop-content {
  bottom: 0;
}

.popup-more.type-bottom .detail {
  text-align: left;
  padding: 34px 34px 0;
}
.popup-more.type-bottom .detail .title {
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-align: left;
  margin: 0 6px 24px;
}

.popup-more .ul-list {
  max-height: 238px;
  overflow: hidden;
  overflow-y: auto;
}

.popup-more .ul-list li {
  position: relative;
  color: #666;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 12px;
}

.popup-more .ul-list li:last-of-type {
  margin-bottom: 30px;
}

.inmotion {
  transform: translate(0, 50px);
  opacity: 0;
}
.play-inmotion.inmotion,
.play.inmotion {
  transform: translate(0, 0);
  opacity: 1;
  transition: transform 0.6s 0.1s, opacity 0.6s 0.1s;
  -webkit-transition: transform 0.6s 0.1s, opacity 0.6s 0.1s;
  -moz-transition: transform 0.6s 0.1s, opacity 0.6s 0.1s;
  -ms-transition: transform 0.6s 0.1s, opacity 0.6s 0.1s;
  -o-transition: transform 0.6s 0.1s, opacity 0.6s 0.1s;
}
.accordion-block .accordion-btn span:first-child {
  width: calc(100% - 22px);
  display: inline-block;
  word-break: keep-all;
}
/* 하단으로 이동 */
.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 47px;
  width: 18px;
  height: 9px;
  -webkit-animation: mouseloop 0.8s infinite alternate;
  animation: mouseloop 0.8s infinite alternate;
  /* z-index: 10; */
}
.scroll-down.scroll-ios {
  bottom: 48px;
}
@keyframes mouseloop {
  0% {
    transform: translateY(0) translateX(-50%);
    opacity: 0.85;
  }
  100% {
    transform: translateY(-8px) translateX(-50%);
    opacity: 1;
  }
}
@-webkit-keyframes mouseloop {
  0% {
    -webkit-transform: translateY(0) translateX(-50%);
    opacity: 0.85;
  }
  100% {
    -webkit-transform: translateY(-8px) translateX(-50%);
    opacity: 1;
  }
}

/* 컨텐츠 영역 */
.contents {
  background: var(--color-main-bg);
}
/* 컨텐츠 공통 */
.section .tit-box {
  text-align: center;
}
.section .tit-box span {
  color: var(--color-main);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.054px;
}
.section .tit-box p {
  margin-top: 20px;
  color: #000;
  font-size: 31px;
  font-style: normal;
  font-weight: 800;
  line-height: 130%;
}
/* section-top */
.section-top {
  background: #fff;
}
.section-top .inner {
  padding-top: 80px;
  padding-bottom: 110px;
  height: calc(var(--vh, 1vh) * 100);
}
.section-top .title-box {
  text-align: center;
  transform: translate(0, 0px);
  margin-bottom: 48px;
}
.section-top .title-box .title {
  font-size: 30px;
  font-weight: 800;
  line-height: 43px;
}
.section-top .title-box .title > span {
  color: var(--color-main);
}

.section-top .title-box .desc {
  color: #747474;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.054px;
  margin-top: 21px;
}

.section-top .visual-wrap {
  position: relative;
  display: none;
}

.section-top .visual-wrap.on {
  display: block;
}

.section-top .visual-wrap ul {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 414px);
}

.section-top .visual-wrap ul li {
  position: absolute;
  display: inline-flex;
  align-items: center;
  width: 216px;
  border-radius: 18px;
  background: #ebeef4;
  box-sizing: border-box;
  padding: 12px 24px;
  opacity: 0;
  visibility: hidden;
}

.section-top .visual-wrap ul li img {
  height: 100%;
}

.section-top .visual-wrap > div {
  position: absolute;
  display: flex;
  text-align: center;
  top: 0;
  width: 100%;
  justify-content: center;
  opacity: 0;
  margin-top: 20px;
}

.section-top .visual-wrap > div > div.bg-bar {
  position: absolute;
  content: '';
  height: 22px;
  background: #474747;
  border-radius: 18px;
  transform: translateY(calc(50vh - 242px));
  opacity: 0;
}

.section-top .visual-wrap div picture {
  position: relative;
  width: 162px;
  height: 0;
  background: url('https://og.kakaobank.io/view/a516d10d-b62f-46b2-926a-1e07bf2dccbc') 0 0 / cover no-repeat;
}

.section-top .visual-wrap div picture > span.bg-circle {
  position: absolute;
  content: '';
  top: 18px;
  left: 40px;
  width: 84px;
  height: 85px;
  background: url('https://og.kakaobank.io/view/e7605980-8d24-4a4c-adca-ea7d2d989122') 0 0 / cover no-repeat;
  opacity: 0;
}

.section-top .visual-wrap div picture svg {
  margin-bottom: 8px;
}

.section-top .visual-wrap div picture .icon-line1 {
  margin-top: 22px;
}

.section-top .visual-wrap div picture .icon-line path {
  stroke: #d7ddea;
  stroke-width: 16;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
}

.section-top .visual-wrap div picture .icon-check {
  width: 51px;
  height: 41px;
  opacity: 0;
  margin-top: 42px;
}

.section-top .visual-wrap div picture .icon-check path {
  stroke: white;
  stroke-width: 9;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
}

/* section1 */
.section1 {
  text-align: center;
  overflow: hidden;
  background: #fff;
}
.section1 .inner {
  padding-top: 25px;
  padding-bottom: 109px;
  overflow: visible;
}
.section1 .swiper,
.section1 .swiper-container {
  overflow: visible !important;
}
.section1 .swiper {
  margin-top: 48px;
  max-width: 326px;
}
.section1 .swiper .swiper-slide {
  max-width: 319px;
  width: 100%;
}
.section1 .swiper .swiper-slide .img {
  display: inline-block;
  max-width: 319px;
  width: 100%;
  padding-bottom: 20%;
  border-radius: 20px;
}
.section1 .swiper .swiper-slide .slide-box {
  position: relative;
  width: 100%;
  height: 388px;
  padding-top: 35px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 29px;
  text-align: center;
  border-radius: 40px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: var(--color-main);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 319px 388px;
}
.section1 .swiper .swiper-slide.item1 .slide-box {
  background-image: url(https://og.kakaobank.io/view/9910460f-0dc7-41ab-bcae-a136d715cb5a);
}
.section1 .swiper .swiper-slide.item2 .slide-box {
  background-image: url(https://og.kakaobank.io/view/e15d583b-a1ae-4c3c-859a-4ee5bcf79ab2);
}
.section1 .swiper .swiper-slide.item3 .slide-box {
  background-image: url(https://og.kakaobank.io/view/e88ef103-0b53-49af-bd8a-64b1076fadc7);
}
.section1 .swiper .swiper-slide.item4 .slide-box {
  background-image: url(https://og.kakaobank.io/view/3b2a5c98-c1b8-4762-b2e0-954dc5ca7533);
}
.section1 .swiper .swiper-pagination {
  --swiper-pagination-bullet-horizontal-gap: 3px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.4;
  --swiper-pagination-bullet-size: 9px;
  bottom: -36px;
}
.section1 .swiper .swiper-pagination .swiper-pagination-bullet {
  transition: all 0.3s ease-in-out;
}
.section1 .swiper .swiper-pagination .swiper-pagination-bullet-active {
  --swiper-pagination-bullet-width: 16px;
  --swiper-pagination-color: var(--color-main);
  border-radius: 39px;
}

/* section2 */
.section2 .inner {
  position: relative;
  padding-top: 78px;
  padding-bottom: 12px;
}
.section2 .inner span.period {
  color: #949494;
  display: block;
  margin-top: 19px;
}

.section2 .cashbag-list {
  margin-top: 47px;
}
.section2 .cashbag-list .list-item {
  margin: 0 auto;
  padding: 24px;
  width: 100%;
  /* max-width:323px; */
  height: 195px;
  border-radius: 20px;
  background: #fff;
  box-sizing: border-box;
}
.section2 .cashbag-list .list-item + .list-item {
  margin-top: 20px;
}
.section2 .cashbag-list .list-item div {
  position: relative;
  padding-left: 68px;
}
.section2 .cashbag-list .list-item div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
}
.section2 .cashbag-list .list-item.item1 div::before {
  background-image: url(https://og.kakaobank.io/view/b481a363-eb58-4156-a4ac-42fd988fc8e1);
}
.section2 .cashbag-list .list-item.item2 div::before {
  background-image: url(https://og.kakaobank.io/view/bbcb1c32-64b9-402b-8d25-48bf3a164808);
}
.section2 .cashbag-list .list-item div > strong {
  display: inline-block;
  margin-top: 2px;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}
.section2 .cashbag-list .list-item div > p {
  margin-top: 8px;
  color: #888;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}
.section2 .cashbag-list .list-item div > button {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
}

.section2 .cashbag-list .list-item .btn-cash {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  height: 50px;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  border-radius: 11px;
  color: #fff;
  background: var(--color-main);
}
.section2 .cashbag-list .list-item .btn-cash.disabled {
  color: #fff;
  background: #aaa;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767.98px) {
}
@media screen and (max-width: 360.98px) {
  .section:not(#eventInfo) .inner {
    padding-right: 20px;
    padding-left: 20px;
  }
  .section-top .btn-event {
    max-width: calc(100% - 32px);
  }
  .section2 .cashbag-list .list-item {
    padding-right: 18px;
    padding-left: 18px;
  }
  .section2 .cashbag-list .list-item div::before {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }
  .section2 .cashbag-list .list-item div {
    padding-left: 57px;
  }
  .section2 .cashbag-list .list-item div > p {
    font-size: 14px;
  }
}
