@charset "UTF-8";
:root {
  --vh: 1vh;
  --vh-full-size: 100vh;
}

/* 사이트 전체 공통 */
/* variables */
/*util*/
/* 국문 */
@font-face {
  font-family: "NanumSquare";
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/NanumSquareAcL.woff2) format("woff2"), url(../fonts/NanumSquareAcL.woff) format("woff");
}
@font-face {
  font-family: "NanumSquare";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/NanumSquareAcR.woff2) format("woff2"), url(../fonts/NanumSquareAcR.woff) format("woff");
}
@font-face {
  font-family: "NanumSquare";
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/NanumSquareB.woff2) format("woff2"), url(../fonts/NanumSquareB.woff) format("woff");
}
@font-face {
  font-family: "GmarketSans";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/GmarketSansMedium.woff2) format("woff2"), url(../fonts/GmarketSansMedium.woff) format("woff");
}
@font-face {
  font-family: "GmarketSans";
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/GmarketSansBold.woff2) format("woff2"), url(../fonts/GmarketSansBold.woff) format("woff");
}
/* 영문 */
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/en/NotoSans-Regular.ttf) format("truetype"), url(../fonts/en/NotoSans-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/en/NotoSans-Medium.ttf) format("truetype"), url(../fonts/en/NotoSans-Medium.ttf) format("truetype");
}
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/en/NotoSans-Bold.ttf) format("truetype"), url(../fonts/en/NotoSans-Bold.ttf) format("truetype");
}
/* 일문 */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/jp/NotoSansJP-Regular.otf) format("opentype"), url(../fonts/jp/NotoSansJP-Regular.otf) format("opentype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/jp/NotoSansJP-Medium.otf) format("opentype"), url(../fonts/jp/NotoSansJP-Medium.otf) format("opentype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/jp/NotoSansJP-Bold.otf) format("opentype"), url(../fonts/jp/NotoSansJP-Bold.otf) format("opentype");
}
html,
body {
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -o-text-size-adjust: none;
}

html:has(.pop-sample).dimmed::before,
body:has(.pop-sample).dimmed::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 30, 35, 0.5);
}

html:has(.pop-sample).dimmed .pop-float-layer,
body:has(.pop-sample).dimmed .pop-float-layer {
  display: block;
  margin-top: 50px;
  top: auto;
  left: auto;
  position: relative;
  transform: translate(0);
}

html.no-scroll {
  height: var(--window-inner-height);
  overflow: hidden;
}

html.no-scroll body {
  position: fixed;
  width: 100%;
  height: calc(var(--window-inner-height) - 1px);
  overflow: hidden;
}

header,
footer,
section,
article,
aside,
nav,
hgroup,
details,
menu,
figure,
figcaption {
  display: block;
}

body {
  font-weight: 400;
  font-family: "NanumSquare", sans-serif;
  font-size: 16px;
  color: #131313;
  line-height: 1.5;
  margin: 0px;
  padding: 0px;
  word-wrap: break-word;
}

body:lang(ko) {
  word-break: keep-all;
}

body:lang(en) {
  font-family: "Noto Sans", sans-serif;
}

body:lang(ja) {
  font-family: "Noto Sans JP", sans-serif;
  word-break: break-all;
}

img {
  max-width: 100%;
  border: 0px;
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: #131313;
}

a.disabled {
  cursor: none;
  pointer-events: none;
}

input,
button,
select,
textarea {
  font-family: "NanumSquare", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #131313;
  border: 0px;
  padding: 0px;
  margin: 0px;
  background: none;
  vertical-align: middle;
  appearance: none;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
}

input:lang(en),
button:lang(en),
select:lang(en),
textarea:lang(en) {
  font-family: "Noto Sans", sans-serif;
}

input:lang(ja),
button:lang(ja),
select:lang(ja),
textarea:lang(ja) {
  font-family: "Noto Sans JP", sans-serif;
}

button {
  cursor: pointer;
}

button:disabled, button.disabled {
  cursor: none;
  pointer-events: none;
}

hr {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  color: #131313;
  font-weight: 700;
}

p {
  margin: 0px;
}

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

dl,
dt,
dd {
  padding: 0px;
  margin: 0px;
}

div::-webkit-scrollbar {
  width: 2px;
  height: 0;
}

div::-webkit-scrollbar-button:start {
  display: block;
  height: 0;
}

div::-webkit-scrollbar-button:end {
  display: block;
  height: 0;
}

div::-webkit-scrollbar-button:vertical:increment, div::-webkit-scrollbar-button:vertical:decrement {
  display: block;
  height: 0;
}

div::-webkit-scrollbar-button:horizontal:increment, div::-webkit-scrollbar-button:horizontal:decrement {
  display: block;
  width: 0;
}

div::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 0px;
}

div::-webkit-scrollbar-track-piece {
  display: block;
  height: 0;
}

div::-webkit-scrollbar-thumb {
  background-color: #3A3A3A;
  border-radius: 0px;
  background-clip: padding-box;
  border: 0px solid transparent;
}

div::-webkit-scrollbar-corner {
  display: block;
  height: 0;
}

div::-webkit-resizer {
  display: block;
  height: 0;
}

.lectures-index-list::-webkit-scrollbar {
  width: 6px;
  height: 0;
}

.lectures-index-list::-webkit-scrollbar-button:start {
  display: block;
  height: 0;
}

.lectures-index-list::-webkit-scrollbar-button:end {
  display: block;
  height: 0;
}

.lectures-index-list::-webkit-scrollbar-button :vertical:increment {
  display: block;
  height: 0;
}

.lectures-index-list::-webkit-scrollbar-button :vertical:decrement {
  display: block;
  height: 0;
}

.lectures-index-list::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 0px;
}

.lectures-index-list::-webkit-scrollbar-track-piece {
  display: block;
  height: 0;
}

.lectures-index-list::-webkit-scrollbar-thumb {
  background-color: #3A3A3A;
  border-radius: 0px;
  background-clip: padding-box;
  border: 0px solid transparent;
}

.lectures-index-list::-webkit-scrollbar-corner {
  display: block;
  height: 0;
}

.lectures-index-list::-webkit-resizer {
  display: block;
  height: 0;
}

table {
  width: 100%;
  padding: 0px;
  border-spacing: 0px;
  table-layout: fixed;
}

caption {
  text-indent: -9999px;
  overflow: hidden;
  height: 2px;
  margin-top: -2px;
}

th,
td {
  padding: 0px;
}

th {
  font-weight: 700;
}

fieldset {
  overflow: hidden;
  border: 0px;
  padding: 0px;
  margin: 0px;
}

legend {
  position: absolute;
  top: -9999px;
  left: -9999px;
  text-indent: -9999px;
  overflow: hidden;
}

figure {
  margin: 0px;
  padding: 0px;
}

strong,
b {
  color: #131313;
  font-weight: 700;
}

.hidden_cont {
  text-indent: -9999px;
  overflow: hidden;
  height: 2px;
  margin: -2px 0px 0px !important;
}

.only-pc {
  display: block;
}

.only-mo {
  display: none;
}

br.pc-br {
  display: block;
}

br.mo-br {
  display: none;
}

@media (max-width: 768px) {
  .only-pc {
    display: none !important;
  }
  .only-mo {
    display: block !important;
  }
  br.pc-br {
    display: none;
  }
  br.mo-br {
    display: block;
  }
}
.sr-only {
  position: absolute !important;
  left: 0;
  height: 1px !important;
  width: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}

/* page loading */
#load {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  opacity: 0.6;
  background: #ffffff;
  background-image: url(./../images/common/check_loading.gif);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 60px 60px;
  z-index: 99999;
}

.star-rating-wrap {
  width: 100px;
  height: 20px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23dadada' d='M10.647 2.826a1.5 1.5 0 0 1 2.706 0l1.893 3.953a1.5 1.5 0 0 0 1.169.841l4.368.539a1.5 1.5 0 0 1 .832 2.592l-3.173 2.92a1.5 1.5 0 0 0-.456 1.391l.823 4.221a1.5 1.5 0 0 1-2.185 1.607l-3.91-2.113a1.5 1.5 0 0 0-1.426 0l-3.91 2.113a1.5 1.5 0 0 1-2.185-1.607l.823-4.221a1.5 1.5 0 0 0-.456-1.391l-3.173-2.92a1.5 1.5 0 0 1 .832-2.592l4.366-.539a1.5 1.5 0 0 0 1.169-.841Z' data-name='다각형 281'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 62473' opacity='.2'/%3E%3C/svg%3E") repeat-x;
  background-size: auto 20px;
  overflow: hidden;
}

.star-rating-wrap .rating {
  display: block;
  width: 0;
  height: 100%;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%235772e8' d='M10.647 2.826a1.5 1.5 0 0 1 2.706 0l1.893 3.953a1.5 1.5 0 0 0 1.169.841l4.368.539a1.5 1.5 0 0 1 .832 2.592l-3.173 2.92a1.5 1.5 0 0 0-.456 1.391l.823 4.221a1.5 1.5 0 0 1-2.185 1.607l-3.91-2.113a1.5 1.5 0 0 0-1.426 0l-3.91 2.113a1.5 1.5 0 0 1-2.185-1.607l.823-4.221a1.5 1.5 0 0 0-.456-1.391l-3.173-2.92a1.5 1.5 0 0 1 .832-2.592l4.366-.539a1.5 1.5 0 0 0 1.169-.841Z' data-name='다각형 281'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 62473' opacity='.2'/%3E%3C/svg%3E") repeat-x;
  background-size: auto 20px;
}

.star-rating-wrap input[type=radio] {
  flex-shrink: 0;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23dadada' d='M10.647 2.826a1.5 1.5 0 0 1 2.706 0l1.893 3.953a1.5 1.5 0 0 0 1.169.841l4.368.539a1.5 1.5 0 0 1 .832 2.592l-3.173 2.92a1.5 1.5 0 0 0-.456 1.391l.823 4.221a1.5 1.5 0 0 1-2.185 1.607l-3.91-2.113a1.5 1.5 0 0 0-1.426 0l-3.91 2.113a1.5 1.5 0 0 1-2.185-1.607l.823-4.221a1.5 1.5 0 0 0-.456-1.391l-3.173-2.92a1.5 1.5 0 0 1 .832-2.592l4.366-.539a1.5 1.5 0 0 0 1.169-.841Z' data-name='다각형 281'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 62473' opacity='.2'/%3E%3C/svg%3E");
  background-size: 24px;
  cursor: pointer;
}

.star-rating-wrap input[type=radio]:checked {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%235772e8' d='M10.647 2.826a1.5 1.5 0 0 1 2.706 0l1.893 3.953a1.5 1.5 0 0 0 1.169.841l4.368.539a1.5 1.5 0 0 1 .832 2.592l-3.173 2.92a1.5 1.5 0 0 0-.456 1.391l.823 4.221a1.5 1.5 0 0 1-2.185 1.607l-3.91-2.113a1.5 1.5 0 0 0-1.426 0l-3.91 2.113a1.5 1.5 0 0 1-2.185-1.607l.823-4.221a1.5 1.5 0 0 0-.456-1.391l-3.173-2.92a1.5 1.5 0 0 1 .832-2.592l4.366-.539a1.5 1.5 0 0 0 1.169-.841Z' data-name='다각형 281'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 62473' opacity='.2'/%3E%3C/svg%3E");
}

.star-rating-wrap input[type=radio]:has(~ input[type=radio]:checked) {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%235772e8' d='M10.647 2.826a1.5 1.5 0 0 1 2.706 0l1.893 3.953a1.5 1.5 0 0 0 1.169.841l4.368.539a1.5 1.5 0 0 1 .832 2.592l-3.173 2.92a1.5 1.5 0 0 0-.456 1.391l.823 4.221a1.5 1.5 0 0 1-2.185 1.607l-3.91-2.113a1.5 1.5 0 0 0-1.426 0l-3.91 2.113a1.5 1.5 0 0 1-2.185-1.607l.823-4.221a1.5 1.5 0 0 0-.456-1.391l-3.173-2.92a1.5 1.5 0 0 1 .832-2.592l4.366-.539a1.5 1.5 0 0 0 1.169-.841Z' data-name='다각형 281'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 62473' opacity='.2'/%3E%3C/svg%3E");
}

/* 컴포넌트 모음 */
/**
 * Swiper 4.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 16, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-container-horizontal .swiper-pagination-custom,
.swiper-container-horizontal .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-progressbar {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-container-android .swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-invisible-blank-slide {
  visibility: hidden;
}

.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-next.swiper-button-disabled.swiper-button-disabled,
.swiper-button-next .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-pagination-progressbar {
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #FFFFFF;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #FFFFFF;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white::after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-next .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar, .simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.simplebar-content:after, .simplebar-content:before {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: #DADADA;
  border-radius: 4px;
  left: 0;
  right: 0;
  transition: opacity 0.2s 0.5s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  transition-delay: 0s;
  transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 8px;
}

.simplebar-scrollbar:before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 8px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.btn-wrap.wrap-right {
  justify-content: flex-end;
}

.btn-arrow-wrap {
  gap: 4px;
  margin-top: 48px;
}

.btn-arrow-wrap button::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' d='m4.5 7.5 6 6 6-6' data-name='패스 136'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 317' opacity='.2'/%3E%3C/svg%3E");
}

.btn-base, .btn-xs, .btn-sm, .btn-md, .btn-lg, .btn-xlg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-weight: 700;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-icon-base, .btn-reset-icon, .btn-search-icon, .btn-delete-icon, .btn-modify-icon {
  display: inline-block;
  vertical-align: center;
  padding-left: 24px;
  background: left center no-repeat;
  background-size: 16px auto;
  font-size: 14px;
  line-height: 1.6;
  color: #484848;
}

.btn-icon-base + [class^=btn-], .btn-reset-icon + [class^=btn-], .btn-search-icon + [class^=btn-], .btn-delete-icon + [class^=btn-], .btn-modify-icon + [class^=btn-] {
  margin-left: 24px;
}

.btn-share-base, .ico-share-link, .ico-share-insta, .ico-share-twitter, .ico-share-facebook, .ico-share-kakao {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
}

.btn-share-base + .btn-share-base, .ico-share-link + .btn-share-base, .btn-share-base + .ico-share-link, .ico-share-link + .ico-share-link, .ico-share-insta + .btn-share-base, .ico-share-insta + .ico-share-link, .btn-share-base + .ico-share-insta, .ico-share-link + .ico-share-insta, .ico-share-insta + .ico-share-insta, .ico-share-twitter + .btn-share-base, .ico-share-twitter + .ico-share-link, .ico-share-twitter + .ico-share-insta, .btn-share-base + .ico-share-twitter, .ico-share-link + .ico-share-twitter, .ico-share-insta + .ico-share-twitter, .ico-share-twitter + .ico-share-twitter, .ico-share-facebook + .btn-share-base, .ico-share-facebook + .ico-share-link, .ico-share-facebook + .ico-share-insta, .ico-share-facebook + .ico-share-twitter, .btn-share-base + .ico-share-facebook, .ico-share-link + .ico-share-facebook, .ico-share-insta + .ico-share-facebook, .ico-share-twitter + .ico-share-facebook, .ico-share-facebook + .ico-share-facebook, .ico-share-kakao + .btn-share-base, .ico-share-kakao + .ico-share-link, .ico-share-kakao + .ico-share-insta, .ico-share-kakao + .ico-share-twitter, .ico-share-kakao + .ico-share-facebook, .btn-share-base + .ico-share-kakao, .ico-share-link + .ico-share-kakao, .ico-share-insta + .ico-share-kakao, .ico-share-twitter + .ico-share-kakao, .ico-share-facebook + .ico-share-kakao, .ico-share-kakao + .ico-share-kakao {
  margin-left: 16px;
}

.btn-xlg {
  height: 42px;
  border-radius: 51px;
  padding: 0 60px;
  font-size: 16px;
  line-height: 1.6;
}

.btn-lg {
  height: 42px;
  border-radius: 51px;
  padding: 0 60px;
  font-size: 16px;
  line-height: 1.6;
}

.btn-md {
  height: 36px;
  border-radius: 51px;
  padding: 0 40px;
  font-size: 14px;
  line-height: 1.6;
}

.btn-sm {
  height: 29px;
  border-radius: 51px;
  padding: 0 24px;
  font-size: 12px;
  line-height: 1.7;
}

.btn-xs {
  height: 25px;
  border-radius: 21px;
  padding: 0 10px;
  font-size: 11px;
  line-height: 1.5;
}

/*btn-color type*/
.btn-default {
  background-color: #000000;
  color: #FFFFFF;
}

.btn-default:hover {
  background-color: #484848;
}

.btn-default.disabled {
  background-color: #828282;
  color: #DADADA;
}

.btn-ghost {
  border: 1px solid #131313;
}

.btn-ghost:hover {
  border-color: #484848;
  background-color: rgba(218, 218, 218, 0.2);
}

.btn-ghost:disabled, .btn-ghost.disabled {
  background-color: transparent;
  border-color: #828282;
  color: #828282;
}

.btn-default-w {
  background-color: #FFFFFF;
  color: #000000;
}

.btn-default-w:hover {
  background-color: #F4F4F4;
}

.btn-default-w:disabled, .btn-default-w.disabled {
  background-color: #828282;
  color: #DADADA;
}

.btn-ghost-w {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}

.btn-ghost-w:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost-w:disabled, .btn-ghost-w.disabled {
  background-color: transparent;
  border-color: #828282;
  color: #828282;
}

.btn-gradient {
  background: linear-gradient(113.1deg, #579be8 14.95%, #991fe8 85.05%);
  color: #FFFFFF;
}

.btn-blue {
  background-color: #5772E8;
  color: #FFFFFF;
}

.btn-blue:hover {
  background-color: #5772E8;
}

.btn-blue:disabled, .btn-blue.disabled {
  background-color: #828282;
  color: #DADADA;
}

.btn-border {
  background-color: #FFFFFF;
  color: #131313;
  border: solid 1px #131313;
}

.btn-border:hover {
  background: rgba(218, 218, 218, 0.2);
  border: solid 1px #484848;
}

.btn-border:disabled, .btn-border.disabled {
  background-color: #F8F8F8;
  color: #828282;
  border: solid 1px #EDEDED;
}

.btn-border-blue {
  background-color: #FFFFFF;
  color: #5772E8;
  border: solid 1px #5772E8;
}

.btn-border-blue:hover {
  background: rgba(218, 218, 218, 0.2);
  border: solid 1px #788EEC;
  color: #788EEC;
}

.btn-border-blue:disabled, .btn-border-blue.disabled {
  background-color: #F8F8F8;
  color: #828282;
  border: solid 1px #EDEDED;
}

/*btn icon*/
.btn-search {
  display: block;
  width: 22px;
  height: 22px;
  background: no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-width='1.5' d='m15.5 15.016 5 5' data-name='선 486'/%3E%3Cg fill='none' stroke='%23131313' stroke-width='1.5' data-name='타원 57' transform='translate(4 4)'%3E%3Ccircle cx='6' cy='6' r='6' stroke='none'/%3E%3Ccircle cx='6' cy='6' r='6.75'/%3E%3C/g%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 282' opacity='.2'/%3E%3C/svg%3E");
  background-size: 16px auto;
  cursor: pointer;
}

.btn-password-view {
  display: block;
  width: 12px;
  height: 12px;
  background: no-repeat center url(./../images/layout/icon_invisible.png);
  background-size: contain;
  cursor: pointer;
}

input[type=password] + .btn-password-view {
  background-image: url(./../images/layout/icon_invisible.png);
}

input[type=text] + .btn-password-view {
  background-image: url(./../images/layout/icon_common_notice_gry.svg);
}

.btn-sideform {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background-color: #DEDEDE;
  font-size: 10px;
  line-height: 1.5;
  font-weight: 700;
  width: 83px;
  height: 30px;
  margin-left: 13px;
  cursor: pointer;
}

.btn-sideform.cart {
  padding: 0;
  margin: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(./../images/component/icon_cart.png);
  background-size: contain;
  width: 58px;
  height: 30px;
}

.btn-fileupload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: 6px;
  height: 27px;
  padding: 0 23px;
  font-size: 12px;
  line-height: 1.7;
  background-color: #E3E3E3;
  border-radius: 7px 5px 5px 5px;
  cursor: pointer;
}

.btn-modify-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23484848' stroke-linecap='round' stroke-width='1.5' d='M13 19h8' data-name='Line 467'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='Rectangle 286' opacity='.2'/%3E%3Cg fill='none' stroke-linecap='round' data-name='Group 324'%3E%3Cg data-name='Path 2322'%3E%3Cpath d='m14.298 6.873 2.829 2.828-8.84 8.84-3.181.353.353-3.182Z'/%3E%3Cpath fill='%23484848' d='M14.298 6.873 5.46 15.712l-.353 3.182 3.182-.354 8.839-8.839-2.829-2.828m0-2.121 4.95 4.95L8.976 19.972l-5.568.619.619-5.569L14.298 4.752Z'/%3E%3C/g%3E%3Cg stroke='%23484848' stroke-width='1.5' data-name='Rectangle 629'%3E%3Cpath stroke='none' d='m18.187 4.398 1.415 1.414a1 1 0 0 1 0 1.415L18.187 8.64 15.36 5.812l1.414-1.414a1 1 0 0 1 1.414 0Z'/%3E%3Cpath d='m18.718 3.868 1.414 1.414a1.75 1.75 0 0 1 0 2.475L18.718 9.17a.75.75 0 0 1-1.061 0l-2.828-2.828a.75.75 0 0 1 0-1.06l1.414-1.415a1.75 1.75 0 0 1 2.475 0Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.btn-delete-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='Rectangle 276' opacity='.2'/%3E%3Cg fill='none' data-name='Path 2323'%3E%3Cpath d='M5.5 6h13L18 19a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1Z'/%3E%3Cpath fill='%23484848' d='M5.5 6 6 19a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1l.5-13h-13M3.941 4.5H20.06l-.56 14.535A2.503 2.503 0 0 1 17 21.5H7a2.503 2.503 0 0 1-2.5-2.465L3.941 4.5Z'/%3E%3C/g%3E%3Cpath fill='none' stroke='%23484848' stroke-linecap='round' stroke-width='1.5' d='M3 5.199h18' data-name='Line 494'/%3E%3Cpath fill='none' stroke='%23484848' stroke-linecap='round' stroke-width='1.5' d='M8 2.5h8' data-name='Line 588'/%3E%3Cpath fill='none' stroke='%23484848' stroke-linecap='round' stroke-width='1.5' d='M10 8.5v9' data-name='Line 589'/%3E%3Cpath fill='none' stroke='%23484848' stroke-linecap='round' stroke-width='1.5' d='M14 8.5v9' data-name='Line 590'/%3E%3C/svg%3E");
}

.btn-search-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-width='1.5' d='m15.5 15.016 5 5' data-name='선 486'/%3E%3Cg fill='none' stroke='%23131313' stroke-width='1.5' data-name='타원 57' transform='translate(4 4)'%3E%3Ccircle cx='6' cy='6' r='6' stroke='none'/%3E%3Ccircle cx='6' cy='6' r='6.75'/%3E%3C/g%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 282' opacity='.2'/%3E%3C/svg%3E");
}

.btn-reset-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24.281' height='24'%3E%3Cg fill='none' transform='translate(.281)'%3E%3Cpath d='M0 0h24v24H0z' data-name='Rectangle 267' opacity='.2'/%3E%3Ccircle cx='9' cy='9' r='9' data-name='Ellipse 84' transform='translate(3 3)'/%3E%3Cpath stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M4 7.563S7.188 2.987 12 3a9.172 9.172 0 0 1 9 9 9.2 9.2 0 0 1-9 9 9.109 9.109 0 0 1-9-9' data-name='Path 2287'/%3E%3Cpath stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M3 4v4h3.999' data-name='Path 2288'/%3E%3C/g%3E%3C/svg%3E");
}

/* item-util (추가, 삭제 버튼) */
.btn-item-util {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: center center no-repeat;
  background-color: #000000;
  background-size: contain;
  font-size: 0;
  text-indent: -9999px;
  margin-top: 3px;
  cursor: pointer;
}

.btn-item-util.btn-add {
  background-image: url(./../images/component/icon_add.svg);
}

.btn-item-util.btn-delete {
  background-image: url(./../images/component/icon_remove.svg);
}

.btn-item-util.disabled {
  background-color: #DADADA;
  cursor: none;
}

/* 공유버튼 */
.ico-share-kakao {
  background-image: url(./../images/layout/ico_blog_kakao.svg);
}

.ico-share-facebook {
  background-image: url(./../images/layout/ico_blog_facebook.svg);
}

.ico-share-twitter {
  background-image: url(./../images/layout/ico_blog_twitter.svg);
}

.ico-share-insta {
  background-image: url(./../images/layout/ico_blog_instagram.svg);
}

.ico-share-link {
  background-image: url(./../images/layout/ico_blog_copylinks.svg);
}

.swiper-button-next, .swiper-button-prev {
  z-index: 4;
}

.btn.txt-link {
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 768px) {
  .btn-arrow-wrap {
    margin-top: 32px;
  }
  .btn-xlg {
    height: 34px;
    padding: 0 24px;
    font-size: 14px;
    line-height: 1.6;
  }
  .btn-lg {
    font-size: 14px;
    line-height: 1.6;
  }
  .btn-md {
    font-size: 12px;
    line-height: 1.7;
  }
  .btn-icon-base, .btn-modify-icon, .btn-delete-icon, .btn-search-icon, .btn-reset-icon {
    font-size: 0;
    text-indent: -9999px;
  }
  .btn-icon-base + [class^=btn-], .btn-modify-icon + [class^=btn-], .btn-delete-icon + [class^=btn-], .btn-search-icon + [class^=btn-], .btn-reset-icon + [class^=btn-] {
    margin-left: 0;
  }
  .btn-search-icon {
    font-size: 14px;
    line-height: 1.6;
    text-indent: unset;
  }
  .btn-reset-icon {
    font-size: 14px;
    line-height: 1.6;
    text-indent: unset;
  }
}
/* 슬라이드 */
.card-box-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 48px;
}

.card-box-sm,
.card-box-md,
.card-box-lg {
  padding: 24px 0 100px 0;
  border-radius: 24px;
  background: #CCCCCC;
  box-shadow: 0px 10px 30px rgba(87, 114, 232, 0.1);
}

.card-box-sm {
  max-width: 600px;
}

.card-box-md {
  max-width: 830px;
}

.card-box-md.card-box-grid {
  max-width: 100%;
}

.card-box-md.card-box-event {
  position: relative;
  background: #EB0135;
}

.card-box-md.card-box-event::before {
  content: "";
}

.card-box-md .card-box {
  height: 100%;
  padding: 0 34px;
  background: #000000;
  box-sizing: border-box;
}

.card-box-md .card-category {
  font-size: 16px;
  line-height: 1.6;
  color: #FFFFFF;
}

.card-box-md h2,
.card-box-md h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-wrap: break-word;
}

.card-box-md h2 {
  margin: 20px 0 20px 0;
  color: #FFFFFF;
}

.card-box-md h3 {
  margin-bottom: 30px;
  color: #FFFFFF;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
}

.card-box-md .card-naming {
  margin-bottom: 20px;
}

.card-box-md .btn-wrap .color-red {
  color: #EB0135;
}

.card-box-lg {
  max-width: 1455px;
}

.box-col-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px 39px;
}

.box-col-3 .col-box {
  text-align: center;
}

.box-col-3 .col-box img {
  width: 100%;
  border-radius: 10px;
}

.box-col-3 .col-box p:nth-of-type(1) {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}

.box-col-3 .col-box p:nth-of-type(2) {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
}

.gom-step-wrap {
  max-width: 1140px;
  margin: 0 auto;
}

.gom-step-wrap .gom-step {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid #F4F4F4;
  text-align: center;
}

.gom-step-wrap .gom-step .gom-step-box p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}

.gom-step-wrap .gom-step .gom-step-box p:nth-of-type(3) {
  margin-top: 16px;
  font-weight: 400;
}

.gom-step-wrap .gom-step .gom-step-box > img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin: 20px 0 32px 0;
}

.gom-card-box-defalut {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 20px));
  grid-gap: 40px;
  align-items: start;
}

.gom-card-box-type-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 21px;
}

.gom-package-item {
  position: relative;
  padding: 0;
  border-radius: 10px;
  background-color: transparent;
}

