@charset "UTF-8";
/* 🔹 공통 Fade 요소 */
/* 🔹 폰트 */
@font-face {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 800;
  src: url(../../fonts/NotoSansKR-Black.woff2) format("woff2"), url(../../fonts/NotoSansKR-Black.otf) format("opentype");
}
@font-face {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 700;
  src: url(../../fonts/NotoSansKR-Bold.woff2) format("woff2"), url(../../fonts/NotoSansKR-Bold.otf) format("opentype");
}
@font-face {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 600;
  src: url(../../fonts/NotoSansKR-Medium.woff2) format("woff2"), url(../../fonts/NotoSansKR-Medium.otf) format("opentype");
}
@font-face {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 500;
  src: url(../../fonts/NotoSansKR-Regular.woff2) format("woff2"), url(../../fonts/NotoSansKR-Regular.otf) format("opentype");
}
@font-face {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 400;
  src: url(../../fonts/NotoSansKR-DemiLight.woff2) format("woff2"), url(../../fonts/NotoSansKR-DemiLight.otf) format("opentype");
}
@font-face {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 300;
  src: url(../../fonts/NotoSansKR-Light.woff2) format("woff2"), url(../../fonts/NotoSansKR-Light.otf) format("opentype");
}
@font-face {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 200;
  src: url(../../fonts/NotoSansKR-Thin.woff2) format("woff2"), url(../../fonts/NotoSansKR-Thin.otf) format("opentype");
}
@font-face {
  font-family: "Big Hit 201110";
  font-style: normal;
  font-weight: 500;
  src: url(../../fonts/HYBERegular.woff2) format("woff2"), url(../../fonts/HYBERegular.woff) format("woff");
}
@font-face {
  font-family: "Big Hit 201110";
  font-style: normal;
  font-weight: 700;
  src: url(../../fonts/HYBEBold.woff2) format("woff2"), url(../../fonts/HYBEBold.woff) format("woff");
}
/* 🔹 공통 초기화 */
html * {
  outline: 0;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  letter-spacing: -0.01em;
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

html, body {
  font-family: "Noto Sans KR", "Big Hit 201110", sans-serif;
  font-weight: normal;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input,
textarea, p, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  margin: 0;
  padding: 0;
  border: 0;
}

fieldset, img {
  border: 0 none;
}

dl, ul, ol, menu, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
  color: inherit;
}

.blind {
  width: 0;
  height: 0;
  overflow: hidden;
  display: block;
}

.font-test {
  font-family: "Hahmlet", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

/* 🔹 비디오 인트로 */
.intro {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease;
}
.intro.fade-out {
  opacity: 0;
  pointer-events: none;
}
.intro .sound-wrap {
  position: absolute;
  top: 35px;
  right: 35px;
  z-index: 1000;
  display: flex;
  align-items: center;
}
.intro .sound-wrap .sound-icon {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.intro .sound-wrap .sound-icon.hidden {
  display: none;
}
.intro video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.intro .btn-skip {
  position: absolute;
  width: 338px;
  height: 41px;
  background: url(../images/section1/btn-skip.png?v20250709) no-repeat center center;
  background-size: contain;
  border: none;
  cursor: default;
  bottom: 60px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.5s;
}
.intro .btn-skip.on {
  cursor: pointer;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0px);
}

/* 🔹 전환 효과 */
.wrap-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: transparent;
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

#sprite-canvas {
  max-width: 100vw;
  max-height: 100vh;
  width: auto;
  height: auto;
  display: block;
}

/* 🔹 Gnb */
.gnb {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 104px;
  display: flex;
  justify-content: space-between;
  padding: 10px 30px 0 30px;
  z-index: 100;
}
.gnb .logo {
  margin-top: 5px;
}
.gnb.news {
  position: absolute;
}
.gnb.cookieterms {
  display: none;
}
.gnb .gnb-list {
  list-style: none;
  display: flex;
  margin-top: -15px;
}
.gnb .gnb-list a {
  display: block;
  overflow: hidden;
  height: 121px;
  text-indent: -1000px;
  background-position: center top;
}
.gnb .gnb-list a:hover, .gnb .gnb-list a.active {
  background-position: center bottom;
}
.gnb .gnb-list a.main {
  width: 170px;
  background-image: url("../images/common/gnb/menu-1.png");
}
.gnb .gnb-list a.media {
  width: 170px;
  background-image: url("../images/common/gnb/menu-2.png");
}
.gnb .gnb-list a.news {
  position: relative;
  top: 22px;
  left: 10px;
  text-indent: inherit;
  width: 170px;
  background: none;
}
.gnb .gnb-list .ml-28 {
  margin-left: -28px;
}

