:root {
  --main-color: #0046FF;
  --sub-color: #6e90f0;
  --bg-color: #F3F3F3;
  --black-bg-color: #222222;
  --sub-txt-color: #555555;
  --point-txt-color: #333;
  --border-color: #D9D9D9;
}
* {
  box-sizing: border-box;
  /*
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  */
  -webkit-tap-highlight-color : transparent;
}
*::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
*::-webkit-scrollbar-thumb {
  height: 10%;
  background: #999;
  border-radius: 10px;
}
*::-webkit-scrollbar-track {
  background: rgba(33, 122, 244, .1);
}
html {
  scroll-behavior : smooth;
}
body {
  font-family: "Pretendard", "Open Sans";
  position: relative;
}


/*메인팝업*/
/*
.popup-area {
    display: none !important;
}
*/
.popup-area {
    z-index: 999;
    width: 100%;
    max-width: 400px;
    position: fixed;
    top: 50px;
}
.popup-area .img-box {
  background-color: #fff;
}
.popup-area .img-box {
    display: block;
}
.popup-area .img-box img {
    vertical-align: bottom;
}
.popup-area .pop-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #111;
  font-weight: 400;
  padding: 12px 16px 16px;
}
.popup-area .pop-btn label {
  display: flex;
  align-items: center;
  column-gap: 5px;
  cursor: pointer;
}
.popup-area .pop-btn label input {
  margin: 0;
  width: 15px;
  height: 15px;
  margin-top: 2px;
}
.popup-area .pop-btn label span {
  display: inline-block;
  color: #999;
  font-size: 14px;
}
.popup-area .pop-btn button {
  font-size: 14px;
  color: #fff;
}



/*공통*/
body {
  background-color: #fff;
}
.wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.btn {
  border: 1px solid #000;
  border-radius: 12px;
  padding: 12px 0;
  font-size: 20px;
  font-weight: 600;
  width: 170px;
  position: relative;
  overflow: hidden;
  transition: .2s ease-in-out;
}
.btn:hover {
  color: #fff;
  transition: .2s ease-in-out;
  border: 1px solid var(--main-color);
}
.btn.slide::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  background-color: var(--main-color);
  width: 0;
  height: 100%;
  transition: .2s ease-in-out;
}
.btn.slide:hover::before {
  width: 170px;
  transition: .2s ease-in-out;
}
.sub-btn {
  border: 1px solid var(--sub-color);
  border-radius: 12px;
  font-size: 20px;
  font-weight: 600;
  width: 100%;
  height: 80px;
  line-height: 80px;
  position: relative;
  overflow: hidden;
  transition: .2s ease-in-out;
  color: #fff;
}
.sub-btn.slide::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  background-color: var(--sub-color);
  width: 0;
  height: 100%;
  transition: .2s ease-in-out;
}
.sub-btn.slide:hover::before {
  width: 100%;
  transition: .2s ease-in-out;
}


.top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
  background-color: #000;
  cursor: pointer;
  z-index: 98;
}
.top-btn img {
  width: 20px;
  height: 20px;
}


/*footer*/
footer {
  background-color: #0E0E0E;
  padding: 80px 16px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-top: 100px;
  line-height: 1.3;
}