.gom-package-item > *:first-child {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.gom-package-item > *:last-child {
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

.gom-package-item .box-deadline {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
}

.gom-package-item .box-deadline > .flame {
  position: absolute;
  top: -60px;
  left: 3px;
  width: 66px;
  height: 65px;
  z-index: -1;
}

.gom-package-item .box-deadline > .deadline-txt {
  display: block;
  padding: 8px 32px;
  border-radius: 10px;
  background: linear-gradient(13.91deg, #FF4DAD 19.04%, #FF2C58 186.73%);
  color: #FFFFFF;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}

.gom-package-item .gom-package-swiper-container {
  overflow: hidden;
  position: relative;
}

.gom-package-item .gom-package-swiper-container .gom-prev, .gom-package-item .gom-package-swiper-container .gom-next {
  margin-top: -12px;
  width: 24px;
  height: 24px;
  background-size: 24px auto;
}

.gom-package-item .gom-package-swiper-container .gom-prev {
  left: 20px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m15.501 3.998-8 8 8 8'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 6370' opacity='.2'/%3E%3C/svg%3E");
}

.gom-package-item .gom-package-swiper-container .gom-next {
  right: 20px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m8.501 3.998 8 8-8 8'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 6370' opacity='.2'/%3E%3C/svg%3E");
}

.gom-package-item .gom-package-bnr {
  background: linear-gradient(90deg, #5772E8 0%, #991FE8 100%) 0% 0% no-repeat;
}

.gom-package-item.expert .gom-package-bnr {
  background-color: #5772E8;
}

.gom-package-item.expert .pagkage-mid .btn-purchase {
  background-color: #5772E8;
  border-color: #5772E8;
  color: #FFFFFF;
}

.gom-package-item.expert .pagkage-bottom .pagkage-more-info li {
  color: #5772E8;
}

.gom-package-item.easypass .pagkage-mid .btn-purchase {
  background: linear-gradient(90deg, #5772E8 0%, #991FE8 100%) 0% 0% no-repeat;
  border: 0 none;
  color: #FFFFFF;
}

.gom-package-item .gom-package-bnr {
  position: absolute;
  top: -61px;
  left: 0;
  transform: translateY(0%);
  width: 100%;
  padding: 20px 32px 18px;
  text-align: center;
  color: #FFFFFF;
  font-size: 20px;
  line-height: 1.5;
  box-sizing: border-box;
}

.gom-package-item .gom-package-info {
  padding: 32px 32px 0;
  background-color: #FFFFFF;
}

.gom-package-item .gom-package-info .pagkage-top {
  position: relative;
}

.gom-package-item .gom-package-info .pagkage-top .title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
}

.gom-package-item .gom-package-info .pagkage-top .title .logo {
  display: inline-block;
  vertical-align: middle;
  width: 48px;
  height: 48px;
  margin-right: 16px;
}

.gom-package-item .gom-package-info .pagkage-top .title .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gom-package-item .gom-package-info .pagkage-top .title-logo {
  height: 48px;
}

.gom-package-item .gom-package-info .pagkage-top .title-logo img {
  display: block;
  height: 100%;
  object-fit: contain;
}

.gom-package-item .gom-package-info .pagkage-mid {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}

.gom-package-item .gom-package-info .pagkage-mid .price dt {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}

.gom-package-item .gom-package-info .pagkage-mid .price dd {
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}

.gom-package-item .gom-package-info .pagkage-mid .price dd strong {
  margin-top: 2px;
  font-size: 36px;
  line-height: 1.5;
  display: inline-block;
}

.gom-package-item .gom-package-info .pagkage-mid .price dd span {
  display: inline-block;
  margin-left: 8px;
  vertical-align: baseline;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 400;
}

.gom-package-item .gom-package-info .pagkage-mid .btn-deadline {
  border: 1px solid transparent;
  background: linear-gradient(111.76deg, #408BF9 14.27%, #9039F6 85.73%) padding-box, linear-gradient(111.76deg, #408BF9 14.27%, #9039F6 85.73%) border-box;
  color: #fff;
}

.gom-package-item .gom-package-info .pagkage-bottom {
  margin-top: 24px;
}

.gom-package-item .gom-package-info .pagkage-bottom .acco-head {
  display: block;
  padding: 27px 0 36px;
  border-top: 1px solid #A1A1A1;
  font-size: 16px;
  line-height: 1.6;
}

.gom-package-item .gom-package-info .pagkage-bottom .acco-head::after {
  display: inline-block;
  vertical-align: top;
  width: 24px;
  height: 24px;
  margin-top: -3px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m4.998 9 7 7 7-7' data-name='패스 136'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 317' opacity='.2'/%3E%3C/svg%3E");
  content: "";
}

.gom-package-item .gom-package-info .pagkage-bottom .acco-head.active::after {
  transform: rotate(-180deg);
}

.gom-package-item .gom-package-info .pagkage-bottom .pagkage-more-info {
  margin-bottom: 24px;
}

.gom-package-item .gom-package-info .pagkage-bottom .pagkage-more-info p {
  font-size: 16px;
  line-height: 1.6;
}

.gom-package-item .gom-package-info .pagkage-bottom .pagkage-more-info p.exp {
  margin-top: 12px;
  color: #484848;
  font-size: 12px;
  line-height: 1.7;
}

.gom-package-item .gom-package-info .pagkage-bottom .pagkage-more-info li {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

.gom-package-item .gom-package-info .pagkage-bottom .pagkage-more-info .bl-check-list li {
  position: relative;
  margin-top: 4px;
  padding: 3px 0 3px 30px;
  font-size: 16px;
  line-height: 1.6;
}

.gom-package-item .gom-package-info .pagkage-bottom .pagkage-more-info .bl-check-list li::before {
  position: absolute;
  top: 0px;
  left: 0;
  transform: translateY(0%);
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 3998'/%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='M4.5 10.141 8.786 15.5l7.714-10' data-name='패스 2284'/%3E%3C/svg%3E") center center no-repeat;
  content: "";
}

.gom-package-item .gom-package-info .pagkage-bottom .pagkage-more-info .bl-check-list li.txt-important {
  color: #991FE8;
}

.gom-package-item .gom-package-info .pagkage-bottom .pagkage-more-info .bl-check-list li.txt-important::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 3998'/%3E%3Cpath fill='none' stroke='%23991fe8' stroke-linecap='round' stroke-linejoin='round' d='M4.5 10.141 8.786 15.5l7.714-10' data-name='패스 2284'/%3E%3C/svg%3E");
}

.gom-package-item .gom-package-info .pagkage-bottom .total-price {
  position: relative;
  margin-bottom: 24px;
}

.gom-package-item .gom-package-info .pagkage-bottom .total-price .price {
  margin-bottom: 24px;
  padding-right: 150px;
  font-size: 20px;
  line-height: 1.5;
}

.gom-package-item .gom-package-info .pagkage-bottom .total-price .form-cont {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(0);
}

.easypass-price {
  background: #F8F8F8;
  padding: 120px 0;
  position: relative;
  max-width: none;
}

.easypass-price > .inner {
  max-width: 1280px;
}

.easypass-price .easypass-inner-wrap > img {
  margin: 0 auto;
  display: block;
  width: 275px;
  height: 80px;
}

.easypass-price .easypass-inner-wrap .gom-title-wrap {
  margin-top: 24px;
}

.easypass-price .easypass-inner-wrap .gom-title-wrap .gom-title {
  font-size: 36px;
  line-height: 1.5;
  font-weight: 700;
}

.easypass-price .easypass-inner-wrap .gom-title-wrap .gom-sub-title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 24px;
}

.easypass-price .easypass-inner-wrap .gom-title-wrap .point {
  color: #5772E8;
}

.easypass-price .easypass-inner-wrap .easypass-content-inner {
  padding-top: 116px;
  display: flex;
  gap: 40px;
}

.easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item {
  position: relative;
  width: 100%;
  height: 100%;
}

.easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item:first-child .gom-package-info {
  border: 2px solid #5772E8;
  border-radius: 0 0 20px 20px;
}

.easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item .item-top {
  width: 100%;
  height: 54px;
  display: block;
  padding: 12px 32px;
  background: #5772E8;
  color: #FFFFFF;
  box-sizing: border-box;
  position: absolute;
  top: -52px;
  border-radius: 20px 20px 0 0;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}

.easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item .gom-package-info {
  border-radius: 20px;
  box-shadow: 0px 10px 30px rgba(87, 114, 232, 0.1019607843);
}

.easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item .gom-package-info .top-info .title {
  display: flex;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  align-items: center;
}

.easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item .gom-package-info .top-info .title .logo {
  display: block;
  margin-right: 16px;
}

.easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item .gom-package-info .top-info .title .logo img {
  max-height: 40px;
}

.easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item .gom-package-info .top-info .price-info {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item .gom-package-info .top-info .price-info dl {
  font-weight: 700;
}

.easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item .gom-package-info .top-info .price-info dl dd {
  margin-top: 10px;
  font-size: 36px;
  line-height: 1.5;
  font-weight: 700;
}

.easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item .gom-package-info .bottom-info .pagkage-more-info {
  padding-top: 24px;
}

.easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item .gom-package-info .bottom-info .pagkage-more-info .bullet_list li p {
  margin-top: 2px;
  font-weight: 400;
}

.easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item .gom-package-info .bottom-info .acco-head {
  padding: 24px 0 32px;
  display: flex;
  border-top: 1px solid #A1A1A1;
  align-items: center;
  margin-top: 24px;
}

.easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item .gom-package-info .bottom-info .acco-head::after {
  content: "";
  display: inline-flex;
  width: 24px;
  height: 24px;
  margin-left: 6px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m4.998 9 7 7 7-7' data-name='패스 136'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 317' opacity='.2'/%3E%3C/svg%3E");
}

.easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item .gom-package-info .bottom-info .acco-head.active::after {
  transform: rotate(-180deg);
}

.gom-plan-wrap {
  display: flex;
  width: 100%;
  padding-top: 64px;
  gap: 40px;
}

.gom-plan-wrap .gom-plan-item {
  width: 100%;
  box-sizing: border-box;
  border-radius: 20px;
}

.gom-plan-wrap .gom-plan-item .plan-flag {
  display: block;
  padding: 12px 32px;
  border-radius: 20px 20px 0 0;
  background: #9AAAF1;
  box-shadow: 0px 10px 30px 0px rgba(87, 114, 232, 0.1);
  color: #FFFFFF;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}

.gom-plan-wrap .gom-plan-item .btn-gradient {
  background: linear-gradient(113.1deg, #579be8 14.95%, #991fe8 85.05%);
}

.gom-plan-wrap .gom-plan-item .gom-plan-body {
  padding: 32px;
  border: 2px solid #9AAAF1;
  border-radius: 0 0 20px 20px;
  box-shadow: 0px 10px 30px 0px rgba(87, 114, 232, 0.1);
  background: #FFFFFF;
}

.gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-tit {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
}

.gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-tit .logo {
  width: 40px;
}

.gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-tit .plan-tit span {
  display: block;
}

.gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-tit .plan-tit span.sw-name {
  font-size: 16px;
  line-height: 1.6;
}

.gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price {
  position: relative;
  display: flex;
  margin-top: 24px;
  align-items: flex-end;
  justify-content: space-between;
}

.gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .price-info {
  font-weight: 700;
}

.gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .price-info .use-info {
  display: block;
}

.gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .price-info .price-wrap {
  display: flex;
  margin-top: 8px;
  gap: 8px;
  align-items: baseline;
}

.gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .price-info .price-wrap .price {
  position: relative;
  font-size: 36px;
  line-height: 1.5;
}

.gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .price-info .price-wrap .sale-flag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px 12px;
  border-radius: 10px 10px 10px 0;
  background: #ff9900;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.6;
  transform: translate(106%, -55%);
  white-space: nowrap;
}

.gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .price-info .price-wrap .unit {
  font-size: 12px;
  line-height: 1.7;
  font-weight: 400;
}

.gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .discount-info-wrap {
  position: absolute;
  top: -10px;
  right: 0;
}

.gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .discount-info-wrap .discount-info {
  display: flex;
  gap: 8px;
  align-items: baseline;
  color: #ff6c5f;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 700;
}

.gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .discount-info-wrap .origin {
  color: #9b9b9b;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  text-decoration: line-through;
}

.gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .btn-wrap {
  margin-bottom: 6px;
  gap: 0;
}

.gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-info .pagkage-more-info {
  padding-top: 24px;
}

.gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-info .pagkage-more-info .bullet_list.check > li p {
  margin-top: 2px;
  font-weight: 400;
}

.gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-info .pagkage-more-info .bullet_list.check > li + li {
  margin-top: 8px;
}

.gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-info .acco-head {
  display: flex;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #A1A1A1;
  font-weight: 700;
}

.gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-info .acco-head::after {
  content: "";
  display: inline-flex;
  width: 24px;
  height: 24px;
  margin-left: 4px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m4.998 9 7 7 7-7' data-name='패스 136'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 317' opacity='.2'/%3E%3C/svg%3E");
  background-size: cover;
}

.gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-info .acco-head.active::after {
  transform: rotate(-180deg);
}

.gom-plan-wrap .gom-plan-item.best .gom-plan-body {
  border-color: #5772E8;
}

.gom-plan-wrap .gom-plan-item.best .plan-flag {
  background: #5772E8;
}

.gom-plan-wrap .gom-plan-item.only-sw .gom-plan-body {
  border-color: #B5B5B5;
}

.gom-plan-wrap .gom-plan-item.only-sw .plan-flag {
  background: #B5B5B5;
}

.gom-plan-wrap.cols-3 {
  gap: 32px;
}

.gom-plan-wrap.cols-3 .gom-plan-item .gom-plan-body .gom-plan-price {
  flex-direction: column;
  align-items: normal;
  gap: 24px;
}

.gom-plan-wrap.cols-3 .gom-plan-item .gom-plan-body .gom-plan-price .btn-wrap [class^=btn-] {
  width: 100%;
}

.gom-plan-wrap.cols-3 .gom-plan-item .gom-plan-body .gom-plan-price .discount-info-wrap {
  top: 12%;
}

.gom-plan-wrap.cols-3 .gom-plan-item .gom-plan-body .gom-plan-price .discount-info-wrap .discount-info {
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

.gom-plan-wrap.cols-3 .gom-plan-item .gom-plan-body .gom-plan-info .pagkage-more-info .bullet_list.check > li {
  font-size: 14px;
  line-height: 1.6;
}

.plan-wrap {
  margin-top: 64px;
}

.plan-wrap .plan-list-wrap .plan-list-inner {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.plan-wrap .plan-list-wrap .plan-item-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px;
  border-radius: 20px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px 0px rgba(87, 114, 232, 0.1);
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info {
  display: flex;
  flex-direction: column;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .plan-tit-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 700;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .plan-tit-wrap .sw-logo {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .plan-tit-wrap .plan-tit .sw-name {
  font-size: 28px;
  line-height: 1.5;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .plan-tit-wrap .plan-tit .plan-name {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 24px;
  line-height: 1.5;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .plan-tit-wrap .plan-tit .plan-name .flag {
  padding: 6px 12px;
  border-radius: 10px;
  background-color: #5772E8;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.6;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .plan-tit-wrap .plan-tit .plan-name .flag.most-popular {
  background: linear-gradient(113.1deg, #5772E8 14.95%, #991FE8 85.05%);
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .plan-tit-wrap .plan-tit .plan-name .flag.new-plan {
  background-color: #ff4d4d;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .price-info-wrap {
  margin-top: 23px;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .price-info-wrap .origin-price {
  display: block;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  text-decoration: line-through;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .price-info-wrap .price-info {
  margin-top: 0;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .price-info-wrap .price-info-txt {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .price-info-wrap:not(:has(.origin-price)) {
  margin-top: 50px;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .price-info-wrap:has(.price-info-txt) {
  margin-top: 14px;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .price-info {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  align-items: baseline;
  font-size: 40px;
  line-height: 1.5;
  font-weight: 700;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .price-info .origin-price {
  font-size: 18px;
  line-height: 1.5;
  text-decoration: line-through;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .price-info .unit {
  color: #9b9b9b;
  font-size: 18px;
  line-height: 1.5;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .price-info .unit.period {
  color: #131313;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 400;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #DADADA;
  justify-content: space-between;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap .acco-more-info {
  display: flex;
  flex-direction: column-reverse;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap .acco-more-info .acco-head {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap .acco-more-info .acco-head::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m4.998 9 7 7 7-7' data-name='패스 136'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 317' opacity='.2'/%3E%3C/svg%3E");
  background-size: cover;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap .acco-more-info .acco-head.active::after {
  transform: rotate(180deg);
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap .acco-more-info .acco-content {
  margin-bottom: 24px;
  padding-top: 8px;
  padding-bottom: 32px;
  border-bottom: 1px solid #A1A1A1;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap .bullet_list.check > li {
  padding-left: 28px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap .bullet_list.check > li::before {
  top: 3px;
  width: 20px;
  height: 20px;
  background-size: cover;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap .bullet_list.check > li + li {
  margin-top: 10px;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap .bullet_list.check > li.event {
  color: #5772E8;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap .bullet_list.check > li.event::before {
  background-image: url("./../images/common/emoji/emoji-event.svg");
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap .btn-wrap {
  margin-top: 30px;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap .btn-wrap [class^=btn-] {
  width: 100%;
  height: 61px;
  font-size: 22px;
  line-height: 1.5;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap.acco-type {
  flex-direction: column-reverse;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .flag-wrap {
  display: flex;
  gap: 6px;
  align-items: center;
  margin: -20px 0 32px -20px;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .flag-wrap .flag {
  display: flex;
  gap: 4px;
  align-items: center;
  height: 29px;
  padding: 0 12px;
  border-radius: 24px;
  background-color: #131313;
  box-sizing: border-box;
  color: #FFFFFF;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .flag-wrap .flag::before {
  content: "";
  width: 16px;
  height: 16px;
  background-size: cover;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .flag-wrap .flag.credit {
  border: 1px solid #9AAAF1;
  background-image: linear-gradient(90deg, #f9f4ff 0%, #e5faff 100%);
  color: #5772E8;
}

.plan-wrap .plan-list-wrap .plan-item-wrap .flag-wrap .flag.credit::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none'%3E%3Cpath fill='%235772e8' d='M14 6.5h-.75v3h1.5v-3H14Zm-3 3h.75v-3h-1.5v3H11Zm-6-3h.75V6h-1.5v.5H5ZM3 4h.75v-.5h-1.5V4H3Zm1.5-2v.75h11v-1.5h-11V2Zm11 0v.75a.75.75 0 0 1 .75.75h1.5a2.25 2.25 0 0 0-2.25-2.25V2ZM3 3.5h.75a.75.75 0 0 1 .75-.75v-1.5A2.25 2.25 0 0 0 2.25 3.5H3ZM4 5v-.75A.25.25 0 0 1 3.75 4h-1.5c0 .966.784 1.75 1.75 1.75V5Zm1 1h.75A1.75 1.75 0 0 0 4 4.25v1.5a.25.25 0 0 1 .25.25H5Zm1.5 2v-.75a.75.75 0 0 1-.75-.75h-1.5A2.25 2.25 0 0 0 6.5 8.75V8ZM8 6.5h-.75a.75.75 0 0 1-.75.75v1.5A2.25 2.25 0 0 0 8.75 6.5H8ZM9.5 5v-.75A2.25 2.25 0 0 0 7.25 6.5h1.5a.75.75 0 0 1 .75-.75V5ZM11 6.5h.75A2.25 2.25 0 0 0 9.5 4.25v1.5a.75.75 0 0 1 .75.75H11Zm1.5 4.5v-.75a.75.75 0 0 1-.75-.75h-1.5a2.25 2.25 0 0 0 2.25 2.25V11ZM14 9.5h-.75a.75.75 0 0 1-.75.75v1.5a2.25 2.25 0 0 0 2.25-2.25H14ZM15.5 5v-.75a2.25 2.25 0 0 0-2.25 2.25h1.5a.75.75 0 0 1 .75-.75V5Zm0 0v.75a2.25 2.25 0 0 0 2.25-2.25h-1.5a.75.75 0 0 1-.75.75V5Z'/%3E%3Cpath stroke='%235772e8' stroke-width='1.5' d='M4 5 2.688 7.107a6 6 0 0 0-.382 5.625l.771 1.722A6 6 0 0 0 8.553 18h2.894a6 6 0 0 0 5.476-3.546l.771-1.722a6 6 0 0 0-.382-5.625L16 5'/%3E%3C/svg%3E");
}

.plan-wrap .plan-list-wrap .plan-item-wrap .flag-wrap .flag.new::before {
  background-image: url("./../images/common/emoji/emoji-new.svg");
}

.plan-wrap .plan-list-wrap .plan-item-wrap .flag-wrap .flag.best::before {
  background-image: url("./../images/common/emoji/emoji-best.svg");
}

.plan-wrap .plan-list-wrap .plan-item-wrap .flag-wrap .flag.popularity::before {
  background-image: url("./../images/common/emoji/emoji-popularity.svg");
}

.plan-wrap .plan-list-wrap .plan-item-wrap .flag-wrap .flag.effectiveness::before {
  background-image: url("./../images/common/emoji/emoji-effectiveness.svg");
}

.plan-wrap .plan-list-wrap .plan-item-wrap .flag-wrap .flag.event::before {
  background-image: url("./../images/common/emoji/emoji-event.svg");
}

.plan-wrap .plan-list-wrap .plan-item-wrap.most-popular .plan-top-info .plan-tit-wrap .plan-tit .plan-name .flag {
  background: linear-gradient(113.1deg, #5772E8 14.95%, #991FE8 85.05%);
}

.plan-wrap .plan-list-wrap .plan-item-wrap.most-popular .plan-top-info .plan-tit-wrap .plan-tit .plan-name .flag.recommand {
  background-image: none;
  background-color: #fea903;
}

.plan-wrap .plan-list-wrap .plan-item-wrap.new-plan .plan-top-info .plan-tit-wrap .plan-tit .plan-name .flag {
  background-color: #6885ff;
}

.plan-wrap .plan-list-wrap .plan-item-wrap.recom-plan .plan-top-info .plan-tit-wrap .plan-tit .plan-name .flag {
  background-color: #fea903;
}

.plan-wrap .plan-list-wrap .plan-item-wrap.event-plan .plan-top-info .plan-tit-wrap .plan-tit .plan-name .flag {
  background-color: #FF4D4D;
}

.plan-wrap .plan-list-wrap .plan-notice {
  margin-top: 24px;
}

.plan-wrap.add-plan .plan-list-wrap .plan-item-wrap .flag-wrap {
  margin: 0 0 12px 0;
}

.plan-wrap.add-plan .plan-list-wrap .plan-item-wrap .plan-top-info .price-info-wrap {
  margin-top: 8px;
}

.plan-wrap.add-plan .plan-list-wrap .plan-item-wrap .plan-top-info .price-info-wrap:not(:has(.origin-price)) {
  margin-top: 8px;
}

.plan-wrap.add-plan .plan-list-wrap .plan-item-wrap .plan-info-wrap .bullet_list.check > li {
  padding-left: 42px;
  font-size: 20px;
  line-height: 1.5;
}

.plan-wrap.add-plan .plan-list-wrap .plan-item-wrap .plan-info-wrap .bullet_list.check > li::before {
  top: unset;
  width: 32px;
  height: 32px;
}

.plan-wrap.add-plan .plan-list-wrap .plan-item-wrap .plan-info-wrap .bullet_list.check > li + li {
  margin-top: 8px;
}

.plan-wrap.add-plan .plan-list-wrap .plan-item-wrap .plan-info-wrap .btn-wrap {
  position: absolute;
  top: 40px;
  right: 40px;
  margin-top: 0;
}

.plan-wrap.add-plan .plan-list-wrap .plan-item-wrap .plan-info-wrap .btn-wrap [class^=btn-] {
  width: auto;
}

/* 반응형 */
@media (max-width: 1279px) {
  .box-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .gom-step-wrap .gom-step {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 100px 10px;
  }
  .gom-card-box-type-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .easypass-price .price-info {
    flex-wrap: wrap;
  }
  .gom-plan-wrap {
    gap: 32px;
  }
  .gom-plan-wrap .gom-plan-item .plan-flag {
    padding: 10px 20px;
    border-radius: 10px 10px 0 0;
    font-size: 16px;
    line-height: 1.6;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body {
    padding: 24px 20px;
    border-radius: 0 0 10px 10px;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-tit {
    font-size: 18px;
    line-height: 1.5;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price {
    display: block;
    margin-top: 16px;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .price-info .use-info {
    font-size: 14px;
    line-height: 1.6;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .price-info .price-wrap {
    gap: 6px;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .price-info .price-wrap .price {
    font-size: 24px;
    line-height: 1.5;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .price-info .price-wrap .sale-flag {
    padding: 4px 10px;
    border-radius: 8px 8px 8px 0;
    font-size: 14px;
    line-height: 1.6;
    transform: translate(105%, -100%);
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .price-info .price-wrap .unit {
    font-size: 12px;
    line-height: 1.7;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .discount-info-wrap {
    top: 12%;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .discount-info-wrap .discount-info {
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    font-size: 20px;
    line-height: 1.5;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .discount-info-wrap .origin {
    font-size: 12px;
    line-height: 1.7;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .btn-wrap {
    margin-top: 20px;
    margin-bottom: 0;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .btn-wrap [class^=btn-] {
    width: 100%;
    height: 36px;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-info .pagkage-more-info {
    padding-top: 20px;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-info .pagkage-more-info .bullet_list.check > li {
    font-size: 12px;
    line-height: 1.7;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-info .pagkage-more-info .bullet_list.check > li::before {
    width: 20px;
    height: 20px;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-info .acco-head {
    margin-top: 20px;
    padding-top: 20px;
    font-size: 14px;
    line-height: 1.6;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-info .acco-head::after {
    width: 20px;
    height: 20px;
  }
  .gom-plan-wrap .gom-plan-item.best .gom-plan-body {
    border-color: #5772E8;
  }
  .gom-plan-wrap .gom-plan-item.best .plan-flag {
    background: #5772E8;
  }
  .gom-plan-wrap.cols-3 {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(2, 1fr);
  }
  .gom-plan-wrap.cols-3 .gom-plan-item.best {
    grid-column: 1/3;
  }
  .plan-wrap {
    margin-top: 32px;
  }
  .plan-wrap .plan-list-wrap .plan-list-inner {
    gap: 20px;
    grid-template-columns: repeat(1, 100%);
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px 24px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 0px rgba(19, 19, 19, 0.05);
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .flag-wrap {
    margin: -10px 0 24px -10px;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .plan-tit-wrap .sw-logo {
    display: none;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .plan-tit-wrap .plan-tit .sw-name {
    display: none;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .plan-tit-wrap .plan-tit .plan-name {
    gap: 10px;
    font-size: 16px;
    line-height: 1.6;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .plan-tit-wrap .plan-tit .plan-name .flag {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    line-height: 1.5;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .price-info-wrap {
    margin-top: 4px;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .price-info-wrap .origin-price {
    padding-top: 8px;
    font-size: 14px;
    line-height: 1.6;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .price-info-wrap .price-info-txt {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.6;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .price-info-wrap:not(:has(.origin-price)) {
    margin-top: 4px;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .price-info-wrap:has(.price-info-txt) {
    margin-top: 12px;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .price-info {
    margin-top: 4px;
    gap: 12px 10px;
    font-size: 24px;
    line-height: 1.5;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .price-info .origin-price {
    font-size: 14px;
    line-height: 1.6;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .price-info .unit {
    font-size: 14px;
    line-height: 1.6;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-top-info .price-info .unit.period {
    width: auto;
    font-size: 18px;
    line-height: 1.5;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap {
    margin-top: 16px;
    padding-top: 16px;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap .acco-more-info {
    margin-top: 20px;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap .acco-more-info .acco-head {
    border-top: 1px solid #A1A1A1;
    padding-top: 20px;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap .acco-more-info .acco-head::after {
    content: "";
    width: 20px;
    height: 20px;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap .acco-more-info .acco-content {
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #DADADA;
    border-bottom: 0;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap .bullet_list.check > li {
    display: flex;
    gap: 6px;
    padding-left: 28px;
    font-size: 14px;
    line-height: 1.6;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap .bullet_list.check > li::before {
    top: 1px;
    width: 20px;
    height: 20px;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap .bullet_list.check > li.gradient {
    display: inline-flex;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap .bullet_list.check > li + li {
    margin-top: 4px;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap .btn-wrap {
    margin-top: 24px;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap .btn-wrap [class^=btn-] {
    height: 35px;
    font-size: 14px;
    line-height: 1.6;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap.acco-type {
    margin-top: 20px;
    padding-top: 0;
    border-top: 0;
  }
  .plan-wrap .plan-list-wrap .plan-item-wrap .plan-info-wrap.acco-type .btn-wrap {
    margin-top: 0;
  }
  .plan-wrap .plan-list-wrap .plan-notice {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.7;
  }
  .plan-wrap.add-plan .plan-list-wrap .plan-item-wrap .flag-wrap {
    margin: -10px 0 24px -10px;
  }
  .plan-wrap.add-plan .plan-list-wrap .plan-item-wrap .plan-info-wrap .bullet_list.check > li {
    display: flex;
    gap: 6px;
    padding-left: 28px;
    font-size: 14px;
    line-height: 1.6;
  }
  .plan-wrap.add-plan .plan-list-wrap .plan-item-wrap .plan-info-wrap .bullet_list.check > li::before {
    width: 20px;
    height: 20px;
  }
  .plan-wrap.add-plan .plan-list-wrap .plan-item-wrap .plan-info-wrap .bullet_list.check > li.gradient {
    display: inline-flex;
  }
  .plan-wrap.add-plan .plan-list-wrap .plan-item-wrap .plan-info-wrap .bullet_list.check > li + li {
    margin-top: 4px;
  }
  .plan-wrap.add-plan .plan-list-wrap .plan-item-wrap .plan-info-wrap .btn-wrap {
    position: static;
    margin-top: 24px;
  }
  .plan-wrap.add-plan .plan-list-wrap .plan-item-wrap .plan-info-wrap .btn-wrap [class^=btn-] {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .card-box-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  .card-box-sm,
  .card-box-md,
  .card-box-lg {
    max-width: 100%;
  }
  .card-box-md .card-category {
    font-size: 11px;
    line-height: 1.5;
  }
  .card-box-md h2 {
    font-size: 18px;
    line-height: 1.5;
  }
  .card-box-md h3 {
    font-size: 14px;
    line-height: 1.6;
  }
  .box-col-3 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 32px 16px;
    padding-bottom: 0;
  }
  .box-col-3 .col-box p:nth-of-type(1) {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.6;
  }
  .box-col-3 .col-box p:nth-of-type(2) {
    display: none;
  }
  .gom-step-wrap {
    max-width: 100%;
  }
  .gom-step-wrap .gom-title {
    font-size: 18px;
    line-height: 1.5;
  }
  .gom-step-wrap .gom-step {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 64px;
    margin-top: 48px;
    padding-top: 48px;
  }
  .gom-step-wrap .gom-step .gom-step-box p {
    font-size: 14px;
    line-height: 1.6;
  }
  .gom-step-wrap .gom-step .gom-step-box p:nth-of-type(2) {
    font-size: 16px;
    line-height: 1.6;
  }
  .gom-step-wrap .gom-step .gom-step-box p:nth-of-type(3) {
    margin-top: 12px;
  }
  .gom-step-wrap .gom-step .gom-step-box > img {
    margin: 23px 0 32px 0;
  }
  .gom-card-box-defalut {
    grid-template-columns: repeat(1, 100%);
  }
  .gom-card-box-type-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gom-package-item .gom-package-bnr {
    position: static;
    top: unset;
    left: unset;
    padding: 12px 32px 12px;
    font-size: 14px;
    line-height: 1.6;
  }
  .gom-package-item .box-deadline {
    top: 8px;
    left: 8px;
  }
  .gom-package-item .box-deadline > .flame {
    top: -46px;
    left: 0;
    width: 53px;
    height: 52px;
  }
  .gom-package-item .box-deadline > .deadline-txt {
    padding: 6px 24px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
  }
  .gom-package-item .gom-package-swiper-container .gom-prev, .gom-package-item .gom-package-swiper-container .gom-next {
    margin-top: -10px;
    width: 20px;
    height: 20px;
  }
  .gom-package-item .gom-package-swiper-container .gom-prev {
    left: 12px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='m13 4-6 6 6 6'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 6370' opacity='.2'/%3E%3C/svg%3E");
  }
  .gom-package-item .gom-package-swiper-container .gom-next {
    right: 12px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='m7 4 6 6-6 6'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 6370' opacity='.2'/%3E%3C/svg%3E");
  }
  .gom-package-item .gom-package-info {
    padding: 20px 20px 0;
  }
  .gom-package-item .gom-package-info .pagkage-top .title {
    font-size: 18px;
    line-height: 1.5;
  }
  .gom-package-item .gom-package-info .pagkage-top .title .logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  .gom-package-item .gom-package-info .pagkage-top .title-logo {
    height: 40px;
  }
  .gom-package-item .gom-package-info .pagkage-mid {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: unset;
  }
  .gom-package-item .gom-package-info .pagkage-mid .price dt {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
  }
  .gom-package-item .gom-package-info .pagkage-mid .price dd strong {
    font-size: 24px;
    line-height: 1.5;
  }
  .gom-package-item .gom-package-info .pagkage-mid .btn-purchase {
    height: 36px;
  }
  .gom-package-item .gom-package-info .pagkage-mid.pagkage-mid-m {
    flex-direction: row;
    align-items: flex-end;
  }
  .gom-package-item .gom-package-info .pagkage-mid.pagkage-mid-m .form-cont.form-drop-quantity {
    width: 115px;
  }
  .gom-package-item .gom-package-info .pagkage-mid.pagkage-mid-m .btn-purchase {
    padding: 0;
    width: 130px;
  }
  .gom-package-item .gom-package-info .pagkage-mid + .pagkage-mid {
    margin-top: 20px;
  }
  .gom-package-item .gom-package-info .pagkage-bottom {
    margin-top: 20px;
  }
  .gom-package-item .gom-package-info .pagkage-bottom .acco-head {
    display: block;
    padding: 18px 0 22px;
    border-top: 1px solid #A1A1A1;
    font-size: 14px;
    line-height: 1.6;
  }
  .gom-package-item .gom-package-info .pagkage-bottom .acco-head::after {
    display: inline-block;
    vertical-align: top;
    width: 20px;
    height: 20px;
    margin-top: -3px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m4.998 9 7 7 7-7' data-name='패스 136'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 317' opacity='.2'/%3E%3C/svg%3E");
    background-size: cover;
    content: "";
  }
  .gom-package-item .gom-package-info .pagkage-bottom .acco-head.active::after {
    transform: rotate(-180deg);
  }
  .gom-package-item .gom-package-info .pagkage-bottom .acco-content {
    margin-bottom: 24px;
  }
  .gom-package-item .gom-package-info .pagkage-bottom .acco-content:last-of-type {
    margin-bottom: 16px;
  }
  .gom-package-item .gom-package-info .pagkage-bottom .pagkage-more-info p {
    font-size: 12px;
    line-height: 1.7;
  }
  .gom-package-item .gom-package-info .pagkage-bottom .pagkage-more-info .bl-check-list li {
    margin-top: 2px;
    padding-left: 24px;
    font-size: 12px;
    line-height: 1.7;
  }
  .gom-package-item .gom-package-info .pagkage-bottom .pagkage-more-info .bl-check-list li::before {
    width: 20px;
    height: 20px;
    background-size: 20px auto;
  }
  .gom-package-item .gom-package-info .pagkage-bottom .total-price {
    position: relative;
  }
  .gom-package-item .gom-package-info .pagkage-bottom .total-price .price {
    margin-bottom: 16px;
    padding: 9px 80px 9px 0;
    font-size: 16px;
    line-height: 1.6;
  }
  .gom-package-item .gom-package-info .pagkage-bottom .total-price .form-cont {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(0);
  }
  .gom-package-item .gom-package-info .pagkage-bottom .total-price .form-cont.form-drop-quantity {
    width: 80px;
  }
  .gom-package-item .gom-package-info .pagkage-bottom .total-price .form-cont.form-drop-quantity .drop-list {
    width: 100%;
    min-width: 80px;
  }
  .gom-package-item .gom-package-info .pagkage-bottom .total-price .btn-wrap {
    gap: 10px;
  }
  .gom-package-item .gom-package-info .pagkage-bottom .total-price .btn-wrap .btn-md {
    height: 29px;
    padding: 0 24px;
  }
  .easypass-price {
    padding: 48px 0;
  }
  .easypass-price .easypass-inner-wrap > img {
    width: 138px;
    height: 40px;
  }
  .easypass-price .easypass-inner-wrap .gom-title-wrap {
    margin-top: 16px;
  }
  .easypass-price .easypass-inner-wrap .gom-title-wrap .gom-title {
    font-size: 20px;
    line-height: 1.5;
  }
  .easypass-price .easypass-inner-wrap .gom-title-wrap .gom-sub-title {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 16px;
  }
  .easypass-price .easypass-inner-wrap .easypass-content-inner {
    padding-top: 77px;
    flex-direction: column;
    gap: 32px;
  }
  .easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item:first-child .gom-package-info {
    border-radius: 0 0 10px 10px;
  }
  .easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item .item-top {
    height: 46px;
    padding: 10px 20px;
    top: -45px;
    border-radius: 10px 10px 0 0;
    font-size: 16px;
    line-height: 1.6;
  }
  .easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item .gom-package-info {
    border-radius: 10px;
    padding: 28px 20px 0;
  }
  .easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item .gom-package-info .top-info .title {
    font-size: 18px;
    line-height: 1.5;
  }
  .easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item .gom-package-info .top-info .title .logo {
    margin-right: 8px;
  }
  .easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item .gom-package-info .top-info .price-info {
    margin-top: 16px;
    display: block;
  }
  .easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item .gom-package-info .top-info .price-info dl {
    font-size: 14px;
    line-height: 1.6;
  }
  .easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item .gom-package-info .top-info .price-info dl dd {
    margin-top: 8px;
    font-size: 24px;
    line-height: 1.5;
  }
  .easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item .gom-package-info .top-info .price-info .btn-lg {
    width: 100%;
    height: 36px;
    margin-top: 20px;
  }
  .easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item .gom-package-info .bottom-info .pagkage-more-info {
    padding-top: 20px;
  }
  .easypass-price .easypass-inner-wrap .easypass-content-inner .gom-package-item .gom-package-info .bottom-info .acco-head {
    padding: 20px 0 28px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
  }
  .gom-plan-wrap {
    padding-top: 32px;
    flex-direction: column;
  }
  .gom-plan-wrap .gom-plan-item .plan-flag {
    padding: 10px 20px;
    border-radius: 10px 10px 0 0;
    font-size: 16px;
    line-height: 1.6;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body {
    padding: 24px 20px;
    border-radius: 0 0 10px 10px;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-tit {
    font-size: 18px;
    line-height: 1.5;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price {
    display: block;
    margin-top: 16px;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .price-info .use-info {
    font-size: 14px;
    line-height: 1.6;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .price-info .price-wrap {
    gap: 6px;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .price-info .price-wrap .price {
    font-size: 24px;
    line-height: 1.5;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .price-info .price-wrap .sale-flag {
    padding: 4px 10px;
    border-radius: 8px 8px 8px 0;
    font-size: 14px;
    line-height: 1.6;
    transform: translate(105%, -100%);
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .price-info .price-wrap .unit {
    font-size: 12px;
    line-height: 1.7;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .discount-info-wrap {
    top: 12%;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .discount-info-wrap .discount-info {
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    font-size: 20px;
    line-height: 1.5;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-price .discount-info-wrap .origin {
    font-size: 12px;
    line-height: 1.7;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-info .pagkage-more-info {
    padding-top: 20px;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-info .pagkage-more-info .bullet_list.check > li {
    font-size: 12px;
    line-height: 1.7;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-info .pagkage-more-info .bullet_list.check > li::before {
    width: 20px;
    height: 20px;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-info .acco-head {
    margin-top: 20px;
    padding-top: 20px;
    font-size: 14px;
    line-height: 1.6;
  }
  .gom-plan-wrap .gom-plan-item .gom-plan-body .gom-plan-info .acco-head::after {
    width: 20px;
    height: 20px;
  }
  .gom-plan-wrap .gom-plan-item.best .gom-plan-body {
    border-color: #5772E8;
  }
  .gom-plan-wrap .gom-plan-item.best .plan-flag {
    background: #5772E8;
  }
  .gom-plan-wrap.cols-3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gom-plan-wrap.cols-3 .gom-plan-item .gom-plan-body .gom-plan-info .pagkage-more-info .bullet_list.check > li {
    font-size: 12px;
    line-height: 1.7;
  }
  .gom-plan-wrap.cols-3 .gom-plan-item.best {
    grid-column: auto;
  }
}
@media (max-width: 360px) {
  .box-col-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* 캘린더 */
.day-count-wrap em,
.day-count-wrap .count-txt {
  font-style: normal;
}

.pop-b2b-license {
  background-image: url(./../images/layout/gom_watermark.png);
}

.pop-b2b-license * {
  font-size: 14px;
  line-height: 1.6;
}

.pop-b2b-license .gom-title {
  text-align: left;
}

.pop-b2b-license #container {
  margin-top: 90px;
  padding-bottom: 80px;
}

.pop-b2b-license #container .b2b-license-header {
  max-width: 664px;
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.pop-b2b-license #container .b2b-license-header .gom-corp-logo {
  height: 32px;
}

.pop-b2b-license #container .b2b-license-header .gom-corp-logo img {
  display: block;
  max-height: 100%;
}

.pop-b2b-license #container .b2b-license-header .gom-title {
  margin-top: 40px;
  font-size: 28px;
  line-height: 1.5;
}

.pop-b2b-license #container .panel {
  max-width: 712px;
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.pop-b2b-license #container .panel .gom-title {
  font-size: 20px;
  line-height: 1.5;
}

.pop-b2b-license #container .panel + .panel {
  margin-top: 20px;
}

.pop-b2b-license #container .panel > .panel-inner {
  display: flex;
  gap: 40px;
}

.pop-b2b-license #container .panel > .panel-inner .info-wrap {
  width: 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid #DADADA;
}

.pop-b2b-license #container .panel .tbl-board-wrap {
  margin-top: 8px;
}

.pop-b2b-license #container .panel .tbl-board-wrap .common-table-list {
  margin-top: 0;
  border-bottom: 0;
}

.pop-b2b-license #container .panel .tbl-board-wrap .common-table-list th,
.pop-b2b-license #container .panel .tbl-board-wrap .common-table-list td {
  padding: 4px;
  border: 0;
  text-align: left;
  vertical-align: top;
  word-break: break-word;
  word-wrap: break-word;
}

.pop-b2b-license #container .panel .tbl-board-wrap .common-table-list th a,
.pop-b2b-license #container .panel .tbl-board-wrap .common-table-list td a {
  display: inline;
  overflow: visible;
  text-overflow: unset;
}

.pop-b2b-license #container .panel .tbl-board-wrap .common-table-list tbody tr.divide th,
.pop-b2b-license #container .panel .tbl-board-wrap .common-table-list tbody tr.divide td {
  padding-bottom: 16px;
  border-bottom: 1px solid #DADADA;
}

.pop-b2b-license #container .panel .tbl-board-wrap .common-table-list tbody tr.divide + tr th,
.pop-b2b-license #container .panel .tbl-board-wrap .common-table-list tbody tr.divide + tr td {
  padding-top: 16px;
}

.pop-b2b-license #container .panel .tbl-board-wrap .common-table-list tbody tr:first-child th,
.pop-b2b-license #container .panel .tbl-board-wrap .common-table-list tbody tr:first-child td {
  padding-top: 24px;
}

.pop-b2b-license #container .panel .tbl-board-wrap .common-table-list tbody tr:last-child th,
.pop-b2b-license #container .panel .tbl-board-wrap .common-table-list tbody tr:last-child td {
  padding-bottom: 16px;
}

.pop-b2b-license #container .panel .tbl-board-wrap .common-table-list tbody tr:hover {
  background-color: transparent;
}

.pop-b2b-license #container .panel .tbl-board-wrap .common-table-list tfoot th,
.pop-b2b-license #container .panel .tbl-board-wrap .common-table-list tfoot td {
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid #DADADA;
  font-weight: 700;
}

.pop-b2b-license #container .panel .tbl-board-wrap .common-table-list tfoot td {
  color: #ff4d4d;
}

.pop-b2b-license #container .panel.btm-info-wrap .panel-inner {
  display: block;
  padding: 20px;
  border-radius: 4px;
  background-color: #F8F8F8;
}

.pop-b2b-license #container .panel.btm-info-wrap .panel-inner .btm-info {
  display: flex;
  gap: 40px;
  margin-top: 24px;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}

.pop-b2b-license #container .panel.btm-info-wrap .panel-inner .btm-info .etc-info {
  flex: 1;
}

.pop-b2b-license #container .panel.btm-info-wrap .panel-inner .btm-info .etc-info > dl {
  display: flex;
  gap: 8px;
}

.pop-b2b-license #container .panel.btm-info-wrap .panel-inner .btm-info .etc-info > dl dt {
  width: 25%;
  font-weight: 400;
}

.pop-b2b-license #container .panel.btm-info-wrap .panel-inner .btm-info .etc-info > dl + dl {
  margin-top: 8px;
}

.pop-b2b-license #container .panel.btm-info-wrap .panel-inner .btm-info .corp-info {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #131313;
}

.pop-b2b-license #container .panel.btm-info-wrap .panel-inner .btm-info .corp-info .corp-name {
  font-size: 20px;
  line-height: 1.5;
}

.pop-b2b-license #container .panel.btm-info-wrap .panel-inner .btm-info .corp-info .corp-seal {
  width: 48px;
  height: 48px;
}

.pop-b2b-license #container .panel.btm-info-wrap .panel-inner .btm-info .corp-info .corp-seal img {
  display: block;
}

.pop-b2b-license #container .panel.notice-wrap {
  margin-top: 24px;
}

.pop-b2b-license #container .panel.notice-wrap .bullet_list.refer > li {
  padding-left: 14px;
  font-size: 12px;
  line-height: 1.5;
}

.pop-b2b-license #container .panel.notice-wrap .bullet_list.refer > li + li {
  margin-top: 0;
}

.pop-b2b-license #container .panel.notice-wrap .btn-wrap {
  margin-top: 40px;
}

.pop-b2b-license #container .panel.notice-wrap .btn-wrap [class^=btn] {
  font-size: 12px;
  line-height: 1.7;
}

.pop-b2b-license #container #contents {
  margin-top: 40px;
}

.pop-b2b-license.estimate-paper #container .panel + .panel {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .pop-b2b-license #container .panel .tbl-board-wrap .common-table-list col.mo-width {
    width: 21% !important;
  }
  .pop-b2b-license #container .panel > .panel-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .pop-b2b-license #container .panel.btm-info-wrap * {
    font-size: 12px;
    line-height: 1.7;
  }
  .pop-b2b-license #container .panel.btm-info-wrap .panel-inner {
    text-align: center;
  }
  .pop-b2b-license #container .panel.btm-info-wrap .panel-inner .btm-info {
    flex-direction: column;
    justify-content: center;
    gap: 24px;
  }
  .pop-b2b-license #container .panel.btm-info-wrap .panel-inner .btm-info .etc-info {
    width: 70%;
    margin: 0 auto;
  }
  .pop-b2b-license #container .panel.btm-info-wrap .panel-inner .btm-info .etc-info > dl {
    justify-content: space-between;
    margin: auto;
    gap: 4px;
    text-align: left;
  }
  .pop-b2b-license #container .panel.btm-info-wrap .panel-inner .btm-info .etc-info > dl dt {
    width: 50%;
  }
  .pop-b2b-license #container .panel.btm-info-wrap .panel-inner .btm-info .etc-info > dl dd {
    text-align: right;
  }
  .pop-b2b-license #container .panel.btm-info-wrap .panel-inner .btm-info .corp-info {
    gap: 8px;
  }
  .pop-b2b-license #container .panel.btm-info-wrap .panel-inner .btm-info .corp-info .corp-name {
    font-size: 14px;
    line-height: 1.6;
  }
  .pop-b2b-license #container .panel.btm-info-wrap .panel-inner .btm-info .corp-info .corp-seal {
    width: 32px;
    height: 32px;
  }
  .pop-b2b-license #container .panel.notice-wrap .btn-wrap {
    justify-content: center;
  }
}
@media print {
  @page {
    size: A4 portrait;
    margin: 10mm 0;
  }
  html, body {
    margin: 0;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  table, ul {
    page-break-inside: auto;
  }
  tr, li, article {
    page-break-inside: avoid;
    page-break-after: auto;
  }
  thead, tfoot {
    display: table-footer-group;
  }
  li {
    display: flex !important;
    margin-top: 15px;
  }
  em, button {
    display: none;
  }
  .print-not-area {
    display: none;
  }
  .pop-b2b-license * {
    font-size: 12px;
    line-height: 1.7;
  }
  .pop-b2b-license #container {
    margin-top: 50px;
    padding-bottom: 0;
  }
  .pop-b2b-license #container .pc-br {
    display: block;
  }
  .pop-b2b-license #container .b2b-license-header,
  .pop-b2b-license #container .panel {
    max-width: none;
  }
  .pop-b2b-license #container .b2b-license-header > .panel-inner,
  .pop-b2b-license #container .panel > .panel-inner {
    flex-direction: row;
  }
  .pop-b2b-license #container .b2b-license-header .gom-title {
    font-size: 24px;
    line-height: 1.5;
  }
  .pop-b2b-license #container .panel .gom-title {
    font-size: 18px;
    line-height: 1.5;
  }
  .pop-b2b-license #container .panel .tbl-board-wrap .common-table-list th a,
  .pop-b2b-license #container .panel .tbl-board-wrap .common-table-list td a {
    font-size: 12px;
    line-height: 1.7;
  }
  .pop-b2b-license #container .panel.print-page-divide {
    padding-top: 50px;
    break-before: page;
  }
  .pop-b2b-license #container .panel.btm-info-wrap .panel-inner {
    text-align: left;
  }
  .pop-b2b-license #container .panel.btm-info-wrap .panel-inner .btm-info {
    flex-direction: row;
  }
  .pop-b2b-license #container .panel.btm-info-wrap .panel-inner .btm-info .etc-info {
    width: auto;
  }
  .pop-b2b-license #container .panel.btm-info-wrap .panel-inner .btm-info .etc-info > dl {
    justify-content: unset;
  }
  .pop-b2b-license #container .panel.btm-info-wrap .panel-inner .btm-info .etc-info > dl dt {
    width: 20%;
  }
  .pop-b2b-license #container .panel.btm-info-wrap .panel-inner .btm-info .corp-info .corp-name {
    font-size: 18px;
    line-height: 1.5;
  }
  .pop-b2b-license #container .panel.notice-wrap .bullet_list.refer > li {
    font-size: 11px;
    line-height: 1.5;
  }
}
[data-animation] {
  opacity: 0;
  transform: translateY(80px);
  transition: 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition-property: opacity, transform;
}

[data-animation].active {
  opacity: 1;
  transform: translateY(0px);
}

[data-animation].delay-1 {
  transition-delay: 0.2s;
}

[data-animation].delay-2 {
  transition-delay: 0.4s;
}

[data-animation].delay-3 {
  transition-delay: 0.6s;
}

[data-animation].delay-4 {
  transition-delay: 0.8s;
}

[data-animation].delay-5 {
  transition-delay: 1s;
}

[data-animation].delay-6 {
  transition-delay: 1.2s;
}

[data-animation].delay-7 {
  transition-delay: 1.4s;
}

[data-animation].delay-8 {
  transition-delay: 1.6s;
}

[data-animation].delay-9 {
  transition-delay: 1.8s;
}

[data-animation].delay-10 {
  transition-delay: 2s;
}

[data-animation].delay-11 {
  transition-delay: 2.2s;
}

[data-animation].delay-12 {
  transition-delay: 2.4s;
}

[data-animation].delay-13 {
  transition-delay: 2.6s;
}

[data-animation].delay-14 {
  transition-delay: 2.8s;
}

[data-animation].delay-15 {
  transition-delay: 3s;
}

/*arrow*/
/*arrow - main*/
[class^=btn-arrow-] {
  display: block;
  background: no-repeat center;
  background-size: contain;
  cursor: pointer;
}

.btn-arrow-main {
  width: 29px;
  height: 59px;
}

.btn-arrow-main.prev {
  background-image: url(./../images/layout/arrow_main_left.svg);
}

.btn-arrow-main.next {
  background-image: url(./../images/layout/arrow_main_right.svg);
}

.btn-arrow-circle-lg {
  width: 61px;
  height: 61px;
}

.btn-arrow-circle-lg.prev {
  background-image: url(./../images/layout/arrow_circle_left.svg);
}

.btn-arrow-circle-lg.next {
  background-image: url(./../images/layout/arrow_circle_right.svg);
}

.btn-arrow-circle-md {
  width: 43px;
  height: 43px;
}

.btn-arrow-circle-md.prev {
  background-image: url(./../images/layout/arrow_circle_left.svg);
}

.btn-arrow-circle-md.next {
  background-image: url(./../images/layout/arrow_circle_right.svg);
}

.btn-arrow-close-lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-width='1.5' d='m5 5 14 14' data-name='선 465'/%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-width='1.5' d='M19 5 5 19' data-name='선 466'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 283' opacity='.2'/%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
}

.btn-arrow-close-md {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' d='m5 5 10 10' data-name='선 465'/%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' d='M15 5 5 15' data-name='선 466'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 283' opacity='.2'/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
}

.btn-arrow-close-sm {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' d='m5 5 10 10' data-name='선 465'/%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' d='M15 5 5 15' data-name='선 466'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 283' opacity='.2'/%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
}

.btn-arrow-up-lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m4.998 15 7-7 7 7' data-name='패스 137'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 316' opacity='.2'/%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
}

.btn-arrow-up-md {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='m4.5 13.5 6-6 6 6' data-name='패스 137'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 316' opacity='.2'/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
}

.btn-arrow-up-sm {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='m4.5 13.5 6-6 6 6' data-name='패스 137'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 316' opacity='.2'/%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
}

.btn-arrow-down-lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m4.998 9 7 7 7-7' data-name='패스 136'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 317' opacity='.2'/%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
}

.btn-arrow-down-md {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='m4.5 7.5 6 6 6-6' data-name='패스 136'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 317' opacity='.2'/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
}

.btn-arrow-down-sm {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='m4.5 7.5 6 6 6-6' data-name='패스 136'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 317' opacity='.2'/%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
}

.btn-arrow-prev-lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m15.501 3.998-8 8 8 8'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 6370' opacity='.2'/%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
}

.btn-arrow-prev-md {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='m13 4-6 6 6 6'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 6370' opacity='.2'/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
}

.btn-arrow-prev-sm {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='m13 4-6 6 6 6'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 6370' opacity='.2'/%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
}

.btn-arrow-prev-end {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='Rectangle 6370' opacity='.2'/%3E%3Cg fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' data-name='Group 172672'%3E%3Cpath d='m16 4-6 6 6 6'/%3E%3Cpath d='m10 4-6 6 6 6' data-name='back'/%3E%3C/g%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
}

.btn-arrow-next-lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m8.501 3.998 8 8-8 8'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 6370' opacity='.2'/%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
}

.btn-arrow-next-md {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='m7 4 6 6-6 6'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 6370' opacity='.2'/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
}

.btn-arrow-next-sm {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='m7 4 6 6-6 6'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 6370' opacity='.2'/%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
}

.btn-arrow-next-end {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='Rectangle 6370' opacity='.2'/%3E%3Cg fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' data-name='Group 172672'%3E%3Cpath d='m4 4 6 6-6 6'/%3E%3Cpath d='m10 4 6 6-6 6' data-name='back'/%3E%3C/g%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
}

.btn-arrow-chk-lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 3998'/%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m5.5 11.088 5 6.449 9-12.037' data-name='패스 2284'/%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
}

.btn-arrow-chk-md {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 3998'/%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='M4.5 10.141 8.786 15.5l7.714-10' data-name='패스 2284'/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
}

.btn-arrow-chk-sm {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 3998'/%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='M4.5 10.141 8.786 15.5l7.714-10' data-name='패스 2284'/%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
}

/*notice text*/
.noti-txt, .noti-exclamation, .noti-txt-lg, .noti-txt-md, .noti-txt-sm {
  position: relative;
}

.noti-txt::before, .noti-exclamation::before, .noti-txt-lg::before, .noti-txt-md::before, .noti-txt-sm::before {
  content: "";
  display: inline-block;
  background: no-repeat center url(./../images/layout/icon_common_notice.svg);
  background-size: contain;
}

.noti-txt.noti-gry, .noti-gry.noti-exclamation, .noti-gry.noti-txt-lg, .noti-gry.noti-txt-md, .noti-gry.noti-txt-sm {
  color: #535353;
}

.noti-txt.noti-gry::before, .noti-gry.noti-exclamation::before, .noti-gry.noti-txt-lg::before, .noti-gry.noti-txt-md::before, .noti-gry.noti-txt-sm::before {
  background-image: url(./../images/layout/icon_common_notice_gry.svg);
}

.noti-txt.noti-exclamation::before, .noti-exclamation::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cg fill='none' stroke='%23131313' stroke-width='1.5' data-name='타원 623' transform='translate(3.5 3.5)'%3E%3Ccircle cx='8.5' cy='8.5' r='8.5' stroke='none'/%3E%3Ccircle cx='8.5' cy='8.5' r='9.25'/%3E%3C/g%3E%3Cg data-name='그룹 2549'%3E%3Cg fill='none' stroke='%23131313' data-name='타원 624' transform='translate(11 6.75)'%3E%3Ccircle cx='1' cy='1' r='1' stroke='none'/%3E%3Ccircle cx='1' cy='1' r='.5'/%3E%3C/g%3E%3C/g%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-width='1.5' d='M12 10.499v6' data-name='패스 6128'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 569'/%3E%3C/svg%3E");
}

.noti-txt-sm {
  display: inline-flex;
  font-size: 12px;
}

.noti-txt-sm::before {
  width: 9px;
  height: 9px;
}

.noti-txt-md {
  display: inline-flex;
}

.noti-txt-md::before {
  width: 14px;
  height: 14px;
}

.noti-txt-lg {
  display: inline-flex;
}

.noti-txt-lg::before {
  width: 20px;
  height: 20px;
}

.noti-exclamation {
  display: inline-flex;
  margin-bottom: 15px;
}

.noti-exclamation::before {
  width: 24px;
  height: 24px;
}

.cp_g-noti-txt {
  display: block;
  padding-left: 25px;
}

.cp_g-noti-txt::before {
  position: absolute;
  top: 2px;
  left: 0;
}

/*icons*/
.btn-common-sns-wrap {
  margin-top: 24px;
}

.btn-common-sns {
  display: block;
  border-radius: 50%;
  background: no-repeat center;
  background-size: contain;
  cursor: pointer;
  color: transparent;
  font-size: 0;
  /*sns - footer*/
  /*sns - share*/
  /*sns - login*/
  /*sns - pay*/
}

.btn-common-sns[class*=fot-] {
  width: 24px;
  height: 24px;
}

.btn-common-sns[class*=fot-][class$=facebook] {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cg data-name='그룹 330'%3E%3Cpath fill='%23131313' d='M10.438 21.88a10.009 10.009 0 0 1-6.01-3.35A10 10 0 0 1 2 12 10.012 10.012 0 0 1 12 2a10.012 10.012 0 0 1 10 10 10 10 0 0 1-2.426 6.529 10 10 0 0 1-6.01 3.349V14.89h2.33l.444-2.89h-2.774v-1.876a1.441 1.441 0 0 1 1.63-1.562h1.261V6.101a15.406 15.406 0 0 0-2.238-.2 3.524 3.524 0 0 0-3.777 3.891v2.2H7.901v2.89h2.539v6.989Z' data-name='빼기 18'/%3E%3C/g%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 1226' opacity='.2'/%3E%3C/svg%3E");
}

.btn-common-sns[class*=fot-][class$=instagram] {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23131313' d='M16.016 2.5H7.984A5.484 5.484 0 0 0 2.5 7.984v8.032A5.484 5.484 0 0 0 7.984 21.5h8.032c3.732 0 5.23-3.829 5.23-3.829a8.151 8.151 0 0 0 .254-1.655V7.984A5.484 5.484 0 0 0 16.016 2.5Zm3.734 13.657a3.64 3.64 0 0 1-3.64 3.64H7.89a3.64 3.64 0 0 1-3.64-3.64v-8.22a3.64 3.64 0 0 1 3.64-3.64h8.22a3.64 3.64 0 0 1 3.64 3.64Z' data-name='패스 45691'/%3E%3Cpath fill='%23131313' d='M12 7.118a4.93 4.93 0 1 0 4.93 4.93A4.93 4.93 0 0 0 12 7.118Zm0 8.126a3.2 3.2 0 1 1 3.2-3.2 3.2 3.2 0 0 1-3.2 3.199Z' data-name='패스 45692'/%3E%3Ccircle cx='1.148' cy='1.148' r='1.148' fill='%23131313' data-name='타원 1148' transform='translate(15.946 5.781)'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 61907' opacity='.2'/%3E%3C/svg%3E");
}

.btn-common-sns[class*=fot-][class$=google] {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 6434'/%3E%3Cpath fill='%23131313' fill-rule='evenodd' d='M12.172 10.76v2.975h4.919a4.684 4.684 0 0 1-4.919 3.74 5.476 5.476 0 0 1 0-10.949 4.883 4.883 0 0 1 3.456 1.338l2.355-2.267a8.3 8.3 0 0 0-5.81-2.269 8.673 8.673 0 0 0 0 17.346c5 0 8.327-3.52 8.327-8.473a7.941 7.941 0 0 0-.137-1.438h-8.192Z' data-name='패스 6317'/%3E%3C/svg%3E");
}

.btn-common-sns[class*=fot-][class$=twitter] {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23131313' d='M21 6.73a7.377 7.377 0 0 1-2.12.584 3.719 3.719 0 0 0 1.625-2.044 7.359 7.359 0 0 1-2.351.9 3.692 3.692 0 0 0-6.383 2.527 3.836 3.836 0 0 0 .094.841 10.483 10.483 0 0 1-7.613-3.857 3.692 3.692 0 0 0 1.142 4.927 3.637 3.637 0 0 1-1.669-.461v.045a3.7 3.7 0 0 0 2.96 3.625 3.808 3.808 0 0 1-.972.125 3.733 3.733 0 0 1-.7-.065 3.7 3.7 0 0 0 3.449 2.565 7.421 7.421 0 0 1-4.587 1.576 7.925 7.925 0 0 1-.879-.049 10.5 10.5 0 0 0 16.165-8.843l-.011-.478A7.44 7.44 0 0 0 21 6.73Zm0 0' data-name='패스 48'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 6786'/%3E%3C/svg%3E");
}

.btn-common-sns[class*=fot-][class$=twitter-x] {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 6786'/%3E%3Cpath fill='%23131313' d='m15.178 18.621-3.893-5.092-4.455 5.092h-2.5l5.787-6.619-6.117-8h5.188l3.5 4.637 4.093-4.637h2.5l-5.446 6.156 6.39 8.465Zm.658-1.512h1.374l-8.811-11.7H6.91Z' data-name='합치기 3'/%3E%3C/svg%3E");
}

.btn-common-sns[class*=fot-][class$=kakaotalk] {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' data-name='Kakao talk_24_131313'%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 6786'/%3E%3Cpath fill='%23131313' d='M11.999 3.613c-5.015 0-9.082 3.211-9.082 7.173a6.993 6.993 0 0 0 4.214 6.057l-.857 3.195a.268.268 0 0 0 .065.273.251.251 0 0 0 .344.015l3.684-2.485a11.5 11.5 0 0 0 1.635.12c5.015 0 9.084-3.211 9.084-7.174s-4.069-7.173-9.084-7.173' data-name='패스 34956'/%3E%3C/svg%3E");
}

.btn-common-sns[class*=fot-][class$=youtube] {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23131313' d='M21.582 7.2a2.513 2.513 0 0 0-1.768-1.78C18.254 5 12 5 12 5s-6.254 0-7.814.421A2.513 2.513 0 0 0 2.418 7.2a28.293 28.293 0 0 0 0 9.69 2.513 2.513 0 0 0 1.768 1.78c1.56.421 7.814.421 7.814.421s6.254 0 7.814-.421a2.513 2.513 0 0 0 1.768-1.78 28.293 28.293 0 0 0 0-9.69ZM9.955 15.019V9.072l5.227 2.974Z' data-name='패스 2337'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 1227' opacity='.2'/%3E%3C/svg%3E");
}

.btn-common-sns[class*=fot-][class$=blog] {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' data-name='Naver blog_24_131313'%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 6786'/%3E%3Cg fill='%23131313' data-name='그룹 44244'%3E%3Cpath d='M6.381 9.577a.687.687 0 1 0 .687.687.687.687 0 0 0-.687-.687Z' data-name='패스 45655'/%3E%3Cpath d='M13.164 9.506a.739.739 0 1 0 .739.739.739.739 0 0 0-.739-.739Z' data-name='패스 45656'/%3E%3Cpath d='M19.302 2.753h-14.6A2.667 2.667 0 0 0 2.035 5.42v8.668a2.667 2.667 0 0 0 2.667 2.667H9.86l1.754 4.134s.121.358.413.358c.293 0 .413-.358.413-.358l1.754-4.134h5.111a2.667 2.667 0 0 0 2.667-2.667V5.42a2.667 2.667 0 0 0-2.67-2.667ZM8.294 10.415a1.652 1.652 0 0 1-1.647 1.63 1.369 1.369 0 0 1-.991-.42v.286H4.462v-4.92s-.005 0 0 0c.074.012 1.193 0 1.193 0v1.882c.281-.478 1.092-.47 1.092-.47a1.747 1.747 0 0 1 1.547 2.012Zm2.1-1.865v3.369H9.226V8.583c0-.454-.563-.58-.563-.58V6.827a1.615 1.615 0 0 1 1.732 1.723Zm2.768 3.5a1.808 1.808 0 1 1 1.958-1.8 1.885 1.885 0 0 1-1.958 1.797Zm6.4 0a1.666 1.666 0 0 1-1.722 1.712h-.529v-1.109h.319s.731.067.722-1.059c0 0-.143.456-1.168.456a1.539 1.539 0 0 1-1.453-1.523v-.538a1.66 1.66 0 0 1 1.63-1.588 1.189 1.189 0 0 1 1.017.454v-.361h1.184Z' data-name='패스 45657'/%3E%3Cpath d='M17.704 9.518a.723.723 0 1 0 .723.723.722.722 0 0 0-.723-.723Z' data-name='패스 45658'/%3E%3C/g%3E%3C/svg%3E");
}

.btn-common-sns[class*=shr-] {
  width: 28px;
  height: 28px;
}

.btn-common-sns[class*=shr-][class$=line] {
  background-image: url(./../images/layout/icon_share_naver_line.svg);
}

.btn-common-sns[class*=shr-][class$=facebook] {
  background-image: url(./../images/layout/icon_share_facebook.svg);
}

.btn-common-sns[class*=shr-][class$=google] {
  background-image: url(./../images/layout/icon_share_google.svg);
}

.btn-common-sns[class*=shr-][class$=kakaotalk] {
  background-image: url(./../images/layout/icon_share_kakaotalk.svg);
}

.btn-common-sns[class*=shr-][class$=naver] {
  background-image: url(./../images/layout/icon_share_naver.svg);
}

.btn-common-sns[class*=shr-][class$=twitter] {
  background-image: url(./../images/layout/icon_share_twitter.svg);
}

.btn-common-sns[class*=shr-][class$=instagram] {
  background-image: url(./../images/layout/icon_share_instagram.png);
}

.btn-common-sns[class*=shr-][class$=copylink] {
  background-image: url(./../images/layout/icon_share_copylink.svg);
}

.btn-common-sns[class*=log-] {
  width: 40px;
  height: 40px;
}

.btn-common-sns[class*=log-][class$=naver] {
  background-image: url(./../images/layout/icon_sns_login_naver.png);
}

.btn-common-sns[class*=log-][class$=facebook] {
  background-image: url(./../images/layout/icon_sns_login_facebook.png);
}

.btn-common-sns[class*=log-][class$=google] {
  background-image: url(./../images/layout/icon_sns_login_google.png);
}

.btn-common-sns[class*=log-][class$=kakao] {
  background-image: url(./../images/layout/icon_sns_login_kakao.png);
}

.btn-common-sns[class*=log-][class$=line] {
  background-image: url(./../images/layout/icon_sns_login_line.svg);
}

.btn-common-sns[class*=log-][class$=vk] {
  background-image: url(./../images/layout/icon_sns_login_vk.svg);
}

.btn-common-sns[class*=pay-] {
  border-radius: unset;
  width: 58px;
  height: 24px;
}

.btn-common-sns[class*=pay-][class$=kakao] {
  background-image: url(./../images/layout/icon_sns_pay_kakao.png);
}

.btn-common-sns[class*=pay-][class$=naver] {
  background-image: url(./../images/layout/icon_sns_pay_naver.png);
}

.btn-common-sns-img {
  width: auto;
  height: 24px;
}

.gom-logo-gnb {
  display: block;
  background: no-repeat center url(./../images/layout/logo_h.svg);
  background-size: contain;
  width: 158px;
  height: 43px;
}

.gom-logo-foot {
  display: block;
  background: no-repeat center url(./../images/layout/logo_h.svg);
  background-size: contain;
  width: 93px;
  height: 45px;
}

.gom-logo-login {
  display: block;
  background: no-repeat center url(./../images/layout/logo_h.svg);
  background-size: contain;
  width: 204px;
  height: 95px;
}

.gom-logo-company {
  display: block;
  background: no-repeat center url(./../images/layout/logo_gom_n_company.svg);
  background-size: contain;
}

.gom-logo-company.sm {
  width: 151px;
  height: 21px;
}

.gom-logo-company.md {
  width: 244px;
  height: 34px;
}

.gom-logo-company.lg {
  width: 471px;
  height: 66px;
}

.gom-ci {
  display: block;
  background: no-repeat center url(./../images/layout/gom_ci.svg);
  background-size: contain;
  width: 200px;
  height: 117px;
}

.icon-common-text {
  font-size: 12px;
}

/*input*/
.form-item .form-name {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.form-item .form-label {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.6;
  margin-right: 12px;
  width: 120px;
  min-height: 36px;
  font-weight: 400;
}

.form-item .form-label.required::before {
  content: "*";
  display: inline-block;
  padding-right: 2px;
}

.form-item .fake-label {
  font-size: 14px;
  line-height: 1.6;
  color: #A1A1A1;
  position: absolute;
  top: 5px;
  left: 0;
  transform: translateY(unset);
}

.form-item .fake-label.required::before {
  content: "*";
  display: inline-block;
  padding-right: 2px;
  color: #FF5337;
}

.form-item .form-filename {
  display: block;
  padding: 0;
  font-size: 14px;
  line-height: 1.6;
  max-width: 217px;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 36px;
  line-height: 36px;
}

.form-item .form-filename.null {
  color: #A1A1A1;
}

.form-item .timer {
  font-size: 12px;
  line-height: 1.7;
  position: absolute;
  top: 9px;
  right: 0;
  transform: translateY(unset);
}

.form-item .compleat {
  position: absolute;
  top: 3px;
  right: 0;
  transform: translateY(unset);
  width: 24px;
  height: 24px;
  background: no-repeat center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%2369b703' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m7.133 11.838 3.691 4.756 6.044-8.143' data-name='패스 2284'/%3E%3Cg fill='none' stroke='%2369b703' stroke-width='1.5' data-name='타원 641' transform='translate(3 3)'%3E%3Ccircle cx='9' cy='9' r='9' stroke='none'/%3E%3Ccircle cx='9' cy='9' r='9.75'/%3E%3C/g%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 6372' opacity='.2'/%3E%3C/svg%3E");
}

.form-item .inp-box + .fake-label {
  position: absolute;
  top: 9px;
  left: 12px;
  transform: translateY(unset);
}

.form-item + .form-item {
  margin-top: 24px;
}

.form-item.has-label {
  position: relative;
  padding-left: 132px;
}

.form-cont {
  position: relative;
  max-width: 327px;
}

.form-cont .form-drop-box {
  width: 327px;
}

.form-cont input[type=text],
.form-cont input[type=password] {
  display: block;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
  width: 327px;
  height: 36px;
}

.form-cont input[type=text]::placeholder,
.form-cont input[type=password]::placeholder {
  font-weight: initial;
  color: #A1A1A1;
}

.form-cont input[type=text].search,
.form-cont input[type=password].search {
  width: 327px;
  padding-left: 30px;
}

.form-cont input[type=text].wide,
.form-cont input[type=password].wide {
  width: 664px;
}

.form-cont input[type=file] {
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
}

.form-cont select {
  display: none;
}

.form-cont label + label {
  margin-left: 20px;
}

.form-cont .inp-line {
  border-bottom: 1px solid #828282;
}

.form-cont .inp-line:focus {
  border-bottom-color: #131313;
}

.form-cont .inp-line.caution {
  border-bottom-color: #FF5337;
}

.form-cont .inp-box {
  background-color: #F4F4F4;
  border-radius: 4px;
  padding: 0 12px;
}

.form-cont .inp-dropbox {
  border: 1px solid #DADADA;
  border-radius: 4px;
  padding-left: 12px;
}

.form-cont .btn-password-view {
  position: absolute;
  top: 10px;
  right: 0;
  transform: translateY(unset);
}

.form-cont .btn-search {
  position: absolute;
  top: 6px;
  left: 0;
  transform: translateY(unset);
}

.form-cont.form-cont-bottom .form-drop-box {
  width: 140px;
}

.form-cont.form-cont-bottom .form-drop-box .btn-drop-box::before {
  background: no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' d='m4.5 7.5 6 6 6-6' data-name='패스 136'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 317' opacity='.2'/%3E%3C/svg%3E");
}

.form-cont.form-cont-bottom .form-drop-box ul.drop-list {
  top: unset;
  bottom: 45px;
}

.form-cont.form-cont-bottom .form-drop-box ul.drop-list li a {
  color: #131313 !important;
  font-weight: 700;
}

.form-cont.form-drop-quantity {
  width: 140px;
}

.form-cont.form-drop-quantity > input {
  width: inherit;
  padding-right: 44px;
}

.form-cont.form-drop-quantity .form-drop-box {
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
}

.form-cont.wide {
  max-width: 664px;
}

.form-cont:has(.btn-drop-box) {
  min-height: 36px;
}

.form-col {
  display: flex;
  gap: 13px;
  max-width: 664px;
}

.form-col .form-cont {
  width: 327px;
}

.form-col .form-cont input[type=text],
.form-col .form-cont input[type=password] {
  width: 100%;
}

.form-col.narrow {
  max-width: 327px;
}

.form-col.narrow .form-cont {
  width: unset;
  flex: 1;
}

.form-col.narrow .form-cont + .btn-sm {
  margin-top: 4px;
}

/*search-box*/
.searh-form-wrap {
  margin: 40px 0;
}

.searh-form-wrap .form-cont {
  margin: 0 auto;
  max-width: 632px;
  position: relative;
  border: 1px solid #DADADA;
  background-color: #FFFFFF;
  border-radius: 4px;
  display: flex;
}

.searh-form-wrap .form-cont select {
  display: none;
}

.searh-form-wrap .form-cont form {
  width: 100%;
}

.searh-form-wrap .form-cont .form-drop-box {
  padding: 0;
  width: unset;
}

.searh-form-wrap .form-cont .form-drop-box .btn-drop-search {
  height: unset;
  width: 166px;
  padding: 17px 36px 17px 16px;
}

.searh-form-wrap .form-cont .form-drop-box .btn-drop-search::before {
  right: 8px;
}

.searh-form-wrap .form-cont .form-drop-box .btn-drop-search + ul.drop-list {
  top: 65px;
}

.searh-form-wrap .form-cont .inp-search {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 17px 56px 17px 16px;
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

.searh-form-wrap .form-cont .btn-search {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  left: unset;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23858585' stroke-linecap='round' stroke-width='1.5' d='m15.5 15.016 5 5' data-name='선 486'/%3E%3Cg fill='none' stroke='%23858585' stroke-width='1.5' data-name='타원 57' transform='translate(4 4)'%3E%3Ccircle cx='6' cy='6' r='6' stroke='none'/%3E%3Ccircle cx='6' cy='6' r='6.75'/%3E%3C/g%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 282' opacity='.2'/%3E%3C/svg%3E");
  background-size: 24px auto;
}

.help-wrap {
  margin-top: 10px;
}

.help-wrap p {
  font-size: 12px;
  line-height: 1.7;
  font-weight: 400;
}

.help-wrap p.guide-txt {
  position: relative;
  padding-left: 5px;
}

.help-wrap p.guide-txt::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  transform: translateY(unset);
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #131313;
}

.help-wrap p.err-txt {
  color: #FF5337;
}

.help-wrap p.noti-gry {
  text-align: left;
  color: #888888;
}

body:lang(ja) .help-wrap p, .lang-ja .help-wrap p {
  word-break: normal;
}

.help-wrap .move-to {
  text-decoration: underline;
  font-size: 12px;
  line-height: 1.7;
  font-weight: bold;
}

.password-forgot-txt {
  display: inline-block;
  margin-top: 12px;
  text-decoration: underline;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

/*text area*/
textarea {
  background-color: #F4F4F4;
  padding: 16px 12px;
  font-size: 14px;
  line-height: 1.6;
  border-radius: 4px;
  height: 200px;
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
}

textarea.wide {
  width: 664px;
}

textarea::placeholder {
  color: #A1A1A1;
}

/*checkbox*/
input[type=checkbox] {
  width: 24px;
  height: 24px;
  background: no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 3998'/%3E%3Cg fill='none' stroke='%23131313' stroke-linejoin='round' stroke-width='1.5' data-name='사각형 6891' transform='translate(4 4)'%3E%3Crect width='16' height='16' stroke='none' rx='1'/%3E%3Crect width='17.5' height='17.5' x='-.75' y='-.75' rx='1.75'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain auto;
}

input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 3998'/%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m7.23 11.672 3.579 4.828 6.421-9' data-name='패스 2284'/%3E%3Cg fill='none' stroke='%23131313' stroke-linejoin='round' stroke-width='1.5' data-name='사각형 6891' transform='translate(4 4)'%3E%3Crect width='16' height='16' stroke='none' rx='1'/%3E%3Crect width='17.5' height='17.5' x='-.75' y='-.75' rx='1.75'/%3E%3C/g%3E%3C/svg%3E");
}

input[type=checkbox]:checked:disabled {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 3998'/%3E%3Cpath fill='none' stroke='%23828282' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m7.23 11.672 3.579 4.828 6.421-9' data-name='패스 2284'/%3E%3Cg fill='none' stroke='%23828282' stroke-linejoin='round' stroke-width='1.5' data-name='사각형 6891' transform='translate(4 4)'%3E%3Crect width='16' height='16' stroke='none' rx='1'/%3E%3Crect width='17.5' height='17.5' x='-.75' y='-.75' rx='1.75'/%3E%3C/g%3E%3C/svg%3E");
}

input[type=checkbox]:disabled {
  cursor: default;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 3998'/%3E%3Cg fill='none' stroke='%23828282' stroke-linejoin='round' stroke-width='1.5' data-name='사각형 6891' transform='translate(4 4)'%3E%3Crect width='16' height='16' stroke='none' rx='1'/%3E%3Crect width='17.5' height='17.5' x='-.75' y='-.75' rx='1.75'/%3E%3C/g%3E%3C/svg%3E");
}

input[type=checkbox]:disabled + span, input[type=checkbox]:disabled + span > strong {
  color: #828282;
}

input[type=checkbox]:checked + span {
  color: #131313;
}

input[type=checkbox] + .line {
  font-size: 12px;
  line-height: 1.7;
}

/*radio*/
input[type=radio] {
  width: 24px;
  height: 24px;
  background: no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cg fill='none' stroke='%23131313' stroke-width='1.5' data-name='타원 641' transform='translate(3 3)'%3E%3Ccircle cx='9' cy='9' r='9' stroke='none'/%3E%3Ccircle cx='9' cy='9' r='9.75'/%3E%3C/g%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 6372' opacity='.2'/%3E%3C/svg%3E");
  background-size: contain;
}

input[type=radio]:checked {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cg fill='none' stroke='%23131313' stroke-width='1.5' data-name='타원 641' transform='translate(3 3)'%3E%3Ccircle cx='9' cy='9' r='9' stroke='none'/%3E%3Ccircle cx='9' cy='9' r='9.75'/%3E%3C/g%3E%3Ccircle cx='5.5' cy='5.5' r='5.5' fill='%23131313' data-name='타원 643' transform='translate(6.5 6.5)'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 6372' opacity='.2'/%3E%3C/svg%3E");
}

input[type=radio]:checked:disabled {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cg fill='none' stroke='%23dadada' stroke-width='1.5' data-name='타원 641' transform='translate(3 3)'%3E%3Ccircle cx='9' cy='9' r='9' stroke='none'/%3E%3Ccircle cx='9' cy='9' r='9.75'/%3E%3C/g%3E%3Ccircle cx='5.5' cy='5.5' r='5.5' fill='%23dadada' data-name='타원 643' transform='translate(6.5 6.5)'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 6372' opacity='.2'/%3E%3C/svg%3E");
}

input[type=radio] + span {
  display: inline-block;
  font-size: 14px;
  line-height: 1.6;
}

input[type=radio]:disabled {
  cursor: default;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cg fill='none' stroke='%23dadada' stroke-width='1.5' data-name='타원 641' transform='translate(3 3)'%3E%3Ccircle cx='9' cy='9' r='9' stroke='none'/%3E%3Ccircle cx='9' cy='9' r='9.75'/%3E%3C/g%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 6372' opacity='.2'/%3E%3C/svg%3E");
}

input[type=radio]:disabled + span {
  color: #828282;
}

input[type=radio]:checked + span {
  color: #131313;
}

/*label has radio && checkbox*/
.inp-chk, .chk-notice {
  position: relative;
  display: inline-block;
  padding-left: 32px;
  font-size: 14px;
  line-height: 1.6;
  line-height: 24px;
}

.inp-chk input, .chk-notice input {
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}

.inp-chk input + span, .chk-notice input + span {
  cursor: pointer;
}

.inp-chk input:disabled, .chk-notice input:disabled {
  cursor: default;
}

.inp-chk input:disabled + span, .chk-notice input:disabled + span {
  color: #828282;
  cursor: default;
}

.chk-notice {
  margin-top: 24px;
  text-align: center;
}

/* agree form */
.agree-form {
  margin-top: 24px;
}

.agree-form li + li {
  margin-top: 12px;
}

.agree-form label {
  display: inline-block;
  cursor: pointer;
}

.agree-form label + label {
  margin-left: 16px;
}

.agree-form label a, .agree-form label button {
  font-size: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.agree-form .sub-check {
  margin: 12px 0 0 32px;
}

/*dropdown*/
.form-drop-box {
  position: relative;
  /*dropdown btn*/
  /*list*/
}

.form-drop-box button {
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  text-align: left;
  height: 36px;
  font-size: 14px;
  line-height: 1.6;
  width: 100%;
}

.form-drop-box button[class^=btn-drop-] {
  padding-right: 32px;
}

.form-drop-box button[class^=btn-drop-]::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
  width: 20px;
  height: 20px;
  background: no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='m4.5 7.5 6 6 6-6' data-name='패스 136'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 317' opacity='.2'/%3E%3C/svg%3E");
  transition: 0.3s ease;
}

.form-drop-box button[class^=btn-drop-].open::before {
  transform: translateY(-50%) rotate(-180deg);
}

.form-drop-box button > span {
  color: #DADADA;
  pointer-events: none;
}

.form-drop-box button.btn-drop-box {
  border: 1px solid #DADADA;
  border-radius: 4px;
  padding-left: 12px;
}

.form-drop-box button.btn-drop-box::before {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.form-drop-box button.btn-drop-box + ul.drop-list li a.active {
  padding-right: 32px;
  background: no-repeat center right 12px url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 3998'/%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='M4.5 10.141 8.786 15.5l7.714-10' data-name='패스 2284'/%3E%3C/svg%3E");
  background-color: #F4F4F4;
  background-size: 20px auto;
}

.form-drop-box button.btn-drop-line {
  border-bottom: 1px solid #828282;
}

.form-drop-box button.btn-drop-quantity {
  font-size: 0;
  line-height: 0;
  color: transparent;
  width: 100%;
  padding: 0;
}

.form-drop-box button.btn-drop-quantity::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-drop-box button.btn-drop-quantity.open::before {
  transform: translate(-50%, -50%) rotate(-180deg);
}

.form-drop-box button.btn-drop-quantity + ul.drop-list {
  max-height: 144px;
  overflow-y: scroll;
  width: 140px;
  right: 0;
}

.form-drop-box ul.drop-list {
  position: absolute;
  box-sizing: border-box;
  z-index: 2;
  top: 48px;
  border-radius: 4px;
  width: 100%;
  border: 1px solid #DADADA;
  background-color: #FFFFFF;
  display: none;
  overflow: auto;
  max-height: 30vh;
}

.form-drop-box ul.drop-list li a {
  display: flex;
  align-items: center;
  height: 36px;
  padding: 0 12px;
  font-size: 14px;
  line-height: 1.6;
}

.form-drop-box ul.drop-list li a:hover {
  background-color: #F4F4F4;
}

.form-drop-box ul.drop-list li button {
  padding-left: 40px;
}

.form-drop-box ul.drop-list li button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  display: block;
  width: 20px;
  height: 20px;
  background: no-repeat center url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='m4.5 7.5 6 6 6-6' data-name='패스 136'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 317' opacity='.2'/%3E%3C/svg%3E");
  transition: 0.3s ease;
}

.form-drop-box ul.drop-list li button.active {
  background-color: #F4F4F4;
  color: #484848;
}

.form-drop-box ul.drop-list li button.active::before {
  transform: translateY(-50%) rotate(-180deg);
}

.form-drop-box ul.drop-list li button:hover {
  background-color: #F4F4F4;
}

.form-drop-box ul.drop-list li button.open {
  background-color: #F4F4F4;
}

.form-drop-box ul.drop-list li button.open::before {
  transform: translateY(-50%) rotate(-180deg);
}

.form-drop-box ul.drop-list li ul {
  display: none;
}

.txt-blue {
  color: #0064F9;
}

.txt-red {
  color: #F10001;
}

.dot-list {
  display: inline-block;
}

.dot-list li {
  position: relative;
  padding-left: 12px;
}

.dot-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 4px;
  border-radius: 50%;
  display: block;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #000000;
}

.dot-list li.txt-blue::before {
  background-color: #0064F9;
}

.dot-list.sub li {
  color: #828282;
}

.dot-list.sub li::before {
  background-color: #828282;
}

.dash-list li {
  position: relative;
  padding-left: 8px;
  font-size: 12px;
  line-height: 1.7;
}

.dash-list li::before {
  content: "-";
  position: absolute;
  top: 0px;
  left: 0;
  border-radius: 50%;
}

/* 툴팁 */
.tooltip-wrap {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.tooltip-wrap .tooltip-button {
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
  display: inline-block;
  vertical-align: top;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cg fill='none' stroke='%23131313' stroke-width='1.5' data-name='Ellipse 623' transform='translate(3.5 3.5)'%3E%3Ccircle cx='8.5' cy='8.5' r='8.5' stroke='none'/%3E%3Ccircle cx='8.5' cy='8.5' r='9.25'/%3E%3C/g%3E%3Cg fill='none' stroke='%23131313' data-name='Group 2549'%3E%3Cpath stroke-linecap='round' stroke-width='1.5' d='M9.254 9.5a2.751 2.751 0 1 1 3.861 2.516 1.769 1.769 0 0 0-1.111 1.6v.415' data-name='Path 6094'/%3E%3Cg data-name='Ellipse 624' transform='translate(11 15.75)'%3E%3Ccircle cx='1' cy='1' r='1' stroke='none'/%3E%3Ccircle cx='1' cy='1' r='.5'/%3E%3C/g%3E%3C/g%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='Rectangle 6336' opacity='.2'/%3E%3C/svg%3E") center center no-repeat;
}

.tooltip-wrap .tooltip-button.active {
  opacity: 0.7;
}

.tooltip-wrap .tooltip-cont {
  display: none;
  position: absolute;
  bottom: 36px;
  left: 0;
  transform: translateX(-50%);
  width: max-content;
  min-width: 327px;
  padding: 18px 16px;
  border-radius: 4px;
  border: 1px solid #DADADA;
  background-color: #F8F8F8;
  box-sizing: border-box;
  font-size: 12px;
  line-height: 1.7;
}

.tooltip-wrap .tooltip-cont .tooltip-title {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

.tooltip-wrap .tooltip-cont .dot-list li:before {
  top: 5px;
}

.tooltip-wrap .tooltip-cont .btn-close-tooltip {
  display: none;
  position: absolute;
  top: 8px;
  right: 8px;
  transform: translateY(0);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' d='m5 5 10 10' data-name='선 465'/%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' d='M15 5 5 15' data-name='선 466'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 283' opacity='.2'/%3E%3C/svg%3E");
  background-size: cover;
}

.tooltip-wrap.is-open .tooltip-cont {
  display: block;
}

/* 반응형 */
@media (max-width: 1279px) {
  .form-cont {
    max-width: unset;
  }
  .form-cont input[type=text],
  .form-cont input[type=password] {
    width: 100%;
  }
  .form-cont input[type=text].search,
  .form-cont input[type=password].search {
    width: auto;
  }
  .form-cont input[type=text].wide,
  .form-cont input[type=password].wide {
    width: 100%;
  }
  .form-cont .form-drop-box {
    width: 100%;
  }
  .form-cont.wide {
    max-width: unset;
  }
  .form-item .form-label {
    position: unset;
    margin: 0 0 12px;
    width: auto;
    min-height: unset;
    display: block;
  }
  .form-item.has-label {
    display: block;
    padding-left: 0;
  }
  .form-col {
    max-width: unset;
  }
  .form-col .form-cont {
    flex: 1;
    width: unset;
  }
  .form-col.narrow {
    max-width: unset;
  }
  textarea.wide {
    width: 100%;
  }
  /* 툴팁 */
  .tooltip-wrap .tooltip-cont .tooltip-title {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  /*search-box*/
  .searh-form-wrap {
    margin: 40px 0;
  }
  .searh-form-wrap .form-cont {
    max-width: unset;
    border: 0;
    background-color: transparent;
    border-radius: unset;
    display: block;
  }
  .searh-form-wrap .form-cont .form-drop-box {
    border: 1px solid #DADADA;
    border-radius: 4px;
    margin-bottom: 16px;
  }
  .searh-form-wrap .form-cont .form-drop-box .btn-drop-search {
    height: 36px;
    width: 100%;
    padding: 0 44px 0 12px;
  }
  .searh-form-wrap .form-cont .form-drop-box .btn-drop-search::before {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
  }
  .searh-form-wrap .form-cont .form-drop-box .btn-drop-search + ul.drop-list {
    top: 46px;
  }
  .searh-form-wrap .form-cont .inp-search {
    border: 1px solid #DADADA;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.6;
  }
  .searh-form-wrap .form-cont .btn-search {
    top: unset;
    transform: unset;
    bottom: 16px;
    width: 24px;
    height: 24px;
  }
  .help-wrap p {
    font-size: 12px;
    line-height: 1.7;
  }
  .form-col {
    flex-wrap: wrap;
  }
  .form-col .form-cont {
    flex: 1;
  }
  .form-col .form-cont + .form-cont {
    width: 100%;
    margin-top: 16px;
    flex: unset;
  }
  /* 툴팁 */
  .tooltip-wrap .tooltip-cont {
    left: unset;
    right: 0;
    transform: unset;
    min-width: calc(100% - 32px);
  }
  .tooltip-wrap .tooltip-cont .btn-close-tooltip {
    display: block;
  }
}
.layer-dimmed {
  top: 0;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.layer-dimmed.no-dimmed::before {
  display: none;
}

.pop-float-layer {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 640px;
  margin: auto;
  padding-bottom: 44px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
  text-align: center;
}

.pop-float-layer p:not([class]), .pop-float-layer a:not([class]) {
  font-size: 14px;
  line-height: 1.6;
}

.pop-float-layer:has(.btn-close-layer) .pop-title {
  padding-top: 0;
}

.pop-float-layer[data-dim=true] {
  z-index: 110;
}

.pop-float-layer.pop-float-layer-lg {
  max-width: 640px;
}

.pop-float-layer.pop-full-window .tbl-board-wrap {
  margin: 0 48px;
}

.pop-float-layer.pop-full-window .tbl-board-wrap.privacy-tbl table[class^=common-table] {
  margin-top: 0;
}

.pop-float-layer.pop-full-layer {
  max-width: calc(100% - 584px);
  padding: 55px 82px 10px 82px;
}

.pop-float-layer.pop-mo-layer {
  max-width: 327px;
  padding: 0 0 36px;
}

.pop-float-layer.pop-mo-layer .btn-close-layer {
  top: 12px;
  margin-right: 20px;
  margin-bottom: 12px;
}

.pop-float-layer.pop-mo-layer .pop-title {
  font-size: 16px;
  line-height: 1.6;
  padding: 0 20px;
}

.pop-float-layer.pop-mo-layer .pop-sub-title {
  padding: 0 20px;
}

.pop-float-layer.pop-mo-layer .btn-pop-wrap {
  flex-direction: column;
  gap: 12px;
}

.pop-float-layer.pop-mo-layer .btn-pop-wrap button, .pop-float-layer.pop-mo-layer .btn-pop-wrap [class^=btn-] {
  margin: 0 auto;
}

.pop-float-layer.cp_g-pop-float-layer {
  transform: translateY(0);
  margin-bottom: 50px;
}

.pop-float-layer .noti-exclamation {
  margin-bottom: 16px;
  justify-content: center;
}

.pop-float-layer .pop-title {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 16px;
  padding: 44px 48px 0;
}

.pop-float-layer .pop-title > p {
  font-size: 20px;
  line-height: 1.5;
}

.pop-float-layer .pop-title .noti-txt-lg {
  margin-bottom: 0;
}

.pop-float-layer .pop-title.pd30 {
  padding: 0 30px;
}

.pop-float-layer .pop-title + .btn-pop-wrap {
  margin-top: 8px;
}

.pop-float-layer .pop-title + .pop-content-img {
  margin-top: 16px;
}

.pop-float-layer .pop-sub-title {
  font-size: 14px;
  line-height: 1.6;
  padding: 0 48px;
}

.pop-float-layer .pop-sub-title p + p {
  margin-top: 22px;
}

.pop-float-layer .pop-sub-title.pd30 {
  padding: 0 30px;
}

.pop-float-layer .pop-txt-content {
  padding: 0 30px;
  font-size: 14px;
}

.pop-float-layer .pop-content {
  padding: 20px;
  margin: 32px 48px 0 48px;
  border: 1px solid #DADADA;
  border-radius: 20px;
  font-size: 14px;
}

.pop-float-layer .pop-content .pop-content-title {
  font-size: 14px;
  line-height: 1.6;
}

.pop-float-layer .pop-content .pop-info {
  margin-top: 16px;
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.pop-float-layer .pop-content .pop-info img {
  width: 48px;
  height: 48px;
}

.pop-float-layer .pop-content .pop-info span {
  font-weight: 700;
}

.pop-float-layer .pop-content-wrap {
  padding: 0 48px;
}

.pop-float-layer .pop-content-wrap .tbl-board-wrap table[class^=common-table] {
  margin-top: 0;
}

.pop-float-layer .pop-content-wrap .tbl-board-wrap table[class^=common-table] th,
.pop-float-layer .pop-content-wrap .tbl-board-wrap table[class^=common-table] td {
  padding: 12px 6px;
  vertical-align: top;
}

.pop-float-layer .pop-content-wrap .tbl-board-wrap table[class^=common-table] th:first-child,
.pop-float-layer .pop-content-wrap .tbl-board-wrap table[class^=common-table] td:first-child {
  padding-left: 0;
}

.pop-float-layer .pop-content-wrap .tbl-board-wrap table[class^=common-table] th:last-child,
.pop-float-layer .pop-content-wrap .tbl-board-wrap table[class^=common-table] td:last-child {
  padding-right: 0;
}

.pop-float-layer .pop-content-wrap .tbl-board-wrap table[class^=common-table] tbody th {
  font-weight: 700;
}

.pop-float-layer .pop-content-wrap .tbl-board-wrap table[class^=common-table] tbody td {
  font-weight: 400;
}

.pop-float-layer .pop-footer {
  margin: 24px 48px 0 48px;
}

.pop-float-layer .txt-info {
  font-size: 14px;
  line-height: 1.6;
}

.pop-float-layer .noti-txt-lg {
  margin-bottom: 15px;
  display: inline-flex;
}

.pop-float-layer .pop-form-item {
  margin-top: 24px;
}

.pop-float-layer .btn-pop-wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.pop-float-layer .btn-pop-wrap.column-wrap {
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pop-float-layer .btn-pop-wrap .btn.txt-link {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 700;
}

.pop-float-layer .with-tooltip {
  pointer-events: initial;
  position: relative;
}

.pop-float-layer .with-tooltip .tooltip {
  display: none;
  position: absolute;
  top: -10px;
  right: 25px;
  transform: translateX(100%);
  padding: 5px 6px 4px;
  border-radius: 4px;
  background-color: #5772E8;
  font-size: 10px;
  line-height: 1.5;
  font-weight: 700;
}

.pop-float-layer .with-tooltip:hover .tooltip {
  display: block;
}

.pop-float-layer .today-close {
  text-align: right;
  font-size: 12px;
  font-weight: 700;
}

.pop-float-layer .dot-list {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.pop-float-layer .dot-list li {
  font-size: 12px;
  line-height: 1.7;
  font-weight: 700;
  display: inline-block;
}

.pop-float-layer .dot-list li::before {
  content: "";
  top: 9px;
}

.pop-float-layer .dot-list li a {
  text-decoration: underline;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.7;
}

.pop-float-layer .popup-scroll-y {
  overflow-y: scroll;
}

.pop-float-layer .popup-scroll-y::-webkit-scrollbar {
  width: 8px;
  height: 0;
}

.pop-float-layer .popup-scroll-y::-webkit-scrollbar-track {
  background-color: transparent;
}

.pop-float-layer .popup-scroll-y::-webkit-scrollbar-thumb {
  background-color: rgba(161, 161, 161, 0.4);
  border-radius: 3px;
  background-clip: padding-box;
  border: 0px solid transparent;
}

.pop-float-layer .pop-content-img {
  margin-top: 32px;
}

.pop-float-layer .pop-content-img img {
  display: block;
  margin: 0 auto;
  max-width: 360px;
  width: 100%;
}

.pop-float-layer .info-txt-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.7;
}

.pop-float-layer .info-txt-wrap .bullet_list {
  font-size: 12px;
  line-height: 1.7;
}

.pop-float-layer.pop-video-player {
  position: relative;
  width: calc(100% - 48px);
  max-width: 960px;
  margin: auto;
  padding-bottom: 0;
}

.pop-float-layer.pop-video-player .pop-title {
  display: flex;
  align-items: center;
  margin: -24px 0 21px 20px;
  padding: 0;
  gap: 12px;
  font-size: 16px;
  line-height: 1.6;
}

.pop-float-layer.pop-video-player .pop-title::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cg fill='none' stroke='%23131313' stroke-width='1.5' data-name='사각형 246' transform='translate(3 5)'%3E%3Crect width='18' height='14' stroke='none' rx='1'/%3E%3Crect width='19.5' height='15.5' x='-.75' y='-.75' rx='1.75'/%3E%3C/g%3E%3Cg fill='none' data-name='다각형 259'%3E%3Cpath d='M14.752 11.168a1 1 0 0 1 0 1.664l-3.2 2.131A1 1 0 0 1 10 14.131V9.869a1 1 0 0 1 1.555-.832Z'/%3E%3Cpath fill='%23131313' d='M15.197 12a.993.993 0 0 0-.445-.832l-3.197-2.132A1 1 0 0 0 10 9.87v4.262a1 1 0 0 0 1.555.833l3.197-2.132a.993.993 0 0 0 .445-.832m1.5 0c0 .838-.416 1.615-1.113 2.08l-3.197 2.132a2.496 2.496 0 0 1-2.567.124A2.496 2.496 0 0 1 8.5 14.13V9.87c0-.924.506-1.769 1.32-2.205a2.496 2.496 0 0 1 2.567.124l3.197 2.132A2.495 2.495 0 0 1 16.697 12Z'/%3E%3C/g%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 264' opacity='.2'/%3E%3C/svg%3E");
}

.pop-float-layer.pop-video-player .btn-close-layer {
  margin-top: 21px;
}

.pop-float-layer.pop-video-player video {
  border-radius: 0 0 20px 20px;
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 56.25%;
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player .vjs-big-play-button {
  display: none;
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player .vjs-control-bar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  padding: 58px 24px 24px 24px;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  color: #DADADA;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 700;
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player .vjs-control-bar .vjs-button > .vjs-icon-placeholder {
  display: block;
  width: 20px;
  height: 20px;
  background-size: cover;
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player .vjs-control-bar .vjs-play-control {
  margin-right: 24px;
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player .vjs-control-bar .vjs-play-control > .vjs-icon-placeholder {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cg fill='%23ffffff' data-name='다각형 1'%3E%3Cpath d='M5.25 19.535V4.465a1.55 1.55 0 0 1 2.388-1.303l11.72 7.534c.446.287.713.774.713 1.304s-.267 1.017-.712 1.304l-11.72 7.534a1.55 1.55 0 0 1-2.389-1.303Z'/%3E%3Cpath d='M19.32 12a.794.794 0 0 0-.367-.673L7.233 3.792A.8.8 0 0 0 6 4.465v15.07a.8.8 0 0 0 1.233.673l11.72-7.535a.794.794 0 0 0 .368-.673m1.5 0a2.29 2.29 0 0 1-1.057 1.935l-11.72 7.534A2.299 2.299 0 0 1 4.5 19.535V4.465a2.299 2.299 0 0 1 3.544-1.934l11.72 7.534A2.29 2.29 0 0 1 20.821 12Z'/%3E%3C/g%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 304' opacity='.2'/%3E%3C/svg%3E");
  background-size: cover;
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player .vjs-control-bar .vjs-play-control.vjs-playing > .vjs-icon-placeholder {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-width='2' d='M7 4v16' data-name='선 468'/%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-width='2' d='M17 4v16' data-name='선 469'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 311' opacity='.2'/%3E%3C/svg%3E");
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player .vjs-control-bar .vjs-volume-panel {
  margin-right: 24px;
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player .vjs-control-bar .vjs-volume-panel .vjs-mute-control > .vjs-icon-placeholder {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cg fill='%23ffffff' data-name='합치기 3'%3E%3Cpath d='M14.198 20.056c-.304 0-.601-.09-.858-.262L7.273 15.75H3.8c-.855 0-1.55-.696-1.55-1.55V9.8c0-.855.695-1.55 1.55-1.55h3.472l6.068-4.045c.257-.171.553-.262.857-.262.856 0 1.553.696 1.553 1.552v13.01c0 .855-.696 1.551-1.552 1.551Z'/%3E%3Cpath d='M14.198 19.306a.8.8 0 0 0 .802-.8V5.494a.8.8 0 0 0-1.244-.666L7.499 9H3.8a.8.8 0 0 0-.8.8v4.4a.8.8 0 0 0 .8.8h3.7l6.256 4.17c.14.094.293.136.442.136m0 1.5a2.29 2.29 0 0 1-1.274-.388L7.046 16.5H3.8a2.303 2.303 0 0 1-2.3-2.3V9.8c0-1.268 1.032-2.3 2.3-2.3h3.244l5.88-3.92a2.29 2.29 0 0 1 1.273-.387A2.305 2.305 0 0 1 16.5 5.495v13.01c0 1.269-1.033 2.301-2.302 2.301Z'/%3E%3C/g%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-width='2' d='M22 7v10' data-name='선 61'/%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-width='2' d='M19 10v4' data-name='선 62'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 291' opacity='.2'/%3E%3C/svg%3E");
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player .vjs-control-bar .vjs-volume-panel .vjs-mute-control.vjs-vol-0 > .vjs-icon-placeholder {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-width='2' d='m3.6 3.516 16.97 16.97' data-name='패스 6237'/%3E%3Cg fill='%23ffffff' data-name='합치기 117'%3E%3Cpath d='M14.198 20.056c-.304 0-.601-.09-.858-.262L7.273 15.75H3.8c-.855 0-1.55-.696-1.55-1.55V9.8c0-.855.695-1.55 1.55-1.55h3.472l6.068-4.045c.257-.171.553-.262.857-.262.856 0 1.553.696 1.553 1.552v13.01c0 .855-.696 1.551-1.552 1.551Z'/%3E%3Cpath d='M14.198 19.306a.8.8 0 0 0 .802-.8V5.494a.8.8 0 0 0-1.244-.666L7.499 9H3.8a.8.8 0 0 0-.8.8v4.4a.8.8 0 0 0 .8.8h3.7l6.256 4.17c.14.094.293.136.442.136m0 1.5a2.29 2.29 0 0 1-1.274-.388L7.046 16.5H3.8a2.303 2.303 0 0 1-2.3-2.3V9.8c0-1.268 1.032-2.3 2.3-2.3h3.244l5.88-3.92a2.29 2.29 0 0 1 1.273-.387A2.305 2.305 0 0 1 16.5 5.495v13.01c0 1.269-1.033 2.301-2.302 2.301Z'/%3E%3C/g%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-width='2' d='M22 7v10' data-name='선 472'/%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-width='2' d='M19 10v4' data-name='선 473'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 293' opacity='.2'/%3E%3C/svg%3E");
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player .vjs-control-bar .vjs-volume-panel .vjs-volume-control {
  display: none;
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player .vjs-control-bar .vjs-time-control {
  display: flex;
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player .vjs-control-bar .vjs-time-control.vjs-time-divider {
  margin: 0 6px;
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player .vjs-control-bar .vjs-time-control.vjs-remaining-time {
  display: none;
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player .vjs-control-bar .vjs-progress-control {
  position: absolute;
  top: 32px;
  right: 24px;
  left: 24px;
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player .vjs-control-bar .vjs-progress-control .vjs-progress-holder {
  height: 6px;
  border-radius: 10px;
  background-color: #9B9B9B;
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player .vjs-control-bar .vjs-progress-control .vjs-progress-holder .vjs-mouse-display {
  display: none;
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player .vjs-control-bar .vjs-progress-control .vjs-load-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player .vjs-control-bar .vjs-progress-control .vjs-play-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, #788EEC 0%, #D6A4F6 100%);
  cursor: pointer;
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player .vjs-control-bar .vjs-progress-control .vjs-play-progress .vjs-time-tooltip {
  position: absolute;
  top: -50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #D6A4F6;
  font-size: 0;
  line-height: 0;
  color: rgba(0, 0, 0, 0);
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player .vjs-control-bar .vjs-picture-in-picture-control {
  display: none;
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player .vjs-control-bar .vjs-fullscreen-control {
  position: absolute;
  right: 24px;
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player .vjs-control-bar .vjs-fullscreen-control > .vjs-icon-placeholder {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8V4h4' data-name='패스 151'/%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 16v4h4' data-name='패스 154'/%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M20 8V4h-4' data-name='패스 152'/%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M20 16v4h-4' data-name='패스 153'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 294' opacity='.2'/%3E%3C/svg%3E");
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player.vjs-has-started .vjs-control-bar, .pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player.vjs-audio-only-mode .vjs-control-bar {
  opacity: 1;
  visibility: visible;
  transition: visibility 0.1s, opacity 0.1s;
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar, .pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player.vjs-audio-only-mode.vjs-user-inactive.vjs-playing .vjs-control-bar {
  visibility: visible;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}

.pop-float-layer.pop-video-player .pop-content-video .gomlab-video-player.vjs-fullscreen .vjs-control-bar .vjs-fullscreen-control > .vjs-icon-placeholder {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 4v4H4' data-name='패스 151'/%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 20v-4H4' data-name='패스 154'/%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16 4v4h4' data-name='패스 152'/%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16 20v-4h4' data-name='패스 153'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 294' opacity='.2'/%3E%3C/svg%3E");
}

.pop-float-layer.pop-video-player .pop-preview-end {
  position: absolute;
  top: 50%;
  left: 50%;
  display: none;
  width: calc(100% - 48px);
  max-width: 480px;
  border-radius: 20px;
  background-color: #FFFFFF;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.16);
  transform: translate(-50%, -50%);
  z-index: 10;
}

.pop-float-layer.pop-video-player .pop-preview-end .pop-wrap {
  padding: 44px 48px;
}

.pop-float-layer.pop-video-player .pop-preview-end .btn-close-layer {
  position: absolute;
  top: 20px;
  right: 20px;
  margin: 0;
}

.pop-float-layer.pop-video-player .pop-preview-end .pop-title {
  margin: 0 0 16px 0;
  justify-content: center;
  text-align: center;
}

.pop-float-layer.pop-video-player .pop-preview-end .pop-title::before {
  display: none;
}

.pop-float-layer.pop-video-player .pop-preview-end.show {
  display: block;
}

.pop-float-layer.pop-credits-short:has(.pop-sub-title) .pop-title {
  margin-bottom: 12px;
}

.pop-float-layer.pop-credits-short:has(.pop-sub-title) .contents [class^=tbl-board] .common-table-list {
  margin-top: 24px;
}

.pop-float-layer.pop-credits-short .contents {
  margin: 0 48px;
}

.pop-float-layer.pop-credits-short .contents [class^=tbl-board] .common-table-list {
  margin-top: 8px;
  border-top-color: #131313;
  border-bottom-color: #DADADA;
}

.pop-float-layer.pop-credits-short .contents [class^=tbl-board] .common-table-list .col01 {
  width: 152px;
}

.pop-float-layer.pop-credits-short .contents [class^=tbl-board] .common-table-list th,
.pop-float-layer.pop-credits-short .contents [class^=tbl-board] .common-table-list td {
  padding: 12px 6px;
  border-color: #EDEDED;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
  vertical-align: top;
}

.pop-float-layer.pop-credits-short .contents [class^=tbl-board] .common-table-list th.point-blue,
.pop-float-layer.pop-credits-short .contents [class^=tbl-board] .common-table-list td.point-blue {
  color: #5772E8;
}

.pop-float-layer.pop-credits-short .contents [class^=tbl-board] .common-table-list thead th {
  font-weight: 700;
}

.pop-float-layer.pop-credits-short .contents [class^=tbl-board] .common-table-list tbody tr:hover {
  background-color: transparent;
}

.pop-float-layer.pop-credits-short .contents [class^=tbl-board] .common-table-list tbody th {
  padding-left: 12px;
}

.pop-float-layer.pop-credits-short .contents [class^=tbl-board] .common-table-list.type-col tbody th {
  font-weight: 700;
}

.btn-close-layer {
  position: sticky;
  top: 20px;
  align-self: flex-end;
  margin: 20px 20px 0 0;
  z-index: 10;
}

.btn-close-layer img {
  width: 31px;
  height: 31px;
}

.btn-close-layer.btn-arrow-close-md {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-width='1.5' d='m5 5 14 14' data-name='선 465'/%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-width='1.5' d='M19 5 5 19' data-name='선 466'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 283' opacity='.2'/%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
}

.pop-open {
  height: 100%;
  overflow: hidden;
}

.pop-open .pop-main-notice,
.pop-open .promo-popup {
  display: flex;
}

.pop-main-notice {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.pop-main-notice.pop-inspection .pop-float-layer {
  padding-bottom: 44px;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.1490196078);
  background: #FFFFFF;
  color: #000000;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.pop-main-notice.pop-inspection .pop-float-layer .btn-close-layer {
  position: sticky;
  top: 20px;
  align-self: flex-end;
  margin: 20px 20px 0 0;
}

.pop-main-notice.pop-inspection .pop-float-layer .btn-close-layer.btn-arrow-close-lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-width='1.5' d='m5 5 14 14' data-name='선 465'/%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-width='1.5' d='M19 5 5 19' data-name='선 466'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 283' opacity='.2'/%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
}

.pop-main-notice.pop-inspection .pop-float-layer .pop-content {
  padding: 0;
  border-radius: unset;
  background: transparent;
}

.pop-main-notice.pop-inspection .pop-float-layer .pop-content .pop-title {
  padding: 0 48px;
}

.pop-main-notice.pop-inspection .pop-float-layer .pop-content .pop-title * {
  color: #000000;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}

.pop-main-notice.pop-inspection .pop-float-layer .pop-content .pop-title h1 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}

.pop-main-notice.pop-inspection .pop-float-layer .pop-content .pop-title .h-desc {
  margin-top: 12px;
}

.pop-main-notice.pop-inspection .pop-float-layer .pop-content .pop-image {
  margin-top: 32px;
}

.pop-main-notice.pop-inspection .pop-float-layer .pop-content .pop-image img {
  display: block;
  margin: 0 auto;
  max-width: 360px;
  width: 100%;
}

.pop-main-notice.pop-inspection .pop-float-layer .pop-content .txt-wrap {
  margin: 24px 48px 0;
}

.pop-main-notice.pop-inspection .pop-float-layer .pop-content .txt-wrap .date-info {
  padding: 20px 0;
  border-top: 2px solid #000000;
  border-bottom: 1px solid #DADADA;
  color: #FF2C58;
  font-weight: 700;
}

.pop-main-notice.pop-inspection .pop-float-layer .pop-content .txt-wrap .info-txt {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.7;
}

.pop-main-notice.pop-inspection .dim {
  backdrop-filter: none;
}

.promo-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.promo-popup.pop-light .pop-float-layer {
  color: #373737;
}

.promo-popup.pop-light .pop-float-layer .btn-arrow-close-lg {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-width='1.5' d='m5 5 14 14' data-name='선 465'/%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-width='1.5' d='M19 5 5 19' data-name='선 466'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 283' opacity='.2'/%3E%3C/svg%3E");
}

.promo-popup.pop-light .pop-float-layer .pop-content {
  background: #EDEDED;
}

.promo-popup.pop-light .pop-float-layer .pop-content .btn-wrap .btn-ghost-w {
  border: solid 1px #131313;
  color: #131313;
}

.promo-popup.pop-light .pop-float-layer .pop-content .btn-wrap .btn-default-w {
  background: #131313;
  color: #FFFFFF;
}

.promo-popup.pop-light .pop-float-layer .pop-content .no-today {
  color: #131313;
}

.promo-popup .pop-float-layer {
  min-width: 580px;
  max-width: 580px;
  margin: auto;
  padding: 0;
  box-shadow: none;
  background: transparent;
  box-sizing: border-box;
  top: 0;
  transform: translateY(0);
  z-index: 1;
}

.promo-popup .pop-float-layer .btn-arrow-close-lg {
  top: 20px;
  right: 24px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-width='1.5' d='m5 5 14 14' data-name='선 465'/%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-width='1.5' d='M19 5 5 19' data-name='선 466'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 283' opacity='.2'/%3E%3C/svg%3E");
  background-size: 24px;
}

.promo-popup .pop-float-layer .btn-close-layer {
  position: absolute;
  margin: 0;
}

.promo-popup .pop-float-layer .pop-content {
  max-height: none;
  padding: 64px 0 40px;
  margin: 0;
  border: 0;
  border-radius: 20px;
  background: #000000;
  overflow-y: visible;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.promo-popup .pop-float-layer .pop-content .btn-wrap {
  margin-top: 0;
  padding-top: 24px;
}

.promo-popup .pop-float-layer .pop-content .no-today {
  margin-top: 20px;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}

.promo-popup .pop-float-layer .pop-content .no-today label {
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}

.promo-popup .pop-float-layer .pop-content .no-today input[type=checkbox] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.promo-popup .pop-float-layer .pop-content .no-today input[type=checkbox]:focus + label, .promo-popup .pop-float-layer .pop-content .no-today input[type=checkbox]:focus-visible + label {
  outline: auto 1px Highlight;
  outline: auto 1px -webkit-focus-ring-color;
  outline-offset: 1px;
}

.promo-popup .dim {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
}

.youtube-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 100;
  overflow: scroll;
}

.youtube-modal .youtube-modal-content {
  position: relative;
  width: 100%;
  max-width: 948px;
  margin: auto;
  padding: 0 24px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.youtube-modal .youtube-modal-content .close-video-modal {
  position: absolute;
  top: -30px;
  right: 24px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' d='m5 5 10 10' data-name='선 465'/%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' d='M15 5 5 15' data-name='선 466'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 283' opacity='.2'/%3E%3C/svg%3E");
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  z-index: 1;
}

.youtube-modal .youtube-modal-content > .modal-inner {
  position: relative;
  width: 100%;
  padding-top: 56.1797752809%;
  background: #fff;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.16);
  z-index: 1;
}

.youtube-modal .youtube-modal-content > .modal-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.youtube-modal .pop-dim {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
}

.pop-open .youtube-modal {
  display: flex;
}

/* 반응형 */
@media (max-width: 1279px) {
  .pop-float-layer {
    max-width: 560px;
  }
  .pop-float-layer.pop-credits-short .contents {
    margin: 0 20px;
  }
}
/* 반응형 */
@media (max-width: 768px) {
  .pop-float-layer {
    max-width: 327px;
    padding: 0 0 36px;
  }
  .pop-float-layer .btn-close-layer {
    top: 12px;
    margin: 12px 12px 0 0;
  }
  .pop-float-layer .pop-title {
    font-size: 16px;
    line-height: 1.6;
    padding: 36px 20px 0;
  }
  .pop-float-layer .pop-sub-title {
    padding: 0 20px;
  }
  .pop-float-layer.pop-float-layer-lg {
    max-width: 326px;
  }
  .pop-float-layer.pop-full-layer {
    max-width: 100%;
    padding: 55px 30px 10px 30px;
  }
  .pop-float-layer.pop-full-window {
    max-width: 326px;
    height: auto;
    margin: auto;
    box-sizing: border-box;
  }
  .pop-float-layer.pop-full-window .tbl-board-wrap {
    margin: 0 20px;
  }
  .pop-float-layer .pop-content {
    margin: 32px 20px 0 20px;
  }
  .pop-float-layer .pop-content-img img {
    max-width: 240px;
  }
  .pop-float-layer .pop-content-wrap {
    padding: 0 20px;
  }
  .pop-float-layer .btn-pop-wrap {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }
  .pop-float-layer .btn-pop-wrap button, .pop-float-layer .btn-pop-wrap [class^=btn-] {
    margin: 0 auto;
  }
  .pop-float-layer .btn-pop-wrap.column-wrap {
    display: flex;
  }
  .pop-float-layer .pop-footer {
    margin: 24px 20px 0 20px;
  }
  .pop-float-layer.pop-video-player .pop-preview-end .pop-wrap {
    padding: 36px 20px;
  }
  .pop-float-layer.pop-video-player .pop-preview-end .btn-close-layer {
    top: 12px;
    right: 12px;
  }
  .pop-float-layer.pop-credits-short .contents [class^=tbl-board] .common-table-list {
    border-top-color: #131313;
    border-bottom-color: #DADADA;
  }
  .pop-float-layer.pop-credits-short .contents [class^=tbl-board] .common-table-list .col01 {
    width: 120px;
  }
  .pop-float-layer.pop-credits-short .contents [class^=tbl-board] .common-table-list th,
  .pop-float-layer.pop-credits-short .contents [class^=tbl-board] .common-table-list td {
    border-color: #EDEDED;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    text-align: left;
  }
  .pop-float-layer.pop-credits-short .contents [class^=tbl-board] .common-table-list th.point-blue,
  .pop-float-layer.pop-credits-short .contents [class^=tbl-board] .common-table-list td.point-blue {
    color: #5772E8;
  }
  .pop-float-layer.pop-credits-short .contents [class^=tbl-board] .common-table-list tbody tr:hover {
    background-color: transparent;
  }
  .pop-float-layer.pop-credits-short .contents [class^=tbl-board] .common-table-list tbody th {
    padding-left: 12px;
  }
  .pop-float-layer.pop-credits-short .contents [class^=tbl-board] .common-table-list.type-col tbody th {
    font-weight: 700;
  }
  .pop-float-layer.pop-credits-short .btn-pop-wrap {
    flex-direction: row;
  }
  .pop-float-layer.pop-credits-short .btn-pop-wrap [class^=btn-] {
    margin: 0;
  }
  .pop-main-notice.pop-inspection .pop-float-layer {
    padding-bottom: 36px;
    max-width: 327px;
  }
  .pop-main-notice.pop-inspection .pop-float-layer .btn-close-layer {
    margin: 12px 12px 0 0;
  }
  .pop-main-notice.pop-inspection .pop-float-layer .pop-content .pop-title {
    padding: 0 20px;
  }
  .pop-main-notice.pop-inspection .pop-float-layer .pop-content .pop-title h1 {
    font-size: 16px;
    line-height: 1.6;
  }
  .pop-main-notice.pop-inspection .pop-float-layer .pop-content .pop-title .h-desc {
    font-size: 14px;
    line-height: 1.6;
  }
  .pop-main-notice.pop-inspection .pop-float-layer .pop-content .pop-image img {
    max-width: 240px;
  }
  .pop-main-notice.pop-inspection .pop-float-layer .pop-content .txt-wrap {
    margin: 24px 20px 0;
  }
  .promo-popup .pop-float-layer {
    max-width: 327px;
    min-width: auto;
  }
  .promo-popup .pop-float-layer .btn-arrow-close-lg {
    top: 12px;
  }
  .promo-popup .pop-float-layer .pop-content {
    padding: 48px 0 24px;
  }
  .promo-popup .pop-float-layer .pop-content .pop-image + .pop-image {
    margin-top: 24px;
  }
  .promo-popup .pop-float-layer .pop-content .btn-wrap {
    padding: 20px 24px 0;
    gap: 12px;
  }
  .promo-popup .pop-float-layer .pop-content .btn-wrap .btn-lg {
    width: 100%;
    height: 29px;
    font-size: 12px;
    line-height: 1.7;
    padding: 0;
  }
  .promo-popup .pop-float-layer .pop-content .no-today {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.7;
  }
}
html:lang(ja) .pop-float-layer .pop-sub-title {
  word-break: normal;
}

.tab-index, .tab-bar, .tab-button, .tab-underline, .tab-round {
  display: flex;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.tab-index li, .tab-bar li, .tab-button li, .tab-underline li, .tab-round li {
  position: relative;
  box-sizing: border-box;
}

.tab-index li a, .tab-bar li a, .tab-button li a, .tab-underline li a, .tab-round li a {
  position: relative;
  text-align: center;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-weight: 700;
}

.tab-index.scrolled li, .scrolled.tab-bar li, .scrolled.tab-button li, .scrolled.tab-underline li, .scrolled.tab-round li {
  flex: 0 0 auto;
}

.tab-index::-webkit-scrollbar, .tab-bar::-webkit-scrollbar, .tab-button::-webkit-scrollbar, .tab-underline::-webkit-scrollbar, .tab-round::-webkit-scrollbar {
  display: none;
}

/*tab index type*/
.tab-round {
  position: relative;
  align-items: center;
  background-color: #F4F4F4;
  border-radius: 51px;
}

.tab-round li {
  position: relative;
  flex: 1;
  z-index: 1;
}

.tab-round li a {
  width: 100%;
  padding: 0 23px;
  height: 36px;
  font-size: 12px;
  line-height: 1.7;
  color: #828282;
  border-radius: 51px;
  transition: color 0.13s ease;
  transition-delay: 0.17s;
}

.tab-round li a.active {
  color: #FFFFFF;
}

.tab-round li.tab-round-bg {
  z-index: 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 51px;
  background-color: #131313;
  width: 50%;
  height: 100%;
  box-sizing: border-box;
}

.tab-underline {
  border-bottom: 1px solid #DADADA;
}

.tab-underline li a {
  width: 164px;
  height: 37px;
  font-size: 14px;
  line-height: 1.6;
}

.tab-underline li a.active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: #484848;
}

.tab-underline.scrolled li + li {
  margin-left: 20px;
}

.tab-button li a {
  font-size: 12px;
  line-height: 1.7;
  padding: 0 20px;
  height: 29px;
  border-radius: 51px;
  background-color: #F8F8F8;
  transition: background-color ease 0.3s;
}

.tab-button li a:hover {
  background: #DADADA;
}

.tab-button li a.active {
  color: #FFFFFF;
  background-color: #131313;
}

.tab-button li + li {
  margin-left: 12px;
}

.tab-button li.exception a {
  background: rgba(188, 197, 246, 0.2);
  color: #5772E8;
}

.tab-button li.exception a:hover {
  background: rgba(188, 197, 246, 0.4);
}

.tab-button li.exception a.active {
  background: #5772E8;
  color: #FFFFFF;
}

.tab-bar li {
  position: relative;
}

.tab-bar li a {
  font-size: 12px;
  line-height: 1.7;
  color: #A1A1A1;
}

.tab-bar li a.active {
  color: #131313;
}

.tab-bar li + li {
  margin-left: 20px;
  padding-left: 20px;
}

.tab-bar li + li::before {
  content: "";
  width: 1px;
  height: 13px;
  background-color: #DADADA;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.tab-list-wrap {
  position: relative;
}

.tab-list-wrap .tab-list-inner {
  display: inline-flex;
  max-width: 1104px;
  overflow: hidden;
}

.tab-list-wrap .tab-list-inner .tab-button::-webkit-scrollbar {
  display: block;
}

.tab-list-wrap .btn-move {
  position: absolute;
  top: 50%;
  display: flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #FFFFFF;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%);
  z-index: 1;
}

.tab-list-wrap .btn-move::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m15.501 3.998-8 8 8 8'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 6370' opacity='.2'/%3E%3C/svg%3E");
}

.tab-list-wrap .btn-move.btn-prev {
  left: 0;
}

.tab-list-wrap .btn-move.btn-next {
  right: 0;
}

.tab-list-wrap .btn-move.btn-next::before {
  transform: rotate(180deg);
}

.tab-list-wrap .btn-move.show {
  opacity: 1;
  visibility: visible;
}

/*tab content*/
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* accodion content */
[data-accordion=panel] {
  display: none;
}

/*content head default*/
.cmn-content-head {
  position: relative;
  margin-bottom: 16px;
}

.cmn-content-head .head-tit-sm {
  font-size: 16px;
  line-height: 1.6;
}

.cmn-content-head h2 {
  font-size: 20px;
  line-height: 1.5;
}

.cmn-content-head h2.head-tit-sm {
  font-size: 16px;
  line-height: 1.6;
}

.cmn-content-head .exp {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 8px;
}

.cmn-content-head .form-item:has(input.search) {
  position: absolute;
  right: 0;
  bottom: 20px;
}

.cmn-content-head .more-view {
  position: absolute;
  right: 0;
  bottom: 0;
}

.cmn-content-head .right-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
}

.cmn-content-detail, .use-label, .board-common, .doard-acco-list, .board-common-multi {
  padding: 24px 0;
  border-top: 2px solid #000000;
  border-bottom: 1px solid #DADADA;
}

.cmn-content-detail .cmn-col + .cmn-col, .use-label .cmn-col + .cmn-col, .board-common .cmn-col + .cmn-col, .doard-acco-list .cmn-col + .cmn-col, .board-common-multi .cmn-col + .cmn-col {
  border-top: 1px solid #F4F4F4;
  margin-top: 24px;
  padding-top: 24px;
}

.cmn-content-detail + .cmn-content-head, .use-label + .cmn-content-head, .board-common + .cmn-content-head, .doard-acco-list + .cmn-content-head, .board-common-multi + .cmn-content-head {
  margin-top: 40px;
}

.cmn-content-util {
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
}

.board-common, .doard-acco-list, .board-common-multi {
  padding: 0;
}

.board-common li, .doard-acco-list li, .board-common-multi li {
  padding: 24px 0;
  border-bottom: 1px solid #F4F4F4;
}

.board-common li .list-index, .doard-acco-list li .list-index, .board-common-multi li .list-index {
  display: inline-block;
  width: 80px;
  margin-right: 10px;
  font-size: 18px;
  line-height: 1.5;
}

.board-common li .list-label, .doard-acco-list li .list-label, .board-common-multi li .list-label {
  display: inline-block;
  width: 114px;
  margin-right: 10px;
  font-size: 18px;
  line-height: 1.5;
}

.board-common li .list-title, .doard-acco-list li .list-title, .board-common-multi li .list-title {
  position: relative;
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  padding-right: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.board-common li .list-title::before, .doard-acco-list li .list-title::before, .board-common-multi li .list-title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m4.998 9 7 7 7-7' data-name='패스 136'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 317' opacity='.2'/%3E%3C/svg%3E") center no-repeat;
  transition: transform 0.3s ease;
}

.board-common li .list-date, .doard-acco-list li .list-date, .board-common-multi li .list-date {
  padding: 0 25px 0 80px;
}

.board-common-multi li {
  display: flex;
  gap: 16px;
}

.board-common-multi li .list-info {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

.board-common-multi li .list-info .list-label {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

.board-common-multi li .img-wrap {
  display: block;
  width: 66px;
  height: 66px;
  background: #A1A1A1;
  border-radius: 4px;
  overflow: hidden;
}

.board-common-multi li .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-list li {
  margin-top: 0;
  padding: 24px 0 24px 32px;
}

.check-list li .form-item {
  margin-left: -32px;
}

.check-list li.no-data {
  text-align: center;
}

.label-det {
  display: flex;
  margin-top: 12px;
}

.label-det dt {
  width: 42px;
}

.label-det dd {
  flex: 1;
  font-weight: 700;
}

/*라이선스*/
.license-info-wrap span {
  font-size: 14px;
  line-height: 1.6;
}

.license-info-wrap p {
  font-size: 14px;
  line-height: 1.6;
}

.license-info-wrap .board-common-top .board-common-num {
  font-weight: 700;
}

.license-info-wrap .board-common-mid {
  margin: 13px 0 8px 0;
}

.license-info-wrap .board-common-mid .board-common-key {
  font-weight: 700;
}

.license-info-wrap .board-common-product {
  margin-bottom: 15px;
  font-weight: 700;
}

.stauts-wrap {
  margin-top: 13px;
  font-size: 0;
  line-height: 0;
}

.stauts-wrap span {
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.6;
  line-height: 1.5;
  font-weight: 700;
}

.stauts-wrap span + span:before {
  display: inline-block;
  vertical-align: top;
  width: 1px;
  height: 13px;
  margin: 3px 12px 4px;
  background-color: #DADADA;
  content: "";
}

.stauts-wrap span.full {
  display: block;
  margin-top: 12px;
}

.stauts-wrap span.full::before {
  content: none;
}

.stauts-wrap span.full strong {
  margin-left: 8px;
}

.stauts-wrap span.full + span::before {
  content: none;
}

.form-wrap .use-label li {
  align-items: baseline;
}

.use-label > li {
  display: flex;
  font-size: 14px;
  line-height: 1.6;
}

.use-label > li .label {
  display: block;
  width: 132px;
}

.use-label > li > div {
  flex: 1;
  word-break: break-all;
}

.use-label > li > div .vat {
  font-size: 11px;
  line-height: 1.5;
  font-weight: 400;
}

.use-label > li div {
  font-weight: 700;
}

.use-label > li:last-child {
  border-bottom: 0;
}

.use-label:not(.board-common):not(.doard-acco-list):not(.board-common-multi) > li + li {
  margin-top: 24px;
}

.use-label:not(.board-common):not(.doard-acco-list):not(.board-common-multi) .dot-list {
  margin-top: 10px;
}

.use-label:not(.board-common):not(.doard-acco-list):not(.board-common-multi) .dot-list li {
  display: block;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.7;
  line-height: 18px;
}

.use-label:not(.board-common):not(.doard-acco-list):not(.board-common-multi) .dot-list li::before {
  top: 7px;
}

.use-label:not(.board-common):not(.doard-acco-list):not(.board-common-multi) .dot-list li + li {
  margin-top: 0;
}

.doard-acco-list li {
  padding: 0;
}

.doard-acco-list li .acco-head {
  display: flex;
  padding: 20px 0;
}

.doard-acco-list li .acco-head.active .list-title::before {
  transform: translateY(-50%) rotate(-180deg);
}

.doard-acco-list li .acco-content {
  margin: 0 0 20px 0;
  padding: 12px;
  background: #F8F8F8;
  border-radius: 4px;
}

.borad-ask {
  border-top: 2px solid #000000;
  border-bottom: 1px solid #DADADA;
  padding: 20px 0;
}

.borad-ask li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
  line-height: 1.5;
}

.borad-ask li + li {
  margin-top: 20px;
}

.borad-ask.doard-acco-list {
  padding: 12px 0;
}

.borad-ask.doard-acco-list li {
  font-size: 18px;
  line-height: 1.5;
  border: 0 none;
}

.borad-ask.doard-acco-list li + li {
  margin-top: 0;
}

.borad-ask.doard-acco-list .acco-head {
  display: flex;
  padding: 14px 0;
}

.borad-ask.doard-acco-list .acco-head.active .list-title::before {
  transform: translateY(-50%) rotate(-180deg);
}

.borad-ask.doard-acco-list .list-title {
  position: relative;
  flex: 1;
  padding-right: 24px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.borad-ask.doard-acco-list .list-title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m4.998 9 7 7 7-7' data-name='패스 136'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 317' opacity='.2'/%3E%3C/svg%3E") center no-repeat;
  transition: transform 0.3s ease;
}

.borad-ask.doard-acco-list .acco-content {
  margin: 0 0 20px 0;
  padding: 12px;
  background: #F8F8F8;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.6;
  white-space: normal;
  /* 곰랩 대응 */
  /* //곰랩 대응 */
}

.borad-ask.doard-acco-list .acco-content * {
  font-family: "NanumSquare", sans-serif !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

.borad-ask.doard-acco-list .acco-content table {
  width: auto !important;
}

.borad-ask.doard-acco-list .acco-content th,
.borad-ask.doard-acco-list .acco-content td {
  padding: 10px !important;
  white-space: normal !important;
}

.more-view {
  display: flex;
  align-items: center;
  gap: 4px;
}

.more-view::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='m7 4 6 6-6 6'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 6370' opacity='.2'/%3E%3C/svg%3E") no-repeat;
  background-size: cover;
}

.badge-type {
  padding: 4px;
  border: 1px solid #A1A1A1;
  border-radius: 4px;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 700;
}

/*label type*/
.multi-tit {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 16px;
}

.multi-lst dl {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.multi-lst dl dt {
  width: 180px;
}

.multi-lst dl dd {
  font-weight: 700;
}

.multi-lst dl + dl {
  margin-top: 12px;
}

/* 반응형 */
@media (max-width: 768px) {
  .tab-underline {
    margin: 0 -24px;
    padding: 0 24px;
  }
  .tab-underline li a {
    width: auto;
    padding: 0 6px;
  }
  .cmn-content-head h2 {
    font-size: 16px;
    line-height: 1.6;
  }
  .board-common li .list-title, .board-common-multi li .list-title, .doard-acco-list li .list-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    line-height: 1.6;
  }
  .borad-ask li a .list-label {
    font-size: 14px;
    line-height: 1.6;
  }
  .borad-ask.doard-acco-list {
    padding: 12px 0;
  }
  .borad-ask.doard-acco-list li {
    font-size: 14px;
    line-height: 1.6;
  }
  .borad-ask.doard-acco-list .acco-head {
    padding: 12px 0;
  }
  .borad-ask.doard-acco-list .list-title {
    padding-right: 20px;
  }
  .borad-ask.doard-acco-list .list-title::before {
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='m4.5 7.5 6 6 6-6' data-name='패스 136'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 317' opacity='.2'/%3E%3C/svg%3E") center no-repeat;
  }
  .borad-ask.doard-acco-list .acco-content {
    font-size: 14px;
    line-height: 1.6;
  }
  .doard-acco-list li .acco-content {
    font-size: 14px;
    line-height: 1.6;
  }
  .multi-lst dl {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .multi-lst dl dt {
    width: auto;
  }
  .multi-lst dl + dl {
    margin-top: 8px;
  }
}
html:lang(en) .borad-ask.doard-acco-list .acco-content * {
  font-family: "Noto Sans", sans-serif !important;
}

html:lang(ja) .borad-ask.doard-acco-list .acco-content * {
  font-family: "Noto Sans JP", sans-serif !important;
}

.contents-head {
  padding: 0 24px;
}

.contents-head .head-tit-wrap {
  max-width: 1104px;
  width: 100%;
  margin: 0px auto;
  box-sizing: border-box;
}

.contents-head .head-tit-name {
  font-size: 16px;
  line-height: 1.6;
}

.contents-head .location {
  font-size: 10px;
  line-height: 1.5;
}

.contents-head .logo img {
  width: auto;
  height: 48px;
}

.contents-head h1 {
  margin-top: 32px;
  font-size: 36px;
  line-height: 1.5;
}

.contents-head .intro {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.5;
}

.contents-head .btn_set {
  margin-top: 40px;
}

.contents-head .btn_set .btn-default-w {
  color: #000000;
}

.contents-head .btn_set .btn-lg + .btn-lg {
  margin-left: 10px;
}

.contents-head.head-visual {
  position: relative;
  display: flex;
  align-items: center;
  height: 400px;
  box-sizing: border-box;
}

.contents-head.head-visual .head-visual-wrap {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(0%);
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contents-head.head-visual .head-visual-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contents-head.head-visual strong {
  font-size: 20px;
  line-height: 1.5;
}

.contents-head.head-visual .head-visual-category {
  position: relative;
  top: -24px;
  color: #FFFFFF;
  opacity: 0.6;
  font-size: 16px;
  line-height: 1.6;
}

.contents-head.head-visual h2 {
  font-size: 24px;
  line-height: 1.5;
  margin-top: 0;
}

.contents-head.head-visual .intro {
  font-size: 24px;
  line-height: 1.5;
  margin-top: 24px;
  font-weight: 700;
}

.contents-head.head-thin {
  padding: 27px 0px 26px;
}

.contents-head.head-thin h1 {
  margin-top: 0px;
}

.content-title {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* 서브 페이지별 공통 타이틀 (제품 유/무료, 비즈니스, 편집강의) [D]이외 추가 확인되면 페이지명을 추가 해주세요 */
.gom-title,
.gom-sub-title {
  text-align: center;
}

.gom-title.c-black,
.gom-sub-title.c-black {
  color: #131313;
}

.gom-title.c-white,
.gom-sub-title.c-white {
  color: #FFFFFF;
}

.gom-title.c-gray,
.gom-sub-title.c-gray {
  color: #484848;
}

.gom-title {
  font-size: 24px;
  line-height: 1.5;
}

.gom-sub-title {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.5;
}

/* // 서브 페이지별 공통 타이틀 (제품 유/무료, 비즈니스, 편집강의) */
/* 반응형 */
@media (max-width: 768px) {
  .contents-head.head-visual {
    align-items: flex-end;
    height: 400px;
    padding-bottom: 48px;
  }
  .contents-head.head-visual h2 {
    font-size: 20px;
    line-height: 1.5;
  }
  .contents-head.head-visual .intro {
    font-size: 14px;
    line-height: 1.6;
  }
  .contents-head.head-visual .head-visual-category {
    position: absolute;
    left: 24px;
    top: 41px;
  }
  .contents-head h1 {
    margin-top: 16px;
    font-size: 20px;
    line-height: 1.5;
  }
  .contents-head strong {
    font-size: 14px;
    line-height: 1.6;
  }
  .contents-head .intro {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.6;
  }
  .contents-head .btn_set {
    margin-top: 32px;
  }
  .gom-title {
    font-size: 20px;
    line-height: 1.5;
  }
  .gom-title.lg {
    font-size: 20px;
    line-height: 1.5;
  }
  .gom-sub-title {
    font-size: 14px;
    line-height: 1.6;
  }
}
.video-js * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-repeat: no-repeat;
}

.video-js *:not(.vjs-visible-text) > .vjs-control-text {
  position: absolute;
  left: 0;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  white-space: nowrap;
  overflow: hidden;
}

.vjs-hidden {
  display: none !important;
}

.vjs-seek-to-live-control {
  display: none;
}

.vjs-loading-spinner {
  display: none;
}

.vjs-text-track-display {
  display: none;
}

.vjs-modal-dialog {
  display: none;
}

/* 일반 게시판 목록 */
.tbl-board-wrap table[class^=common-table] {
  border-top: 2px solid #000000;
  border-bottom: 1px solid #DADADA;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 16px;
}

.tbl-board-wrap table[class^=common-table] thead th {
  border-bottom: 1px solid #DADADA;
}

.tbl-board-wrap table[class^=common-table] thead.thead-hidden {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.tbl-board-wrap table[class^=common-table] tbody tr th {
  font-weight: 400;
}

.tbl-board-wrap table[class^=common-table] tbody tr td {
  font-weight: 700;
}

.tbl-board-wrap table[class^=common-table] tbody tr td a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-wrap: break-word;
  line-height: 1.6;
  height: 3.2;
  font-size: 14px;
  height: unset;
}

.tbl-board-wrap table[class^=common-table] tbody tr td.category {
  text-align: left;
  font-weight: 400;
  border: 1px solid #F4F4F4;
  border-width: 1px 0 0;
}

.tbl-board-wrap table[class^=common-table] tbody tr td.nodata {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
}

.tbl-board-wrap table[class^=common-table] tbody tr td.nodata .exp {
  font-weight: 400;
  display: block;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.tbl-board-wrap table[class^=common-table] tbody tr:nth-child(1) th, .tbl-board-wrap table[class^=common-table] tbody tr:nth-child(1) td {
  border: none;
}

.tbl-board-wrap table[class^=common-table] tbody tr.notice td, .tbl-board-wrap table[class^=common-table] tbody tr.notice a, .tbl-board-wrap table[class^=common-table] tbody tr.notice .keyword {
  color: #991FE8;
}

.tbl-board-wrap table[class^=common-table] th, .tbl-board-wrap table[class^=common-table] td {
  text-align: center;
  padding: 24px 15px;
  border: 1px solid #F4F4F4;
  border-width: 1px 0 0;
}

.tbl-board-wrap table[class^=common-table] th:first-child, .tbl-board-wrap table[class^=common-table] td:first-child {
  padding-left: 0;
}

.tbl-board-wrap table[class^=common-table] th:last-child, .tbl-board-wrap table[class^=common-table] td:last-child {
  padding-right: 0;
}

.tbl-board-wrap table[class^=common-table] th.left,
.tbl-board-wrap table[class^=common-table] td.left {
  text-align: left;
}

.tbl-board-wrap table.common-table-list tbody tr:hover {
  background-color: #F8F8F8;
}

.tbl-board-wrap.etc-board-wrap table[class^=common-table] tbody tr td {
  font-weight: 400;
}

.tbl-board-wrap.review-list-tbl table[class^=common-table] {
  border-top-color: #131313;
}

.tbl-board-wrap.review-list-tbl table.common-table-list tbody tr:hover {
  background: transparent;
}

.tbl-board-wrap.review-list-tbl table.common-table-list tbody tr th,
.tbl-board-wrap.review-list-tbl table.common-table-list tbody tr td {
  font-weight: 400;
}

.tbl-board-wrap.review-list-tbl table .star-rating-col {
  width: 170px;
}

.tbl-board-wrap.review-list-tbl table thead th {
  border-color: #F8F8F8;
  font-weight: 700;
}

.tbl-board-wrap.review-list-tbl table th,
.tbl-board-wrap.review-list-tbl table td {
  border-color: #F8F8F8;
  word-wrap: break-word;
  word-break: break-all;
  vertical-align: top;
}

.tbl-board-wrap.review-list-tbl .manager-answer {
  margin-top: 12px;
  padding: 16px 12px;
  border-radius: 4px;
  background: #F4F4F4;
}

.tbl-board-wrap.review-list-tbl .manager-answer .manager-name {
  font-weight: 700;
}

.tbl-board-wrap.review-list-tbl .manager-answer .answer-cont {
  margin-top: 8px;
}

.keyword {
  color: #5772E8;
  font-style: normal;
}

/* 일반 게시판 상세 */
.det-head {
  border-top: 2px solid #131313;
  border-bottom: 1px solid #F4F4F4;
  padding: 24px 0;
}

.det-head .category {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.det-head .tbl-board-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}

.det-head .date {
  margin-top: 16px;
  color: #828282;
  font-size: 14px;
  line-height: 1.6;
}

.det-content {
  border-radius: 4px;
  padding: 24px 0;
  font-size: 16px;
  line-height: 1.6;
  border-top: 1px solid #F4F4F4;
  border-bottom: 1px solid #DADADA;
}

.det-content * {
  font-family: "NanumSquare", sans-serif !important;
}

.det-content table {
  width: auto !important;
}

.det-content table th,
.det-content table td {
  padding: 10px !important;
  white-space: normal !important;
}

.det-move {
  margin-top: 24px;
  display: flex;
}

.det-move .move-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.det-move .move-wrap li a {
  position: relative;
  color: #484848;
}

.det-move .move-wrap li a::before {
  content: "";
  width: 20px;
  height: 20px;
  background: no-repeat center;
  background-size: contain;
}

.det-move .move-wrap li > span {
  position: relative;
  color: #484848;
}

.det-move .move-wrap li > span::before {
  content: "";
  width: 20px;
  height: 20px;
  background: no-repeat center;
  background-size: contain;
}

.det-move .move-wrap li.prev a {
  padding-left: 24px;
}

.det-move .move-wrap li.prev a::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='m13 4-6 6 6 6'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 6370' opacity='.2'/%3E%3C/svg%3E");
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.det-move .move-wrap li.prev > span {
  padding-left: 24px;
}

.det-move .move-wrap li.prev > span::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='m13 4-6 6 6 6'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 6370' opacity='.2'/%3E%3C/svg%3E");
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.det-move .move-wrap li.next a {
  padding-right: 24px;
}

.det-move .move-wrap li.next a::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='m7 4 6 6-6 6'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 6370' opacity='.2'/%3E%3C/svg%3E");
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.det-move .move-wrap li.next > span {
  padding-right: 24px;
}

.det-move .move-wrap li.next > span::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='m7 4 6 6-6 6'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 6370' opacity='.2'/%3E%3C/svg%3E");
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.det-move .move-wrap li.disabled a {
  color: #DADADA;
}

.det-move .move-wrap li.disabled a::before {
  opacity: 0.2;
}

.det-move .move-wrap li.disabled > span {
  color: #DADADA;
}

.det-move .move-wrap li.disabled > span::before {
  opacity: 0.2;
}

.det-move .list-return {
  margin-left: auto;
}

.det-move .list-return .btn-md {
  min-width: 128px;
}

/* 게시판 페이지 네비 */
.board-page-navi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  gap: 0px 14px;
}

.board-page-navi a {
  padding-bottom: 8px;
  position: relative;
  display: inline-flex;
  justify-content: center;
  color: #828282;
  min-width: 20px;
}

.board-page-navi a.active {
  color: #131313;
  font-weight: 700;
}

.board-page-navi a.active:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #DADADA;
}

.board-page-navi a.btn {
  height: 20px;
  width: 20px;
  text-indent: -9999px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center bottom 8px;
}

.board-page-navi a.btn.prev {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23484848' stroke-linecap='round' stroke-linejoin='round' d='m13 4-6 6 6 6'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 6370' opacity='.2'/%3E%3C/svg%3E");
}

.board-page-navi a.btn.prev-end {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='Rectangle 6370' opacity='.2'/%3E%3Cg fill='none' stroke='%23484848' stroke-linecap='round' stroke-linejoin='round' data-name='Group 172672'%3E%3Cpath d='m16 4-6 6 6 6'/%3E%3Cpath d='m10 4-6 6 6 6' data-name='back'/%3E%3C/g%3E%3C/svg%3E");
}

.board-page-navi a.btn.next {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23484848' stroke-linecap='round' stroke-linejoin='round' d='m7 4 6 6-6 6'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 6370' opacity='.2'/%3E%3C/svg%3E");
}

.board-page-navi a.btn.next-end {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='Rectangle 6370' opacity='.2'/%3E%3Cg fill='none' stroke='%23484848' stroke-linecap='round' stroke-linejoin='round' data-name='Group 172672'%3E%3Cpath d='m4 4 6 6-6 6'/%3E%3Cpath d='m10 4 6 6-6 6' data-name='back'/%3E%3C/g%3E%3C/svg%3E");
}

/* error 페이지 */
.simple-content {
  padding-top: 40px;
  text-align: center;
}

.simple-content .product-icon {
  display: inline-block;
  width: 120px;
  height: 120px;
}

.simple-content .product-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.simple-content h1 {
  margin-top: 48px;
  padding-top: 0px;
  font-size: 24px;
  line-height: 1.5;
}

.simple-content .simple-tit-exp {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.6;
}

.simple-content button {
  margin-top: 24px;
}

.simple-content .btn-wrap button {
  margin-top: 0;
}

.simple-content a {
  margin-top: 24px;
}

/* 반응형 */
@media (max-width: 768px) {
  /*일반 게시판 목록*/
  .tbl-board-wrap table[class^=common-table] tbody tr td.category {
    border: none;
  }
  .tbl-board-wrap table[class^=common-table] tbody tr td.nodata {
    padding: 24px 0;
  }
  .tbl-board-wrap table[class^=common-table] tbody tr td.nodata .exp {
    display: block;
    margin-top: 12px;
  }
  .tbl-board-wrap table[class^=common-table] tbody tr:hover {
    background-color: transparent;
  }
  .tbl-board-wrap table[class^=common-table] th, .tbl-board-wrap table[class^=common-table] td {
    padding: 12px 8px;
    border: none;
  }
  .tbl-board-wrap table[class^=common-table] th:first-child, .tbl-board-wrap table[class^=common-table] td:first-child {
    padding-left: 0;
  }
  .tbl-board-wrap table[class^=common-table] th:last-child, .tbl-board-wrap table[class^=common-table] td:last-child {
    padding-right: 0;
  }
  .tbl-board-wrap.review-list-tbl table {
    border-collapse: collapse;
  }
  .tbl-board-wrap.review-list-tbl table colgroup {
    display: none;
  }
  .tbl-board-wrap.review-list-tbl table thead {
    position: absolute !important;
    left: 0;
    height: 1px !important;
    width: 1px !important;
    padding: 0 !important;
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
  }
  .tbl-board-wrap.review-list-tbl table th,
  .tbl-board-wrap.review-list-tbl table td {
    display: block;
    width: 100px;
    padding: 0;
  }
  .tbl-board-wrap.review-list-tbl table tbody tr {
    border-bottom: 1px solid #F8F8F8;
  }
  .tbl-board-wrap.review-list-tbl table tbody tr:last-child {
    border: 0;
  }
  .tbl-board-wrap.review-list-tbl table tbody th {
    width: 100%;
    padding: 24px 0 8px 0;
  }
  .tbl-board-wrap.review-list-tbl table tbody td {
    display: inline-flex;
  }
  .tbl-board-wrap.review-list-tbl table tbody td.review-writer {
    width: calc(100% - 112px);
    padding-left: 12px;
    color: #9B9B9B;
    text-align: right;
    justify-content: flex-end;
  }
  .tbl-board-wrap.review-list-tbl table tbody td:last-child {
    display: block;
    width: 100%;
    padding: 12px 0 24px 0;
  }
  .tbl-board-wrap .review-cont,
  .tbl-board-wrap .manager-answer {
    color: #131313;
  }
  .tbl-board-wrap .manager-answer {
    margin-top: 12px;
    padding: 16px 12px;
    border-radius: 4px;
    background: #F4F4F4;
  }
  .det-head .tbl-board-title {
    font-size: 16px;
    line-height: 1.6;
  }
  .det-head .category {
    font-size: 14px;
    line-height: 1.6;
  }
  .det-content {
    font-size: 14px;
    line-height: 1.6;
  }
  .det-move {
    display: block;
  }
  .det-move .list-return {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .det-move .list-return .btn-md {
    width: 100%;
    font-size: 14px;
    line-height: 1.6;
  }
  .board-page-navi {
    gap: 0 15px;
  }
  .simple-content {
    padding: 0;
  }
  .simple-content h1 {
    font-size: 20px;
    line-height: 1.5;
  }
  .simple-content .product-icon {
    width: 100px;
    height: 100px;
  }
}
html:lang(en) .det-content * {
  font-family: "Noto Sans", sans-serif !important;
}

html:lang(ja) .det-content * {
  font-family: "Noto Sans JP", sans-serif !important;
}

/* 갤러리 테이블 목록 */
.badge-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.badge, [class^=badge-b-], [class^=badge-l-], [class^=badge-v-], [class^=badge-r-] {
  z-index: 1;
  padding: 3px 6px;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  display: inline-block;
}

/*뱃지 default*/
[class^=badge-r-] {
  border-radius: 8px;
  font-weight: 700;
}

.badge-r-black {
  background: #131313;
  border: 1px solid #131313;
}

.badge-r-white {
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  color: #131313;
}

[class^=badge-v-] {
  border-radius: 4px;
}

.badge-v-nomal {
  background: #131313;
  border: 1px solid #131313;
}

.badge-v-primary {
  position: relative;
  padding-left: 15px;
  border: 1px solid #D40200;
}

.badge-v-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #F10001;
  border-radius: 100%;
}

.badge-v-secondary {
  background: rgba(87, 114, 232, 0.6);
  border: 1px solid #3B6EE7;
}

.badge-v-tertiary {
  background: #F56A00;
  border: 1px solid #F56A00;
}

.badge-v-quarternary {
  background: rgba(242, 54, 86, 0.6);
  border: 1px solid #F23656;
}

.badge-v-quinary {
  background: rgba(225, 37, 55, 0.6);
  border: 1px solid #E12537;
}

.badge-v-senary {
  background: rgba(33, 157, 252, 0.6);
  border: 1px solid #219DFC;
}

.badge-v-septenary {
  background: rgba(51, 128, 215, 0.6);
  border: 1px solid #3380D7;
}

/*뱃지 - border line*/
[class^=badge-l-] {
  border-radius: 4px;
  background: #FFFFFF;
  font-weight: 700;
}

.badge-l-nomal {
  color: #131313;
  border: 1px solid #131313;
}

.badge-l-primary {
  background: rgba(105, 183, 3, 0.6);
  border: 1px solid #69B703;
}

.badge-l-secondary {
  color: #3B6EE7;
  border: 1px solid #3B6EE7;
}

.badge-l-tertiary {
  color: #F56A00;
  border: 1px solid #F56A00;
}

.chapter-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 6px;
  background: rgba(55, 55, 55, 0.6);
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 11px;
  line-height: 1.5;
}

/*뱃지 - border box*/
[class^=badge-b-] {
  padding: 4px 6px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 10px;
  line-height: 1.5;
  background: #FFFFFF;
}

[class^=badge-b-].disabled {
  border: 1px solid #A1A1A1;
  color: #A1A1A1;
}

.badge-b-nomal {
  color: #131313;
  border: 1px solid #A1A1A1;
}

.badge-b-nomal.accepting {
  border-color: #5772E8;
  color: #5772E8;
}

.badge-b-nomal.d-day {
  border-color: #E5EAFF;
  background-color: #E5EAFF;
  color: #5772E8;
}

.badge-b-nomal.deadline {
  border-color: #FFEAEA;
  background-color: #FFEAEA;
  color: #FF4D4D;
}

.badge-b-nomal.ends {
  border-color: #B5B5B5;
  color: #B5B5B5;
}

.badge-b-primary {
  color: #D40200;
  border: 1px solid #D40200;
}

.badge-b-secondary {
  color: #3B6EE7;
  border: 1px solid #3B6EE7;
}

.badge-b-tertiary {
  color: #FF5337;
  border: 1px solid #FF5337;
}

.badge-b-membership {
  border: 1px solid #991FE8;
  color: #991FE8;
}

.badge-b-certificate {
  border: 1px solid #3380D7;
  color: #3380D7;
}

.badge-b-event {
  border: 1px solid #FF2C58;
  background-color: #FF2C58;
  color: #FFFFFF;
}

.live-on {
  position: absolute;
  top: 15px;
  right: 18px;
  z-index: 1;
  min-width: 33px;
  height: 12px;
  background: #D40200;
  border-radius: 8px;
  font-size: 10px;
  line-height: 1.5;
}

.live-on::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #FFFFFF;
  border-radius: 50%;
}

.live-on span {
  margin-left: 8px;
  color: #FFFFFF;
  font-weight: 700;
}

.gallery-wrap {
  display: grid;
}

.gallery-wrap li a {
  display: block;
}

.gallery-wrap li a .gallery-img {
  position: relative;
  background: #F2F2F2;
  text-align: center;
  width: 100%;
  padding-top: 0%;
  margin-bottom: 0px;
  overflow: hidden;
  background: #828282;
  border-radius: 10px 10px 0 0;
}

.gallery-wrap li a .gallery-img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: auto;
}

.gallery-wrap li a .gallery-content {
  background: #FFFFFF;
  border-radius: 0 0 10px 10px;
  box-sizing: border-box;
  padding: 16px;
}

.gallery-wrap li a .gallery-content .gallery-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-wrap: break-word;
  line-height: 1.6;
  height: 3.2;
  font-size: 16px;
  height: unset;
}

.gallery-wrap li a .gallery-content .gallery-info {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery-wrap li a .gallery-content .gallery-date {
  margin-top: 16px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.7;
  color: #828282;
}

.gallery-wrap.gallery-col-3 {
  grid-template-columns: repeat(3, calc((100% - 80px) / 3));
  grid-gap: 40px 39px;
}

.gallery-wrap.gallery-col-3 li .gallery-img {
  aspect-ratio: 2/1;
}

.gallery-wrap.gallery-col-3 li .gallery-content {
  padding: 18px 16px;
  height: auto;
}

.gallery-wrap.gallery-col-3 li .gallery-content .gallery-title {
  min-height: 48px;
  line-height: 24px;
}

.gallery-wrap.gallery-col-4 {
  grid-template-columns: repeat(4, calc((100% - 60px) / 4));
  grid-gap: 45px 20px;
}

.gallery-wrap.gallery-col-4 li .gallery-img {
  aspect-ratio: 2/1;
}

.gallery-wrap.gallery-col-4 li .gallery-content .gallery-title {
  font-size: 14px;
  line-height: 1.6;
}

.full-content-flex {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 200px;
  padding: 80px 24px;
  background: #F8F8F8;
}

.full-content-flex .full-content-box {
  max-width: 320px;
  text-align: center;
}

.full-content-flex .full-content-box .full-content-title {
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}

.full-content-flex .full-content-box .full-content-info {
  font-size: 18px;
  line-height: 1.5;
}

.full-content-flex .full-content-box img {
  width: 80px;
  height: 80px;
}

.gom-swiper-pagination {
  display: none;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
}

.gom-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #DADADA;
  opacity: 1;
}

.gom-swiper-pagination .swiper-pagination-bullet-active {
  width: 70px;
  background: #828282;
  border-radius: 100px;
}

/* 반응형 */
@media (max-width: 1440px) {
  .gallery-wrap.gallery-col-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1279px) {
  .gallery-wrap.gallery-col-3 {
    grid-template-columns: repeat(2, calc((100% - 45px) / 2));
    grid-gap: 30px 45px;
  }
  .gallery-wrap.gallery-col-4 {
    grid-template-columns: repeat(2, calc((100% - 20px) / 2));
  }
}
@media (max-width: 768px) {
  .gallery-wrap.gallery-col-3 {
    grid-template-columns: repeat(1, 100%);
    grid-gap: 24px;
  }
  .gallery-wrap.gallery-col-3 li .gallery-content {
    padding: 16px;
  }
  .gallery-wrap.gallery-col-3 li .gallery-content .gallery-title {
    min-height: auto;
  }
  .gallery-wrap.gallery-col-4 {
    grid-template-columns: repeat(1, 100%);
  }
  .badge, [class^=badge-r-], [class^=badge-v-], [class^=badge-l-], [class^=badge-b-] {
    padding: 3px 4px;
    border-radius: 4px;
    font-size: 10px;
    line-height: 1.5;
  }
  [class^=badge-b-] {
    padding: 4px;
  }
  .badge-chapter {
    padding: 4px;
    border-radius: 4px;
  }
  .badge-live {
    padding-left: 15px;
  }
  .full-content-flex {
    flex-wrap: wrap;
    margin-top: 100px;
  }
  .gom-swiper-pagination {
    display: flex;
    gap: 6px;
  }
}
.color-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  text-align: center;
}

.color-grid.color-sementic {
  grid-template-columns: repeat(10, 1fr);
  grid-gap: 40px;
}

.color-grid .grid-1-6 {
  grid-column: 1/6;
}

.color-guide {
  padding-bottom: 70%;
  margin-right: -1px;
  margin-left: -1px;
  border: 1px solid #DADADA;
}

.color-guide.color-guide-2 {
  padding-bottom: 70%;
  border-radius: 5px;
}

.color-guide.color-guide-grid-first {
  padding-bottom: 14%;
}

.color-guide.color-FFFFFF {
  background: #FFFFFF;
}

.color-guide.color-F4F4F4 {
  background: #F4F4F4;
}

.color-guide.color-DADADA {
  background: #DADADA;
}

.color-guide.color-A1A1A1 {
  background: #A1A1A1;
}

.color-guide.color-828282 {
  background: #828282;
}

.color-guide.color-484848 {
  background: #484848;
}

.color-guide.color-373737 {
  background: #373737;
}

.color-guide.color-131313 {
  background: #131313;
}

.color-guide.color-FF0000 {
  background: #FF0000;
}

.color-guide.color-FF3110 {
  background: #FF3110;
}

.color-guide.color-FE421B {
  background: #FE421B;
}

.color-guide.color-FF552A {
  background: #FF552A;
}

.color-guide.color-009C97 {
  background: #009C97;
}

.color-guide.color-3FC8C4 {
  background: #3FC8C4;
}

.color-guide.color-6BDEDA {
  background: #6BDEDA;
}

.color-guide.color-A0ECEA {
  background: #A0ECEA;
}

.color-guide.color-FFC501 {
  background: #FFC501;
}

.color-guide.color-CD7C13 {
  background: #CD7C13;
}

.color-guide.color-F77300 {
  background: #F77300;
}

.color-guide.color-FF3400 {
  background: #FF3400;
}

.color-guide.color-DA115A {
  background: #DA115A;
}

.color-guide.color-C615bA {
  background: #C615bA;
}

.color-guide.color-991FE8 {
  background: #991FE8;
}

.color-guide.color-9658E8 {
  background: #9658E8;
}

.color-guide.color-5872E8 {
  background: #5872E8;
}

.color-guide.color-69B703 {
  background: #69B703;
}

.color-guide.color-0FAC58 {
  background: #0FAC58;
}

.color-guide.color-029C64 {
  background: #029C64;
}

.color-guide.color-029C97 {
  background: #029C97;
}

.color-guide.color-1DA5C7 {
  background: #1DA5C7;
}

.color-guide.color-3380D7 {
  background: #3380D7;
}

.color-guide.color-2747EF {
  background: #2747EF;
}

.color-text-notice {
  color: #FF4D4D !important;
}

.color-text-primary {
  color: #5772E8 !important;
}

/* 반응형 */
@media (max-width: 768px) {
  .color-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .color-grid.color-sementic {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 360px) {
  .color-grid.color-sementic {
    grid-template-columns: repeat(3, 1fr);
  }
}
.lang-ko {
  font-family: "NanumSquare", sans-serif;
}

.lang-en {
  font-family: "Noto Sans", sans-serif;
}

.lang-ja {
  font-family: "Noto Sans JP", sans-serif;
}

.text-light {
  font-weight: 300;
}

.text-regular {
  font-weight: 400;
}

.text-bold {
  font-weight: 700;
}

.txt-right {
  text-align: right !important;
}

.txt-left {
  text-align: left !important;
}

.txt-center {
  text-align: center !important;
}

.txt-underline {
  text-decoration: underline;
}

.text-10 {
  font-size: 10px;
  line-height: 1.5;
}

.text-11 {
  font-size: 11px;
  line-height: 1.5;
}

.text-12 {
  font-size: 12px;
  line-height: 1.7;
}

.text-14 {
  font-size: 14px;
  line-height: 1.6;
}

.text-16 {
  font-size: 16px;
  line-height: 1.6;
}

.text-18 {
  font-size: 18px;
  line-height: 1.5;
}

.text-20 {
  font-size: 20px;
  line-height: 1.5;
}

.text-22 {
  font-size: 22px;
  line-height: 1.5;
}

.text-24 {
  font-size: 24px;
  line-height: 1.5;
}

.text-28 {
  font-size: 28px;
  line-height: 1.5;
}

.text-32 {
  font-size: 32px;
  line-height: 1.5;
}

.text-36 {
  font-size: 36px;
  line-height: 1.5;
}

.text-40 {
  font-size: 40px;
  line-height: 1.5;
}

.text-48 {
  font-size: 48px;
  line-height: 1.5;
}

.text-blue-9 {
  color: #5772E8;
}

.cp_g-variety {
  margin-bottom: 20px;
}

.cp_g-variety p {
  line-height: normal;
}

.font-guide {
  display: grid;
  grid-template-columns: repeat(3, 17%);
  grid-gap: 10px;
  margin-top: 30px;
}

.text-emoji .emoji {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 4px;
  flex-shrink: 0;
  background-size: cover;
  vertical-align: text-top;
}

.text-emoji .emoji.space-right {
  margin-right: 4px;
  margin-left: 0;
}

.text-emoji.cry .emoji {
  background-image: url(./../images/common/emoji/emoji-cry.svg);
}

.text-emoji.event .emoji {
  background-image: url(./../images/common/emoji/emoji-event.svg);
}

/* 반응형 */
@media (max-width: 768px) {
  .font-guide {
    grid-template-columns: repeat(1, 1fr);
  }
}
.bullet_list li {
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}

.bullet_list li::before {
  position: absolute;
  left: 0;
  display: block;
}

.bullet_list li + li {
  margin-top: 12px;
}

.bullet_list.dash > li {
  padding-left: 10px;
}

.bullet_list.dash > li::before {
  content: "-";
}

.bullet_list.num_type01 > li {
  padding-left: 24px;
}

.bullet_list.num_type01 > li .txt {
  position: absolute;
  top: 0;
  left: 0;
}

.bullet_list.check > li {
  padding-left: 30px;
  line-height: 24px;
  font-weight: 700;
}

.bullet_list.check > li::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 3998'/%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='M4.5 10.141 8.786 15.5l7.714-10' data-name='패스 2284'/%3E%3C/svg%3E") center center no-repeat;
}

.bullet_list.check > li + li {
  margin-top: 4px;
}

.bullet_list.check > li.txt-important {
  color: #991FE8;
}

.bullet_list.check > li.txt-important::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 3998'/%3E%3Cpath fill='none' stroke='%23991fe8' stroke-linecap='round' stroke-linejoin='round' d='M4.5 10.141 8.786 15.5l7.714-10' data-name='패스 2284'/%3E%3C/svg%3E");
}

.bullet_list.check > li.txt-blue {
  color: #5772E8;
}

.bullet_list.check > li.txt-blue::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 3998'/%3E%3Cpath fill='none' stroke='%235772e8' stroke-linecap='round' stroke-linejoin='round' d='M4.5 10.141 8.786 15.5l7.714-10' data-name='패스 2284'/%3E%3C/svg%3E");
}

.bullet_list.check > li.txt-red {
  color: #f44e6b !important;
}

.bullet_list.check > li.txt-red::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 3998'/%3E%3Cpath fill='none' stroke='%23f44e6b' stroke-linecap='round' stroke-linejoin='round' d='M4.5 10.141 8.786 15.5l7.714-10' data-name='패스 2284'/%3E%3C/svg%3E") !important;
}

.bullet_list.check > li.gradient {
  display: inline-flex;
  background: linear-gradient(113.1deg, #579be8 14.95%, #991fe8 85.05%);
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #FFFFFF;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bullet_list.check > li.gradient::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath stroke='url(%23a)' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6.667 15.427 6.666 8.6 12-16.054'/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='6.667' x2='21.647' y1='16' y2='23.431' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23579BE8'/%3E%3Cstop offset='1' stop-color='%23991FE8'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}

.bullet_list.refer > li {
  padding-left: 20px;
}

.bullet_list.refer > li::before {
  content: "※";
}

.bullet_list.dot > li {
  padding-left: 7px;
}

.bullet_list.dot > li::before {
  content: "";
  display: block;
  top: 11px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #131313;
}

.bullet_list.dot > li + li {
  margin-top: 12px;
}

.bullet_list.star > li {
  padding-left: 10px;
}

.bullet_list.star > li::before {
  content: "*";
}

.bullet_list.star > li + li {
  margin-top: 0;
}

p.bullet_list.refer {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.6;
}

p.bullet_list.refer::before {
  content: "※";
  position: absolute;
  left: 0;
  display: block;
}

p.bullet_list.star {
  position: relative;
  padding-left: 12px;
}

p.bullet_list.star::before {
  content: "*";
  position: absolute;
  left: 0;
  display: block;
}

@media (max-width: 768px) {
  .bullet_list li {
    font-size: 14px;
    line-height: 1.6;
  }
  .bullet_list.num_type01 > li {
    padding-left: 24px;
  }
  .bullet_list.num_type01 > li .txt {
    position: absolute;
    top: 0;
    left: 0;
  }
  .bullet_list.check > li {
    padding-left: 24px;
    font-size: 12px;
    line-height: 1.7;
    line-height: 20px;
  }
  .bullet_list.check > li::before {
    content: "";
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 3998'/%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='M4.5 10.141 8.786 15.5l7.714-10' data-name='패스 2284'/%3E%3C/svg%3E") center center no-repeat;
    background-size: cover;
  }
  .bullet_list.check > li + li {
    margin-top: 2px;
  }
  .bullet_list.refer > li {
    padding-left: 16px;
  }
  .bullet_list.refer > li::before {
    content: "※";
  }
  p.bullet_list.refer {
    padding-left: 16px;
  }
}
.tooltip-bubble {
  position: absolute;
  padding: 6px 10px;
  border: solid 1px #00AD8D;
  border-radius: 4px;
  background: #fff;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 700;
  text-align: center;
  box-shadow: 0px 0px 10px 0px rgba(0, 84, 64, 0.1490196078);
  white-space: nowrap;
}

.tooltip-bubble .txt-important {
  color: #00AD8D;
  text-decoration: underline;
}

.tooltip-bubble::after {
  content: "";
  position: absolute;
  clip-path: polygon(0 155%, 155% 0, 100% 100%);
  right: 6px;
  bottom: -3px;
  width: 28px;
  height: 28px;
  border: 1px solid #00AD8D;
  border-radius: 4px;
  background: #fff;
  transform: rotate(45deg);
}

/* 반응형 */
@media (max-width: 768px) {
  .tooltip-bubble {
    font-size: 10px;
    line-height: 1.5;
  }
  .tooltip-bubble::after {
    width: 25px;
    height: 25px;
  }
}
/* 이미지 비교(img-comparison-slider) */
img-comparison-slider {
  visibility: hidden;
}

img-comparison-slider [slot=second] {
  display: none;
}

img-comparison-slider.image-comparison {
  visibility: inherit;
}

img-comparison-slider.image-comparison [slot=second] {
  display: unset;
}

/* 레이아웃 */
#skipnavi a {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  background: #000000;
  color: #FFFFFF;
  overflow: hidden;
}

#skipnavi a:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 15px;
  text-align: center;
  overflow: visible;
}

#header-wrap {
  position: absolute;
  z-index: 10;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 60px;
  box-sizing: border-box;
  background-color: #FFFFFF;
  border-bottom: 1px solid #EDEDED;
}

#header-wrap.fixed {
  position: fixed;
}

#header {
  display: flex;
  gap: 34px;
  max-width: 1600px;
  margin: auto;
  height: 100%;
  padding: 0 24px;
  align-items: center;
}

#header .h-logo {
  width: 116px;
  flex-shrink: 0;
}

#header .h-logo a {
  display: block;
}

#header .h-logo a img {
  display: block;
}

#header .h-prev a {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  background: url("./../images/layout/icon_prev_lg.svg") no-repeat center/cover;
}

#header .h-prev .txt {
  display: block;
  text-indent: -9999px;
  overflow: hidden;
}

#header .h-title {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}

#header .btn-gnb {
  display: none;
  position: relative;
  width: 24px;
  height: 24px;
}

#header .btn-gnb .bar {
  position: absolute;
  left: 4px;
  display: block;
  width: 16px;
  height: 1px;
  background-color: #000000;
  transition: 0.3s ease all;
}

#header .btn-gnb .bar:nth-child(2) {
  top: 5px;
}

#header .btn-gnb .bar:nth-child(3) {
  top: 11px;
}

#header .btn-gnb .bar:nth-child(4) {
  bottom: 5px;
}

#header .btn-gnb.close .bar {
  left: 5px;
}

#header .btn-gnb.close .bar:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
}

#header .btn-gnb.close .bar:nth-child(3) {
  opacity: 0;
}

#header .btn-gnb.close .bar:nth-child(4) {
  bottom: 12px;
  transform: rotate(-45deg);
}

#header .gnb-wrap {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

#header .gnb-wrap .g-navi {
  display: flex;
  height: 100%;
  align-items: center;
}

#header .gnb-wrap .g-navi > li {
  display: flex;
  height: auto;
  padding: 0 10px;
  box-sizing: border-box;
}

#header .gnb-wrap .g-navi > li a {
  display: flex;
  align-items: center;
}

#header .gnb-wrap .g-navi > li .sw-logo {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

#header .gnb-wrap .g-navi > li .sw-logo img {
  display: block;
}

#header .gnb-wrap .g-navi > li > a {
  position: relative;
  gap: 4px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  transition: 0.3s ease color;
}

#header .gnb-wrap .g-navi > li > .btn-deps2-open {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 59px;
}

#header .gnb-wrap .g-navi > li > .btn-deps2-open::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='none'%3E%3Cpath stroke='%239b9b9b' stroke-linecap='round' stroke-linejoin='round' d='m3 5.5 5 5 5-5' data-name='back'/%3E%3Cpath d='M16 0v16H0V0z' data-name='사각형 6370' opacity='.2'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  transform: translateY(-50%);
}

#header .gnb-wrap .g-navi > li > .btn-deps2-open.on::after {
  transform: translateY(-50%) rotate(180deg);
}

#header .gnb-wrap .g-navi > li .deps2-inner {
  position: absolute;
  top: 59px;
  left: 0;
  display: none;
  width: 100%;
  padding: 16px 0 24px 0;
  border-top: 1px solid #EDEDED;
  border-radius: 0 0 10px 10px;
  background-color: #FFFFFF;
  box-sizing: border-box;
}

#header .gnb-wrap .g-navi > li .deps2-inner::after {
  content: "";
  position: absolute;
  top: 40%;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 0 0 10px 10px;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.1);
  z-index: -1;
}

#header .gnb-wrap .g-navi > li .deps2-inner .deps2 {
  display: flex;
  gap: 40px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  justify-content: space-between;
}

#header .gnb-wrap .g-navi > li .deps2-inner .deps2 > ul {
  display: flex;
  gap: 20px 86px;
  max-width: 1080px;
  height: 100%;
  margin-left: 160px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

#header .gnb-wrap .g-navi > li .deps2-inner .deps2 > ul li {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

#header .gnb-wrap .g-navi > li .deps2-inner .deps2 > ul li a {
  gap: 8px;
}

#header .gnb-wrap .g-navi > li .deps2-inner .deps2 > ul .deps2-tit {
  color: #9B9B9B;
  font-size: 14px;
  line-height: 1.6;
}

#header .gnb-wrap .g-navi > li .deps2-inner .deps2 > ul .deps3-wrap {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

#header .gnb-wrap .g-navi > li .deps2-inner .deps2 .gnb-bnr-wrap {
  max-width: 320px;
}

#header .gnb-wrap .g-navi > li .deps2-inner .deps2 .gnb-bnr-wrap > a {
  display: block;
}

#header .gnb-wrap .g-navi > li .deps2-inner .deps2 .gnb-bnr-wrap img {
  display: block;
  border-radius: 8px;
}

#header .gnb-wrap .g-navi > li.deps2-wrap > a::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg fill='none'%3E%3Cpath stroke='%239b9b9b' stroke-linecap='round' stroke-linejoin='round' d='m3 5.5 5 5 5-5' data-name='back'/%3E%3Cpath d='M16 0v16H0V0z' data-name='사각형 6370' opacity='.2'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
}

#header .gnb-wrap .g-navi > li.easy-pass > a {
  gap: 6px;
  line-height: 1;
}

#header .gnb-wrap .g-navi > li.easy-pass > a .flag {
  top: calc(100% + 7px);
  left: 0;
  min-width: 113px;
  padding: 4px 10px;
  border: 0;
  border-radius: 0 8px 8px 8px;
  background: linear-gradient(113.1deg, #579be8 14.95%, #991fe8 85.05%);
  font-size: 14px;
  line-height: 1.6;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s;
}

#header .gnb-wrap .g-navi > li.divide + li {
  padding-right: 0;
}

#header .gnb-wrap .g-navi > li.divide + li > a {
  position: relative;
  padding-left: 20px;
}

#header .gnb-wrap .g-navi > li.divide + li > a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 16px;
  background-color: #EDEDED;
  transform: translateY(-50%);
}

#header .gnb-wrap .g-navi > li.on > a, #header .gnb-wrap .g-navi > li.active > a {
  color: #5772E8;
}

#header .gnb-wrap .g-navi > li.on.easy-pass > a .flag {
  display: block;
  opacity: 1;
}

#header .gnb-wrap .g-navi > li.on.deps2-wrap > a::after {
  transform: rotate(180deg);
}

#header .gnb-wrap .g-navi > li.on.deps2-wrap .deps2-inner {
  display: block;
}

#header .gnb-wrap .g-navi .flag {
  position: absolute;
  top: 0;
  left: calc(100% + 8px);
  display: inline-flex;
  min-width: 23px;
  min-height: 23px;
  padding: 3px 6px;
  border: 1px solid transparent;
  border-radius: 4px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}

#header .gnb-wrap .g-util .user-menu {
  display: flex;
  align-items: center;
}

#header .gnb-wrap .g-util .user-menu a {
  position: relative;
  font-size: 14px;
  line-height: 1.6;
}

#header .gnb-wrap .g-util .user-menu a.credits-charge {
  display: flex;
  align-items: center;
  height: 32px;
  margin-left: 16px;
  padding: 0 14px;
  border-radius: 32px;
  border: 1px solid transparent;
  background-image: linear-gradient(90deg, rgba(249, 244, 255, 0.6) 0%, rgba(229, 250, 255, 0.6) 100%), linear-gradient(90deg, #F0E4FF 0%, #CFF6FF 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: box-shadow ease 0.5s;
}

#header .gnb-wrap .g-util .user-menu a.credits-charge > span {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 12px;
  line-height: 1;
}

