@charset "UTF-8";
/* reset.css */
/* font 초기화 */
@font-face {
  font-family: "Kigsans";
  font-weight: 500;
  src: url("../fonts/kigsans-Medium.woff2") format("woff2"), url("../fonts/kigsans-Medium.woff") format("woff"), url("../fonts/kigsans-Medium.otf") format("opentype");
}
@font-face {
  font-family: "Kigsans";
  font-weight: 600;
  src: url("../fonts/kigsans-SemiBold.woff2") format("woff2"), url("../fonts/kigsans-SemiBold.woff") format("woff"), url("../fonts/kigsans-SemiBold.otf") format("opentype");
}
@font-face {
  font-family: "Kigsans";
  font-weight: 700;
  src: url("../fonts/kigsans-Bold.woff2") format("woff2"), url("../fonts/kigsans-Bold.woff") format("woff"), url("../fonts/kigsans-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Kigsans";
  font-weight: 800;
  src: url("../fonts/kigsans-UltraBold.woff2") format("woff2"), url("../fonts/kigsans-UltraBold.woff") format("woff"), url("../fonts/kigsans-UltraBold.otf") format("opentype");
}
@font-face {
  font-family: "Kigsans";
  font-weight: 900;
  src: url("../fonts/kigsans-Black.woff2") format("woff2"), url("../fonts/kigsans-Black.woff") format("woff"), url("../fonts/kigsans-Black.otf") format("opentype");
}
/* html 초기화 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button,
input, textarea, select {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "Kigsans";
  color: inherit;
  letter-spacing: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html, body {
  font-size: 62.5%;
  overflow-x: hidden;
  scrollbar-width: none;
  overscroll-behavior: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  position: relative;
  background-color: #0D0D0D;
}

ol, ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  display: block;
}

button {
  cursor: pointer;
  background-position: center;
  background-size: auto;
  background-color: transparent;
  background-repeat: no-repeat;
  border: none;
  padding: 1rem;
  border-radius: 0.5rem;
}
button:hover {
  background-color: #fff;
}

img {
  display: block;
}

.hidden, legend, caption {
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  height: 0;
  font-size: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

th,
td {
  vertical-align: middle;
  text-align: center;
}

/* class 초기화 */
.phide {
  display: none !important;
}

@media (max-width: 768px) {
  .phide {
    display: block !important;
  }
  .mhide {
    display: none !important;
  }
}
.w10 {
  width: 10% !important;
}

.w20 {
  width: 20% !important;
}

.w30 {
  width: 30% !important;
}

.w40 {
  width: 40% !important;
}

.w50 {
  width: 50% !important;
}

.w60 {
  width: 60% !important;
}

.w70 {
  width: 70% !important;
}

.w80 {
  width: 80% !important;
}

.w90 {
  width: 90% !important;
}

.w100 {
  width: 100% !important;
}

.mt30 {
  margin-top: 3rem !important;
}

.mt50 {
  margin-top: 5rem !important;
}

@media (max-width: 768px) {
  .mt30 {
    margin-top: 1.5rem !important;
  }
  .mt50 {
    margin-top: 2.5rem !important;
  }
}
/* --reset.css */
/* layout.css */
header,
footer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 3rem;
  padding: 1.5rem 1.5rem 1.5rem 2.5rem;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
}
@keyframes marquee {
  0% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(-190%);
  }
}
header .marquee,
footer .marquee {
  grid-column: span 2;
  height: 4rem;
  background-color: #F6FF00;
  border-radius: 2rem;
  overflow: hidden;
  padding: 0.2rem;
  width: calc(100% - 1rem);
}
header .marquee p,
footer .marquee p {
  animation: marquee 100s linear infinite;
  white-space: nowrap;
  font-size: 2.4rem;
  font-weight: 900;
  color: #0D0D0D;
}
header h1 a,
footer h1 a {
  text-indent: -9999px;
  overflow: hidden;
  background: url("../img/layout/img-ss26.png") center/5rem auto no-repeat;
  width: 5rem;
  height: 22.8rem;
}
header ul,
footer ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header ul.gnb,
footer ul.gnb {
  padding-bottom: 1.5rem;
  gap: 1rem;
}
header ul.gnb a,
footer ul.gnb a {
  font-size: 2.4rem;
  font-weight: 900;
  padding: 0 1rem;
  opacity: 0.5;
  transition: all 0.3s;
}
header ul.gnb a:hover,
footer ul.gnb a:hover {
  opacity: 1;
}
header ul.gnb li.on a,
footer ul.gnb li.on a {
  opacity: 1;
}
header ul.sns,
footer ul.sns {
  padding-top: 1.2rem;
  position: relative;
}
header ul.sns::before,
footer ul.sns::before {
  content: "";
  width: calc(100% - 1rem);
  height: 0.2rem;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
}
header ul.sns a,
footer ul.sns a {
  text-indent: -9999px;
  overflow: hidden;
  width: 5rem;
  height: 5rem;
}
header ul.sns a.instagram,
footer ul.sns a.instagram {
  background: url("../img/layout/ico-instagram.png") center/3rem auto no-repeat;
}
header ul.sns a.facebook,
footer ul.sns a.facebook {
  background: url("../img/layout/ico-facebook.png") center/3rem auto no-repeat;
}
header ul.sns a.youtube,
footer ul.sns a.youtube {
  background: url("../img/layout/ico-youtube.png") center/3.3rem auto no-repeat;
  width: 5.3rem;
}
header ul.sns a.sejong,
footer ul.sns a.sejong {
  background: url("../img/layout/ico-sejong.png") center/3rem auto no-repeat;
}
header ul.sns a:hover.instagram,
footer ul.sns a:hover.instagram {
  background-image: url("../img/layout/ico-instagram-active.png");
}
header ul.sns a:hover.facebook,
footer ul.sns a:hover.facebook {
  background-image: url("../img/layout/ico-facebook-active.png");
}
header ul.sns a:hover.youtube,
footer ul.sns a:hover.youtube {
  background-image: url("../img/layout/ico-youtube-active.png");
}
header ul.sns a:hover.sejong,
footer ul.sns a:hover.sejong {
  background-image: url("../img/layout/ico-sejong-active.png");
}
header button.open,
header .all-menu,
footer button.open,
footer .all-menu {
  display: none;
}
@media (max-width: 1024px) {
  header ul.gnb,
  footer ul.gnb {
    gap: 0;
  }
  header ul.gnb a,
  footer ul.gnb a {
    font-size: 2.2rem;
    padding: 0 0.8rem;
  }
}
@media (max-width: 768px) {
  header,
  footer {
    padding: 1rem 0.8rem 1rem 1.5rem;
    gap: 2rem;
  }
  header .marquee,
  footer .marquee {
    width: calc(100% - 0.7rem);
    height: 2.8rem;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10rem);
    -webkit-backdrop-filter: blur(10rem);
    border-radius: 1.4rem;
  }
  header .marquee p,
  footer .marquee p {
    font-size: 1.6rem;
    color: #000;
  }
  header h1 a,
  footer h1 a {
    width: 3rem;
    height: 14.2rem;
    background-size: 3rem auto;
  }
  header ul.gnb,
  footer ul.gnb {
    display: none;
  }
  header ul.sns,
  footer ul.sns {
    padding-top: 0;
  }
  header ul.sns::before,
  footer ul.sns::before {
    display: none;
  }
  header ul.sns a,
  footer ul.sns a {
    width: 4.5rem;
    height: 4.5rem;
  }
  header ul.sns a.instagram,
  footer ul.sns a.instagram {
    background-size: 2.5rem auto;
  }
  header ul.sns a.facebook,
  footer ul.sns a.facebook {
    background-size: 2.5rem auto;
  }
  header ul.sns a.youtube,
  footer ul.sns a.youtube {
    background-size: 2.7rem auto;
  }
  header ul.sns a.sejong,
  footer ul.sns a.sejong {
    background-size: 2.5rem auto;
  }
  header button,
  footer button {
    font-size: 1.8rem;
    font-weight: 900;
    color: #000;
    border-radius: 0.8rem;
    background-position: right 1.2rem center;
    background-size: 1.3rem;
    background-color: rgba(255, 255, 255, 0.75);
    background-repeat: no-repeat;
    backdrop-filter: blur(10rem);
    -webkit-backdrop-filter: blur(10rem);
    padding: 0 3rem 0.5rem 1.2rem;
  }
  header button span,
  footer button span {
    display: inline-block;
    text-indent: -9999px;
    overflow: hidden;
  }
  header button.open,
  footer button.open {
    display: block;
    background-image: url("../img/layout/ico-allmenu-open.png");
    position: fixed;
    right: 1.5rem;
  }
  header button.close,
  footer button.close {
    background-image: url("../img/layout/ico-allmenu-close.png");
    background-color: #fff;
  }
  header .all-menu.active,
  footer .all-menu.active {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    position: relative;
    z-index: 1000;
    margin-right: 0.7rem;
  }
  header .all-menu.active::before,
  footer .all-menu.active::before {
    content: "";
    width: 100vw;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.5);
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
  }
  header .all-menu.active ul,
  footer .all-menu.active ul {
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    margin: 4rem 0 0;
  }
  header .all-menu.active ul a,
  footer .all-menu.active ul a {
    font-size: 2.4rem;
    font-weight: 900;
    color: #000;
    border-radius: 0.8rem;
    background-color: #F6FF00;
    line-height: 4rem;
    padding: 0 1rem;
  }
  header .all-menu.active ul a:hover,
  footer .all-menu.active ul a:hover {
    background-color: #fff;
  }
}