/*페이지*/
.tit-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 80px 0 48px;
}
.tit-area .sm-tit {
  font-family: 'ONE-Mobile-Title';
  font-size: 64px;
  color: var(--main-color);
  display: flex;
  align-items: center;
  gap: 24px;
}
.tit-area .sm-tit::before,
.tit-area .sm-tit::after {
  content: "";
  background-color: var(--border-color);
  width: 100px;
  height: 2px;
  font-size: 0px;
  line-height: 0px;
}
.tit-area > img {
  max-width: 750px;
}
.tit-area .expl {
  display: block;
  border: 1px solid var(--main-color);
  border-radius: 100px;
  padding: 24px 36px;
  font-size: 22px;
  font-weight: 600;
}
.tit-area .expl b {
  font-weight: 700;
  color: var(--main-color);
}
.point-grid {
  padding-bottom: 100px;
}
.point-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.point-grid .item {
  width: 100%;
  min-height: 450px;
  border-radius: 12px;
  overflow: hidden;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.point-grid .item .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.point-grid .item .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.point-grid .item:first-child {
  background: linear-gradient(to bottom, #F0F4FF 0%, #C2D9FD 100%);
}
.point-grid .item:nth-child(2) {
  background: linear-gradient(to bottom, #F2FAF7 0%, #BEF0D3 100%);
}
.point-grid .item:nth-child(3) {
  background: linear-gradient(to bottom, #F0FEFF 0%, #DDF0FD 100%);
}
.point-grid .item:last-child {
  background: linear-gradient(to bottom, #F1EEFC 0%, #D7D1F0 100%);
}
.point-grid .item .box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.point-grid .item .box .tit {
  font-family: 'ONE-Mobile-Title';
  font-size: 40px;
  line-height: 1.3;
  word-break: keep-all;
}
.point-grid .item .box .tit b {
  color: var(--main-color);
}
.point-grid .item .box .content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--sub-txt-color);
}
.point-grid .item .box .content p {
  display: flex;
  align-items: center;
  gap: 8px;
  word-break: keep-all;
}
.point-grid .item .box .content p > img {
  width: 24px;
  height: 24px;
}
.point-grid .item .box .content .gc-txt {
  color: var(--point-txt-color);;
  text-decoration: line-through;
  font-weight: 700;
}
.point-grid .item .box .content p b {
  font-size: 28px;
  font-weight: 700;
  color: var(--main-color);
}
.point-grid .item > button {
  z-index: 1;
}


.pay-slider {
  width: 100%;
  margin-bottom: 80px;
  border-radius: 30px;
  overflow: hidden;
}
.pay-slider .item {
  background-color: #0E0E0E;
  padding: 80px;
}
.pay-slider .item .date {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.pay-slider .item .date img {
  height: 40px;
}
.pay-slider .item .content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 36px;
  gap: 48px;
}
.pay-slider .item .content span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}
.pay-slider .item .content span img {
  width: 50px;
  height: 50px;
}
.pay-slider .item .content span b {
  font-size: 58px;
  color: var(--main-color);
}

.support-area {
  background-color: rgba(0, 0, 0, 1);
  background-image: url('../images/common/support_bg_3.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 80px 0;
  margin-bottom: 100px;
}
.support-area.unset {
  background-color: unset;
  background-image: unset;
  padding: 0;
  margin-bottom: 0;
  width: 100%;
  max-width: 380px;
}
.support-area .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 1000px;
}
.support-area.unset .wrap {
  background-color: #fff;
  max-width: 380px;
  padding: 36px 24px;
  border-right: 1px solid var(--main-color);
}
.support-area .welcome {
  border: 1px solid var(--sub-color);
  border-radius: 100px;
  font-family: 'ONE-Mobile-Title';
  font-size: 22px;
  color: #fff;
  padding: 24px 36px;
}
.support-area.unset .welcome {
  font-size: 16px;
  padding: 12px 24px;
  color: #000;
}
.support-area .tit {
  font-family: 'ONE-Mobile-Title';
  font-size: 58px;
  text-align: center;
  line-height: 1.6;
  color: var(--main-color);
  text-shadow: -2px 0 #a1b6f0, 0 2px #a1b6f0, 2px 0 #a1b6f0, 0 -2px #a1b6f0;
}
.support-area.unset .tit {
  font-family: 'ONE-Mobile-Title';
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
  text-shadow: unset;
}
.support-area .tit span {
  display: inline-block;
  position: relative;
  font-size: 88px;
}
.support-area.unset .tit span {
    font-size: 24px;
}
.support-area .tit span::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #fff;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}
.support-area.unset .tit span::before {
  background-color: var(--sub-color);
}
.support-area.unset .tit span::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  top: -1px;
}
.support-area.unset .sub-tit {
  font-size: 18px;
  font-weight: 500;
  color: var(--sub-txt-color);
  line-height: 1.3;
  word-break: keep-all;
  text-align: center;
}
.support-area .input-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
  border: 1px solid var(--sub-color);
  border-radius: 30px;
  padding: 80px;
}
.support-area.unset .input-form {
  width: 100%;
  gap: 24px;
  padding: 0;
  border: none;
  margin-top: 24px;
}
.support-area .input-form form {
  width: 100%;
}
.support-area .input-form .item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.support-area .input-form .item > p {
  font-family: 'ONE-Mobile-Title';
  font-size: 22px;
  color: var(--sub-color);
}
.support-area.unset .input-form .item > p {
  font-size: 16px;
}
.support-area .input-form .item input {
  border: none;
  border-bottom: 1px solid var(--sub-color);
  padding: 24px 0;
  background-color: transparent;
  font-size: 22px;
  color: #fff;
}
.support-area.unset .input-form .item input {
  padding: 12px 0;
  background-color: transparent;
  font-size: 16px;
  color: #000;
}
.support-area .input-form > button {
  z-index: 2;
}
.support-area.unset .input-form > button {
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  color: #000;
}
.support-area .input-form > button:hover {
  color: #fff;
}