#header .gnb-wrap .g-util .user-menu a.credits-charge > span::before, #header .gnb-wrap .g-util .user-menu a.credits-charge > span::after {
  content: "";
  width: 12px;
  height: 12px;
  background-size: cover;
}

#header .gnb-wrap .g-util .user-menu a.credits-charge > span::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none'%3E%3Cpath fill='%23131313' d='M14 6.5h-.75v3h1.5v-3H14Zm-3 3h.75v-3h-1.5v3H11Zm-6-3h.75V6h-1.5v.5H5ZM3 4h.75v-.5h-1.5V4H3Zm1.5-2v.75h11v-1.5h-11V2Zm11 0v.75a.75.75 0 0 1 .75.75h1.5a2.25 2.25 0 0 0-2.25-2.25V2ZM3 3.5h.75a.75.75 0 0 1 .75-.75v-1.5A2.25 2.25 0 0 0 2.25 3.5H3ZM4 5v-.75A.25.25 0 0 1 3.75 4h-1.5c0 .966.784 1.75 1.75 1.75V5Zm1 1h.75A1.75 1.75 0 0 0 4 4.25v1.5a.25.25 0 0 1 .25.25H5Zm1.5 2v-.75a.75.75 0 0 1-.75-.75h-1.5A2.25 2.25 0 0 0 6.5 8.75V8ZM8 6.5h-.75a.75.75 0 0 1-.75.75v1.5A2.25 2.25 0 0 0 8.75 6.5H8ZM9.5 5v-.75A2.25 2.25 0 0 0 7.25 6.5h1.5a.75.75 0 0 1 .75-.75V5ZM11 6.5h.75A2.25 2.25 0 0 0 9.5 4.25v1.5a.75.75 0 0 1 .75.75H11Zm1.5 4.5v-.75a.75.75 0 0 1-.75-.75h-1.5a2.25 2.25 0 0 0 2.25 2.25V11ZM14 9.5h-.75a.75.75 0 0 1-.75.75v1.5a2.25 2.25 0 0 0 2.25-2.25H14ZM15.5 5v-.75a2.25 2.25 0 0 0-2.25 2.25h1.5a.75.75 0 0 1 .75-.75V5Zm0 0v.75a2.25 2.25 0 0 0 2.25-2.25h-1.5a.75.75 0 0 1-.75.75V5Z'/%3E%3Cpath stroke='%23131313' stroke-width='1.5' d='M4 5 2.688 7.107a6 6 0 0 0-.382 5.625l.771 1.722A6 6 0 0 0 8.553 18h2.894a6 6 0 0 0 5.476-3.546l.771-1.722a6 6 0 0 0-.382-5.625L16 5'/%3E%3C/svg%3E");
}