/* 🔹 footer */
.footer {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 0 30px;
  z-index: 1;
}
.footer.news {
  bottom: 0;
  position: relative;
  padding: 50px 30px 20px;
}
.footer .logo-list {
  list-style: none;
  display: flex;
  gap: 30px;
}
.footer .logo-list img:nth-child(1) {
  cursor: pointer;
}
.footer .copyrights {
  position: relative;
  display: flex;
}
.footer .copyrights img {
  width: 370px;
  height: 14px;
}

/* 🔹 Container */
.container {
  position: relative;
  width: 100%;
  height: 100vh;
}
.container.swiper {
  overflow: hidden;
}
.container .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2.7777777778vw;
  color: white;
  position: relative;
}
.container .swiper-button-next, .container .swiper-button-prev {
  color: white;
}
.container .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
}
.container .swiper-pagination-bullet-active {
  background: white;
}
.container.sub {
  height: auto;
}

/* 🔹 Slide 1 */
.slide1 {
  background: url(../images/section1/bg.jpg) center center no-repeat;
  background-size: cover;
}
.slide1 .video-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slide1 .video-area .mainIntroVideo {
  position: absolute;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: 0;
}
@media all and (min-width: 2560px) {
  .slide1 .video-area .mainIntroVideo {
    -o-object-position: center top;
       object-position: center top;
  }
}
.slide1 .video-area .video-cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  background-size: cover;
  transform: translate3d(0, 0, 0);
}
.slide1 .inner {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  flex-direction: column;
}
.slide1 .btn-play {
  position: relative;
  margin-top: 280px;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.5s;
}
.slide1 .title {
  margin-top: 0px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.8s;
}
.slide1 .title img {
  width: 743px;
  height: 322px;
}
.slide1 .title-logo {
  margin-top: -90px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 1s;
}
.slide1 .title-logo img {
  width: 359px;
  height: 99px;
}
.slide1 .scr-bottom-wrap {
  position: absolute;
  width: 100%;
  height: 56px;
  display: flex;
  justify-content: center;
  bottom: 0px;
  z-index: 99;
}
.slide1 .scr-bottom-wrap .scr-bottom {
  position: relative;
  width: 52px;
  height: 56px;
  left: 3px;
  background: url("../images/common/scroll-bottom.png") no-repeat 0 0;
  animation: bounceUpDown 1s ease-in-out infinite;
}
.slide1.on.swiper-slide-active .btn-play,
.slide1.on.swiper-slide-active .title,
.slide1.on.swiper-slide-active .title-logo, .slide1.swiper-slide-active .btn-play,
.slide1.swiper-slide-active .title,
.slide1.swiper-slide-active .title-logo {
  opacity: 1;
  transform: translateY(0px);
}
.slide1.on .btn-play {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.1s;
}
.slide1.on .title {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.3s;
}
.slide1.on .title-logo {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.5s;
}