.slider-area {
  display: flex;
  gap: 48px;
}
.slider-area .item {
  width: calc(50% - 24px);
}
.slider-area .item > p {
  font-family: 'ONE-Mobile-Title';
  font-size: 40px;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 24px;
}
.slider-area .slider-box {
  background: linear-gradient(to bottom, #F0F4FF 0%, #C2D9FD 100%);
  border-radius: 30px;
  padding: 36px;
}
.slider-box .th {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
}
.slider-box .th span {
  display: inline-block;
  width: calc(100% / 4);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.slider-box .twins .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slider-box .twins .content span {
  display: inline-block;
  width: calc(100% / 4);
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--sub-txt-color);
  letter-spacing: -1px;
}
.slider-box .twins .content span.circle {
  width: max-content;
  margin: 0 auto;
  height: 100%;
  background-color: var(--sub-color);
  border-radius: 50px;
  font-size: 14px;
  color: #fff;
  padding: 6px 12px;
}
.slider-box .slick-arrow {
  display: none !important;
}
.twins {
  padding-top: 16px;
}
.twins .slick-slide {
  margin: 6px 0;
  height: 24px;
}
.twins .slick-list {
  margin: -6px 0;
}




/*modal*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  padding: 48px;
  display: none;
}
.modal > .content {
  background-color: transparent;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1440px;
  display: flex;
  align-items: flex-start;
  margin: 0 auto;
}

.modal .right {
  width: calc(100% - 380px);
  background-color: #fff;
  position: relative;
}
.modal .right .tit-box {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 36px 24px;
  justify-content: space-between;
  border-bottom: 1px solid var(--main-color);
}
.modal .right .tit-box span {
  font-family: 'ONE-Mobile-Title';
  font-size: 32px;
  color: var(--sub-txt-color);
}
.modal .right .tit-box button {
  display: inline-block;
}
.modal .right .tit-box img {
  width: 36px;
  height: 36px;
}

.modal .right .view {
  padding: 48px 24px;
  overflow: hidden;
  overflow-y: auto;
  max-height: calc(100vh - 208px);
}
.view .about-tit {
  font-family: 'ONE-Mobile-Title';
  font-size: 40px;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 36px;
}
.view .about-tit span {
  display: inline-block;
  color: var(--main-color);
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-grid .item {
  border-radius: 30px;
  position: relative;
  width: 100%;
  background-color: var(--bg-color);
}
.about-grid .item::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.about-grid .item .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
}
.about-grid .item .inner p {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  word-break: keep-all;
}
.about-grid .item .inner p b {
  font-weight: 700;
  color: var(--main-color);
}
.about-grid .item .inner .img-box {
  margin: 0 0 0 auto;
}
.about-grid .item .inner .img-box img {
  height: 80px;
}

.vip-intro {
  background-color: var(--bg-color);
  border-radius: 30px;
  overflow: hidden;
  padding: 48px;
  position: relative;
  margin-bottom: 48px;
}
.vip-intro .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.vip-intro .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vip-intro .txt {
  font-family: 'ONE-Mobile-Title';
  font-size: 80px;
  line-height: 1.2;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}
.vip-intro .txt span {
  color: var(--main-color);
}
.vip-intro .txt-sub {
  display: inline-block;
  background-color: var(--main-color);
  border-radius: 100px;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  padding: 12px 24px;
  margin-bottom: 36px;
}
.vip-intro .expl {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.vip-intro .expl span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 600;
}
.vip-intro .expl span img {
  width: 24px;
  height: 24px;
}
.vip-intro .circle {
  display: flex;
  align-items: center;
  gap: 24px;
}
.vip-intro .circle span {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(204,195,253,1) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 38px;
  font-weight: 700;
}
.vip-intro .circle span p {
  font-size: 22px;
  font-weight: 600;
}

.month-box {
  background-color: var(--black-bg-color);
  border-radius: 30px;
  overflow: hidden;
  padding: 48px 0;
  margin-bottom: 48px;
}
.month-box .txt {
  font-family: 'ONE-Mobile-Title';
  font-size: 40px;
  color: #fff;
  text-align: center;
  margin-bottom: 36px;
}

.month-slider {
  width: 100%;
}
.month-slider .slick-slide {
  margin: 0 12px;
}
.month-slider .slick-list {
  margin: 0 -12px;
}
.month-slider .content {
  background-color: #0E0E0E;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px;
}
.month-slider .content .month {
  width: 100%;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.month-slider .content .month span {
  background-color: var(--point-txt-color);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin: 0 auto;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.month-slider .slick-slide.slick-active .content .month span {
  background-color: var(--sub-txt-color);
}
.month-slider .content .pay {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.month-slider .content .pay span {
  display: inline-block;
  font-size: 48px;
  color: var(--sub-txt-color);
}
.month-slider .slick-slide.slick-active .content .pay span {
  color: var(--main-color) !important;
}
.month-slider .content .ed {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: var(--sub-txt-color);
}

.live {
  background-color: var(--bg-color);
  padding: 48px;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 100px;
}
.live .txt {
  font-family: 'ONE-Mobile-Title';
  font-size: 40px;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 36px;
}
.live .txt span {
  font-weight: 700;
  position: relative;
}
.live .txt span::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 100%;
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #FF0000;
  animation: blink-effect 1s step-end infinite;
}
@keyframes blink-effect {
  50% {
    opacity: 0;
  }
}
.live ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.live ul li {
  border: 1px solid var(--main-color);
  border-radius: 50px;
  padding: 24px 48px;
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 36px;
}
.live ul li > div {
  line-height: 1.3;
  word-break: keep-all;
}
.live ul li span {
  display: inline-block;
  width: 60px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  background-color: var(--main-color);
  font-size: 16px;
  color: #fff;
  border-radius: 30px;
}
.live ul li i {
  color: var(--main-color);
}

.review .txt {
  font-family: 'ONE-Mobile-Title';
  font-size: 40px;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 36px;
}
.review-slider {
  max-height: 500px;
  overflow: hidden;
}
.review-slider .slick-slide {
  margin: 0 12px;
  overflow: hidden;
  border-radius: 30px;
  position: relative;
}
.review-slider .slick-list {
  margin: 0 -12px;
}
.review-slider .slick-slide .img-box {
  width: 100%;
  height: 100%;
}
.review-slider .slick-slide .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-slider .slick-slide .img-box a {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: transparent;
  position: relative;
  z-index: 2;
}
.review-slider .slick-slide .img-box a::after {
  content: "";
  background-image: url('../images/common/click.png');
  background-size: 70px auto;
  background-repeat: no-repeat;
  background-position: center 250px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: .2s linear;
}
.review-slider .slick-slide:hover .img-box a::after {
  opacity: 1;
  transition: .2s linear;
}
.review-slider .slick-slide .img-box a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 24px;
}
.slider-arrow span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  background-color: var(--main-color);
  cursor: pointer;
}
.slider-arrow span img {
  height: 20px;
}

.view .event-img {
  margin-top: -48px;
}
.event-list {
  position: relative;
  z-index: 2;
   margin-top: -36px;
   background-color: var(--bg-color);
   padding: 48px;
   border-radius: 30px;
}
.event-list p {
  font-family: 'ONE-Mobile-Title';
  font-size: 40px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 36px;
}
.event-list ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.event-list ul li {
  padding: 20px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  border: 1px solid var(--main-color);
  border-radius: 30px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}
.event-list ul li b {
  font-weight: 700;
  color: var(--main-color);
}
.event-list ul li span {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: var(--main-color);
  padding: 6px 16px;
  border-radius: 30px;
}
.event-list ul li .img-box {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-list ul li .img-box img {
  width: 100%;
  object-fit: contain;
}
.event-list ul li .txt {
  line-height: 1.3;
}

.guide {
  margin-top: 48px;
}
.guide table {
  width: 100%;
  border-top: 2px solid var(--main-color);
  /*table-layout: fixed;*/
}
.guide table tr {
  border-bottom: 1px solid var(--border-color);
}
.guide table th, .guide table td {
  padding: 24px;
  vertical-align: middle;
  text-align: center;
  line-height: 1.3;
  word-break: keep-all;
}
.guide table thead th {
  font-size: 20px;
  font-weight: 700;
  color: var(--main-color);
  white-space: nowrap;
}
.guide table tbody td {
  font-size: 18px;
  font-weight: 500;
  color: var(--sub-txt-color);
}
.guide table tbody td:first-child {
  white-space: nowrap;
}
.guide table tbody td b {
  font-weight: 700;
  color: var(--main-color);
}
.guide table tbody td span {
  display: inline-block;
  background-color: var(--main-color);
  font-size: 16px;
  color: #fff;
  padding: 6px 12px;
  border-radius: 100px;
}