#header .gnb-wrap .g-util .user-menu a.credits-charge > span::after {
  display: none;
}

#header .gnb-wrap .g-util .user-menu a.credits-charge:hover {
  box-shadow: 0px 0px 10px 0px #96e1f0;
}

#header .gnb-wrap .g-util .user-menu a.logout {
  color: #9b9b9b;
}

#header .gnb-wrap .g-util .user-menu a.mypage {
  margin-left: 16px;
  padding-left: 16px;
}

#header .gnb-wrap .g-util .user-menu a.mypage::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: #DADADA;
}

#header .gnb-wrap .g-util .user-menu .credits {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  min-width: 110px;
  height: 32px;
  margin-left: 16px;
  padding: 0 14px;
  border-radius: 32px;
  border: 1px solid transparent;
  background-image: linear-gradient(90deg, rgba(249, 244, 255, 0.6) 0%, rgba(229, 250, 255, 0.6) 100%), linear-gradient(90deg, #F0E4FF 0%, #CFF6FF 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-sizing: border-box;
  transition: box-shadow ease 0.5s;
}

#header .gnb-wrap .g-util .user-menu .credits > a span {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

#header .gnb-wrap .g-util .user-menu .credits > a span::before {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none'%3E%3Cpath fill='%23131313' d='M14 6.5h-.75v3h1.5v-3H14Zm-3 3h.75v-3h-1.5v3H11Zm-6-3h.75V6h-1.5v.5H5ZM3 4h.75v-.5h-1.5V4H3Zm1.5-2v.75h11v-1.5h-11V2Zm11 0v.75a.75.75 0 0 1 .75.75h1.5a2.25 2.25 0 0 0-2.25-2.25V2ZM3 3.5h.75a.75.75 0 0 1 .75-.75v-1.5A2.25 2.25 0 0 0 2.25 3.5H3ZM4 5v-.75A.25.25 0 0 1 3.75 4h-1.5c0 .966.784 1.75 1.75 1.75V5Zm1 1h.75A1.75 1.75 0 0 0 4 4.25v1.5a.25.25 0 0 1 .25.25H5Zm1.5 2v-.75a.75.75 0 0 1-.75-.75h-1.5A2.25 2.25 0 0 0 6.5 8.75V8ZM8 6.5h-.75a.75.75 0 0 1-.75.75v1.5A2.25 2.25 0 0 0 8.75 6.5H8ZM9.5 5v-.75A2.25 2.25 0 0 0 7.25 6.5h1.5a.75.75 0 0 1 .75-.75V5ZM11 6.5h.75A2.25 2.25 0 0 0 9.5 4.25v1.5a.75.75 0 0 1 .75.75H11Zm1.5 4.5v-.75a.75.75 0 0 1-.75-.75h-1.5a2.25 2.25 0 0 0 2.25 2.25V11ZM14 9.5h-.75a.75.75 0 0 1-.75.75v1.5a2.25 2.25 0 0 0 2.25-2.25H14ZM15.5 5v-.75a2.25 2.25 0 0 0-2.25 2.25h1.5a.75.75 0 0 1 .75-.75V5Zm0 0v.75a2.25 2.25 0 0 0 2.25-2.25h-1.5a.75.75 0 0 1-.75.75V5Z'/%3E%3Cpath stroke='%23131313' stroke-width='1.5' d='M4 5 2.688 7.107a6 6 0 0 0-.382 5.625l.771 1.722A6 6 0 0 0 8.553 18h2.894a6 6 0 0 0 5.476-3.546l.771-1.722a6 6 0 0 0-.382-5.625L16 5'/%3E%3C/svg%3E");
  background-size: cover;
}

