* {
  color: var(--text-color);
  box-sizing: border-box;
  /*
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  */
  -webkit-tap-highlight-color : transparent;
}
html {
  scroll-behavior : smooth;
}
body {
  font-family: "Pretendard", "Open Sans";
  font-weight: 400;
  font-size: 100%;
  color: #333;
  position: relative;
}
main {
  height: auto;
  min-height: calc(100% - 150px);
}
.wrap {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
.bg-wrap.lb {
  background-color: #F6F8FF;
}
.bg-wrap.gray {
  background-color: var(--bg-color);
}
.bg-wrap.kakao {
  background-color: var(--kakao-color);
}
/*floating 버튼*/
.floating {
  background-color: transparent;
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 3;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.floating .box {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 50px;
  box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.1);
}
.floating .box:hover {
  background-color: #eeeeee;
}
.floating .box .img-box {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 5px 3px rgba(0, 0, 0, 0.1);
  margin-left: 0px;
}
.floating .box .img-box.kakao {
  background-color: var(--kakao-color);
}
.floating .box .img-box.mc {
  background-color: var(--main-color);
}
.floating .box .img-box img {
  height: 25px;
}
.floating .box .text-box {
  padding: 0 15px;
}
.floating .box .text-box p:first-child {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.floating .box .text-box p:nth-child(2) {
  font-weight: 300;
}
.floating .box .text-box p:nth-child(2) b {
  font-weight: 600;
}
/*top 버튼*/
.btn_gotop {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f58220;
  position: fixed;
  right: 23px;
  bottom: 20px;
  box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  z-index: 3;
  cursor: pointer;
}
.btn_gotop img {
  width: 25px;
}
/*섹션 이동 버튼*/
/*사이드 스크롤 버튼*/
.arrow-wrap {
  width: auto;
  height: auto;
  position: fixed;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 3;
}
.arrow-wrap button {
  display: block;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.arrow-wrap button img {
  width: 60px;
}
/*헤더*/
.header-wrap {
  width: 100%;
  height: 70px;
  line-height: 70px;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  background-color: transparent;
  text-align: center;
  z-index: 3;
}
.header-logo img {
    width: 150px;
    margin-top: 20px;
}
.header-wrap span {
  font-weight: 700;
}
/*풋터*/
.footer-wrap {
  width: 100%;
  background-color: #333;
  padding: 30px 20px;
  min-height: 150px;
}
.footer-wrap .box {
  text-align: center;
}
.footer-wrap .box .logo  {
  margin-bottom: 25px;
}
.footer-wrap .box .logo img {
  width: 150px;
}
.footer-wrap .box .info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 10px;
}
.footer-wrap .box .info div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #bbb;
  font-size: 14px;
  font-weight: 300;
}
.footer-wrap .box .info span {
  font-weight: 600;
}
.footer-wrap .box .copy {
  font-size: 14px;
  font-weight: 300;
  color: #bbb;
}
.footer-wrap .box .copy span {
  font-weight: 600;
}
.mobile-footer {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 3;
  background-color: white;
  width: 100%;
  display: none !important;
  box-shadow: 0 -5px 10px 5px rgba(0, 0, 0, 0.1);
}
.mobile-footer .box {
  display: flex;
  align-items: center;
  height: 50px;
}
.mobile-footer .box a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100%;
  gap: 15px;
}
.mobile-footer .box a.kakao {
  background-color: var(--kakao-color);
}
.mobile-footer .box a.mc {
  background-color: var(--main-color);
}
.mobile-footer .box .img-box img {
  height: 20px;
}
.mobile-footer .box .text-box p:first-child {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.mobile-footer .box .text-box p:nth-child(2) {
  font-weight: 300;
  font-size: 14px;
}
.mobile-footer .box .text-box p:nth-child(2) b {
  font-weight: 600;
}
.mobile-footer .box .text-box.wc p {
  color: white;
}
/*메인*/
.scroll-downs {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-downs p {
  font-size: 12px;
  color: rgba(255, 255, 255, 1);
}
.mousey {
  width: 2px;
  padding: 5px 9px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 1);
  border-radius: 10px;
  opacity: 0.75;
  box-sizing: content-box;
  margin: 0 auto 15px;
}
.scroller {
  width: 2px;
  height: 7px;
  border-radius: 25%;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(.15,.41,.69,1);
  animation-iteration-count: infinite;
}
@keyframes scroll {
  0% { opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0;}
}
.banner-box {
  width: 100%;
  height: 100vh;
  position: relative;
}
.banner-box .bg-box {
  position: absolute;
  top: 0;
  left: 0;
background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url(../images/common/banner_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.banner-box .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.banner-box .wrap .content {
  display: flex;
  align-items: center;
  gap: 30px;
}
.banner-box .content .box {
  width: 50%;
}
.banner-box .content .mobile {
  max-width: 100%;
  object-fit: cover;
}
.banner-box .content .big-tit {
  font-size: 50px;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  word-break: keep-all;
  margin-bottom: 70px;
}
.banner-box .content .sml-tit {
  font-size: 28px;
  font-weight: 300;
  color: white;
  line-height: 1.5;
  word-break: keep-all;
  margin-bottom: 50px;
}
.banner-box .content .link {
  display: flex;
  align-items: center;
  gap: 30px;
}
.banner-box .link a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 5px;
  min-width: 200px;
  height: 55px;
}
.banner-box .link a.kakao {
  background-color: var(--kakao-color);
}
.banner-box .link a.wc {
  background-color: white;
}
.banner-box .link .img-box img {
  height: 25px;
}
.banner-box .link .text-box p:first-child {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}
.banner-box .link .text-box p:nth-child(2) {
  font-weight: 300;
}
.banner-box .link .text-box p:nth-child(2) b {
  font-weight: 600;
}
.basic-box {
  padding: 150px 0;
  display: flex;
  align-items: center;
  gap: 30px;
}
.basic-box.pn {
  padding: 0;
}
.basic-box .box {
  width: 50%;
}
.basic-box .box .big-tit {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 70px;
  word-break: keep-all;
}
.basic-box .box .big-tit span {
  display: inline-block;
  position: relative;
}
.basic-box .box .big-tit span::after {
  content:"";
  width: 100%;
  height: 45%;
  display: inline-block;
  background: var(--main-color);
  opacity: 0.5;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.basic-box .box .big-tit span.kakao::after {
  content:"";
  width: 100%;
  height: 45%;
  display: inline-block;
  background: var(--kakao-color);
  opacity: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.basic-box .box .sml-tit {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5;
  word-break: keep-all;
}
.basic-box .box .sml-tit span {
  font-weight: 600;
}
.basic-box .box .sml-tit span b {
  color: var(--kakao-color);
}
.basic-box .box img {
  max-width: 100%;
  object-fit: cover;
}
.lr-box {
  padding: 150px 0;
}
.lr-box .main-tit {
  width: 100%;
  text-align: center;
  font-size: 50px;
}
.lr-box .main-tit span {
  display: inline-block;
  position: relative;
  line-height: 1.2;
  word-break: keep-all;
}
.lr-box .main-tit span b {
  font-weight: 600;
}
.lr-box .main-tit span:after {
  content: "";
  display: block;
  width: 60px;
  border-bottom: 2px solid #333;
  margin: 30px auto 70px;
}
.lr-box .main-tit span.kakao:after {
  content: "";
  display: block;
  width: 60px;
  border-bottom: 2px solid #333;
  margin: 50px auto 30px;
}
.lr-box .adv-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
}
.adv-box .item {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  background-color: white;
  box-shadow: 20px 20px 30px 10px rgba(0, 0, 0, 0.1);
}
.adv-box .item.reverse {
  flex-direction: row-reverse;
}
.adv-box .item .img-box {
  min-width: 350px;
  width: 350px;
  height: 100%;
  filter: brightness(0.7);
  overflow: hidden;
}
.adv-box .item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.adv-box .item .box {
  padding: 30px;
  display: flex;
  gap: 25px;
  flex-direction: column;
}
.adv-box .item.reverse .box {
  padding: 30px;
  display: flex;
  gap: 25px;
  flex-direction: column;
  align-items: end;
}
.adv-box .item .tit {
  position: relative;
}
.adv-box .item .tit span {
  font-size: 32px;
  font-weight: 600;
  display: inline-block;
  position: relative;
  word-break: keep-all;
  line-height: 1.2;
  z-index: 0;
}
.adv-box .item .tit span::after {
  content:"";
  width: 100%;
  height: 45%;
  display: inline-block;
  background: var(--main-color);
  opacity: 0.5;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.adv-box .item .content {
  font-size: 22px;
  line-height: 1.5;
  word-break: keep-all;
}
.adv-box .item.reverse .content {
  font-size: 22px;
  line-height: 1.5;
  word-break: keep-all;
  text-align: right;
}
.lr-box .bot-tit {
  text-align: center;
}
.lr-box .bot-tit span {
  display: inline-block;
  position: relative;
  text-align: center;
}
.lr-box .bot-tit span:before {
  content: "";
  display: block;
  width: 60px;
  border-bottom: 2px solid #333;
  margin: 100px auto 50px;
}
.lr-box .bot-tit span p:first-child {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  word-break: keep-all;
}
.lr-box .bot-tit span p:nth-child(2) {
  line-height: 1.5;
  word-break: keep-all;
}
/*진행 현황*/
.live-wrap .th {
  display: flex;
  width: 100%;
  background-color: var(--main-color);
  border-radius: 10px;
  height: 75px;
  line-height: 75px;
}
.live-wrap .th li {
  width: calc(100% / 7);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: white;
}
.live {
  width: 100%;
  overflow: hidden;
  margin-top: 7px;
  pointer-events: none;
}
.live .box {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: white;
  height: 50px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.05);
  margin: 7px 0;
}
.live .box span {
  width: calc(100% / 7);
  font-size: 16px;
  color: #999;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}
.live .box span.type {
  font-weight: 600;
  color: #333;
}
.live .box img {
  width: 110px;
}
.live .box .ing {
  color: #333;
  font-weight: 500;
}
.live .box .result {
  display: inline-block;
  background-color: var(--main-color);
  color: white;
  font-size: 14px;
  border-radius: 6px;
  padding: 6px 20px;
}
.live .box .result.dis {
  background-color: var(--red-color);
}

.mobile-live {
    width: 100%;
    overflow: hidden;
    margin-top: 7px;
    pointer-events: none;
    display: none;
  }
  .mobile-live .box {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: white;
    height: 50px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.05);
    margin: 7px 0;
  }
  .mobile-live .box span {
    width: calc(100% / 7);
    font-size: 16px;
    color: #999;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-live .box span.type {
    font-weight: 600;
    color: #333;
  }
  .mobile-live .box img {
    width: 110px;
  }
  .mobile-live .box .ing {
    color: #333;
    font-weight: 500;
  }
  .mobile-live .box .result {
    display: inline-block;
    background-color: var(--main-color);
    color: white;
    font-size: 11px;
    border-radius: 3px;
    padding: 3px 5px;
  }
  .mobile-live .box .result.dis {
    background-color: var(--red-color);
  }
.num-copy {
  background-color: var(--main-color);
  color: white;
  font-weight: 600;
  display: inline-block;
  padding: 0 15px;
  height: 55px;
  line-height: 55px;
  border-radius: 5px;
  margin-top: 20px;
}
.sml-banner {
  width: 100%;
  display: flex;
  align-items: center;
  background-image: url('../images/common/main_met.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
}
.sml-banner .bg {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
.sml-banner .wrap {
  z-index: 2 !important;
}
.sml-banner .knowhow-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 0;
}
.sml-banner .knowhow-box .item {
  text-align: center;
}
.sml-banner .knowhow-box .item img {
  width: 150px;
  object-fit: cover;
  margin-bottom: 100px;
}
.sml-banner .knowhow-box .big-tit {
  text-align: center;
  width: 70%;
  font-size: 50px;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  word-break: keep-all;
  margin: 0 auto 70px;
}
.sml-banner .knowhow-box .bot-tit {
  text-align: center;
  color: white;
  margin-bottom: 10px;
  word-break: keep-all;
}
.sml-banner .knowhow-box .bot-tit span {
  display: inline-block;
  position: relative;
  text-align: center;
}
.sml-banner .knowhow-box .bot-tit span:before {
  content: "";
  display: block;
  width: 60px;
  border-bottom: 2px solid white;
  margin: 100px auto 50px;
}
.sml-banner .knowhow-box .sml-tit {
  color: white;
  word-break: keep-all;
}
.faq {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}
.faq li {
  width: calc(50% - 25px);
  background-color: white;
  box-shadow: 10px 10px 20px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 50px;
  padding: 30px;
}
.faq li .num {
  font-size: 40px;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 20px;
  line-height: 1.2;
}
.faq li .tit {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 10px;
  word-break: keep-all;
}
.faq li .content {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  min-height: 100px;
}
.gift-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gift-box li {
  padding: 30px 10px;
  text-align: center;
  width: 100%;
  background-color: white;
  border-radius: 10px;
  box-shadow: 5px 5px 10px 3px rgba(0, 0, 0, 0.1);
}
.gift-box li img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.gift-box li span {
  display: block;
  margin-top: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}