@keyframes bounceUpDown {
  0%, 100% {
    top: 0;
  }
  50% {
    top: -20px; /* 위로 이동할 거리 */
  }
}
/* 🔹 Slide 2 */
.slide2 {
  background: url(../images/section2/bg.jpg) center top no-repeat;
  background-size: cover;
}
.slide2 .inner {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  flex-direction: column;
}
.slide2 .title {
  margin-top: -50px;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.6s;
}
.slide2 .title img {
  width: 538px;
  height: 220px;
}
.slide2 .swiper-wrap {
  display: block;
  position: relative;
  width: 1520px;
  overflow: hidden;
  top: -20px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 1s;
}
.slide2 .swiper-wrap .swiper-container {
  padding: 0 0 10px 0;
}
.slide2 .swiper-wrap .swiper-slide {
  width: 842px !important;
  opacity: 0 !important;
}
.slide2 .swiper-wrap .swiper-slide.swiper-slide-active, .slide2 .swiper-wrap .swiper-slide.swiper-slide-next, .slide2 .swiper-wrap .swiper-slide.swiper-slide-prev {
  opacity: 1 !important;
}
.slide2 .swiper-wrap .swiper-slide .img {
  display: block;
  transition: all 0.32s;
  transform: scale(0.65);
  background-color: #000;
  font-size: 0;
  box-shadow: 0 0 10px 0px #000;
}
.slide2 .swiper-wrap .swiper-slide .img img {
  transition: all 0.32s;
  opacity: 0.5;
  cursor: pointer;
}
.slide2 .swiper-wrap .swiper-slide-active {
  position: relative;
  z-index: 10;
}
.slide2 .swiper-wrap .swiper-slide-active .img {
  transform: scale(1);
}
.slide2 .swiper-wrap .swiper-slide-active .img img {
  opacity: 1;
}
.slide2 .swiper-wrap .media-swiper-button-prev,
.slide2 .swiper-wrap .media-swiper-button-next {
  width: 81px;
  height: 141px;
  background: url(../images/section2/btn-right.png) no-repeat center;
  background-size: contain;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -77px;
  margin-left: 375px;
  z-index: 150;
  cursor: pointer;
}
.slide2 .swiper-wrap .media-swiper-button-prev {
  background: url(../images/section2/btn-left.png) no-repeat center;
  background-size: contain;
  right: auto;
  left: 50%;
  margin-left: -450px;
}
.slide2 .btn-youtube {
  width: 295px;
  height: 55px;
  background: url(../images/section2/btn-youtube.png) no-repeat center center;
  background-size: contain;
  border: none;
  cursor: pointer;
  text-indent: -10000px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 1.2s;
  margin-top: 20px;
}
.slide2.swiper-slide-active .title,
.slide2.swiper-slide-active .swiper-wrap,
.slide2.swiper-slide-active .btn-youtube {
  opacity: 1;
  transform: translateY(0px);
}