#header .gnb-wrap .g-util .user-menu .credits > a span > em {
  position: absolute;
  left: 0;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
  font-style: normal;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  white-space: nowrap;
  overflow: hidden;
}

#header .gnb-wrap .g-util .user-menu .credits > a.charge span {
  color: #9b9b9b;
  font-weight: 400;
}

#header .gnb-wrap .g-util .user-menu .credits > a.charge span::before {
  display: none;
}

#header .gnb-wrap .g-util .user-menu .credits > a:hover span {
  color: #131313;
  text-decoration: underline;
}

#header .gnb-wrap .g-util .user-menu .credits:hover {
  box-shadow: 0px 0px 10px 0px #96e1f0;
}

/* Product Lnb */
.lnb-wrap {
  position: fixed;
  bottom: 0;
  z-index: 9;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
  transition: opacity 0.3s ease;
}

.lnb-wrap .lnb-inner {
  display: flex;
  align-items: center;
  max-width: 1280px;
  height: 78px;
  padding: 0px 65px;
  margin: 0px auto;
}

.lnb-wrap .lnb-inner .logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  background-color: rgba(0, 255, 34, 0.2);
}

.lnb-wrap .lnb-inner .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lnb-wrap .lnb-inner .intro_wrap {
  margin-left: 16px;
  display: flex;
  align-items: center;
  flex: 1 1 0%;
  gap: 0px 30px;
}