body:not(#teaser) footer {
  display: none;
}
@media (max-width: 768px) {
  body:not(#teaser) header h1 {
    position: fixed;
    top: 5.8rem;
    left: 1.5rem;
  }
  body:not(#teaser) header > div {
    grid-column: span 2;
  }
  body:not(#teaser) header ul.sns {
    display: none;
  }
  body:not(#teaser) footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    top: auto;
    bottom: 0;
    z-index: 9;
  }
  body:not(#teaser) footer ul.sns {
    margin-right: 0.7rem;
    gap: 1rem;
  }
  body:not(#teaser) footer ul.sns a {
    background-color: #000;
    border-radius: 50%;
    width: 4.5rem;
  }
  body:not(#teaser) footer ul.sns a.instagram {
    background-image: url("../img/layout/ico-instagram-active.png");
  }
  body:not(#teaser) footer ul.sns a.facebook {
    background-image: url("../img/layout/ico-facebook-active.png");
  }
  body:not(#teaser) footer ul.sns a.youtube {
    background-image: url("../img/layout/ico-youtube-active.png");
  }
  body:not(#teaser) footer ul.sns a.sejong {
    background-image: url("../img/layout/ico-sejong-active.png");
  }
  body:not(#teaser) footer ul.sns a:hover {
    background-color: #fff;
  }
  body:not(#teaser) footer ul.sns a:hover.instagram {
    background-image: url("../img/layout/ico-instagram-black-active.png");
  }
  body:not(#teaser) footer ul.sns a:hover.facebook {
    background-image: url("../img/layout/ico-facebook-black-active.png");
  }
  body:not(#teaser) footer ul.sns a:hover.youtube {
    background-image: url("../img/layout/ico-youtube-black-active.png");
  }
  body:not(#teaser) footer ul.sns a:hover.sejong {
    background-image: url("../img/layout/ico-sejong-black-active.png");
  }
  body:not(#teaser) footer .marquee {
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  body:not(#teaser, #main) header > h1,
  body:not(#teaser, #main) footer ul.sns {
    display: none;
  }
}

body:has(.pre-subscribe-wrap) header h1 a,
body:has(.event-wrap) header h1 a {
  background-image: url("../img/layout/img-ss26-black.png");
}
body:has(.pre-subscribe-wrap) header ul.gnb a,
body:has(.event-wrap) header ul.gnb a {
  color: #000;
}
body:has(.pre-subscribe-wrap) header ul.sns::before,
body:has(.event-wrap) header ul.sns::before {
  background-color: #000;
}
body:has(.pre-subscribe-wrap) header ul.sns a.instagram,
body:has(.event-wrap) header ul.sns a.instagram {
  background-image: url("../img/layout/ico-instagram-black.png");
}
body:has(.pre-subscribe-wrap) header ul.sns a.facebook,
body:has(.event-wrap) header ul.sns a.facebook {
  background-image: url("../img/layout/ico-facebook-black.png");
}
body:has(.pre-subscribe-wrap) header ul.sns a.youtube,
body:has(.event-wrap) header ul.sns a.youtube {
  background-image: url("../img/layout/ico-youtube-black.png");
}
body:has(.pre-subscribe-wrap) header ul.sns a.sejong,
body:has(.event-wrap) header ul.sns a.sejong {
  background-image: url("../img/layout/ico-sejong-black.png");
}
body:has(.pre-subscribe-wrap) header ul.sns a:hover.instagram,
body:has(.event-wrap) header ul.sns a:hover.instagram {
  background-image: url("../img/layout/ico-instagram-black-active.png");
}
body:has(.pre-subscribe-wrap) header ul.sns a:hover.facebook,
body:has(.event-wrap) header ul.sns a:hover.facebook {
  background-image: url("../img/layout/ico-facebook-black-active.png");
}
body:has(.pre-subscribe-wrap) header ul.sns a:hover.youtube,
body:has(.event-wrap) header ul.sns a:hover.youtube {
  background-image: url("../img/layout/ico-youtube-black-active.png");
}
body:has(.pre-subscribe-wrap) header ul.sns a:hover.sejong,
body:has(.event-wrap) header ul.sns a:hover.sejong {
  background-image: url("../img/layout/ico-sejong-black-active.png");
}

/* --layout.css */
/* contents.css */
/* 티저 */
#teaser::before {
  content: "";
  min-width: 28rem;
  width: 100%;
  height: 100dvh;
  background: url("../img/contents/img-teaser-bg.png?ver=1") center/cover no-repeat;
  display: block;
  position: fixed;
  z-index: -1;
}
#teaser::after {
  content: "";
  min-width: 28rem;
  width: 100%;
  height: 100dvh;
  background: linear-gradient(180deg, transparent, rgba(9, 9, 9, 0), rgba(9, 9, 9, 0.3) 90%, rgba(9, 9, 9, 0.5));
  display: block;
  position: fixed;
  top: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  #teaser::before {
    background-image: url("../img/contents/img-teaser-bg-m.png?ver=1");
  }
  #teaser::after {
    background: linear-gradient(180deg, transparent, rgba(9, 9, 9, 0.2), rgba(9, 9, 9, 0.5) 90%, rgba(9, 9, 9, 0.5));
  }
}
#teaser header {
  position: absolute;
}
@media (max-width: 768px) {
  #teaser header ul.sns a {
    width: 4rem;
    height: 4rem;
  }
}
#teaser #banner {
  position: relative;
  z-index: 3;
}
#teaser #banner dl {
  position: fixed;
  bottom: 3rem;
  text-align: center;
  line-height: 1.3;
  width: 42rem;
}
#teaser #banner dl:first-child {
  left: 5.5rem;
}
#teaser #banner dl:last-child {
  right: 5.5rem;
}
#teaser #banner dl dt {
  font-size: 3.2rem;
  font-weight: 800;
  margin-top: 2.5rem;
}
#teaser #banner dl dd {
  font-size: 3rem;
  font-weight: 600;
}
@media (max-width: 1900px) {
  #teaser #banner dl {
    position: absolute;
  }
}
@media (max-width: 1280px) {
  #teaser #banner dl:first-child {
    left: 2.5rem;
  }
  #teaser #banner dl:last-child {
    right: 2.5rem;
  }
}
@media (max-width: 1024px) {
  #teaser #banner dl {
    width: 34rem;
  }
  #teaser #banner dl dt {
    font-size: 2.7rem;
  }
  #teaser #banner dl dd {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  #teaser #banner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem 1.5rem;
  }
  #teaser #banner dl {
    position: static;
    width: auto;
  }
  #teaser #banner dl dt {
    font-size: 2.2rem;
    margin-top: 1.5rem;
  }
  #teaser #banner dl dd {
    font-size: 2rem;
  }
}
#teaser #contents {
  margin-top: 0;
  padding: 25rem 0 17rem;
  height: calc(100dvh + 25rem);
}
#teaser #contents::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 5%, rgba(9, 9, 9, 0.2), rgba(9, 9, 9, 0.5) 20%, rgba(9, 9, 9, 0.5));
  backdrop-filter: blur(0.4rem);
  -webkit-backdrop-filter: blur(0.4rem);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
