@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap");
@font-face {
  font-family: "SamsungOneKorean";
  src: url(../font/SamsungOneKorean-400.woff);
  font-weight: 400;
}
@font-face {
  font-family: "SamsungOneKorean";
  src: url(../font/SamsungOneKorean-500.woff);
  font-weight: 500;
}
@font-face {
  font-family: "SamsungOneKorean";
  src: url(../font/SamsungOneKorean-600.woff);
  font-weight: 600;
}
@font-face {
  font-family: "SamsungOneKorean";
  src: url(../font/SamsungOneKorean-700.woff);
  font-weight: 700;
}
@font-face {
  font-family: "Roboto";
  src: url(../font/SECRobotoLight-Regular.ttf);
  font-weight: 300;
}
@font-face {
  font-family: "Roboto";
  src: url(../font/SECRobotoLight-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Roboto";
  src: url(../font/SECRobotoLight-Bold.ttf);
  font-weight: 600;
}
@font-face {
  font-family: "GmarketSansL";
  src: url(../font/GmarketSansTTFLight.ttf);
  font-weight: 300;
}
@font-face {
  font-family: "GmarketSansB";
  src: url(../font/GmarketSansTTFBold.ttf);
  font-weight: 600;
}
@font-face {
  font-family: "GmarketSansM";
  src: url(../font/GmarketSansTTFMedium.ttf);
  font-weight: 400;
}
body, p, h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd, table, form, fieldset, legend, input, textarea, button, select, div {
  font-family: "Roboto", "dotum", sans-serif;
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: keep-all;
  word-wrap: break-word;
}

td, th {
  margin: 0;
  padding: 0;
  word-break: keep-all;
  word-wrap: break-word;
}

body, input, textarea, select, button, table, th, td, pre {
  color: #000;
  font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  line-height: 1.2;
}

img, fieldset, iframe {
  border: 0;
  vertical-align: top;
}

textarea {
  resize: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul:after, ol:after {
  content: "";
  display: block;
  clear: both;
}

em, address {
  font-style: normal;
}

input, select {
  vertical-align: middle;
}

table {
  width: 100%;
  border-collapse: separate;
  empty-cells: show;
  border-spacing: 0;
}

hr, legend {
  display: none;
}

caption {
  overflow: hidden;
  position: static;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
}

strong, b {
  font-weight: 500;
}

button {
  box-sizing: border-box;
  border: none;
  background: none;
}

label {
  cursor: pointer;
}

img {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a {
  box-sizing: border-box;
}

a, button {
  cursor: pointer;
}

[tabindex="-1"] {
  outline: 0;
}

[tabindex="0"]:focus {
  outline: 1px dashed #e0e0e0;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.hidden {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px !important;
  clip: rect(0 0 0 0);
  opacity: 0;
}

#skip_content a {
  overflow: hidden;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  background: #000;
  color: #fff;
  text-align: center;
}

#skip_content a:focus {
  position: relative;
  width: 100%;
  height: auto;
  padding: 10px;
}

/* @mixin desktop {
  @media only screen and (min-width:1920px) {
    @content;
  }
} */
body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes shake-x {
  0% {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
  }
  50% {
    transform: translateX(-10%);
    -webkit-transform: translateX(-10%);
  }
  100% {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
  }
}
@keyframes size {
  0% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
  }
  50% {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
  }
  100% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
  }
}
@keyframes shake-y {
  0% {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
  }
  50% {
    transform: translateY(-20%);
    -webkit-transform: translateY(-20%);
  }
  100% {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
  }
}
@keyframes shake-y2 {
  0% {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
  }
  50% {
    transform: translateY(-5%);
    -webkit-transform: translateY(-5%);
  }
  100% {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
  }
}
@keyframes shake-y3 {
  0% {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
  }
  25% {
    transform: translateY(-5%);
    -webkit-transform: translateY(-5%);
  }
  50% {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
  }
  75% {
    transform: translateY(5%);
    -webkit-transform: translateY(5%);
  }
  100% {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
  }
  10% {
    transform: translateY(-15%);
    -webkit-transform: translateY(-15%);
  }
  20% {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
  }
  30% {
    transform: translateY(-7%);
    -webkit-transform: translateY(-7%);
  }
  40% {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
  }
  50% {
    transform: translateY(-3%);
    -webkit-transform: translateY(-3%);
  }
  70% {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
  }
  80% {
    transform: translateY(-15%);
    -webkit-transform: translateY(-15%);
  }
  90% {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
  }
  95% {
    transform: translateY(-7%);
    -webkit-transform: translateY(-7%);
  }
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
}
@keyframes bounce2 {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
.mobile {
  display: none !important;
}

body {
  background: #fff;
}

.container {
  max-width: 720px;
  margin: 0 auto;
}

section .cont00 .btnArea {
  background-color: #000;
}
section .cont00 .btnArea .btn {
  display: block;
  width: 87%;
  margin: 0 auto;
}

/* mobile */
@media only screen and (max-width: 720px) {
  .pc {
    display: none !important;
  }
  .mobile {
    display: block !important;
  }
  .container {
    width: 100%;
    max-width: 100%;
  }
  .btnArea .btn {
    width: 87.037037037vw;
  }
}
.fw {
  flex-wrap: wrap;
}

.popup {
  display: none;
  position: absolute;
  z-index: 11;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
.popup.on {
  display: block;
}
.popup .cont {
  /* position: relative; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  background: url(../images/event/bg2.jpg);
  box-shadow: 35px 36px 21px -7px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 35px 36px 21px -7px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 35px 36px 21px -7px rgba(0, 0, 0, 0.1);
}
.popup .cont input[type=text] {
  display: block;
  width: 100%;
  height: 80px;
  padding: 0 25px;
  font-size: 24px;
  border: 2px solid #e6e6e6;
  border-radius: 10px;
}
.popup .cont input[type=text]::placeholder {
  font-family: "NotoSans";
  font-size: 24px;
  color: #bdbdbd;
}
.popup .cont input[type=checkbox] {
  position: relative;
  display: block;
  width: 1px;
  height: 1px;
  cursor: pointer;
}
.popup .cont input[type=checkbox]::after {
  content: "";
  position: absolute;
  display: block;
  top: -1px;
  left: 0;
  width: 29px;
  height: 29px;
  background-image: url(../images/popup/check.png);
  background-size: cover;
}
.popup .cont input[type=checkbox]:checked::after {
  background-image: url(../images/popup/checked.png);
}
.popup .cont input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  padding-left: 45px;
  top: 3px;
  font-size: 24px;
  color: #4f4f4f;
}
.popup .cont input[type=radio] {
  position: relative;
  display: block;
  top: 50%;
  width: 1px;
  height: 1px;
  cursor: pointer;
  opacity: 0;
  /*   &::after {content: '';position: absolute;display: block;top: -1px;left: 0;@include vw-convert-desktop(width, 37px);@include vw-convert-desktop(height, 38px);background-image: url(../images/popup/radio.png);background-size: cover; background-color: #fff;}
    &:checked::after {background-image: url(../images/popup/radio_checked.png);}
    &+label {display: inline-block;@include vw-convert-desktop(padding-left, 40px);@include vw-convert-desktop(padding-top, 3px);@include vw-convert-desktop(font-size, 25px); color: #4f4f4f;} */
}
.popup .cont input[type=radio] + label {
  display: block;
  width: 100%;
  height: 100%;
}
.popup .cont .close {
  position: absolute;
  width: 53px;
  height: 51px;
  right: 30px;
  top: 30px;
  cursor: pointer;
}
.popup .cont .titleArea {
  background: url(../images/event/bg1.jpg);
}
.popup .cont .titleArea .titleResult {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 45px 0;
  text-align: center;
}
.popup .cont .titleArea .titleResult::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -25px;
  left: 83px;
  width: 65px;
  height: 66px;
  background: url(../images/event/obj.png) center/cover;
}
.popup .cont .titleArea .titleResult .tit {
  width: 270px;
  margin: 0 auto;
}
.popup .cont .desc {
  padding: 45px 40px;
  border-radius: 20px;
  text-align: center;
  position: relative;
}
.popup .cont .desc > p {
  font-size: 30px;
  color: #fff;
}
.popup .cont .desc > p:nth-of-type(1) {
  margin-bottom: 10px;
}
.popup .cont .desc > p:nth-of-type(2) {
  font-size: 20px;
  margin-bottom: 35px;
  opacity: 0.6;
  letter-spacing: -1px;
}
.popup .cont .desc .contArea {
  padding: 20px 0; /* height: 35vh;overflow-y: auto; */
  border-radius: 20px;
  background: #fff;
}
.popup .cont .desc .contArea::-webkit-scrollbar {
  background-color: #e5e5e5;
  width: 24px;
  border-radius: 50px;
}
.popup .cont .desc .contArea::-webkit-scrollbar-thumb {
  background-color: #4334d8;
  border-radius: 50px;
}
.popup .cont .desc .contArea::-webkit-scrollbar-track {
  background-color: #e5e5e5;
  border-radius: 50px;
}
.popup .cont .desc .resultArea {
  padding: 0 35px;
  text-align: left;
}
.popup .cont .desc .resultArea .prize {
  padding: 20px 0;
  padding-left: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #b5b5b5;
}
.popup .cont .desc .resultArea .prize:last-child {
  border-bottom: 0;
}
.popup .cont .desc .resultArea .prize:nth-of-type(2) {
  padding-bottom: 0;
}
.popup .cont .desc .resultArea .prize:nth-of-type(2) .winner {
  padding-top: 10px;
}
.popup .cont .desc .resultArea .prize .img {
  margin-right: 50px;
}
.popup .cont .desc .resultArea .prize .img img {
  display: block;
  width: 161px;
}
.popup .cont .desc .resultArea .prize .winner > strong {
  font-size: 36px;
  font-weight: 700;
  color: #6542b8;
  letter-spacing: -4px;
}
.popup .cont .desc .resultArea .prize .winner > strong span {
  letter-spacing: 0;
}
.popup .cont .desc .resultArea .prize .winner .winList {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}
.popup .cont .desc .resultArea .prize .winner .winList:nth-last-of-type(1) {
  border: 0;
}
.popup .cont .desc .resultArea .prize .winner .winList li {
  font-size: 28px;
  color: #171717;
  font-weight: 500;
}
.popup .cont .desc .resultArea .prize .winner .winList li span {
  letter-spacing: 1px;
}
.popup .cont .desc .resultArea .prize .winner .winList li span:nth-of-type(1) {
  display: inline-block;
  width: 80px;
}
.popup .cont .btnArea {
  margin-top: 20px;
  padding: 0 20px;
}
.popup .cont .btnArea button {
  display: block;
  width: 100%;
}
.popup.pop02 .desc {
  height: 60vh;
}
.popup.popQuiz .desc {
  height: 43vh;
  padding: 0 !important;
}

@media only screen and (max-width: 720px) {
  .popup .cont {
    width: 64.8148148148vw;
  }
  .popup .cont input[type=text] {
    height: 7.4074074074vw;
    padding: 0vw 2.3148148148vw;
    font-size: 2.2222222222vw;
    border-radius: 0.9259259259vw;
  }
  .popup .cont input[type=text]::placeholder {
    font-size: 2.2222222222vw;
  }
  @supports (-webkit-touch-callout: none) {
    .popup .cont input[type=checkbox] {
      position: relative;
      top: 0.6481481481vw;
    }
  }
  .popup .cont input[type=checkbox]::after {
    width: 2.6851851852vw;
    height: 2.6851851852vw;
  }
  .popup .cont input[type=checkbox] + label {
    padding-left: 4.1666666667vw;
    top: -0.2777777778vw;
    height: 2.7777777778vw;
    font-size: 2.2222222222vw;
  }
  .popup .cont .close {
    top: 2.7777777778vw;
    right: 2.7777777778vw;
    width: 4.9074074074vw;
    height: 4.7222222222vw;
  }
  .popup .cont .titleArea .titleResult {
    padding: 4.1666666667vw 0vw;
  }
  .popup .cont .titleArea .titleResult::after {
    bottom: -2.3148148148vw;
    left: 7.6851851852vw;
    width: 6.0185185185vw;
    height: 6.1111111111vw;
  }
  .popup .cont .titleArea .titleResult .tit {
    width: 25vw;
  }
  .popup .cont .desc {
    padding: 4.1666666667vw 3.7037037037vw;
    border-radius: 1.8518518519vw;
  }
  .popup .cont .desc > p {
    margin-bottom: 4.1666666667vw;
    font-size: 2.7777777778vw;
  }
  .popup .cont .desc > p:nth-of-type(1) {
    margin-bottom: 0.9259259259vw;
  }
  .popup .cont .desc > p:nth-of-type(2) {
    font-size: 1.8518518519vw;
    margin-bottom: 3.2407407407vw;
    letter-spacing: -0.0925925926vw;
  }
  .popup .cont .desc .contArea {
    padding: 1.8518518519vw 0vw;
    border-radius: 1.8518518519vw;
  }
  .popup .cont .desc .contArea::-webkit-scrollbar {
    width: 2.2222222222vw;
    border-radius: 4.6296296296vw;
  }
  .popup .cont .desc .contArea::-webkit-scrollbar-thumb {
    border-radius: 4.6296296296vw;
  }
  .popup .cont .desc .contArea::-webkit-scrollbar-track {
    border-radius: 4.6296296296vw;
  }
  .popup .cont .desc .resultArea {
    padding: 0vw 2.3148148148vw;
  }
  .popup .cont .desc .resultArea .prize {
    padding-left: 3.2407407407vw;
  }
  .popup .cont .desc .resultArea .prize:nth-of-type(2) {
    padding-bottom: 0;
  }
  .popup .cont .desc .resultArea .prize:nth-of-type(2) .winner {
    padding-top: 0.9259259259vw;
  }
  .popup .cont .desc .resultArea .prize .img {
    margin-right: 4.6296296296vw;
  }
  .popup .cont .desc .resultArea .prize .img img {
    width: 14.9074074074vw;
  }
  .popup .cont .desc .resultArea .prize .winner > strong {
    font-size: 3.3333333333vw;
    letter-spacing: -0.3703703704vw;
  }
  .popup .cont .desc .resultArea .prize .winner .winList {
    margin: 1.8518518519vw 0vw;
  }
  .popup .cont .desc .resultArea .prize .winner .winList li {
    font-size: 2.5925925926vw;
  }
  .popup .cont .desc .resultArea .prize .winner .winList li span {
    letter-spacing: 0.0925925926vw;
  }
  .popup .cont .desc .resultArea .prize .winner .winList li span:nth-of-type(1) {
    width: 7.4074074074vw;
  }
  .popup .cont .btnArea {
    margin-top: 1.8518518519vw;
    padding: 0vw 1.8518518519vw;
  }
}

/*# sourceMappingURL=style.css.map */