/* 🔹 NEWS */
.container .sub-bg {
  position: absolute;
  width: 100%;
  height: 208px;
  text-align: center;
  background-color: black;
  overflow: hidden;
}
.container .sub-bg img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 2560px;
  height: 208px;
}
.container .contents_news {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding-top: 18px;
  min-height: calc(100vh - 40px);
  text-align: center;
}
.container .contents_news .title {
  position: relative;
  padding-bottom: 84px;
}
.container .contents_news .title img {
  width: 505px;
  height: 219px;
}
.container .contents_news .news-list-box {
  position: relative;
  width: 1180px;
  left: 50%;
  transform: translateX(-50%);
}
.container .contents_news .news-list-box .list-top {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 0 0 0;
}
.container .contents_news .news-list-box .list-top .sns-list {
  list-style: none;
  display: flex;
  gap: 10px;
}
.container .contents_news .news-list-box .list-top .sns-list img {
  height: 32px;
}
.container .contents_news .news-list-box .list-top .search {
  display: flex;
}
.container .contents_news .news-list-box .list-top .search .input-box {
  position: relative;
}
.container .contents_news .news-list-box .list-top .search .input-box .btn-search {
  position: absolute;
  top: 8px;
  right: 10px;
}
.container .contents_news .news-list-box .list {
  position: relative;
}
.container .contents_news .news-list-box .list .news-list {
  position: relative;
  margin: 20px 0;
  border-top: 5px solid #eeeeee;
}
.container .contents_news .news-list-box .list .news-list li {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  min-height: 84px;
  border-bottom: 1px solid #eeeeee;
}
.container .contents_news .news-list-box .list .news-list li .list-title {
  font-size: 18px;
  color: #6f6f6f;
  width: 900px;
  text-align: left;
  word-wrap: break-word;
  display: flex;
  align-items: center;
}
.container .contents_news .news-list-box .list .news-list li .list-title a {
  line-height: 1.5;
}
.container .contents_news .news-list-box .list .news-list li .list-title a.opened {
  color: #afafaf;
}
.container .contents_news .news-list-box .list .news-list li .list-title .new {
  padding-left: 20px;
}
.container .contents_news .news-list-box .list .news-list li .writer {
  background: url(../images/news/delimiter.png) left center no-repeat;
  width: 220px;
}
.container .contents_news .news-list-box .list .news-list li .writer .logo img {
  width: 100px;
  height: 28px;
}
.container .contents_news .news-list-box .list .news-list li .writer .date {
  font-size: 16px;
  color: #8f8f8f;
}
.container .contents_news .news-list-box .list .msgNoItem {
  display: none;
  position: relative;
  margin: 20px 0;
  border-top: 5px solid #eeeeee;
  text-align: center;
  padding-top: 50px;
  font-size: 18px;
  color: #afafaf;
}
.container .contents_news .news-list-box .button-area {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 0 0;
}
.container .contents_news .news-list-box .button-area button {
  position: relative;
}
.container .contents_news .news-view-box {
  position: relative;
  width: 1180px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
  padding: 0 20px;
  display: none;
}
.container .contents_news .news-view-box .view-title {
  display: block;
  font-size: 24px;
  color: #6f6f6f;
  width: 100%;
  text-align: left;
  word-wrap: break-word;
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.container .contents_news .news-view-box .view-title .new {
  margin-left: 20px;
}
.container .contents_news .news-view-box .writer {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.container .contents_news .news-view-box .writer .logo img {
  width: 100px;
  height: 28px;
}
.container .contents_news .news-view-box .writer .date {
  font-size: 16px;
  color: #8f8f8f;
}
.container .contents_news .news-view-box .editor-contents {
  position: relative;
  font-size: 16px;
  color: #6f6f6f;
  text-align: initial;
  padding: 24px 0;
  border-top: 1px solid #eeeeee;
  word-wrap: break-word;
  line-height: 1.5;
}
.container .contents_news .news-view-box .editor-contents ul, .container .contents_news .news-view-box .editor-contents ol {
  padding-left: 50px;
}
.container .contents_news .news-view-box .editor-contents dl, .container .contents_news .news-view-box .editor-contents ul, .container .contents_news .news-view-box .editor-contents ol, .container .contents_news .news-view-box .editor-contents menu, .container .contents_news .news-view-box .editor-contents li {
  list-style: inherit;
}
.container .contents_news .news-view-box .file-list {
  position: relative;
  font-size: 16px;
  color: #8f8f8f;
  text-align: left;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
}
.container .contents_news .news-view-box .button-area {
  position: relative;
  display: flex;
  justify-content: start;
  padding: 24px 0 40px 0;
}

/* Select Box (Dropdown) 스타일링 */
.dropdown-group {
  display: flex;
  gap: 20px;
  position: relative;
  padding-top: 30px;
  z-index: 20;
}

.custom-dropdown {
  position: relative;
  width: 126px;
  color: #454545;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -1px;
}

.dropdown-button {
  width: 100%;
  height: 36px;
  padding: 6px 20px;
  background: #fff;
  border: 1px solid #c8c8c8;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -1px;
  text-align: left;
}
.dropdown-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 16px;
  height: 10px;
  background: url("../images/common/arrow-down.png") no-repeat center;
  background-size: contain;
}

.dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 100%;
  background: #fff;
  display: none;
  z-index: 1;
}
.dropdown-list li {
  display: flex;
  height: 36px;
  cursor: pointer;
  border: 1px solid #c8c8c8;
  transition: background 0.2s;
}
.dropdown-list li ~ li {
  border-top: none;
}
.dropdown-list:hover {
  background: #fff;
  color: #454545;
}
.dropdown-list span {
  margin: auto 0;
  padding: 0 20px;
}

/* input box 스타일링 */
.custom-input {
  position: relative;
  width: 230px;
  height: 36px;
  padding: 0 39px 0 10px;
  border: 1px solid #c8c8c8;
  background: #fff;
  color: #454545;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -1px;
  outline: none;
}