#teaser #contents .timer {
  font-weight: 700;
  text-align: center;
  height: 32rem;
  padding: 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#teaser #contents .timer h2,
#teaser #contents .timer div {
  font-size: 3rem;
  display: flex;
  justify-content: space-between;
  max-width: 80rem;
  width: 100%;
  margin: 0 auto;
}
#teaser #contents .timer p {
  font-size: 2.6rem;
  min-width: 15rem;
}
#teaser #contents .timer p span {
  font-size: 11.2rem;
  display: block;
}
#teaser #contents .content > div {
  margin: 0 auto;
  padding: 0 2.5rem;
  max-width: 58rem;
  width: 100%;
  height: calc(100dvh - 49rem);
  text-align: center;
  overflow: auto;
  -ms-overflow-style: none;
}
#teaser #contents .content > div::-webkit-scrollbar {
  display: none;
}
#teaser #contents .content > div > *:not(.button) {
  opacity: 0;
  transform: translateY(2rem);
  transition: all 1s;
}
#teaser #contents .content > div > .on:not(.button) {
  opacity: 1;
  transform: translateY(0);
}
#teaser #contents .content h2 {
  font-size: 4rem;
  font-weight: 700;
  padding: 3rem 0 1.5rem;
}
#teaser #contents .content p {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 4rem;
}
#teaser #contents .content dl {
  display: inline-block;
  border-bottom: 0.4rem solid #fff;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
}
#teaser #contents .content dl dt {
  font-size: 2.4rem;
  border-top: 0.4rem solid #fff;
  padding-top: 1rem;
}
#teaser #contents .content dl dd {
  font-size: 2rem;
  font-weight: 700;
  padding-top: 1rem;
}
#teaser #contents .content dl dd + dt {
  margin-top: 1.5rem;
}
#teaser #contents .content dl dd.small {
  font-size: 1.4rem;
  font-weight: 500;
  opacity: 0.7;
}
#teaser #contents .content ul {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
#teaser #contents .content ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
#teaser #contents .content ul li img {
  width: 25rem;
}
#teaser #contents .content ul li span {
  font-size: 2rem;
}
#teaser #contents .content .button {
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  overflow: hidden;
  min-width: 28rem;
  padding: 4rem 0;
}
#teaser #contents .content .button.on {
  position: fixed;
  transition: all 0.5s;
}
#teaser #contents .content .button button {
  max-width: 37rem;
  width: 100%;
  height: 9rem;
  border-radius: 4.5rem;
  background: linear-gradient(135deg, #F6FF00 20%, #8EEECF 55%, #A1AFFF 90%);
  font-size: 3.4rem;
  font-weight: 700;
  color: #2315DF;
  position: relative;
  z-index: 1;
}
#teaser #contents .content .button button:hover {
  background: #fff;
}
@media (max-width: 1024px) {
  #teaser #contents {
    padding: 20rem 0 15rem;
    height: calc(100dvh + 20rem);
  }
  #teaser #contents .timer {
    height: 24rem;
  }
  #teaser #contents .timer h2,
  #teaser #contents .timer div {
    font-size: 2.2rem;
    max-width: 60rem;
  }
  #teaser #contents .timer p {
    font-size: 2rem;
    min-width: 10rem;
  }
  #teaser #contents .timer p span {
    font-size: 8rem;
  }
  #teaser #contents .content > div {
    height: calc(100dvh - 39rem);
  }
  #teaser #contents .content h2 {
    font-size: 3.6rem;
  }
  #teaser #contents .content p {
    font-size: 2rem;
  }
  #teaser #contents .content dl dt {
    font-size: 2.2rem;
  }
  #teaser #contents .content .button {
    padding: 3.5rem 0;
  }
  #teaser #contents .content .button button {
    max-width: 31rem;
    height: 8rem;
    border-radius: 4rem;
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  #teaser #contents {
    padding: 15rem 0 12rem;
    height: calc(100dvh + 15rem);
  }
  #teaser #contents .timer {
    height: 16rem;
    padding: 1rem 1.5rem;
  }
  #teaser #contents .timer h2,
  #teaser #contents .timer div {
    font-size: 1.4rem;
    max-width: 40rem;
  }
  #teaser #contents .timer p {
    font-size: 1.4rem;
    min-width: 6rem;
  }
  #teaser #contents .timer p span {
    font-size: 4.8rem;
  }
  #teaser #contents .content > div {
    height: calc(100dvh - 28rem);
    padding: 0 1.5rem;
  }
  #teaser #contents .content h2 {
    font-size: 3.2rem;
  }
  #teaser #contents .content p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }
  #teaser #contents .content dl {
    border-width: 0.1rem;
  }
  #teaser #contents .content dl dt {
    font-size: 2rem;
    border-width: 0.1rem;
  }
  #teaser #contents .content ul {
    flex-direction: column;
  }
  #teaser #contents .content ul li {
    gap: 2rem;
  }
  #teaser #contents .content .button {
    padding: 3rem 0;
  }
  #teaser #contents .content .button button {
    max-width: 25rem;
    height: 6rem;
    border-radius: 3rem;
    font-size: 2.4rem;
  }
}

/* 메인 */
#banner {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100dvh;
}
#banner .banner-slider .banner-slider-item video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto;
}

#contents {
  position: relative;
  z-index: 2;
  margin-top: calc(100dvh - 0.1rem);
}
#contents h2 {
  font-size: 5.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
}
#contents .sub {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 768px) {
  #contents h2 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
  }
  #contents .sub {
    font-size: 1.6rem;
  }
}

.subscribe-cont {
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10rem);
  -webkit-backdrop-filter: blur(10rem);
  padding: 2.5rem 2.5rem 6rem 10.5rem;
}
.subscribe-cont h2 {
  margin: 3rem 0 0 !important;
}
.subscribe-cont .list {
  max-width: 68rem;
  margin: 0 auto;
  border-top: 0.2rem solid #fff;
  margin: 4rem auto 8rem;
}
.subscribe-cont .list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.2rem solid #fff;
  padding: 1rem 0;
}
.subscribe-cont .list dt {
  font-size: 2.4rem;
  font-weight: 700;
}
.subscribe-cont .list dd {
  font-size: 2rem;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .subscribe-cont .list {
    max-width: 58rem;
  }
}
@media (max-width: 768px) {
  .subscribe-cont {
    padding: 2rem 1.5rem 4rem;
  }
  .subscribe-cont h2 {
    margin: 0 !important;
  }
  .subscribe-cont .list {
    max-width: none;
    border-width: 0.1rem;
    margin: 2rem auto 4rem;
  }
  .subscribe-cont .list div {
    flex-direction: column;
    gap: 0.3rem;
    border-width: 0.1rem;
    padding: 1.2rem 0;
  }
  .subscribe-cont .list dt {
    font-size: 1.6rem;
  }
  .subscribe-cont .list dd {
    font-size: 1.2rem;
  }
}