.guide .guide-expl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 36px;
}
.guide .guide-expl .sm-expl {
  font-size: 22px;
  font-weight: 600;
  color: var(--sub-txt-color);
  line-height: 1.3;
  text-align: center;
}
.guide .guide-expl .sm-expl span {
  color: var(--main-color);
  font-weight: 700;
}
.guide .guide-expl > span {
  display: inline-block;
  background-color: var(--main-color);
  font-size: 20px;
  color: #fff;
  padding: 12px 24px;
  border-radius: 100px;
  margin-top: 6px;
}


.mobile {
  display: none;
}


.main-banner {
    background-image: url('../images/common/main_banner_bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 24px 0 100px;
    margin-bottom: 60px;
    position: relative;
  }
  .h-logo {
    margin-bottom: 48px;
  }
  .h-logo img {
    width: 80px;
  }
  .main-banner .content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 120px;
  }
  .main-banner .content .txt {
    display: flex;
    flex-direction: column;
  }
  .main-banner .content .txt .hand-tit {
    font-family: 'NanumPen';
    font-size: 60px;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  }
  .main-banner .content .txt .box-tit {
    width: max-content;
    font-family: 'Puradak';
    font-size: 80px;
    color: #FBC600;
    background-color: #3E210D;
    padding: 12px 24px;
    margin-bottom: 24px;
  }
  .main-banner .content .txt .sub-tit {
    font-size: 24px;
    font-weight: 400;
    color: #3E210D;
    line-height: 1.3;
  }
  .main-banner .content .txt .sub-tit b {
    font-weight: 700;
  }
  .main-banner .content .img-box {
    max-width: 400px;
  }
  .main-banner .content .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .main-banner .arrow-span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #3E210D;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  .main-banner .arrow-span img {
    width: 24px;
  }