@media screen and (max-width: 1024px) {
  .swiper-wrap {
    transform: scale(0.7) !important;
  }
  .news-list-box {
    max-width: 100%;
    padding: 0 20px;
  }
}
/* 🔹 쿠키 동의 */
.floating-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 34px 40px;
  background-color: #fff;
  z-index: 25;
}
.floating-cookie.closed {
  transform: translateY(100%);
  transition: transform 0.3s;
}
.floating-cookie.closed2 {
  display: none;
}
.floating-cookie .floating-cookie-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 40px;
}
.floating-cookie .floating-cookie-text {
  flex: 1 1 1%;
  width: 1%;
  color: var(--primary);
  font-size: 14px;
  font-family: "Noto Sans KR", sans-serif;
  line-height: 1.5714285714;
}
.floating-cookie .floating-cookie-text a {
  text-decoration: underline;
}
.floating-cookie .floating-cookie-btn-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.floating-cookie .floating-cookie-btn-link {
  display: inline-block;
  line-height: 2.1428571429;
  color: #10182f;
  border-bottom: 1px solid #10182f;
  margin-right: 72px;
  font-size: 14px;
  font-family: "Noto Sans KR", sans-serif;
  background: none;
}
.floating-cookie .floating-cookie-btn {
  display: inline-block;
  width: 180px;
  height: 45px;
  line-height: 45px;
  color: #000;
  font-weight: 600;
  background-color: #fff;
  border-radius: 45px;
  text-align: center;
  font-size: 14px;
  border: 1px solid #000;
}
.floating-cookie .floating-cookie-btn.floating-cookie-btn-primary {
  color: #fff;
  background-color: #000;
}
.floating-cookie .floating-cookie-btn + .floating-cookie-btn {
  margin-left: 18px;
}

/* 🔹 쿠키 선택 동의 팝업 */
.pop-cookie {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 0 45px;
}
.pop-cookie.opened {
  display: flex;
}
.pop-cookie.closed {
  display: none;
}
.pop-cookie .pop-wrap {
  position: relative;
  width: 100%;
  max-width: 860px;
  background-color: #fff;
  padding: 60px 20px 100px 30px;
  height: 100%;
  max-height: calc(100dvh - 150px);
  font-size: 14px;
  line-height: 1.7142857143;
  color: #000;
}
.pop-cookie .pop-title-1 {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
.pop-cookie .link {
  font-weight: 700;
  color: #525252;
  text-decoration: underline;
  display: inline-block;
}
.pop-cookie .text-link {
  font-weight: 600;
  text-decoration: underline;
}
.pop-cookie .pop-body {
  max-height: 100%;
  overflow-y: auto;
}
.pop-cookie .pop-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  box-shadow: 0px 4px 23px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 28px;
  gap: 0 16px;
}
.pop-cookie .pop-footer [class*=btn] {
  color: #fff;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4285714286;
  border-radius: 30px;
  background-color: #000;
}
.pop-cookie .pop-footer .btn-primary {
  background-color: #10182f;
}
.pop-cookie .pop-footer .btn-secondary {
  color: #000;
  border: 1px solid #000;
  background-color: #fff;
}
.pop-cookie .cookie-check-list {
  margin-top: 40px;
}
.pop-cookie .btn-switch {
  position: absolute;
  top: 25px;
  right: 25px;
}

.cookie-check-list {
  border: 1px solid #6e7191;
  border-radius: 10px;
}
.cookie-check-list .item {
  position: relative;
  padding: 25px;
  font-size: 14px;
  line-height: 1.4285714286;
}
.cookie-check-list .item + .item {
  border-top: 1px solid #6e7191;
}
.cookie-check-list .cookie-check-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.25;
}

.btn-switch {
  position: relative;
}
.btn-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.btn-switch .btn-switch-toggle {
  position: relative;
  display: block;
  width: 36px;
  height: 20px;
  border-radius: 12px;
  border: 1px solid #617275;
  background-color: #e7eaeb;
  cursor: pointer;
}
.btn-switch .btn-switch-toggle::before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  top: 1px;
  left: 2px;
  box-sizing: border-box;
  border-radius: 100%;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.25);
  border: 1px solid #617275;
  background: #9eacae url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 1L1 9M1 1L9 9' stroke='%23E7EAEB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") center/8px no-repeat;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.btn-switch input:checked + .btn-switch-toggle {
  border-color: #8d4ffc;
  background-color: #8d4ffc;
}
.btn-switch input:checked + .btn-switch-toggle::before {
  background: #fff;
  border-color: #fff;
  left: 16px;
}

.btn-set-cookie {
  display: inline-block;
  padding: 6px 12px;
  vertical-align: middle;
  background-color: #000;
  color: #fff;
  font-size: 0.5em;
  border-radius: 4px;
  margin-left: 12px;
}