.subscribe-list {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  text-align: center;
  margin-top: 3.5rem;
}
.subscribe-list li {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3rem;
  width: 32%;
  padding: 2rem;
  transition: all 0.5s;
}
.subscribe-list li .category {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
}
.subscribe-list li .category span {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 0 0.8rem;
  line-height: 2.5rem;
}
.subscribe-list li h3 {
  font-size: 3rem;
  font-weight: 800;
  border-bottom: 0.2rem solid #fff;
  margin-bottom: 1.5rem;
  padding: 0.8rem 0;
}
.subscribe-list li p {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 0.5rem;
}
.subscribe-list li p strong {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
  background-color: #fff;
  line-height: 1.3;
  padding: 0.2rem 0.5rem;
  display: inline-block;
}
.subscribe-list li p.price {
  font-size: 2.2rem;
  font-weight: 800;
  border-top: 0.2rem solid #fff;
  padding: 1.5rem 0 2rem;
  margin-top: 1.5rem;
}
.subscribe-list li p.price del {
  color: rgba(0, 0, 0, 0.7);
  text-decoration-color: #000;
  margin-right: 1rem;
}
.subscribe-list li p.price .down {
  font-size: 1.6rem;
  font-weight: 800;
  background-color: #F6FF00;
  padding: 0 0.3rem;
  vertical-align: middle;
}
.subscribe-list li p.price .arr {
  display: block;
  height: 4rem;
  background: url("../img/contents/ico-subscribe-list-arrow.png") center/2.4rem no-repeat;
}
.subscribe-list li p.small {
  border-bottom: 0.2rem solid #fff;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 1.3rem;
}
.subscribe-list li a {
  background-color: #fff;
  line-height: 4.8rem;
  border-radius: 1.5rem;
  font-size: 2.2rem;
  font-weight: 800;
  color: #000;
  transition: all 0.5s;
}
.subscribe-list li a:hover {
  background-color: #000;
  color: #fff;
}
.subscribe-list li:hover {
  transform: scale(1.02);
  box-shadow: 0 0 3rem 0 rgba(0, 0, 0, 0.2);
}
.subscribe-list li.active {
  width: 36%;
  background: linear-gradient(135deg, #F6FF00 20%, #8EEECF 55%, #A1AFFF 90%);
  color: #000;
}
.subscribe-list li.active .category span {
  font-size: 1.9rem;
  line-height: 3rem;
}
.subscribe-list li.active h3 {
  font-size: 3.6rem;
  border-color: #000;
}
.subscribe-list li.active h4 {
  font-size: 2.4rem;
  font-weight: 800;
  border-top: 0.2rem solid #000;
  padding: 1.5rem 0 0.5rem;
  margin-top: 1.5rem;
}
.subscribe-list li.active p {
  font-size: 2rem;
}
.subscribe-list li.active p strong {
  font-size: 1.8rem;
  color: #fff;
  background-color: #000;
}
.subscribe-list li.active p.price {
  font-size: 2.4rem;
  border-color: #000;
}
.subscribe-list li.active p.plus {
  margin-top: 1.5rem;
  padding-top: 3.5rem;
  background: url("../img/contents/ico-plus.png") top center/1.8rem no-repeat;
}
.subscribe-list li.active p.ico-1 {
  display: inline-block;
  padding-left: 3.5rem;
  background: url("../img/contents/ico-subscribe-black-01.png") left center/2.5rem auto no-repeat;
}
.subscribe-list li.active p.ico-2 {
  display: inline-block;
  padding-left: 7.8rem;
  background: url("../img/contents/ico-subscribe-black-02.png") left center/6.8rem auto no-repeat;
}
.subscribe-list li.active p.ico-3 {
  display: inline-block;
  padding-left: 3.2rem;
  background: url("../img/contents/ico-subscribe-black-03.png") left center/2.2rem auto no-repeat;
}
.subscribe-list li.active p.ico-4 {
  display: inline-block;
  padding-left: 3.9rem;
  background: url("../img/contents/ico-subscribe-black-04.png") left center/2.9rem auto no-repeat;
}
.subscribe-list li.active a {
  font-size: 2.4rem;
  line-height: 5rem;
}
.subscribe-list li.light {
  width: 50%;
  background: linear-gradient(125deg, #E5FF4F 8%, #9FFFCE 76%, #E0ECFF 92%);
}
.subscribe-list li.plus {
  width: 50%;
  background: linear-gradient(125deg, #4FFCFF 20%, #E79FFF 76%, #FFE0F6 92%);
}
@media (max-width: 1024px) {
  .subscribe-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "item2 item2" "item1 item3";
  }
  .subscribe-list li {
    width: 100% !important;
  }
  .subscribe-list li:nth-child(1) {
    grid-area: item1;
  }
  .subscribe-list li:nth-child(2) {
    grid-area: item2;
  }
  .subscribe-list li:nth-child(3) {
    grid-area: item3;
  }
}
@media (max-width: 768px) {
  .subscribe-list {
    grid-template-columns: 1fr;
    grid-template-areas: "item2" "item1" "item3";
    margin-top: 2.5rem;
  }
  .subscribe-list li {
    border-radius: 2rem;
  }
  .subscribe-list li .category span {
    font-size: 1.4rem;
    line-height: 2rem;
  }
  .subscribe-list li h3 {
    font-size: 2.4rem;
    border-width: 0.1rem;
  }
  .subscribe-list li p {
    font-size: 1.4rem;
  }
  .subscribe-list li p strong {
    font-size: 1.2rem;
  }
  .subscribe-list li p.price {
    font-size: 2rem;
    border-width: 0.1rem;
  }
  .subscribe-list li p.price .down {
    font-size: 1.4rem;
  }
  .subscribe-list li p.price .arr {
    height: 2.4rem;
    background-size: 1.4rem;
  }
  .subscribe-list li p.small {
    border-width: 0.1rem;
    font-size: 1.2rem;
  }
  .subscribe-list li a {
    line-height: 4rem !important;
    font-size: 2rem !important;
    border-radius: 0.8rem;
  }
  .subscribe-list li.active .category span {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  .subscribe-list li.active h3 {
    font-size: 2.4rem;
  }
  .subscribe-list li.active h4 {
    font-size: 1.6rem;
    border-width: 0.1rem;
  }
  .subscribe-list li.active p {
    font-size: 1.4rem;
  }
  .subscribe-list li.active p strong {
    font-size: 1.2rem;
  }
  .subscribe-list li.active p.price {
    font-size: 2rem;
  }
  .subscribe-list li.active p.plus {
    background-size: 1.4rem;
    margin-top: 0.6rem;
    padding-top: 2.2rem;
  }
  .subscribe-list li.active p.ico-1 {
    padding-left: 2.7rem;
    background-size: 1.9rem auto;
  }
  .subscribe-list li.active p.ico-2 {
    padding-left: 5.9rem;
    background-size: 5.1rem auto;
  }
  .subscribe-list li.active p.ico-3 {
    padding-left: 2.4rem;
    background-size: 1.6rem auto;
  }
  .subscribe-list li.active p.ico-4 {
    padding-left: 3.1rem;
    background-size: 2.3rem auto;
  }
}

.alarm-event-cont {
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10rem);
  -webkit-backdrop-filter: blur(10rem);
  padding: 2.5rem 2.5rem 6rem 10.5rem;
  text-align: center;
}
.alarm-event-cont h2 {
  font-size: 4rem;
  font-weight: 700;
  padding: 3rem 0 1.5rem;
}
.alarm-event-cont p {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 4rem;
}
.alarm-event-cont dl {
  display: inline-block;
  border-bottom: 0.4rem solid #fff;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
}
.alarm-event-cont dl dt {
  font-size: 2.4rem;
  border-top: 0.4rem solid #fff;
  padding-top: 1rem;
}
.alarm-event-cont dl dd {
  font-size: 2rem;
  font-weight: 700;
  padding-top: 1rem;
}
.alarm-event-cont dl dd + dt {
  margin-top: 1.5rem;
}
.alarm-event-cont dl dd.small {
  font-size: 1.4rem;
  font-weight: 500;
  opacity: 0.7;
}
.alarm-event-cont ul {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.alarm-event-cont ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.alarm-event-cont ul li img {
  width: 25rem;
}
.alarm-event-cont ul li span {
  font-size: 2rem;
}
.alarm-event-cont .button {
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  overflow: hidden;
  min-width: 28rem;
  padding: 4rem 0;
}
.alarm-event-cont .button.on {
  position: fixed;
  transition: all 0.5s;
}
.alarm-event-cont .button button {
  max-width: 37rem;
  width: 100%;
  height: 9rem;
  border-radius: 4.5rem;
  background: linear-gradient(135deg, #F6FF00 20%, #8EEECF 55%, #A1AFFF 90%);
  font-size: 3.4rem;
  font-weight: 700;
  color: #2315DF;
  position: relative;
  z-index: 1;
}
.alarm-event-cont .button button:hover {
  background: #fff;
}
@media (max-width: 1024px) {
  .alarm-event-cont h2 {
    font-size: 3.6rem;
  }
  .alarm-event-cont p {
    font-size: 2rem;
  }
  .alarm-event-cont dl dt {
    font-size: 2.2rem;
  }
  .alarm-event-cont .button {
    padding: 3.5rem 0;
  }
  .alarm-event-cont .button button {
    max-width: 31rem;
    height: 8rem;
    border-radius: 4rem;
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .alarm-event-cont {
    padding: 2rem 1.5rem 8rem;
  }
  .alarm-event-cont h2 {
    font-size: 3.2rem;
  }
  .alarm-event-cont p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }
  .alarm-event-cont dl {
    border-width: 0.1rem;
  }
  .alarm-event-cont dl dt {
    font-size: 2rem;
    border-width: 0.1rem;
  }
  .alarm-event-cont ul {
    flex-direction: column;
  }
  .alarm-event-cont ul li {
    gap: 2rem;
  }
  .alarm-event-cont .button {
    padding: 3rem 0;
  }
  .alarm-event-cont .button button {
    max-width: 25rem;
    height: 6rem;
    border-radius: 3rem;
    font-size: 2.4rem;
  }
}

.program-cont {
  background-color: #0D0D0D;
  padding: 2.5rem 2.5rem 6rem 10.5rem;
}
@media (max-width: 768px) {
  .program-cont {
    padding: 2rem 1.5rem 4rem;
  }
}

.program-list {
  border-top: 0.2rem solid #fff;
}
.program-list li {
  border-bottom: 0.2rem solid #fff;
}
.program-list li a {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.program-list li a:hover .title {
  text-decoration: underline;
}
.program-list li .title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 2.4rem;
  font-weight: 700;
}
.program-list li .tag {
  margin: 0 auto 0 0.8rem;
}
.program-list li .date {
  font-size: 2rem;
  font-weight: 600;
}
.program-list li .place {
  text-indent: -9999px;
  overflow: hidden;
  line-height: 2.8rem;
  background-size: 2.8rem;
}
@media (max-width: 1024px) {
  .program-list li .title {
    max-width: 50%;
  }
}
@media (max-width: 768px) {
  .program-list {
    border-width: 0.1rem;
  }
  .program-list li {
    border-width: 0.1rem;
  }
  .program-list li a {
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.2rem 0;
  }
  .program-list li .title {
    font-size: 1.6rem;
    max-width: none;
    width: 100%;
    text-align: center;
  }
  .program-list li .date {
    font-size: 1.2rem;
  }
  .program-list li .tag, .program-list li .place {
    display: none;
  }
  .program-list li .tag, .program-list li .place {
    display: none;
  }
}

.tag {
  font-size: 1.4rem;
  font-weight: 600;
  border: 0.1rem solid #fff;
  border-radius: 1.4rem;
  line-height: 2.6rem;
  padding: 0 0.8rem;
  display: inline-block;
}
.tag.orange {
  border-color: #FFCE54;
  color: #FFCE54;
}
.tag.green {
  border-color: #86FF68;
  color: #86FF68;
}
.tag.blue {
  border-color: #00FFF2;
  color: #00FFF2;
}
.tag.pink {
  border-color: #FF6DB1;
  color: #FF6DB1;
}
.tag.purple {
  border-color: #C191FF;
  color: #C191FF;
}
.tag.mint {
  border-color: #9DFFE0;
  color: #9DFFE0;
}
.tag.lemon {
  border-color: #F7FFA1;
  color: #F7FFA1;
}
.tag.yellow {
  border-color: #FBFF00;
  color: #FBFF00;
}
.tag.red {
  border-color: #FF9193;
  color: #FF9193;
}

.place {
  font-size: 1.4rem;
  font-weight: 600;
  background-position: right center;
  background-size: 2.6rem;
  background-repeat: no-repeat;
  line-height: 2.6rem;
  padding-right: 3.4rem;
}
.place.g {
  background-image: url("../img/contents/ico-place-g.png");
}
.place.c {
  background-image: url("../img/contents/ico-place-c.png");
}
.place.m {
  background-image: url("../img/contents/ico-place-m.png");
}
.place.s {
  background-image: url("../img/contents/ico-place-s.png");
}
.place.h {
  background-image: url("../img/contents/ico-place-h.png");
}

.place-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .place-list {
    display: none;
  }
}

.content-wrap {
  padding: 15rem 2.5rem 6rem 10.5rem;
}
.content-wrap h2 {
  display: none;
}
@media (max-width: 768px) {
  .content-wrap {
    padding: 4.8rem 1.5rem;
  }
  .content-wrap h2 {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    border-top: 0.1rem solid #fff;
    padding: 0.6rem 0 1.2rem;
  }
  .content-wrap.pre-subscribe-wrap h2, .content-wrap.event-wrap h2 {
    border-color: #000;
    color: #000;
  }
}

/* 01 구독 선구매 */
.pre-subscribe-wrap {
  background-color: #8EEECF;
}
.pre-subscribe-wrap .sub {
  font-size: 2.4rem;
  font-weight: 800;
  color: #000;
  text-align: center;
  margin-top: 3.5rem;
}
.pre-subscribe-wrap .list {
  max-width: 50rem;
  text-align: center;
  border-top: 0.2rem solid #000;
  border-bottom: 0.2rem solid #000;
  margin: 3rem auto;
  padding-bottom: 2.5rem;
}
.pre-subscribe-wrap .list dt {
  background-color: #000;
  display: inline-block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 3.2rem;
  padding: 0 0.6rem;
  margin: 2.5rem 0 0.5rem;
}
.pre-subscribe-wrap .list dd {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-top: 0.5rem;
}
.pre-subscribe-wrap .subscribe-list {
  gap: 1.5rem 3rem;
}
@media (max-width: 1024px) {
  .pre-subscribe-wrap .subscribe-list {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .pre-subscribe-wrap .sub {
    font-size: 1.6rem;
    margin-top: 1.5rem;
  }
  .pre-subscribe-wrap .list {
    max-width: none;
    border-width: 0.1rem;
    margin: 1.5rem auto;
    padding-bottom: 1.5rem;
  }
  .pre-subscribe-wrap .list dt {
    font-size: 1.4rem;
    line-height: 2.4rem;
    margin: 1.5rem 0 0.5rem;
  }
  .pre-subscribe-wrap .list dd {
    font-size: 1.4rem;
    margin-top: 0.3rem;
  }
}

/* 02 프로그램 */
/* 03 구독 */
.subscribe-wrap {
  background-color: #08825B;
}
.subscribe-wrap .list {
  margin-bottom: 2rem;
}
.subscribe-wrap .list dt {
  display: inline-block;
  background-color: #fff;
  font-size: 2rem;
  font-weight: 800;
  color: #08825B;
  line-height: 3.2rem;
  padding: 0 0.5rem;
}
.subscribe-wrap .list dd {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1rem;
}
.subscribe-wrap .list dd + dt {
  margin-top: 1.2rem;
}
.subscribe-wrap .list.small dt {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 3rem;
  margin-bottom: 1rem;
}
.subscribe-wrap .list.small dd {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 0.8rem;
}
.subscribe-wrap .list.small dd.bold {
  font-weight: 800;
}
.subscribe-wrap .list.small dd.dash {
  padding-left: 1rem;
  position: relative;
}
.subscribe-wrap .list.small dd.dash::before {
  content: "-";
  position: absolute;
  left: 0;
}
@media (max-width: 768px) {
  .subscribe-wrap .list {
    margin-bottom: 1rem;
  }
  .subscribe-wrap .list dt {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  .subscribe-wrap .list dd {
    font-size: 1.4rem;
  }
  .subscribe-wrap .list.small dt {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  .subscribe-wrap .list.small dd {
    font-size: 1.4rem;
    margin-top: 0.6rem;
  }
  .subscribe-wrap .list.small dd.dash {
    padding-left: 0.8rem;
  }
}
.subscribe-wrap .subscribe-box {
  border-top: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  padding: 1.5rem 0 3rem;
}
.subscribe-wrap .subscribe-box dt {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  min-height: 8.4rem;
}
.subscribe-wrap .subscribe-box dt h3 {
  font-size: 5.2rem;
  font-weight: 800;
  color: #000;
}
.subscribe-wrap .subscribe-box dt .category {
  display: flex;
  align-items: center;
  gap: 0.5rem 0.8rem;
}
.subscribe-wrap .subscribe-box dt .category span {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  background-color: #000;
  border-radius: 0.8rem;
  padding: 0 1rem;
  line-height: 2.8rem;
}
.subscribe-wrap .subscribe-box dd {
  padding-top: 1.5rem;
}
.subscribe-wrap .subscribe-box dd a {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 1.5rem;
  max-width: 45rem;
  margin: 1.5rem auto 0;
  text-align: center;
  line-height: 5rem;
  font-size: 2.4rem;
  font-weight: 700;
}
.subscribe-wrap .subscribe-box dd + dt {
  margin-top: 6rem;
}
.subscribe-wrap .subscribe-box .subscribe-box-cont {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 2rem;
  padding: 2rem 3rem 2.5rem;
  position: relative;
}
.subscribe-wrap .subscribe-box .subscribe-box-cont h4 {
  font-size: 3.2rem;
  font-weight: 800;
  border-bottom: 0.2rem solid #fff;
  padding-bottom: 0.8rem;
  margin-bottom: 2rem;
}
.subscribe-wrap .subscribe-box .subscribe-box-cont p {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.8rem;
}
.subscribe-wrap .subscribe-box .subscribe-box-cont p strong {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  background-color: #fff;
  line-height: 1.3;
  padding: 0 0.5rem;
  display: inline-block;
}
.subscribe-wrap .subscribe-box .subscribe-box-cont p.ico-1 {
  padding-left: 3.5rem;
  background: url("../img/contents/ico-subscribe-01.png") left center/2.5rem auto no-repeat;
}
.subscribe-wrap .subscribe-box .subscribe-box-cont p.ico-2 {
  padding-left: 7.8rem;
  background: url("../img/contents/ico-subscribe-02.png") left center/6.8rem auto no-repeat;
}
.subscribe-wrap .subscribe-box .subscribe-box-cont p.ico-3 {
  padding-left: 3.2rem;
  background: url("../img/contents/ico-subscribe-03.png") left center/2.2rem auto no-repeat;
}
.subscribe-wrap .subscribe-box .subscribe-box-cont p.ico-4 {
  padding-left: 3.9rem;
  background: url("../img/contents/ico-subscribe-04.png") left center/2.9rem auto no-repeat;
}
.subscribe-wrap .subscribe-box .subscribe-box-cont p.price {
  position: absolute;
  right: 1.5rem;
  top: -7.8rem;
  font-size: 1.6rem;
  font-weight: 800;
  color: #000;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.subscribe-wrap .subscribe-box .subscribe-box-cont p.price span {
  display: flex;
  align-items: center;
}
.subscribe-wrap .subscribe-box .subscribe-box-cont p.price strong {
  font-size: 3.2rem;
  font-weight: 800;
  background-color: transparent;
}
.subscribe-wrap .subscribe-box .subscribe-box-cont p.price .gray {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
}
.subscribe-wrap .subscribe-box .subscribe-box-cont p.price .gray strong {
  color: #666;
  text-decoration: line-through;
  text-decoration-thickness: 0.2rem;
  text-decoration-color: #666;
}
.subscribe-wrap .subscribe-box .subscribe-box-cont p.price .gray .down {
  font-size: 1.6rem;
  font-weight: 800;
  color: #000;
  background: url("../img/contents/ico-subscribe-down.png") right 1rem center/1rem auto #F6FF00 no-repeat;
  padding: 0 2.6rem 0 1rem;
  line-height: 2.8rem;
  display: inline-block;
}
.subscribe-wrap .subscribe-box .subscribe-box-cont p.price .arr {
  width: 1.9rem;
  height: 1.9rem;
  background: url("../img/contents/ico-subscribe-arrow.png") center/1.9rem no-repeat;
  margin: 0 1rem;
}
.subscribe-wrap .subscribe-box .subscribe-box-cont.flex {
  display: flex;
  gap: 3rem;
}
.subscribe-wrap .subscribe-box .subscribe-box-cont.flex > div {
  width: 100%;
}
@media (max-width: 1280px) {
  .subscribe-wrap .subscribe-box dt {
    padding: 0 2rem 5rem 2rem;
  }
  .subscribe-wrap .subscribe-box .subscribe-box-cont p.price {
    top: -7rem;
  }
  .subscribe-wrap .subscribe-box .subscribe-box-cont.flex {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .subscribe-wrap .subscribe-box {
    border-width: 0.1rem;
    border-bottom: none;
    padding: 1.5rem 0 0;
  }
  .subscribe-wrap .subscribe-box dt {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 2rem 2rem 0 0;
    gap: 0.5rem 1rem;
    padding: 1.4rem 2rem 0;
    min-height: auto;
  }
  .subscribe-wrap .subscribe-box dt h3 {
    font-size: 2.4rem;
    color: #fff;
    margin: 0;
  }
  .subscribe-wrap .subscribe-box dt .category {
    gap: 0.5rem;
  }
  .subscribe-wrap .subscribe-box dt .category span {
    font-size: 1.2rem;
    border-radius: 0.4rem;
    padding: 0 0.8rem;
    line-height: 2rem;
  }
  .subscribe-wrap .subscribe-box dd {
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 0 0 2rem 2rem;
  }
  .subscribe-wrap .subscribe-box dd a {
    background-color: #fff;
    border-radius: 0.8rem;
    max-width: none;
    line-height: 3.5rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: #000;
  }
  .subscribe-wrap .subscribe-box dd + dt {
    margin-top: 1.5rem;
  }
  .subscribe-wrap .subscribe-box .subscribe-box-cont {
    background-color: transparent;
    padding: 0;
  }
  .subscribe-wrap .subscribe-box .subscribe-box-cont h4 {
    font-size: 1.6rem;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0.8rem;
  }
  .subscribe-wrap .subscribe-box .subscribe-box-cont p {
    font-size: 1.4rem;
    margin-top: 0.6rem;
  }
  .subscribe-wrap .subscribe-box .subscribe-box-cont p strong {
    font-size: 1.2rem;
  }
  .subscribe-wrap .subscribe-box .subscribe-box-cont p.ico-1 {
    padding-left: 2.7rem;
    background-size: 1.9rem auto;
  }
  .subscribe-wrap .subscribe-box .subscribe-box-cont p.ico-2 {
    padding-left: 5.9rem;
    background-size: 5.1rem auto;
  }
  .subscribe-wrap .subscribe-box .subscribe-box-cont p.ico-3 {
    padding-left: 2.4rem;
    background-size: 1.6rem auto;
  }
  .subscribe-wrap .subscribe-box .subscribe-box-cont p.ico-4 {
    padding-left: 3.1rem;
    background-size: 2.3rem auto;
  }
  .subscribe-wrap .subscribe-box .subscribe-box-cont p.price {
    flex-direction: column;
    position: static;
    color: #fff;
    margin-top: 2rem;
  }
  .subscribe-wrap .subscribe-box .subscribe-box-cont p.price strong {
    font-size: 1.6rem;
    color: #fff;
  }
  .subscribe-wrap .subscribe-box .subscribe-box-cont p.price .gray {
    flex-direction: column;
    font-size: 1.2rem;
    color: #fff;
  }
  .subscribe-wrap .subscribe-box .subscribe-box-cont p.price .gray span {
    color: rgba(255, 255, 255, 0.7);
  }
  .subscribe-wrap .subscribe-box .subscribe-box-cont p.price .gray strong {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration-color: #fff;
  }
  .subscribe-wrap .subscribe-box .subscribe-box-cont p.price .gray .down {
    font-size: 1.4rem;
    background-position: right 0.5rem center;
    padding: 0 2rem 0 0.5rem;
    line-height: 1.8rem;
  }
  .subscribe-wrap .subscribe-box .subscribe-box-cont p.price .arr {
    width: 1.4rem;
    height: 1.4rem;
    background-image: url("../img/contents/ico-subscribe-arr-m.png");
    background-size: 1.4rem;
    margin: 0.8rem 0;
  }
  .subscribe-wrap .subscribe-box .subscribe-box-cont.flex {
    gap: 2rem;
  }
  .subscribe-wrap .subscribe-box .subscribe-box-cont.flex p.price {
    margin-top: 0;
  }
}
.subscribe-wrap h3 {
  font-size: 3.2rem;
  font-weight: 800;
  margin: 1.8rem 0;
}
@media (max-width: 768px) {
  .subscribe-wrap h3 {
    font-size: 2.4rem;
    margin: 2.8rem 0 1.2rem;
  }
}

/* 04 패키지 */
.package-wrap {
  background-color: #918567;
}
.package-wrap .sub {
  font-size: 2rem;
  font-weight: 700;
  padding: 1.5rem 0;
  border-top: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
}
.package-wrap .package-tit {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem 2rem;
  margin-top: 2.5rem;
}
.package-wrap .package-tit .tag {
  border-radius: 0.8rem;
  border: none;
  background-color: #F6FF00;
  font-size: 2rem;
  font-weight: 700;
  color: #918567;
  padding: 0 0.8rem;
  line-height: 3.5rem;
}
.package-wrap .package-tit h2 {
  font-size: 5.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0 1.5rem;
}
.package-wrap .package-tit .price {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 3.2rem;
  font-weight: 800;
  margin: 1.5rem 0;
}
.package-wrap .package-tit .price .tag {
  border-radius: 0.4rem;
  font-size: 1.6rem;
  padding: 0 0.4rem;
  line-height: 2.5rem;
}
.package-wrap .package-box dt {
  background-color: #fff;
  color: #918567;
  margin: 3rem 0;
  padding: 1rem 1.5rem;
}
.package-wrap .package-box dt h3 {
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 800;
  vertical-align: middle;
}
.package-wrap .package-box dt .tag {
  border-color: #918567;
  border-width: 0.2rem;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0 0.8rem;
  margin-left: 0.5rem;
  line-height: 2.6rem;
  vertical-align: middle;
}
.package-wrap .package-box dt p {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.3rem 0;
}
.package-wrap .package-box dd a {
  height: 7rem;
  border-radius: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F6FF00;
  transition: all 0.5s;
  font-size: 2.4rem;
  font-weight: 800;
  color: #000;
}
.package-wrap .package-box dd a:hover {
  background-color: #fff;
}
@media (max-width: 768px) {
  .package-wrap .sub {
    font-size: 1.4rem;
    padding: 1rem 0;
    border-width: 0.1rem;
  }
  .package-wrap .package-tit {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
    padding-bottom: 1rem;
  }
  .package-wrap .package-tit .tag {
    border-radius: 0.4rem;
    font-size: 1rem;
    padding: 0 0.4rem;
    line-height: 2rem;
  }
  .package-wrap .package-tit h2 {
    font-size: 2.4rem;
    flex-direction: column-reverse;
    align-items: flex-start;
    width: 100%;
    padding: 1rem 0 0;
  }
  .package-wrap .package-tit .price {
    gap: 0.5rem;
    font-size: 1.4rem;
    margin: 0;
  }
  .package-wrap .package-tit .price .tag {
    font-size: 1rem;
    padding: 0 0.4rem;
    line-height: 2rem;
  }
  .package-wrap .package-box dt {
    background-color: transparent;
    color: #fff;
    margin: 0;
    padding: 1rem 0;
  }
  .package-wrap .package-box dt h3 {
    font-size: 1.6rem;
  }
  .package-wrap .package-box dt .tag {
    border: none;
    background-color: #fff;
    border-radius: 0.4rem;
    font-size: 1rem;
    padding: 0 0.4rem;
    margin-left: 0;
    color: #918567;
    line-height: 2rem;
  }
  .package-wrap .package-box dt p {
    font-size: 1.4rem;
    margin-bottom: 0;
  }
  .package-wrap .package-box dd a {
    height: 4rem;
    border-radius: 1rem;
    font-size: 1.6rem;
  }
}

/* 05 이벤트 */
.table {
  margin-bottom: 3.5rem;
  border-top: 0.2rem solid #fff;
}
.table tr {
  border-bottom: 0.2rem solid #fff;
}
.table th, .table td {
  font-size: 2rem;
  font-weight: 600;
}
.table th + td, .table td + td {
  border-left: 0.2rem solid #fff;
}
.table th.left, .table td.left {
  text-align: left;
  border-left: none;
}
.table th.right, .table td.right {
  text-align: right !important;
}
.table th {
  background-color: #fff;
  font-weight: 700;
  padding: 0.7rem 1rem;
  word-break: keep-all;
}
.table td {
  vertical-align: top;
  padding: 0.8rem 1rem;
}
.table td .tag {
  font-size: 1.6rem;
  border-width: 0.2rem;
  border-radius: 1.5rem;
}
.table.left th, .table.left td {
  text-align: left;
  border-left: none;
}
.table.green th {
  color: #08825B;
}
.table.brown tr {
  transition: all 0.5s;
}
.table.brown tr .yellow, .table.brown tr .white {
  font-size: 1.5rem;
  margin-right: 0.8rem;
  transition: all 0.5s;
}
.table.brown tr .yellow {
  color: #F6FF00;
}
.table.brown tr.active, .table.brown tr:hover {
  background-color: #fff;
  color: #918567;
}
.table.brown tr.active .yellow, .table.brown tr.active .white, .table.brown tr:hover .yellow, .table.brown tr:hover .white {
  color: #918567;
}
.table.brown tr.required {
  background-color: #000 !important;
  color: #fff !important;
}
.table.brown tr.required .yellow {
  color: #F6FF00;
}
.table.brown tr.required .white {
  color: #fff;
}
@media (max-width: 768px) {
  .table {
    margin-bottom: 2rem;
    border-width: 0.1rem;
  }
  .table tr {
    border-width: 0.1rem;
  }
  .table th, .table td {
    font-size: 1.4rem;
  }
  .table th + td, .table td + td {
    border-width: 0.1rem;
  }
  .table td .tag {
    font-size: 1.4rem;
    border: none;
    padding: 0;
    line-height: 1.5;
  }
  .table.brown tr .yellow, .table.brown tr .white {
    font-size: 1.2rem;
    margin-right: 0.4rem;
  }
  .table.mobile colgroup {
    display: none;
  }
  .table.mobile tr {
    display: block;
    padding: 1.2rem 0;
  }
  .table.mobile th, .table.mobile td {
    display: block;
    text-align: center !important;
    font-size: 1.2rem;
    padding: 0.1rem 1rem;
  }
  .table.mobile th.title, .table.mobile td.title {
    font-size: 1.6rem;
    font-weight: 700;
  }
}

.toggle-list {
  margin-top: 3.5rem;
}
.toggle-list > li:not(:last-child) {
  margin-bottom: 3rem;
}
.toggle-list > li h3 {
  background-color: #fff;
  font-size: 3.2rem;
  font-weight: 800;
  padding: 1rem 0.5rem 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}
.toggle-list > li h3 span {
  flex: 1;
}
.toggle-list > li h3 button {
  text-indent: -9999px;
  overflow: hidden;
  width: 6rem;
  height: 5.2rem;
  background-size: 3.9rem auto;
  background-color: transparent;
}
.toggle-list .toggle-list-cont {
  display: none;
  padding: 0 1.5rem;
}
.toggle-list .toggle-list-cont p {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 3rem;
}
.toggle-list .toggle-list-cont p + p {
  margin-top: 0.3rem;
}
.toggle-list .toggle-list-cont p strong {
  font-weight: 600;
  color: #F6FF00;
}
.toggle-list .toggle-list-cont dl div {
  margin-top: 3rem;
}
.toggle-list .toggle-list-cont dl dt {
  position: absolute;
  font-size: 2rem;
  font-weight: 700;
}
.toggle-list .toggle-list-cont dl dd {
  padding-left: 50%;
  font-size: 2rem;
  font-weight: 600;
}
.toggle-list .toggle-list-cont dl dd::before {
  content: "";
  width: 2rem;
  height: 0.1rem;
  background-color: #fff;
  margin: 0 0.6rem 0.6rem 0;
  display: inline-block;
}
.toggle-list .toggle-list-cont dl dd + dd {
  margin-top: 1.5rem;
}
.toggle-list .toggle-list-cont dl dd strong {
  font-weight: 600;
  color: #F6FF00;
}
.toggle-list .toggle-list-cont dl dd .dot-list li::before {
  content: "•";
  margin: 0 0.5rem;
}
.toggle-list .toggle-list-cont dl dd.type2::before {
  content: "※";
  width: 1.4rem;
  height: 0;
  background-color: transparent;
  margin: 0 0.6rem 0 0;
}
.toggle-list.green > li h3 {
  color: #08825B;
}
.toggle-list.green > li h3 button.open {
  background-image: url("../img/contents/ico-toggle-green-open.png");
}
.toggle-list.green > li h3 button.close {
  background-image: url("../img/contents/ico-toggle-green-close.png");
}
.toggle-list.brown > li h3 {
  color: #918567;
}
.toggle-list.brown > li h3 button.open {
  background-image: url("../img/contents/ico-toggle-brown-open.png");
}
.toggle-list.brown > li h3 button.close {
  background-image: url("../img/contents/ico-toggle-brown-close.png");
}
.toggle-list.mint > li {
  color: #000;
}
.toggle-list.mint > li h3 {
  background-color: #000;
  color: #8EEECF;
}
.toggle-list.mint > li h3 button.open {
  background-image: url("../img/contents/ico-toggle-mint-open.png");
}
.toggle-list.mint > li h3 button.close {
  background-image: url("../img/contents/ico-toggle-mint-close.png");
}
.toggle-list.mint .toggle-list-cont p strong {
  color: #FF0000;
}
.toggle-list.mint .toggle-list-cont dl dd::before {
  background-color: #000;
}
.toggle-list.mint .toggle-list-cont dl dd strong {
  color: #FF0000;
}
@media (max-width: 768px) {
  .toggle-list {
    margin-top: 2rem;
  }
  .toggle-list > li {
    background-color: #E2E2E2;
    border-radius: 1rem;
    padding-bottom: 1rem;
  }
  .toggle-list > li:not(:last-child) {
    margin-bottom: 1.5rem;
  }
  .toggle-list > li h3 {
    background-color: transparent !important;
    font-size: 1.6rem;
    color: #000 !important;
    padding: 1.5rem 0.5rem 0.5rem 1.5rem;
  }
  .toggle-list > li h3 button {
    width: 4rem;
    height: 2rem;
    background-size: 2.1rem auto;
  }
  .toggle-list > li h3 button.open {
    background-image: url("../img/contents/ico-toggle-open-m.png") !important;
  }
  .toggle-list > li h3 button.close {
    background-image: url("../img/contents/ico-toggle-close-m.png") !important;
  }
  .toggle-list .toggle-list-cont {
    padding-bottom: 0.5rem;
  }
  .toggle-list .toggle-list-cont p {
    font-size: 1.4rem;
    margin-top: 1.2rem;
  }
  .toggle-list .toggle-list-cont p + p {
    margin-top: 0.2rem;
  }
  .toggle-list .toggle-list-cont p strong {
    color: #FF0000;
  }
  .toggle-list .toggle-list-cont dl div {
    margin-top: 1.2rem;
  }
  .toggle-list .toggle-list-cont dl div:last-child dd:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .toggle-list .toggle-list-cont dl dt {
    position: static;
    font-size: 1.6rem;
    font-weight: 800;
    color: #000;
  }
  .toggle-list .toggle-list-cont dl dd {
    padding: 0.5rem 0 0.5rem;
    font-size: 1.4rem;
    color: #000;
    border-bottom: 0.1rem dashed #000;
  }
  .toggle-list .toggle-list-cont dl dd::before {
    width: 1.5rem;
    background-color: #000;
    margin: 0 0.4rem 0.5rem 0;
  }
  .toggle-list .toggle-list-cont dl dd + dd {
    margin-top: 0.2rem;
  }
  .toggle-list .toggle-list-cont dl dd strong {
    color: #FF0000;
  }
  .toggle-list .toggle-list-cont dl dd .dot-list li::before {
    margin: 0 0.4rem;
  }
  .toggle-list .toggle-list-cont dl dd.type2::before {
    width: 1.1rem;
    margin: 0 0.4rem 0 0;
  }
}

.image-list li {
  margin-top: 1.5rem;
}
.image-list li a {
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  text-align: center;
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2.5rem 2.5rem 3rem;
  transition: all 0.5s;
}
.image-list li a::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  opacity: 0;
  transition: all 0.5s;
}
.image-list li a:hover {
  transform: scale(1.02);
  box-shadow: 0 0 3rem 0 rgba(0, 0, 0, 0.2);
}
.image-list li a:hover::after {
  opacity: 1;
}
.image-list li .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto;
}
.image-list li .tag {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 0 1rem;
  line-height: 3.4rem;
}
.image-list li .title {
  position: relative;
  z-index: 1;
  font-size: 5.2rem;
  font-weight: 800;
  word-break: keep-all;
}
.image-list li .desc {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  font-weight: 700;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .image-list li {
    margin-top: 1rem;
  }
  .image-list li a {
    border-radius: 1rem;
    min-height: 18rem;
    padding: 1.5rem 1.5rem 2rem;
  }
  .image-list li .tag {
    font-size: 1.2rem;
    border-radius: 0.4rem;
    padding: 0 0.8rem;
    line-height: 2rem;
  }
  .image-list li .title {
    font-size: 2.4rem;
  }
  .image-list li .desc {
    font-size: 1.4rem;
  }
}

/* --contents.css *//*# sourceMappingURL=style.css.map */