.lnb-wrap .lnb-inner .intro_wrap p.intro {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: -0.54px;
}

.lnb-wrap .lnb-inner .intro_wrap .thin {
  font-weight: 400;
}

.lnb-wrap .lnb-inner .btn-downloads {
  margin-left: auto;
  display: flex;
  gap: 20px;
}

.lnb-wrap.hidden {
  opacity: 0;
}

.lnb-wrap[data-scroll=static] {
  position: static;
  bottom: unset;
}

/* Tablet */
@media (max-width: 1279px) {
  #header-wrap {
    height: 48px;
    border-bottom-color: #F4F4F4;
    z-index: 16;
  }
  #header {
    justify-content: space-between;
  }
  #header .h-logo {
    width: auto;
    height: 24px;
  }
  #header .h-logo img {
    height: 24px;
  }
  #header .btn-gnb {
    display: block;
  }
  #header .gnb-wrap {
    position: absolute;
    top: 48px;
    left: 100%;
    display: none;
    flex-direction: column-reverse;
    justify-content: flex-end;
    width: 100%;
    height: calc(var(--vh-full-size, 100vh) - 48px);
    background-color: #FFFFFF;
    box-sizing: border-box;
    overflow: hidden;
    overflow-y: scroll;
    flex-grow: 1;
  }
  #header .gnb-wrap .g-navi {
    flex-direction: column;
    align-items: start;
    width: 100%;
    height: auto;
    padding: 24px;
    box-sizing: border-box;
    order: 2;
  }
  #header .gnb-wrap .g-navi > li {
    position: relative;
    display: block;
    width: 100%;
    padding: 16px 0;
  }
  #header .gnb-wrap .g-navi > li + li {
    border-top: 1px solid #EDEDED;
  }
  #header .gnb-wrap .g-navi > li a {
    display: inline-flex;
  }
  #header .gnb-wrap .g-navi > li > a {
    position: relative;
    font-size: 18px;
    line-height: 1.5;
  }
  #header .gnb-wrap .g-navi > li > .btn-deps2-open {
    display: block;
  }
  #header .gnb-wrap .g-navi > li > .btn-deps2-open.on::after {
    transform: translateY(-50%) rotate(180deg);
  }
  #header .gnb-wrap .g-navi > li .deps2-inner {
    position: static;
    display: none;
    width: 100%;
    min-height: auto;
    padding: 0;
    border-top: 0;
    border-radius: 0;
  }
  #header .gnb-wrap .g-navi > li .deps2-inner::after {
    display: none;
  }
  #header .gnb-wrap .g-navi > li .deps2-inner .deps2 {
    padding: 0;
  }
  #header .gnb-wrap .g-navi > li .deps2-inner .deps2 > ul {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: none;
    margin-top: 16px;
    margin-left: 0;
  }
  #header .gnb-wrap .g-navi > li .deps2-inner .deps2 > ul li a {
    font-size: 16px;
    line-height: 1.6;
  }
  #header .gnb-wrap .g-navi > li .deps2-inner .deps2 > ul .deps2-tit {
    font-size: 13px;
    line-height: 1.6;
  }
  #header .gnb-wrap .g-navi > li .deps2-inner .deps2 > ul .deps3-wrap {
    display: flex;
    gap: 8px;
    flex-direction: column;
  }
  #header .gnb-wrap .g-navi > li .deps2-inner .deps2 .gnb-bnr-wrap {
    display: none;
  }
  #header .gnb-wrap .g-navi > li.deps2-wrap > a::after {
    display: none;
  }
  #header .gnb-wrap .g-navi > li.easy-pass > a .flag {
    position: static;
    min-width: auto;
    margin-left: 6px;
    border-radius: 6px 6px 6px 0;
    background: linear-gradient(113.1deg, #579be8 14.95%, #991fe8 85.05%);
    font-size: 12px;
    line-height: 1.7;
    opacity: 1;
  }
  #header .gnb-wrap .g-navi > li.divide + li > a {
    padding-left: 0;
  }
  #header .gnb-wrap .g-navi > li.divide + li > a::before {
    display: none;
  }
  #header .gnb-wrap .g-navi > li.on.easy-pass > a .flag {
    display: block;
    opacity: 1;
  }
  #header .gnb-wrap .g-util {
    position: static;
    display: flex;
    width: 100%;
    align-items: center;
    padding: 24px;
    min-height: auto;
    height: auto;
    border-bottom: 1px solid #EDEDED;
    box-sizing: border-box;
    order: 1;
  }
  #header .gnb-wrap .g-util .user-menu {
    gap: 16px 0;
    flex-wrap: wrap;
    width: 100%;
  }
  #header .gnb-wrap .g-util .user-menu a {
    font-size: 16px;
    line-height: 1.6;
    color: #575757;
    font-weight: 700;
  }
  #header .gnb-wrap .g-util .user-menu a.login {
    display: flex;
    gap: 6px;
    align-items: center;
  }
  #header .gnb-wrap .g-util .user-menu a.login::before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cg fill='none' stroke='%23131313' stroke-width='1.5' data-name='사각형 244' transform='translate(10 3)'%3E%3Crect width='10' height='18' stroke='none' rx='1'/%3E%3Crect width='11.5' height='19.5' x='-.75' y='-.75' rx='1.75'/%3E%3C/g%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-width='1.5' d='M2 12h14' data-name='패스 45659'/%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m14 9 3 3-3 3' data-name='패스 149'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 276' opacity='.2'/%3E%3C/svg%3E");
    background-size: cover;
  }
  #header .gnb-wrap .g-util .user-menu a.credits-charge {
    display: flex;
    align-items: center;
    height: auto;
    margin: 0 0 0 auto;
    padding: 0;
    border-radius: 0;
    border: none;
    background-image: none;
  }
  #header .gnb-wrap .g-util .user-menu a.credits-charge > span {
    color: #575757;
    font-size: 13px;
    font-weight: 400;
  }
  #header .gnb-wrap .g-util .user-menu a.credits-charge > span::before {
    display: none;
  }
  #header .gnb-wrap .g-util .user-menu a.credits-charge > span::after {
    content: "";
    display: block;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23575757' stroke-linecap='round' stroke-linejoin='round' d='m7 4 6 6-6 6'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 6370' opacity='.2'/%3E%3C/svg%3E");
  }
  #header .gnb-wrap .g-util .user-menu a.credits-charge:hover {
    box-shadow: none;
  }
  #header .gnb-wrap .g-util .user-menu a.logout {
    color: #9b9b9b;
  }
  #header .gnb-wrap .g-util .user-menu a.mypage {
    margin: 0 0 0 auto;
    padding: 0;
  }
  #header .gnb-wrap .g-util .user-menu a.mypage::before {
    display: none;
  }
  #header .gnb-wrap .g-util .user-menu .credits {
    gap: 16px;
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    height: auto;
    margin-left: 0;
    padding: 16px 14px;
    border-radius: 8px;
    border: 0;
    background-image: none;
    background-color: #F8F8F8;
  }
  #header .gnb-wrap .g-util .user-menu .credits > a span {
    font-size: 14px;
    line-height: 1;
  }
  #header .gnb-wrap .g-util .user-menu .credits > a span::before {
    content: "";
    width: 16px;
    height: 16px;
    margin-right: 2px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none'%3E%3Cpath fill='%23575757' d='M14 6.5h-.75v3h1.5v-3H14Zm-3 3h.75v-3h-1.5v3H11Zm-6-3h.75V6h-1.5v.5H5ZM3 4h.75v-.5h-1.5V4H3Zm1.5-2v.75h11v-1.5h-11V2Zm11 0v.75a.75.75 0 0 1 .75.75h1.5a2.25 2.25 0 0 0-2.25-2.25V2ZM3 3.5h.75a.75.75 0 0 1 .75-.75v-1.5A2.25 2.25 0 0 0 2.25 3.5H3ZM4 5v-.75A.25.25 0 0 1 3.75 4h-1.5c0 .966.784 1.75 1.75 1.75V5Zm1 1h.75A1.75 1.75 0 0 0 4 4.25v1.5a.25.25 0 0 1 .25.25H5Zm1.5 2v-.75a.75.75 0 0 1-.75-.75h-1.5A2.25 2.25 0 0 0 6.5 8.75V8ZM8 6.5h-.75a.75.75 0 0 1-.75.75v1.5A2.25 2.25 0 0 0 8.75 6.5H8ZM9.5 5v-.75A2.25 2.25 0 0 0 7.25 6.5h1.5a.75.75 0 0 1 .75-.75V5ZM11 6.5h.75A2.25 2.25 0 0 0 9.5 4.25v1.5a.75.75 0 0 1 .75.75H11Zm1.5 4.5v-.75a.75.75 0 0 1-.75-.75h-1.5a2.25 2.25 0 0 0 2.25 2.25V11ZM14 9.5h-.75a.75.75 0 0 1-.75.75v1.5a2.25 2.25 0 0 0 2.25-2.25H14ZM15.5 5v-.75a2.25 2.25 0 0 0-2.25 2.25h1.5a.75.75 0 0 1 .75-.75V5Zm0 0v.75a2.25 2.25 0 0 0 2.25-2.25h-1.5a.75.75 0 0 1-.75.75V5Z'/%3E%3Cpath stroke='%23575757' stroke-width='1.5' d='M4 5 2.688 7.107a6 6 0 0 0-.382 5.625l.771 1.722A6 6 0 0 0 8.553 18h2.894a6 6 0 0 0 5.476-3.546l.771-1.722a6 6 0 0 0-.382-5.625L16 5'/%3E%3C/svg%3E");
  }
  #header .gnb-wrap .g-util .user-menu .credits > a span::after {
    content: "";
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23575757' stroke-linecap='round' stroke-linejoin='round' d='m7 4 6 6-6 6'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 6370' opacity='.2'/%3E%3C/svg%3E");
    background-size: cover;
  }
  #header .gnb-wrap .g-util .user-menu .credits > a span > em {
    position: static;
    width: auto;
    height: auto;
    font-weight: 400;
    clip: auto;
    -webkit-clip-path: none;
    clip-path: none;
    white-space: normal;
    overflow: visible;
  }
  #header .gnb-wrap .g-util .user-menu .credits > a.charge span {
    font-weight: 400;
  }
  #header .gnb-wrap .g-util .user-menu .credits > a.charge span::before, #header .gnb-wrap .g-util .user-menu .credits > a.charge span::after {
    display: none;
  }
  #header .gnb-wrap .g-util .user-menu .credits > a:hover span {
    color: #575757;
    text-decoration: none;
  }
  #header .gnb-wrap .g-util .user-menu .credits:hover {
    box-shadow: none;
  }
  #header .gnb-wrap.opend {
    display: grid;
    grid-template-columns: repeat(1, 100%);
    grid-auto-rows: max-content;
  }
}
/* Mobile */
@media (max-width: 768px) {
  #header .gnb-wrap .g-navi > li .deps2-inner .deps2 {
    padding: 0;
  }
  #header .gnb-wrap .g-navi > li .deps2-inner .deps2 > ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .lnb-wrap .lnb-inner {
    height: 60px;
    padding: 0px 24px;
  }
  .lnb-wrap .lnb-inner .logo {
    display: none;
  }
  .lnb-wrap .lnb-inner .intro_wrap .intro {
    display: none;
  }
  .lnb-wrap .lnb-inner .btn-downloads .btn-md {
    height: 29px;
    padding: 0 24px;
    font-size: 12px;
    line-height: 1.7;
  }
}
html:lang(en) #header .gnb-wrap .g-navi > li > a,
html:lang(ja) #header .gnb-wrap .g-navi > li > a {
  font-weight: 400;
}