@media all and (max-width: 1440px) {
  .floating-cookie .floating-cookie-btn-link {
    margin-right: 40px;
  }
  .floating-cookie .floating-cookie-btn {
    width: 120px;
  }
  .floating-cookie .floating-cookie-btn + .floating-cookie-btn {
    margin-left: 10px;
  }
}
@media all and (max-width: 1199px) {
  .table-wrap {
    width: 100%;
    overflow-x: auto;
  }
  .table-wrap table {
    width: 800px;
  }
}
@media all and (max-width: 768px) {
  .pop-cookie .pop-wrap {
    padding: 11.1111vw 5.55556vw;
    font-size: 2.77778vw;
  }
  .pop-cookie .pop-title-1 {
    font-size: 5vw;
    margin-bottom: 4.166667vw;
  }
  .pop-cookie .pop-body .mCSB_container {
    margin-right: 0;
  }
  .pop-cookie .pop-footer {
    padding: 2.2222vw 5.55556vw;
    height: 11.11111vw;
    gap: 0 2.77778vw;
  }
  .pop-cookie .pop-footer [class*=btn] {
    padding: 0.69444vw 5.55556vw;
    width: 100%;
    font-size: 2.5vw;
    font-weight: 500;
  }
  .cookie-check-list .item {
    font-size: 2.77778vw;
    padding: 6.94444vw;
  }
  .cookie-check-list .cookie-check-title {
    font-size: 3.88889vw;
    margin-bottom: 4.166667vw;
  }
  .floating-cookie {
    padding: 30px 36px;
  }
  .floating-cookie .floating-cookie-wrap {
    display: block;
    text-align: center;
  }
  .floating-cookie .floating-cookie-text {
    width: 100%;
    font-size: 3.3333vw;
  }
  .floating-cookie .floating-cookie-btn-group {
    display: block;
    margin-top: 13.88889vw;
  }
  .floating-cookie .floating-cookie-btn-link {
    font-size: 3.3333vw;
    line-height: 1.5;
    margin-right: 0;
  }
  .floating-cookie .floating-cookie-btn-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
    margin-top: 6.66667vw;
  }
  .floating-cookie .floating-cookie-btn {
    flex: 1 1 1%;
    width: 1%;
    height: 10.55556vw;
    line-height: 10.55556vw;
    font-size: 3.88889vw;
  }
  .floating-cookie .floating-cookie-btn + .floating-cookie-btn {
    margin-left: 0;
  }
}
/* 🔹 쿠키 동의 약관 */
.container .contents_wrap {
  width: 1488px;
  margin: 0 auto;
  box-sizing: border-box;
  padding-top: 80px;
  min-height: 1070px;
}
.container .contents_wrap .ft_tit {
  margin-top: 160px;
  font-weight: bold;
  font-size: 72px;
  letter-spacing: -0.016rem;
  color: #111;
  line-height: 107px;
}
.container .contents_wrap .sub_layout_box {
  width: 1488px;
  margin-top: 143px;
  position: relative;
}
.container .policies {
  font-size: 20px;
}
.container .policies .con * {
  word-break: keep-all;
}
.container .policies .con h2 {
  margin-bottom: 36px;
  font-size: 32px;
  font-weight: bold;
}
.container .policies section {
  margin-bottom: 36px;
  font-size: 1em;
  line-height: 1.5;
}
.container .policies section h3 {
  margin-bottom: 24px;
  font-size: 1.25em;
  font-weight: bold;
}
.container .policies section ul {
  list-style-type: disc;
  padding-inline-start: 40px;
}
.container .policies section li {
  list-style-type: disc;
}
.container .policies section a {
  color: #7449f5;
  text-decoration: none;
}
.container .policies section > ul > li > ul {
  list-style: circle;
  margin-left: 0;
  padding-left: 1em;
  box-sizing: border-box;
}
.container .policies section > ul > li > ul > li {
  padding: 0;
  line-height: 1.5;
}
.container .policies section > ol {
  list-style: none;
  margin-left: 0;
  box-sizing: border-box;
  padding-left: 1.5em;
}
.container .policies section > ol > li {
  position: relative;
  counter-increment: list1;
  line-height: 1.5;
}
.container .policies section > ol > li::before {
  content: counter(list1) " ";
  position: absolute;
  left: -2em;
  top: 4px;
  border: 1px solid #000;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  text-align: center;
  width: 1em;
  height: 1em;
  line-height: 1em;
  font-size: 12px;
}
.container .policies section > ol > li:first-child {
  counter-reset: list1;
}
.container .policies section > ol > li > ul {
  list-style: disc;
  margin-left: 0;
  padding-left: 1em;
  box-sizing: border-box;
}
.container .policies section > ol > li > ul > li {
  padding: 0;
  line-height: 1.5;
}
.container .policies section > ol > li > ol {
  list-style: none;
  margin-left: 0;
  padding-left: 1em;
}
.container .policies section > ol > li > ol > li {
  position: relative;
  counter-increment: list2;
  line-height: 1.5;
}
.container .policies section > ol > li > ol > li::before {
  content: counter(list2) ".";
  position: absolute;
  left: -1em;
}
.container .policies section > ol.type-k {
  list-style: hangul;
  margin-left: 0;
  box-sizing: border-box;
}
.container .policies section > ol.type-k > li {
  position: relative;
  counter-increment: list-k;
}
.container .policies section > ol.type-k > li::before {
  content: "";
  border: 0;
}
.container .policies section > ol.type-k > li:first-child {
  counter-reset: list-k;
}
.container .policies table {
  border: 1px solid #adadad;
  border-collapse: collapse;
  width: 100%;
  table-layout: auto;
  margin: 20px 0;
  margin-bottom: 1em;
  border-spacing: 0;
}
.container .policies table caption {
  text-align: left;
  margin-bottom: 1em;
}
.container .policies table tr > th {
  border: 1px solid #adadad;
  background-color: #fafafa;
  padding: 10px;
  text-align: left;
  word-break: break-all !important;
}
.container .policies table tr > td {
  border: 1px solid #adadad;
  padding: 15px 10px;
  word-break: break-all !important;
}
.container .policies table tr th:nth-child(1),
.container .policies table tr td:nth-child(1) {
  width: 15%;
}
.container .policies table tr th:nth-child(2),
.container .policies table tr td:nth-child(2) {
  width: 15%;
}
.container .policies table tr th:nth-child(3),
.container .policies table tr td:nth-child(3) {
  width: 15%;
}
.container .policies table tr th:nth-child(4),
.container .policies table tr td:nth-child(4) {
  width: 15%;
}
.container .policies table tr th:nth-child(5),
.container .policies table tr td:nth-child(5) {
  width: 40%;
}

@media screen and (max-width: 768px) {
  .container .policies .con {
    padding: 0 16px;
  }
  .container .policies .con * {
    word-break: break-all;
  }
  .container .policies .con h2 {
    margin-bottom: 36px;
    font-size: 28px;
  }
  .container .policies .con section {
    font-size: 15px;
    line-height: 22.5px;
  }
  .container .policies .con section h3 {
    font-size: 18px;
  }
  .container .policies .con section > ol > li::before {
    font-size: 10px;
  }
  .container .policies .con table tr > th {
    word-wrap: break-word;
    word-break: break-all;
  }
  .container .policies .con table tr > td {
    word-wrap: normal;
    word-break: break-all;
  }
}
@media screen and (max-width: 1024px) {
  .container .contents_wrap {
    width: 100%;
    padding-top: 60px;
  }
  .container .contents_wrap .ft_tit {
    margin-top: 50px;
    font-size: 33px;
    line-height: 44px;
    padding: 0 20px;
  }
  .container .contents_wrap .sub_layout_box {
    width: 100%;
    margin-top: 80px;
    box-sizing: border-box;
    padding: 0 20px;
  }
}
@media (max-width: 1199px) {
  .table-wrap {
    width: 100%;
    overflow-x: auto;
  }
  .table-wrap table {
    width: 800px !important;
  }
}
/* ---------------------------------------
    POPUP
--------------------------------------- */
.popup {
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  display: none;
  z-index: 100;
}
.popup .btn-close {
  position: absolute;
  font-size: 0;
}
.popup.pop-screen {
  width: 1252px;
  background-color: #000;
}
.popup.pop-screen .cnt {
  position: relative;
  height: 704px;
}
.popup.pop-screen .btn-close {
  top: -30px;
  right: -70px;
  font-size: 0;
}

/*----NoteBook CSS Start----*/
@media (max-height: 900px) {
  .slide2 .inner {
    transform: scale(0.85);
  }
  .slide2 .media_slide li img {
    transform: scale(0.85);
  }
}/*# sourceMappingURL=style.css.map */