/* Container */
#container {
  position: relative;
  margin-top: 60px;
  box-sizing: border-box;
  overflow-x: hidden;
  /*snb*/
  /* 서브 페이지별 공통 여백 (제품 유/무료, 비즈니스) [D]이외 추가 확인되면 페이지명을 추가 해주세요 */
  /* // 서브 페이지별 공통 여백 (제품 유/무료, 비즈니스) */
}

#container #contents-head + .contents-body,
#container #contents-head + .lnb-wrap + .contents-body {
  margin-top: 0;
}

#container:has(.float-menu) .contents-body {
  margin-top: 0;
}

#container .contents-body {
  min-height: 600px;
  margin-top: 80px;
  padding-bottom: 200px;
}

#container .panel {
  position: relative;
  max-width: 1152px;
  margin: 0 auto;
  box-sizing: border-box;
}

#container .panel::after {
  content: "";
  display: block;
  clear: both;
}

#container .panel[class*=wide] {
  width: 100%;
  max-width: 100%;
}

#container .panel[class*=w876] {
  max-width: 876px;
}

#container .panel[class*=w665] {
  max-width: 713px;
}

#container .panel[class*=w1280] {
  max-width: 1280px;
}

#container .inner {
  max-width: 1104px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

#container .inner[class*=w1280] {
  max-width: 1280px;
}

#container .snb-wrap {
  float: left;
  padding-left: 24px;
  width: 188px;
  /*모바일에서 멀티 드롭다운 case*/
}

#container .snb-wrap .snb-inner .snb-title {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 24px;
  font-weight: 700;
}

#container .snb-wrap .snb-inner .snb-sub-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  color: #B2B2B2;
}

#container .snb-wrap .snb-inner .snb-menu ul li {
  margin-top: 12px;
}

#container .snb-wrap .snb-inner .snb-menu ul li a, #container .snb-wrap .snb-inner .snb-menu ul li button {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 32px;
  padding: 10px 32px 10px 16px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
}

#container .snb-wrap .snb-inner .snb-menu ul li a::before, #container .snb-wrap .snb-inner .snb-menu ul li button::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: no-repeat center;
  background-size: contain;
}

#container .snb-wrap .snb-inner .snb-menu ul li a:hover:not(.active), #container .snb-wrap .snb-inner .snb-menu ul li button:hover:not(.active) {
  background-color: #F4F4F4;
}

#container .snb-wrap .snb-inner .snb-menu ul li a::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23484848' stroke-linecap='round' stroke-linejoin='round' d='m7 4 6 6-6 6'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 6370' opacity='.2'/%3E%3C/svg%3E");
}

#container .snb-wrap .snb-inner .snb-menu ul li a.active {
  background-color: #9AAAF1;
  color: #FFFFFF;
}

#container .snb-wrap .snb-inner .snb-menu ul li a.active::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' d='m7 4 6 6-6 6'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 6370' opacity='.2'/%3E%3C/svg%3E");
}

#container .snb-wrap .snb-inner .snb-menu ul li button {
  text-align: left;
}

#container .snb-wrap .snb-inner .snb-menu ul li button::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23484848' stroke-linecap='round' stroke-linejoin='round' d='m4.5 7.5 6 6 6-6' data-name='패스 136'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 317' opacity='.2'/%3E%3C/svg%3E");
}

#container .snb-wrap .snb-inner .snb-menu ul li button.active::before {
  transform: translateY(-50%) rotate(-180deg);
}

#container .snb-wrap .snb-inner .snb-menu ul li button:hover {
  background-color: #F4F4F4;
}

#container .snb-wrap .snb-inner .snb-menu + .snb-sub-title {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid #DADADA;
}

#container .snb-wrap.snb-dropdown .snb-inner .snb-fake-label {
  cursor: pointer;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
  border: 1px solid #DADADA;
  border-radius: 4px;
  padding: 10px 44px 10px 12px;
  display: none;
}

#container .snb-wrap.snb-dropdown .snb-inner .snb-fake-label::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: no-repeat center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-linejoin='round' d='m4.5 7.5 6 6 6-6' data-name='패스 136'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 317' opacity='.2'/%3E%3C/svg%3E");
}

#container .snb-wrap.snb-dropdown .snb-inner .snb-menu {
  overflow-y: auto;
}

#container .snb-wrap.snb-dropdown .snb-inner .snb-menu ul li a::before {
  display: none;
}

#container .snb-wrap.snb-dropdown .snb-inner .snb-menu .snb-menu-2deps {
  display: none;
}

#container .snb-wrap.snb-dropdown .snb-inner .snb-menu .snb-menu-2deps li a {
  padding: 10px 24px;
  font-weight: 400;
}

#container .snb-wrap + .inner {
  padding-left: 252px;
}

#container .gom-content-inner-wrap {
  padding-top: 120px;
  padding-bottom: 0;
}

#container .gom-content-inner-wrap.full {
  padding-top: 64px;
  padding-bottom: 80px;
  margin-top: 120px;
}

#container .gom-content-inner {
  padding-top: 64px;
}

#container .gom-use-guide-inner-wrap {
  padding-top: 80px;
}

#container .gom-use-guide-inner-wrap .gom-use-guide-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 100px 40px 60px;
  margin: 0;
  background: #F8F9FF;
  border-radius: 10px;
}

#container .gom-use-guide-inner-wrap .gom-use-guide-wrap h2 {
  text-align: left;
}

#container .gom-use-guide-inner-wrap .gom-use-guide-wrap p:nth-of-type(1) {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.6;
}

#container .gom-use-guide-inner-wrap .gom-use-guide-wrap p:nth-of-type(2) {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.7;
}

#container .gom-use-guide-inner-wrap .gom-use-guide-wrap .gom-use-guide-img {
  display: flex;
  gap: 24px;
  font-size: 0;
}

#container .gom-use-guide-inner-wrap .gom-use-guide-wrap .gom-use-guide-img img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

#container .content-footer {
  padding: 80px 0;
  background: #F8F8F8;
}

#container .content-footer.marquee-banner {
  padding: 80px 0 100px;
}

#container .content-footer.marquee-banner .partners-list {
  display: flex;
}

#container .content-footer.marquee-banner .partners-list .marquee-part {
  display: flex;
  gap: 24px;
}

#container .content-footer.marquee-banner .partners-list .marquee-part span {
  display: block;
  width: 200px;
  height: 80px;
}

#container .content-footer.marquee-banner .partners-list .marquee-part span:nth-child(1) {
  padding-left: 24px;
}

/* Sub Content */
.sub-contents {
  position: relative;
  padding: 94px 0px 200px;
}

.sub-contents .sc-inner {
  width: 1400px;
  margin: 0px auto;
}

.sub-contents h2.sc-tit {
  font-size: 26px;
  line-height: 30px;
  letter-spacing: -0.78px;
}

.sub-contents .snb {
  display: flex;
  gap: 0px 35px;
  padding: 0px 46px;
}

.float-menu {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
  opacity: 0;
  z-index: 9;
}

.float-menu .float-menu-inner {
  display: flex;
  align-items: center;
  max-width: 1280px;
  height: 78px;
  padding: 0px 65px;
  margin: 0px auto;
}

.float-menu .float-menu-inner .logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  background-color: rgba(0, 255, 34, 0.2);
}

.float-menu .float-menu-inner .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.float-menu .float-menu-inner .intro_wrap {
  margin-left: 16px;
  display: flex;
  align-items: center;
  flex: 1 1 0%;
  gap: 0px 30px;
}

.float-menu .float-menu-inner .intro_wrap p.intro {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: -0.54px;
}

.float-menu .float-menu-inner .intro_wrap .thin {
  font-weight: 400;
}

.float-menu .float-menu-inner .btn-downloads {
  margin-left: auto;
  display: flex;
  gap: 20px;
}

.float-menu.show {
  opacity: 1;
}

@media (max-width: 1279px) {
  #container {
    margin-top: 48px;
  }
}
@media (max-width: 768px) {
  #container {
    /*snb*/
  }
  #container .contents-body {
    margin-top: 40px;
    padding-bottom: 150px;
  }
  #container .panel .snb-dropdown:first-child .snb-inner .snb-fake-label {
    margin-bottom: 40px;
  }
  #container .panel[class*=w665] {
    max-width: 100%;
  }
  #container .snb-wrap {
    float: unset;
    width: auto;
    padding: 0 24px;
    /*상단 고정 형태 snb*/
    /*모바일에서 멀티 드롭다운 case*/
  }
  #container .snb-wrap .snb-inner .snb-title {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  #container .snb-wrap.snb-fix .snb-inner .snb-title {
    display: none;
  }
  #container .snb-wrap.snb-fix .snb-inner .snb-menu {
    position: fixed;
    left: 0;
    top: 48px;
    background-color: #FFFFFF;
    box-sizing: border-box;
    width: 100%;
    z-index: 15;
  }
  #container .snb-wrap.snb-fix .snb-inner .snb-menu ul {
    padding: 0 24px;
    display: flex;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    border-bottom: 1px solid #DADADA;
  }
  #container .snb-wrap.snb-fix .snb-inner .snb-menu ul li {
    margin: 0;
  }
  #container .snb-wrap.snb-fix .snb-inner .snb-menu ul li a {
    text-align: center;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0;
    height: 36px;
  }
  #container .snb-wrap.snb-fix .snb-inner .snb-menu ul li a::before {
    display: none;
  }
  #container .snb-wrap.snb-fix .snb-inner .snb-menu ul li a.active {
    color: #131313;
    background-color: transparent;
  }
  #container .snb-wrap.snb-fix .snb-inner .snb-menu ul li a.active::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #131313;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  #container .snb-wrap.snb-fix .snb-inner .snb-menu ul li + li {
    margin-left: 20px;
  }
  #container .snb-wrap.snb-fix .snb-inner .snb-menu ul::-webkit-scrollbar {
    display: none;
  }
  #container .snb-wrap + .inner {
    padding: 0 24px;
  }
  #container .snb-wrap.snb-dropdown {
    width: auto;
  }
  #container .snb-wrap.snb-dropdown .snb-inner {
    position: relative;
  }
  #container .snb-wrap.snb-dropdown .snb-inner .snb-fake-label {
    display: block;
  }
  #container .snb-wrap.snb-dropdown .snb-inner .snb-menu {
    background-color: #FFFFFF;
    border: 1px solid #DADADA;
    border-radius: 4px;
    position: absolute;
    top: 48px;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
    display: none;
  }
  #container .snb-wrap.snb-dropdown .snb-inner .snb-menu ul li {
    margin-top: 0;
  }
  #container .snb-wrap.snb-dropdown .snb-inner .snb-menu ul li a {
    padding: 10px 12px;
  }
  #container .snb-wrap.snb-dropdown .snb-inner .snb-menu ul li button {
    padding-left: 40px;
  }
  #container .snb-wrap.snb-dropdown .snb-inner .snb-menu ul li button::before {
    right: unset;
    left: 12px;
  }
  #container .snb-wrap.snb-dropdown .snb-inner .snb-menu ul li button.active {
    background-color: #F4F4F4;
    color: #131313;
  }
  #container .snb-wrap.snb-dropdown .snb-inner .snb-menu .snb-menu-2deps {
    display: none;
  }
  #container .gom-content-inner-wrap {
    padding-top: 80px;
  }
  #container .gom-content-inner-wrap.first {
    padding-top: 64px;
  }
  #container .gom-content-inner-wrap.full {
    padding-top: 48px;
    padding-bottom: 60px;
    margin-top: 80px;
  }
  #container .gom-content-inner {
    padding-top: 32px;
  }
  #container .gom-use-guide-inner-wrap {
    padding-top: 64px;
  }
  #container .gom-use-guide-inner-wrap .gom-use-guide-wrap {
    position: relative;
    display: block;
    padding: 24px 0;
  }
  #container .gom-use-guide-inner-wrap .gom-use-guide-wrap h2 {
    font-size: 18px;
    line-height: 1.5;
  }
  #container .gom-use-guide-inner-wrap .gom-use-guide-wrap p:nth-of-type(1) {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
  }
  #container .gom-use-guide-inner-wrap .gom-use-guide-wrap .gom-use-guide-img {
    padding-left: 64px;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 16px;
  }
  #container .gom-use-guide-inner-wrap .gom-use-guide-wrap .gom-use-guide-img img {
    width: 64px;
    height: 64px;
  }
  #container .gom-use-guide-inner-wrap .gom-use-guide-wrap::before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: #f8f9ff;
    content: "";
  }
  #container .content-footer {
    padding: 48px 0 56px 0;
  }
  #container .content-footer .gom-title {
    font-size: 24px;
    line-height: 1.5;
  }
  #container .content-footer.marquee-banner {
    padding: 30px 0 40px;
  }
  #container .content-footer.marquee-banner .partners-list .marquee-part {
    gap: 10px 14px;
  }
  #container .content-footer.marquee-banner .partners-list .marquee-part span {
    width: 100px;
    height: 40px;
  }
  #container .content-footer.marquee-banner .partners-list .marquee-part span:nth-child(1), #container .content-footer.marquee-banner .partners-list .marquee-part span:nth-child(2) {
    padding-left: 14px;
  }
  .float-menu .float-menu-inner {
    height: 60px;
    padding: 0px 24px;
  }
  .float-menu .float-menu-inner .logo {
    display: none;
  }
  .float-menu .float-menu-inner .intro_wrap .intro {
    display: none;
  }
  .float-menu .float-menu-inner .btn-downloads .btn-md {
    height: 29px;
    padding: 0 24px;
    font-size: 12px;
    line-height: 1.7;
  }
  .float-menu.show {
    opacity: 1;
  }
}
@media (max-width: 360px) {
  #container {
    /*snb*/
  }
  #container .inner {
    max-width: initial;
    padding-left: 16px;
    padding-right: 16px;
  }
  #container .snb-wrap {
    padding: 0 16px;
  }
  #container .snb-wrap + .inner {
    padding: 0 16px;
  }
}
/* Footer */
#footer-wrap {
  background-color: #000000;
}

#footer {
  position: relative;
  max-width: 1280px;
  padding: 60px 24px 60px 24px;
  margin: 0px auto;
}

#footer * {
  color: #DADADA;
  box-sizing: border-box;
}

#footer .f-logo {
  width: 84px;
  height: 40px;
  flex-shrink: 0;
  text-indent: -9999px;
  overflow: hidden;
  background: url(./../images/layout/logo_f.png) no-repeat center center;
  background-size: cover;
}

#footer .f-notice {
  position: relative;
  display: flex;
  gap: 0px 16px;
  padding: 0px 0;
  height: 0px;
  margin: 0 auto;
  overflow: hidden;
}

#footer .f-notice * {
  line-height: 13px;
  font-size: 14px;
  font-weight: 700;
}

#footer .f-notice h3 {
  font-weight: 500;
  display: inline-flex;
  height: 100%;
  align-items: center;
}

#footer .f-notice ul {
  position: relative;
}

#footer .f-notice li {
  padding: 18px 0;
}

#footer .f-notice::before {
  content: "";
  display: block;
  border-top: 2px solid #484848;
  width: 100%;
  position: absolute;
  top: 0;
}

#footer .f-notice::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  border-bottom: 1px solid #484848;
}

#footer .f-bottom-flex {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}

#footer .f-language {
  display: flex;
  align-items: center;
  gap: 5px;
}

#footer .f-language select {
  width: auto;
  padding: 9px 12px;
  border: 1px solid #DADADA;
  border-radius: 4px;
}

#footer .f-language .form-drop-box {
  width: 160px;
  white-space: nowrap;
}

#footer .f-language .btn-menu {
  position: relative;
  width: 100%;
  font-size: 10px;
  font-weight: 300;
  padding: 10px 40px 10px 24px;
  border: 1px solid #828282;
  border-radius: 29px;
}

#footer .f-language .btn-menu:after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  display: block;
  width: 9px;
  height: 6px;
  background: url(./../images/layout/bullet_f_language.svg);
  transition: transform 0.3s ease;
}

#footer .f-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px 20px;
}

#footer .f-menu > li {
  font-size: 14px;
  font-weight: 600;
}

#footer .f-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px 42px;
  padding: 20px 0;
  border-top: 1px solid #484848;
  border-bottom: 1px solid #484848;
}

#footer .f-info .f--info {
  display: flex;
  align-items: center;
  gap: 40px;
}

#footer .f-info .f--info .f-info-content span {
  margin-right: 15px;
  font-size: 12px;
}

#footer .f-info .f--info .f-info-content span:last-child {
  margin-right: 0;
}

#footer .f-service-all {
  display: none;
}

#footer .f-sns {
  display: flex;
  gap: 0px 16px;
}

#footer .f-sns li {
  line-height: 0;
}

#footer .f-sns li a {
  display: block;
  width: 24px;
  height: 24px;
  text-indent: -9999px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

#footer .f-sns li a.facebook {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cg data-name='그룹 330'%3E%3Cpath fill='%23dadada' d='M10.438 21.88a10.009 10.009 0 0 1-6.01-3.35A10 10 0 0 1 2 12 10.012 10.012 0 0 1 12 2a10.012 10.012 0 0 1 10 10 10 10 0 0 1-2.426 6.529 10 10 0 0 1-6.01 3.349V14.89h2.33l.444-2.89h-2.774v-1.876a1.441 1.441 0 0 1 1.63-1.562h1.261V6.101a15.406 15.406 0 0 0-2.238-.2 3.524 3.524 0 0 0-3.777 3.891v2.2H7.901v2.89h2.539v6.989Z' data-name='빼기 18'/%3E%3C/g%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 1226' opacity='.2'/%3E%3C/svg%3E");
}

#footer .f-sns li a.instagram {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23dadada' d='M16.016 2.5H7.984A5.484 5.484 0 0 0 2.5 7.984v8.032A5.484 5.484 0 0 0 7.984 21.5h8.032c3.732 0 5.23-3.829 5.23-3.829a8.151 8.151 0 0 0 .254-1.655V7.984A5.484 5.484 0 0 0 16.016 2.5Zm3.734 13.657a3.64 3.64 0 0 1-3.64 3.64H7.89a3.64 3.64 0 0 1-3.64-3.64v-8.22a3.64 3.64 0 0 1 3.64-3.64h8.22a3.64 3.64 0 0 1 3.64 3.64Z' data-name='패스 45691'/%3E%3Cpath fill='%23dadada' d='M12 7.118a4.93 4.93 0 1 0 4.93 4.93A4.93 4.93 0 0 0 12 7.118Zm0 8.126a3.2 3.2 0 1 1 3.2-3.2 3.2 3.2 0 0 1-3.2 3.199Z' data-name='패스 45692'/%3E%3Ccircle cx='1.148' cy='1.148' r='1.148' fill='%23dadada' data-name='타원 1148' transform='translate(15.946 5.781)'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 61907' opacity='.2'/%3E%3C/svg%3E");
}

#footer .f-sns li a.twitter {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23dadada' d='M21 6.73a7.377 7.377 0 0 1-2.12.584 3.719 3.719 0 0 0 1.625-2.044 7.359 7.359 0 0 1-2.351.9 3.692 3.692 0 0 0-6.383 2.527 3.836 3.836 0 0 0 .094.841 10.483 10.483 0 0 1-7.613-3.857 3.692 3.692 0 0 0 1.142 4.927 3.637 3.637 0 0 1-1.669-.461v.045a3.7 3.7 0 0 0 2.96 3.625 3.808 3.808 0 0 1-.972.125 3.733 3.733 0 0 1-.7-.065 3.7 3.7 0 0 0 3.449 2.565 7.421 7.421 0 0 1-4.587 1.576 7.925 7.925 0 0 1-.879-.049 10.5 10.5 0 0 0 16.165-8.843l-.011-.478A7.44 7.44 0 0 0 21 6.73Zm0 0' data-name='패스 48'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 6786'/%3E%3C/svg%3E");
}

#footer .f-sns li a.youtube {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23dadada' d='M21.582 7.2a2.513 2.513 0 0 0-1.768-1.78C18.254 5 12 5 12 5s-6.254 0-7.814.421A2.513 2.513 0 0 0 2.418 7.2a28.293 28.293 0 0 0 0 9.69 2.513 2.513 0 0 0 1.768 1.78c1.56.421 7.814.421 7.814.421s6.254 0 7.814-.421a2.513 2.513 0 0 0 1.768-1.78 28.293 28.293 0 0 0 0-9.69ZM9.955 15.019V9.072l5.227 2.974Z' data-name='패스 2337'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 1227' opacity='.2'/%3E%3C/svg%3E");
}

#footer .f-sns li a.blog {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' data-name='Naver blog_24_131313'%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 6786'/%3E%3Cg fill='%23dadada' data-name='그룹 44244'%3E%3Cpath d='M6.381 9.577a.687.687 0 1 0 .687.687.687.687 0 0 0-.687-.687Z' data-name='패스 45655'/%3E%3Cpath d='M13.164 9.506a.739.739 0 1 0 .739.739.739.739 0 0 0-.739-.739Z' data-name='패스 45656'/%3E%3Cpath d='M19.302 2.753h-14.6A2.667 2.667 0 0 0 2.035 5.42v8.668a2.667 2.667 0 0 0 2.667 2.667H9.86l1.754 4.134s.121.358.413.358c.293 0 .413-.358.413-.358l1.754-4.134h5.111a2.667 2.667 0 0 0 2.667-2.667V5.42a2.667 2.667 0 0 0-2.67-2.667ZM8.294 10.415a1.652 1.652 0 0 1-1.647 1.63 1.369 1.369 0 0 1-.991-.42v.286H4.462v-4.92s-.005 0 0 0c.074.012 1.193 0 1.193 0v1.882c.281-.478 1.092-.47 1.092-.47a1.747 1.747 0 0 1 1.547 2.012Zm2.1-1.865v3.369H9.226V8.583c0-.454-.563-.58-.563-.58V6.827a1.615 1.615 0 0 1 1.732 1.723Zm2.768 3.5a1.808 1.808 0 1 1 1.958-1.8 1.885 1.885 0 0 1-1.958 1.797Zm6.4 0a1.666 1.666 0 0 1-1.722 1.712h-.529v-1.109h.319s.731.067.722-1.059c0 0-.143.456-1.168.456a1.539 1.539 0 0 1-1.453-1.523v-.538a1.66 1.66 0 0 1 1.63-1.588 1.189 1.189 0 0 1 1.017.454v-.361h1.184Z' data-name='패스 45657'/%3E%3Cpath d='M17.704 9.518a.723.723 0 1 0 .723.723.722.722 0 0 0-.723-.723Z' data-name='패스 45658'/%3E%3C/g%3E%3C/svg%3E");
}

#footer .f-cscenter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

#footer .f-cscenter .f--cscenter .contact {
  display: flex;
  align-items: center;
  gap: 0px 20px;
}

#footer .f-cscenter .f--cscenter .contact .tel_number {
  font-size: 24px;
  color: #FFFFFF;
  font-weight: 600;
}

#footer .f-cscenter .f--cscenter .contact .btn_support a {
  display: block;
  width: 90px;
  padding: 1px 0px 2px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 51px;
  color: #FFFFFF;
  text-align: center;
  border: 1px solid #FFFFFF;
}

#footer .f-cscenter .f--cscenter .guide {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 300;
}

#footer .f-cscenter .f--cscenter .guide.pc {
  display: block;
}

#footer .f-cscenter .f--cscenter .guide.mo {
  display: none;
}

#footer .f-copyright {
  font-size: 10px;
  font-weight: 600;
}

/* Quick Menu */
aside#quick-menu {
  position: fixed;
  bottom: 35px;
  right: 40px;
  z-index: 13;
}

aside#quick-menu .quick-bnr {
  position: relative;
  margin-bottom: 24px;
}

aside#quick-menu .quick-bnr a {
  display: block;
  border-radius: 10px;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.1);
}

aside#quick-menu .quick-bnr img {
  border-radius: 10px;
}

aside#quick-menu .quick-bnr .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
}

aside#quick-menu ul > li {
  display: flex;
  justify-content: flex-end;
  line-height: 0;
}

aside#quick-menu ul > li + li {
  margin-top: 16px;
}

aside#quick-menu ul > li a.btn { /* 네이밍 교체 예정 */
  display: block;
  line-height: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0px 4px 20px rgba(255, 255, 255, 0.4);
  text-indent: -9999px;
  overflow: hidden;
  background-color: #131313;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px;
}

aside#quick-menu ul > li a.btn.support {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 62787'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)' data-name='그룹 174069'%3E%3Cpath fill='none' stroke='%23dadada' stroke-linejoin='round' stroke-width='1.5' d='M22.023 20.29a10.191 10.191 0 0 1-2.086-3.645A7.454 7.454 0 0 0 21.6 12c0-4.606-4.393-8.34-9.811-8.34S1.976 7.395 1.976 12s4.393 8.338 9.812 8.338a11.069 11.069 0 0 0 5.021-1.184 8.425 8.425 0 0 0 5.214 1.135Z' data-name='패스 51481'/%3E%3Cpath fill='%23dadada' d='M8.8 12a1.1 1.1 0 1 1-1.1-1.1A1.1 1.1 0 0 1 8.8 12' data-name='패스 51482'/%3E%3Cpath fill='%23dadada' d='M13.1 12a1.1 1.1 0 1 1-1.1-1.1 1.1 1.1 0 0 1 1.1 1.1' data-name='패스 51483'/%3E%3Cpath fill='%23dadada' d='M17.4 12a1.1 1.1 0 1 1-1.1-1.1 1.1 1.1 0 0 1 1.1 1.1' data-name='패스 51484'/%3E%3C/g%3E%3C/svg%3E");
}

aside#quick-menu ul > li a.btn.top {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23dadada' stroke-linecap='round' stroke-linejoin='round' d='m4.5 13.5 6-6 6 6' data-name='패스 137'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 316' opacity='.2'/%3E%3C/svg%3E");
}

@media (max-width: 1279px) {
  #footer {
    border-top: 1px solid #777777;
  }
  #footer .f-logo {
    width: 69px;
    height: 33px;
    margin-bottom: 16px;
  }
  #footer .f-menu {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  #footer .f-menu li {
    white-space: nowrap;
  }
  #footer .f-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  #footer .f-info > li {
    font-size: 11px;
    line-height: 16px;
    color: #CCCCCC;
  }
  #footer .f-notice h3 {
    min-width: 58px;
  }
  #footer .f-service-all {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-width: 1px 0px;
    border-style: solid;
    border-color: #777777;
    padding: 17px 24px;
    margin: 30px -24px;
  }
  #footer .f-service-all h3 {
    font-size: 12px;
  }
  #footer .f-service-all .btn-menu {
    position: relative;
    width: 24px;
    height: 24px;
    text-indent: -9999px;
    overflow: hidden;
  }
  #footer .f-service-all .btn-menu:before, #footer .f-service-all .btn-menu:after {
    position: absolute;
    top: 11px;
    left: 4px;
    content: "";
    display: block;
    width: 18px;
    height: 1px;
    background-color: #FFFFFF;
  }
  #footer .f-service-all .btn-menu:after {
    transform: rotate(90deg);
  }
  #footer .f-cscenter {
    display: block;
  }
  #footer .f-cscenter .f--cscenter .contact {
    justify-content: space-between;
  }
  #footer .f-cscenter .f--cscenter .contact .btn_support a {
    border: 1px solid #FFFFFF;
    background-color: transparent;
    color: #FFFFFF;
  }
  #footer .f-cscenter .f--cscenter .guide {
    margin-top: 0;
  }
  #footer .f-cscenter .f--cscenter .guide.pc {
    display: none;
  }
  #footer .f-cscenter .f--cscenter .guide.mo {
    display: block;
  }
  #footer .f-copyright {
    font-weight: 300;
    font-size: 11px;
    line-height: 16px;
    color: #CCCCCC;
    text-align: left;
  }
  /* Quick Menu */
  aside#quick-menu {
    right: 16px;
  }
  aside#quick-menu .quick-bnr {
    margin-bottom: 12px;
  }
  aside#quick-menu ul > li + li {
    margin-top: 12px;
  }
  aside#quick-menu ul > li a.btn {
    width: 44px;
    height: 44px;
  }
  aside#quick-menu ul > li a.btn.support {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 62787'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)' data-name='그룹 174069'%3E%3Cpath fill='none' stroke='%23dadada' stroke-linejoin='round' stroke-width='1.5' d='M22.023 20.29a10.191 10.191 0 0 1-2.086-3.645A7.454 7.454 0 0 0 21.6 12c0-4.606-4.393-8.34-9.811-8.34S1.976 7.395 1.976 12s4.393 8.338 9.812 8.338a11.069 11.069 0 0 0 5.021-1.184 8.425 8.425 0 0 0 5.214 1.135Z' data-name='패스 51481'/%3E%3Cpath fill='%23dadada' d='M8.8 12a1.1 1.1 0 1 1-1.1-1.1A1.1 1.1 0 0 1 8.8 12' data-name='패스 51482'/%3E%3Cpath fill='%23dadada' d='M13.1 12a1.1 1.1 0 1 1-1.1-1.1 1.1 1.1 0 0 1 1.1 1.1' data-name='패스 51483'/%3E%3Cpath fill='%23dadada' d='M17.4 12a1.1 1.1 0 1 1-1.1-1.1 1.1 1.1 0 0 1 1.1 1.1' data-name='패스 51484'/%3E%3C/g%3E%3C/svg%3E");
  }
  aside#quick-menu ul > li a.btn.top {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='none' stroke='%23dadada' stroke-linecap='round' stroke-linejoin='round' d='m4.5 13.5 6-6 6 6' data-name='패스 137'/%3E%3Cpath fill='none' d='M0 0h20v20H0z' data-name='사각형 316' opacity='.2'/%3E%3C/svg%3E");
  }
}
@media (max-width: 768px) {
  #footer .f-cscenter .f--cscenter .contact .tel_number {
    font-size: 14px;
  }
  #footer .f-cscenter .f--cscenter .guide.mo {
    font-size: 10px;
  }
  #footer .f-info {
    align-items: baseline;
  }
  #footer .f-info .f--info {
    display: block;
  }
  #footer .f-info .f--info .f-info-content > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  #footer .f-info .f--info .f-info-content > div + div {
    margin-top: 4px;
  }
  #footer .f-info .f--info .f-info-content span {
    display: block;
    margin-right: 0;
  }
  #footer .f-notice ul li a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    word-wrap: break-word;
    line-height: 16px;
  }
  #footer .f-bottom-flex {
    display: block;
  }
  #footer .f-copyright {
    margin-top: 20px;
  }
  /* Quick Menu */
  aside#quick-menu .quick-bnr {
    display: none;
  }
}
/* 상단 배너 */
#top-banner-wrap {
  height: 48px;
}

#top-banner-wrap + #header-wrap {
  top: 48px;
}

#top-banner-wrap + #header-wrap.fixed {
  top: 0px;
}

.top-banner {
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
  background: #373737;
}

.top-banner .tb-inner {
  position: relative;
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  max-width: 1600px;
  height: 100%;
  margin: 0px auto;
  padding: 0 24px;
  text-align: center;
}

.top-banner .tb-inner a.tb-content {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  overflow: hidden;
}

.top-banner .tb-inner .tb-txt {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

.top-banner .tb-inner button.btn-tb-close {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  display: block;
  width: 24px;
  height: 24px;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-width='1.5' d='m5 5 14 14' data-name='선 465'/%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-width='1.5' d='M19 5 5 19' data-name='선 466'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 283' opacity='.2'/%3E%3C/svg%3E");
}

.top-banner.light .tb-inner .tb-txt {
  color: #131313;
}

.top-banner.light .tb-inner .btn-ghost-w {
  border-color: #131313;
  background-color: #131313;
  color: #FFFFFF;
}

.top-banner.light .tb-inner .btn-tb-close {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-width='1.5' d='m5 5 14 14' data-name='선 465'/%3E%3Cpath fill='none' stroke='%23131313' stroke-linecap='round' stroke-width='1.5' d='M19 5 5 19' data-name='선 466'/%3E%3Cpath fill='none' d='M0 0h24v24H0z' data-name='사각형 283' opacity='.2'/%3E%3C/svg%3E");
}

/* 하단 배너 */
#bottom-banner-wrap {
  height: 650px;
  background: #000000 url(./../images/banner/bottom_banner_visual.png) no-repeat center top;
}

aside#bottom-banner {
  text-align: center;
}

aside#bottom-banner .bb-inner.pc {
  padding: 82px 0px 96px;
}

aside#bottom-banner .bb-inner.pc .eb-more {
  margin-top: 49px;
}

aside#bottom-banner .bb-inner.mo {
  display: none;
}

/* google 광고 배너 */
.ad_banner {
  width: 728px;
  height: 90px;
  margin-bottom: 64px;
  border-radius: 10px;
}

.ad_banner > .gom-bnr {
  display: block;
}

.ad_banner > .gom-bnr img {
  width: 100%;
}

.ad_banner.google-ad-wrap {
  overflow: hidden;
}

.ad_banner.google-ad-wrap.full-banner {
  max-width: 1104px;
  width: auto;
  height: auto;
}

.ad_banner01,
.ad_banner02,
.ad_banner03,
.ad_banner04 {
  border-radius: 10px;
}

.ad_banner01 {
  position: absolute;
  top: 465px;
  left: 50%;
  margin-left: 672px;
  width: 160px;
  height: 600px;
  z-index: 0;
}

.ad_banner02 {
  width: 728px;
  height: 90px;
  margin-top: 64px;
}

.ad_banner03 {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 64px;
}

.gom-news-bnr {
  border-radius: 10px;
  overflow: hidden;
}

.gom-news-bnr .swiper-slide a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.gom-news-bnr img {
  display: block;
  width: 100%;
  border-radius: 10px;
}

.bnr-digital-shop {
  max-width: 728px;
  margin: 48px auto 0 auto;
  border-radius: 8px;
  background: linear-gradient(113.1deg, #579be8 14.95%, #991fe8 85.05%);
  box-sizing: border-box;
}

.bnr-digital-shop .bnr-link {
  display: flex;
  min-height: 90px;
  gap: 12px;
  margin: 0;
  padding: 16px 36px;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.bnr-digital-shop .bnr-link .txt-wrap {
  color: #FFFFFF;
  font-weight: 700;
  text-align: left;
}

.bnr-digital-shop .bnr-link > [class^=btn-] {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

@media (max-width: 1440px) {
  /* google 광고 배너 */
}
@media (max-width: 1279px) {
  /* 상단 배너 */
  #top-banner-wrap {
    height: 37px;
  }
  #top-banner-wrap + #header-wrap {
    top: 37px;
  }
  .top-banner {
    width: 100%;
    background-position: right top;
  }
  .top-banner.only-pc {
    display: none;
  }
  .top-banner.only-mo {
    display: block;
  }
  .top-banner .tb-inner .tb-txt {
    font-size: 12px;
    line-height: 1.7;
    line-height: 37px;
  }
  .top-banner .tb-inner button.btn-tb-close {
    right: 24px;
    width: 16px;
    height: 16px;
    background-size: 100%;
  }
  /* 하단 배너 */
  #bottom-banner-wrap {
    height: auto;
    background: #000000;
  }
  aside#bottom-banner {
    text-align: center;
  }
  aside#bottom-banner .bb-inner.pc {
    display: none;
  }
  aside#bottom-banner .bb-inner.mo {
    display: block;
    padding: 12px 24px 20px;
  }
  aside#bottom-banner .bb-inner.mo .bb_content img {
    width: 100%;
    height: auto;
  }
  aside#bottom-banner .bb-inner.mo .bb-more {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  #top-banner-wrap + #header-wrap.fixed + #container .snb-wrap.snb-fix .snb-inner .snb-menu {
    top: 48px;
  }
  #top-banner-wrap + #header-wrap.fixed + #container .tab-underline {
    top: 48px;
  }
  #top-banner-wrap + #header-wrap + #container .snb-wrap.snb-fix .snb-inner .snb-menu {
    top: 85px;
  }
  #top-banner-wrap + #header-wrap + #container .tab-underline {
    top: 85px;
  }
  /* google 광고 배너 */
  .ad_banner {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
  }
  .ad_banner01 {
    display: none;
  }
  .ad_banner02 {
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-top: 40px;
  }
  .ad_banner03 {
    margin-top: 40px;
  }
  .bnr-digital-shop {
    margin: 48px auto 0 auto;
  }
  .bnr-digital-shop .bnr-link {
    flex-direction: column;
    padding: 16px 20px;
  }
  .bnr-digital-shop .bnr-link .txt-wrap {
    font-size: 14px;
    line-height: 1.6;
  }
  .bnr-digital-shop .bnr-link > [class^=btn-] {
    height: 29px;
    padding: 0 10px;
  }
}