@charset "UTF-8";
/* font */
@import url("https://cdn.jsdelivr.net/gh/moonspam/NanumSquare@1.0/nanumsquare.css");
@import url("https://fonts.googleapis.com/css2?family=Nanum+Brush+Script&family=Nanum+Myeongjo&display=swap");
@import url("https://hangeul.pstatic.net/hangeul_static/css/nanum-myeongjo.css");
/* 나눔명조 */
@import url('https://webfontworld.github.io/pretendard/Pretendard.css');
@import url('https://cdn.jsdelivr.net/npm/xeicon@2.3.3/xeicon.min.css');


@font-face {
  font-family: 'yg-jalnan';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_four@1.2/JalnanOTF00.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'JalnanGothic';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_231029@1.1/JalnanGothic.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'NanumSquareR';
  font-style: normal;
  font-weight: 400;
  src: local('Nanum Square Regular'),
    local('NanumSquareR'),
}

/* === RESET CSS === */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


html {
  color: #2a2a2a;
  font-family: 'Pretendard';
  font-size: 16px;
  line-height: 1;
  font-weight: normal;
  /* 화면 클릭 시 생기는 파란 배경색 없애기 */
  -webkit-tap-highlight-color: transparent; 
  /* 화면 클릭 시 생기는 파란 배경색 없애기 */
}

body {
  position: relative;
  min-width: 320px;
}

textarea {
  resize: none;
}

fieldset,
img {
  border: 0;
}

img {
  width: auto;
  max-width: 100% !important;
  height: auto;
  vertical-align: top !important;
}

li,
ol,
ul {
  list-style: none;
}

address,
em,
i {
  font-style: normal;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

th,
em {
  font-style: normal;
  font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

input,
select,
textarea,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  background: transparent;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

legend,
caption {
  visibility: hidden;
  overflow: hidden;
  width: 0 !important;
  height: 0 !important;
  font-size: 0;
  line-height: 0;
}

a:focus,
button:focus {
  outline: 1px solid #333;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: 0;
}

button:disabled {
  cursor: default;
}

button:disabled:hover {
  background-color: #a1a1a1 !important;
  border-color: #a1a1a1 !important;
}

button {
  border: none;
  cursor: pointer;
}

input[type="password"]::-ms-reveal {
    display: none;
}

.blind {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
}

.ft-noto {
  font-family: "Noto Sans KR" !important;
}

/* .ft-mj {
  font-family: "Nanum Myeongjo", serif !important;
} */

.layout {
  display: flex;
  align-items: center;
  gap: 20px;
}

.layout .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .layout {
    flex-direction: column;
  }

  .layout .btn {
    font-size: 16px;
    height: auto;
  }
}

/* === UTILITIES === */
/* utilities */
.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-flex.center{
  align-items: center !important;
  gap:10px;
}

.d-flex.start{
  align-items: flex-start !important;
  gap:10px;
}


.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.border {
  border: 1px solid #ddd !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #ddd !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right {
  border-right: 1px solid #ddd !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #ddd !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left {
  border-left: 1px solid #ddd !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-black {
  border-color: #111 !important;
}

.border-basic {
  border-color: #333 !important;
}

.border-cont {
  border-color: #555 !important;
}

.border-gray {
  border-color: #777 !important;
}

.border-border {
  border-color: #ddd !important;
}

.border-point {
  border-color: #00b760 !important;
}

.border-point2 {
  border-color: #9a3175 !important;
}

.border-blur {
  border-color: #eaeaea !important;
}

.border-white {
  border-color: #fff !important;
}

.border-red {
  border-color: #a02013 !important;
}

.border-yellow {
  border-color: #dea82a !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.br-0 {
  border-radius: 0 !important;
}

.br-10 {
  border-radius: 10px !important;
}

.br-20 {
  border-radius: 20px !important;
}

.br-30 {
  border-radius: 30px !important;
}

.br-40 {
  border-radius: 40px !important;
}

.br-50 {
  border-radius: 50px !important;
}


.w-10 {
  width: 10% !important;
}

.w-25 {
  width: 25% !important;
}

.w-40 {
  width: 40% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-5 {
  margin: 5px !important;
}

.m-10 {
  margin: 10px !important;
}

.m-15 {
  margin: 15px !important;
}

.m-20 {
  margin: 20px !important;
}

.m-25 {
  margin: 25px !important;
}

.m-30 {
  margin: 30px !important;
}

.m-40 {
  margin: 40px !important;
}

.m-50 {
  margin: 50px !important;
}

.m-60 {
  margin: 60px !important;
}

.m-auto {
  margin: auto !important;
}


.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}


.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}


.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-5 {
  margin-right: 5px !important;
  margin-left: 5px !important;
}

.mx-10 {
  margin-right: 10px !important;
  margin-left: 10px !important;
}

.mx-15 {
  margin-right: 15px !important;
  margin-left: 15px !important;
}

.mx-20 {
  margin-right: 20px !important;
  margin-left: 20px !important;
}

.mx-25 {
  margin-right: 25px !important;
  margin-left: 25px !important;
}

.mx-30 {
  margin-right: 30px !important;
  margin-left: 30px !important;
}

.mx-40 {
  margin-right: 40px !important;
  margin-left: 40px !important;
}

.mx-50 {
  margin-right: 50px !important;
  margin-left: 50px !important;
}

.mx-60 {
  margin-right: 60px !important;
  margin-left: 60px !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.my-10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.my-15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

.my-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.my-25 {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}

.my-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.my-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.my-50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.my-60 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

.my-70 {
  margin-top: 70px !important;
  margin-bottom: 70px !important;
}

.my-80 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}


.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.ml-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-5 {
  padding: 5px !important;
}

.p-10 {
  padding: 10px !important;
}

.p-15 {
  padding: 15px !important;
}

.p-20 {
  padding: 20px !important;
}

.p-25 {
  padding: 25px !important;
}

.p-30 {
  padding: 30px !important;
}

.p-40 {
  padding: 40px !important;
}

.p-50 {
  padding: 50px !important;
}

.p-60 {
  padding: 60px !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-5 {
  padding-right: 5px !important;
  padding-left: 5px !important;
}

.px-10 {
  padding-right: 10px !important;
  padding-left: 10px !important;
}

.px-15 {
  padding-right: 15px !important;
  padding-left: 15px !important;
}

.px-20 {
  padding-right: 20px !important;
  padding-left: 20px !important;
}

.px-25 {
  padding-right: 25px !important;
  padding-left: 25px !important;
}

.px-30 {
  padding-right: 30px !important;
  padding-left: 30px !important;
}

.px-40 {
  padding-right: 40px !important;
  padding-left: 40px !important;
}

.px-50 {
  padding-right: 50px !important;
  padding-left: 50px !important;
}

.px-60 {
  padding-right: 60px !important;
  padding-left: 60px !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.py-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.py-15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.py-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.py-25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

.py-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.py-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.py-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: 100 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-rage {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: 900 !important;
}

.fw-mj {
  font-family: 'NanumMyeongjo' !important;
}

.align-left,
.al {
  text-align: left !important;
}

.align-right,
.ar {
  text-align: right !important;
}

.align-center,
.ac {
  text-align: center !important;
}

@media screen and (max-width: 1024px) {
  .top_ac {
    margin-top: 14px !important;
    font-size: 14px !important;
    font-weight: bold;
  }
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-black {
  color: #111 !important;
}

.text-basic {
  color: #333 !important;
}

.text-cont {
  color: #555 !important;
}

.text-gray {
  color: #777 !important;
}

.text-border {
  color: #ddd !important;
}

.text-point {
  color: #368556 !important;
}

.text-point2 {
  color: #9a3175 !important;
}

.text-blur {
  color: #eaeaea !important;
}

.text-white {
  color: #fff !important;
}

.text-red {
  color: #a02013 !important;
}

.text-yellow {
  color: #dea82a !important;
}

.text-black-50 {
  color: rgba(17, 17, 17, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  color: inherit !important;
}

.bg-black {
  background-color: #111 !important;
}

.bg-basic {
  background-color: #222 !important;
}

.bg-cont {
  background-color: #666 !important;
}

.bg-gray {
  background-color: #f6f6f6 !important;
}

.bg-border {
  background-color: #ddd !important;
}

.bg-point {
  background-color: #00b760 !important;
}

.bg-blur {
  background-color: #eee !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-red {
  background-color: #ec1b1b !important;
}

.bg-yellow {
  background-color: #dea82a !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.inline {
  display: contents;
}

.half10 {
  width: 10% !important;
}

.half20 {
  width: 20% !important;
}

.half25 {
  width: 25% !important;
}

.half30 {
  width: 30% !important;
}

.half40 {
  width: 40% !important;
}

.half {
  width: 50% !important;
}

/* 형광펜으로 반만 밑줄 그은 효과 */
.half_highlight {
  background: linear-gradient(to top, #81d9ee 50%, transparent 50%);
  padding: 0 10px;
}

.pc_v {
  display: block !important;
}

.pc_v2 {
  display: block !important;
}

.mo_v {
  display: none !important;
}

.mo_v2 {
  display: none !important;
}


@media screen and (max-width: 767px) {
  .pc_v2 {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc_v {
    display: none !important;
  }

  .mo_v {
    display: block !important;
  }
}



@media screen and (max-width: 520px) {
  .m_center {
    text-align: center !important;
  }  
  .mo_v2 {
    display: block !important;
  }
}





/* === COMMON MODULES === */

img.logo {  
  height: 54px;
}

h3.h3-title,
.h3-title.h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

h3.h3-title i,
.h3-title.h3 i {
  display: inline-block;
  transform: scale(0.8, 0.8);
}

.table.row-table {
  table-layout: fixed;
  width: 100%;
}

.table.row-table td .d-flex>button,
.table.row-table td .d-flex>a {
  margin-left: 0.5rem;
}

.table>thead {
  vertical-align: bottom;
}

.table.row-table tr:first-child th,
.table.row-table tr:first-child td {
  border-top: 1px solid #666;
}



.table.row-table th {
  font-weight: 500;
  background: #f4f4f4;
}

.table.row-table td {
  font-weight: 500;
}

.table.row-table th,
.table.row-table td {
  height: 52px;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
  line-height: 1.2;
}

.table> :not(caption)>*>* {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}


@media screen and (max-width: 767px) {
  .table.row-table th {

    word-break: keep-all;
  }

  .table.row-table td {

    padding: 0.5rem;
    word-break: keep-all;
  }
}




/* accordion */
.accordion-wrap {
  position: relative;
}

.accordion-wrap ul.lists {
  border-top: 1px solid #333;
}

.accordion-wrap ul li  .accord-title {
  display: block;
  position: relative;
}

.accordion-wrap ul li  .accord-title .btn-toggle {
  display: block;
  position: relative;
  width: 100%;
  padding: 20px 50px 20px 46px;
  text-align: left;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
  font-weight: 500;
  word-break: keep-all;
  color: #333;
  border-bottom: solid 1px #e6e6e6;
}

@media screen and (max-width: 767px) {
  .accordion-wrap ul li  .accord-title .btn-toggle {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 1024px) {
  .accordion-wrap ul li  .accord-title .btn-toggle {
    padding: 15px 50px 15px 38px;
  }
}

.accordion-wrap ul li  .accord-title .btn-toggle::before {
  content: 'Q';
  position: absolute;
  top: 20px;
  left: 20px;
  color: #00b760;
  font-size: 24px;
  font-weight: 800;
}

@media screen and (max-width: 1024px) {
  .accordion-wrap ul li  .accord-title .btn-toggle::before {
    top: 15px;
    left: 12px;
    font-size: 20px;
  }
}

.accordion-wrap ul li  .accord-title .btn-toggle::after {
  content: ' ';
  position: absolute;
  top: 50%;
  right: 25px;
  width: 10px;
  height: 10px;
  border: 2px solid #333;
  border-top: none;
  border-left: none;
  margin-top: -8px;
  transform: rotate(45deg);
  transition: all 0.2s ease-out;
}

@media screen and (max-width: 1024px) {
  .accordion-wrap ul li  .accord-title .btn-toggle::after {
    right: 17px;
  }
}

.accordion-wrap ul li .open .accord-title .btn-toggle::after {
  margin-top: -3px;
  transform: rotate(225deg);
}

.accordion-wrap ul li  .accord-cont {
  display: none;
  position: relative;
  padding: 40px;
  padding-left: 70px;
  background: #f5f5f5;
  color: #555;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .accordion-wrap ul li  .accord-cont {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 1024px) {
  .accordion-wrap ul li  .accord-cont {
    padding: 15px 20px 15px 58px;
  }
}

.accordion-wrap ul li  .accord-cont::before {
  content: 'A';
  position: absolute;
  top: 40px;
  left: 40px;
  color: #000;
  font-size: 24px;
  font-weight: 800;
}

@media screen and (max-width: 1024px) {
  .accordion-wrap ul li  .accord-cont::before {
    top: 15px;
    left: 12px;
    font-size: 20px;
  }
}



/* rainbow 컨텐츠 배경 */

.accordion-wrap.rainbow ul.lists{
  border:none;
}

.accordion-wrap.rainbow .accord-title {
  color: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
}

.accordion-wrap.rainbow ul.lists li:nth-child(1) .accord-title{
  background: linear-gradient(to right, #fca32a, #ff3e23, #c01d6d);
}

.accordion-wrap.rainbow ul.lists li:nth-child(2) .accord-title{
  background: linear-gradient(to right, #f7892f, #ff3218, #665398);
}


.accordion-wrap.rainbow ul.lists li:nth-child(3) .accord-title{
  background: linear-gradient(to right, #fe6025, #ce1256, #08a2d8);
}

.accordion-wrap.rainbow ul.lists li:nth-child(4) .accord-title{
  background: linear-gradient(to right, #ff0027, #90417a, #00c6f4);
}

.accordion-wrap.rainbow ul.lists>li .accord-title .btn-toggle{
  color:#fff;
  border:none;
}

.accordion-wrap.rainbow ul.lists li.open .accord-title{
  background: #e6e7e8;
}

.accordion-wrap.rainbow ul.lists>li.open .accord-title .btn-toggle{
  color:#000;
  font-weight: bold;
}

.accordion-wrap.rainbow ul.lists>li.open .accord-title .btn-toggle::before,
.accordion-wrap.rainbow ul.lists>li.open .accord-title .btn-toggle::after{
  border-color:#000;
}

.accordion-wrap.rainbow ul.lists>li.open .accord-title .btn-toggle::after{
  margin-top: -5px;
  transform: rotate(225deg);
}



.accordion-wrap.rainbow .accord-title .btn-toggle::after {
  border-color: #fff;
  right: 35px;
  top: 35px;
}

.accordion-wrap.rainbow .accord-title .btn-toggle::before{
  left: unset;
  top: 18px;
  right: 25px;
  width: 30px;
  height: 30px;
  display: block;
  border: solid 2px #fff;
  border-radius: 100%;
}

.accordion-wrap.rainbow .accord-title .btn-toggle::before,
.accordion-wrap.rainbow .accord-cont::before {
  content: '';
}

.accordion-wrap.rainbow .accord-cont {
  background: #fff !important;
  border: none;
  padding: 20px 0;
  font-size: 16px;
  color: #333;
  border-radius: 0 0 10px 10px;
}


@media screen and (max-width: 1024px) {
  .accordion-wrap.rainbow .accord-title .btn-toggle::after{
    right: 25px;
    top: 27px;
  }

  .accordion-wrap.rainbow .accord-title .btn-toggle::before{
    top: 10px;
    right:15px;
  }
}


@media screen and (max-width: 520px) {
  .container.cate01 .skin-type.bg-none{
    border-radius: 0;
  }
  .accordion-wrap.rainbow .accord-title{
    width: 90%;
    margin: 20px auto;
  }
  .accordion-wrap.rainbow ul li .accord-title .btn-toggle {
    padding: 20px 20px 50px 20px;
    font-size:18px;
    text-align: center;
}
  .accordion-wrap.rainbow .accord-title .btn-toggle::before{
    border-width: 1px;
    right: unset;
    top: unset;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 10px;
  }
  .accordion-wrap.rainbow .accord-title .btn-toggle::after{
    right: unset;
    top: unset;
    left: 50%;
    margin: 0;
    transform: translate(-50%, 0) rotate(45deg);
    bottom: 22px;
  }

  .accordion-wrap.rainbow ul.lists>li.open .accord-title .btn-toggle::after{
    transform: translate(-50%, 0) rotate(225deg);
    bottom: 19px;
  }

}



.accord-cont .subscribe-lists ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  overflow: auto;
  overflow-x: hidden;
  gap:20px;
}


.accord-cont  .subscribe-lists ul > li {
  gap: 10px;
  background: none;
  flex:1;
}

.accord-cont  .subscribe-lists ul > li p.desc{
  margin-top:20px;
}

.accord-cont  .subscribe-lists ul i{
  align-self: center;
}




.accord-cont  .subscribe-lists ul > li h3.title-sub{
  font-weight: bold;
  font-size:20px;
  color:#000;
  margin-bottom: 30px;
}

.accord-cont  .subscribe-lists ul > li > h2.title-sub{
  font-weight: bold;
  color:#000;
  font-size:28px;
  margin-bottom: 30px;
}


.accord-cont .subscribe-lists ul > li ol{
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: space-around;
  overflow: auto;
  overflow-x: hidden;
  gap:1px;
  border: solid 1px #ddd;
  border-radius: 10px;
  padding:2px;
  width:100%;
}

.accord-cont  .subscribe-lists ul > li ol.active{
  position: relative;
  background: linear-gradient(to right, #fca32a, #ff3e23, #c01d6d, #3399ff, #33ccff);
  clip-path: inset(0 round 15px);
  padding: 2px;
}

.accord-cont  .subscribe-lists ul > li ol li{
  position: relative;
  display: flex;
  flex-direction: column;
  border-right: solid 1px #ddd;
  border-radius: 0;
  align-items: center;
  flex-basis: 100%;
  padding: 10px;
  gap: 10px;
  background: none;
  border: none;
  width: 100%;
  height: 100%;
  flex: 1;
}

.accord-cont  .subscribe-lists ul > li > ol li {
  flex-direction: column;
  border-right: solid 1px #ddd;
  border-radius: 0;
  background: #fff;
  height: 100px;
  justify-content: center;
}

.accord-cont .subscribe-lists ul > li > ol li:first-child{
  border-radius: 10px 0 0 10px;
}
.accord-cont  .subscribe-lists ul > li > ol li:nth-child(2){
  border-radius: 0 ;
}
.accord-cont  .subscribe-lists ul > li > ol li:last-child{
  border:none;
  border-radius: 0 10px 10px 0;
}


.accord-cont  .subscribe-lists ul > li > ol li p{
  color:#8b8b8b;
}

.accord-cont  .subscribe-lists ul >  li > ol  > li em {
  font-size: 23px;
  font-weight: bold;
  color:#000;
}

@media screen and (max-width: 767px) {
  .accord-cont  .subscribe-lists ul >  li > ol  > li em.small {
    font-size: 17px; 
  }
}

@media screen and (max-width: 767px) {
  .accord-cont  .subscribe-lists ul > li h3.title-sub{
    font-size:19px;
    line-height: 1.2;
  }

  .accord-cont  .subscribe-lists ul > li > h2.title-sub{
    font-size:22px;
    line-height: 1.2;
  }

  .accord-cont  .subscribe-lists ul{
    flex-direction: column;
    align-items: center;
  }
  .accord-cont  .subscribe-lists ul > li{
    width: 100%;
  }
  .accord-cont  .subscribe-lists ul i{
    transform: rotate(90deg);
  }
}


/* check-wrap */
.check-wrap {
  position: relative;
}

.check-wrap ul.lists {
  border-top: 1px solid #333;
}

.check-wrap ul.lists>li {
  position: relative;
}

.check-wrap ul.lists>li .chk-wrap {
  position: absolute;
  top: 0;
  padding: 15px 0;
  z-index: 1;
}

.check-wrap ul.lists>li .accord-title {
  display: block;
  position: relative;
}

.check-wrap ul.lists>li input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


.check-wrap ul.lists>li input+label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding-left: 30px;
  color: #737373;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
  user-select: none;
  vertical-align: top;
}

.check-wrap ul.lists>li input[type="checkbox"]:checked+label::before {
  border-color: #368556;
  background: #368556;
}


.check-wrap ul.lists>li .accord-title .btn-toggle {
  display: block;
  position: relative;
  width: 100%;
  padding: 15px 40px;
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
  font-weight: 500;
  word-break: keep-all;
  color: #333;
  border-bottom: solid 1px #e6e6e6;
}

@media screen and (max-width: 1024px) {
  .check-wrap ul.lists>li .accord-title .btn-toggle {
    padding: 15px 25px 15px 30px;
  }
}

@media screen and (max-width: 767px) {
  .check-wrap ul.lists>li .accord-title .btn-toggle {
    font-size: 14px;
    line-height: 22px;
  }
}


.check-wrap ul.lists>li .accord-title .btn-toggle::before {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #00b760;
  font-size: 24px;
  font-weight: 800;
}

@media screen and (max-width: 1024px) {
  .check-wrap ul.lists>li .accord-title .btn-toggle::before {
    top: 15px;
    left: 12px;
    font-size: 20px;
  }
}

.check-wrap ul.lists>li .accord-title .btn-toggle::after {
  content: ' ';
  position: absolute;
  top: 50%;
  right: 15px;
  width: 10px;
  height: 10px;
  border: 2px solid #333;
  border-top: none;
  border-left: none;
  margin-top: -8px;
  transform: rotate(45deg);
  transition: all 0.2s ease-out;
}

@media screen and (max-width: 1024px) {
  .check-wrapn-wrap ul.lists>li .accord-title .btn-toggle::after {
    right: 17px;
  }
}

.check-wrap ul.lists>li.open .accord-title .btn-toggle::after {
  margin-top: -3px;
  transform: rotate(225deg);
}

.check-wrap ul.lists>li .accord-cont {
  display: none;
  position: relative;
  padding: 20px;
  /* padding-left: 70px; */
  background: #eaeaea;
  color: #555;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .check-wrap ul.lists>li .accord-cont {
    font-size: 11px;
    line-height: 22px;
  }
}

@media screen and (max-width: 1024px) {
  .check-wrap ul.lists>li .accord-cont {
    padding: 10px;
  }
}

.check-wrap ul.lists>li .accord-cont::before {
  position: absolute;
  top: 40px;
  left: 40px;
  color: #000;
  font-size: 24px;
  font-weight: 800;
}

@media screen and (max-width: 1024px) {
  .check-wrap ul.lists>li .accord-cont::before {
    top: 15px;
    left: 12px;
    font-size: 20px;
  }
}


/* board-wrap */
.boardview-wrap {
  border-top: 1px solid #333;
}

.boardview-wrap .board-head {
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.boardview-wrap .board-head .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.boardview-wrap .board-head .tit {
  padding: 30px 40px;
  font-size: 24px !important;
  line-height: 32px;
  letter-spacing: -0.5px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-head .tit {
    font-size: 20px;
    line-height: 28px;
  }
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-head .tit {
    padding: 20px;
  }
}

.boardview-wrap .board-head .star {
  color: #ef3745;
}

.boardview-wrap .board-head .info {
  padding: 0 40px 20px;
  font-size: 0;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-head .info {
    padding: 0 20px 10px;
  }
}

.boardview-wrap .board-head .info li:first-of-type {
  font-weight: bold;
  color: #333;
}

.boardview-wrap .board-head .info li {
  display: inline-block;
  vertical-align: top;
  color: #ccc;
  font-size: 14px;
  line-height: 22px;

}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-head .info li {
    font-size: 13px;
  }
}

.boardview-wrap .board-head .info li::before {
  content: ' ';
  display: inline-block;
  vertical-align: top;
  width: 1px;
  height: 12px;
  margin: 4px 15px 0;
  background: #ddd;
}

.boardview-wrap .board-head .info li:first-child::before {
  display: none;
}

.boardview-wrap .board-content {
  padding-top: 30px;
  border-bottom: 1px solid #ddd;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-content {
    padding-top: 20px;
  }
}

.boardview-wrap .board-content .img {
  margin: 60px 0;
}

@media screen and (max-width: 1024px) {
  .boardview-wrap .board-content .img {
    margin: 50px 0;
  }
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-content .img {
    margin: 30px 0;
  }
}

.boardview-wrap .board-content .img:first-child {
  margin-top: 0;
}

.boardview-wrap .board-content .cont {
  padding: 0 40px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
  color: #314046;
}

.boardview-wrap .board-content .cont img {
  /*display: block;*/
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-content .cont {
    font-size: 14px !important;
    line-height: 22px;
  }

  .boardview-wrap .board-content .cont p {
    font-size: 14px !important;
  }

  .boardview-wrap .board-content .cont li {
    font-size: 14px !important;
  }

  .boardview-wrap .board-content .cont .text-bg {
    font-size: 15px !important;
  }

  .boardview-wrap .board-content .cont .mt-20 {
    font-size: 15px !important;
  }

  .boardview-wrap .board-content .cont img {
	width: 100%;
  }

  .boardview-wrap .comment_cont {
    font-size:14px !important;
	line-height:22px !important;
  }
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-content .cont {
    padding: 0px;
  }
}

.boardview-wrap .board-content .cont:last-child {
  padding-bottom: 60px;
}

@media screen and (max-width: 1024px) {
  .boardview-wrap .board-content .cont:last-child {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-content .cont:last-child {
    padding-bottom: 30px;
  }
}

.boardview-wrap .board-content .files {
  margin-top: 60px;
  padding: 15px 40px;
  border-top: 1px solid #ddd;
}

.boardview-wrap .board-content .files::after {
  content: " ";
  display: block;
  clear: both;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-content .files {
    margin-top: 40px;
    padding: 10px 20px;
  }
}

.boardview-wrap .board-content .files .tit {
  font-family: 'Pretendard' !important;
  float: left;
  font-size: 16px !important;
  line-height: 24px;
  letter-spacing: -0.3px;
  color: #111;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-content .files .tit {
    font-size: 14px;
    line-height: 22px;
  }
}

.boardview-wrap .board-content .files .file-lists {
  margin-left: 100px;
  padding: 1px 0;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-content .files .file-lists {
    margin-left: 80px;
    padding: 0;
  }
}

.boardview-wrap .board-content .files .file-lists li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-content .files .file-lists li {
    display: block;
    margin-top: 5px;
  }

  .boardview-wrap .board-content .files .file-lists li:first-child {
    margin-top: 0;
  }
}

.boardview-wrap .board-content .files .file-lists li a {
  display: block;
  font-size: 14px;
  line-height: 22px;

  color: #a3a3a3;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-content .files .file-lists li a {
    font-size: 13px;
  }
}

@media screen and (min-width: 1025px) {
  .boardview-wrap .board-content .files .file-lists li a:hover {
    text-decoration: underline;
  }
}

/* 댓글기능 */

.boardview-wrap .comment-wrap {
  position: relative;
  padding: 15px 40px;
  border-bottom: 1px solid #ddd;
}


@media screen and (max-width: 767px) {
  .boardview-wrap .comment-wrap {
    padding: 10px 20px;
  }
}


.boardview-wrap .comment-wrap h2 {
  margin: 10px 0;
  font-size: 18px;
}

.boardview-wrap .commnet {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.boardview-wrap .commnet input {
  flex: 2;
}

.boardview-wrap .commnet textarea {
  flex: 8;

}

.boardview-wrap .commnet button {
  flex: 1;
}

.board-content .cont .event_product {
  position: relative;
  background: url(/_image/img/event_bg01.png) center center / cover no-repeat;
  width: 100% !important;
  padding: 50px;
}

.board-content .cont .event_product h1 {
  font-family: 'JalnanGothic';
  font-size: 40px;
  display: block;
  margin: 30px 0;
  line-height: 1.2;
}

.board-content .cont .event_product h2.f-bg {
  font-family: 'yg-jalnan';
  color: #fff;
  background: #526B58;
  padding: 20px 40px;
  border-radius: 10px;
  width: fit-content;
  display: block;
  margin: 20px auto;
  font-size: 40px;
}

.board-content .cont .event_product h2 {
  font-family: 'JalnanGothic';
  padding: 20px;
  border-radius: 10px;
  width: fit-content;
  display: block;
  margin: 0 auto;
  font-size: 40px;
  text-align: center;
  line-height: 1.5;
}


.board-content .cont .event_product .worry {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  border-radius: 30px;
  width: fit-content;
  margin: 0 auto;
}

.board-content .cont .event_product .worry::before {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  width: 100%;
  height: 50%;
  top: 50%;
  left: 50%;
  border-radius: 50px;
  z-index: 0;
  transform: translate(-50%, -50%);
}

.board-content .cont .event_product .worry p {
  position: relative;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  border-radius: 50px;
  width: fit-content;
  padding: 15px 0px 15px 50px;
  flex-direction: column;
  z-index: 1;
}

.board-content .cont .event_product .eye {
  font-size: 20px;
  font-weight: bold;
  color: #848484;
  margin: 25px 20px
}


.board-content .cont .event_product .product_desc {
  font-size: 20px;
  color: #626262;
}

.board-content .cont .event_product .recruitment {
  margin: 20px 0;
  position: relative;
}

.board-content .cont .event_product .period {
  position: relative;
}

.board-content .cont .event_product .period em,
.board-content .cont .event_product .participate em {
  z-index: 1;
  display: inline-block;
  position: relative;
  background: #323F35;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
}

.board-content .cont .event_product .period .desc,
.board-content .cont .event_product .participate .desc {
  position: relative;
  background: #fff;
  width: fit-content;
  margin: 0 auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.3);
  z-index: 0;
  margin-top: -20px;
}

.board-content .cont .event_product .period .desc .text-bg {
  background: #ffd5d5;
  display: block;
  padding: 0 10px;
  border-radius: 5px;
}


.board-content .cont .event_product .participate .desc {
  width: 100% !important;
}

.board-content .cont .event_product .participate ul {
  position: relative;
  display: flex;
}

.board-content .cont .event_product .participate ul li {
  flex: 1;
}

.board-content .cont .event_product .participate ul li img {
  margin: 0 auto;
}

.board-content .cont .event_product .chance2 {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 30px;
}



.chance2 .review_desc {
  position: relative;
  display: flex;
  padding: 20px;
  flex: 2;
  background: #FFFCF6;
  border-radius: 50px;
}

.chance2 .review_desc>div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}


.chance2 .review_desc p em {
  background: #E8F3EB;
  padding: 0 5px;
  border-radius: 5px;
}

.chance2 .review_desc ul li em {
  background: #343434;
  color: #fff;
  padding: 1px 10px;
  margin-right: 5px;
  display: inline-block;
  text-align: center;
  border-radius: 100%;
  font-size: 14px;
}

.chance2 .review_rank {
  position: relative;
  background: #FFFCF6;
  border-radius: 20px;
  display: flex;
  padding: 20px;
  border-radius: 50px;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.chance2 .review_rank ol li {
  margin-bottom: 20px;
}

.chance2 .review_rank ol li em {
  padding: 5px 15px;
  color: #333;
  margin-right: 5px;
  border-radius: 20px;
}

.chance2 .review_rank ol li:first-child em {
  background: #DFDF;
}

.chance2 .review_rank ol li:nth-child(2) em {
  background: #DFDFDF;
}

.chance2 .review_rank ol li:nth-child(3) em {
  background: #E8F3EB;
}

.event_product_foot {
  position: relative;
  background: #97A79B;
  padding: 30px;
}

.event_product_foot>a {
  background: #262626;
  color: #fff;
  font-weight: bold;
  font-size: 40px;
  padding: 30px 50px;
  border-radius: 50px;
  display: block;
  width: fit-content;
  margin: 0 auto;
}


.event_product_foot .btn-group a {
  background: #fff;
  padding: 15px 30px;
  border-radius: 20px;
}


@media screen and (max-width: 1024px) {
  .board-content .cont .event_product {
    padding: 16px !important;
  }

  .board-content .cont .event_product h1 {
    font-size: 20px !important;
    margin: 10px 0 !important;
  }

  .board-content .cont .event_product h2.f-bg {
    padding: 5px 20px !important;
    font-size: 20px !important;
    margin: 0 auto !important;
  }

  .board-content .cont .event_product .worry {
    flex-direction: column;
    align-items: center;
  }

  .board-content .cont .event_product .worry p {
    margin-top: 20px;
    padding: 0 !important;
    font-size: 14px;
  }

  .board-content .cont .event_product .eye,
  .board-content .cont .event_product .product_desc {
    font-size: 16px !important;
  }

  .board-content .cont .event_product h2 {
    font-size: 20px !important;
  }

  .board-content .cont .event_product .period .desc,
  .board-content .cont .event_product .participate .desc {
    padding: 20px !important;
  }

  .board-content .cont .event_product .participate ul {
    margin-top: 20px !important;
    flex-direction: column;
    gap: 10px;
  }

  .board-content .cont .event_product .chance2 {
    margin-top: 20px;
    flex-direction: column;
  }

  .chance2 .review_desc {
    margin-top: 20px !important;
    flex-direction: column;
  }

  .chance2 .review_desc img {
    width: fit-content !important;
    margin: 0 auto !important;
    margin-top: -70px !important;
    height: 100px !important;
  }

  .event_product_foot {
    width: auto !important;
    padding: 16px !important;
  }

  .event_product_foot>a {
    font-size: 16px !important;
    padding: 10px 20px !important;
  }

  .event_product_foot .btn-group>a {
    padding: 10px !important;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 0 !important;
    border-radius: 10px !important;
  }
}

#replyForm {
  position: relative;
}

#comments {
  position: relative;
}

#comments li {
  position: relative;
  margin: 20px 0;
  display: flex;
  align-items: center;
  padding: 10px 0;
}

#comments li a {
  position: absolute;
  right: 0;
  display: block;
  width: 30px;
  height: 30px;
  cursor: pointer;
}


#comments li a::before,
#comments li a::after {
  content: ' ';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 24px;
  margin-top: -12px;
  margin-left: -1px;
  background: #333;
  border-radius: 5px;
}

#comments li a::before {
  transform: rotate(45deg);
}

#comments li a::after {
  transform: rotate(-45deg);
}

#submit {
  color: #fff;
  font-weight: bold;
  margin: 10px auto;
  display: block;
}


/* //댓글기능 */


.boardview-wrap .board-foot .more-view {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-foot .more-view {
    padding: 10px 0;
  }
}

.boardview-wrap .board-foot .more-view li {
  position: relative;
  flex: 1;
  width: 50%;
}

.boardview-wrap .board-foot .more-view li.prev {
  padding-left: 40px;
}

.boardview-wrap .board-foot .more-view li.next {
  padding-right: 40px;
}


.boardview-wrap .board-foot .more-view li.prev dd.new {
  padding-right: 20px;
}

.boardview-wrap .board-foot .more-view li.prev dd.new::after {
  content: 'N';
  position: absolute;
  right: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  background: #a02013;
  color: #fff;
  border-radius: 4px;
  margin-top: -8px;
  font-family: sans-serif;
  font-size: 11px;
  line-height: 15px;
  text-align: center;
  animation: new 2s ease-in-out infinite;
}

.boardview-wrap .board-foot .more-view li.prev dd.hold {
  padding-left: 20px;
}

.boardview-wrap .board-foot .more-view li.prev dd.hold::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 15px;
  background: url(/_image/icon/icon-hold.png)center center /contain no-repeat;
  margin-top: -8px;
}



.boardview-wrap .board-foot .more-view li.next dd.new {
  padding-right: 20px;
}

.boardview-wrap .board-foot .more-view li.next dd.new::after {
  content: 'N';
  position: absolute;
  right: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  background: #a02013;
  color: #fff;
  border-radius: 4px;
  margin-top: -8px;
  font-family: sans-serif;
  font-size: 11px;
  line-height: 15px;
  text-align: center;
  animation: new 2s ease-in-out infinite;
}

.boardview-wrap .board-foot .more-view li.next dd.hold {
  padding-left: 20px;
}

.boardview-wrap .board-foot .more-view li.next dd.hold::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 15px;
  background: url(/_image/icon/icon-hold.png)center center /contain no-repeat;
  margin-top: -8px;
}


.boardview-wrap .board-foot .more-view li::before {
  content: ' ';
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  border: 1px solid #555;
  border-right: none;
  border-bottom: none;
}

.boardview-wrap .board-foot .more-view li.prev::before {
  transform: rotate(-45deg);
  left: 20px;
}

.boardview-wrap .board-foot .more-view li.next::before {
  transform: rotate(-225deg);
  right: 20px;
}

.boardview-wrap .board-foot .more-view li dl {
  display: flex;
  align-items: center;
}

.boardview-wrap .board-foot .more-view li dl dt {
  white-space: nowrap;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
  font-weight: 700;
  margin: 0 10px;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-foot .more-view li dl dt {
    font-size: 14px;
    line-height: 22px;
  }
}

.boardview-wrap .board-foot .more-view li dl dd {
  position: relative;
  white-space: nowrap;
  padding: 0 10px;
  overflow: hidden;
}

.boardview-wrap .board-foot .more-view li dl dd a {
  position: relative;
  display: inline-block;
  max-width: 100%;
  color: #a3a3a3;
  font-size: 14px;
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .boardview-wrap .board-foot .more-view li dl dd a {
    font-size: 13px;
  }
}

@media screen and (min-width: 1025px) {

  .boardview-wrap .board-foot .more-view li dl dd a:hover,
  .boardview-wrap .board-foot .more-view li dl dd a:active {
    text-decoration: underline;
  }
}

.boardview-wrap .board-foot .more-view li.next dl {
  flex-direction: row-reverse;
}

.boardview-wrap.qna-type .tit {
  position: relative;
  padding-left: 40px;
}

@media screen and (max-width: 767px) {
  .boardview-wrap.qna-type .tit {
    padding-left: 20px;
  }
}

.boardview-wrap.qna-type .tit::before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
}

.boardview-wrap.qna-type .q-box .tit::before {
  content: 'Q.';
}

.boardview-wrap.qna-type .a-box .board-head {
  background: transparent;
}

.boardview-wrap.qna-type .a-box .board-head .tit::before {
  content: 'A.';
}

.boardview-wrap.qna-type .board-content .cont {
  padding-left: 80px;
}

@media screen and (max-width: 767px) {
  .boardview-wrap.qna-type .board-content .cont {
    padding-left: 40px;
  }
}

.board-btn {
  position: relative;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .board-btn {
    margin-top: 30px;
  }
}

.board-btn .btn {
  position: absolute;
  right: 0;
  top: -114px;
}

@media screen and (max-width: 767px) {
  .board-btn .btn {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
  }
}

/* notice */
.postit-lists {
  padding-top: 30px;
}

.postit-lists ul.lists {
  display: flex;
  flex-wrap: wrap;
  margin-top: -2.857143%;
  margin-left: -3.571429%;
}

.postit-lists ul.lists li {
  width: calc(100% / 3);
  margin-top: 2.758621%;
  padding-left: 3.448276%;
}

@media screen and (max-width: 767px) {
  .postit-lists ul.lists li {
    width: 100%;
  }
}

.postit-lists ul.lists li>a.inner {
  display: block;
  padding: 30px;
  box-shadow: 0px 0px 15px 0px rgba(217, 217, 217, 0.75);
}

@media screen and (max-width: 1024px) {
  .postit-lists ul.lists li>a.inner {
    padding: 20px;
  }
}

.postit-lists ul.lists li>a.inner .flag {
  margin-bottom: 5px;
}

.postit-lists ul.lists li>a.inner .count {
  display: block;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 700;

}

@media screen and (max-width: 767px) {
  .postit-lists ul.lists li>a.inner .count {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.postit-lists ul.lists li>a.inner .tit {
  font-size: 17px;
  line-height: 25px;
  letter-spacing: -0.3px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp:2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 10px 0;
}

.postit-lists ul.lists li>a.inner .tit.new {
  position: relative;
  width: fit-content;
  padding-right: 20px;
}

.postit-lists ul.lists li>a.inner .tit.new::after {
  content: 'N';
  position: absolute;
  right: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  background: #a02013;
  color: #fff;
  border-radius: 4px;
  margin-top: -8px;
  font-family: sans-serif;
  font-size: 11px;
  line-height: 15px;
  text-align: center;
  animation: new 2s ease-in-out infinite;
}


.postit-lists ul.lists li>a.inner .tit.hold {
  position: relative;
  width: fit-content;
  padding-left: 20px;
}

.postit-lists ul.lists li>a.inner .tit.hold::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 15px;
  background: url(/_image/icon/icon-hold.png)center center /contain no-repeat;
  margin-top: -8px;
}

@media screen and (max-width: 767px) {
  .postit-lists ul.lists li>a.inner .tit {
    font-size: 15px;
    line-height: 23px;

  }
}


.postit-lists ul.lists li>a.inner .desc {
  margin-top: 15px;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
  height: 144px;
  color: #a3a3a3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp:6;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .postit-lists ul.lists li>a.inner .desc {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 767px) {
  .postit-lists ul.lists li>a.inner .desc {
    height: auto;
  }
}

.postit-lists ul.lists li>a.inner .date {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 700;
  color: #646364;
}

.postit-lists ul.lists li>a.inner .date span {
  font-weight: normal;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .postit-lists ul.lists li>a.inner .date {
    font-size: 14px;
    margin-top: 30px;
  }
}


/* video */
.video-lists {
  position: relative;
}

.video-lists ul.lists {
  display: flex;
  flex-wrap: wrap;
  margin-top: -2.857143%;
  margin-left: -3.571429%;
}

.video-lists ul.lists li {
  width: calc(100% / 4);
  margin-top: 2.758621%;
  padding-left: 3.448276%;
}



@media screen and (max-width: 1024px) {
  .video-lists ul.lists li {
    width: calc(100% / 3);
    margin-top: 2.758621%;
    padding-left: 3.448276%;
  }

}



@media screen and (max-width: 767px) {
  .video-lists ul.lists li {
    width: 100%;
  }
}

.video-lists ul.lists li a.inner {
  display: block;
  border-radius: 20px;
}

@media screen and (max-width: 1024px) {
  .video-lists ul.lists li a.inner {
    padding: 16px 0;
  }
}

.video-lists ul.lists li a.inner .flag {
  margin-bottom: 5px;
}

.video-lists ul.lists li a.inner .video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 0px 15px 0px rgba(217, 217, 217, 0.75);
  overflow: hidden;

}

.video-lists ul.lists li a.inner .video .thumb img {
  width: 100%;
  height: 100%;
  background-size: cover;
  transition: all .3s;
}

.video-lists ul.lists li a.inner .video:hover img {
  transform: scale(1.1);
}

.video-lists ul.lists li a.inner .count {
  display: block;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;

}

@media screen and (max-width: 767px) {
  .video-lists ul.lists li a.inner .count {
    font-size: 14px;
    margin-top: 10px;
  }
}

.video-lists ul.lists li a.inner .tit {
  font-size: 17px;
  line-height: 25px;
  letter-spacing: -0.3px;
  max-height: 50px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp:2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 767px) {
  .video-lists ul.lists li a.inner .tit {
    font-size: 15px;
    line-height: 23px;

  }
}

@media screen and (max-width: 767px) {
  .video-lists ul.lists li a.inner .tit {
    height: 46px;
  }
}

.video-lists ul.lists li a.inner .desc {
  margin-top: 15px;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
  max-height: 100px;
  color: #a3a3a3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp:6;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .video-lists ul.lists li a.inner .desc {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 767px) {
  .video-lists ul.lists li a.inner .desc {
    height: auto;
  }
}

.video-lists ul.lists li a.inner .date {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 700;

}

@media screen and (max-width: 767px) {
  .video-lists ul.lists li a.inner .date {
    font-size: 14px;
    margin-top: 30px;
  }
}




/* event */
section[class="animate__animated"] {
  opacity: 0;
}

.event-lists {
  overflow: hidden;
}

.event-lists ul.lists {
  display: flex;
  flex-wrap: wrap;
  margin-top: -2.857143%;
  margin-left: -3.571429%;
}

.event-lists ul.lists li {
  width: 50%;
  margin-top: 2.758621%;
  padding-left: 3.448276%;
}

.event-lists ul.lists li a.inner {
  display: block;
}

.event-lists ul.lists li a.inner img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .event-lists ul.lists li {
    width: 100%;
    padding: 0;
  }
}


/* review */
.review_event {
  position: relative;
  background: #dacbbf;
  border-radius: 20px;
  padding: 40px 60px;
  margin-bottom: 20px;
}

.review_event ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review_event ul li {
  position: relative;
}

.review_info {
  color: #493b30;
}

.review_info p {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 5px;
}

.review_info strong {
  display: block;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.review_info .btn-review {
  background: #368556;
  color: #fff;
  border-radius: 30px;
  font-size: 20px;
  height: auto;
  line-height: normal;
  padding: 5px 20px;
  margin-top: 20px;
}

.review_event ul li.review-item {
  display: flex;
  gap: 0 75px;
}

.review_event ul li.review-item div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}


.review_event ul li.review-item span {
  font-size: 20px;
}

.review_event ul li.review-item strong {
  font-size: 28px;
  font-weight: 900;
  color: #000;
}

@media screen and (max-width: 1024px) {
  .review_info p {
    font-size: 16px;
  }

  .review_info strong {
    font-size: 23px;
  }

  .review_info .btn-review {
    font-size: 16px;
  }

  .review_event ul li.review-item {
    gap: 20px;
  }

  .review_event ul li.review-item span {
    font-size: 16px;
  }

  .review_event ul li.review-item strong {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .review_event {
    padding: 30px;
  }
}


@media screen and (max-width: 520px) {
  .review_event ul {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .review_event ul li.review-item {
    justify-content: space-evenly;
    width: 100%;
  }
}

.interview-video-lists {
  position: relative;
  padding: 40px 60px 0;
  background: #f4f4f4;
}

@media screen and (max-width: 1024px) {
  .interview-video-lists {
    padding: 40px 30px 0;
  }
}

@media screen and (max-width: 767px) {
  .interview-video-lists {
    padding: 30px 20px 0;
  }
}

.interview-video-lists::before {
  content: ' ';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 92px;
  /* background: #fff; */
}

@media screen and (max-width: 767px) {
  .interview-video-lists::before {
    height: 65px;
  }
}

.interview-video-lists h4.title {
  margin-bottom: 35px;
  font-size: 24px;
  font-weight: 900;
}

@media screen and (max-width: 1024px) {
  .interview-video-lists h4.title {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 767px) {
  .interview-video-lists h4.title {
    margin-bottom: 10px;
    font-size: 20px;
  }
}

.interview-video-lists .swiper-container .swiper-slide a.inner {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  transition: all .3s;
}

.interview-video-lists .swiper-container .swiper-slide a.inner .thumb {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 56.25%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  border-radius: 10px;
}

.interview-video-lists .swiper-container .swiper-slide a.inner:hover {
  border-radius: 0;
}

.interview-video-lists .swiper-container .swiper-slide a.inner:hover .thumb {
  border-radius: 0;

}

.interview-video-lists .swiper-container .swiper-slide a.inner:hover .thumb::before {
  background: rgba(0, 0, 0, 0.3);
}

.interview-video-lists .swiper-container .swiper-slide a.inner .thumb::before {
  content: ' ';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
  transition: all .3s;
}

.interview-video-lists .swiper-container .swiper-slide a.inner .thumb::after {
  content: ' ';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  margin-top: -36px;
  margin-left: -36px;
  background: url("/_image/icon/icon-play.png");
  z-index: 10;
}

.interview-video-lists .swiper-container .swiper-slide a.inner .tit {
  padding: 10px 0px 25px;
  background: #f4f4f4;
  font-size: 20px;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: keep-all;
  overflow: hidden;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .interview-video-lists .swiper-container .swiper-slide a.inner .tit {
    padding: 15px 20px;
    font-size: 18px;
  }
}

.interview-video-lists .swiper-container .swiper-slide a.inner .tit small {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;

  color: #00b760;
}

@media screen and (max-width: 767px) {
  .interview-video-lists .swiper-container .swiper-slide a.inner .tit small {
    font-size: 12px;
  }
}

.interview-video-lists .swiper-container .swiper-slide .info {
  display: none !important;
}

.interview-video-lists .controls {
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 0;
  text-align: right;
}

@media screen and (max-width: 1024px) {
  .interview-video-lists .controls {
    right: 30px;
  }
}

@media screen and (max-width: 767px) {
  .interview-video-lists .controls {
    top: 25px;
    right: 20px;
  }
}

.interview-video-lists .controls .btn-control {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 30px;
  vertical-align: top;
}

.interview-video-lists .controls .btn-control::before {
  content: ' ';
  position: absolute;
  margin-top: -8px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.interview-video-lists .controls .btn-control.prev::before {
  right: 6px;
  border-right: 12px solid #333;
}

.interview-video-lists .controls .btn-control.prev:hover::before {
  border-right-color: #00b760;
}

.interview-video-lists .controls .btn-control.next::before {
  left: 6px;
  border-left: 12px solid #00b760;
}

.interview-video-lists .controls .btn-control.next:hover::before {
  border-left-color: #00b760;
}

.interview-video-lists .controls .btn-control.swiper-button-disabled {
  opacity: 0.3;
}

.interview-lists {
  padding-top: 30px;
  padding-bottom: 50px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
}

.interview-lists ul.lists {
  display: flex;
  flex-wrap: wrap;
  margin-top: -5.714286%;
  margin-left: -2.857143%;
}

.interview-lists ul.lists li {
  width: 25%;
  margin-top: 5.555556%;
  padding-left: 2.777778%;
}

@media screen and (max-width: 1024px) {
  .interview-lists ul.lists li {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .interview-lists ul.lists li {
    width: 100%;
  }
}

.interview-lists ul.lists li a.inner {
  display: block;
}

.interview-lists ul.lists li a.inner .thumb {
  display: block;
  width: 100%;
  padding-top: 65.625%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: all .3s;
}

.interview-lists ul.lists li a.inner .thumb:hover {
  transform: scale(1.1);
}

.interview-lists ul.lists li a.inner .tit {
  margin-top: 20px;
  font-size: 24px;
  line-height: 1;
}

.interview-lists ul.lists li a.inner .tit small {
  display: block;
  margin-bottom: 5px;
  font-size: 0.58em;
  line-height: 1;
  font-weight: 900;
  color: #00b760;
}

@media screen and (max-width: 767px) {
  .interview-lists ul.lists li a.inner .tit {
    font-size: 18px;
  }

  .interview-lists ul.lists li a.inner .tit small {
    font-size: 12px;
  }
}

.interview-lists ul.lists li a.inner .desc {
  margin-top: 20px;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp:3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 767px) {
  .interview-lists ul.lists li a.inner .desc {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 767px) {
  .interview-lists ul.lists li a.inner .desc {
    margin-top: 10px;
  }
}

.magazine-lists {
  border-top: 1px solid #ddd;
}

.magazine-lists>li {
  border-bottom: 1px solid #eaeaea;
  padding: 15px 0;
}


.magazine-lists>li .inner {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .magazine-lists>li .inner {
    align-items: flex-start;
  }
}

.magazine-lists>li .inner .thumb {
  display: block;
  width: 150px;
  height: 150px;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(.7);
  transition: all .3s;
  cursor: pointer;
}

.magazine-lists>li .inner .thumb:hover {
  filter: brightness(1);
}

@media screen and (max-width: 767px) {
  .magazine-lists>li .inner .thumb {
    width: 80px;
    height: 80px;
  }
}

.magazine-lists>li .inner .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.magazine-lists>li .inner .conts {
  width: calc(100% - 170px);
  margin-left: auto;
  padding-right: 20px;
}

@media screen and (max-width: 767px) {
  .magazine-lists>li .inner .conts {
    width: calc(100% - 100px);
  }
}

.magazine-lists>li .inner .conts .top {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .magazine-lists>li .inner .conts .top {
    flex-wrap: wrap;
  }
}

.magazine-lists>li .inner .conts .top .flag {
  color: #fff;
}

.magazine-lists>li .inner .conts .top .flag.spot01 {
  background: #828282;
}

.magazine-lists>li .inner .conts .top .flag.spot02 {
  background: #fd7a7d;
}

.magazine-lists>li .inner .conts .top .flag.spot03 {
  background: #694dd1;
}

.magazine-lists>li .inner .conts .top .flag.spot04 {
  background: #4d94d1;
}

.magazine-lists>li .inner .conts .top .by {
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  margin-right: 5px;
}

.magazine-lists>li .inner .conts .top .by.new {
  position: relative;
  width: fit-content;
  padding-right: 20px;
}

.magazine-lists>li .inner .conts .top .by.new::after {
  content: 'N';
  position: absolute;
  right: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  background: #a02013;
  color: #fff;
  border-radius: 4px;
  margin-top: -8px;
  font-family: sans-serif;
  font-size: 11px;
  line-height: 15px;
  text-align: center;
  animation: new 2s ease-in-out infinite;
}


.magazine-lists>li .inner .conts .top .by.hold {
  position: relative;
  width: fit-content;
  padding-left: 20px;
}

.magazine-lists>li .inner .conts .top .by.hold::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 15px;
  background: url(/_image/icon/icon-hold.png)center center /contain no-repeat;
  margin-top: -8px;
}



@media screen and (max-width: 767px) {
  .magazine-lists>li .inner .conts .top .by {
    font-size: 16px;

  }
}

.magazine-lists>li .inner .conts .top .info {
  margin-left: auto;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .magazine-lists>li .inner .conts .top .info {
    width: 100%;
    margin-top: 5px;
  }
}

.magazine-lists>li .inner .conts .top .info li {
  display: inline-block;
  vertical-align: top;
  margin-left: 20px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
  color: #a3a3a3;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .magazine-lists>li .inner .conts .top .info li {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 767px) {
  .magazine-lists>li .inner .conts .top .info li {
    display: block;
    margin-left: 0;
  }
}

.magazine-lists>li .inner .conts .top .info li.star {
  color: #ef3745;
}

.magazine-lists>li .inner .conts .desc {
  font-size: 17px;
  line-height: 25px;
  letter-spacing: -0.3px;
  min-height: 75px;
  word-break: keep-all;
  color: #858585;
}

@media screen and (max-width: 767px) {
  .magazine-lists>li .inner .conts .desc {
    font-size: 15px;
    line-height: 23px;

  }
}

@media screen and (max-width: 767px) {
  .magazine-lists>li .inner .conts .desc {
    min-height: 0;
  }
}

.magazine-lists>li .inner .conts .date {
  margin-top: 10px;
  font-size: 16px;
  color: #999;
  font-weight: 700;
}

.magazine-lists>li .inner .conts .date span {
  font-size: 14px;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .magazine-lists>li .inner .conts .date {
    font-size: 14px;
  }
}




/* music */
.music-wrap {
  position: relative;
  display: flex;
  gap: 10px;
}

@media screen and (max-width: 1024px) {
  .music-wrap {
    flex-direction: column;
  }
}

.music-video-lists {
  position: relative;
  width: 60%;
}

@media screen and (max-width: 1366px) {
  .music-video-lists {
    width: 100%;
  }
}



/* .music-video-lists::before {
    content: ' ';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 92px;

} */




.music-video-lists a.inner {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  transition: all .3s;
}

.music-video-lists a.inner .thumb {
  position: relative;
  display: block;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  border-radius: 10px;
}

.music-video-lists a.inner .thumb img {
  width: 100%;
}

.music-video-lists a.inner:hover {
  border-radius: 0;
}

.music-video-lists a.inner:hover .thumb {
  border-radius: 0;

}

.music-video-lists a.inner:hover .thumb::before {
  background: rgba(0, 0, 0, 0.3);
}

.music-video-lists a.inner .thumb::before {
  content: ' ';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.music-video-lists a.inner .thumb::after {
  content: ' ';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  margin-top: -36px;
  margin-left: -36px;
  background: url("/_image/icon/icon-play.png");
  z-index: 10;
}

.music-video-lists a.inner .tit {
  padding: 10px 0px 25px;
  font-size: 20px;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: keep-all;
  overflow: hidden;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .music-video-lists a.inner .tit {
    padding: 15px 20px;
    font-size: 18px;
  }
}

.music-video-lists a.inner .tit small {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;

  color: #00b760;
}

@media screen and (max-width: 767px) {
  .music-video-lists a.inner .tit small {
    font-size: 12px;
  }
}

.music-video-lists .info {
  display: none !important;
}

.music-video-lists.controls {
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 0;
  text-align: right;
}

@media screen and (max-width: 1024px) {
  .music-video-lists.controls {
    right: 30px;
  }
}

@media screen and (max-width: 767px) {
  .music-video-lists.controls {
    top: 25px;
    right: 20px;
  }
}

.music-video-lists.controls .btn-control {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 30px;
  vertical-align: top;
}

.music-video-lists.controls .btn-control::before {
  content: ' ';
  position: absolute;
  margin-top: -8px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.music-video-lists.controls .btn-control.prev::before {
  right: 6px;
  border-right: 12px solid #333;
}

.music-video-lists.controls .btn-control.prev:hover::before {
  border-right-color: #00b760;
}

.music-video-lists.controls .btn-control.next::before {
  left: 6px;
  border-left: 12px solid #00b760;
}

.music-video-lists.controls .btn-control.next:hover::before {
  border-left-color: #00b760;
}

.music-video-lists.controls .btn-control.swiper-button-disabled {
  opacity: 0.3;
}

.music-lists {
  padding-top: 30px;
  padding-bottom: 50px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
}

.music-lists ul.lists {
  display: flex;
  flex-wrap: wrap;
  margin-top: -5.714286%;
  margin-left: -2.857143%;
}

.music-lists ul.lists li {
  width: 25%;
  margin-top: 5.555556%;
  padding-left: 2.777778%;
}

@media screen and (max-width: 1024px) {
  .music-lists ul.lists li {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .music-lists ul.lists li {
    width: 100%;
  }
}

.music-lists ul.lists li a.inner {
  display: block;
}

.music-lists ul.lists li a.inner .thumb {
  display: block;
  width: 100%;
  padding-top: 65.625%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.music-lists ul.lists li a.inner .tit {
  margin-top: 20px;
  font-size: 24px;
  line-height: 1;
}

.music-lists ul.lists li a.inner .tit small {
  display: block;
  margin-bottom: 5px;
  font-size: 0.58em;
  line-height: 1;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .music-lists ul.lists li a.inner .tit {
    font-size: 18px;
  }

  .music-lists ul.lists li a.inner .tit small {
    font-size: 12px;
  }
}

.music-lists ul.lists li a.inner .desc {
  margin-top: 20px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp:3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 767px) {
  .music-lists ul.lists li a.inner .desc {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 767px) {
  .music-lists ul.lists li a.inner .desc {
    margin-top: 10px;
  }
}

.music-video-info {
  width: 40%;
  border-radius: 20px;
  border: solid 2px #ddd;
  padding: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

@media screen and (max-width: 1366px) {
  .music-video-info {
    width: 50%;
    padding: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .music-video-info {
    width: 100%;
  }
}


@media screen and (max-width: 767px) {
  .music-video-info {
    padding: 16px;
  }
}



.music-video-info .tit-wrap {
  position: relative;
  /* font-family: 'Nanum Myeongjo'; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.music-video-info .like-button {
  position: relative;
  display: block;
}

.music-video-info h4.title {
  font-size: 40px;
  font-weight: 900;
  color: #000;

}

@media screen and (max-width: 1366px) {
  .music-video-info h4.title {
    font-size: 28px;
  }
}

@media screen and (max-width: 1024px) {
  .music-video-info h4.title {
    font-size: 24px;
  }
}


.music-video-info .tag-wrap {
  display: flex;
  flex-wrap: wrap;
  color: #00b760;
  font-weight: 700;
  justify-content: flex-start;
  margin-bottom: 10px;
  line-height: 1.5;
}

.music-video-info .tag-wrap>div {
  display: inline-block;
  margin-right: 15px;
}

.music-video-info .timeInfo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.music-video-info .desc {
  color: #4d4d4d;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  word-break: keep-all;
  margin-bottom: auto;
}


@media screen and (max-width: 1366px) {
  .music-video-info .desc {
    font-size: 16px;
  }
}

.music-video-info .btn {
  margin-top: 20px;
}

/* music */



/* series */
.series-video-lists {
  position: relative;
}


.series-wrap {
  display: flex;
  gap: 20px;
}

.series-info {
  position: relative;
  background: #00b760;
  border-radius: 20px;
  width: 25%;
  color: #fff;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  /* font-family: 'Nanum Myeongjo'; */
  line-height: 1.2;
  padding: 20px;
  word-break: keep-all;
}

@media screen and (max-width: 1366px) {
  .series-info {
    font-size: 22px;
  }
}

@media screen and (max-width: 1024px) {
  .series-info {
    min-width: 230px;
  }
}

@media screen and (max-width: 767px) {
  .series-info {
    font-size: 22px;
    width: 30%;
  }
}

@media screen and (max-width: 520px) {
  .series-info {
    font-size: 22px;
    min-width: 150px;
    gap: 10px;
  }
}


.series-info p {
  font-size: 60px;
  font-weight: 900;
  border-radius: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #00b760;
  width: 50%;
  height: 50%;
}

@media screen and (max-width: 1366px) {
  .series-info p {
    font-size: 40px;
    min-width: 100px;
    min-height: 100px;
  }
}

@media screen and (max-width: 767px) {
  .series-info p {
    font-size: 28px;
    min-width: 75px;
    min-height: 75px;
  }
}

.series-swiper {
  width: 80%;
}

/* @media screen and (max-width: 1024px) {
    .series-video-lists {
        padding: 40px 30px 0;
    }
}

@media screen and (max-width: 767px) {
    .series-video-lists {
        padding: 30px 20px 0;
    }
} */

.series-video-lists::before {
  content: ' ';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 92px;
  /* background: #fff; */
}

@media screen and (max-width: 767px) {
  .series-video-lists::before {
    height: 65px;
  }
}


@media screen and (max-width: 1024px) {
  .series-video-lists h4.title {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 767px) {
  .series-video-lists h4.title {
    margin-bottom: 10px;
    font-size: 20px;
  }
}

.series-video-lists .swiper-container .swiper-slide a.inner {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  transition: all .3s;
}


.series-video-lists .swiper-container .swiper-slide {
  overflow: hidden;
  border-radius: 10px;
}


.series-video-lists .swiper-container .swiper-slide a.inner .thumb {
  position: relative;
  display: block;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  border-radius: 10px;
}

.series-video-lists .swiper-container .swiper-slide a.inner:hover {
  border-radius: 0;
}

.series-video-lists .swiper-container .swiper-slide a.inner:hover .thumb {
  border-radius: 0;
}

.music-video-info .like-button {
  position: relative;
  display: block;
}

.series-video-lists .swiper-container .swiper-slide:hover .info-bottom {
  bottom: 0;
  opacity: 1;
}

.series-video-lists .swiper-container .swiper-slide .info-bottom {
  position: absolute;
  bottom: -100px;
  padding: 20px;
  width: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  opacity: 0;
  transition: all .3s;
}

.series-video-lists .swiper-container .swiper-slide .info-bottom .text {
  font-size: 18px;
}


.series-video-lists .swiper-container .swiper-slide .info {
  display: none !important;
}

.series-video-lists .controls {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 0;
  text-align: right;
}

@media screen and (max-width: 1024px) {
  .series-video-lists .controls {
    bottom: 10px;
    right: 10px;
  }
}


@media screen and (max-width: 520px) {
  .series-video-lists .controls {
    bottom: 5px;
    right: 5px;
  }
}




.series-video-lists .controls .btn-control {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 30px;
  vertical-align: top;
}

.series-video-lists .controls .btn-control::before {
  content: ' ';
  position: absolute;
  margin-top: -8px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.series-video-lists .controls .btn-control.prev::before {
  right: 6px;
  border-right: 12px solid #333;
}

.series-video-lists .controls .btn-control.prev:hover::before {
  border-right-color: #000;
}

.series-video-lists .controls .btn-control.next::before {
  left: 6px;
  border-left: 12px solid #00b760;
}

.series-video-lists .controls .btn-control.next:hover::before {
  border-left-color: #000;
}

.series-video-lists .controls .btn-control.swiper-button-disabled {
  opacity: 0.3;
}

.series-lists {
  padding-top: 30px;
  padding-bottom: 50px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
}

.series-lists ul.lists {
  display: flex;
  flex-wrap: wrap;
  margin-top: -5.714286%;
  margin-left: -2.857143%;
}

.series-lists ul.lists li {
  width: 25%;
  margin-top: 5.555556%;
  padding-left: 2.777778%;
}

@media screen and (max-width: 1024px) {
  .series-lists ul.lists li {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .series-lists ul.lists li {
    width: 100%;
  }
}

.series-lists ul.lists li a.inner {
  display: block;
}

.series-lists ul.lists li a.inner .thumb {
  display: block;
  width: 100%;
  padding-top: 65.625%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.series-lists ul.lists li a.inner .tit {
  margin-top: 20px;
  font-size: 24px;
  line-height: 1;
}

.series-lists ul.lists li a.inner .tit small {
  display: block;
  margin-bottom: 5px;
  font-size: 0.58em;
  line-height: 1;
  font-weight: 900;

}

@media screen and (max-width: 767px) {
  .series-lists ul.lists li a.inner .tit {
    font-size: 18px;
  }

  .series-lists ul.lists li a.inner .tit small {
    font-size: 12px;
  }
}

.series-lists ul.lists li a.inner .desc {
  margin-top: 20px;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp:3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 767px) {
  .series-lists ul.lists li a.inner .desc {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 767px) {
  .series-lists ul.lists li a.inner .desc {
    margin-top: 10px;
  }
}

/* series */
.ebook-banner {
  position: relative;
  padding: 60px 0;
  /* font-family: 'Nanum Myeongjo'; */
  line-height: 1.3;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .ebook-banner {
    flex-direction: column;
    gap: 50px;
  }
}

.ebook-banner>div {
  position: relative;
  width: 60%;
  margin: 0 auto;
}

.ebook-banner .first {
  width: 40%;
}

@media screen and (max-width: 767px) {
  .ebook-banner>div {
    width: 100%;
  }

  .ebook-banner .first {
    width: 100%;
  }
}




.ebook-banner .tit {
  font-size: 30px;
  word-break: keep-all;
}

.ebook-banner p {
  font-size: 16px;
}

.ebook-banner .thumb {
  position: relative;
  margin: 20px 0;
}

.ebook-banner .thumb img {
  border-radius: 20px;
  margin: 10px 0;
  box-shadow: 5px 5px 20px 7px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 1024px) {
  .ebook-banner .thumb img {
    margin: 20px 0;
    width: 90%;
  }
}


.ebook-banner ul {
  position: relative;
  width: 100%;
  border-radius: 10px;
  background: #fff;
  display: flex;
}

@media screen and (max-width: 520px) {
  .ebook-banner ul {
    flex-direction: column;
    background: none;
  }
}

.ebook-banner ul li {
  border-right: dotted 2px #ddd;
  text-align: center;
  margin: 20px 0;
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 520px) {
  .ebook-banner ul li {
    border-right: none;
    /* border-bottom: dotted 2px #ddd; */
    background: #fff;
    border-radius: 10px;
    margin: 10px;
  }
}

.ebook-banner ul li a {
  border: solid 2px #c9c9c9;
  padding: 10px 15px;
  border-radius: 20px;
  transition: all .3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .ebook-banner ul li a {
    padding: 5px 10px;
  }
}



.ebook-banner ul li a:hover {
  border: dotted 2px #c9c9c9;
  background: #000;
}

.ebook-banner ul li a:hover img {
  filter: invert(1);
}

.ebook-banner ul li p {
  font-size: 26px;
  color: #000;
}

@media screen and (max-width: 1024px) {
  .ebook-banner ul li p {
    font-size: 20px;
  }
}


.ebook-banner ul li p .eye {
  display: block;
  font-size: 16px;
  color: #00b760;
}

@media screen and (max-width: 1024px) {
  .ebook-banner ul li p .eye {
    font-size: 15px;
  }
}


.ebook-banner ul li:last-of-type {
  border: none;
}

/* button */
.btn {
  display: inline-block;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  font-size: 15px;
  height: 50px;
  line-height: 50px;
  vertical-align: top;
  cursor: pointer;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  white-space: nowrap;
  text-align: center;
}


.btn-primary {
  color: #fff;
  background-color: #00b760;
  border-color: #00b760;
}

.btn-primary:hover {
  color: #fff;
  background-color: #00b760;
  border-color: #00b760;
}

.btn-outline {
  background-color: #fff;
  color: #000;
  border-color: #000;
}

.btn-outline:hover {
  background-color: #fff;
  color: #368556;
  border-color: #368556;
}


.btn-outline-primary {
  background-color: #fff;
  color: #00b760;
  border-color: #00b760;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #00b760;
  border-color: #00b760;
}


.btn-cancel {
  color: #fff;
  background-color: #b7b7b7;
  border-color: #b7b7b7;
}

.btn-cancel:hover {
  color: #fff;
  background-color: #ef3745;
  border-color: #ef3745;
}

.btn-success {
  color: #fff;
  background-color: #828282;
  border-color: #828282;
}

.btn-success:hover {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
}

.btn-info {
  color: #000;
  background-color: #368556;
  border-color: #368556;
}

.btn-info:hover {
  color: #000;
  background-color: #31d2f2;
  border-color: #25cff2;
}


.btn-warning {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #000;
  background-color: #ffca2c;
  border-color: #ffc720;
}

.btn-dark {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.btn-dark:hover {
  background-color: #00b760;
  border-color: #00b760;
}

.btn-danger {
  color: #fff;
  background-color: #f11818;
  border-color: #f11818;
}

.btn-danger:hover {
  color: #fff;
  background-color: #ef3745;
  border-color: #b02a37;
}

.btn-outline-danger {
  background-color: #fff;
  color: #f11818;
  border-color: #f11818;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #ef3745;
  border-color: #ef3745;
}




.btn-green {
  color: #fff;
  background-color: #368556;
  border-color: #368556;
}

.btn-green:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}


.btn-default {
  border: 1px solid #e5e5e5;
  background-color: #fff;
  color: #000;
}

.btn-default:hover:not(.disabled) {
  border-color: #00b760;
  color: #00b760;
}

.btn-default-inver {
  border: 1px solid #e5e5e5;
  background-color: #fff;
  color: #000;
}

.btn-default-inver:hover:not(.disabled) {
  border-color: #00b760;
  color: #fff;
  background: #00b760;
}

.btn-default-inver2 {
  border: 1px solid #e5e5e5;
  background-color: #fff;
  color: #000;
}

.btn-default-inver2:hover:not(.disabled) {
  border-color: #e40e4b;
  color: #fff;
  background: #e40e4b;
}


.btn-default-inver-gray {
  border: 1px solid #e5e5e5;
  background-color: #e6e7e8;
  color: #000;
}

.btn-default-inver-gray:hover:not(.disabled) {
  background: #fff;
  color: #000;
}



.btn-sm {
  min-width: 60px;
  padding: 2px 8px 0 8px;
}

.btn-report {
  background: #d9d9d9;
  color: #fff;
  border: solid 1px #a6a6a6;
  border-radius: 5px;
  font-size: 12px;
  padding: 5px;
  justify-content: flex-end;
  display: flex;
  width: fit-content;
  display: block;
  margin-left: auto !important;
  min-width: auto !important;
}

.view_all {
  font-size: 18px;
  color: #000;
  transition: all .1s;
}

.view_all:hover {
  color: #00b760;
}

.nameRound {
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  vertical-align: top;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  white-space: nowrap;
  text-align: center;
}

.defaultBg {
  background-color: #00b760;
  border-color: #898989;
  color: #fff;
}

.grayBg {
  background-color: #898989;
  border-color: #898989;
  color: #fff;
}

.defaultColor {
  color: #00b760;
}

.grayColor {
  color: #898989;
}

@media screen and (max-width: 767px) {
  .btn {
    font-size: 14px;
  }
}

.btn span {
  display: inline-block;
  vertical-align: top;
}

.btn.btn-go span {
  position: relative;
  display: block;
  text-align: left;
}

.btn.btn-go span::after {
  content: ' ';
  position: absolute;
  top: 50%;
  right: 3px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border: 1px solid currentColor;
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
}

.btn.btn-black {
  background-color: #000;
  border-color: #000;
  color: #fff;
}


.btn-mouse {
  display: flex;
  background: #2f8c46;
  color: #fff;
  align-items: center;
  padding: 0 !important;
  border-radius: 15px;
  overflow: hidden;
  height: 60px !important;
  width: 50%;
}

.btn-mouse i {
  background: #174623;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}


.btn-mouse p {
  flex: 2;
}

.btn-round{
  border-radius: 10px !important;
}

.rounded {
  border-radius: 30px !important;
}

.no-round {
  border-radius: 0 !important;
}

@media screen and (min-width: 1025px) {

  .btn.btn-black:hover,
  .btn.btn-black:active {
    background-color: #353535;
    border-color: #353535;
  }
}

.btn.btn-border-black {
  border-color: #111;
  color: #111;
}

@media screen and (min-width: 1025px) {

  .btn.btn-border-black:hover,
  .btn.btn-border-black:active {
    background-color: rgba(17, 17, 17, 0.1);
  }
}

.btn.btn-basic {
  background-color: #333;
  border-color: #333;
  color: #fff;
}

.btn.btn-basic.upload:hover {
  border-color: #eb2626;
  background: #eb2626;
}

@media screen and (min-width: 1025px) {

  .btn.btn-basic:hover,
  .btn.btn-basic:active {
    background-color: #525252;
    border-color: #525252;
  }
}

.btn.btn-border-basic {
  background: #fff;
  border-color: #157347;
  color: #157347;
}

@media screen and (min-width: 1025px) {

  .btn.btn-border-basic:hover,
  .btn.btn-border-basic:active {
    background-color: #157347;
    color: #fff;
  }
}

.btn.btn-cont {
  background-color: #555;
  border-color: #555;
  color: #fff;
}

@media screen and (min-width: 1025px) {

  .btn.btn-cont:hover,
  .btn.btn-cont:active {
    background-color: #6f6f6f;
    border-color: #6f6f6f;
  }
}

.btn.btn-border-cont {
  border-color: #555;
  color: #555;
}

@media screen and (min-width: 1025px) {

  .btn.btn-border-cont:hover,
  .btn.btn-border-cont:active {
    background-color: rgba(85, 85, 85, 0.1);
  }
}


.btn-border-delete {
  background: #fff;
  border-color: #ef3745;
  color: #ef3745;
}

.btn-border-delete:hover,
.btn-border-delete:active {
  background-color: #ef3745;
  border-color: #ef3745;
  color: #fff;
}


.btn-border-edit {
  background: #fff;
  border-color: #00b5e2;
  color: #00b5e2;

}

.btn-border-edit:hover,
.btn-border-edit:active {
  color: #fff;
  background: #00b5e2;
}

.btn.btn-gray {
  background-color: #a3a3a3;
  border-color: #a3a3a3;
  color: #fff;
}


@media screen and (min-width: 1025px) {

  .btn.btn-gray:hover,
  .btn.btn-gray:active {
    background-color: #6b6b6b;
    border-color: #6b6b6b;
  }
}

.btn.btn-border-gray {
  border-color: #a3a3a3;
  color: #a3a3a3;
}

@media screen and (min-width: 1025px) {

  .btn.btn-border-gray:hover,
  .btn.btn-border-gray:active {
    background-color: rgba(119, 119, 119, 0.1);
  }
}

.btn.disableLink:hover {
  background-color: #a3a3a3;
  border-color: #a3a3a3;
}

.btn.btn-border {
  background-color: #ddd;
  border-color: #ddd;
  color: #333;
}

@media screen and (min-width: 1025px) {

  .btn.btn-border:hover,
  .btn.btn-border:active {
    background-color: #c7c7c7;
    border-color: #c7c7c7;
  }
}

.btn.btn-border-border {
  border-color: #ddd;
  color: #ddd;
}

@media screen and (min-width: 1025px) {

  .btn.btn-border-border:hover,
  .btn.btn-border-border:active {
    background-color: rgba(221, 221, 221, 0.1);
  }
}

.btn.btn-point {
  background-color: #a1a1a1;
  border-color: #a1a1a1;
  color: #fff;
}

.btn.btn-delete {
  background-color: #fff;
  border-color: #eee;
  color: #000;
}


.btn.btn-point:hover,
.btn.btn-point:active {
  background-color: #000;
  border-color: #000;
}

.btn.btn-delete:hover,
.btn.btn-delete:active {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #bb2d3b;
}

.btn.btn-choice {
  background-color: #fff;
  border-color: #eee;
  color: #000;
}

.btn.btn-choice:hover,
.btn.btn-choice:active {
  color: #fff;
  background-color: #368556;
  border-color: #368556;
}


.btn.btn-border-point {
  border-color: #eee;
  color: #000;
}

/* @media screen and (min-width: 1025px) {

  .btn.btn-point:hover,
  .btn.btn-point:active {
    background-color: #00b760;
    border-color: #00b760;
  }
} */

/* .btn.btn-border-point {
    border-color: #00b760;
    color: #00b760;
} */

@media screen and (min-width: 1025px) {

  .btn.btn-border-point:hover,
  .btn.btn-border-point:active {
    background: #368556;
    border-color: #eee;
    color: #fff;
  }
}

.btn.btn-point2 {
  background-color: #00b760;
  border-color: #00b760;
  color: #fff;
}

@media screen and (min-width: 1025px) {

  .btn.btn-point2:hover,
  .btn.btn-point2:active {
    background-color: #000;
    border-color: #000;
  }
}


/* btn-rainbow */
.btn.btn-rainbow {
  color: #fff;
  background: linear-gradient(90deg, #d90056 0%, #f1303c 15%, #f7832d 30%, #baae53 45%, #62b593 60%, #20afc3 75%, #0aabd4 80%, #01aadb 95%);
  border-radius: 10px;
  border: none;
  position: relative;
  overflow: hidden; 
}

.btn.btn-rainbow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -120%; 
  width: 80px;
  height: 250%; 
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(35deg);
  z-index: 1;
  pointer-events: none;
}

.btn.btn-rainbow:hover::after {
  animation: lightSweep 1s ease-out; 
}

.btn.btn-rainbow-disable {
  background: #fff;
  border-radius: 10px;
  border: solid 1px #ddd;
  position: relative; 
  overflow: hidden; 
  transition: all 0.3s ease; 
}

.btn.btn-rainbow-inable {
  color: #fff;
  background: linear-gradient(90deg, #d90056 0%, #f1303c 15%, #f7832d 30%, #baae53 45%, #62b593 60%, #20afc3 75%, #0aabd4 80%, #01aadb 95%);
  border-radius: 10px;
  border: none;
  position: relative;
  overflow: hidden; 
}


/* btn-rainbow-inver*/
.btn.btn-rainbow-inver {
  background: #fff;
  border-radius: 10px;
  border: solid 1px #ddd;
  position: relative; 
  overflow: hidden; 
  transition: all 0.3s ease; 
}

.btn.btn-rainbow-inver:hover,
.btn.btn-rainbow-inver:active {
  background: linear-gradient(90deg, #d90056 0%, #f1303c 15%, #f7832d 30%, #baae53 45%, #62b593 60%, #20afc3 75%, #0aabd4 80%, #01aadb 95%);
  /* border: solid 1px transparent; */
  color: #fff;
}

.btn.btn-rainbow-inver::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -120%; 
  width: 80px;
  height: 250%; 
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(35deg);
  z-index: 1;
  pointer-events: none; 
}

.btn.btn-rainbow-inver:hover::after,
.btn.btn-rainbow-inver:active::after {
  animation: lightSweep 1s ease-out;
}


@keyframes lightSweep {
  0% {
    left: -120%;
  }
  50% {
    left: 50%;
  }
  100% {
    left: 120%; 
  }
}


.btn.btn-border-point2 {
  border-color: #9a3175;
  color: #9a3175;
}

@media screen and (min-width: 1025px) {

  .btn.btn-border-point2:hover,
  .btn.btn-border-point2:active {
    background-color: rgba(154, 49, 117, 0.1);
  }
}

.btn.btn-border-point3 {
  border-color: #368556;
  color: #333;
}

@media screen and (min-width: 1025px) {

  .btn.btn-border-point3:hover,
  .btn.btn-border-point3:active {
    background-color: rgba(154, 49, 117, 0.1);
  }
}

.btn.btn-point3 {
  height: 90px;
  padding: 0 40px;
  background-color: #e40e4b;
  border-color: #e40e4b;
  font-size: 22px;
  font-weight: 550;
  color: #fff;
}

.btn.btn-point3:hover,
.btn.btn-point3:active {
  background-color: #000;
  border-color: #000;
}

@media screen and (max-width: 767px) {
  .btn.btn-point3 {
    height: 50px;
    padding: 0 30px;
    font-size: 16px;
  }
}

.btn.btn-blur {
  background-color: #eaeaea;
  border-color: #eaeaea;
  color: #333;
}

@media screen and (min-width: 1025px) {

  .btn.btn-blur:hover,
  .btn.btn-blur:active {
    background-color: lightgray;
    border-color: lightgray;
  }
}

.btn.btn-border-blur {
  border-color: #eaeaea;
  color: #eaeaea;
}

@media screen and (min-width: 1025px) {

  .btn.btn-border-blur:hover,
  .btn.btn-border-blur:active {
    background-color: rgba(234, 234, 234, 0.1);
  }
}

.btn.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: #333;
}

@media screen and (min-width: 1025px) {

  .btn.btn-white:hover,
  .btn.btn-white:active {
    background-color: #e6e6e6;
    border-color: #e6e6e6;
  }
}

.btn.btn-border-white {
  border-color: #fff;
  color: #fff;
}

@media screen and (min-width: 1025px) {

  .btn.btn-border-white:hover,
  .btn.btn-border-white:active {
    background-color: rgba(255, 255, 255, 0.1);
  }
}

.btn.btn-red {
  background-color: #a02013;
  border-color: #a02013;
  color: #fff;
}

@media screen and (min-width: 1025px) {

  .btn.btn-red:hover,
  .btn.btn-red:active {
    background-color: #ae4136;
    border-color: #ae4136;
  }
}

.btn.btn-border-red {
  border-color: #a02013;
  color: #a02013;
}

@media screen and (min-width: 1025px) {

  .btn.btn-border-red:hover,
  .btn.btn-border-red:active {
    background-color: rgba(160, 32, 19, 0.1);
  }
}

.btn.btn-yellow {
  background-color: #dea82a;
  border-color: #dea82a;
  color: #fff;
}

@media screen and (min-width: 1025px) {

  .btn.btn-yellow:hover,
  .btn.btn-yellow:active {
    background-color: #e3b54a;
    border-color: #e3b54a;
  }
}

.btn.btn-border-yellow {
  border-color: #dea82a;
  color: #dea82a;
}

@media screen and (min-width: 1025px) {

  .btn.btn-border-yellow:hover,
  .btn.btn-border-yellow:active {
    background-color: rgba(222, 168, 42, 0.1);
  }
}

.btn.btn-sm {
  padding: 0 14px;
  font-size: 14px;
  line-height: 26px;
}

@media screen and (max-width: 767px) {
  .btn.btn-sm {
    font-size: 13px;
    line-height: 24px;
  }
}

.btn.btn-sm.rounded {
  border-radius: 14px;
}

.btn.btn-md {
  padding: 0 20px;
  font-size: 18px;
  line-height: 40px;
  height: 40px;
}

@media screen and (max-width: 767px) {
  .btn.btn-md {
    font-size: 16px;
    line-height: 38px;
  }
}

.btn.btn-md.rounded {
  border-radius: 15px;
}

.btn.btn-lg {
  padding: 0 36px;
  font-size: 18px;
  font-weight: 500;
  height: 50px;
  line-height: 50px;
}

@media screen and (max-width: 767px) {
  .btn.btn-lg {
    font-size: 16px;
    /* line-height: 48px; */
  }
}

@media screen and (max-width: 520px) {
  .btn.btn-lg {
    padding: 0 16px;
  }
}




.btn.btn-lg.rounded {
  border-radius: 30px;
}

.btn.btn-level {
  background: #222;
  border-radius: 20px;
  color: #faac15;
  text-transform: uppercase;
  padding: 10px 0;
  line-height: 1.5;
  font-size: 20px;
  width: 100%;
}

.btn.btn-level:hover {
  background: #faac15;
  color: #222;
}

.btn.btn-level em {
  font-size: 28px;
}

.btn.half25 {
  display: block;
  width: 25%;
}

.btn.half50 {
  display: block;
  width: 50%;
}

.btn.half80 {
  display: block;
  width: 80%;
}

.btn.full {
  display: block;
  width: 100%;
}

.btn.mj {
  /* font-family: 'Nanum Myeongjo'; */
  color: #00b760;
  line-height: 60px;
  height: 60px;
  letter-spacing: 1px;
  width: fit-content;
  display: block;
}

.btn.mj:hover {
  color: #fff;
}

.btn.mj.white {
  color: #fff;
}


.btn-search {
  display: block;
  width: 110px;
  height: 50px;
  background: #111;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
}

.btn-reload {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 50px;
  color: #fff;
  border-radius: 5px;
  border: solid 1px #ddd;
  background: #fff;
}

.btn-reload:hover img {
  animation: spin 2s linear infinite;
}

.btn.btn-subscribe{
  background: linear-gradient(
    90deg,
    #f7832c 0%,
    #f2313b 20%,
    #af0c71 40%,
    #6244a2 60%,
    #356fbd 80%,
    #0b9ed6  100%
  );
  color: #fff;
  margin:0 !important;
}


@keyframes spin {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(-360deg)
  }
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 30px auto 0;
}

.btn-group.column{
  width:100%;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.btn-group.column > *{
  width: 100%;
}

.btn-group.column > *:first-child{
  margin:0;
}





.btn-group.pc-column {
  flex-direction: column;
}

.btn-group.left {
  justify-content: flex-start;
}

.btn-group.right {
  justify-content: flex-end;
}


.btn-group.high {
  margin-top: 120px;
}

@media screen and (max-width: 1024px) {
  .btn-group {
    margin-top: 20px !important;
  }
}

@media screen and (max-width: 1024px) {
  .btn-group2 {
    margin-top: 13px !important;
  }
}

@media screen and (max-width: 1024px) {
  .btn-group.pc-column {
    padding: 0;
    flex-direction: row;
    width: 100%;
  }
}


@media screen and (max-width: 767px) {
  .btn-group.high {
    margin-top: 60px;
  }
}

.btn-group>* {
  min-width: 200px;
  margin-left: 10px;
  text-align: center;
  margin: 20px 0;
  font-weight: 500;
}

.btn-group>*:first-child {
  margin-left: 0;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .btn-group2>a {
    margin:10px 0px;
  }
}

@media screen and (max-width: 1366px) {
  .btn-group>* {
    flex:1;
  }
}

@media screen and (max-width: 767px) {
  .btn-group>*:first-child {

    margin-right: 10px;
  }

  .btn-group {
    padding: 0 20px !important;
  }

  .btn-group>* {
    flex: 1;
    margin-left: 5px;
  }
  
}

@media screen and (max-width: 520px) {
  .btn-group {
    padding: 0 10px !important;
  }
}
/* text link */
.link-black {
  display: inline-block;
  vertical-align: middle;
  color: #111;
  font-size: inherit;
  font-weight: 700;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  vertical-align: top;

}

@media screen and (min-width: 1025px) {

  .link-black:hover,
  .link-black:active {
    text-decoration: underline;
    color: #353535;
  }
}

.link-basic {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  font-size: inherit;
  font-weight: 500;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  vertical-align: top;
  font-size: 20px;

}

@media screen and (min-width: 1025px) {

  .link-basic:hover,
  .link-basic:active {
    text-decoration: underline;
    color: #525252;
  }
}

.link-cont {
  display: inline-block;
  vertical-align: middle;
  color: #555;
  font-size: inherit;
  font-weight: 700;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  vertical-align: top;

}

@media screen and (min-width: 1025px) {

  .link-cont:hover,
  .link-cont:active {
    text-decoration: underline;
    color: #6f6f6f;
  }
}

.link-gray {
  display: inline-block;
  vertical-align: middle;
  color: #a3a3a3;
  font-size: inherit;
  font-weight: 700;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  vertical-align: top;

}

@media screen and (min-width: 1025px) {

  .link-gray:hover,
  .link-gray:active {
    text-decoration: underline;
    color: #6b6b6b;
  }
}

.link-border {
  display: inline-block;
  vertical-align: middle;
  color: #ddd;
  font-size: inherit;
  font-weight: 700;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  vertical-align: top;

}

@media screen and (min-width: 1025px) {

  .link-border:hover,
  .link-border:active {
    text-decoration: underline;
    color: #c7c7c7;
  }
}

.link-point {
  display: inline-block;
  vertical-align: middle;
  color: #000;
  font-size: inherit;
  font-weight: 700;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  vertical-align: top;

}

@media screen and (min-width: 1025px) {

  .link-point:hover,
  .link-point:active {
    text-decoration: underline;
    color: #00b760;
  }
}

.link-point2 {
  display: inline-block;
  vertical-align: middle;
  color: #9a3175;
  font-size: inherit;
  font-weight: 700;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  vertical-align: top;

}

@media screen and (min-width: 1025px) {

  .link-point2:hover,
  .link-point2:active {
    text-decoration: underline;
    color: #a9508a;
  }
}

.link-blur {
  display: inline-block;
  vertical-align: middle;
  color: #eaeaea;
  font-size: inherit;
  font-weight: 700;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  vertical-align: top;

}

@media screen and (min-width: 1025px) {

  .link-blur:hover,
  .link-blur:active {
    text-decoration: underline;
    color: lightgray;
  }
}

.link-white {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  font-size: inherit;
  font-weight: 700;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  vertical-align: top;

}

@media screen and (min-width: 1025px) {

  .link-white:hover,
  .link-white:active {
    text-decoration: underline;
    color: #e6e6e6;
  }
}

.link-red {
  display: inline-block;
  vertical-align: middle;
  color: #a02013;
  font-size: inherit;
  font-weight: 700;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  vertical-align: top;

}

@media screen and (min-width: 1025px) {

  .link-red:hover,
  .link-red:active {
    text-decoration: underline;
    color: #ae4136;
  }
}

.link-yellow {
  display: inline-block;
  vertical-align: middle;
  color: #dea82a;
  font-size: inherit;
  font-weight: 700;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  vertical-align: top;

}

@media screen and (min-width: 1025px) {

  .link-yellow:hover,
  .link-yellow:active {
    text-decoration: underline;
    color: #e3b54a;
  }
}

/* flag */
.flag {
  display: inline-block;
  vertical-align: top;
  min-width: 50px;
  height: 28px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 30px;
  text-align: center;
  font-size: 14px;
  line-height: 26px;
  font-weight: 700;

}

@media screen and (max-width: 767px) {
  .flag {
    min-width: 50px;
    height: 24px;
    font-size: 13px;
    line-height: 22px;
    padding: 0 6px;
  }
}

.flag.flag-black {
  background-color: #111;
  border-color: #111;
  color: #fff;
}

.flag.flag-border-black {
  border-color: #111;
  color: #111;
}

.flag.flag-basic {
  background-color: #333;
  border-color: #333;
  color: #fff;
}

.flag.flag-border-basic {
  border-color: #333;
  color: #333;
}

.flag.flag-cont {
  background-color: #555;
  border-color: #555;
  color: #fff;
}

.flag.flag-border-cont {
  border-color: #555;
  color: #555;
}

.flag.flag-gray {
  background-color: #a3a3a3;
  border-color: #a3a3a3;
  color: #333;
}

.flag.flag-border-gray {
  border-color: #a3a3a3;
  color: #a3a3a3;
}

.flag.flag-border {
  background-color: #ddd;
  border-color: #ddd;
  color: #333;
}

.flag.flag-border-border {
  border-color: #ddd;
  color: #ddd;
}

.flag.flag-point {
  background-color: #328a58;
  border-color: #328a58;
  color: #fff;
}

.flag.flag-border-point {
  border-color: #00b760;
  color: #00b760;
}

.flag.flag-point2 {
  background-color: #9a3175;
  border-color: #9a3175;
  color: #fff;
}

.flag.flag-border-point2 {
  border-color: #9a3175;
  color: #9a3175;
}

.flag.flag-blur {
  background-color: #eaeaea;
  border-color: #eaeaea;
  color: #333;
}

.flag.flag-border-blur {
  border-color: #eaeaea;
  color: #eaeaea;
}

.flag.flag-white {
  background-color: #fff;
  border-color: #fff;
  color: #333;
}

.flag.flag-border-white {
  border-color: #fff;
  color: #fff;
}

.flag.flag-red {
  background-color: #a02013;
  border-color: #a02013;
  color: #fff;
}

.flag.flag-border-red {
  border-color: #a02013;
  color: #a02013;
}

.flag.flag-yellow {
  background-color: #dea82a;
  border-color: #dea82a;
  color: #fff;
}

.flag.flag-border-yellow {
  border-color: #dea82a;
  color: #dea82a;
}

.text-flag {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
  font-weight: 700;

}

@media screen and (max-width: 767px) {
  .text-flag {
    font-size: 14px;
    line-height: 22px;
  }
}

.text-flag.text-flag-black {
  color: #111;
}

.text-flag.text-flag-basic {
  color: #333;
}

.text-flag.text-flag-cont {
  color: #555;
}

.text-flag.text-flag-gray {
  color: #a3a3a3;
}

.text-flag.text-flag-border {
  color: #ddd;
}

.text-flag.text-flag-point {
  color: #00b760;
}

.text-flag.text-flag-point2 {
  color: #9a3175;
}

.text-flag.text-flag-blur {
  color: #eaeaea;
}

.text-flag.text-flag-white {
  color: #fff;
}

.text-flag.text-flag-red {
  color: #a02013;
}

.text-flag.text-flag-yellow {
  color: #dea82a;
}

.text-danger {
  color: #f11818;
}




/* form */
.form-wrap {
  position: relative;
}

.form-wrap .row {
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .form-wrap .row {
    margin-top: 10px;
  }
}

.form-wrap .row:first-child {
  margin-top: 0;
}

.form-wrap .col .tit,
.form-wrap .row>label,
.form-wrap .row>p.label {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}


@media screen and (max-width: 767px) {

  .form-wrap .row>label,
  .form-wrap .row>p.label {
    margin-bottom: 6px;
    font-size: 15px;
  }
}

.form-wrap .row>label.essen::after {
  content: '*';
  display: inline-block;
  color: #ef3745;
  margin-left: 4px;
}

.form-wrap .row .forms {
  position: relative;
  display: flex;
}

.form-wrap .row .forms.center {
  align-items: center;
}

.form-wrap .row .forms .ipt03_upload {
  position: relative;
  width: 100%;
  display: flex;
}

.form-wrap .flex-row {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .form-wrap .flex-row {
    display: block;
  }
}

.form-wrap .flex-row .row {
  width: calc((100% - 40px) / 3);
  margin-top: 0;
  margin-left: 20px;
}

.form-wrap .flex-row .row:nth-child(3n + 1) {
  margin-left: 0;
}

.form-wrap .flex-row .row:nth-child(3)~.row {
  margin-top: 60px;
}

.form-wrap .flex-row .addBtn,
.form-wrap .flex-row .fileUpload {
  padding: 0px 20px;
  font-size: 16px;
  background-color: #269ddc;
  border-color: #269ddc;
  color: #fff;
  border-radius: 5px;
  margin-left: 10px;
  word-break: keep-all;
  text-overflow: ellipsis;
  border-style: none;
  cursor: pointer;
}

.textOver {
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
}

.form-wrap .flex-row .fileUpload {
  padding: 0px 30px;
  background-color: #9b9b9b;
  border-color: #9b9b9b;
  cursor: pointer;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}

.form-wrap .flex-row .fileDownload {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 90%;
  padding: 5px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  background: #faf8f5;
  transform: translate(0, -50%);
}

@media screen and (max-width: 1024px) {
  .form-wrap .flex-row .row {
    width: 100%;
    margin-left: 0;
    margin-top: 35px;
  }

  .form-wrap .flex-row .row:nth-child(3)~.row {
    margin-top: 35px;
  }

  .form-wrap .flex-row .row:first-child {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .form-wrap .flex-row .row {
    margin-top: 30px;
  }

  .form-wrap .flex-row .row:nth-child(3)~.row {
    margin-top: 30px;
  }
}

.form-wrap.border {
  padding: 50px;
}

@media screen and (max-width: 767px) {
  .form-wrap.border {
    padding: 30px 16px;
  }
}


.form-wrap .error_txt {
  width: 100%;
  margin-top: 10px;
  text-align: left !important;
  color: #ee3d43;
  font-size: 14px;
  line-height: 1;
}

.form-wrap .error_txt::before {
  content: '!';
  display: inline-block;
  vertical-align: top;
  width: 14px;
  height: 14px;
  margin-right: 4px;
  background: #ee3d43;
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  font-weight: 500;
}


.form-wrap .pass_info {
  margin-top: 10px;
  color: #999;
  line-height: 1.2;
}

.form-wrap .pass_info.black {
  color: #000;
}

@media screen and (max-width: 767px) {
  .form-wrap .pass_info {
    font-size: 13px;
  }
}


.form-wrap .my-profile {
  margin: 20px 0;
  position: relative;
  word-break: keep-all;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .form-wrap .my-profile {
     margin: 0px;
  }
}

.form-wrap .my-info {
  background: repeating-linear-gradient(45deg, #f8f8f8, #ebebeb 1px);
  display: flex;
  gap: 10px;
  padding: 20px 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 30px;
}

.form-wrap .my-secession {
  position: relative;
  width: 100%;
}

.form-wrap .my-secession .my-info {
  display: flex;
  flex-direction: unset;
  gap: 20px;
  text-align: left;
  padding: 50px;
}

.form-wrap .my-secession .btn-group.half a {
  min-width: 30%;
  margin: 0;
}

.form-wrap .my-info #userName {
  position: relative;
}


.gender-btn-wrap {
  position: absolute;
  right: 10px;
  z-index: 1;
  top: 50%;
  transform: translate(0, -50%);
}

.form-wrap .my-profile .table.row-table td {
  border: none;
  padding: 10px
}

#info__name button {
  position: absolute;
  width: 90px;
  height: 40px;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto 0;
  border-radius: 3px;
}

.form-wrap .my-info .title {
  font-size: 24px;
  font-weight: bold;
}

.form-wrap .my-info .desc {
  color: #737373;
}


.form-wrap .my-photo {
  padding: 10px;
  min-width: 75px;
  max-width: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-wrap .my-photo .thumb {
  border-radius: 50px;
  border: solid 2px #000;
  padding: 10px;
}

.d-flex-btn {
  display: flex;
}

.d-flex-btn .form-control {
  flex: 1 1 auto;
}

.d-flex-btn .btn {
  margin-left: 5px;
}

.d-flex-btn .num-input {
  flex: 1 1 auto;
  position: relative;
}

.d-flex-btn .num-input .count {
  position: absolute;
  top: 50%;
  right: 15px;
  font-size: 14px;
  line-height: 1;

  color: #00b760;
  transform: translateY(-50%);
}

/* search */
.list-filter {
  display: flex;
  align-items: flex-end;
  margin-bottom: 15px;
  padding-top: 10px;
}


.list-filter .search-wrap {
  display: flex;
  width: 60%;
  max-width: 420px;
  margin-left: auto;
  border-radius: 25px;
  box-shadow: 0px 0px 15px 0px rgba(217, 217, 217, 0.75);
  overflow: hidden;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .list-filter .search-wrap {
    width: 100%;
    max-width: none;
  }
}

.list-filter .search-wrap .input-wrap {
  flex: 1;
}

.list-filter .search-wrap .input-wrap input {
  height: 40px;
  padding: 10px 30px;
  border-radius: 0;
  border-color: transparent;
}

.list-filter .search-wrap .input-wrap input::placeholder,
.list-filter .search-wrap .input-wrap input::-webkit-input-placeholder {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
}

@media screen and (max-width: 767px) {

  .list-filter .search-wrap .input-wrap input::placeholder,
  .list-filter .search-wrap .input-wrap input::-webkit-input-placeholder {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 767px) {
  .list-filter .search-wrap .input-wrap input {
    height: 40px;
    padding: 10px 20px;
  }
}

.list-filter .search-wrap .btn-search {
  display: block;
  width: 50px;
  height: 50px;
  background: url("/_image/icon/icon-search.png") left center no-repeat;
}

@media screen and (max-width: 767px) {
  .list-filter .search-wrap .btn-search {
    width: 40px;
    height: 40px;
    background-size: 20px;
  }
}

.list-filter .btn-write {
  height: 50px;
  margin-left: 10px;
  border-radius: 25px;
  line-height: 48px;
}

@media screen and (max-width: 767px) {
  .list-filter .btn-write {
    height: 40px;
    margin-top: 10px;
    margin-left: auto;
    border-radius: 20px;
    line-height: 38px;
    order: 2;
  }
}

.list-filter .total {
  order: -1;
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .list-filter .total {
    font-size: 13px;
  }
}

.list-filter .total em {
  font-weight: 700;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .list-filter .total {
    order: 1;
    margin-top: 20px;
  }
}




/* file upload */



.list-filter2 {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  padding-top: 10px;
  background: #efefef;
  padding: 30px 10px;
  border-radius: 5px;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 50px;
  gap: 20px;

}

.list-filter2 p {
  font-size: 20px;
  font-weight: bold;
  /* font-family: 'Nanum Myeongjo'; */
  text-wrap: nowrap;
}


@media screen and (max-width: 767px) {
  .list-filter2 {
    gap: 10px;
  }

  .list-filter2 p {
    font-size: 16px;
  }
}


.list-filter2 .search-wrap {
  display: flex;
  width: 60%;
  /* margin:0 auto; */
  border-radius: 5px;
  box-shadow: 0px 0px 15px 0px rgba(217, 217, 217, 0.5);
  overflow: hidden;
  background: #fff;
}

.list-filter2 .search-wrap .input-wrap {
  flex: 1;
}

.list-filter2 .search-wrap .input-wrap input {
  height: 50px;
  padding: 12px 30px;
  border-radius: 0;
  border-color: transparent;
}

.list-filter2 .search-wrap .input-wrap input::placeholder,
.list-filter2 .search-wrap .input-wrap input::-webkit-input-placeholder {
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
}

@media screen and (max-width: 767px) {
  .list-filter2 .search-wrap {
    width: 70%;
  }

  .list-filter2 .search-wrap .input-wrap input::placeholder,
  .list-filter2 .search-wrap .input-wrap input::-webkit-input-placeholder {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 767px) {
  .list-filter2 .search-wrap .input-wrap input {
    height: 40px;
    padding: 10px 20px;
  }
}

.list-filter2 .search-wrap .btn-search {
  display: block;
  width: 110px;
  height: 50px;
  background: #111;
  color: #fff;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .list-filter2 .search-wrap .btn-search {
    width: 60px;
    height: 40px;
    background-size: 20px;
  }
}

.list-filter2 .btn-write {
  height: 50px;
  margin-left: 10px;
  border-radius: 25px;
  line-height: 48px;
}

@media screen and (max-width: 767px) {
  .list-filter2 .btn-write {
    height: 40px;
    margin-top: 10px;
    margin-left: auto;
    border-radius: 20px;
    line-height: 38px;
    order: 2;
  }
}

.list-filter2 .total {
  order: -1;
  font-size: 14px;
  line-height: 22px;

}

@media screen and (max-width: 767px) {
  .list-filter2 .total {
    font-size: 13px;
  }
}

.list-filter2 .total em {
  font-weight: 700;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .list-filter2 .total {
    order: 1;
    margin-top: 20px;
  }
}

.list-filter3 {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  padding-top: 10px;
  background: #efefef;
  padding: 30px 10px;
  border-radius: 5px;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 50px;
  gap: 20px;
}

.list-filter3 .search-wrap {
  display: flex;
  border-radius: 5px;
  box-shadow: 0px 0px 15px 0px rgba(217, 217, 217, 0.5);
  overflow: hidden;
}


.list-filter3 .datepicker input {
  background: #fff;
}



.list-filter3 img {
  width: 25px;
}

.list-filter3 .btn-wrap {
  display: flex;
  gap: 10px;
}


@media screen and (max-width: 520px) {

  .list-filter3 {
    flex-direction: column;
  }

  .list-filter3 .btn-wrap {
    width: 100%;
    justify-content: flex-end;
  }
  .list-filter3 .btn-search{
    width:100%;
  }
}


/* datepicker */
.datepicker {
  position: relative;
}

.datepicker input.form-control {
  padding-right: 30px;
  text-align: center;
}

.datepicker i {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  line-height: 1;
}

.datepicker i::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url(/_image/icon/icon-datepicker.png)center center /contain no-repeat;
}


.ui-datepicker {
  display: none;
  width: 300px;
  margin-top: 3px;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 0.3rem;
  background: #fff;
}

.ui-datepicker .ui-datepicker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
  font-size: 14px;
}

.ui-datepicker .ui-datepicker-header>a {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  overflow: hidden;
}

.ui-datepicker .ui-datepicker-header>a::before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border: 2px solid #333;
  border-top: none;
  border-right: none;
}

.ui-datepicker .ui-datepicker-header>a span.ui-icon {
  position: absolute;
  display: block;
  width: 1px;
  height: 1px;
  margin: -1px;
  font-size: 0;
  overflow: hidden;
}

.ui-datepicker .ui-datepicker-header>a.ui-datepicker-prev::before {
  transform: rotate(45deg);
  margin-left: -2px;
}

.ui-datepicker .ui-datepicker-header>a.ui-datepicker-next {
  order: 2;
}

.ui-datepicker .ui-datepicker-header>a.ui-datepicker-next::before {
  transform: rotate(-135deg);
  margin-left: -6px;
}

.ui-datepicker .ui-datepicker-calendar {
  width: 100%;
  table-layout: fixed;
}

.ui-datepicker .ui-datepicker-calendar thead th {
  height: 30px;
  font-size: 14px;
  text-align: center;
}

.ui-datepicker .ui-datepicker-calendar tbody td {
  height: 34px;
  text-align: center;
  vertical-align: middle;
}

.ui-datepicker .ui-datepicker-calendar tbody td.ui-datepicker-week-end:first-child a {
  color: #1965b0;
}

.ui-datepicker .ui-datepicker-calendar tbody td.ui-datepicker-week-end:last-child a {
  color: #00b760;
}

.ui-datepicker .ui-datepicker-calendar tbody td.ui-datepicker-current-day a,
.ui-datepicker .ui-datepicker-calendar tbody td.ui-datepicker-today a {
  background: #eee;
}

.ui-datepicker .ui-datepicker-calendar tbody td a {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto;
  border-radius: 50%;
  color: #666;
  font-size: 13px;
  line-height: 30px;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-calendar tbody td a.ui-state-hover {
  background-color: #1965b0;
  color: #fff !important;
}

.ui-datepicker .ui-datepicker-calendar tbody td a.ui-state-active {
  background-color: #1965b0;
  color: #fff !important;
}

.answers-wrap {
  display: flex;
  background: #eee;
  align-items: center;
  gap: 30px;
  padding-right: 20px;
}

.answers {
  display: flex;
  gap: 30px;
  text-align: center;
  align-items: center;
  line-height: 1.2;
}

.answers span {
  /* font-family: 'Nanum Myeongjo'; */
  display: block;
}

.inquiry-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.inquiry-wrap .inquiry-question,
.inquiry-wrap .inquiry-answer {
  padding: 50px;
  background: #fafafa;
  border: solid 1px #ddd;
  border-radius: 20px;
}

.inquiry-wrap .inquiry-question {
  position: relative;
}

.inquiry-wrap .inquiry-question .form-wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.inquiry-wrap .inquiry-question .form-wrap .row {
  width: 50%;
  margin-top: 20px;
}

.inquiry-wrap .inquiry-question .form-wrap .row .form-control {
  max-width: 95%;
}

.inquiry-wrap .inquiry-answer {
  position: relative;
  border: solid 2px #00b760;
}

.inquiry-wrap .inquiry-answer .form-wrap {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.inquiry-wrap .inquiry-answer .form-wrap .row {
  flex: 1;
  margin: 0;
}

.question-detail {
  position: relative;
  line-height: 1.2;
  margin: 30px 0;
}

.question-detail label {
  font-weight: bold;
  font-size: 18px;
}

.question-tit {
  margin-top: 10px;
  color: #00b760;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}


.question-desc {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.question-upload {
  margin: 20px 0;
  font-weight: bold;
  color: #333;
}

.question-upload a {
  position: relative;
  cursor: pointer;
  display: block;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}

.question-upload a:hover {
  text-decoration: underline;

}

.question-upload a i {
  margin-right: 10px;
}

.answer-info {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
}

.answer-info .answer-user {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.answer-info .answer-user img {
  width: 60px;
  height: 60px;
}

.answer-info label {
  border-radius: 20px !important;
  font-weight: bold;
}


/* file upload */
.inputfile-wrap {
  position: relative;
  /* max-width: 500px; */
  font-size: 0;
  width: 100%;
  display: flex;
  align-items: center;
  /* justify-content: center; */
}

.inputfile-wrap input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.inputfile-wrap .form-control {
  display: inline-block;
  width: calc(100% - 95px);
}

.inputfile-wrap label {
  display: inline-block;
  width: 90px;
  margin-left: 5px;
}

label[for=upload-file] {
  width: fit-content;
}


/* input */
.form-control {
  display: block;
  /* max-width: 750px; */
  width: 100%;
  min-height: 50px;
  height: auto;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  font-size: 18px;
  line-height: normal;
  transition: border-color 0.15s ease-in-out;
}

.form-control.white {
  background: #fff;
}

@media screen and (max-width: 767px) {
  .form-control {
    font-size: 16px;
    padding: 7px 10px;
  }
}

.form-control>.d-flex {
  justify-content: space-evenly;
  align-items: center;
  display: block;
  padding: 10px 15px;
}

.form-control>.d-flex.column {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 0;
}

.form-control>.d-flex.column li {
  padding: 10px;
  background: #ebebeb;
  width: 100%;
  border-radius: 20px;
}

.form-control>.d-flex.wrap {
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0;
  gap: 10px;
  font-weight: 500;
}


.form-control>.d-flex.wrap li {
  flex: 1;
  border-radius: 5px;
}


.form-control>.d-flex.wrap.full li {
  width: 47%;
  flex: unset
}

.form-control:focus {
  outline: none;
  border-width: 2px;
  border-color: #00b760;
}

.form-control::placeholder,
.form-control::-webkit-input-placeholder {
  font-size: 16px;
  color: #999;
  opacity: 1;
}




@media screen and (max-width: 767px) {

  .form-control::placeholder,
  .form-control::-webkit-input-placeholder {
    font-size: 13px;
  }
}

.form-control::-webkit-outer-spin-button,
.form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.form-control:disabled {
  background: #f4f4f4;
  color: #a3a3a3;
}

.form-control:read-only {
  color: #555;
}

input[type=password].form-control {
  font-family: "Pretendard"
}

input[type=password].form-control::placeholder,
input[type=password].form-control::-webkit-input-placeholder {
  font-family: "Pretendard-Regular", "noto sans KR", sans-serif;
  transform: translateY(-1px);
}



/* checkbox, radio */
.chk-wrap {
  display: inline-block;
  position: relative;
  min-height: 24px;
  vertical-align: top;
  margin-right: 1rem
}

textarea.form-control {
  resize: none;
  max-width: 100%;
  height: 300px;
}

textarea.form-control.h200 {
  height: 200px;
}

@media screen and (max-width: 767px) {
  .chk-wrap {
    min-height: 22px;
  }

  textarea.form-control {
    height: 150px;
  }
}

.textLengthWrap {
  position: relative;
  color: #aaa;
  text-align: right;
  font-size: 14px;
  margin: 10px 0;
}

.chk-wrap input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.chk-wrap input+label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding-left: 30px;
  color: #737373;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
  user-select: none;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .chk-wrap input+label {
    font-size: 15px;
    line-height: 22px;
  }
}

.chk-wrap input+label::before {
  content: ' ';
  position: absolute;
  top: 1px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 5px;
}


@media screen and (max-width: 767px) {
  .chk-wrap input+label::before {
    width: 20px;
    height: 20px;
  }
}

.chk-wrap input:disabled+label {
  color: #898989;
}

.chk-wrap input:disabled+label::before {
  background: #faf8f5;
}

.chk-wrap input:checked+label {
  color: #000;

}

/* 기본 input에 대한 설정값 */
.chk-wrap input:checked+label::before {
  border-color: #368556;
  background: #368556;
  animation: rubberBand .3s ease;
}

.chk-wrap input:checked+label::after {
  content: ' ';
  position: absolute;
  top: 4px;
  left: 8px;
  width: 8px;
  height: 13px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  animation: rubberBand2 0.5s ease-in-out;
}


/* checkbox  체크박스만 효과 다르게*/
.chk-wrap input[type="checkbox"]+label::before {
  border-radius: 5px;
}

.chk-wrap input[type="checkbox"]:checked+label::before {
  border-color: #368556;
  background: #368556;
}

/* checkbox  라디오박스만 효과 다르게*/
.chk-wrap input[type="radio"]+label::before {
  border-radius: 30px;
}



.chk-wrap input[type="radio"]:checked+label::before {
  content: ' ';
  position: absolute;
  top: 3px;
  left: 0;
  width: 24px;
  height: 24px;
  /* border: 1px solid #000;
  background: #fff; */
  border-radius: 20px;
  animation: rubberBand2 0.5s ease-in-out;

}


.chk-wrap input[type="radio"]:checked+label::after {
  content: ' ';
  position: absolute;
  top: 5px;
  left: 8px;
  width: 9px;
  height: 15px;
  border: 3px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  animation: rubberBand2 0.5s ease-in-out;
}

@media screen and (max-width: 767px) {
  .chk-wrap input[type="radio"]:checked+label::before {
    width: 20px;
    height: 20px;
  }

  .chk-wrap input[type="radio"]:checked+label::after {
    top: 5px;
    left: 6px;
    width: 7px;
    height: 12px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
  }
}



@keyframes rubberBand2 {
  0% {
    transform: scale(1) rotate(45deg);
  }

  30% {
    transform: scale3d(1.25, .75, 1) rotate(45deg);
  }

  40% {
    transform: scale3d(.75, 1.25, 1) rotate(45deg);
  }

  50% {
    transform: scale3d(1.15, .85, 1) rotate(45deg);
  }

  65% {
    transform: scale3d(.95, 1.05, 1) rotate(45deg);
  }

  75% {
    transform: scale3d(1.05, .95, 1) rotate(45deg);
  }

  100% {
    transform: scaleX(1) rotate(45deg);
  }
}






.rdo-wrap {
  display: inline-block;
  position: relative;
  min-height: 24px;
  vertical-align: top;
  margin-right: 1rem;
}


@media screen and (max-width: 767px) {
  .rdo-wrap {
    min-height: 22px;
  }
}

.rdo-wrap input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.rdo-wrap input+label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding-left: 30px;
  color: #8d8d8d;
  font-size: 16px;
  line-height: 24px;
  user-select: none;
  vertical-align: top;
}

.rdo-wrap input:checked+label {
  font-weight: bold;
  color: #2a2a2a;
}


@media screen and (max-width: 767px) {
  .rdo-wrap input+label {
    font-size: 14px;
    line-height: 22px;
  }
}

.rdo-wrap input+label::before {
  content: ' ';
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 9px;
}

@media screen and (max-width: 767px) {
  .rdo-wrap input+label::before {
    top: 1px;
  }
}

.rdo-wrap input:disabled+label {
  color: #a3a3a3;
}

.rdo-wrap input:disabled+label::before {
  background: #f4f4f4;
}

.rdo-wrap input:checked+label::after {
  content: ' ';
  position: absolute;
  top: 8px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: #368556;
}

.rdo-wrap input:checked+label::before {
  border-color: #368556;
}

@media screen and (max-width: 767px) {
  .rdo-wrap input:checked+label::after {
    top: 5px;
  }
}


.rdo-wrap input[name="star"]+label {
  color: #ef3745;
}

.rdo-wrap input[name="star"]+label::before {
  border-color: #ddd;
}

.rdo-wrap input[name="star"]+label::after {
  background: #006cff;
}

.rdo-btn-wrap {
  display: inline-block;
  position: relative;
  min-height: 24px;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .rdo-btn-wrap {
    min-height: 22px;
  }
}

.rdo-btn-wrap input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.rdo-btn-wrap input+label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 2.5px 15px;
  color: #666;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
  user-select: none;
  vertical-align: top;
  border-radius: 5px;
  border: solid 1px #00b760;
}

@media screen and (max-width: 767px) {
  .rdo-btn-wrap input+label {
    font-size: 14px;
    line-height: 22px;
  }
}

.rdo-btn-wrap input:disabled+label {
  color: #a3a3a3;
}

.rdo-btn-wrap input:disabled+label::before {
  background: #f4f4f4;
}

.rdo-btn-wrap input:checked+label {
  border-color: #00b760;
  background: #00b760;
  color: #fff;
}

/* list */
.thumb-list-wrap {
  overflow: hidden;
  margin-top: 50px;
}

.thumb-list-wrap .lists {
  display: flex;
  flex-wrap: wrap;
  margin-top: -6.071429%;
  margin-left: -4.285714%;
}

.thumb-list-wrap .lists .items {
  width: calc(100% / 3);
  margin-top: 5.821918%;
  padding-left: 4.109589%;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .thumb-list-wrap .lists .items {
    width: 100%;
  }
}

.thumb-list-wrap .lists .items .thumb {
  display: block;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.thumb-list-wrap .lists .items .thumb img {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
}

.thumb-list-wrap .lists .items .thumb.video {
  padding-top: 56.25%;
}

.thumb-list-wrap .lists .items .info {
  position: relative;
  margin-top: 20px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .thumb-list-wrap .lists .items .info {
    margin-top: 15px;
  }
}

.thumb-list-wrap .lists .items .info .eyebrow {
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: keep-all;
  overflow: hidden;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
  color: #a3a3a3;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .thumb-list-wrap .lists .items .info .eyebrow {
    font-size: 14px;
    line-height: 22px;
  }
}

.package-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.package-img {
  position: relative;
  flex: 2;
}

.package-box {
  position: relative;
  padding: 30px;
  background: #e6e6e6;
  color: #000;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  line-height: 1.5;
  border: solid 1px #ddd;
  flex: 1;
}




.package-title {
  font-weight: bold;
  /* font-family: 'Nanum Myeongjo'; */
  margin-bottom: 20px;
}

.package-title h1 {
  font-size: 28px;
}

.package-title h2 {
  font-size: 28px;
}

.package-box ul {
  padding-left: 20px;
  margin-bottom: 50px;
}

.package-box ul li {
  list-style: disc;
}

.package-sale {
  margin-bottom: 30px;
}


.package-sale em {
  text-decoration: line-through;
  color: #000;
  display: block;
  font-family: 'Pretendard';
}

.package-sale span {
  font-size: 32px;
}

.package-wrap a {
  /* font-family: 'Nanum Myeongjo'; */
  color: #00b760;
  line-height: 60px;
  height: 60px;
  letter-spacing: 1px;
}


@media screen and (max-width: 1366px) {
  .package-wrap {
    flex-direction: column;
  }

  .package-wrap img {
    flex: 1;
  }

  .package-box {
    padding: 20px;
    margin-top: 10px;
    display: block;
    flex: 1;
  }

  .package-title h1 {
    font-size: 24px;
  }

  .package-box ul {
    margin-bottom: 20px;
  }

  .package-sale {
    font-size: 16px;
  }

  .package-sale span {
    font-size: 24px;
  }

  .package-box .btn {
    width: 100%;
    padding: 10px;
    height: auto;
    line-height: initial;
  }
}

.like-button {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

.like-button .heart-icon {
  height: 100px;
  width: 100px;
  background: url('/_image/img/img-heart.png');
  background-position: left;
  cursor: pointer;
  position: absolute;
}

.like-button .heart-icon.liked {
  animation: like-anim 0.7s steps(28) forwards;
}

@keyframes like-anim {
  to {
    background-position: right;
  }
}

.like-button .heart-bg {
  background: rgba(255, 192, 200, 0);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 100ms ease;
}

.like-button .heart-bg:hover {
  background: rgba(255, 192, 200, 0.2);
}

.like-button {
  display: flex;
  align-items: center;
}

.like-button .likes-amount {
  color: #888;
  font-weight: 700;
  margin-left: 5px;
  position: absolute;
  top: 10px;
  right: 6px;
}

.my-room {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: solid 1px #dedede;
}

.my-room .my-character {
  position: relative;
  text-align: center;
}

.my-room .my-character .name {
  margin-top: 20px;
  color: #00b760;
  font-size: 22px;
  font-weight: bold;
}

.my-room .my-profile {
  position: relative;
  display: flex;
  flex: 2;
  padding: 30px;
  gap: 30px;
  justify-content: space-between;
  background: #fff;
  border-radius: 0 0 0 20px;
}

.my-room .my-score {
  width: 100%;
}

.my-room .my-score ol {
  text-align: right;
  font-weight: bold;
}

.my-room .my-score .desc {
  /* font-family: 'Nanum Myeongjo'; */
  color: #404040;
  line-height: 1.2;
  font-size: 24px;
}

.my-room .my-score .desc em {
  font-size: 34px;
  color: #000;
}

.my-room .my-score .desc i {
  font-size: 34px;
  color: #fff;
  background: #00b760;
  border-radius: 20px;
  padding: 5px 10px;
  display: inline-block;
}

.my-room .my-score .tier {
  padding: 20px;
  margin: 20px 0;
  text-align: center;
  border: solid 1px #ccc;
  border-width: 1px 0px 1px 0;
  text-transform: uppercase;
  font-size: 20px;
  word-break: keep-all;
}

.my-room .my-score .tier em {
  font-size: 22px;
  color: #00b760;
  font-weight: bold;
}


.my-room .my-rating {
  display: flex;
}

.my-room .my-rating.bg {
  background: #00b760;
}

.my-room .my-level {
  background: #f7f7f7;
  padding: 30px;
  flex: 1.2;
  font-weight: bold;
  /* font-family: 'Nanum Myeongjo'; */
  border-radius: 0 0 20px 0;
}

.my-room .my-level h2 {
  color: #00b760;
}


.my-room .my-level .level-box {
  display: flex;
  gap: 20px;
  padding: 10% 0;
  font-size: 24px;
}

.my-room .my-level .level-rating {
  position: relative;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 110px;
}

.my-room .my-level .level-rating span {
  position: absolute;
  bottom: 10px;
  font-size: 30px;
  text-align: center;
  margin: 0 auto;
}


.my-room .my-level .level-test {
  position: relative;
  display: flex;
  gap: 20px;
}

.my-room .my-level .level-test .line {
  border-left: dotted 1px #ddd;
  border-width: thick;
}

.my-room .my-level .level-day {
  position: relative;
  margin: 0 auto;
  color: #565656;
  line-height: 1.5;
}

.my-room .my-level .level-day.center {
  display: flex;
  gap: 10px;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.my-room .my-level .level-day span {
  text-decoration: underline;
}

.my-room .my-level .eval {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  color: #565656;
}

.my-room .my-level .eval span {
  align-items: flex-start;
  margin-bottom: 30px;
}

.my-room .my-level .eval p {
  margin-top: 30px;
  align-items: flex-end;
}

.my-room .my-level .eval b {
  font-size: 70px;
  color: #00b760;
}


.my-room .my-service {
  background: #00b760;
  color: #fff;
  display: flex;
  padding: 20px;
  line-height: 1.2;
  word-break: keep-all;
}

.my-room .my-service h3 {
  /* font-family: 'Nanum Myeongjo'; */
  font-size: 20px;
  font-weight: bold;
  color: #ffd622;
}

.my-room .my-service ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 10px;
  text-align: center;
  flex: 1.5;
}

.my-room .my-service .my-task {
  display: flex;
  justify-content: space-evenly;
  background: #583177;
  gap: 10px;
  padding: 30px;
  border-radius: 20px;
  flex: 0 0 35%;
}

.my-room .my-service .my-task p {
  position: relative;
  font-size: 16px;
  gap: 10px;
  font-weight: bold;
}

.my-room .my-service .my-task p a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.my-room .my-service .my-task p span {
  /* font-family: 'Nanum Myeongjo'; */
  font-size: 28px;
  font-weight: bold;
}

.my-room .my-service .my-task p i {
  position: absolute;
  width: 20px;
  top: -15px;
  right: 0;
}

@media screen and (max-width: 1024px) {
  .my-room .my-rating.bg {
    flex-direction: column;
    background: none;
  }

  .my-room .my-profile {
    flex-direction: column;
    padding: 10px;
  }

  .my-score ol {
    display: none;
  }

  .my-room .my-service {
    flex-direction: column;
    gap: 20px;
  }

  .my-room .my-level {
    padding: 20px;
  }

  .my-room .my-level .level-test {
    gap: 10px;
    justify-content: space-around;
  }

  .my-room .my-level .level-day.center {
    margin: 0;
    gap: 0;
    align-items: flex-start;
  }

  .my-room .my-level .eval span,
  .my-room .my-level .eval p {
    margin: 0;
    font-size: 20px;
  }

  .my-room .my-level .eval b {
    font-size: 36px;
  }

  .my-room .my-score .desc {
    font-size: 20px;
  }
}

@media screen and (max-width: 520px) {
  .my-room .my-level .level-box {
    flex-direction: column;
    padding: 10px 0;
  }
}




/* my-room layout분리시 */
.my-room.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: none;
}

.my-room.split .my-rating {
  border-radius: 20px;
  border: solid 1px #ddd;
  overflow: hidden;
}


.my-room.split .my-level {
  position: relative;
  border-radius: 20px;
  border: solid 1px #ddd;
  overflow: hidden;
  background: #fff;
  background: linear-gradient(to bottom, #f7f7f7 50%, #fff 50%);
}

.my-room.split .my-level .level-box {
  position: relative;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

.my-room.split .level-left {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.my-room.split .level-right {
  position: relative;
  flex: 1;
}

.my-room.split .my-level .eval .average {
  position: relative;
}

.my-room.split .my-level .eval .average img {
  margin-bottom: -75px;
}

.my-room.split .my-level .eval .average p {
  color: #fff;
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 28px;
  margin: 0;
}

.my-room.split .my-level .eval span {
  background: #8cc74c;
  padding: 10px 20px;
  border-radius: 30px;
  display: block;
  font-size: 18px;
  position: absolute;
  right: 25%;
  margin-bottom: 0;
  color: #000;
}

/* 레벨 위 */
.my-room.split .my-level .test-day {
  margin-top: 30px;
  color: #dffd38;
  padding: 10px 20px;
  border-radius: 20px;
  background: #333;
  display: inline-block;
}

/* 레벨 아래 */
.my-room.split .tbl-wrap {
  margin-top: 50px;
}

.my-room.split .my-level .tbl-wrap .table.col-tbl thead {
  background: #fff;
}

.my-room.split .my-level .tbl-wrap .table.col-tbl,
.my-room.split .my-level .tbl-wrap .table.col-tbl thead,
.my-room.split .my-level .tbl-wrap .table.col-tbl thead th,
.my-room.split .my-level .tbl-wrap .table.col-tbl tbody td {
  border: none;
}

.my-room.split .my-level .tbl-wrap .table.col-tbl thead tr:first-of-type th {
  /* font-family: 'Nanum Myeongjo'; */
  text-align: left;
  color: #00b760;
  font-size: 20px;
}

.my-room.split .my-level .tbl-wrap .table.col-tbl thead tr th {
  font-family: 'Pretendard';
  font-size: 20px;
}

.my-room.split .my-level .tbl-wrap .table.col-tbl tbody td {
  font-size: 30px;
}

@media screen and (max-width: 1024px) {
  .my-room .my-level .level-day {
    font-size: 24px;
  }

  .my-room.split .my-level .level-box {
    flex-direction: column;
    gap: 0;
  }

  .my-room.split .level-left {
    margin: 20px 0;
    justify-content: flex-start;
  }

  .my-room.split .level-right {
    display: none;
  }
}

@media screen and (max-width: 520px) {
  .my-room.split .level-left {
    flex-direction: column;
  }

  .my-room .my-level .level-day {
    font-size: 24px;
    word-break: keep-all;
  }
}




/*  .tbl-wrap .table{
  border:none;
} */

/* 단계별 상태 스타일 */
.step-box {
  padding: 0 10px 10px 10px;
}

.step-state {
  padding: 10px 0 15px;
  margin-top: 15px;
  overflow-x: scroll;
}

.step-state::-webkit-scrollbar {
  display: none;
}

.step-state ul {
  position: relative;
  display: flex;
}

.step-state ul:after {
  content: '';
  display: block;
  clear: both
}

.step-state ul li {
  flex: 1;
  position: relative;
  width: 20%;
  font-weight: bold;
  text-align: center;
  color: #333;
}


.step-state ul li:first-child {
  text-align: left;
}

.step-state ul li:last-child {
  text-align: right;
}

/* 도전중, 달성 텍스트 영역 */
.step-state ul li p:after {
  position: absolute;
  width: 41px;
  height: 24px;
  margin-right: -20px;
  top: 20px;
  right: 0;
  color: #fff;
  font-size: 12px;
  letter-spacing: -.5px;
}



.step-state ul li span {
  display: block;
  margin-top: 2px;
  color: #222;
  font-size: 16px;
  padding-top: 40px;
}

@media screen and (max-width: 1024px) {
  .step-state ul li span {
    font-size: 14px;
  }
}



/* 회색 진행바 생성 */
.step-state ul li:before {
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  height: 10px;
  background: #ddd;
  content: ''
}

/* 첫 번째 진행바 반만 생성*/
.step-state ul li:nth-child(1):before {
  left: 0;
  border-radius: 20px 0px 0 20px;
}

/* 마지막 진행바 반만 생성*/
.step-state ul li:nth-child(5):before {
  right: 0;
  border-radius: 0 20px 20px 0;
}

/* 화살표 상태 아이콘 */


/* 활성화 진행바 및 활성화 화살표 아이콘 표시 */
/* 활성화 상태바 */
.step-state.step1 ul li:nth-child(1):before,
.step-state.step2 ul li:nth-child(-n+2):before,
.step-state.step2-ing ul li:nth-child(-n+2):before,
.step-state.step3 ul li:nth-child(-n+3):before,
.step-state.step3-ing ul li:nth-child(-n+3):before,
.step-state.step4 ul li:nth-child(-n+4):before,
.step-state.step4-ing ul li:nth-child(-n+4):before,
.step-state.step5 ul li:nth-child(-n+5):before {
  background: #00b760
}

/* 활성화 아이콘 표시 */
.step-state.step1 ul li:nth-child(1):after,
.step-state.step2 ul li:nth-child(-n+2):after,
.step-state.step2-ing ul li:nth-child(-n+2):after,
.step-state.step3 ul li:nth-child(-n+3):after,
.step-state.step3-ing ul li:nth-child(-n+3):after,
.step-state.step4 ul li:nth-child(-n+4):after,
.step-state.step4-ing ul li:nth-child(-n+4):after,
.step-state.step5 ul li:nth-child(-n+5):after {
  background-position: -20px 0
}

/* 도전 중일 경우의 1/2 영역 비활성화 상태바 영역 */
.step-state ul li p:before {
  position: absolute;
  top: 35px;
  left: 50%;
  right: 0;
  height: 10px;
  content: '';
}

.step-state.step2 ul li:nth-child(2) p:before,
.step-state.step3 ul li:nth-child(3) p:before,
.step-state.step4 ul li:nth-child(4) p:before {
  background: #ddd
}

/* "도전중" 텍스트 표시 */
.step-state.step1 ul li:nth-child(1) p:after,
.step-state.step2-ing ul li:nth-child(2) p:after,
.step-state.step3-ing ul li:nth-child(3) p:after,
.step-state.step4-ing ul li:nth-child(4) p:after {
  content: '도전중';
}

/* "달성" 텍스트 표시 */
.step-state.step2 ul li:nth-child(2) p:after,
.step-state.step3 ul li:nth-child(3) p:after,
.step-state.step4 ul li:nth-child(4) p:after,
.step-state.step5 ul li:nth-child(5) p:after {
  content: '달성';
  right: 50%;
  color: red;
}

.step-state.step5 ul li:nth-child(5) p:after {
  right: 15%;
}


.thumb-list-wrap .lists .items .info .tit {
  display: block;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: keep-all;
  overflow: hidden;
  padding: 0 20px;
  text-align: center;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .thumb-list-wrap .lists .items .info .tit {
    font-size: 18px;
    line-height: 26px;
  }
}

@media screen and (min-width: 1025px) {

  .thumb-list-wrap .lists .items .info .tit:hover,
  .thumb-list-wrap .lists .items .info .tit:active {
    text-decoration: underline;
  }
}

.thumb-list-wrap .lists .items.info .tit,
.thumb-list-wrap .lists .items .info .desc {
  margin-top: 5px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.3px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  font-weight: 500;
  -webkit-line-clamp: 5;
  line-clamp:5;
  -webkit-box-orient: vertical;
}

.thumb-list-wrap .lists .items .info .desc {
  width: fit-content;
  margin: 0 auto;
  -webkit-line-clamp: 1;
  line-clamp:1;
  -webkit-box-orient: vertical;
}

.thumb-list-wrap .lists .items .info .desc.new {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding-right: 20px;
}

.thumb-list-wrap .lists .items .info .desc.new::after {
  content: 'N';
  position: absolute;
  right: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  background: #a02013;
  color: #fff;
  border-radius: 4px;
  margin-top: -8px;
  font-family: sans-serif;
  font-size: 11px;
  line-height: 15px;
  text-align: center;
  animation: new 2s ease-in-out infinite;
}


.thumb-list-wrap .lists .items .info .desc.hold {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding-left: 20px;
}

.thumb-list-wrap .lists .items .info .desc.hold::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 15px;
  background: url(/_image/icon/icon-hold.png)center center /contain no-repeat;
  margin-top: -8px;
}




@media screen and (max-width: 767px) {
  .thumb-list-wrap .lists .items .info .desc {
    font-size: 14px;
    line-height: 22px;
  }
}

.thumb-list-wrap .lists .items .info .date {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 700;
}

.thumb-list-wrap .lists .items .info .date span {
  font-weight: normal;
  font-size: 14px;
}

.thumb-list-wrap .lists .items .info .src {
  display: none !important;
}

.masonry-list-wrap {
  position: relative;
  overflow: hidden;
}

.masonry-list-wrap .item-wrap {
  margin-top: -4.285714%;
  margin-left: -2.142857%;
}

.masonry-list-wrap .item-wrap::after {
  content: " ";
  display: block;
  clear: both;
}

.masonry-list-wrap .item-wrap .items {
  float: left;
  /* width: 33.3%; */
  width: 25%;
  margin-top: 4.195804%;
  padding-left: 2.097902%;
}

@media screen and (max-width: 1024px) {
  .masonry-list-wrap .item-wrap .items {
    width: 33.3%;
  }
}

@media screen and (max-width: 767px) {
  .masonry-list-wrap .item-wrap .items {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .masonry-list-wrap .item-wrap .items {
    width: 100%;
  }
}

.masonry-list-wrap .item-wrap .items .thumb {
  position: relative;
  display: block;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .masonry-list-wrap .item-wrap .items .thumb {
    margin-bottom: 15px;
  }
}

.masonry-list-wrap .item-wrap .items .thumb img {
  width: 100%;
  filter: brightness(.8);
  transition: all .5s;
}

.masonry-list-wrap .item-wrap .items .thumb img:hover {
  transform: scale(1.1);
  filter: brightness(1);
}


.masonry-list-wrap .item-wrap .items .info {
  position: relative;
}

.masonry-list-wrap .item-wrap .items .info .tit {
  position: relative;
  display: block;
  padding-top: 16px;
  font-size: 20px;
  line-height: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp:2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 700;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .masonry-list-wrap .item-wrap .items .info .tit {
    font-size: 18px;
    line-height: 26px;
  }
}

@media screen and (max-width: 767px) {
  .masonry-list-wrap .item-wrap .items .info .tit {
    padding-top: 10px;
  }
}

/* .masonry-list-wrap .item-wrap .items .info .tit::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 36px;
    height: 4px;
    background: #9a3175;
} */

@media screen and (max-width: 767px) {
  .masonry-list-wrap .item-wrap .items .info .tit::before {
    height: 2px;
  }
}

@media screen and (min-width: 1025px) {

  .masonry-list-wrap .item-wrap .items .info .tit:hover,
  .masonry-list-wrap .item-wrap .items .info .tit:active {
    text-decoration: underline;
  }
}

.masonry-list-wrap .item-wrap .items .info .desc {
  margin-top: 10px;
  color: #555;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp:4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .masonry-list-wrap .item-wrap .items .info .desc {
    font-size: 14px;
    line-height: 22px;
  }
}

.masonry-list-wrap .item-wrap .items .info .date {
  margin-top: 10px;
  color: #a3a3a3;
  font-size: 14px;
  line-height: 22px;

}

@media screen and (max-width: 767px) {
  .masonry-list-wrap .item-wrap .items .info .date {
    font-size: 13px;
  }
}

.masonry-list-wrap .item-wrap .items .info .src {
  display: none !important;
}


.popup.movie-box {
  bordeR: solid 1px #ddd;
  border-radius: 20px;
  overflow: hidden;
  border-bottom: 0;
  background: #000;
  padding: 30px;
}

.popup .movie-title {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-transform: capitalize;
}

.movie-answer {
  display: flex;
  align-items: center;
  font-weight: bold;
  gap: 10px;
  color: #fff;
}

.movie-answer input {
  flex: 1;
  max-width: initial;
}

.popup .movie {
  position: relative;
  width: 100%;
  background: #fff;
  margin: 20px 0;
  user-select: none;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  /* 16:9 비율*/
}


.popup .movie::before {
  content: "";
  bottom: 0;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: calc(100% + 35px);
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.popup .movie>* {
  background-size: cover;

}

.popup .movie img,
.popup .movie video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}




.movie-quiz-wrap {
  position: relative;
}

.movie-quiz-wrap .movie-quiz-title {
  font-weight: bold;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 10px;
}

.moive-bottom-content {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.movie-progressbar {
  padding: 10px 30px;
  color: #fff;
  background: #333;
  border-radius: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.movie-progressbar progress {
  flex: 1;
}


.progress {
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 30px;
  flex: 1;
}

.prog-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  background-color: #337ab7;
  border-radius: 20px;
  -webkit-box-shadow: inset 0 -1px 0 rgb(0 0 0 / 15%);
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 15%);
  transition: width .6s ease;
  -webkit-transition: width .6s ease;
  /* keyframe 사용으로 Animation 효과도 줄 수 있다. */
  -o-transition: width .6s ease;
  text-indent: -9999px;

}

.movie-btn-wrap {
  display: flex;
  gap: 10px;
}

.col_info {
  background-color: #8c5db1;
}

.col_success {
  background-color: #00b760;
}




.movie-out-btn,
.movie-next-btn,
.movie-com-btn {
  background: #828282;
  border: solid 2px transparent;
  color: #fff;
  font-weight: bold;
  height: 35px;
  padding: 0px 45px !important;
  display: block;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.movie-next-btn {
  background: #00b760;
  color: #000;
  border: solid 2px transparent;
}

.movie-com-btn {
  background: #8c5db1;
  color: #fff;
  border: solid 2px transparent;
}

.movie-out-btn:hover {
  background: #000;
  color: #fff;
  border: solid 2px#fff;
}

.movie-next-btn:hover {
  background: #fff;
  color: #8c5db1;
  border: solid 2px #8c5db1;
}

.movie-com-btn:hover {
  background: #00b760;
  color: #fff;
  border: solid 2px #fff;
}

@media screen and (max-width: 1024px) {

  .popup .movie-title,
  .movie-quiz-wrap .movie-quiz-title {
    font-size: 18px;
    line-height: 1.5
  }

  .popup.movie-box {
    padding: 16px;
  }

  .moive-bottom-content {
    flex-direction: column;
  }

  .movie-btn-wrap a {
    padding: 0px 25px !important;
  }
}

@media screen and (max-width: 520px) {}



.img-popup-list {
  overflow: hidden;
}

.img-popup-list ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -50px;
  margin-top: -4.6875%;
}

@media screen and (max-width: 1024px) {
  .img-popup-list ul {
    margin-left: -30px;
  }
}

@media screen and (max-width: 767px) {
  .img-popup-list ul {
    margin-left: -10px;
  }
}

.img-popup-list ul li {
  width: 25%;
  padding-left: 50px;
  margin-top: 4.511278%;
}

@media screen and (max-width: 1024px) {
  .img-popup-list ul li {
    padding-left: 30px;
  }
}

@media screen and (max-width: 767px) {
  .img-popup-list ul li {
    width: 50%;
    padding-left: 10px;
  }
}

.img-popup-list ul li .view-img {
  position: relative;
  display: block;
  height: 100%;
  cursor: pointer;
  border: 1px solid #ddd;
}

.img-popup-list ul li .view-img::before {
  content: ' ';
  display: inline-block;
  width: 1px;
  height: 100%;
  margin-left: -1px;
  vertical-align: middle;
}

.img-popup-list ul li .view-img img {
  vertical-align: middle;
}

.img-popup-list ul li .view-img::after {
  display: none;
  content: ' ';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  background-image: url("/_image/bg/bg-more.png");
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (min-width: 1025px) {
  .img-popup-list ul li .view-img:hover::after {
    display: block;
  }
}



.popup.level-top {
  bordeR: solid 1px #ddd;
  border-radius: 20px;
  overflow: hidden;
  border-bottom: 0;
}

.popup.level-top thead tr:first-child {
  font-weight: bold;
  color: #00b760;
}


.level-title {
  font-weight: 600;
  display: flex;
  background: #00b760;
  color: #fff;
  justify-content: space-between;
  padding: 20px 40px;
  letter-spacing: 1px;
}

.level-title p {
  /* font-family: 'Nanum Myeongjo'; */
  color: #ffe200;
}

.level-title span>em {
  opacity: 0.5;
  margin-right: 20px;
}

.level-title em {
  color: #fff;
}



@media screen and (max-width: 767px) {
  .level-title {
    padding: 10px;
    font-size: 14px;
    line-height: 1.5;
    word-break: keep-all;
  }

  .level-title span>em {
    margin-right: 10px;
  }
}



.popup.level-bottom {
  position: relative;
}


.img-list-wrap {
  overflow: hidden;
}

.img-list-wrap ul {
  font-size: 0;
  margin-top: -20px;
  margin-left: -10px;
}

.img-list-wrap ul li {
  display: inline-block;
  width: 50%;
  margin-top: 20px;
  padding-left: 10px;
  text-align: center;
  vertical-align: top;
}

.img-list-wrap ul li .caption {
  margin-top: 5px;
  font-size: 14px;
  line-height: 22px;

}

@media screen and (max-width: 767px) {
  .img-list-wrap ul li .caption {
    font-size: 13px;
  }
}

.img-list-wrap.block ul {
  margin: 0;
}

.img-list-wrap.block ul li {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding-left: 0;
}

.img-list-wrap.block ul li:first-child {
  margin-top: 0;
}

.slt-lists {
  font-size: 0;
  overflow: hidden;
}

.slt-lists ul {
  margin-top: -10px;
}

.slt-lists li {
  display: inline-block;
  vertical-align: top;
  margin-top: 10px;
}

@media screen and (max-width: 1024px) {
  .slt-lists.auto ul {
    margin-top: 0;
  }
}

.slt-lists.auto li {
  margin-right: 40px;
}

.slt-lists.auto li:last-child {
  margin-left: 0;
}

@media screen and (max-width: 1024px) {
  .slt-lists.auto li {
    display: block;
    margin-right: 0;
    margin-top: 5px;
  }

  .slt-lists.auto li:first-child {
    margin-top: 0;
  }
}

.slt-lists.size5 li {
  width: 20%;
}

@media screen and (max-width: 1024px) {
  .slt-lists.size5 li {
    width: 33.3%;
  }
}

@media screen and (max-width: 767px) {
  .slt-lists.size5 li {
    display: block;
    width: 100%;
  }
}

.sns-login-list {
  font-size: 0;
}

.sns-login-list li {
  display: inline-block;
  vertical-align: top;
  margin-left: 5px;
}

.sns-login-list li:first-child {
  margin-left: 0;
}

.sns-login-list li a {
  display: block;
  width: 46px;
  height: 46px;
  background-image: url("/_image/icon/icon-snslogin.png");
  background-repeat: no-repeat;
}

.sns-login-list li a.sns01 {
  background-position: 0 0;
}

.sns-login-list li a.sns02 {
  background-position: right 0;
}

.sns-login-list li a.off {
  background-position-y: bottom;
}

.bullet-list li {
  padding-left: 14px;
  color: inherit;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
}

@media screen and (max-width: 767px) {
  .bullet-list li {
    font-size: 14px;
    line-height: 22px;
  }
}

.bullet-list li::before {
  content: '-';
  display: inline-block;
  vertical-align: top;
  width: 14px;
  margin-left: -14px;
}

.bullet-list li sup {
  display: inline-block;
  vertical-align: top;
  font-size: 0.8em;
  line-height: 1;
}

.bullet-list.dot li {
  margin-top: 5px;
}

.bullet-list.dot li:first-child {
  margin-top: 0;
}

.bullet-list.dot li::before {
  content: '·';
}


/* 쿠폰 모달 */
#couponPopup {
  position: relative;
  z-index: 10;
  display: none;
}

.download-coupon {
  position: relative;
}

.coupon-list {
  position: relative;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}


@media screen and (max-width: 767px) {
  .coupon-list {
    flex-direction: column;
  }
}

.coupon-list .desc {
  margin-top: 10px;
}

/* 쿠폰 모달 */
/* 아이콘 사이렌 */
.siren-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
}

.icon-siren {
  width: 32px;
}

@media screen and (max-width: 767px) {
  .icon-siren {
    width: 22px;
  }
}

/* modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 1000;
  outline: 0;
}

.modal .modal-wrap {
  display: flex;
  align-items: center;
  width: auto;
  max-width: 520px;
  height: calc(100% - 140px);
  margin: 70px auto;
}

.modal .modal-wrap.tablets {
  max-width: 767px;
}

.modal .modal-wrap .modal-container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 5px 2px 10px 0px rgba(0, 0, 0, 0.5);
  z-index: 1010;
  overflow: hidden;
}

.modal .modal-wrap .modal-container .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px 0;
}

@media screen and (max-width: 767px) {
  .modal .modal-wrap .modal-container .modal-header {
    padding: 30px 20px 10px 20px !important;
  }
}

.modal .modal-wrap .modal-container .modal-header .modal-title {
  padding-right: 20px;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: keep-all;
  overflow: hidden;
  color: #000;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .modal .modal-wrap .modal-container .modal-header .modal-title {
    font-size: 20px !important;
    line-height: 28px !important;
  }
}

.modal .modal-wrap .modal-container .modal-header .btn-close {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
}

.modal .modal-wrap .modal-container .modal-header .btn-close::before,
.modal .modal-wrap .modal-container .modal-header .btn-close::after {
  content: ' ';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 24px;
  margin-top: -12px;
  margin-left: -1px;
  background: #333;
  border-radius: 5px;
}

.modal .modal-wrap .modal-container .modal-header .btn-close::before {
  transform: rotate(45deg);
}

.modal .modal-wrap .modal-container .modal-header .btn-close::after {
  transform: rotate(-45deg);
}

.modal .modal-wrap .modal-container .modal-body {
  max-height: 100%;
  overflow-y: auto;
  padding: 20px 30px;
}

/* 스크롤기능은살리고,스크롤바만가리기 */
.modal .modal-wrap .modal-container .modal-body::-webkit-scrollbar {
  display: none;
}


/* 스크롤바 가로 사이즈 */
::-webkit-scrollbar {
  width: 5px;
}

/* 스크롤바 막대기 */
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #00b760;
}

/* 스크롤바 백그라운드 */
::-webkit-scrollbar-track {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .modal .modal-wrap .modal-container .modal-body {
    padding: 10px 20px 20px;
  }
}

.modal .modal-footer {
  padding: 0 20px 30px 20px;
}

.modal .modal-content {
  position: relative;
  color: #000;
  line-height: 1.6;
  word-break: keep-all;
}


.modal-wrap.product-exp {
  max-width: 1000px;
}

.modal-wrap.product-exp h2 {
  font-weight: bold;
  line-height: 1.2;
  margin-top: 10px;
}

.modal-wrap .product-exp-info {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 10px !important;
}

.modal-wrap.product-exp .point {
  color: #24a8d7;
  font-size: 20px;
}

.modal-wrap.product-exp .bg_point {
  background: #24a8d7;
  color: #fff;
  padding: 3px;
}

.modal-wrap.product-exp .title {
  background: #24a8d7;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}

.modal-wrap.product-exp .line {
  position: relative !important;
  border: solid 2px #24a8d7 !important;
  border-radius: 5px !important;
  width: fit-content !important;
  margin: 0 auto !important;
  text-align: center !important;
  height: 100% !important;
  padding: 20px !important;
  margin-top: -20px !important;
  z-index: -1 !important;
}


.modal-wrap.product-exp .graph {
  position: relative;
  border: solid 1px #ddd;
  width: fit-content;
  margin: 0 auto;
}



.modal-wrap.product-exp .inner_point {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
}


#subscribe-popup .modal-body{
padding-bottom: 30px;
}

#subscribe-popup .modal-container{
  background:#f2f0e7;
}

#subscribe-popup  .modal-wrap .modal-container .modal-header{
  justify-content: center;
  text-align: center;
  padding: 30px 30px 0;
}

#subscribe-popup .modal-wrap .modal-container .modal-header .modal-title{
    padding-right: 0;
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: -0.5px;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: keep-all;
    overflow: hidden;
    color: #000;
    font-weight: 500;
}

#subscribe-popup .modal-wrap .modal-container .modal-header .btn-close{
  position: relative;
  width: 25px;
  height: 25px;
  padding: 25px;
  text-align: right;
  margin-left: auto;
  position: absolute;
  top: 0;
  right: 0;
}

#subscribe-popup .desc{
  font-size: 20px;
  word-break: keep-all;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 300;
  color:#231f20;
}


#subscribe-popup .subscribe-lists{
  position: relative;
}

#subscribe-popup .subscribe-lists ul{
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: space-between;
  margin-bottom: 25px;
  max-height: 360px;
  overflow: auto;
  overflow-x: hidden;
  gap:10px;
}

#subscribe-popup .subscribe-lists ul::-webkit-scrollbar {
  display: none;
}



#subscribe-popup .subscribe-lists ul li{
  display: flex;
  align-items: center;
  flex-basis: 100%;
  padding:10px;
  gap: 10px;
  background: none;
  border:none;
}

#subscribe-popup .subscribe-lists ul > li{
  padding:5px 10px;
}

#subscribe-popup .subscribe-lists ul li span.rdo-wrap{
  width:100%;
  margin:0;
}

#subscribe-popup .subscribe-lists ul li span.rdo-wrap input:checked+label::before{
  top: 50%;
  transform: translate(-50%, -50%);
  left: 10px;
  border-color:#ddd;
}

#subscribe-popup .subscribe-lists ul li span.rdo-wrap input+label::before{
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 100%;
  left:10px;
}
/* #subscribe-popup .subscribe-lists ul li span.rdo-wrap  input+label::before{
  
} */

#subscribe-popup .subscribe-lists ul li span.rdo-wrap input:checked+label::after{
  top: 50%;
  transform: translate(-50%, -50%);
  background: url(/_image/icon/icon_rainbow.png)center center /contain no-repeat;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  left:10px;
}


#subscribe-popup .subscribe-lists ul li label{
  width:100%;
}



#subscribe-popup .subscribe-lists ul li label ol{
  position: relative;
  background: #fff;
  display: flex; 
  border-radius: 10px;
  border:solid 3px transparent;
}


#subscribe-popup .subscribe-lists ul li span.rdo-wrap input:checked+label ol{
  border: 3px solid transparent;
  border-radius: 10px;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(90deg, 
      #e40f4b 0%,
      #ec683b 15%,
      #f1a230 30%, 
      #9cb443 45%, 
      #2bb560 60%,
      #0fb09c 75%,
      #08adbe 95%,
      #00aadc 100%
      );
  background-origin: border-box;
  background-clip: content-box, border-box;
}


/* #subscribe-popup .subscribe-lists ul li span.rdo-wrap input:checked+label ol::before{
  position: absolute;
  content: '';
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-radius: 10px;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(90deg, 
      #e40f4b 0%,
      #ec683b 15%,
      #f1a230 30%, 
      #9cb443 45%, 
      #2bb560 60%,
      #0fb09c 75%,
      #08adbe 95%,
      #00aadc 100%
      );
  background-origin: border-box;
  background-clip: content-box, border-box;
} */




#subscribe-popup .subscribe-lists ul li label ol li{
  flex-direction: column;
  border-right:solid 1px #ddd;
  border-radius: 0;
}



#subscribe-popup .subscribe-lists ul li label ol li:last-of-type{
  border:none;
}

#subscribe-popup .subscribe-lists ul li label ol li p{
  font-size:16px;
  color:#000;
  font-weight: 300;
}

#subscribe-popup .subscribe-lists ul li label ol li:first-of-type em{
  font-size:20px;
}

#subscribe-popup .subscribe-lists ul li label ol li em{
  font-size:28px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  #subscribe-popup .modal-wrap{
    height: calc(100% - 70px);
    margin:35px auto;
  }

  #subscribe-popup .modal-body{
    padding:10px;
    padding-bottom: 25px;
  }

  #subscribe-popup .subscribe-lists ul{
    max-height: 310px;
    padding-bottom: 10px; 
    /* 마지막 리스트여백 */
  }
  #subscribe-popup .subscribe-lists ul > li{
    padding:0;
  }
  #subscribe-popup .subscribe-lists ul li label{
    padding-left:25px;
  }
  
  #subscribe-popup .subscribe-lists ul li label ol li p{
    font-size:14px;
  }
  #subscribe-popup .subscribe-lists ul li label ol li:first-of-type em{
    font-size:16px;
  }
  #subscribe-popup .subscribe-lists ul li label ol li em{
    font-size: 20px;
  }
  #subscribe-popup .subscribe-lists ul li span.rdo-wrap input+label::before{
    width:20px;
    height: 20px;
  }

  #subscribe-popup .subscribe-lists ul li span.rdo-wrap input:checked+label::after{
    width:12px;
    height: 12px;
  }
  #subscribe-popup .btn span{
    font-size:18px;
  }
}

.product-exp-info .thumb {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
}

.product-exp-info .thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.product-exp-info .product-exp-desc {
  position: relative !important;
  flex: 2 !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  margin: 0 auto !important;
  justify-content: center !important;
  align-items: center !important;
}

.product-exp-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.product-exp-info .product-exp-desc .fw-mj {
  margin-top: 20px;
}



@media screen and (max-width: 767px) {

  .product-exp-title,
  .product-exp-desc .point {
    font-size: 19px !important;
  }
}

.certification {
  position: relative;
  text-align: center;
  margin: 0 auto;
}


/* 별점 */
.rating_wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  padding: 0 10px;
}

.rating_box {
  display: flex;
}

.rating {
  position: relative;
  color: #ddd;
  font-size: 26px;
  text-align: center;
}

.rating input {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.rating_star {
  width: 0;
  color: #ef3745;
  position: absolute;
  left: 0;
  right: 0;
  overflow: hidden;
  pointer-events: none;
}

/* 별점 */

.addr {
  width: 120px;
  height: 30px;
}


.video-modal-area {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 80%;
  max-width: 710px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 60px 20px 50px;
  box-shadow: 5px 2px 10px 0px rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%);
  z-index: 1010;
}

@media screen and (max-width: 767px) {
  .video-modal-area {
    width: 90%;
    padding: 50px 12px 40px;
  }
}

.video-modal-area .video-area {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  background: #000;
  overflow: hidden;
}

.video-modal-area .video-area iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-modal-area .video-info {
  margin-top: 26px;
}

.video-modal-area .video-info .tit {
  position: relative;
  padding-top: 16px;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.5px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .video-modal-area .video-info .tit {
    font-size: 20px;
    line-height: 28px;
  }
}

.video-modal-area .video-info .tit::before {
  content: ' ';
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 4px;
  background: #00b760;
}

.video-modal-area .video-info .desc {
  margin-top: 15px;
  color: #a3a3a3;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
}

@media screen and (max-width: 767px) {
  .video-modal-area .video-info .desc {
    font-size: 14px;
    line-height: 22px;
  }
}

.video-modal-area .video-info .date {
  margin-top: 6px;
  color: #a3a3a3;
  font-size: 14px;
  line-height: 22px;

}

@media screen and (max-width: 767px) {
  .video-modal-area .video-info .date {
    font-size: 13px;
  }
}

.video-modal-area .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
}

.video-modal-area .btn-close::before,
.video-modal-area .btn-close::after {
  content: ' ';
  position: absolute;
  width: 2px;
  height: 24px;
  bottom: 10px;
  right: 29px;
  background: #111;
}

@media screen and (max-width: 767px) {

  .video-modal-area .btn-close::before,
  .video-modal-area .btn-close::after {
    right: 21px;
  }
}

.video-modal-area .btn-close::before {
  transform: rotate(45deg);
}

.video-modal-area .btn-close::after {
  transform: rotate(-45deg);
}

/* pagination */
.pagination {
  margin-top: 40px;
  font-size: 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 30px;
  }
}

.pagination .control-btn,
.pagination .page-btn-wrap,
.pagination .page-btn-wrap .now,
.pagination .page-btn-wrap a {
  display: inline-block;
  vertical-align: top;
}

.pagination .control-btn,
.pagination .page-btn-wrap .now,
.pagination .page-btn-wrap a {
  width: 34px;
  height: 34px;
  font-size: 16px;
  color: #555;
  border: 1px solid transparent;
  line-height: 34px;
  background: transparent;

}

@media screen and (max-width: 767px) {

  .pagination .control-btn,
  .pagination .page-btn-wrap .now,
  .pagination .page-btn-wrap a {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;

  }
}

.pagination .control-btn {
  position: relative;
  margin: 0 3px;
}

@media screen and (max-width: 767px) {
  .pagination .control-btn {
    margin: 0 2px;
  }
}

.pagination .control-btn::before,
.pagination .control-btn::after {
  content: ' ';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border: 2px solid #555;
  border-bottom: none;
  border-right: none;
}

@media screen and (max-width: 767px) {

  .pagination .control-btn::before,
  .pagination .control-btn::after {
    width: 8px;
    height: 8px;
    margin-top: -4px;
  }
}

.pagination .control-btn.prev::before,
.pagination .control-btn.prev::after,
.pagination .control-btn.pprev::before,
.pagination .control-btn.pprev::after {
  transform: rotate(-45deg);
}

.pagination .control-btn.prev::before {
  margin-left: -3px;
}

.pagination .control-btn.pprev::before {
  margin-left: -5px;
}

.pagination .control-btn.next::before,
.pagination .control-btn.next::after,
.pagination .control-btn.nnext::before,
.pagination .control-btn.nnext::after {
  transform: rotate(135deg);
}

.pagination .control-btn.next::before {
  margin-left: -8px;
}

@media screen and (max-width: 767px) {
  .pagination .control-btn.next::before {
    margin-left: -6px;
  }
}

.pagination .control-btn.nnext::before {
  margin-left: -11px;
}

@media screen and (max-width: 767px) {
  .pagination .control-btn.nnext::before {
    margin-left: -8px;
  }
}

.pagination .control-btn.nnext::after {
  margin-left: -5px;
}

@media screen and (max-width: 767px) {
  .pagination .control-btn.nnext::after {
    margin-left: -3px;
  }
}

.pagination .control-btn.prev::after,
.pagination .control-btn.next::after {
  display: none;
}

.pagination .page-btn-wrap {
  margin: 0;
}

.pagination .page-btn-wrap>* {
  margin: 0 3px;
  border-color: #ddd;
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  .pagination .page-btn-wrap>* {
    margin: 0 2px;
  }
}

.pagination .page-btn-wrap .now {
  border-color: #00b760;
  background: #00b760;
  color: #fff;
  font-weight: 700;
}

.container .contents .sect .foot-banner {
  position: relative;
  max-width: 1400px;
  padding: 30px 50px;
  background: #00b760;
  border-radius: 20px;
  color: #fff;
  font-weight: 500;
  margin: 50px 0;
  line-height: 1.5;
  font-size: 18px;
  word-break: keep-all;
}

.container .contents .sect .foot-banner::before {
  content: '';
  position: absolute;
  bottom: -20px;
  right: 0;
  /*right: 7.5%;*/
  content: '';
  width: 300px;
  height: 200px;
  background-size: 100%;
}

.container.cate01 .contents .sect .foot-banner::before {
  background: url(../_image/icon/icon-character08.gif)center center/ contain no-repeat;
}

.container.cate02 .contents .sect .foot-banner::before {
  background: url(../_image/icon/icon-character09.gif)center center/ contain no-repeat;
}

.container.cate03 .contents .sect .foot-banner::before {
  background: url(../_image/icon/icon-character10.gif)center center/ contain no-repeat;
}

.container.cate04 .contents .sect .foot-banner::before {
  background: url(../_image/icon/icon-character11.gif)center center/ contain no-repeat;
}

.container.cate05 .contents .sect .foot-banner::before {
  background: url(../_image/icon/icon-character12.gif)center center/ contain no-repeat;
}

.container .contents .sect .foot-banner h3 {
  /* font-family: 'Nanum Myeongjo'; */
  font-size: 28px;
  font-weight: 900;
  text-transform: capitalize;
}

.container .contents .sect .foot-banner .foot-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  margin-bottom: 20px;
}

.container .contents .sect .foot-banner .foot-links a {
  display: inline-block;
  background: rgba(0, 0, 0, 0);
  color: #fff;
  padding: 10px;
  border: solid 1px #fff;
  border-radius: 10px;
  min-width: 140px;
  text-align: center;
  margin: 20px 0;
}

.container .contents .sect .foot-banner .foot-links a:hover {
  background: #000;
  border-color: #000;
  font-weight: bold;
}

.container .contents .sect .foot-banner .foot-links a:nth-child(2):hover {
  background: #00b760;
  border-color: #00b760;
}

.container .contents .sect .foot-banner p:first-of-type {
  font-weight: bold;
}


@media screen and (max-width: 1024px) {

  .container .contents .sect .foot-banner::before {
    width: 260px;
    bottom: -30px;
  }

  .container .contents .sect .foot-banner .foot-links a {
    margin: 10px 0;
  }

  .container .contents .sect .foot-banner h3 {
    font-size: 24px;
  }

  .container .contents .sect .foot-banner p {
    font-size: 16px;
  }


}


@media screen and (max-width: 767px) {

  .container .contents .sect .foot-banner {
    padding: 20px;
  }

  .container .contents .sect .foot-banner::before {
    background-size: auto 100px;
    right: 0;
    bottom: 10px;
    width: 140px;
    height: 100px;
  }

  .container .contents .sect .foot-banner .foot-links {
    margin-bottom: 10px;
  }

  .container .contents .sect .foot-banner h3 {
    font-size: 20px;
  }

  .container .contents .sect .foot-banner p {
    font-size: 14px;
  }

}




.select-wrap {
  position: relative;
}

.select-wrap .nice-select {
  position: relative;
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  font-size: 14px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  padding-left: 14px;
  padding-right: 24px;
  text-align: left !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
  color: #333;
  z-index: 100;
}

.select-wrap .nice-select>span {
  display: block;

}

.select-wrap .nice-select.open {
  border-color: #00b760;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 110;
}

@media screen and (max-width: 1024px) {
  .select-wrap .nice-select {
    padding-left: 10px;
    font-size: 13px;
  }
}

.select-wrap .nice-select:after {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid #777;
  border-top: none;
  border-left: none;
  display: block;
  margin-top: -5px;
  pointer-events: none;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.select-wrap .nice-select.open:after {
  transform: rotate(225deg);
  margin-top: -2px;
}

.select-wrap .nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  border-color: #00b760;
  border-radius: 0 0 6px 6px;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  z-index: 110;
}

.select-wrap .nice-select.disabled {
  background: #f4f4f4;
  color: #a3a3a3;
  pointer-events: none;
}

.select-wrap .nice-select.disabled:after {
  border-color: #cccccc;
}

.select-wrap .nice-select .list {
  background-color: #fff;
  border: 1px solid transparent;
  border-top: none;
  box-sizing: border-box;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  z-index: 100;
}

.select-wrap .nice-select .list:hover .option:not(:hover) {
  background-color: transparent;
}

.select-wrap .nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 14px;
  padding-right: 14px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;

}

@media screen and (max-width: 767px) {
  .select-wrap .nice-select .option {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.select-wrap .nice-select .option:hover,
.select-wrap .nice-select .option.focus,
.select-wrap .nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.select-wrap .nice-select .option.selected {
  font-weight: bold;
}

.select-wrap .nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.selectbox-wrap .no-csspointerevents .nice-select .list {
  display: none;
}

.selectbox-wrap .no-csspointerevents .nice-select.open .list {
  display: block;
}

.slt-wrap .nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  font-size: 14px;
  height: 32px;
  line-height: 30px;
  border: 1px solid #fff;
  outline: none;
  padding-left: 10px;
  padding-right: 24px;
  position: relative;
  text-align: left !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  color: #999;
  z-index: 50;
}

.slt-wrap .nice-select>span {
  display: block;

}

.slt-wrap .nice-select.open {
  border-color: #00b760;
  z-index: 55;
}

.slt-wrap .nice-select:after {
  content: "";
  display: block;
  border-top: 6px solid #999;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  margin-top: -3px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.slt-wrap .nice-select.open:after {
  transform: rotate(180deg);
}

.slt-wrap .nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  border-color: #00b760;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

.slt-wrap .nice-select.disabled {
  background: #f4f4f4;
  color: #a3a3a3;
  pointer-events: none;
}

.slt-wrap .nice-select.disabled:after {
  border-color: #cccccc;
}

.slt-wrap .nice-select .list {
  background-color: #fff;
  border: 1px solid transparent;
  border-top: none;
  box-sizing: border-box;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  z-index: 9;
}

.slt-wrap .nice-select .list:hover .option:not(:hover) {
  background-color: transparent;
}

.slt-wrap .nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 32px;
  list-style: none;
  min-height: 32px;
  outline: none;
  padding-left: 10px;
  padding-right: 10px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;

}

.slt-wrap .nice-select .option:hover,
.slt-wrap .nice-select .option.focus,
.slt-wrap .nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.slt-wrap .nice-select .option.selected {
  font-weight: bold;
}

.slt-wrap .nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.slt-wrap .no-csspointerevents .nice-select .list {
  display: none;
}

.slt-wrap .no-csspointerevents .nice-select.open .list {
  display: block;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical>.swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow>.swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column>.swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode>.swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-container-pointer-events {
  touch-action: pan-y;
}

.swiper-container-pointer-events.swiper-container-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.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-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.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-slide-shadow-bottom {
  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: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  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: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper {
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
  /*
    --swiper-navigation-color: var(--swiper-theme-color);
    */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content:url(/_image/icon/icon-next-btn.png)center center /contain no-repeat;;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: url(/_image/icon/icon-prev-btn.png)center center /contain no-repeat;;
}




.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}


.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  border: solid 2px #eee;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #00b760;
  border: none;
}

.swiper-container-vertical>.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal>.swiper-pagination-progressbar,
.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical>.swiper-pagination-progressbar,
.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  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-vertical>.swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.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: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container>img,
.swiper-zoom-container>svg,
.swiper-zoom-container>canvas {
  max-width: 100%;
  max-height: 100%;
  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;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .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;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next+.swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-container-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
  filter: blur(50px);
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}


/* level-wrap */

.desc {
  line-height: 1.5;
  color: #111;
  word-break: keep-all;
}

.desc.gray {
  color: #646363;
}

.desc.eye {
  font-size: 20px;
  margin: 10px 0;
  color: #666;
  max-width: 1480px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  font-weight: 500;
}

.desc b {
  color: #000;
}

.desc.sm {
  font-weight: 500;
  font-size: 14px;
}

@media screen and (max-width: 1024px) {

  .desc,
  .desc.eye {
    font-size: 15px !important;
    line-height: 1.5;
  }

  .desc.eye {
    padding: 0 16px;
  }

}


@media screen and (max-width: 520px) {
  .desc.sm {
    font-size: 12px;
    font-weight: bold;
  }
}


.level-wrap {
  position: relative;
  text-align: center;
  word-break: keep-all;
}

.level-wrap .desc {
  font-size: 18px;
  line-height: 1.4;
}


.level-wrap .level-tit {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding-left: 10%;
  line-height: 1.5;
  margin-bottom: -20px;
}

.level-wrap .level-tit>div {
  margin-bottom: 40px;
}

.level-wrap .level-tit h2 {
  /* font-family: 'Nanum Myeongjo'; */
  margin-bottom: 20px;
  font-size: 28px;
  color: #000;
}

.level-wrap .level-content {
  position: relative;
}

.level-wrap .level-content ul {
  display: flex;
  justify-content: space-between;
  align-items: unset !important;
  gap: 10px;
  color: #fff;

}


.level-wrap .level-content ul li {
  position: relative;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: left;
  line-height: 1.25;
  overflow: hidden;
  flex: 1;
}

.level-wrap .level-content ul li::after {
  position: absolute;
  content: '';
  top: -30%;
  left: -20%;
  width: 120%;
  height: 75%;

  z-index: -1;
  border-radius: 100%;
}

.level-wrap .level-content ul li::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: blue;
  z-index: -1;
}

.level-wrap .level-content ul li span {
  /* font-family: 'Nanum Myeongjo'; */
  font-size: 22px;
  text-shadow: 1px 1px 1px #000;
}

.level-wrap .level-content ul li span em {
  margin-top: 10px;
  display: block;
  font-size: 18px;
  text-transform: uppercase;
}

.level-wrap .level-content ul li p {
  margin-top: 40px;
  line-height: 1.5;
  font-size: 14px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.level-wrap .level-content ul li:nth-child(1)::after {
  background: #c99632;
}

.level-wrap .level-content ul li:nth-child(1)::before {
  background: #00b760;
}

.level-wrap .level-content ul li:nth-child(2)::after {
  background: #a64230;
}

.level-wrap .level-content ul li:nth-child(2)::before {
  background: #d0533c;
}

.level-wrap .level-content ul li:nth-child(3)::after {
  background: #1d827f;
}

.level-wrap .level-content ul li:nth-child(3)::before {
  background: #24a39f;
}

.level-wrap .level-content ul li:nth-child(4)::after {
  background: #243d71;
}

.level-wrap .level-content ul li:nth-child(4)::before {
  background: #2d4c8d;
}

.level-wrap .level-content ul li:nth-child(5)::after {
  background: #592a7e;
}

.level-wrap .level-content ul li:nth-child(5)::before {
  background: #00b760;
}


.level-wrap .level-bottom {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding-right: 10%;
  line-height: 1.5;
  margin-top: -30px;
  margin-bottom: 80px;
}

.level-wrap .level-bottom>div {
  margin-top: 100px;
}

.level-wrap .level-bottom h2 {
  /* font-family: 'Nanum Myeongjo'; */
  margin-bottom: 20px;
  font-size: 28px;
  color: #000;
}



@media screen and (max-width: 1024px) {
  .level-wrap .desc {
    font-size: 14px;
  }

  .level-wrap .level-tit img {
    width: 150px;
  }
}


@media screen and (max-width: 1024px) {
  .level-wrap .level-tit {
    padding: 0;
    flex-direction: column-reverse;
  }

  .level-wrap .level-bottom,
  .level-wrap .level-content ul {
    flex-direction: column;
  }

}

/* tab */
.bar-tab-wraps {
  margin-bottom: 20px;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .bar-tab-wraps {
    margin-bottom: 20px;
  }

  .bar-tab-wraps .desc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .bar-tab-wraps {
    margin: 0 -12px 15px;
    padding: 0 12px;
  }
}

.bar-tab-wraps .tabs {
  min-width: 100%;
  display: inline-block;
  vertical-align: top;
  font-size: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
}


.bar-tab-wraps .tabs li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding: 0 30px;
}

@media screen and (max-width: 1024px) {
  .bar-tab-wraps .tabs li {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .bar-tab-wraps .tabs li {
    padding: 0 12px;
  }
}

.bar-tab-wraps .tabs li:first-child {
  padding-left: 0;
}

.bar-tab-wraps .tabs li:last-child {
  padding-right: 0;
}

.bar-tab-wraps .tabs li::before {
  content: ' ';
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 16px;
  margin-top: -8px;
  background: #cdcdcd;
}

.bar-tab-wraps .tabs li:first-child::before {
  display: none;
}

.bar-tab-wraps .tabs li a {
  display: block;
  font-size: 18px;
  line-height: 24px;

  letter-spacing: -0.3px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .bar-tab-wraps .tabs li a {
    font-size: 14px;
    line-height: 22px;
  }
}

.bar-tab-wraps .tabs li.active a {
  font-weight: 900;
  color: #fff;
  background: #00b760;
  padding: 5px 30px;
  border-radius: 30px;
  transition: all 0.25s;
}

.bar-tab-wraps.point .scroll {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


@media screen and (max-width: 1024px) {

  /* .bar-tab-wraps.point .scroll{
    flex-direction: column-reverse;
    align-items: flex-end;
  } */
  .bar-tab-wraps.point .scroll .desc {
    font-size: 14px;
  }
}


.bar-tab-wraps .desc {
  color: #585858;
  font-weight: 600;
}

.bar-tab-wraps.point .tabs {
  min-width: inherit;
}




/* 결제수단 */
.payment-wrapper {
  position: relative;
}

.payment-title-box {
  font-size: 18px;
  font-family: 'Pretendard';
  margin: 0;
  font-weight: bold;
  margin: 10px;
  display: flex;
  align-items: center;
}

.payment-title {
  font-size: 18px;
  font-family: 'Pretendard';
  margin: 0;
  font-weight: bold;
  margin: 10px 0;
  flex: 0 1 150px;
}

.payment-item input+label::before {
  content: ' ';
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  border-radius: 30px;
}

.payment-item input:checked+label::before {
  animation: rubberBand .3s ease;
  border-radius: 30px;
  border-color: #000;
}

.payment-item input:checked+label::after {
  content: ' ';
  position: absolute;
  top: 7px;
  left: 7px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: #000;
  animation: rubberBand2 0.5s ease-in-out;
}

.payment-item {
  position: relative;
}

.payment-item input {
  display: none;
}

.payment-tab {
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
}



.tab-label {
  position: relative;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.payment-content {
  position: relative;
  border: solid 1px #eee;
  background: #f6f6f6;
  padding: 30px 50px;
  border-radius: 10px;
}

/* on, off + id + value  */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}


.tab-content ul {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tab-content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}


.tab-content ul li .user_point {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tab-content ul li .user_point {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tab-content .phone-type-wrap {
  display: flex;
  align-items: center;
}

.certified {
  display: block;
}




@media screen and (max-width: 1366px) {
  .payment-title h2 {
    font-size: 16px;
  }

  .tab-label {
    padding-right: 10px;
    font-size: 14px;
  }

  .payment-content {
    padding: 20px;
  }

}

@media screen and (max-width: 1024px) {
  .payment-responsive {
    position: relative;
    overflow-x: scroll;
  }

  .payment-title h2 {
    font-size: 16px;
    display: none;
  }

  .tab-label {
    padding-right: 10px;
    font-size: 14px;
  }

}


@media screen and (max-width: 767px) {
  .payment-title-box {
    display: block;
  }

  .payment-tab {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }

  .payment-content ul li {
    flex-direction: column;
    align-items: flex-start;
  }

  .payment-item {
    flex: 0 0 45%;
  }



}

@media screen and (max-width: 520px) {
  .payment-content .phone-type {
    width: 100%;
  }

  .payment-content .form-control {
    width: 100% !important;
    max-width: unset;
  }
}



.accordion-wrap.point .tbl-wrap .table.col-tbl {
  border: none;
}

.accordion-wrap.point .tbl-wrap .table.col-tbl .btn {
  min-width: 100px;
  height: 40px;
  min-height: auto;
  line-height: 40px;
  border-radius: 0;
}

.point-banner-wrap {
  display: flex;
  gap: 5px;
}

.point-banner {
  position: relative;
  width: 100%;
  background: #89877b;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  min-height: 170px;
}

.point-banner.coupon {
  background: #89877b url(/_image/icon/icon-coupon.png)left 20px center /contain no-repeat;
  background-size: auto;
}

.point-banner img {
  margin-bottom: -100px;
}

.point-unit {
  /* font-family: 'Nanum Myeongjo'; */
  font-weight: bold;
  color: #fff;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
  text-transform: uppercase;
}

.point-unit em {
  color: #fff;
  font-size: 75px;
  margin: 0 10px;
}

.point-unit span {
  font-size: 40px;
  margin-top: 20px;
}

.point-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.point-info a {
  display: block;
  padding: 20px;
  background: #3b3a31;
  border-radius: 10px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  word-break: keep-all;
}

.point-info a:hover {
  background: #000;
  color: #fff;
}

.point-coupon {
  position: relative;
  width: 48%;
  border: solid 2px #00b760;
  border-radius: 10px;
  background: #f5f5f5;
  padding: 30px;
}

.point-coupon h2 {
  color: #00b760;
  font-weight: bold;
}

.point-coupon .btn-dark {
  min-width: 120px;
}

.point-guide {
  position: relative;
  margin: 50px 0;
}

.point-guide h2 {
  font-weight: bold;
  color: #00b760;
}

.point-guide ul {
  margin: 20px 0;
}

.point-guide ul li {
  color: #585858;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}

.point-invite img {
  position: absolute;
  top: 50px;
  right: 30px;
}

@media screen and (max-width: 1366px) {
  .point-banner img {
    width: 250px;
  }
}

@media screen and (max-width: 1024px) {
  .point-banner {
    flex-direction: column;
  }

  .point-banner img {
    width: 200px;
    margin: 0;
  }

  .point-banner-wrap {
    flex-direction: column;
  }

  .point-banner.coupon {
    display: block;
    background: #00b760;
  }

  .point-coupon {
    width: 100%;
    padding: 20px 10px;
  }

  .point-guide ul li {
    font-size: 14px;
  }

  .point-unit em {
    font-size: 36px;
  }

  .point-info {
    flex-direction: initial;
    width: 100%;
  }

  .point-info a {
    flex: 1;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .point-banner.invite {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 520px) {

  .point-coupon .d-flex {
    flex-direction: column;
  }

  .point-unit {
    font-size: 20px;
  }

  .point-info {
    margin-top: 10px;
  }

  .point-info a {
    font-size: 16px;
  }

  .point-unit em {
    font-size: 32px;
  }

  .point-unit span {
    font-size: 18px;
  }

  .point-banner img {
    width: 100px;
  }

  .point-invite img {
    position: relative;
    top: 0;
    left: 0;
    width: 150px;
  }
}





.payment-wrap {
  position: relative;
}

.payment-wrap ul {
  position: relative;
}

.payment-wrap .package-item {
  border: solid 1px #ddd;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  border:solid 2px transparent;
}

.payment-wrap .package-item.active {
  border-color: #00b760;
  overflow: visible;
  border-radius: 10px;
  box-shadow: 7px 14px 15px 1px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border-bottom: solid 1px #00b760;
  border-width: 2px;
}

.package {
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.package .package-day {
  color: #828282;
  margin-bottom: 20px;
}

.package .package-day em {
  font-size: 14px;
  font-weight: 500;
}

.payment-type {
  display: flex;
  gap: 5px;
  align-items: center;
}

.package h3 {
  font-weight: bold;
  margin: 10px 0 20px 0;
  color: #000;
  word-break: keep-all;
  line-height: 1.25;
}

.package-state {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}



.package-state a,
.package-state p {
  /* border: solid 1px #ddd; */
  border-radius: 20px;
  padding: 10px 20px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  color:#00b760;
}

.package-state p {
  order: 2;
}

.package-state p span{
  color:#00b760;
}

.package-state .review-state {
  display: flex;
  align-items: center;
  gap: 10px;
  order: 1;
}

.package-state-widget{
  display: flex;
  align-items: center;
  gap: 5px;
}

.package-amount-wrap {
  white-space: nowrap;
  font-weight: bold;
  order: 3;
}

.package-amount {
  font-size: 28px;
  font-weight: bold;
}

.package-group {
  border-top: solid 1px #ddd;
  display: flex;
  background: #f9f9f9;
}

.package-group a {
  display: block;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-weight: bold;
  border-right: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
}

.package-group a:last-of-type {
  border-right: none;
}

.package-group a.on {
  display: block;
  text-align: center;
}

.item-details {
  position: relative;
}

.item-details.on {
  background: #00b760;
  color: #fff;
}


.details-wrap {
  display: none;
  padding: 30px;
  background: #f9f9f9;
}

.details-wrap h3 {
  font-weight: bold;
  color: #000;
  word-break: keep-all;
  line-height: 1.25;
  padding: 20px 0;
}

.details-wrap .package-sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.details-wrap tbody tr {
  background: #fff;
}


.item-details.on .details-wrap {
  position: relative;
  bottom: -56px;
  left: 0;
  width: calc(200% + 3px);
  display: block;
  background: #f9f9f9;
  height: 100%;
  padding: 20px 40px;
  color: #000;
  border: solid 1px #00b760;
  border-width: 0 1px;
  left: -1px;
  right: -5px;
  z-index: 1;
  box-shadow: 7px 14px 15px 1px rgba(0, 0, 0, 0.25);
}



.item-details .details-wrap h3 {
  font-weight: bold;
}


.item-details.on .details-wrap .tbl-wrap {
  position: relative;
  margin-top: 10px;
  background: #fff;
  left: 0;
  padding: 40px;
  padding-top: 0;
  background: #f9f9f9;
  border: solid 1px #00b760;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  border-top: none;
  left: -1px;
  right: -1px;
  z-index: 1;
  box-shadow: 7px 14px 15px 1px rgba(0, 0, 0, 0.25);
}


.item-details.on .details-wrap .tbl-wrap th {
  background: #f9f9f9;
}

.item-details.on .details-wrap .tbl-wrap tr {
  background: #fff;
}

.item-details.on .details-wrap .tbl-wrap .thumb {
  display: block;
  width: 100px;
  height: 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: all .3s;
  cursor: pointer;
  overflow: hidden;
}

@media screen and (max-width: 767px) {

  .package {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .package h3 {
    font-size: 18px;
  }

  .package-amount {
    font-size: 22px;
  }

  .package .package-day,
  .package-state {
    width: 100%;
    gap: 5px;
  }

  .package-state {
    justify-content: space-between;
  }

  .item-details.on .details-wrap {
    font-size: 14px;
  }

  .item-details.on .details-wrap .tbl-wrap {
    padding: 16px;
  }

  .package-group a {
    padding: 20px 10px;
    font-size: 15px;
  }

  .details-wrap {
    padding: 10px;
  }

  .package-state .review-state {
    order: 2;
  }

}

@media screen and (max-width: 520px) {

  .package-state a,
  .package-state p {
    font-weight: bold;

  }

  .package-group a {
    white-space: nowrap;
    font-size: 13px;
  }
}

/* table */

.tbl-wrap {
  position: relative;
}

.tbl-wrap .tbl-title {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.3px;

  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .tbl-wrap .tbl-title {
    font-size: 16px;
    line-height: 24px;
  }
}

.tbl-wrap .tbl-count {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;

  line-height: 1 !important;
}

@media screen and (max-width: 767px) {
  .tbl-wrap .tbl-count {
    font-size: 14px;
    line-height: 22px;
  }
}

.tbl-wrap .table {
  table-layout: fixed;
  width: 100% !important;
}

.tbl-wrap .table.col-tbl {
  vertical-align: middle;
  border-top: 1px solid #333;
  text-align: center;
}

.tbl-wrap .table.col-tbl .col1 {
  width: 10%;
}

@media screen and (max-width: 767px) {
  .tbl-wrap .table.col-tbl .col1 {
    width: 80px;
  }
}

.tbl-wrap .table.col-tbl .col2 {
  width: 15%;
}

@media screen and (max-width: 767px) {
  .tbl-wrap .table.col-tbl .col2 {
    width: 100px;
  }
}

.tbl-wrap .table.col-tbl .col2 {
  width: 20%;
}

.tbl-wrap .table.col-tbl .col3 {
  width: 30% !important;
}

.tbl-wrap .table.col-tbl .col4 {
  width: 40%;
}

.tbl-wrap .table.col-tbl .col5 {
  width: 50%;
}


.tbl-wrap .table.col-tbl thead {
  border-bottom: 1px solid #333;
  background: #f8f8f8;
}




.tbl-wrap .table.col-tbl thead th {
  height: 55px;
  padding: 12px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
  font-weight: 700;
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

@media screen and (max-width: 767px) {
  .tbl-wrap .table.col-tbl thead th {
    font-size: 14px;
    line-height: 28px;
  }
}

@media screen and (max-width: 767px) {
  .tbl-wrap .table.col-tbl thead th {
    height: 50px;
    padding: 10px;
  }
}

.tbl-wrap .table.col-tbl tbody th,
.tbl-wrap .table.col-tbl tbody td {
  height: 60px;
  padding: 12px;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
  vertical-align: middle;
  word-break: keep-all;
  border-right: 1px solid #e6e6e6;
  font-weight: 500;
}

.tbl-wrap .table.col-tbl tbody td:last-of-type {
  border-right: none;
}

@media screen and (max-width: 767px) {

  .tbl-wrap .table.col-tbl tbody th,
  .tbl-wrap .table.col-tbl tbody td {
    font-size: 13px !important;
    line-height: 22px !important;
  }
}

@media screen and (max-width: 767px) {

  .tbl-wrap .table.col-tbl tbody th,
  .tbl-wrap .table.col-tbl tbody td {
    height: 50px !important;
    padding: 10px 5px !important;
  }
}

.tbl-wrap .table.col-tbl tbody th .flag-title,
.tbl-wrap .table.col-tbl tbody td .flag-title {
  display: flex;
  align-items: center;
}

.tbl-wrap .table.col-tbl tbody th .flag-title .flag,
.tbl-wrap .table.col-tbl tbody td .flag-title .flag {
  margin-right: 40px;
}

@media screen and (max-width: 767px) {

  .tbl-wrap .table.col-tbl tbody th .flag-title .flag,
  .tbl-wrap .table.col-tbl tbody td .flag-title .flag {
    margin-right: 15px;
  }
}

.tbl-wrap .table.col-tbl.type2 {
  border-top-color: #000;
}

.tbl-wrap .table.col-tbl.type2 thead th {
  height: auto;
  border-right: none;
  border-bottom-color: #fff;
  background: #fff;
  color: #000;
  font-weight: 700;
  word-break: keep-all;
}

.tbl-wrap .table.col-tbl.type2 thead th:first-child {
  border-left: none;
}

.tbl-wrap .table.col-tbl.type2 tbody th,
.tbl-wrap .table.col-tbl.type2 tbody td {
  border-left: none;
  border-right: none;
  word-break: keep-all;
}

.tbl-wrap .table.col-tbl.type2 tbody th:first-child,
.tbl-wrap .table.col-tbl.type2 tbody td:first-child {
  border-left: none;
}

.tbl-wrap .table.col-tbl.type2 tbody th.bg,
.tbl-wrap .table.col-tbl.type2 tbody td.bg {
  background-color: #eaeaea;
}

.tbl-wrap .table.row-tbl .col1 {
  width: 20%;
}

@media screen and (max-width: 767px) {
  .tbl-wrap .table.row-tbl .col1 {
    width: fit-content;
  }
}

.tbl-wrap .table.row-tbl .col2 {
  width: 30%;
}

@media screen and (max-width: 767px) {
  .tbl-wrap .table.row-tbl .col2 {
    width: 40% !important;
  }
}

.tbl-wrap .table.row-tbl tbody tr:first-child th,
.tbl-wrap .table.row-tbl tbody tr:first-child td {
  border-top: 1px solid #333;
}

.tbl-wrap .table.row-tbl tbody th,
.tbl-wrap .table.row-tbl tbody td {
  height: 60px;
  padding: 12px 20px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px !important;
  vertical-align: middle;
  word-break: keep-all !important;
  font-weight: 600;
}

@media screen and (max-width: 767px) {

  .tbl-wrap .table.row-tbl tbody th,
  .tbl-wrap .table.row-tbl tbody td {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 767px) {

  .tbl-wrap .table.row-tbl tbody th,
  .tbl-wrap .table.row-tbl tbody td {
    padding: 10px !important;
  }
}

.tbl-wrap .table.row-tbl tbody th {
  background: #f6f4f7;
  text-align: center;
  /* border-bottom: 1px solid #fff; */
}


.tbl-wrap .table.row-tbl.type2 tbody th {
  background: transparent;
  border-right: 1px solid #ddd;
  text-align: left;
}

.tbl-wrap .table.row-tbl.type2 tbody th,
.tbl-wrap .table.row-tbl.type2 tbody td {
  padding: 25px 60px;
}

@media screen and (max-width: 1024px) {

  .tbl-wrap .table.row-tbl.type2 tbody th,
  .tbl-wrap .table.row-tbl.type2 tbody td {
    padding: 25px 30px;
  }
}

@media screen and (max-width: 767px) {

  .tbl-wrap .table.row-tbl.type2 tbody th,
  .tbl-wrap .table.row-tbl.type2 tbody td {
    padding: 20px;
  }
}

.tbl-wrap .table a[class^="link-"] {
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: keep-all;
  overflow: hidden;
  font-size: 17px;
  cursor: pointer;
}

.tbl-wrap .table a[class^="link-"].new {
  position: relative;
  padding-right: 20px;
}


.tbl-wrap .table a[class^="link-"].new::after {
  content: 'N';
  position: absolute;
  right: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  background: #a02013;
  color: #fff;
  border-radius: 4px;
  margin-top: -8px;
  font-family: sans-serif;
  font-size: 11px;
  line-height: 15px;
  text-align: center;
  animation: new 2s ease-in-out infinite;
}

.tbl-wrap .table a[class^="link-"].hold {
  position: relative;
  padding-left: 20px;
}

.tbl-wrap .table a[class^="link-"].hold::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 15px;
  background: url(/_image/icon/icon-hold.png)center center /contain no-repeat;
  margin-top: -8px;
}



@keyframes new {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.tbl-wrap .table a[class^="link-"].file {
  position: relative;
  padding-right: 20px;
}

.tbl-wrap .table a[class^="link-"].file::before {
  content: ' ';
  position: absolute;
  right: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: url("/_image/icon/icon-clip.png") center no-repeat;
}

.tbl-wrap .table a[class^="link-"].new.file {
  padding-right: 40px;
}

.tbl-wrap .table a[class^="link-"].new.file::before {
  right: 20px;
}

.tbl-wrap .table .alert {
  margin-top: 5px;
  font-size: 14px;
  line-height: 22px;

  color: #555;
}

@media screen and (max-width: 767px) {
  .tbl-wrap .table .alert {
    font-size: 13px;
  }
}

.tbl-wrap .table .essen::after {
  content: '*';
  display: inline-block;
  color: #ef3745;
  margin-left: 4px;
}

@media screen and (max-width: 1024px) {
  .tbl-wrap .table-responsive {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }

  .tbl-wrap .table-responsive::-webkit-scrollbar {
    display: none;
  }

  .tbl-wrap .table-responsive .table {
    table-layout: auto;
  }

  .tbl-wrap .table-responsive .table th,
  .tbl-wrap .table-responsive .table td {
    white-space: nowrap;
  }

  .tbl-wrap .table-responsive .table a[class^="link-"] {
    max-width: 200px;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: keep-all;
    overflow: hidden;
  }
}

@media screen and (max-width: 520px) {
  .tbl-wrap .table-responsive .table th {
    font-size: 14px;
  }

  .tbl-wrap .table-responsive .table a[class^="link-"] {
    font-size: 14px;
  }
}

.date-wrap {
  width: 100%;
  margin: 0 auto;
}

.date-wrap .date-month {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 26px;
  border: solid 1px #ddd;
}

.date-wrap .date-month .date {
  /* font-family: 'Nanum Myeongjo'; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1.5;
  background: #f6f6f6;
  font-size: 40px;
  flex: 1;
  width: 100%;
  padding: 40px 0;
}

.date-wrap .date-month ul {
  position: relative;
  display: flex;
  flex: 1.5;
  width: 100%;
}

.date-wrap .date-month ul li {
  position: relative;
  flex: 1;
  background: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  text-indent: 1px;
  font-weight: 400;
  font-size: 32px;
  text-align: center;
  padding: 20px;
}

.date-wrap .date-month ul li .text-point {
  position: relative;
  font-weight: bold;
  font-size: 18px;
}



.date-wrap .date-month ul li::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 50%;
  border-right: solid 1px #b5b5b5;
}


.date-wrap .date-month ul li:last-of-type::after {
  display: none;
}

.date-wrap .date-month .year-month {
  width: 200px;
  text-align: center;
  line-height: 1;
}

.date-wrap .date-month .nav {
  display: flex;
  border: 1px solid #333333;
  border-radius: 5px;
}

.date-wrap .date-month .go-prev,
.date-wrap .date-month .go-next {
  display: block;
  width: 50px;
  height: 78px;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.date-wrap .date-month .go-prev::before,
.date-wrap .date-month .go-next::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 3px solid #939393;
  border-width: 5px 5px 0 0;
  transition: border 0.1s;
  border-radius: 3px;
}

.date-wrap .date-month .go-prev:hover::before,
.date-wrap .date-month .go-next:hover::before {
  border-color: #ed2a61;
}

.date-wrap .date-month .go-prev::before {
  transform: rotate(-135deg);
}

.date-wrap .date-month .go-next::before {
  transform: rotate(45deg);
}

@media screen and (max-width: 1024px) {
  .date-wrap .date-month {
    flex-direction: column;
  }

  .date-wrap .date-month .date {
    padding: 20px;
    font-size: 32px;
  }

  .date-wrap .date-month ul li {
    font-size: 24px;
  }

  .date-wrap .date-month ul li .text-point {
    font-size: 16px;
  }
}


@media screen and (max-width: 767px) {
  .date-wrap .date-month .date {
    font-size: 24px;
    padding: 0 20px;
  }

  .date-wrap .date-month ul li {
    font-size: 18px;
    padding: 25px 0;
  }

  .date-wrap .date-month ul li .text-point {
    font-size: 13px;
  }
}

.date-wrap .cal_wrap {
  padding-top: 40px;
  position: relative;
  margin: 0 auto;
}

.date-wrap .cal_wrap .days {
  display: flex;
  padding: 30px 0;
  border: 1px solid #ddd;
  border-bottom: 0px;
  background: #f6f6f6;
}

.date-wrap .cal_wrap .days .day {
  position: relative;
  text-align: center;
}


.date-wrap .cal_wrap::after {
  top: 368px;
}

.date-wrap .cal_wrap .day {
  width: calc(100% / 7);
  text-align: left;
  color: #454444;
  font-weight: bold;
}

.current.today {
  position: relative;
  background: #f6f6f6;
  border: dotted 1px #ddd;
}

.current.today::before {
  position: absolute;
  content: '';
  width: 75%;
  height: 75%;
  background: url(/_image/icon/icon-checkd.png)center center/contain no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.date-wrap .cal_wrap .dates {
  display: flex;
  flex-flow: wrap;
  border: solid 1px #ddd;
  border-width: 0px 1px 1px 0px;
}

.date-wrap .cal_wrap .dates>.day {
  position: relative;
  border: solid 1px #ddd;
  padding: 20px;
  text-align: right;
  border-width: 1px 0px 0px 1px;
  aspect-ratio: 1/1;
}

.date-wrap .cal_wrap .day:nth-child(7n -1) {
  color: #3c6ffa;
}

.date-wrap .cal_wrap .day:nth-child(7n) {
  color: #ed2a61;
}

.date-wrap .cal_wrap .day.disable {
  color: #ddd;
}

.date-wrap .cal_wrap .day.attendance {
  position: relative;
}

/* 출석체크한 부분에대한 배경표시 before*/
.date-wrap .cal_wrap .day.attendance::before {
  position: absolute;
  content: '';
  width: 75%;
  height: 50%;
  background: url(/_image/icon/icon-attendance.png)center center/contain no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 출석체크한 부분에대한 tiem after */
.date-wrap .cal_wrap .day.attendance::after {
  position: absolute;
  content: '17:35:41';
  width: 100%;
  height: 15%;
  top: 62%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
}



.date-info {
  font-size: 16px;
  margin: 10px 0;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .date-wrap .cal_wrap .days {
    padding: 20px 0;
  }

  .date-wrap .cal_wrap .dates>.day {
    font-size: 13px;
    padding: 10px;
    aspect-ratio: 10 / 10;
  }

  .date-info {
    font-size: 13px;
  }
}




/* === COMMON LAYOUT === */

/* header_pop */
.header_popup {
  position: static;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: #00b760;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* header */
header {
  /* position: sticky; */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.5);
  transition: padding 0.2s ease-in-out, height 0.2s ease-in-out, background 0.2s ease-in-out;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);

}

/* header.scroll{
    position: fixed;
} */

header.scroll .head-top {
  display: none;
}


header .btn-login::after {
  bottom: 0;
  border-top: 8px solid transparent;
}

header .btn-my {
  position: relative;
  display: block;
  height: 30px;
  padding: 0 40px 0 50px;
  border-radius: 15px;
  background: #e6e6e6;
  font-size: 15px;
  line-height: 30px;
  white-space: nowrap;
}

header .btn-my .photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

header .btn-my .photo::before,
header .btn-my .photo::after {
  content: ' ';
  position: absolute;
  left: 0;
  border-left: 13px solid #fff;
  border-right: 13px solid #e6e6e6;
}

header .btn-my .photo::before {
  top: 0;
  border-bottom: 8px solid transparent;
}

header .btn-my .photo::after {
  bottom: 0;
  border-top: 8px solid transparent;
}

header .btn-my em {
  margin-right: 4px;
  font-weight: 500;
}

@media screen and (min-width: 1025px) {
  /* header.scroll .head-cont {
    height: 70px;
  } */

  header .header-dim {
    display: none !important;
  }

  header .head-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  header.open {
    background: #fff;
  }

  header.open::before {
    content: ' ';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 37vh;
    background: #fff;
    border-bottom: 1px solid #ddd;
    z-index: -1;
  }

  header.open::after {
    content: ' ';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100%;
    max-width: 1360px;
    height: 130px;
    margin-top: 70px;
    transform: translateX(-50%);
    /* background: url("/_image/bg/bg-head.png") 0 no-repeat; */
    z-index: -1;
    background-size: 170px;
  }

  header.open .head-cont #gnb>ul>li ul.depth2 {
    display: block !important;
  }

  header .head-top {
    position: relative;
    z-index: 510;
  }

  header .head-top ul.links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 60px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  header .head-cont .btns {
    display: none;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1024px) {
  header .head-cont {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

}


@media screen and (max-width: 1366px) {
  header.open::before {
    height: 50vh;
  }
}


@media screen and (min-width: 1025px) {

  header .head-cont {
    position: relative;
    width: 100%;
    transition: all 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  header .head-cont .area {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1620px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  header .head-cont h1 {
    width: 151px;
    min-width: 151px;
    line-height: 1;
  }

  header .head-cont h1 a {
    display: flex;
    align-items: center;
  }

  header .head-cont #gnb {
    display: flex;
    align-items: center;
    margin: 0 auto;
    flex: 1;
  }

  header .head-cont #gnb .links {
    display: none !important;
  }

  header .head-cont #gnb>ul {
    display: flex;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
  }

  header .head-cont #gnb>ul>li {
    position: relative;
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
  }

  header .head-cont #gnb>ul>li.list-point {
    position: relative;
  }

  header .head-cont #gnb>ul>li.list-point>a {
    position: relative;
    /* background: #00b760;
    padding: 8px 15px;
    padding-left: 30px;
    border-radius: 20px;
    color: #fff !important; */
  }

  /* header .head-cont #gnb>ul>li.list-point>a:hover {
    background: #00b760;
  } */

  /* header .head-cont #gnb>ul>li.list-point>a::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 10px;
    width: 45px;
    height: 58px;
    background: url(../_image/icon/icon-light.png)center center /contain no-repeat;
  } */

  @keyframes emergency {

    0%,
    100% {
      opacity: 1;
    }

    50% {
      opacity: 0.5;
    }
  }

  header .head-cont #gnb .btn-logins {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    font-size: 15px;
    white-space: nowrap;
    font-weight: 500;
    color: #222;
  }

  header .head-cont #gnb .btn-logins a {
    text-align: center;
    margin: 0 auto;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    font-weight: bold;
  }

  header .head-cont #gnb .btn-logins a>i {
    display: block;
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-size: contain;
  }


  header .head-cont #gnb .btn-logins .btn-join i {
    background-image: url(../_image/icon/icon-join.png);
  }

  header .head-cont #gnb .btn-logins .btn-login i {
    background-image: url(../_image/icon/icon-login.png);
  }

  header .head-cont #gnb .btn-logins .btn-cart i {
    width: 30px;
    background-image: url(../_image/icon/icon-cart.png);
  }

  header .head-cont #gnb .btn-logins .btn-out i {
    background-image: url(../_image/icon/icon-logout.png);
  }

  header .head-cont #gnb .btn-logins .btn-coaching i {
    background-image: url(../_image/icon/icon-coaching.png);
  }


  header .head-cont #gnb .btn-logins a.btn-coaching{
    color: #00b65f;
  }
  
  
  header .head-cont #gnb>ul>li a.dep1 {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    white-space: nowrap;
  }

  header .head-cont #gnb>ul>li[aria-current="page"] {
    text-decoration: underline wavy #00b760 0.1rem;
    text-underline-offset: 0.5rem;
  }

  header .head-cont #gnb>ul>li a.dep1.active {
    color: #00b760;
  }

  header .head-cont #gnb>ul>li a.dep1:hover {
    color: #00b760;
  }

  header .head-cont #gnb>ul>li.active a {
    color: #00b760;
  }


  header .head-cont #gnb>ul>li .btn-depth-more {
    display: none;
  }

  header .head-cont #gnb>ul>li ul.depth2 {
    font-family: 'Pretendard';
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    min-height: 154px;
    /* margin-top: 30px; */
    padding: 15px 0;
    border-left: 1px solid #eee;
  }

  header .head-cont #gnb>ul>li ul.depth2 li {
    margin-top: 20px;
    text-align: center;
  }

  header .head-cont #gnb>ul>li ul.depth2 li:first-child {
    margin-top: 0;
  }

  header .head-cont #gnb>ul>li ul.depth2 li a {
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    color: #a3a3a3;
    font-size: 15px;
    font-weight: normal;
  }

  header .head-cont #gnb>ul>li ul.depth2 li a:hover {
    color: #00b760;
  }

  header .head-cont #gnb>ul>li:first-child ul.depth2 {
    border-left: none;
  }

  header .head-cont .btn-menu-all {
    display: none;
  }

  header .header-dim {
    display: none !important;
  }

  header .head-top ul.links li {
    margin-left: 20px;
  }

  header .head-top ul.links li a {
    display: block;
    color: #888;
    font-size: 16px;
    line-height: 24px;
  }

  header .head-top ul.links li a.cash {
    padding-right: 50px;
    /* background: url("/_image/icon/icon-c.png") right no-repeat; */
    color: #333;
  }

  header .head-bottom {
    display: none;
  }
}



@media screen and (max-width: 1024px) {
  header {
    background: #fff;
  }

  header .head-top {
    display: none;
  }

  header .head-top h1 {
    padding: 14px 0;
    font-size: 1em;
    line-height: 1;
    text-align: center;
  }

  header .head-top h1 a {
    display: inline-block;
    width: 73px;
    height: 24px;
    background: url("/_image/logo-m.png") center no-repeat;
    background-size: 100%;
    vertical-align: top;
  }


  header .header-dim {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    z-index: 600;
    transition: all 0.3s ease-in-out;
  }

  header .header-dim.m-open {
    opacity: 1;
  }

  header .head-cont .area {
    display: flex;
    align-items: center;
  }

  header .head-cont h1 {
    padding: 0 20px;
    font-size: 0;
    line-height: 1;
  }

  header .head-cont h1 a {
    display: flex;
    line-height: 1;
    flex-direction: column;
    gap: 3px;
    align-items: center;
  }

  header .head-cont h1 a .logo {
    height: 41px;
    min-width: 52px;
    margin-top:5px;
  }

  header .head-cont h1 a .logo-right {
    height:7px;
  }


  header .head-cont #gnb {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    /* min-width: 320px; */
    max-width: 90vw;
    height: 100%;
    background: #fff;
    z-index: 700;
    transition: all 0.3s ease-in-out;
  }

  header .head-cont #gnb.m-open {
    right: 0;
  }

  header .head-cont #gnb .links {
    display: flex;
    order: 1;
    border-top: 1px solid #eee;
    border-bottom: 12px solid #eee;
  }

  header .head-cont #gnb .links a {

    flex: 1;
    position: relative;
    display: block;
    height: 46px;
    text-align: center;
    color: #333;
    font-size: 14px;
    line-height: 46px;
    font-weight: 500;
  }

  header .head-cont #gnb .links a::before {
    content: ' ';
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 12px;
    margin-top: -6px;
    background: #ddd;
  }

  header .head-cont #gnb .links a:first-child::before {
    display: none;
  }

  header .head-cont #gnb .links a.cash::after {
    content: 'P';
    display: inline-block;
    vertical-align: top;
    width: 12px;
    height: 12px;
    margin-left: 4px;
    color: #00b760;
    background-size: 100%;
  }

  header .head-cont #gnb .links a.logout {
    color: #ff6600;
  }

  header .head-cont #gnb .links a.sc {
    color: #00b760;
  }


  header .head-cont #gnb>ul {
    order: 2;
    height: 100%;
    overflow-y: auto;
  }

  header .head-cont #gnb>ul>li {
    position: relative;
    border-bottom: 1px solid #ddd;
  }

  header .head-cont #gnb>ul>li>a.dep1 {

    display: block;
    height: 46px;
    padding: 0 16px;
    font-size: 16px;
    line-height: 46px;
    font-weight: 500;
    color: #555;
  }

  header .head-cont #gnb>ul>li .btn-depth-more {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
  }

  header .head-cont #gnb>ul>li.on>a {
    color: #00b760;
  }

  header .head-cont #gnb>ul>li .btn-depth-more::after {
    content: ' ';
    position: absolute;
    top: 50%;
    right: 19px;
    width: 10px;
    height: 10px;
    margin-top: -7px;
    border: 2px solid #333;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    transition: all 0.2s ease-in-out;
  }

  header .head-cont #gnb>ul>li .btn-depth-more.open::after {
    margin-top: -2px;
    transform: rotate(135deg);
  }

  header .head-cont #gnb>ul>li ul.depth2 {
    display: none;
    padding: 20px 36px;
    background: #f6f6f6;
  }

  header .head-cont #gnb>ul>li ul.depth2 li {
    margin-top: 10px;
  }

  header .head-cont #gnb>ul>li ul.depth2 li:first-child {
    margin-top: 0;
  }

  header .head-cont #gnb>ul>li ul.depth2 li a {
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: 30px;
    color: #666;
    font-weight: bold;
  }

  header .head-cont #gnb>ul>li ul.depth2 li a:hover,
  header .head-cont #gnb>ul>li ul.depth2 li a:active {
    color: #00b760;
  }

  header .head-cont #gnb .btn-login,
  header .head-cont #gnb .btn-my {
    margin: 10px auto 10px 16px;
  }

  header .head-cont .btn-menu-all {
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: auto;
    z-index: 750;
    top: 0;
    right: 0;
  }

  header .head-cont .btn-menu-all.open {
    position: fixed;
    top: 0;
    right: 0;
  }

  header .head-cont .btn-menu-all .bar,
  header .head-cont .btn-menu-all::before,
  header .head-cont .btn-menu-all::after {
    content: ' ';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 24px;
    height: 2px;
    margin-top: -1px;
    background: #333;
    opacity: 1;
    transition: all 0.2s ease-in-out;
  }

  header .head-cont .btn-menu-all::before {
    margin-top: -8px;
  }

  header .head-cont .btn-menu-all::after {
    margin-top: 6px;
  }

  header .head-cont .btn-menu-all.open .bar {
    opacity: 0;
  }

  header .head-cont .btn-menu-all.open::before {
    margin-top: -1px;
    transform: rotate(45deg);
  }

  header .head-cont .btn-menu-all.open::after {
    margin-top: -1px;
    transform: rotate(-45deg);
  }

  header .head-cont ul.btns {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 50px;
    gap: 3px;
  }

  header .head-cont ul.btns>li>a {
    position: relative;
    vertical-align: middle;
    color: inherit;
    width: 50px;
    height: 45px;
    text-transform: uppercase;
    font-size: 12px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    gap: 3px;
    font-weight: bold;
  }


  header .head-cont ul.btns>li>a>i {
    display: block;
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-size: contain;
  }

  header .head-cont ul.btns>li>a.btn-join i {
    background-image: url(../_image/icon/icon-join.png);
  }

  header .head-cont ul.btns>li>a.btn-cart i {
    width: 30px;
    background-image: url(../_image/icon/icon-cart.png);
  }

  header .head-cont ul.btns>li>a.btn-login i {
    background-image: url(../_image/icon/icon-login.png);
  }


  header .head-cont ul.btns>li>a.btn-out i {
    background-image: url(../_image/icon/icon-logout.png);
  }


  header .head-cont ul.btns>li>a.my-page i {
    background-image: url(../_image/icon/icon-coaching.png);
  }


  header .head-bottom {
    display: block;
    overflow-x: auto;
  }

  header .head-bottom ul {

    display: flex;
    font-size: 0;
    white-space: nowrap;
    padding: 16px;
    overflow-x: scroll;
  }

  header .head-bottom ul::-webkit-scrollbar {
    display: none;
  }

  header .head-bottom ul li {
    display: inline-block;
    padding: 0 16px;
    flex: 1;
  }

  

  header .head-bottom ul li:first-child {
    padding-left: 0;
  }

  header .head-bottom ul li a {
    display: block;
    min-width: 50px;
    padding: 10px 0;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #000;
  }

  header .head-bottom ul li.list-point>a {
    position: relative;
    background: #00b760;
    padding: 8px 15px;
    padding-left: 30px;
    border-radius: 20px;
    color: #fff !important;
  }

  /* header .head-cont #gnb>ul>li.list-point>a:hover {
    background: #00b760;
  } */

  header .head-bottom ul li.list-point>a::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 10px;
    width: 40px;
    height: 50px;
    background: url(../_image/icon/icon-light.png)center center /contain no-repeat;
  }

  /* alarm-menu */

  header .head-cont h1 {
    padding: 0 12px;
    display: block;
    font-size: 0;
    margin-right: auto;
  }

  header .head-cont .btn-menu-all .bar,
  header .head-cont .btn-menu-all::before,
  header .head-cont .btn-menu-all::after {
    right: 12px;
  }

  header .head-cont .btns li i.alarm {
    /* position: relative; */
    display: inline-block;
    vertical-align: middle;
    color: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
  }

  header .head-cont .btns li i.alarm button {
    position: relative;
  }

  header .head-cont .btns li i.alarm span {
    position: absolute;
    top: -5px;
    left: -12px;
    z-index: 1;
    border-radius: 10px;
    background: #00b760;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    padding: 1px;
    font-size: 11px;
  }

  header .head-cont .alarm-menu>ul>li {
    border-bottom: solid 1px #ddd;
  }

  header .head-cont .alarm-menu>ul>li p.days {
    text-align: right;
    margin-bottom: 20px;
    margin-right: -30px;
    font-size: 14px;
  }

  header .head-cont .btns li i.alarm .alarm-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 80vw;
    padding: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    background: #fff;
    border: solid 1px #e9e9e9;
    border-radius: 10px;
    display: none;
    z-index: 0;
  }

  header .head-cont .btns li i.alarm .alarm-menu::before {
    position: absolute;
    content: '';
    top: -10px;
    right: 5%;
    width: 20px;
    height: 20px;
    border: solid 1px #e9e9e9;
    text-align: center;
    transform: rotate(45deg);
    border-width: 1px 0px 0px 1px;
    background: #fff;
  }

  header .head-cont .btns li i.alarm .alarm-menu .alarm-tit {
    position: relative;
    height: 30px;
    display: flex;
    align-items: center;
  }

  header .head-cont .btns li i.alarm .alarm-menu h2 {
    font-weight: 500;
    color: #1965b0;
    font-size: 18px;
  }

  header .head-cont .btns li i.alarm .alarm-menu .btn-close {
    position: absolute;
    top: 50%;
    right: -10px;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    z-index: 10;
  }


  header .head-cont .btns li i.alarm .alarm-menu .btn-close::before,
  header .head-cont .btns li i.alarm .alarm-menu .btn-close::after {
    content: ' ';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 24px;
    margin-top: -12px;
    margin-left: -1px;
    background: #000;
  }

  header .head-cont .btns li i.alarm .alarm-menu .btn-close::before {
    transform: rotate(45deg);
  }

  header .head-cont .btns li i.alarm .alarm-menu .btn-close::after {
    transform: rotate(-45deg);
  }

  header .head-cont .btns li i.alarm .alarm-menu ul {
    position: relative;
    overflow-y: auto;
    max-height: 600px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    transition: all .5s;
  }

  header .head-cont .btns li i.alarm .alarm-menu ul::-webkit-scrollbar {
    display: none;
  }

  header .head-cont .alarm-menu>ul>li {
    position: relative;
    margin: 10px 0;
    border-width: 1px 0;
    padding: 10px 0;
    word-break: keep-all;
    line-height: 1.5;
    padding-right: 30px;
  }

  header .head-cont .alarm-menu>ul>li::before {
    content: ' ';
    position: absolute;
    top: 50%;
    right: 3px;
    width: 10px;
    height: 10px;
    margin-top: -7px;
    border: 1px solid #bcbcbc;
    border-top: none;
    border-right: none;
    transform: rotate(-135deg);
    transition: all 0.2s linear;
  }

  header .head-cont #gnb .btn-logins {
    display: none;
  }


}


@media screen and (min-width: 1025px) and (max-width: 1024px) {
  header #gnb {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}


@media screen and (min-width: 1025px) and (max-width: 767px) {

  header .head-cont .area {
    padding-left: 16px;
    padding-right: 16px;
  }

  header .head-top ul.links {
    padding-left: 16px;
    padding-right: 16px;
  }

  header .head-cont {
    padding-left: 12px;
    padding-right: 12px;
  }

  header #gnb {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* common layout */
.skip-navigation {
  position: absolute;
  z-index: 9999;
}

.skip-navigation a {
  display: block;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}

@media screen and (min-width: 1025px) {
  body {
    overflow: initial !important;
  }

}

#wrap {
  position: relative;
  /* overflow: hidden; */
}

/* container */
.container {
  position: relative;
  padding-top: 120px;
}

.container.pop {
  position: relative;
  padding: 0;
}

.container.pop .goods_close {
  display: none;
  width: 30px;
  position: fixed;
  top: 7px;
  right: 0px;
  z-index: 9999;
}

.container.pop .sub-page-title {
  margin-top: 20px;
}

.container.pop .contents {
  padding: 20px 0;
}





.container .contents-area {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 1024px) {
  .container .contents-area {
    padding-left: 16px;
    padding-right: 16px;
  }
}


@media screen and (max-width: 767px) {
  .container .contents-area {
    padding: 0;
  }

  .container.pop .goods_close {
    display: inline-block;
  }
}

.cont_wrap {
  position: relative;
  width: 1400px;
  margin: 0 auto;
}

.page_tit {
  padding: 87px 30px;
  font-size: 18px;
  font-weight: bold;
  font-family: 'Pretendard';
}

.container .page-title {
  position: relative;
  width: 100%;
  height: 335px;
  padding: 50px;
  padding-top: 240px;
  padding-left: 17.5%;
  overflow: hidden;
}

.container .page-title::before {
  content: '';
  position: absolute;
  width: 86.5%;
  height: 100%;
  background: url("/_image/bg/bg-subvisual05.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  top: 0;
  right: 0;
  z-index: -9999;
  border-radius: 30px 0 0 30px;
}



.container .page-title.story {
  height: 740px;
  padding-right: 20%;
  padding-top: 150px;
}

.container .page-title.story .title {
  font-family: 'Pretendard';
  font-size: 36px;
  font-weight: bold;
  color: #252525;
  margin-bottom: 30px;
}

.container .page-title.story .story-title {
  width: fit-content;
  text-align: left;
  margin-left: auto;
}

.container .page-title.story .desc {
  font-size: 20px;
  color: #646363;
}

.container .page-title.ai {
  height: 740px;
  padding: 0;
  display: flex;
  justify-content: center;
  padding: 100px 0;
}

.container .page-title.ai .title {
  font-family: 'Pretendard';
  font-size: 30px;
  font-weight: bold;
  color: #252525;
}



.container .page-title.history {
  height: 740px;
  padding-right: 20%;
  padding-top: 440px;
}

.container .page-title.history .title {
  font-family: 'Pretendard';
  font-size: 36px;
  font-weight: bold;
  color: #252525;
  margin-bottom: 30px;
}

.container .page-title.history .story-title {
  width: fit-content;
  text-align: left;
  margin-left: auto;
}

.container .page-title.history .desc {
  font-size: 20px;
  color: #646363;
}

.container .page-title.history .story-title {
  margin-left: 0;
}

/* .container.cate01 .page-title::before {
  background: url("/_image/bg/bg-subvisual01.png");
} 

.container.cate02 .page-title::before {
  background: url("/_image/bg/bg-subvisual02.png");
}

.container.cate03 .page-title::before {
  background: url("/_image/bg/bg-subvisual03.png");
} 

.container.cate04 .page-title::before {
  background: url("/_image/bg/bg-subvisual04.png");
}

.container.cate05 .page-title::before {
  background: url("/_image/bg/bg-subvisual05.png");
}*/

.container.cate06 .page-title::before {
  background-image: url("/_image/bg/bg-subvisual06.png");
}

.container.cate07 .page-title::before {
  width: 100%;
  background: url(/_image/bg/bg-subvisual07.png)center center /cover no-repeat;
  border-radius: 0;
}

.container.cate08 .page-title::before {
  width: 100%;
  background: url(/_image/bg/bg-subvisual08.png)center center /cover no-repeat;
  border-radius: 0;
}




.container.cate07 .page-title::after {
  display: none;
}


.container .page-title.history::before {
  width: 100%;
  background: url(/_image/bg/bg-subvisual0701.png)center center /cover no-repeat;
  border-radius: 0;
}

.container .page-title.story::before {
  width: 100%;
  background: url(/_image/bg/bg-subvisual07.png)center center /cover no-repeat;
  border-radius: 0;
}


.container .page-title.ai::before {
  width: 100%;
  background: url(/_image/bg/bg-subvisual0703.png)center center /cover no-repeat;
  border-radius: 0;
}



.container.cate08 .page-title::before {
  width: 100%;
  background: url(/_image/bg/bg-subvisual08.png)center center /cover no-repeat;
  border-radius: 0;
}



/* .container .page-title::after {
  content: 'The  Key of  Your Skin Trouble';
  position: absolute;
  transform: translateY(-50%);
  left: 10%;
  margin-top: -75px;
  height: 100%;
  color: #cecece;
  text-transform: capitalize;
  font-size: 18px;
  writing-mode: vertical-rl;
  z-index: -1000;
} */

@media screen and (max-width: 1024px) {
  .container .page-title.story .title {
    font-size: 24px;
  }

  .container .page-title::after {
    left: 5%;
  }
}

@media screen and (max-width: 767px) {
  .container .page-title::after {
    top: 50%;
    font-size: 13px;
    margin-top: 5%;
  }

  .container .page-title::before {
    width: 90%;
    background-position: center;
  }
}



/* .container .page-title .title */
.container .page-title .title {
  /* font-family: 'Nanum Myeongjo'; */
  color: #fff;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  text-align: left;
  letter-spacing: 3px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}

.container .page-title .title.bk {
  color: #000;
}

@media screen and (max-width: 1024px) {
  .container .page-title .title {
    font-size: 36px;
  }
}


@media screen and (max-width: 767px) {
  .container .page-title {
    height: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .container .page-title .title {
    font-size: 24px;
  }

}


.container .sub-depth-wrap {
  position: relative;
  max-width: 1480px;
  margin: 40px auto;
  padding-left: 40px;
  padding-right: 40px;
}

@media screen and (max-width: 1024px) {
  .container .sub-depth-wrap {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 767px) {
  .container .sub-depth-wrap {
    margin-top: 0;
    text-align: center;
    overflow: hidden;
  }
  .container .sub-depth-wrap::before {
    content: ' ';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #ddd;
    z-index: -1;
  }
}
@media screen and (max-width: 520px) {
  .container .sub-depth-wrap {
    margin-top: 0;
    text-align: center;
    overflow: hidden;
    padding-left:20px;
    padding-right:20px;
  }
}

.depthSwiper {
  overflow: hidden;
}

.reviews-slider .swiper-button-disabled{
  display: none !important;
}

.result-slider .control-btn.next {
  right: 10px;
  background: url(/_image/icon/icon-next-btn.png) center center / contain no-repeat;
}

.result-slider .control-btn.prev {
  left: 10px;
  background: url(/_image/icon/icon-prev-btn.png) center center / contain no-repeat;
}

.result-slider .swiper-button-disabled{
  display: none !important;
}

@media screen and (max-width: 1024px) {
  .container .sub-depth-wrap .control-btn.prev,
  .container .sub-depth-wrap .control-btn.next{
    content:'';
  }
  .container .sub-depth-wrap .control-btn.prev{
    /* border:solid 1px blue; */
    left:-5px;
    background: url(/_image/icon/icon-prev-btn.png)center center /contain no-repeat;
    background-size:8px;
  }  
  .container .sub-depth-wrap .control-btn.next{
    /* border:solid 1px red; */
    right:-5px;
    background: url(/_image/icon/icon-next-btn.png)center center /contain no-repeat;
    background-size:8px;
  }  
  .container .sub-depth-wrap .swiper-button-disabled{
    display: none !important;
  }
}



/* @media screen and (min-width: 767px) {
  .container .sub-depth-wrap .tabs {
    width: 100% !important;
    min-width: 100%;
  }
} */

@media screen and (max-width: 1024px) {
  .container .sub-depth-wrap .tabs {
    gap:0;
  }
}

@media screen and (max-width: 767px) {
  .container .sub-depth-wrap .tabs {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    font-size: 0;
    vertical-align: top;
    gap: 30px;
  }
}

.container .sub-depth-wrap .tabs li {
  text-wrap: nowrap;
}

@media screen and (max-width: 1024px) {
.container .sub-depth-wrap .tabs li{
  flex:none;
  }
}
@media screen and (max-width: 767px) {
  .container .sub-depth-wrap .tabs li {
    display: inline-block;
    vertical-align: top;
    background: none;
  }
}

.container .sub-depth-wrap .tabs li a {
  display: block;
  /* border-left: 1px solid #fff; */
  background: transparent;
  color: #a3a3a3;
  text-align: center;
  font-size: 20px;
  line-height: 2;
  transition: background 0.2s linear;
}

.container .sub-depth-wrap .tabs li a:hover{
  color:#09aa5c;
}

@media screen and (max-width: 1366px) {
  .container .sub-depth-wrap .tabs li a {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .container .sub-depth-wrap .tabs li a {
    height: 35px;
    padding: 0;
    border-left: none;
    border-bottom: 2px solid transparent;
    color: #a3a3a3;
    font-size: 15px;
    line-height: 35px;
    font-weight: 400;
  }
}

.container .sub-depth-wrap .tabs li:first-child a {
  border-left: none;
}

.container .sub-depth-wrap .tabs li.active a {
  color: #000;
  border-bottom: solid 3px #000;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .container .sub-depth-wrap .tabs li.active a {
    background: none;
    border-color: #000;
    color: #000;
    font-weight: bold;
  }
}



.container .step-wrap {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  margin-top: 20px;
}

.container .step-wrap ol {
  font-size: 0;
  text-align: right;
  display: flex;
  gap: 50px;
  justify-content: flex-end;
}

.container .step-wrap ol li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  color: #555;
  text-align: center;
}

.container .step-wrap ol li i {
  margin-bottom: 20px;
  display: inline-block;
  padding: 20px;
  border-radius: 100%;
  width: 75px;
  height: 75px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: 3px 3px 13px #ddd;
  background: #fff;
}


.container .step-wrap ol li::before::first-child {
  padding-left: 0;
}

.container .step-wrap ol li::before {
  content: '';
  display: inline-block;
  vertical-align: top;
  margin: 35px 20px;
  color: #c2c1c1;
  width: 15px;
  height: 15px;
  right: 10px;
  border: 2px solid #c2c1c1;
  border-bottom: none;
  border-left: none;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all .3s;
  position: absolute;
  top: 0;
  left: -50px;
}

.container .step-wrap ol li:first-child::before {
  display: none;
}

.container .step-wrap ol li.now {
  color: #333;
  font-weight: 700;
}

/* .container .step-wrap ol li.now i{
  background: #00ae41;
} */

.container .step-wrap ol li.now i img {
  filter: grayscale(100%) brightness(0);
}

@media screen and (max-width: 1024px) {
  .container .step-wrap {
    padding: 0 12px;
  }

  .container .step-wrap ol li i {
    width: 50px;
    height: 50px;
    padding: 10px;
  }

  .container .step-wrap ol li i img {
    width: 20px;
    height: 20px;
  }

  .container .step-wrap ol li::before {
    margin: 25px 20px;
    width: 10px;
    height: 10px;
  }

  .container .step-wrap ol li {
    font-size: 14px;
  }
}


@media screen and (max-width: 520px) {
  .container .step-wrap ol {
    gap: 20px;
  }

  .container .step-wrap ol li i {
    width: 30px;
    height: 30px;
    padding: 10px;
    margin-bottom: 10px;
  }

  .container .step-wrap ol li i img {
    width: 10px;
    height: 10px;
  }

  .container .step-wrap ol li::before {
    margin: 15px 35px;
    width: 7px;
    height: 7px;
  }

  .container .step-wrap ol li {
    font-size: 12px;
  }
}



.container .title-banner {
  /* font-family: 'Nanum Myeongjo'; */
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  background: #efefef;
  border-radius: 5px;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 100px;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .container .title-banner {
    padding: 20px;
  }
}



.container .title-banner p {
  color: #000;
  font-size: 28px;
  text-align: right;
}

.container .title-banner h1 {
  font-size: 48px;
}



@media screen and (max-width: 767px) {
  .container .title-banner p {
    font-size: 18px;
  }

  .container .title-banner h1 {
    font-size: 28px;
    text-wrap: nowrap;
  }
}


@media screen and (max-width: 520px) {
  .container .title-banner h1 {
    font-size: 24px;
  }
}

.container .title-banner img {
  width: 150px;
  margin-top: -50px;
  margin-bottom: -50px;
}


@media screen and (max-width: 767px) {
  .container .title-banner img {
    width: 100px;
  }
}

.container .breadcrumb {
  max-width: 1480px;
  margin: 40px auto;
  padding-left: 40px;
  padding-right: 40px;
}

@media screen and (max-width: 1024px) {
  .container .breadcrumb {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .container .breadcrumb {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media screen and (max-width: 767px) {
  .container .breadcrumb {
    margin-top: 15px;
  }
}

.container .breadcrumb ol {
  font-size: 0;
}

.container .breadcrumb ol li {
  display: inline-block;
  vertical-align: top;
  font-size: 18px;
  color: #555;
}

.container .breadcrumb ol li:first-of-type {
  background: url(../_image/icon/icon-home.png)center center /contain no-repeat;
}

.container .breadcrumb ol li:first-of-type a {
  background: url(../_image/icon/icon-home.png)center center /contain no-repeat;
  width: 18px;
  height: 16px;
  display: block;
}

@media screen and (max-width: 767px) {
  .container .breadcrumb ol li {
    font-size: 14px;
  }
}

.container .breadcrumb ol li::before {
  content: '·';
  display: inline-block;
  vertical-align: top;
  margin: 0 6px;
  color: #dbdbdb;
}

.container .breadcrumb ol li:first-child::before {
  display: none;
}

.container .breadcrumb ol li.now {
  color: #333;
  font-weight: 700;
}

.tit-eye {
  /* font-weight: 300; */
  text-transform: capitalize;
  color: #303030;
  font-size: 40px;
  position: relative;
  max-width: 1480px;
  margin: 10px auto;
}

.main-title {
  position: relative;
  max-width: 1480px;
  margin: 10px auto;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -1px;
  color: #020202;
  text-align: center;
  margin-bottom: 20px;
}

.sub-eyebrow {
  position: relative;
  max-width: 1480px;
  margin: 40px auto;
  padding-left: 40px;
  padding-right: 40px;
  word-break: keep-all;
}

.sub-eyebrow .lash {
  margin-top: 100px;
  display: flex;
  color: #646363;
  align-items: center;
  font-size: 18px;
}

.sub-eyebrow .desc {
  margin-top: 20px;
  /* font-family: 'NanumMyeongjo'; */
  font-size: 24px;
}

.sub-eyebrow h2 {
  /* font-family: 'NanumMyeongjo'; */
  font-size: 58px;
  font-weight: bold;
  margin: 10px 0;
  color: #000;
}

.sub-eyebrow strong {
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
}


.sub-eyebrow ul.txt {
  margin-top: 30px;
  color: #8e8d8d;
  font-size: 20px;
  line-height: 1.5;
}

.sub-eyebrow ul.txt em {
  color: #000;
  font-weight: bold;
  font-size: 28px;
}

.sub-eyebrow ul.txt.black {
  color: #000;
}

@media screen and (max-width: 1366px) {
  .main-title{
    font-size:43px;
  }

  .tit-eye{
    font-size:32px;
  }
  
}
@media screen and (max-width: 1024px) {
  .sub-eyebrow {
    padding: 6px 16px;
    margin: 0;
  }

  .main-title {
    font-size: 36px;
  }

  .tit-eye {
    font-size: 28px;
  }

}

@media screen and (max-width: 767px) {
  .sub-eyebrow .desc {
    font-weight: bold;
  }

  .main-title {
    font-size: 28px;
  }

  .tit-eye {
    font-size: 24px;
  }
}


@media screen and (max-width: 520px) {

  .main-title {
    font-size: 25px;
  }

  .tit-eye {
    font-size: 20px;
  }
}



.line {
  display: block;
  border: none;
  width: 90px;
  height: 1px;
  border-top: solid 1px #898989;
  margin: 0 10px;
}

.line.lg {
  width: 20%;
}

.line.col {
  width: 2px;
  height: 50px;
  background: #c0c0c0;
  margin: 10px auto
}



.sub-page-title {
   position: relative;
  max-width: 1480px;
  margin: 10px auto;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 36px;
  line-height: 1;
  text-align: left;
  letter-spacing: -1px;
  color: #000;
  line-height: 1.2;
  word-break: keep-all;
  font-weight: bold;
}

.sub-page-title.sm{
  font-size:28px;
}

.sub-page-title em {
  display: block;
}

.sub-page-title .eye {
  font-family: 'Pretendard';
  font-size: 18px;
  color: #585858;
  font-weight: 500;
}

.sub-page-title.center {
  text-align: center;
  margin-top: 0;
}

@media screen and (max-width: 1024px) {
  .story-title {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 50px;
  }

  .sub-page-title {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}


@media screen and (max-width: 767px) {
  .sub-page-title {
    padding-left: 12px;
    padding-right: 12px;
    margin-top: 40px;
    font-size: 26px;
  }
}

@media screen and (max-width: 520px) {
  .sub-page-title.sm,
  .sub-page-title {
    font-size: 22px;
  }
}


.sub-page-title-wrap {
  position: relative;
  max-width: 1480px;
  margin: 10px auto;
  padding-left: 40px;
  padding-right: 40px;
  align-items: center;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

.sub-page-title-wrap .sub-page-title {
  margin: 0;
  padding: 0;
}

.sub-page-title-wrap p{
    font-size:24px;
    font-weight: normal;
}

.sub-page-title-wrap span{
  font-weight: bold;
}

.container .contents {
  position: relative;
  padding-top: 50px;
  padding-bottom: 80px;

}

.container .contents.ivory{
  background: #f2ede9;
  margin:0;
}



@media screen and (max-width: 767px) {
  .sub-page-title-wrap{
    padding-left: 16px;
    padding-right: 16px;
  }

  .container .contents {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.container .contents .sect {
  max-width: 1480px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  margin-top: 100px;
  /* overflow: hidden; */
}

.container .contents .sect.ivory{
  position: relative;
  background: #f2ede9;
  margin: 0 auto;
  padding-bottom: 30px;
}
.container .contents .sect.ivory::before,
.container .contents .sect.ivory::after{
   content: "";
   position: absolute;
   top: 0;
   bottom: 0;
   left: -9999px;
   right: 0;
   background: #f2ede9;
   z-index: -1;
}
.container .contents .sect.ivory::after{
   right: -9999px;
}


.container .contents .sect.full {
  position: relative;
  max-width: 100%;
  padding: 40px 0;
  margin: 0;
}


@media screen and (max-width: 1024px) {
  .container .contents .sect.full {
    padding: 30px 16px;
  }
}


.container .contents .sect.full .area {
  max-width: 1480px;
  margin: 0 auto;
  padding: 40px;
}

@media screen and (max-width: 767px) {
  .container .contents .sect.full .area {
    padding: 30px 16px;
  }
}



.container .contents .sect .tit {
  /* font-family: 'NanumMyeongjo'; */
  font-size: 38px;
  line-height: 1.2;
  color: #000;
  word-break: keep-all;
}

@media screen and (max-width: 1366px) {

  .container .contents .sect .tit,
  .container .contents .sect .tit strong {
    font-size: 28px;
    margin-bottom: 20px;
  }
}


@media screen and (max-width: 767px) {
  .container .contents .sect .tit {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .container .contents .sect .tit strong {
    font-size: 25px;
  }
}




.container .contents .sect.skin {
  background: url(../_image/bg/bg_skin.png)center center /cover no-repeat;
  padding: 100px 0;
}



/* .container .contents .sect.full::before,
.container .contents .sect.full::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -9999px;
  right: 0;
  background-color: #f6f6f6;
  z-index: -1;
}

.container .contents .sect.full::after {
  right: -9999px;
} */


.container .contents .sect.point {
  position: relative;
}

.container .contents .sect.point::before {
  content: "";
  position: absolute;
  width: 100%;
  bottom: -20%;
  height: 70%;
  left: 0;
  right: 0;
  background-color: #ffc600;
  z-index: -1111;
  border-radius: 50px;
}


.container .contents .sect.bg {
  position: relative;
  width: 100%;
  overflow: hidden;
}


.container .contents .sect.bg::before,
.container .contents .sect.bg::after {
  content: "";
  position: absolute;
  top: 25px;
  bottom: 0;
  left: -9999px;
  right: 0;
  background-color: #f6f6f6;
  z-index: -1111;
}

.container .contents .sect.bg::after {
  right: -9999px;
}

.container .contents .sect.bg2 {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.container .contents .sect.bg2::before,
.container .contents .sect.bg2::after {
  content: "";
  position: absolute;
  top: 25px;
  bottom: 0;
  left: -9999px;
  right: 0;
  background-color: #f2ede9;
  z-index: -1111;
}

.container .contents .sect.bg2::after {
  right: -9999px;
}

.container .contents .sect.bg-half {
  position: relative;
  background: linear-gradient(to right, #d2ceca 50%, #f7f7f7 50%);
  z-index: 0;
}

.container .contents .sect.bg-half::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 50%;
  background: #fff;
  width: 100%;
  z-index: -9999;
}

.container .contents .sect.bg-half.ai-manager {
  margin-top: -20%;
}

@media screen and (max-width: 1024px) {
  .container .contents .sect {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .container .contents .sect {
    padding-left: 12px;
    padding-right: 12px;
    overflow: hidden;
  }
}

@media screen and (max-width: 1024px) {
  .container .contents .sect {
    margin-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  .container .contents .sect {
    margin-top: 60px;
  }
}


.container .contents .sect .eyebrow {
  /* font-family: 'Nanum Myeongjo'; */
  font-size: 24px;
  color: #00b760;
  font-weight: bold;
  margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  .container .contents .sect .eyebrow {
    font-size: 20px;
    margin-bottom: 10px;
  }
}


.container .contents .sect:first-child {
  margin-top: 0;
  padding-bottom: 10px;
}

.container .nodata {
  padding: 100px 0;
  color: #a3a3a3;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .container .nodata {
    font-size: 14px;
    line-height: 22px;
  }
}

.container .agree-chk-box {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .container .agree-chk-box {
    margin-top: 20px;
  }
}

.container .agree-chk-box .tit {
  margin-bottom: 10px;
  font-size: 24px !important;
  line-height: 26px;
  letter-spacing: -0.3px;
  font-weight: 700;
}



@media screen and (max-width: 767px) {
  .container .agree-chk-box .tit {
    font-size: 16px !important;
    line-height: 24px;
  }
}

.container .agree-chk-box .agree-cont {
  max-height: 200px;
  padding: 20px;
  border: 1px solid #ddd;
  overflow-y: auto;
  font-size: 16px;
  line-height: 22px;

  color: #2a2a2a;
}


@media screen and (max-width: 767px) {
  .container .agree-chk-box .agree-cont {
    font-size: 14px;
    padding: 12px;
  }
}

@media screen and (max-width: 520px) {
  .container .agree-chk-box .agree-cont {
    font-size: 13px;
  }
}

.container .agree-chk-box .chk-wrap {
  margin-top: 20px;
  padding: 10px 0;
  width: 100%;
  word-break: keep-all;
}


.container .agree-chk-box .chk-wrap.point {
  padding: 20px;
  border: solid 2px #00b760;
  border-radius: 10px;
  background: #fbf8ff;
  font-weight: bold;
}

.chk-wrap.point input:checked+label::before {
  border-color: #00b760;
  background: transparent;
  border-width: 2px;
}

.chk-wrap.point input:checked+label::after {
  border-color: #00b760;
}


/* member */
.member-wrap {
  max-width: 500px;
  margin: 0 auto 0;
  padding: 40px 25px;
  border-radius: 4px;
}


@media screen and (max-width: 767px) {
  .member-wrap {
    border: none;
    margin-top: 40px;
    padding: 0px 16px;
  }
}

.member-wrap h2.title {
  font-size: 36px;
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: left;
  word-break: keep-all;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .member-wrap h2.title {
    font-size: 22px;
    padding: 0 20px;
  }
}


.member-wrap h3.sub-title {
  font-family: 'Pretendard' !important;
  font-size: 30px !important;
  margin-top: 50px;
  word-break: keep-all;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .member-wrap h3.sub-title {
    font-size: 16px;
    margin-top: 30px;
    padding: 0 20px;
  }
}

.member-wrap .form-control {
  background: #f5f5f5;
}

.member-wrap .form-wrap.box {
  background: #e6e6e6;
  padding: 30px;
  border-radius: 5px
}

.member-wrap .form-wrap.user {
  padding: 0px;
  border-radius: 5px
}

.member-wrap .form-wrap.user .form-control {
  background: #fff;
}

.member-wrap .form-wrap.user .form-control:disabled {
  background: #f5f5f5;
}

.form-wrap .form-sect {
  margin-top: 50px;
}

.form-wrap .form-sect:first-child {
  margin-top: 0;
}

.form-wrap .form-sect .form-tit {
  float: left;
  width: calc(25%);
  padding-right: 20px;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: -1.5px;
  word-break: keep-all;
  font-weight: bold;
}



.form-wrap .form-sect .form-cont {
  margin-left: calc(25%);
}

.form-wrap .form-sect .form-cont .form-desc {
  margin-bottom: 30px;
  padding-top: 9px;
}


.form-wrap .form-sect .form-cont .form-desc .essen {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  word-break: keep-all;
}

.form-wrap .form-sect .form-cont .form-desc .essen::before {
  content: '※';
  display: inline-block;
  margin-right: 4px;
}


.form-wrap .form-sect .form-cont .row {
  display: flex;
  margin-top: 20px;
}

.form-wrap .form-sect .form-cont .row>label,
.form-wrap .form-sect .form-cont .row>.label {
  width: 180px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.5px;
  padding-top: 8px;
  font-weight: 500;
  line-height: 24px !important;
  word-break: keep-all;
}

.form-wrap .form-sect .form-cont .row>label.essen::after,
.form-wrap .form-sect .form-cont .row>.label.essen::after {
  content: '*';
  margin-left: 2px;
  color: #f9b603;
}


.form-wrap .form-sect .form-cont .row .forms {
  width: calc(100% - 180px);
}

.form-wrap .form-sect .form-cont .row .forms.full .input-wrap {
  max-width: 100%;
}

.input-wrap input {
  width: 100%;
  height: 40px;
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 7px 10px;
  color: #666;
  font-size: 16px;
  line-height: 24px;
}

.form-wrap .form-sect::after {
  content: " ";
  display: block;
  clear: both;
}



@media screen and (max-width: 767px) {
  .form-wrap .form-sect .form-tit {
    width: 100%;
    font-size: 20px;
  }

  .form-wrap .form-sect .form-cont p {
    display: block;
    font-size: 15px;
  }

  .form-wrap .form-sect .form-cont .row {
    margin: 0;
  }

  .form-wrap .form-sect .form-cont {
    margin-left: 0;
  }
}



@media screen and (max-width: 1024px) {
  .form-wrap .my-secession .form-tit {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .list-filter {
    flex-wrap: wrap;
  }

  .form-wrap .my-secession .my-info {
    flex-direction: column;
    border-radius: 0;
    padding: 50px 16px;
    text-align: center;
  }

  .form-wrap .my-info .title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .form-wrap .my-secession .form-sect {
    margin: 0;
    flex-direction: column;
    display: flex;
    padding: 16px;
  }
}


.agree-wraps-join {
  position: relative;
  width: 100%;
  padding-bottom: 15px;
  margin-bottom: 20px;
  background: #f4f4f4;
  border-radius: 5px;
  padding: 20px 30px;
  margin-top: 20px;
}

.agree-wraps-join h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #222;
}


.agree-wraps-join .chk-wrap.all {
  display: block;
  padding: 20px 0;
}

.agree-wraps-join .chk-wrap.all input[type=checkbox] {
  display: none;
}

.agree-wraps-join .chk-wrap.all input[type=checkbox]+label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  width: 100%;
  padding-left: 30px;
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
  color: #000;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}



/* .agree-wraps-join .chk-wrap.all input[type=checkbox]+label::after {
  left: unset;
  right: 8px;
} */

.agree-wraps-join .chk-wrap {
  position: relative;
  display: block;
  padding: 15px 0px;
}

.agree-wraps-join .chk-wrap input+label {
  /* width: 100%; */
  /* padding-left: 0; */
  font-weight: bold;
  line-height: 28px;
  width: fit-content;
  margin-left: auto;
  display: flex;
}

.agree-wraps-join .chk-wrap input+label .red {
  padding: 0;
  display: inline-block;
  color: #f25656;
  margin-left: 5px;
  margin-bottom: 0;
  border-left: 0;
}


label[for=agree] {
  font-weight: 500;
  color: #2a2a2a !important;
}

/* .agree-wraps-join .chk-wrap input[type=checkbox]+label:before {
  left: unset;
  right: 0;
}

.agree-wraps-join .chk-wrap input:checked+label::after {
  left: unset;
  right: 8px;
}  */

@media screen and (max-width: 767px) {
  .member-wrap .chk-wrap {
    padding: 10px 0;
    padding-left: 5px;
  }

  .agree-wraps-join .chk-wrap.all input[type=checkbox]+label {
    font-size: 18px;
  }
}

/*탈퇴*/


.agree-wraps-secession {
  position: relative;
  width: 100%;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.agree-wraps-secession h2 {
  margin: 20px 0;
}

/* .agree-wraps-secession ul li {
  margin-bottom: 20px;
} */

.agree-wraps-secession .chk-wrap.all {
  display: block;
  padding: 15px 0;
}

.agree-wraps-secession .chk-wrap.all input[type=checkbox] {
  display: none;
}

.agree-wraps-secession .chk-wrap.all input[type=checkbox]+label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  width: 100%;
  padding: 0 24px 0 0px;
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
  color: #000;
  vertical-align: middle;
}

.agree-wraps-secession .chk-wrap.all input[type=checkbox]+label:before {
  left: auto;
  right: 0;
}

.agree-wraps-secession .chk-wrap.all input[type=checkbox]+label::after {
  left: unset;
  right: 8px;
}

.agree-wraps-secession .chk-wrap {
  position: relative;
  display: block;
  padding: 10px 0px;
}


.agree-wraps-secession .chk-wrap input+label .red {
  padding: 0;
  display: inline-block;
  color: #f25656;
  margin-left: 5px;
  margin-bottom: 0;
  border-left: 0;
}


@media screen and (max-width: 767px) {
  .member-wrap .chk-wrap {
    padding: 10px 0;
    padding-left: 5px;
  }

  .agree-wraps-secession .chk-wrap.all input[type=checkbox]+label {
    font-size: 18px;
  }
}








/*--탈퇴--*/
/*퀴즈*/

.agree-wraps-quiz {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.agree-wraps-quiz .chk-wrap {
  position: relative;
  display: block;
  padding: 10px 0px;
  flex: 0 0 48%;
}

.agree-wraps-quiz .chk-wrap input+label {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .agree-wraps-quiz .chk-wrap {
    padding: 10px 0;
    padding-left: 5px;
    flex: unset;
    width: 100%;
  }
}

/*--퀴즈--*/

/*환불*/
.agree-wraps-refund {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.agree-wraps-refund .chk-wrap {
  position: relative;
  display: block;
  padding: 10px 0px;
  flex: 0 0 30%;
}

@media screen and (max-width: 767px) {
  .member-wrap .chk-wrap {
    padding: 10px 0;
    padding-left: 5px;
  }

  .agree-wraps-refund .chk-wrap {
    flex: unset;
    width: 100%;
  }
}

/*--환불--*/


/*--이벤트--*/
.agree-wraps-event {
  position: relative;
  width: 100%;
  margin: 20px 0;
}

.agree-wraps-event h2 {
  margin: 20px 0;
}

.agree-wraps-event ul li {
  margin-bottom: 20px;
}

.agree-wraps-event .chk-wrap.all {
  display: block;
  padding: 15px 0;
  background: #e6e6e6;
}

.agree-wraps-event .chk-wrap.all input[type=checkbox] {
  display: none;
}

.agree-wraps-event .chk-wrap.all input[type=checkbox]+label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  width: 100%;
  padding: 0 0 0 30px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #000;
  vertical-align: middle;
}


.agree-wraps-event .chk-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
}


.agree-wraps-event .chk-wrap input+label .red {
  padding: 0;
  display: inline-block;
  color: #f25656;
  margin-left: 5px;
  margin-bottom: 0;
  border-left: 0;
}


@media screen and (max-width: 767px) {
  .member-wrap .chk-wrap {
    padding: 10px 0;
    padding-left: 5px;
  }

  .agree-wraps-event .chk-wrap.all input[type=checkbox]+label {
    font-size: 16px;
  }
}

.agree-event-box {
  background: #fff;
  padding: 5px 10px;
  border: solid 1px #ddd;
  border-radius: 5px;
}

.agree-event-box a {
  font-size: 14px;
  text-decoration: underline;
  color: #ccc;
}

/*--//이벤트--*/




/* 상품 */
.product-tbl {
  position: relative;
}

.product-info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  overflow: hidden;
}

.product-info .thumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 150px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #ddd;
  flex: 0 0 150px;
}

.product-info .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-name {
  position: relative;
  font-size: 18px;
  color: #222;
  line-height: 1.2;
  flex: 1;
  overflow: hidden;
}

.product-name p {
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp:2;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .product-name {
    /*max-width: 200px;*/
    font-size: 16px;
  }

  .product-name p {
    white-space: pre-line;
  }
}


.pmoneycss {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
}

.m2,
.m4 {
  float: left;
  width: 35px;
  height: 35px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
  font-size: 20px;
  cursor: pointer;
  background: #f2f2f2;
}

.m3 {
  float: left;
  border: 1px solid #ccc;
  border-width: 1px 0;
  width: 42px;
  height: 35px;
  text-align: center;
  font-size: 16px;
  background: #fff;
  color: #505050;
}

.m4 {
  border-radius: 0 5px 5px 0;
  color: #505050;
}

.pay-info {
  margin-top: 30px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.pay-info .btn-group {
  margin: 0;
  gap: 0;
}

.pay-info .btn {
  font-size: 18px;
  height: 50px;
  line-height: 50px;
  margin-top: 0;
}

.pay-info ul {
  position: relative;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}

.pay-info ul li {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pay-info ul li p {
  display: inline-block;
  margin-right: auto;
}

.pay-info ul li span {
  margin-left: 20px;
  font-weight: bold;
  font-size: 24px;
}

.pay-info ul li span.total_pay {
  color: #368556;
}

.pay-info .desc {
  font-weight: 500;
  color: #828282;
}

.pay-box {
  position: relative;
  padding: 20px;
  border: solid 2px #eee;
  border-radius: 20px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}

.pay-box2 {
  margin: 0 auto;
  position: relative;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  max-width: 1440px;
}

.pay-box2.center{
  justify-content: center;
}
.pay-box2 .desc {
  font-size: 24px;
  word-break: keep-all;
}

/* .pay-box2::before,
.pay-box2::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -9999px;
  right: 0;
  z-index: -1;
  border-top: solid 2px #eee;
} */




.pay-box2 .total_pay {
  font-size: 45px;
  font-weight: bold;
  color: #368556;
}

.pay-box2 .total_pay span {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .pay-box2 {
    flex-direction: column;
    gap: 20px;
  }

  .pay-box2 .desc {
    font-size: 18px;
  }

  .pay-box2 .total_pay {
    font-size: 32px;
  }
}

.pay-box2 ul {
  position: relative;
  display: flex;
  gap: 10px;
  width: 100%;
  margin-right: 10px;
  flex-wrap: wrap;
}

@media screen and (max-width: 520px) {
  .pay-box2 ul {
    flex-direction: column;
    margin-right: 0px;
  }
}

.pay-box2 ul li {
  position: relative;
  text-align: left;
  width: 100%;
  flex: 1;
}


.input-container {
  position: relative;
  cursor: pointer;
}

.input-container input {
  position: absolute;
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: pointer;
  opacity: 0;
}


.input-container .radio-tile {
  border: 1px solid #ccc;
  border-radius: 20px;
  box-sizing: border-box;
  height: 100%;
  padding:2px;
}


.input-container label {
  position: relative;
  font-size: 0.80rem;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: #fff;
  padding:20px;
  cursor: pointer;
  border-radius: 20px;
}

.input-container .radio-tile .goods-name {
  font-size: 20px;
  font-weight: 800;
  line-height: 24px;
}

.input-container .radio-tile h3 {
  font-weight: 600; /*bold;*/
  line-height: 1.2;
  font-size: 19px; /*22px;*/
  word-break: keep-all;
  padding-bottom: 10px;
  border-bottom: solid 1px #ddd;
  margin-bottom: 10px;
}

.input-container .radio-tile del,
.input-container .radio-tile span {
  font-size: 14px;
}


input:checked+.radio-tile {
  position: relative;
  background: linear-gradient(to right, #fca32a, #ff3e23, #c01d6d, #3399ff, #33ccff);
  clip-path: inset(0 round 25px); 
  padding: 2px;
}



/* svg */

/* vietnamese */
@font-face {
  font-family: 'Alex Brush';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/alexbrush/v22/SZc83FzrJKuqFbwMKk6EhUrz7QtO.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'Alex Brush';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/alexbrush/v22/SZc83FzrJKuqFbwMKk6EhUvz7QtO.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Alex Brush';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/alexbrush/v22/SZc83FzrJKuqFbwMKk6EhUXz7Q.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.drawsvg {
  position: relative;
}


.stroke {
  stroke: #000;
  stroke-width: 1px;
  stroke-dasharray: 0 250;
  stroke-opacity: 1;
  fill: none;
  animation: stroke_offset 8s forwards;
  animation-timing-function: cubic-bezier(.25, .46, .45, .94)
}


@keyframes stroke_offset {

  100%,
  25% {
    stroke-dasharray: 0 250;
    stroke-opacity: 1
  }

  50%,
  75% {
    stroke-dasharray: 250 0;
    stroke-opacity: .75
  }

  55%,
  70% {
    stroke-dasharray: 250 0;
    stroke-opacity: 0
  }
}

.fill {
  fill: #000;
  fill-opacity: 0;
  animation: fill_offset 8s forwards;
  animation-timing-function: cubic-bezier(.25, .46, .45, .94)
}

@-webkit-keyframes fill_offset {

  100%,
  25%,
  35%,
  90% {
    fill-opacity: 0
  }

  50%,
  70% {
    fill-opacity: 1
  }
}

@keyframes fill_offset {

  100%,
  25%,
  35%,
  90% {
    fill-opacity: 0
  }

  50%,
  70% {
    fill-opacity: 1
  }
}

#fade-text {
  font-family: 'Alex Brush', cursive;
  font-size: 4rem;
}

svg {
  position: absolute
}


/*svg*/


/* 기본상품*/

.input-container label .eye>p {
  font-size: 14px;
  font-weight: 500;
}

.input-container label .d-flex p {
  width: fit-content;
  border-radius: 30px;
  text-align: center;
  color: #e40e4b;
}


/* 기본할인 */
.input-container label .d-flex .discount,
.input-container label .d-flex .membership {
  display: flex;
  gap: 10px;
  align-items: center;
}

.input-container label .d-flex .discount {
  color: #939598;
  word-break: auto-phrase;
}

.input-container label .d-flex .membership {
  color: #000;
  word-break: auto-phrase;
}

/* 추가혜택 */
.input-container label .d-flex .benefit {
  color: #368556;
}

/* 추가할인 */
.input-container label .d-flex .additional {
  color: #00b5e2;
}



.input-container .radio-tile .price {
  font-weight: 600;
  text-align: right;
  font-size: 20px; 
  gap: 10px;
  flex-direction: column;
}

input:checked+.radio-tile {
  border-radius: 20px;
}

input:checked+.radio-tile label::before {
  border-color: #fff;
  border-width: 4px;
}



.pay-box .btn {
  height: 50px;
  line-height: 50px;
}

.pay-box .naverpay {
  margin-left: 10px;
  margin-top: -10px;
}

.pay-guide {
  margin-top: 50px;
  border: solid 1px #eee;
  border-radius: 20px;
  overflow: hidden;
}

.pay-guide ul {
  display: flex;
  font-weight: 600;
}

.pay-guide ul li {
  position: relative;
  flex: 1;
  text-align: center;
  background: #fafafa;
  padding: 40px 20px;
  border-right: solid 1px #eee;
}

.pay-guide ul li p {
  color: #828282;
  margin-bottom: 10px;
}

.pay-guide ul li:last-of-type {
  border-right: none;
  background: #368556;
  color: #fff;
}

.pay-guide ul li:last-of-type p {
  color: #fff;
}

.pay-guide ul li span {
  font-size: 30px;
  font-weight: bold;
}

.pay-guide ul li::before {
  position: absolute;
  right: -40px;
  border: solid 1px #eee;
  border-radius: 100%;
  z-index: 1;
  background: #fff;
  color: #999;
  width: 40px;
  height: 40px;
  line-height: 40px;
  top: 50%;
  transform: translate(-50%, -50%);
}

.pay-guide ul li:nth-child(1):before {
  content: '+';
}

.pay-guide ul li:nth-child(2):before {
  content: '-';
}

.pay-guide ul li:nth-child(3):before {
  content: '-';
}

.pay-guide ul li:nth-child(4):before {
  content: '=';
}

@media screen and (max-width: 767px) {
  .pay-info {
    flex-direction: column-reverse;
  }

  .pay-info>div,
  .pay-info ul {
    width: 100%;
  }

  .pay-info>div {
    margin-bottom: 10px;
  }

  .pay-info .btn-group {
    width: 100%;
  }

  .pay-info .btn {
    font-size: 16px;
  }

  .pay-box {
    margin-top: 0px;
  }

  .pay-box,
  .pay-box .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .pay-box .btn-group {
    padding: 0;
  }

  .pay-box .btn-group .btn {
    margin: 5px 0;
  }

  .pay-box .naverpay {
    margin-left: 0px;
    margin-top: 12px;
  }

  .pay-guide {
    display: none;
  }
}

.balance {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* 결제정보 */
.orderer_info {
  position: relative;
  display: flex;
  gap: 30px;
  align-items: start;
}

.orderer_info .orderer_item_wrap {
  position: relative;
  flex: 1;
}



.orderer_info .orderer_item h3 {
  font-family: 'yg-jalnan';
  line-height: 1.2;
  font-weight: bold;
  font-size: 24px;
  margin: 20px 0;
}

.orderer_info .orderer_item:first-of-type h3 {
  margin-top: 0;
}

.orderer_info .orderer_item_wrap .orderer_item {
  margin-top: 50px;
}

.orderer_info .orderer_item_wrap .orderer_item:first-of-type {
  margin: 0;
}

.orderer_info aside {
  position: sticky;
  top: 10%;
  right: 0;
  width: 25%;
  min-height: 200px;
}


.addr {
  width: 120px;
  height: 30px;
  max-width: 500px;
  min-height: 50px;
  height: 50px;
  padding: 7px 14px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  font-size: 16px;
  line-height: normal;
  /* transform: skew(-0.05deg); */
  transition: border-color 0.15s ease-in-out;
}



.point_info {
  font-size: 14px;
  margin-top: 5px;
}

/* 최종 결제정보 */

.side-info {
  border: solid 2px #000;
  border-radius: 20px;
  padding: 40px 30px;
  margin-top: 20px;
  overflow: hidden;
  word-break: keep-all;
}

.side-info ul {
  font-weight: 500;
}

.side-info ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 10px 0;
  border-bottom: solid 1px #eee;
  color: #828282;
  font-size: 18px;
}

.side-info ul li:last-of-type {
  margin: 0;
}

.side-info ul li span {
  color: #000;
}

.side-info ul li span b {
  font-size: 20px;
}

.side-info .payment-total {
  position: relative;
  margin: 10px 0;
  padding: 20px 0;
  background: #fafafa;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}



.side-info .payment-total::before,
.side-info .payment-total::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -9999px;
  right: 0;
  background-color: #fafafa;
  z-index: -1;
}

.side-info .payment-total::after {
  right: -9999px;
}

.side-info .payment-total .total_pay {
  font-size: 30px;
  color: #368556;
  margin-left: auto;
}



@media screen and (max-width: 1024px) {
  .orderer_info {
    position: relative;
    display: block;
  }

  /* .addr,
  .addr1 {
    width: 50%;
  } */

  .orderer_info aside {
    margin-top: 50px;
    width: 100%;
  }

  .pay-guide {
    margin-bottom: 50px;
  }

  .pay-guide ul li {
    padding: 50px 10px;
  }

  .pay-guide ul li span {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .pay-guide ul li p {
    font-size: 14px;
  }

  .pay-guide ul li {
    padding: 20px 10px;
  }
}



@media screen and (max-width: 520px) {
  .pay-guide ul li span {
    font-size: 14px;
  }

  .pay-guide ul li::before {
    right: -20px;
    width: 20px;
    height: 20px;
    line-height: 18px;
  }
}

/* //결제정보 */

/* 주소 */


.address-tbl {
  position: relative;
}

.address-tbl .btn-group {
  margin: 0;
  gap: 10px;
}

.address-tbl .btn-group .btn {
  min-width: 90px;
  margin: 0;
  height: 40px;
  line-height: 40px;
  min-height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}


.address-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.address-wrap .form-control {
  display: flex;
  gap: 10px;
  align-items: center;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0px;
  height: 50px;
}

.address-wrap .form-control>input {
  border: none;
  margin-bottom: 0;
  width: 100%;
  font-size: 16px;
}

.address-wrap .form-control::placeholder {
  color: #2b2b2b;
  font-weight: bold;
}

.address-wrap .form-control>input[type="text"]::placeholder {
  color: #969696;
}

.address-wrap label {
  display: block;
  font-size: 16px;
  color: #969696;
  word-break: keep-all;
  width: fit-content;
}

.address-wrap label b {
  color: #2b2b2b;
  text-wrap: nowrap;
}

.address-wrap input {
  margin-bottom: 15px;
  color: #000;
  height: 50px;
}

.address-wrap select {
  position: relative;
  background: #fff url(/_image/icon/icon-arrow.png) no-repeat 98% 50%;
  -o-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 100%;
  border: none;
  font-size: 16px;
  font-weight: bold;
}

.address-wrap .form-control>input:focus,
.address-wrap select:focus {
  outline: none;
  border: none;
}

.address-wrap .form-control::placeholder {
  color: #999;
  font-weight: normal;
}

.address-wrap select::-ms-expand {
  display: none;
}

.address-wrap select option {
  border-radius: 0;
}

.address-wrap input::placeholder {
  color: #999;
  font-size: 16px;
  font-weight: 500;
}

.address-wrap select option:hover,
.address-wrap select option:focus,
.address-wrap select option:checked {
  background: #6f349e;
  color: white;
}



@media screen and (max-width: 520px) {
  .address-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .addr1 {
    margin: 0;
  }
}


/* .address-wrap select:focus {  
  background:#fff url('/_image/icon/icon-arrow.png') no-repeat 98% 50%;
} */

.addressList {
  position: relative;
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
}

.addItem {
  padding: 10px 0;
  border-bottom: solid 1px #ddd;
  border-width: 1px 0;
}

.addHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.addDefault {
  display: flex;
  align-items: center;
  gap: 5px;
}

.addDefault span {
  font-size: 11px;
  line-height: 17px;
  letter-spacing: -.3px;
  display: inline-block;
  margin: 2px 0 0 4px;
  padding: 1px 4px;
  border-radius: 2px;
  background-color: #f3f5f7;
  font-weight: 500;
  vertical-align: top;
  color: #929294;
  width: fit-content;
}

.addUser {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.btn.addBtn {
  background-color: #e3f6ed;
  color: #09aa5c;
}

.data-cell {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -.3px;
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
  color: #767678;
}

/* //주소 */

.find-tabs {
  position: relative;
}

.find-tabs::before {
  content: ' ';
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  background: #ddd;
}

.find-cont-wrap .find-conts {
  padding-top: 50px;
}

.find-cont-wrap .find-conts>.tit {
  font-size: 20px;
}

.find-cont-wrap .find-conts .desc {
  margin-top: 15px;
  font-size: 16px;
}

.member-wrap .member-join-wrap {
  width: 750px;
  margin: 40px auto 0;
  padding-top: 40px;
  border-top: 1px solid #ddd;
}

.member-wrap .member-join-wrap>.tit {
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}

.member-wrap .member-join-wrap section {
  margin-top: 50px;
  padding: 30px 25px 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.member-wrap .member-join-wrap section:first-child {
  margin-top: 0;
}

.member-wrap .member-join-wrap .agree-wraps .chk-wrap.all {
  display: block;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.member-wrap .member-join-wrap .agree-wraps .terms-lists>li {
  margin-top: 30px;
}

.member-wrap .member-join-wrap .agree-wraps .terms-lists>li:first-child {
  margin-top: 20px;
}

.member-wrap .member-join-wrap .agree-wraps .terms-lists>li .titles {
  display: flex;
  align-items: center;
}

.member-wrap .member-join-wrap .agree-wraps .terms-lists>li .titles .text-basic {
  margin-left: auto;
  font-size: 18px;
}

.member-wrap .member-join-wrap .agree-wraps .terms-lists>li .conts {
  display: none;
  max-height: 180px;
  overflow-y: auto;
  margin: 15px 0;
  padding: 20px;
  background: #faf8f5;
  color: #666;
  font-size: 16px;
  line-height: 22px;
}

.member-wrap .member-join-wrap .btn-group .btn {
  width: 440px;
}

.member-wrap .member-join-wrap .info {
  text-align: center;
  margin: 20px;
  font-size: 18px;
  font-weight: 500;
  color: red;

}

.member-wrap .find-cont-wrap {
  margin: 50px auto 0;
}

.member-wrap .find-cont-wrap .radio-tabs {
  padding: 20px;
  font-size: 0;
  text-align: center;
  display: flex;
  justify-content: space-evenly;
  align-content: center;
  background: #eee;
}

.member-wrap .find-cont-wrap .radio-tabs li {
  display: inline-block;
  vertical-align: top;
  font-weight: 500;
  font-size: 18px;
}

.member-wrap .find-cont-wrap .find-conts {
  padding-top: 50px;
}

.member-wrap .find-cont-wrap .find-conts>.tit {
  font-size: 24px;
  font-weight: 700;
}

.member-wrap .find-cont-wrap .find-conts .desc {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
}

.member-wrap .find-cont-wrap .find-conts .input-box-wrap {
  margin-top: 50px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.member-wrap .find-cont-wrap .find-conts .input-box {
  padding: 30px 25px 50px;
  border-radius: 8px;
}






.find-tabs ul.tabs {
  font-size: 0;
}

.find-tabs ul.tabs li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 50%;
}

.find-tabs ul.tabs li a {
  display: block;
  padding-bottom: 12px;
  border-bottom: 2px solid transparent;
  text-align: center;
  font-size: 20px;
  color: #888;
}

.find-tabs ul.tabs li.active a {
  border-color: #000;
  color: #000;
  font-weight: 500;
}



.form-check-input {
  width: 1.5em;
  height: 1.5em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  appearance: none;
  cursor: pointer;
}

.form-check-input[type="checkbox"] {
  border-radius: 0.25em;
}

.form-check-input[type="radio"] {
  border-radius: 50%;
}

.form-check-input:active {
  filter: brightness(90%);
}

.form-check-input:focus {
  border-color: #d5d5d5;
  outline: 0;
  box-shadow: 0 0 0 0.1rem rgba(170, 170, 170, 0.2);
}

.form-check-input:checked {
  background-color: #368556;
  border-color: #368556;
}

.form-check-input:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked[type="radio"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input[type="checkbox"]:indeterminate {
  background-color: #1965b0;
  border-color: #1965b0;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}

.form-check-input[disabled]~.form-check-label,
.form-check-input:disabled~.form-check-label {
  opacity: 0.5;
}


.row-form-wrap .form-title {
  display: flex;
  align-items: flex-end;
  margin-bottom: 50px;
}

.row-form-wrap .form-title .tit {
  font-size: 18px;
}

.row-form-wrap .form-title .essen-txt {
  margin-left: auto;
  color: #666;
  font-size: 15px;
}

.row-form-wrap .form-title .essen-txt::before {
  content: '*';
  color: #ff2d04;
  margin-right: 4px;
}

.row-form-wrap .row {
  display: flex;
  flex-wrap: wrap;
}

.row-form-wrap .row:first-child {
  margin-top: 0;
}

.row-form-wrap .row .col {
  flex: 1;
  margin-bottom: 25px;
}

.row-form-wrap .row .col:first-child {
  margin-left: 0;
}

.row-form-wrap .row .col .tit {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
}

.row-form-wrap .row .col .tit.essen::after {
  content: '*';
  margin-left: 2px;
  color: #ff2d04;
}

.row-form-wrap .row .col .forms {
  position: relative;
  display: flex;
  margin-bottom: 20px;
}

.row-form-wrap .row .col .forms:last-child {
  margin-bottom: 0;
}

.row-form-wrap .row .col .forms:last-child .fileUpload {
  flex: unset;
  padding: 0px 30px;
  cursor: pointer;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 5px;
  margin-left: 10px;
  word-break: keep-all;
  text-overflow: ellipsis;
}

.row-form-wrap .row .col .forms .btn.absolute {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  height: 45px;
  /*line-height: 43px;*/
}

/* .row-form-wrap .row .col .forms>* {
  flex: 1;
} */

.row-form-wrap .row .col .forms>span.bar {
  flex: none;
  align-self: center;
  width: auto;
  margin: 0 10px;
  color: #666;
}

.row-form-wrap .row .col .forms .text-box {
  display: block;
  width: 100%;
  min-height: 60px;
  height: 60px;
  padding: 16px 24px;
  padding-right: 120px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #faf8f5;
  font-size: 18px;
  line-height: 26px;
  word-break: keep-all;
}

.row-form-wrap .row .col .forms .form-control:last-child {
  margin-left: 20px;
}

.row-form-wrap .row .col .forms .form-control:only-child {
  margin-left: 0;
}

.row-form-wrap .row .col .forms.password-type {
  position: relative;
}

.row-form-wrap .row .col .forms.password-type .password-view {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 40px;
  height: 40px;
  margin-top: -20px;
}

.row-form-wrap .row .col .forms.password-type .password-view.off {
  background: url("/_image/icon/icon-view-off.png") center no-repeat;
}

.row-form-wrap .row .col .forms.password-type .password-view.on {
  background: url("/_image/icon/icon-view-on.png") center no-repeat;
}

.row-form-wrap .row .col .forms.phone-type>* {
  flex: none;
}

.row-form-wrap .row .col .forms.phone-type .absolute-wrap {
  flex: 1;
  position: relative;
}

.row-form-wrap .row .col .forms.phone-type .absolute-wrap .form-control {
  width: 100%;
}

.row-form-wrap .row .col .forms.phone-type .btn.btn-md {
  width: 160px;
  margin-left: 15px;
}

.row-form-wrap .row .col .forms.phone-type .form-control {
  flex: 1;
  width: auto;
}

.row-form-wrap .row .col .forms.phone-type .select-wrap {
  width: 200px;
  margin-right: 15px;
}

.row-form-wrap .row .col .forms .slt-lists.mix ul>li {
  flex: 1;
}

.row-form-wrap .row .col .forms .slt-lists.mix ul>li .form-control {
  width: 400px;
}

.row-form-wrap .row .alert-txt {
  margin-top: 10px;
  width: 100%;
  color: #ff2d04;
  font-size: 14px;
}

.row-form-wrap .row .alert-txt:empty {
  margin-top: 0;
}

.row-form-wrap .row .alert-txt:empty::before {
  display: none;
}

.row-form-wrap .row .alert-txt::before {
  content: '!';
  display: inline-block;
  vertical-align: top;
  width: 14px;
  height: 14px;
  margin-right: 4px;
  background: #ff2d04;
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
}

.row-form-wrap .btn-row {
  margin-top: 60px;
  text-align: center;
}

.row-form-wrap .btn-row .btn {
  min-width: 220px;
}



.container.cate06 .lists {
  position: relative;
  width: 100%;
  margin: 30px 0;
  line-height: 1.2;
}

.container.cate06 .lists li {
  position: relative;
  display: block;
  margin-bottom: 5px;
}

.container.cate06 .lists li span {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 20px;
  background: #000;
  color: #fff;
  margin-right: 5px;
}

.container.cate06 .lists li span {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 20px;
  background: #000;
  color: #fff;
  margin-right: 5px;
}


.story-wrap {
  position: relative;
  text-align: center;
  margin: 100px 0;
  overflow: hidden;
}

.story-wrap h1 {
  /* font-family: 'Nanum Myeongjo'; */
  font-size: 40px;
  font-weight: bold;
  color: #111;
}


.story-desc {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-size: 20px;
  line-height: 1.5;
  text-align: left;
}

.story-eye {
  position: relative;
  display: flex;
  justify-content: space-around;
  margin: 100px 0;
}

.subject {
  position: relative;
  font-size: 24px;
  line-height: 1.2;
  padding: 50px 0;
  color: #6c6645;
  text-align: left;
  word-break: keep-all;
}

.subject::before {
  content: '';
  width: 28px;
  height: 21px;
  font-size: 20px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(/_image/icon/icon-subject01.png)center center /contain no-repeat;
  color: #6c6645;
}

.subject::after {
  content: '';
  width: 28px;
  height: 21px;
  font-size: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(/_image/icon/icon-subject02.png)center center /contain no-repeat;
}



.story-content {
  position: relative;
  margin: 0 auto;
}

.story-content-title {
  position: relative;
}

.story-content-title::before {
  content: 'duckhee rx story';
  position: absolute;
  left: -5%;
  color: #cecece;
  text-transform: uppercase;
  font-size: 18px;
  writing-mode: vertical-rl;
  z-index: -1000;
  font-weight: bold;
}

.history-content {
  position: relative;
  margin: 0 auto;
}

.history-content .content-box {
  gap: 60px;
}

.history-content .content-box .content-img,
.history-content .content-box .content-desc {
  flex: 1;
}

@media screen and (max-width: 1024px) {

  .container .page-title.story,
  .container .page-title.history {
    height: auto;
    padding: 80px 0;
  }

  .container .page-title.story .desc,
  .container .page-title.history .desc {
    font-size: 18px;
  }

  .story-wrap {
    margin: 50px 0;
  }

  .subject {
    margin-bottom: 50px;
    padding: 30px 0;
    font-size: 18px;
    text-align: center;
  }

  .subject::before,
  .subject::after {
    left: 50%;
    width: 14px;
    height: 11px
  }

  .story-desc strong {
    display: contents;
  }

  .story-desc {
    font-size: 16px;
    word-break: keep-all;
  }

  .story-eye {
    flex-direction: column;
    margin-bottom: 20px;
    margin: 50px 0;
  }

  .history-content .content-box {
    gap: 20px;
  }
}


@media screen and (max-width: 767px) {

  .container .page-title.story .desc,
  .container .page-title.history .desc {
    font-size: 16px;
  }

  .container .contents .sect .tit {
    font-size: 18px;
    margin-bottom: 10px;
  }
}


.content-wrap {
  position: relative;

}

.content-box {
  display: flex;
  gap: 20px;
}

.content-box.center {
  justify-content: center;
}

.content-box.between {
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .content-box {
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .content-box {
    flex-direction: column;
  }

  .content-box.end {
    flex-direction: column-reverse;
  }
}

.content-desc {
  position: relative;
  font-size: 18px;
  line-height: 2;
  text-align: left;
  color: #646363;
}

.content-desc ul {
  position: relative;
  margin: 10px 0;
  padding-left: 90px;
}

.content-desc ul::before {
  position: absolute;
  content: '';
  top: 15px;
  left: 0;
  width: 75px;
  height: 1px;
  border-top: solid 1px #898989;
}

.content-desc ul.be-none {
  padding: 0;
}

.content-desc ul.be-none::before {
  display: none;
}

.container.cate07 .story-slider .swiper-container {
  margin: 0 auto;
  width: 100%;
}

.container.cate07 .story-slider .swiper-container .swiper-slide .img {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.container.cate07 .story-slider .swiper-container .swiper-slide .img img {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .content-desc ul {
    font-size: 18px;
    margin-bottom: 20px;
    padding: 0;
    word-break: keep-all;
  }

  .content-desc ul::before {
    display: none;
  }

  .content-desc ul li {
    display: contents;
  }
}


@media screen and (max-width: 767px) {
  .content-desc ul {
    font-size: 15px;
    margin-bottom: 10px;
  }
}



.ai-wrap {
  position: relative;
  text-align: center;
  margin: 100px 0;
  overflow: hidden;
}

.ai-wrap h1 {
  /* font-family: 'Nanum Myeongjo'; */
  font-size: 40px;
  font-weight: bold;
  color: #111;
}

.ai-content {
  position: relative;
  margin: 0 auto;
  flex: 1;
}

.ai-box {
  position: relative;
  display: flex;
  margin: 50px 0;
  gap: 20px;
}

.ai-img {
  flex: 1;
}


.ai-desc {
  position: relative;
  flex: 1;
  font-size: 18px;
  line-height: 2;
  text-align: left;
  color: #646363;
}

.ai-desc ul {
  position: relative;
  margin: 10px 0;
  padding-left: 90px;
  word-break: keep-all;
}

.ai-desc ul::before {
  position: absolute;
  content: '';
  top: 15px;
  left: 0;
  width: 75px;
  height: 1px;
  border-top: solid 1px #898989;
}

.ai-desc ul li {
  display: contents;
}

@media screen and (max-width: 1024px) {
  .container .page-title.ai .title {
    display: none;
  }

  .container .page-title.ai {
    height: 400px;
  }

  .ai-wrap {
    position: relative;
    gap: 20px;
    margin: 0;
  }

  .ai-box {
    align-items: start;
    flex-direction: column;
  }

  .ai-content {
    position: relative;
  }

  .ai-box:nth-child(2) {
    flex-direction: column-reverse;
  }

  .ai-desc ul {
    padding: 0;
  }

  .ai-desc ul::before {
    display: none;
  }

  .ai-desc ul li {
    display: contents;
    font-size: 15px;
    text-align: center;
  }
}



.time {
  position: absolute;
  top: 50px;
  right: 80px;
  z-index: 99999;
  transform: translateY(-50%);
  color: #124990;
  font-size: 14px;
  line-height: 22px;
  font-family: 'Roboto';
  font-weight: 700;
}



.time2 {
  position: absolute;
  top: 50%;
  right: 30%;
  z-index: 99;
  transform: translateY(-50%);
  color: #124990;
  font-size: 14px;
  line-height: 22px;
  font-family: 'Roboto';
  font-weight: 700;
}

.time3 {
  position: absolute;
  top: 50%;
  right: 25%;
  z-index: 99;
  transform: translateY(-50%);
  color: #124990;
  font-size: 14px;
  line-height: 22px;
  font-family: 'Roboto';
  font-weight: 700;
}


.time4 {
  position: absolute;
  top: 50%;
  right: 5%;
  z-index: 99;
  transform: translateY(-50%);
  color: #124990;
  font-size: 14px;
  line-height: 22px;
  font-family: 'Roboto';
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .time2 {
    right: 45%;
  }

  .time3 {
    right: 30%;
  }

  .member-wrap .form-control::placeholder {
    font-size: 13px;
  }
}


.member-wrap .form-control.edit {
  height: 50px;
  min-height: 50px;
  font-size: 16px;
  /* border-bottom: solid 1px #ddd; */
  border-radius: 5px;
}


.member-wrap .form-control.edit:focus {
  border-radius: 5px;
}

.member-wrap .form-control::placeholder {
  color: #cac9c9;
}


.member-wrap .form-control.bold {
  font-size: 22px;
  font-weight: bold;
}

.member-wrap .form-control.bold::placeholder {
  font-size: 22px;
  font-weight: bold;
}




@media screen and (max-width: 767px) {
  .member-wrap .form-control {
    height: 50px;
    min-height: 50px;
    font-size: 16px;
  }

  .member-wrap .form-control.bold {
    font-size: 18px;
  }

  .member-wrap .form-control.bold::placeholder {
    font-size: 18px;
    font-weight: bold;
  }
}

.member-wrap .info-txt {
  margin: 20px 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  word-break: keep-all;
}

.member-wrap .info-txt.left {
  text-align: left;
}

.member-wrap .join-user-complete {

  margin: 0 auto;
}

.member-wrap .info-txt.gray {
  color: #868585;
}

.member-wrap .info-txt.a_gray {
  color: #aaa;
}

.member-wrap .info-txt.b_gray {
  color: #757575;
}

@media screen and (max-width: 767px) {
  .member-wrap .info-txt {
    font-size: 15px;
    line-height: 24px;
    margin: 10px 0;
  }
}

@media screen and (max-width: 520px) {
  .member-wrap .info-txt {
    font-size: 13px;
    line-height: 1.5;
  }
}


.member-wrap .info-guide {
  margin: 20px 0;
  font-size: 16px;
  line-height: 26px;
  word-break: keep-all;
  color: #757575;
}


@media screen and (max-width: 767px) {
  .member-wrap .info-guide {
    font-size: 13px;
    line-height: 20px;
    margin: 10px 0;
  }
}


.member-wrap .info-txt em {
  font-weight: 700;
  color: #00b760;
}

.member-wrap .join-to {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  max-width: 375px;
  margin: 40px auto 0;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .member-wrap .join-to {
    margin-top: 20px;
    justify-content: space-around;
  }
}

.member-wrap .join-to p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #7c7c7c;
}

@media screen and (max-width: 767px) {
  .member-wrap .join-to p {
    font-size: 15px;
    line-height: 24px;
  }
}

.member-wrap .join-to a {
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .member-wrap .join-to a {
    font-size: 15px;
  }
}

.member-wrap .login-bottom {
  display: flex;
  align-items: center;
  margin-top: 30px;

}

@media screen and (max-width: 767px) {
  .member-wrap .login-bottom {
    display: flex;
    align-items: center;
    margin-top: 30px;
  }
}



.member-wrap .btn-group.half {
  flex-direction: unset;
  margin: 50px auto;
  gap: 20px;
}

.member-wrap .btn-group.half a {
  min-width: 75%;
  margin: 0;
}



.member-wrap .chk-wrap {
  margin-right: auto;
}

/* HS 2023-0605 showPassword*/
.chk-wrap.eye {
  position: absolute;
  right: 0;
}

/* 체크전에 보여주는 이미지 */
.chk-wrap.eye input+label::before {
  width: 20px;
  height: 20px;
  background: url(../_image/icon/icon-close-eye.png);
  background-size: 100%;
  border: none;
  filter: opacity(0.5);
}

/* 체크시에 현재 이미지 삭제 */
.chk-wrap.eye input:checked+label::before {
  display: none;
}

/* 체크시에 다른 이미지 애프터로 끌고옴  */
.chk-wrap.eye input+label::after {
  width: 20px;
  height: 20px;
  background: url(../_image/icon/icon-eye.png);
  background-size: 100%;
  border: none;
  transform: rotate(0deg);
  animation: unset;
  left: 0;
  filter: drop-shadow(0px 1px 10px rgba(0, 0, 0, 1));
}


.member-wrap .chk-wrap.box {
  padding: 15px;
  font-size: 16px;
  background: #fff;
  word-break: keep-all;
  overflow-y: scroll;
  max-height: 200px;
}



.member-wrap .chk-wrap.box li {
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 15px;
}

.member-wrap .chk-wrap.box li p {
  display: inline-block;
  min-width: 70px;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {

  .member-wrap .chk-wrap.box {
    padding: 15px 10px;
    font-size: 14px;
  }
}

.member-wrap .login-bottom a {
  position: relative;
  display: block;
  margin-left: 15px;
  font-size: 16px;
  line-height: 1;
}

.member-wrap .btn-group .btn {
  width: 100%;
  max-width: 445px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;

}

@media screen and (max-width: 767px) {
  .member-wrap .btn-group .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
  }
}

.member-wrap .btn-group .btn:first-child {
  margin-top: 0;
}

.compleat-wrap {
  position: relative;
  line-height: 1.5;
}

.compleat-box {
  position: relative;
  font-size: 16px;
  color: #000;
  text-align: center;
  margin-bottom: 50px;
}

.compleat-title {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}

.compleat-title h3 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}

.compleat-title>div {
  position: relative;
  font-size: 18px;
  font-weight: 500;
}

.compleat-box p.order_num{
  font-size:18px;
  color: #164622;
  margin-bottom: 40px;
  font-weight: 500;
}


.compleat-title .desc {
  color: #000;
}

.compleat-icon {
  position: relative;
  border: solid 1px blue;

}

.compleat-icon {
  position: absolute;
}

.compleat-num {
  padding: 25px 50px;
  color: #fff;
  background: #368556;
  border-radius: 10px;
  width:100%;
  text-align: center;
  margin: 0 auto;
  font-size:20px;
}

.compleat-num p{
  margin-top: 10px;
  font-size:16px;
  font-weight: 100;
}



@media screen and (max-width: 1024px) {
  .compleat-box {
    flex-direction: column;
    font-size: 16px;
    text-align: center;
    align-items: center;
  }

  .compleat-title {
    flex-direction: column-reverse;
    width: 100%;
    margin-bottom: 20px;
  }

  .compleat-title h3 {
    font-size: 24px;
  }

  .compleat-num {
    width: 100%;
    font-size: 18px;
    padding: 20px;
  }
}


.sns-info {
  font-size: 18px;
}

.btn-group.social-wrap {
  position: relative;
  padding-bottom: 20px;
}

.btn-group.sns-wrap {
  position: relative;
  padding-bottom: 20px;
}

.btn-group.sns-wrap.social {
  flex-direction: unset !important;
  border-bottom: solid 1px #ccc;
  justify-content: space-between;
}



@media screen and (max-width: 767px) {
  .btn-group.sns-wrap.social {
    padding: 10px 0 !important;
    gap: 5px !important;
  }
}


.btn-group .btn.btn-npay {
  position: relative;
  background: #00c73c;
  color: #fff;
  font-weight: bold;
}

.btn-group .btn.btn-npay::before {
  content: ' ';
  display: inline-block;
  vertical-align: middle;
  width: 19px;
  height: 19px;
  margin-right: 10px;
  background: url(/_image/icon/icon-npay.png)center center /contain no-repeat;
}

.btn-group .btn.btn-kakao {
  background: #ffe600;
  color: #371d1d;
  font-weight: bold;
}

.btn-group .btn.btn-kakao::before {
  content: ' ';
  display: inline-block;
  vertical-align: middle;
  width: 39px;
  height: 35px;
  margin-right: 10px;
  background: url(/_image/icon/icon-kakao.png) center no-repeat;
}

.btn-group .btn.btn-naver {
  background: #fff;
  color: #000;
  border: solid 1px #ddd;
}

.btn-group .btn.btn-naver::before {
  content: ' ';
  display: inline-block;
  vertical-align: middle;
  width: 39px;
  height: 35px;
  margin-right: 10px;
  background: url(/_image/icon/icon-naver.png) center no-repeat;
}



.btn-group .btn.btn-apple {
  background: #fff;
  color: #000;
  border: solid 1px #ddd;
}

.btn-group .btn.btn-apple::before {
  content: ' ';
  display: inline-block;
  vertical-align: middle;
  width: 39px;
  height: 35px;
  margin-right: 10px;
  background: url(/_image/icon/icon-apple.png) center no-repeat;
}



.btn-group .btn.btn-facebook {
  background: #fff;
  color: #000;
  border: solid 1px #ddd;
}

.btn-group .btn.btn-facebook::before {
  content: ' ';
  display: inline-block;
  vertical-align: middle;
  width: 39px;
  height: 35px;
  margin-right: 10px;
  background: url(/_image/icon/icon-facebook.png) center no-repeat;
}



.btn-group .btn.btn-google {
  background: #fff;
  color: #000;
  border: solid 1px #ddd;
}

.btn-group .btn.btn-google::before {
  content: ' ';
  display: inline-block;
  vertical-align: middle;
  width: 39px;
  height: 35px;
  margin-right: 10px;
  background: url(/_image/icon/icon-google.png) center no-repeat;
}

.btn-group .btn.btn-payco {
  background: #fff;
  color: #000;
  border: solid 1px #ddd;
}

.btn-group .btn.btn-payco::before {
  content: ' ';
  display: inline-block;
  vertical-align: middle;
  width: 42px;
  height: 42px;
  margin-right: 10px;
  background: url(/_image/icon/icon-payco.png) center no-repeat;
}

.btn-group.sns-wrap .social_link {
  width: 60px;
  height: 60px;
  position: relative;
  padding: 10px;
  border: solid 1px #ccc;
  text-align: center;
  margin: 0;
  min-width: auto;
}

@media screen and (max-width: 767px) {
  .btn-group.sns-wrap .social_link {
    width: 40px !important;
    height: 40px !important;
  }
}

.social_link {
  border: solid 1px red;
  border-radius: 100px;
  width: 50px;
  height: 50px;
}

.member-wrap .btn-group {
  flex-direction: column;
}

.btn-group.social .btn.btn-naver {
  background: #fff;
}

.btn-group.social .btn.btn-naver::before {
  content: ' ';
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  background: url(/_image/icon/icon-naver.png) center no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}



@media screen and (max-width: 767px) {
  .btn-group.sns-wrap .social_link::before {
    background-size: 20px;
  }
}



.btn-group.social .btn.btn-kakao {
  background: #fff;
  color: #371d1d;
  font-weight: bold;
}


.btn-group.social .btn.btn-kakao::before {
  content: ' ';
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("/_image/icon/icon-kakao.png")center no-repeat;
}




.btn-group.social .btn.btn-apple {
  background: #fff;
  color: #371d1d;
  font-weight: bold;
}


.btn-group.social .btn.btn-apple::before {
  content: ' ';
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("/_image/icon/icon-apple.png")center no-repeat;
}




.btn-group.social .btn.btn-facebook {
  background: #fff;
  color: #371d1d;
  font-weight: bold;
}


.btn-group.social .btn.btn-facebook::before {
  content: ' ';
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("/_image/icon/icon-facebook.png")center no-repeat;
}





.btn-group.social .btn.btn-google {
  background: #fff;
  color: #371d1d;
  font-weight: bold;
}


.btn-group.social .btn.btn-google::before {
  content: ' ';
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("/_image/icon/icon-google.png")center no-repeat;
}



.btn-group.social .btn.btn-payco {
  background: #fff;
  color: #371d1d;
  font-weight: bold;
}


.btn-group.social .btn.btn-payco::before {
  content: ' ';
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("/_image/icon/icon-payco.png")center no-repeat;
}






.member-wrap .bottom-btn {
  margin-top: 30px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .member-wrap .bottom-btn {
    margin-top: 20px;
  }
}


.member-wrap .bottom-btn .btn {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
}

@media screen and (max-width: 767px) {
  .member-wrap .bottom-btn .btn {
    font-size: 18px;
  }
}

/* dim */
.common-dim {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1005;
}

.alert-txt {
  text-align: center;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
}

@media screen and (max-width: 767px) {
  .alert-txt {
    font-size: 14px;
    line-height: 22px;
  }
}

.terms-cont {
  padding-top: 0;
  word-break: keep-all;
  text-align: left;
}

.terms-cont h4.tit {
  font-size: 24px !important;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.terms-cont p {
  margin-bottom: 30px;
  color: #585858;
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  word-break: keep-all;
}

.terms-cont ul {
  color: #666;
  line-height: 1.4;
  font-weight: 400;
}

.terms-cont ul li {
  position: relative;
  /* display: flex; */
}

.terms-cont ul li .tit {
  display: inline-block;
}

.terms-cont ul li p {
  flex: 1;
  margin-bottom: 20px;
  font-weight: 400;
}


.tg {
  margin: 30px 0;
}

.tg th {
  border-width: 1px;
  font-size: 14px;
  overflow: hidden;
  padding: 15px 5px;
  word-break: normal;
  text-align: center;
  background: #fff;
  font-weight: bold;
  border-left: none;
  border-left: solid 1px #eee;
  border-top: solid 1px #000;
}

.tg th:first-of-type,
.tg td:first-of-type {
  border-left: none;
}

.tg th:last-of-type,
.tg td:last-of-type {
  border-right: none;
}

.tg .tg-0lax.center {
  text-align: center;
}

.tg td {
  border-color: #eee;
  border-style: solid;
  border-width: 1px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  overflow: hidden;
  padding: 15px;
  /* word-break: normal;
  word-break: break-all;.tg td */
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .terms-cont>h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .terms-cont h4.tit {
    font-size: 16px;
    line-height: 24px;
  }

  .terms-cont p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5%;
  }
}




/* footer */
footer {
  position: relative;
  border-top: solid 1px #dbdbdb;
  padding: 50px 0 60px;
  background: #f6f6f6;
}

@media screen and (max-width: 1024px) {
  footer {
    padding: 30px 0 30px;
  }
}

@media screen and (max-width: 767px) {
  footer {
    padding-top: 65px;
  }
}

footer .foot-cont-wrap {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

@media screen and (max-width: 1024px) {
  footer .foot-cont-wrap {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  footer .foot-cont-wrap {
    padding-left: 12px;
    padding-right: 12px;
  }
}

footer .foot-cont {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

footer .foot-cont>div {
  position: relative;
  flex: 1;
}


footer .foot-cont>div::after {
  content: ' ';
  position: absolute;
  right: -20px;
  top: 0;
  vertical-align: middle;
  width: 1px;
  height: 100%;
  background: #dbdbdb;
}

@media screen and (max-width: 1024px) {
  footer .foot-cont>div::after {
    display: none;
  }
}

footer .foot-cont>div:last-of-type:after {
  display: none;
}

footer .foot-cont-wrap .foot-left {
  position: relative;
}

footer .foot-cont-wrap .foot-left .desc p {
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
  color: #111;
}


footer .foot-cont-wrap .link-lists {
  display: flex;
  margin-bottom: 80px;
  font-size: 0;
  gap: 20px;
}

footer .foot-cont-wrap .link-lists li {
  display: inline-block;
  vertical-align: top;
}

footer .foot-cont-wrap .link-lists li a {
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  color: #111;
  vertical-align: middle;
}


@media screen and (max-width: 767px) {
  footer .foot-cont-wrap .foot-left .desc p {
    font-size: 12px;
  }

  footer .foot-cont-wrap .foot-left .link-lists li a {
    font-size: 12px;
  }
}



/* .foot-middle */
footer .foot-cont-wrap .foot-middle {
  position: relative;
  text-align: center;
}

footer .foot-cont-wrap .foot-middle .logo {
  margin-bottom: 40px;
  height: 70px;
}

footer .foot-cont-wrap .foot-middle .foot-info {
  position: relative;
  justify-content: center;
  display: flex;
  text-align: left;
  gap: 20px
}

footer .foot-cont-wrap .foot-middle .foot-info ul {
  position: relative;
  color: #6f6e6e;
  font-size: 15px;
}

footer .foot-cont-wrap .foot-middle .foot-info ul li {
  margin-bottom: 20px;
  color: #6f6e6e;
}

footer .foot-cont-wrap .foot-middle .foot-info ul li a {
  color: #111;
  font-weight: 500;
}



@media screen and (max-width: 1024px) {
  footer .foot-cont-wrap .foot-middle {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {

  footer .foot-cont-wrap .foot-middle h1 img {   
	height: 50px !important;
  }

  footer .foot-cont-wrap .foot-middle .foot-info {
    gap: 20px;
    margin: 20px 0;
  }

  footer .foot-cont-wrap .foot-middle .foot-info ul li {
    margin-bottom: 10px;
  }

}



/* .foot-right */
footer .foot-cont-wrap .foot-right {
  position: relative;
  text-align: center;
}

footer .foot-cont-wrap .foot-right ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  font-weight: bold;
  gap: 20px;
}



@media screen and (max-width: 1024px) {
  footer .foot-cont-wrap .foot-right {
    flex-wrap: wrap;
  }
}


footer .foot-cont-wrap .foot-right .call {
  font-size: 45px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  footer .foot-cont-wrap .foot-right .call {
    margin-top: 0;
    font-size: 26px;
    font-weight: bold;
  }
}

footer .foot-cont-wrap .foot-right .call:hover {
  color: #00b760;
}

footer .foot-cont-wrap .foot-right .sns-lists {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  footer .foot-cont-wrap .foot-right .sns-lists {
    position: relative;

  }
}


footer .foot-cont-wrap .foot-right .sns-lists li a {
  display: block;
}

footer .foot-cont-wrap .foot-right .sns-lists li a i {
  display: block;
  width: 60px;
  height: 60px;
  padding: 10px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ebebeb;
  margin-bottom: 10px;
  border-radius: 20px;
}


footer .foot-cont-wrap .foot-right .dropdown {
  position: relative;
  width: 100%;
  border: solid 1px #e6e5ea;
}

@media screen and (max-width: 767px) {
  footer .foot-cont-wrap .foot-right .dropdown {
    width: 50vw;
    position: absolute;
    top: 15px;
    left: 12px;
    right: 12px;
  }
}

footer .foot-cont-wrap .foot-right .dropdown .btn-toggle {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  color: #000;
  font-size: 14px;
  text-align: left;

  font-weight: 600;
}

@media screen and (max-width: 767px) {
  footer .foot-cont-wrap .foot-right .dropdown .btn-toggle {
    font-size: 13px;
  }
}

footer .foot-cont-wrap .foot-right .dropdown .btn-toggle::after {
  content: ' ';
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  right: 10px;
  border: 2px solid #000;
  border-top: none;
  border-right: none;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: all .3s;
}

footer .foot-cont-wrap .foot-right .dropdown.open .btn-toggle::after {
  transform: rotate(135deg);
  margin-top: -2px;
  right: 15px;
}


footer .foot-cont-wrap .foot-right .dropdown .lists {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-top: none;
  z-index: 10;
}

footer .foot-cont-wrap .foot-right .dropdown .lists li {
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}

footer .foot-cont-wrap .foot-right .dropdown .lists li:first-child {
  border-top: none;
}

footer .foot-cont-wrap .foot-right .dropdown .lists li a {
  display: block;
  padding: 0 6px;
  font-size: 14px;
  line-height: 30px;

  color: #555;
  background: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

footer .foot-cont-wrap .foot-right .dropdown .lists li a:hover {
  background: #6f349e;
  color: #fff;
}

@media screen and (max-width: 767px) {
  footer .foot-cont-wrap .foot-right .dropdown .lists li a {
    font-size: 12px;
  }
}

footer .foot-cont-wrap .foot-right .dropdown.open .lists {
  display: block;
}


@media screen and (max-width: 1024px) {
  footer .foot-cont {
    flex-direction: column;
  }

  footer .foot-cont-wrap .foot-middle .logo,
  footer .foot-cont-wrap .link-lists {
    margin-bottom: 20px;
  }

  footer .foot-cont-wrap .foot-middle .foot-info {
    display: none;
    justify-content: space-evenly;
    font-size: 14px;
  }
}

@media screen and (max-width: 1024px) {

  footer .foot-cont>div::after {
    display: none;
  }

  footer .foot-cont-wrap .foot-left {
    order: 3;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  footer .foot-cont-wrap .foot-middle {
    order: 1;
  }

  footer .foot-cont-wrap .foot-right {
    display: flex;
    flex-direction: column;
    order: 2;
  }
}

@media screen and (max-width: 767px) {}

footer .foot-cont-wrap .copy {
  margin-top: 30px;
  color: #969696;
  font-size: 16px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  footer .foot-cont-wrap .copy {
    font-size: 11px;
  }
}


/* === PAGES(CATEGORY) === */

.dukheeRx {
  position: relative;
  overflow: hidden;
}


.dukheeRx .sub-eyebrow {
  position: relative;
  z-index: 1;
}

.dukheeRx .sub-eyebrow.flex {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .dukheeRx .sub-eyebrow.flex {
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .dukheeRx .sub-eyebrow.flex {
    flex-direction: column;
    gap: 20px;
  }
}


.dukheeRx .sub-eyebrow.full {
  max-width: 100%;
  padding: 0;
}

.dukheeRx .sub-eyebrow .inner {
  position: relative;
  max-width: 1480px;
  margin: 40px auto;
  padding-left: 40px;
  padding-right: 40px;
  word-break: keep-all;
}

.dukheeRx .sub-eyebrow.worry {
  position: relative;
  padding: 20px 0;
  background: #f2ede9;
}

.dukheeRx .sub-eyebrow.worry ul.txt {
  color: #1a1a1a;
}

.dukheeRx .sub-eyebrow.worry ul.txt li:last-of-type {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 20px;
  white-space: pre;
}

@media screen and (max-width: 767px) {
  .dukheeRx .sub-eyebrow.worry ul.txt img {
    width: 150px;
  }

  .dukheeRx .sub-eyebrow .inner {
    padding: 0 30px;
    margin: 16px 0;
  }

  .dukheeRx .sub-eyebrow.worry {
    padding: 30px 0;
  }
}



.see_more {
  position: relative;
  height: 400px;
  text-align: center;
  overflow-y: hidden;
}

.see_btn {
  display: block !important;
  width: 100%;
  margin: 20px auto;
  text-align: center;
}

.see_btn .see_text {
   position: relative;
   top: -5px;
}

.btn_the_more {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background: url(/_image/icon/ico_arrow_open.png) 50% 50% no-repeat;
  background-size: 10px;
  text-align: center;
  border: 1px solid #999999;
  border-radius: 20px;
  padding: 10px;
  text-indent: -9999px;
}

@media screen and (max-width: 767px) {
  .see_more {
    height: 150px;
  }

  .see_more .d-flex {
    flex-direction: column;
  }

  .see_btn {
	margin: 16px auto;
  }
}

.on>.btn_the_more {
  background-image: url(/_image/icon/ico_arrow_close.png);
  background-size: 10px;
}

.reviews-slider .imgbox .inner {
  display: inline-block;
}

.reviews-slider .imgbox .inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews-slider .imgbox .tit a {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reviews-slider .imgbox .tit .star {
  padding-left: 6px;
}

.reviews-slider .imgbox .desc {
  margin-bottom: 8px !important;
  line-height: 22px !important;
  word-break: normal;
}

.reviews-slider .imgbox .more {
  text-align: right;
  font-size: 14px;
  color: #808080;
}

.reviews-slider .controller.main {
  width: 100%;
  max-width: 100% !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.reviews-slider .controller.main .control-btn {
  position: absolute;
  top: 50%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  /* box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.23); */
  transform: translateY(-50%);
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .reviews-slider .controller.main .control-btn {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 767px) {
  .reviews-slider .controller.main .control-btn {
    background: transparent;
    box-shadow: none;
  }
}

.reviews-slider .controller.main .control-btn::before {
  content: ' ';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-top: -5px;
  border: 2px solid #333;
  border-top: none;
  border-right: none;
}



.reviews-slider .controller.main .control-btn.prev {
  left: 11px;
}

.reviews-slider .controller.main .control-btn.prev::before {
  transform: rotate(45deg);
  margin-left: -5px;
}



.reviews-slider .controller.main .control-btn.next {
  right: 11px;
}

.reviews-slider .controller.main .control-btn.next::before {
  transform: rotate(-135deg);
  margin-left: -10px;
}



/* .container.cate01 */
.container.cate01 .dukheeRx h4.title {
  font-size: 30px;
  line-height: 34px;
  font-weight: 900;
  letter-spacing: -1px;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .container.cate01 .dukheeRx h4.title {
    font-size: 24px;
    line-height: 28px;
  }
}

.container.cate01 .dukheeRx h4.title small {
  display: block;
  margin-bottom: 10px;

  font-size: 0.6em;
  line-height: 1;
  color: #00b760;
}


.sect .flex-area {
  position: relative;
  top: 0;
  width: 100%;
  max-width: 1480px;
  display: flex;
  overflow: hidden;
  margin: 0 auto;
  padding: 0 40px;
}

.sect .flex-area .left_box,
.sect .flex-area .right_box {
  position: relative;
  flex: 1;
}

@media screen and (max-width: 1024px) {
  .sect .flex-area {
    flex-direction: column;
    padding: 0;
  }
}


.container.cate01 .ai-manager {
  position: relative;
}

.container.cate01 .ai-manager .left_box {
  flex-direction: column;
  justify-content: flex-end;
}

.container.cate01 .ai-manager .right_box {
  height: 50%;
  margin-top: 40px;
}

.container.cate01 .ai-manager h2 {
  /* font-family: 'NanumMyeongjo'; */
  font-size: 40px;
  margin: 10px 0;
  font-weight: bold;
  line-height: 1.25;
  word-break: keep-all;
}


.container.cate01 .skin-how {
  margin: 40px 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.skin-control {
  flex: 1;
}

.skin-item {
  padding: 20px 0;
  display: block;
  border-bottom: solid 1px #c4c4c4;
  cursor: pointer;
  gap: 10px;
  word-break: keep-all;
  line-height: 1.5;
  text-align: left;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
  flex: 1;
}

.skin-item em {
  display: block;
  font-weight: 500;
  color: #838383;
  text-transform: uppercase;
  font-size: 16px;
}


.skin-item.active {
  position: relative;
  color: #368553;
  border-color: #368553;
  display: block;
}



.skin-item.active::after {
  content: ' ';
  position: absolute;
  right: -3px;
  bottom: 6px;
  vertical-align: middle;
  width: 20px;
  height: 1px;
  background: #368553;
  transform: rotate(45deg);
}


.skin_content {
  position: relative;
  flex: 2;
  text-align: left;
}

.skin_content::after {
  content: "";
  position: absolute;
  top: 50px;
  bottom: 50px;
  right: -9999px;
  left: -10px;
  background-color: #fff;
  opacity: 0.5;
  z-index: 0;
  border-radius: 30px;
}

@media screen and (max-width: 520px) {
  .skin_content::after {
    display: none;
  }
}


.skin_iteam.active {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.skin_iteam.active img {
  z-index: 1;
}


.skin_desc {
  position: relative;
  flex: 1;
  margin-bottom: 50px;
  z-index: 1;
}

.skin_content .eyebrow {
  font-family: 'Pretendard' !important;
  text-transform: uppercase;
  font-size: 16px !important;
  color: #368553 !important;
}

.skin_content .title {
  /* font-family: 'NanumMyeongjo'; */
  font-weight: bold;
  margin: 20px 0;
  font-size: 28px;
  line-height: 1.3;
  word-break: keep-all;
}

.skin_content .desc {
  position: relative;
  color: #646363;
  padding-left: 100px;
}

.skin_content .desc::before {
  content: ' ';
  position: absolute;
  left: 0%;
  top: 10%;
  vertical-align: middle;
  width: 15%;
  height: 1px;
  background: #828282;
}

.skin_content .info {
  margin-top: 30px;
  background: #ececec;
  border-radius: 30px;
  padding: 20px 40px;
  width: fit-content;
  color: #646363;
  font-weight: 400;
  word-break: keep-all;
  line-height: 1.2;
  text-align: center;
}


.container.cate01 .dukheeRx section.icons .title {
  text-align: center;
}

.container.cate01 .dukheeRx section.icons .btn-basic {
  display: block;
  width: 180px;
  margin: 20px auto 0;
}

.container.cate01 .dukheeRx section.icons .icon-lists {
  display: flex;
  margin-top: 40px;
  border: solid 1px blue;
}

@media screen and (max-width: 1024px) {
  .container.cate01 .dukheeRx section.icons .icon-lists {
    flex-wrap: wrap;
    margin-top: 30px;
  }
}

.container.cate01 .dukheeRx section.icons .icon-lists li {
  flex: 1;
  margin-left: 1.428571%;
  padding: 30px 12px 40px;
  background: #f4f4f4;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  text-align: center;
  word-break: keep-all;
}

.container.cate01 .dukheeRx section.icons .icon-lists li::before {
  content: ' ';
  display: block;
  width: 57.291667%;
  padding-top: 57.291667%;
  margin: 0 auto 35px;
  border-radius: 50%;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 88% auto;
}

.container.cate01 .dukheeRx section.icons .icon-lists li:first-child {
  margin-left: 0;
}

.container.cate01 .dukheeRx section.icons .icon-lists li.icon1::before {
  background-image: url("/_image/icon/icon-sub0101-1.png");
}

.container.cate01 .dukheeRx section.icons .icon-lists li.icon2::before {
  background-image: url("/_image/icon/icon-sub0101-2.png");
}

.container.cate01 .dukheeRx section.icons .icon-lists li.icon3::before {
  background-image: url("/_image/icon/icon-sub0101-3.png");
}

.container.cate01 .dukheeRx section.icons .icon-lists li.icon4::before {
  background-image: url("/_image/icon/icon-sub0101-4.png");
}

.container.cate01 .dukheeRx section.icons .icon-lists li.icon5::before {
  background-image: url("/_image/icon/icon-sub0101-5.png");
}

.container.cate01 .dukheeRx section.icons .icon-lists li.icon6::before {
  background-image: url("/_image/icon/icon-sub0101-6.png");
}

@media screen and (max-width: 1024px) {
  .container.cate01 .dukheeRx section.icons .icon-lists li {
    flex: 1 1 auto;
    width: calc((100% - 20px) / 3);
    margin-left: 10px;
  }

  .container.cate01 .dukheeRx section.icons .icon-lists li:first-child,
  .container.cate01 .dukheeRx section.icons .icon-lists li:nth-child(4) {
    margin-left: 0;
  }

  .container.cate01 .dukheeRx section.icons .icon-lists li:nth-child(3)~li {
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .container.cate01 .dukheeRx section.icons .icon-lists li {
    padding: 15px 12px;
    font-size: 16px;
    line-height: 20px;

  }

  .container.cate01 .dukheeRx section.icons .icon-lists li::before {
    width: 72.916667%;
    padding-top: 72.916667%;
    margin-bottom: 10px;
  }
}

.container.cate01 .dukheeRx section.media {
  position: relative;
  max-width: none;
  padding-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .container.cate01 .dukheeRx section.media {
    padding-bottom: 30px;
  }
}

.container.cate01 .dukheeRx section.media::before {
  content: ' ';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 1400px;
  transform: translateX(-50%);
  background: #f4f4f4;
  z-index: -1;
}

.container.cate01 .dukheeRx section.media h5.tit {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 45px 30px;
  font-size: 24px;
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  .container.cate01 .dukheeRx section.media h5.tit {
    padding: 40px 0 30px;
  }
}

@media screen and (max-width: 767px) {
  .container.cate01 .dukheeRx section.media h5.tit {
    padding: 30px 0 20px;
    text-align: center;
    font-size: 20px;
  }
}

.container.cate01 .dukheeRx section.media .video-lists {
  display: flex;
  max-width: 1660px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .container.cate01 .dukheeRx section.media .video-lists {
    flex-wrap: wrap;
  }
}

.container.cate01 .dukheeRx section.media .video-lists li {
  flex: 1;
  margin-left: 1.204819%;
}

@media screen and (max-width: 1024px) {
  .container.cate01 .dukheeRx section.media .video-lists li {
    flex: auto;
    width: calc((100% - 10px) / 2);
    margin-left: 10px;
  }

  .container.cate01 .dukheeRx section.media .video-lists li:nth-child(2n - 1) {
    margin-left: 0;
  }

  .container.cate01 .dukheeRx section.media .video-lists li:nth-child(2)~li {
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .container.cate01 .dukheeRx section.media .video-lists li {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }

  .container.cate01 .dukheeRx section.media .video-lists li:first-child {
    margin-top: 0;
  }
}

.container.cate01 .dukheeRx section.media .video-lists li a {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 56.25%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.container.cate01 .dukheeRx section.media .video-lists li a::before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.container.cate01 .dukheeRx section.media .video-lists li a::after {
  content: ' ';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  background: url("/_image/icon/icon-play.png") center no-repeat;
  background-size: 100%;
}

.container.cate01 .dukheeRx section.media .video-lists li .info {
  display: none !important;
}

.container.cate01 .history .title {
  position: relative;
  margin-bottom: 50px;
  padding-top: 18.928571%;
  background: url("/_image/bg/bg-sub0102.jpg") center no-repeat;
  background-size: cover;
}

.container.cate01 .skin-type {
  position: relative;
  background: #f7f7f7;
  border-radius: 20px;
  padding: 40px;
  max-width: 1400px;
}
.container.cate01 .skin-type.bg-none{
  background: #fff;
}

@media screen and (max-width: 1024px) {
  .container.cate01 .skin-type .flex-area {
    padding: 0;
    display: flex;
    font-size: 28px;
    margin-bottom: 20px;
    flex-direction: column;
    gap: 30px;
  }
}


@media screen and (max-width: 767px) {
  .container.cate01 .skin-type {
    margin: 0;
    gap: 20px;
    font-size: 18px;
    margin-bottom: 10px;
    align-items: center;
    padding: 20px;
    margin: 0 16px;
  }
}

.container.cate01 .skin-type2 {
  position: relative;
  background: #f7f7f7;
  padding: 25px !important;
}






.container.cate01 .skin-type .chab {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 30px 0;
}

.container.cate01 .skin-type .chab_type {
  position: relative;
  overflow: hidden;
  min-width: 100px;
}

.container.cate01 .skin-type .chab_type p {
  position: absolute;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
}

.container.cate01 .skin-type .chab .day {
  font-size: 20px;
  line-height: 1.25;
  color: #595959;
  word-break: keep-all;
}


@media screen and (max-width: 1024px) {
  .container.cate01 .skin-type .chab,
  .container.cate01 .skin-type .chab .day {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {

  .container.cate01 .skin-type .chab,
  .container.cate01 .skin-type .chab .day {
    font-size: 16px;
  }
}


.dryness {
  color: #00AE41;
}

.combination {
  color: #0081C9;
}

.sensitivity {
  color: #FFA300;
}

.trouble {
  color: #EB0028;
}

/* 순서 */
.cleanser {
  color: #00AE41;
}

.toner {
  color: #0081C9;
}

.serum,
.mask {
  color: #EB0028;
}

.cream {
  color: #FFA300;
}


.container.cate01 .skin_analysis {
  position: relative;
  font-weight: bold;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .container.cate01 .skin_analysis {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}



.container.cate01 .skin_analysis .score {
  align-self: flex-start;
}

@media screen and (max-width: 1024px) {
  .container.cate01 .skin_analysis .score {
    font-size: 18px;
  }
}


.container.cate01 .skin_analysis p {
  font-size: 22px;
  margin-bottom: 10px;
}

.container.cate01 .skin_analysis li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

@media screen and (max-width: 1024px) {}




.container.cate01 .skin_analysis li em {
  display: inline-block;
  border-radius: 50px;
  width: 20px;
  height: 20px;
  background: #b3b3b3;
}

.container.cate01 .skin_analysis li em.red {
  background: #e10d33;
}

.container.cate01 .skin_analysis li em.green {
  background: #368556;
}


.container .contents .sect.result {
  background: #f8f8f8;
}

.meter-gauge-wrap {
  position: relative;
  border: solid 1px red;

}


.skin-result {
  position: relative;
}

.skin-result li {
  position: relative;
  margin-bottom: 10px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.skin-result li i {
  display: flex;
  background: #ebebeb;
  border-radius: 10px;
  padding: 10px;
  align-items: center;
  align-self: self-start;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
}



.gaugebar {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #4f4f4f;
  font-weight: bold;
}

.gaugebar b {
  font-weight: bold;
  font-size: 30px;
  color: #000;
}

.icon-wrap {
  display: flex;
}


.gauge-custom {
  position: relative;
  width: 100%;
  display: flex;
  overflow: hidden;
  height: 30px;
  line-height: 15px;
  border-radius: 20px;
  padding: 5px 0;
}

/* 뒷배경 */
.gauge-custom::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  background: #e3e3e3;
  border-radius: 20px;
}

.gauge-custom .gauge_parcent {
  position: relative;
  border-radius: 20px;
  height: 15px;
}

.gauge-custom.blue .gauge_parcent {
  background: url(/_image/img/img-range-blue.png)center center/cover no-repeat;
}

.gauge-custom.green .gauge_parcent {
  background: url(/_image/img/img-range-green.png)left center/cover no-repeat;
}

.gauge_parcent::after {
  position: absolute;
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 20px;
  right: 0;
  top: -5px;
  border: solid 2px #000;
  z-index: 1;
}

.solution {
  position: relative;
  margin: 50px 0;
  text-align: left;
}

.solution ul {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.solution ul li {
  position: relative;
  border: solid 1px #d7d7d7;
  padding: 30px 20px;
  border-radius: 20px;
  background: #fafafa;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #717171;
  font-size: 18px;
  line-height: 1.25;
  word-break: keep-all;
  font-weight: 500;
}

.solution .sub-tit {
  font-size: 20px;
  color: #000;
  margin-bottom: 10px;
  font-weight: bold;
}

.solution .txt {
  font-size: 16px;
}

.balloon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  width: 50px;
  height: 70px;
  min-width: 50px;
  background: url(/_image/icon/icon-balloon.png)center center /contain no-repeat;
  margin: 0 auto;
  font-size: 20px;
  padding-bottom: 10px
}

@media screen and (max-width: 1024px) {
  .solution ul {
    flex-direction: column;
  }

  .solution ul li {
    width: 100%;
    padding: 20px;
  }

  .solution ul li>div {
    flex: 1;
  }

  .solution .sub-tit {
    font-size: 18px;
  }

  .solution .txt {
    font-size: 16px;
  }

  .balloon {
    font-size: 14px;
    width: 50px;
    height: 50px;
  }
}


@media screen and (max-width: 767px) {
  .container .contents .sect .tit {
    font-size: 18px;
    margin-bottom: 10px;
  }
}




#routine .swiper-slide .plc-img {
  position: relative;
  border: solid 1px #ccc;
  display: block;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: solid 2px transparent;
}

/* #routine .swiper-slide .plc-img img{
  aspect-ratio: 1/1;
} */

#routine .swiper-slide .cycle {
  padding: 20px 10px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #fff;
  background: #828282;
  border-radius: 10px;
  opacity: 0;
  transition: all .3s;
}

#routine .swiper-slide .inner:hover .cycle {
  opacity: 1;
}

#routine .swiper-slide .inner:hover .plc-img {
  background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #e40f4b 0%, #ec683b 15%, #f1a230 30%, #9cb443 45%, #2bb560 60%, #0fb09c 75%, #08adbe 95%, #00aadc 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  
}

#routine .swiper-slide .inner {
  position: relative;
  display: block;
  font-size: 20px;
  text-align: left;
  cursor: pointer;
}

#routine .swiper-slide .img {
  position: relative;
  border: solid 1px #ddd;
  border-radius: 20px;
  overflow: hidden;
}

#routine .swiper-slide .plc_name {
  margin-top: 20px;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  #routine .swiper-slide .plc_name {
    font-size: 18px;
  }
}




.skin_worry {
  position: relative;
}

.skin_worry ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.skin_worry li {
  position: relative;
  border: solid 1px #e1e1e1;
  text-align: left;
  border-radius: 30px;
  color: #404141;
  width: calc(50% - 20px);
  background: #fff;
  transition: all .5s;
  overflow: hidden;
  border: solid 3px transparent;
}

.skin_worry li:hover a{
  animation: slide-twice 1s ease-in-out;
}

@keyframes slide-once {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slide-twice {
  0%, 50%, 100% {
    transform: translateX(0);
  }
  25%, 75% {
    transform: translateX(10px);
  }
}


.skin_worry li:hover {
  background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #e40f4b 0%, #ec683b 15%, #f1a230 30%, #9cb443 45%, #2bb560 60%, #0fb09c 75%, #08adbe 95%, #00aadc 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.skin_worry li > div{
  background: #fff;
  padding: 30px;
}


.skin_worry li a {
  display: block;
}

.skin_worry li img {
  max-width: 100px;
}

.skin_worry .itme-eye {
  margin: 10px 0;
  width: fit-content;
  font-weight: 500;
  display: block;
}


.skin_worry li h3 {
  font-weight: bold;
  line-height: 1.2;
  font-size: 28px;
  word-break: keep-all;
  font-weight: bold;
  padding-bottom: 20px;
  border-bottom: solid 1px #ddd;
  margin-bottom: 20px;
}

.skin_worry li .d-flex {
  position: relative;
  justify-content: space-between;
  align-items: center;
}

.skin_worry li .d-flex>div {
  display: flex;
  gap: 10px;
  flex-direction: column;
}


.skin_worry li .d-flex>div .discount {
  color: #939598;

}

.skin_worry li .d-flex p {
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.skin_worry li .d-flex del,
.skin_worry li .d-flex span {
  font-size: 16px;
}

.skin_worry li a {
  display: flex;
  font-weight: bold;
  border-radius: 10px;
  align-items: center;
  gap: 10px;
  transition: all .3s;
  width: fit-content;
}

@media screen and (max-width: 1024px) {
  .skin_worry li h3 {
    font-size: 24px;
  }

  .skin_worry li .d-flex {
    font-size: 16px;
  }

  .skin_worry mark {
    display: inline;
    font-size: 14px;
  }


  .skin_worry li a {
    font-size: 13px;
  }

}

@media screen and (max-width: 767px) {
  .skin_worry {
    position: relative;
  }

  .skin_worry ul li {
    width: 100%;
  }

  .skin_worry mark {
    background: none;
    padding: 0;
  }

  .skin_worry li p {
    font-size: 16px;
  }
}

.container.cate01 .history .title p {
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
  font-size: 40px;
  line-height: 1;
  font-weight: 100;
  letter-spacing: -3px;
  word-break: keep-all;
}

.container.cate01 .history .title p em {
  display: block;
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  .container.cate01 .history .title {
    padding-top: 0;
    height: 200px;
  }

  .container.cate01 .history .title p {
    right: 40px;
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .container.cate01 .history .title {
    height: auto;
    margin-bottom: 30px;
    padding: 20px 12px;
  }

  .container.cate01 .history .title p {
    position: relative;
    top: auto;
    right: auto;
    transform: translateY(0);
    width: 60%;
    margin-left: auto;
    font-size: 26px;
    text-align: right;
  }
}

.container.cate01 .history .box {
  position: relative;
  padding-left: 14.642857%;
}

@media screen and (max-width: 767px) {
  .container.cate01 .history .box {
    padding-left: 0;
  }
}

.container.cate01 .history .box .year {
  position: absolute;
  top: 0px;
  left: 0;
  font-size: 40px;
  font-weight: 900;
  color: #00b760;
  letter-spacing: -2px;
}

@media screen and (max-width: 767px) {
  .container.cate01 .history .box .year {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 10px;
  }
}

.container.cate01 .history .box .cont {
  position: relative;
  padding-left: 40px;
}

.container.cate01 .history .box .cont::before {
  content: ' ';
  position: absolute;
  top: 5px;
  left: 0;
  bottom: 0;
  width: 2px;
  background: #eaeaea;
}

@media screen and (max-width: 767px) {
  .container.cate01 .history .box .cont::before {
    top: 10px;
    left: 13px;
  }
}

.container.cate01 .history .box .cont::after {
  content: ' ';
  position: absolute;
  left: -11px;
  top: 0px;
  width: 24px;
  height: 24px;
  border: 3px solid #eaeaea;
  border-radius: 50%;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .container.cate01 .history .box .cont::after {
    top: 5px;
    left: 4px;
    width: 18px;
    height: 18px;
  }
}

.container.cate01 .history .box .cont .tit {
  position: relative;
  padding-bottom: 22px;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -1.5px;
  font-weight: 100;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .container.cate01 .history .box .cont .tit {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.8px;
    font-weight: 400;
  }
}

@media screen and (max-width: 767px) {
  .container.cate01 .history .box .cont .tit {
    padding-bottom: 16px;
  }
}

.container.cate01 .history .box .cont .tit::before {
  content: ' ';
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 3px;
  background: #eaeaea;
}

.container.cate01 .history .box .cont .tit::after {
  content: ' ';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  background: #00b760;
}

.container.cate01 .history .box .cont .lists {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .container.cate01 .history .box .cont .lists {
    margin-top: 20px;
  }
}

.container.cate01 .history .box .cont .lists li {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .container.cate01 .history .box .cont .lists li {
    margin-top: 30px;
  }
}

.container.cate01 .history .box .cont .lists li:first-child {
  margin-top: 0;
}

.container.cate01 .history .box .cont .lists li .month {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 900;
}

.container.cate01 .history .box .cont .lists li .desc ul li {
  margin-top: 5px;
  color: #a3a3a3;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
}

@media screen and (max-width: 767px) {
  .container.cate01 .history .box .cont .lists li .desc ul li {
    font-size: 14px;
    line-height: 22px;
  }
}

.container.cate01 .history .box .cont .lists li .desc ul li:first-child {
  margin-top: 0;
}

.container.cate01 .history .box .cont .lists li .desc .imgs {
  margin-top: 10px;
  font-size: 0;
}

.container.cate01 .history .box .cont .lists li .desc .imgs span {
  display: inline-block;
  max-width: calc((100% - 40px) / 3);
  margin-left: 20px;
}

.container.cate01 .history .box .cont .lists li .desc .imgs span:first-child {
  margin-left: 0;
}

.container.cate01 .facilitys .video-box a {
  display: block;
  position: relative;
  padding: 110px 0 80px;
  background: url("/_image/img/img-sub0104.jpg") center no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .container.cate01 .facilitys .video-box a {
    padding: 50px 12px 40px;
  }
}

.container.cate01 .facilitys .video-box .text {
  text-align: center;
  color: #fff;
  word-break: keep-all;
}

.container.cate01 .facilitys .video-box .text .tit {
  font-size: 30px;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .container.cate01 .facilitys .video-box .text .tit {
    font-size: 26px;
  }
}

.container.cate01 .facilitys .video-box .text .desc {
  margin-top: 10px;
  font-size: 20px;
  line-height: 28px;
}

@media screen and (max-width: 767px) {
  .container.cate01 .facilitys .video-box .text .desc {
    font-size: 18px;
    line-height: 26px;
  }
}

.container.cate01 .facilitys .video-box .text::after {
  content: ' ';
  display: block;
  width: 72px;
  height: 72px;
  margin: 20px auto 0;
  background: url("/_image/icon/icon-play.png") center no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 767px) {
  .container.cate01 .facilitys .video-box .text::after {
    width: 50px;
    height: 50px;
  }
}

.container.cate01 .facilitys .video-box .info {
  display: none !important;
}

.container.cate01 .facilitys .slider-wrap {
  position: relative;
  margin-top: 100px;
  padding: 60px 30px 0;
  background: url("/_image/bg/bg-sub0104.jpg") center 0 no-repeat;
  background-size: 1400px auto;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .container.cate01 .facilitys .slider-wrap {
    margin-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  .container.cate01 .facilitys .slider-wrap {
    margin: 60px -12px 0;
    padding: 40px 12px 0;
    background-size: auto 60%;
  }
}

.container.cate01 .facilitys .slider-wrap .tit {
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -1.5px;
  font-weight: 100;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
}

@media screen and (max-width: 767px) {
  .container.cate01 .facilitys .slider-wrap .tit {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.8px;
    font-weight: 400;
  }
}

.container.cate01 .facilitys .slider-wrap .desc {
  margin-top: 15px;
  color: #fff;
  font-size: 17px;
  line-height: 25px;
  letter-spacing: -0.3px;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .container.cate01 .facilitys .slider-wrap .desc {
    font-size: 15px;
    line-height: 23px;

  }
}

.container.cate01 .facilitys .photo-slider {
  margin-top: 60px;
}

@media screen and (max-width: 1024px) {
  .container.cate01 .facilitys .photo-slider {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .container.cate01 .facilitys .photo-slider {
    margin-top: 30px;
  }
}

.container.cate01 .facilitys .photo-slider .swiper-slide img {
  width: 100%;
}

.container.cate01 .facilitys .thumb-slider {
  position: absolute;
  left: 50%;
  bottom: 60px;
  width: calc(100% - 60px);
  max-width: 1100px;
  padding: 0 60px;
  transform: translateX(-50%);
  z-index: 10;
}

@media screen and (max-width: 1024px) {
  .container.cate01 .facilitys .thumb-slider {
    padding: 0 40px;
    bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .container.cate01 .facilitys .thumb-slider {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 10px;
    padding: 0 30px;
    transform: translateX(0);
  }
}

.container.cate01 .facilitys .thumb-slider .swiper-slide {
  position: relative;
  cursor: pointer;
}

.container.cate01 .facilitys .thumb-slider .swiper-slide.swiper-slide-thumb-active::after {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid #00b760;
}

.container.cate01 .facilitys .thumb-slider .swiper-prev,
.container.cate01 .facilitys .thumb-slider .swiper-next {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 55px;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {

  .container.cate01 .facilitys .thumb-slider .swiper-prev,
  .container.cate01 .facilitys .thumb-slider .swiper-next {
    width: 35px;
  }
}

@media screen and (max-width: 767px) {

  .container.cate01 .facilitys .thumb-slider .swiper-prev,
  .container.cate01 .facilitys .thumb-slider .swiper-next {
    width: 30px;
  }
}

.container.cate01 .facilitys .thumb-slider .swiper-prev::before,
.container.cate01 .facilitys .thumb-slider .swiper-next::before {
  content: ' ';
  position: absolute;
  top: 50%;
  width: 72.727273%;
  padding-top: 72.727273%;
  margin-top: -36.363636%;
  border: 1px solid #fff;
  border-top: none;
  border-right: none;
}

@media screen and (max-width: 767px) {

  .container.cate01 .facilitys .thumb-slider .swiper-prev::before,
  .container.cate01 .facilitys .thumb-slider .swiper-next::before {
    border-color: #333;
  }
}

.container.cate01 .facilitys .thumb-slider .swiper-prev.swiper-button-disabled::before,
.container.cate01 .facilitys .thumb-slider .swiper-next.swiper-button-disabled::before {
  opacity: 0.5;
}

.container.cate01 .facilitys .thumb-slider .swiper-prev {
  left: 0;
}

.container.cate01 .facilitys .thumb-slider .swiper-prev::before {
  left: 10px;
  transform: rotate(45deg);
}

.container.cate01 .facilitys .thumb-slider .swiper-next {
  right: 0;
}

.container.cate01 .facilitys .thumb-slider .swiper-next::before {
  right: 11px;
  transform: rotate(-135deg);
}

.cate-tabs {
  overflow-x: auto;
}

.cate-tabs::-webkit-scrollbar {
  display: none;
}

.cate-tabs .tabs {
  display: flex;
  font-size: 0;
  white-space: nowrap;
  justify-content: center;
  gap: 40px;
}

.cate-tabs .tabs li {
  position: relative;
}

.cate-tabs .tabs li::before {
  content: ' ';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translate(0, -50%);
  vertical-align: middle;
  width: 1px;
  height: 25%;
  background: #dbdbdb;
}

.cate-tabs .tabs li:last-of-type::before {
  display: none;
}

.cate-tabs .tabs.wrap {
  flex-wrap: wrap;
}

.cate-tabs .tabs.wrap li {
  /* width: 16%; */
  flex: 0 0 20%;
  cursor: pointer;
}



@media screen and (max-width: 767px) {
  .cate-tabs .tabs.wrap li {
    flex: 0 0 33%;
  }
}

@media screen and (max-width: 520px) {
  .cate-tabs .tabs.wrap li {
    flex: unset;
    width: 50%;
  }
}


.cate-tabs .tabs.wrap .tabs li {
  width: 10%;
}

.cate-tabs .tabs li a {
  display: flex;
  height: 50px;
  font-size: 20px;
  justify-content: center;
  line-height: 1.2;
  align-items: center;
  font-weight: 500;
  text-align: center;
  color: #a3a2a2;
}

.cate-tabs .tabs li a:hover {
  color: #000;
}

@media screen and (max-width: 767px) {
  .cate-tabs .tabs li a {
    font-size: 16px;
    padding: 0 20px;
  }
}



.cate-tabs .tabs li.active a {
  color: #00b760;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  /* .cate-tabs .tabs li.active a {
        background: none;
        color:#00b760;
        border-bottom: solid 5px #00b760;    
    } */
}



/* .cate-tabs .tabs li:last-child a {
    border-right: 1px solid #ddd;
} */

.cate-tabs.learning {
  box-shadow: none;
  margin-bottom: 60px;
}


.cate-tabs.learning .tabs {
  overflow: hidden;
  gap: 20px;
}

.cate-tabs.learning .tabs li {
  border: none;
  border-radius: 20px;
}

.cate-tabs.learning .tabs li a {
  border-radius: 30px;
  border: solid 1px #ddd;
}

@media screen and (max-width: 767px) {
  .cate-tabs.learning .tabs {
    overflow-x: scroll;
  }

  .cate-tabs.learning .tabs::-webkit-scrollbar {
    display: none;
  }
}



.container.cate01 .branch-lists {
  margin-top: 60px;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .container.cate01 .branch-lists {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .container.cate01 .branch-lists {
    margin-top: 30px;
  }

}

.container.cate01 .branch-lists .lists {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2.857143%;
  margin-top: -40px;
}

@media screen and (max-width: 767px) {
  .container.cate01 .branch-lists .lists {
    margin-top: -30px;
  }
}

.container.cate01 .branch-lists .lists>li {
  width: 25%;
  margin-top: 40px;
  padding-left: 2.777778%;
}

@media screen and (max-width: 1024px) {
  .container.cate01 .branch-lists .lists>li {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .container.cate01 .branch-lists .lists>li {
    margin-top: 30px;
    width: 100%;
  }
}

.container.cate01 .branch-lists .lists>li .container.cate01 .branch-lists .lists .inner .thumb {
  display: block;
  margin-bottom: 20px;
  border: 1px solid #ddd;
}

@media screen and (max-width: 767px) {
  .container.cate01 .branch-lists .lists .inner .thumb {
    margin-bottom: 10px;
  }
}

.container.cate01 .branch-lists .lists .inner .thumb img {
  width: 100%;
}

.container.cate01 .branch-lists .lists .inner dl dt {
  font-size: 20px;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .container.cate01 .branch-lists .lists .inner dl dt {
    font-size: 18px;

  }
}

.container.cate01 .branch-lists .lists .inner dl dd.addr {
  margin-top: 5px;
  color: #a3a3a3;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .container.cate01 .branch-lists .lists .inner dl dd.addr {
    font-size: 14px;
    line-height: 22px;
  }
}

.container.cate01 .branch-lists .lists .inner dl dd ul {
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .container.cate01 .branch-lists .lists .inner dl dd ul {
    margin-top: 10px;
  }
}

.container.cate01 .branch-lists .lists .inner dl dd ul li {
  font-size: 0;
}

.container.cate01 .branch-lists .lists .inner dl dd ul li span {
  display: inline-block;
  vertical-align: top;
  width: 100px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
}

@media screen and (max-width: 767px) {
  .container.cate01 .branch-lists .lists .inner dl dd ul li span {
    font-size: 14px;
    line-height: 22px;
  }
}

.container.cate01 .branch-lists .lists .inner dl dd ul li p {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 100px);
  color: #a3a3a3;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
}

@media screen and (max-width: 767px) {
  .container.cate01 .branch-lists .lists .inner dl dd ul li p {
    font-size: 14px;
    line-height: 22px;
  }
}

.container.cate01 .branch-lists .lists .inner .btn {
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .container.cate01 .branch-lists .lists .inner .btn {
    margin-top: 15px;
  }
}

.container.cate01 .branch-lists .lists .inner .btn::after {
  content: ' ';
  display: inline-block;
  vertical-align: top;
  width: 7px;
  height: 7px;
  margin-top: 9px;
  margin-left: 6px;
  border: 1px solid #fff;
  border-left: none;
  border-bottom: none;
  transform: rotate(45deg);
}

.container .ci-lists {
  overflow: hidden;
  margin-top: 40px;
}

.container .ci-lists .sect {
  padding: 0 10px;
}

@media screen and (max-width: 1024px) {
  .container .ci-lists {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .container .ci-lists {
    margin-top: 30px;
  }
}

.container .sect .sub-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container .sect .sub-title {
  font-size: 28px;
  line-height: 1.2;
  font-weight: bold;
}

.container .sect .sub-title-wrap .btn-mouse {
  width: 50% !important;
  margin: unset;
}

@media screen and (max-width: 767px) {
  .container .sect .sub-title {
    font-size: 24px;
  }

  .container .sect .sub-title-wrap .btn-mouse {
    width: 50%;
  }
}


.container .sect .learning-wrap {
  position: relative;
}

.container .sect .learning-wrap .ci-lists {
  margin-top: 80px;
}

.learning-wrap p.sub {
  font-size: 19px;
  line-height: 1.2;
  word-break: keep-all;
}


@media screen and (max-width: 1024px) {
  .learning-wrap p.sub {
    font-size: 16px;
  }

  .learning-wrap p.sub br {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .learning-wrap p.sub {
    font-size: 15px;
  }
}



.learning-wrap .sub-title-wrap {
  margin: 0 auto;
  border-radius: 50px;
  background: #00b760;
  color: #fff;
  /* font-family: 'Nanum Myeongjo'; */
  font-size: 28px;
  line-height: 1.2;
  font-weight: bold;
  width: fit-content;
  max-width: 600px;
  width: 100%;
  font-size: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.learning-wrap .sub-title-wrap em {
  background: #000;
  display: inline-block;
  color: #00b760;
  padding: 15px 35px;
  border-radius: 50px;
}

.learning-wrap .sub-title-wrap h3 {
  text-align: center;
  margin: 0 auto;
  padding: 0 10px;
}

.learning-wrap .learning-content-wrap {
  position: relative;
  padding-bottom: 100px;
}

.learning-wrap .learning-content {
  position: relative;
  display: flex;
  margin-top: 30px;
}

.learning-wrap .learning-content ul {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.learning-wrap .learning-content .learning-img {
  align-self: center;
}

.container .sect .learning-wrap .learning-content .level-wrap .level-tit {
  padding: 0;
}

.container .sect .learning-wrap .learning-content .level-tit h2 {
  font-size: 22px;
}


@media screen and (max-width: 1024px) {



  .container .sect .learning-wrap .sub-title-wrap {
    font-size: 16px;
  }

  .container .sect .learning-wrap .sub-title {
    font-size: 17px;
  }

  .learning-wrap .sub-title-wrap {
    font-size: 18px;
  }

  .learning-wrap .sub-title-wrap em {
    padding: 10px;
  }

  .learning-wrap .learning-content {
    flex-direction: column;
  }


}


@media screen and (max-width: 767px) {
  .container .sect .learning-wrap .sub-title-wrap {
    font-size: 14px;
  }

  .container .sect .learning-wrap .learning-content {
    flex-direction: column;
  }

  .container .sect .learning-wrap .learning-content ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

}



.more_all {
  font-weight: bold;
}

.more_all:hover {
  color: #00b760;
  text-decoration: underline;
}


.container .ci-lists>ul.lists {
  display: flex;
  flex-wrap: wrap;
  margin-top: -40px;
  margin-left: -2.857143%;
}


@media screen and (max-width: 767px) {
  .container .ci-lists>ul.lists {
    margin-top: -30px;
  }
}

.container .ci-lists>ul.lists>li {
  width: 25%;
  margin-top: 40px;
  padding-left: 2.777778%;
}

@media screen and (max-width: 1024px) {
  .container .ci-lists>ul.lists>li {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .container .ci-lists>ul.lists>li {
    width: 100%;
    margin-top: 30px;
  }
}

.container .ci-lists>ul.lists .inner .cis {
  display: block;
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
  line-height: 114px;

}

.container .ci-lists>ul.lists .inner .cis img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100px;
}


.container .ci-lists>ul.lists .inner .program {
  display: block;
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
  line-height: 114px;
  border-radius: 10px;
}

.container .ci-lists>ul.lists .inner .program img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100px;
}

.container .ci-lists>ul.lists .inner p {
  margin-top: 15px;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .container .ci-lists>ul.lists .inner p {
    font-size: 14px;
    line-height: 22px;
  }
}

.container.cate01 .tc-lists {
  overflow: hidden;
}

.container.cate01 .tc-lists .lists {
  display: flex;
  flex-wrap: wrap;
  margin-top: -22px;
  margin-left: -22px;
}

@media screen and (max-width: 767px) {
  .container.cate01 .tc-lists .lists {
    margin-top: -10px;
  }
}

.container.cate01 .tc-lists .lists li {
  width: calc(100% / 3);
  margin-top: 22px;
  padding-left: 22px;
}

@media screen and (max-width: 1024px) {
  .container.cate01 .tc-lists .lists li {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .container.cate01 .tc-lists .lists li {
    width: 100%;
    margin-top: 10px;
  }
}

.container.cate01 .tc-lists .lists li .img {
  border: 1px solid #ddd;
}

.container.cate01 .tc-lists .lists li .img img {
  width: 100%;
}

.container.cate01 .waytocome {
  display: flex;
}

@media screen and (max-width: 767px) {
  .container.cate01 .waytocome {
    flex-wrap: wrap;
  }
}

.container.cate01 .waytocome .map-select {
  position: relative;
  width: 50%;
  max-width: 550px;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .container.cate01 .waytocome .map-select {
    order: 2;
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
  }
}

.container.cate01 .waytocome .map-select>img {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 11;
}

.container.cate01 .waytocome .map-select .spot {
  position: absolute;
  z-index: 20;
  width: 9.090909%;
}

.container.cate01 .waytocome .map-select .spot.spot01 {
  left: 34.363636%;
  top: 14.931507%;
}

.container.cate01 .waytocome .map-select .spot.spot02 {
  left: 28.363636%;
  top: 17.534247%;
}

.container.cate01 .waytocome .map-select .spot.spot03 {
  left: 35.090909%;
  top: 28.630137%;
}

.container.cate01 .waytocome .map-select .spot.spot04 {
  left: 38.181818%;
  top: 34.109589%;
}

.container.cate01 .waytocome .map-select .spot .pin {
  display: block;
}

.container.cate01 .waytocome .map-select .spot .pin img {
  width: 100%;
}

.container.cate01 .waytocome .map-select .spot.active {
  z-index: 30;
}

.container.cate01 .waytocome .map-select .spot.active .info {
  display: block;
}

.container.cate01 .waytocome .map-select .spot .info {
  display: none;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  margin-left: 5px;
  padding: 20px 40px;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.18);
}

@media screen and (max-width: 1024px) {
  .container.cate01 .waytocome .map-select .spot .info {
    width: 230px;
    padding: 15px;
  }
}

@media screen and (max-width: 767px) {
  .container.cate01 .waytocome .map-select .spot .info {
    padding: 10px;
    width: 170px;
  }
}

.container.cate01 .waytocome .map-select .spot .info::before {
  content: ' ';
  position: absolute;
  top: 50%;
  left: -8px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #00b760;
}

@media screen and (max-width: 1024px) {
  .container.cate01 .waytocome .map-select .spot .info::before {
    left: -5px;
    width: 10px;
    height: 10px;
    margin-top: -5px;
  }
}

.container.cate01 .waytocome .map-select .spot .info h4 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 900;
}

@media screen and (max-width: 1024px) {
  .container.cate01 .waytocome .map-select .spot .info h4 {
    font-size: 16px;

  }
}

.container.cate01 .waytocome .map-select .spot .info .addr {
  color: #a3a3a3;
  font-size: 16px;
  line-height: 22px;
  word-break: keep-all;

}

@media screen and (max-width: 1024px) {
  .container.cate01 .waytocome .map-select .spot .info .addr {
    font-size: 14px;
    line-height: 20px;
  }
}

.container.cate01 .waytocome .map-select .spot .info .call {
  margin-top: 15px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  white-space: nowrap;
}

@media screen and (max-width: 1024px) {
  .container.cate01 .waytocome .map-select .spot .info .call {
    margin-top: 10px;
    font-size: 20px;
  }
}

.container.cate01 .waytocome .map-select .spot .info .call small {
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
  margin-right: 4px;
  padding: 0 5px;
  background: #00b760;
  border-radius: 2px;
  color: #fff;
  font-size: 14px;
  line-height: 20px;

  font-weight: 700;
  letter-spacing: -0.5px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .container.cate01 .waytocome .map-select .spot .info .call small {
    font-size: 12px;
    line-height: 16px;
  }
}

@media screen and (max-width: 767px) {
  .container.cate01 .waytocome .map-select .spot .info .call small {
    display: block;
    width: 60px;
    margin-bottom: 5px;
    margin-right: auto;
  }
}

.container.cate01 .waytocome .tab-select {
  position: relative;
  width: 50%;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .container.cate01 .waytocome .tab-select {
    width: 100%;
  }
}

.container.cate01 .waytocome .tab-select .tabs {
  font-size: 0;
}

.container.cate01 .waytocome .tab-select .tabs li {
  display: inline-block;
  vertical-align: top;
  width: calc((100% - 10px) / 2);
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .container.cate01 .waytocome .tab-select .tabs li {
    width: calc((100% - 5px) / 2);
    margin-left: 5px;
  }
}

.container.cate01 .waytocome .tab-select .tabs li:nth-child(2)~li {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .container.cate01 .waytocome .tab-select .tabs li:nth-child(2)~li {
    margin-top: 5px;
  }
}

.container.cate01 .waytocome .tab-select .tabs li:nth-child(odd) {
  margin-left: 0;
}

.container.cate01 .waytocome .tab-select .tabs li a {
  display: block;
  height: 60px;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 16px;
  line-height: 58px;
  font-weight: 700;

}

@media screen and (max-width: 1024px) {
  .container.cate01 .waytocome .tab-select .tabs li a {
    height: 45px;
    line-height: 43px;
  }
}

@media screen and (max-width: 767px) {
  .container.cate01 .waytocome .tab-select .tabs li a {
    font-size: 14px;
  }
}

.container.cate01 .waytocome .tab-select .tabs li.active a {
  background: #00b760;
  border-color: #00b760;
  color: #fff;
}

.container.cate01 .waytocome .tab-select .tab-contents {
  position: relative;
  height: calc(100% - 165px);
  margin-top: 35px;
}

@media screen and (max-width: 1024px) {
  .container.cate01 .waytocome .tab-select .tab-contents {
    height: calc(100% - 120px);
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .container.cate01 .waytocome .tab-select .tab-contents {
    height: 220px;
  }
}

.container.cate01 .waytocome .tab-select .tab-contents .root_daum_roughmap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100%;
}

.container.cate01 .waytocome .tab-select .tab-contents .root_daum_roughmap .wrap_map {
  height: 100% !important;
}

.container.cate01 .waytocome .tab-select .tab-contents .root_daum_roughmap .wrap_map .map_border {
  display: none;
}

.container.cate01 .case-wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.case-profile {
  width: 50%;
}

.case-content {
  position: relative;
  padding: 50px;
  background: url(/_image/bg/bg-line.png)center top /contain no-repeat;
}

.case-content .eye {
  font-size: 24px;
  color: #333;
  margin: 20px 0;
  word-break: keep-all;
  line-height: 1.2;
}

.case-content h1 {
  font-size: 36px;
  margin: 20px 0;
  word-break: keep-all;
  line-height: 1.2;
}

.case-desc {
  word-break: keep-all;
  color: #626262;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
}

@media screen and (max-width: 1024px) {
  .container.cate01 .case-wrap {
    flex-direction: column;
  }

  .case-content {
    padding: 20px 10px 0 0;
  }
}

.tip-banner {
  margin-top: 30px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  border: solid 1px #ddd;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 20px;
}

.tip_half {
  display: flex;
  align-items: center;
  width: 35%;
}


.tip-banner h2 {
  /* font-family: 'Nanum Myeongjo'; */
  color: #00b760;
  font-size: 28px;
  line-height: 1.2;
}

.tip-banner h2 em {
  color: #000;
  display: block;
}


.tip_character {
  width: 200px;
  margin-top: -50px;
  margin-bottom: -50px;
  transform: scaleX(-1);
}

.tip_link {
  width: 70%;
  display: flex;
  justify-content: space-evenly;
  gap: 10px;
}

.tip_link li {
  position: relative;
  flex: 0 0 15%;
}

.tip_link li a {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.25;
}

.tip_link li a .tip_bg {
  display: block;
  min-width: 120px;
  width: 100%;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin: 0 auto;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tip_link li:nth-child(1) .tip_bg {
  background: #e4c3fa;
}

.tip_link li:nth-child(2) .tip_bg {
  background: #ffecb4;
}

.tip_link li:nth-child(3) .tip_bg {
  background: #cdefe2;
}

.tip_link li:nth-child(4) .tip_bg {
  background: #d1ecf6;
}


@media screen and (max-width: 1024px) {
  .case-content .eye {
    font-size: 20px;
  }

  .case-content h1 {
    font-size: 28px;
  }

  .case-desc {
    font-size: 16px;
  }

  .tip-banner h2 {
    width: 100px;
    font-size: 22px;
  }

  .tip_half {
    width: 50%;
  }

  .tip_character {
    width: 150px;
  }

  .tip_link {
    width: 100%;
    justify-content: space-between;
  }

  .tip_link li a .tip_bg {
    min-width: 100px;
    max-width: 150px;
    height: 100px;
  }

  .tip_link li a {
    font-size: 16px;
  }
}


@media screen and (max-width: 767px) {
  .case-content .eye {
    font-size: 18px;
  }

  .case-content h1 {
    font-size: 26px;
  }

  .case-desc {
    font-size: 14px;
  }

  .tip-banner {
    flex-direction: column;
    gap: 20px;
    padding: 10px;
  }

  .tip-banner h2 {
    width: auto
  }

  .tip_half {
    width: 100%;
  }

  .tip_character {
    width: 100px;
  }

  .tip_link {
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-evenly;
  }

}


@media screen and (max-width: 520px) {
  .tip_link li {
    width: 50%;
    flex: 0 0 48%;
  }
}




/* 교육과정 */
.container.cate02 .study-visual {
  position: relative;
  width: 100%;
  margin-bottom: 80px;
  padding-top: 24.285714%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.container.cate02 .study-visual.sv01 {
  background-image: url("/_image/bg/bg-sub0201.jpg");
}

.container.cate02 .study-visual.sv02 {
  background-image: url("/_image/bg/bg-sub0202.jpg");
}

.container.cate02 .study-visual.sv03 {
  background-image: url("/_image/bg/bg-sub0203.jpg");
}

.container.cate02 .study-visual.sv04 {
  background-image: url("/_image/bg/bg-sub0204.jpg");
}

.container.cate02 .study-visual.sv05 {
  background-image: url("/_image/bg/bg-sub0205.jpg");
}

.container.cate02 .study-visual.sv06 {
  background-image: url("/_image/bg/bg-sub0206.jpg");
}

.container.cate02 .study-visual.sv07 {
  background-image: url("/_image/bg/bg-sub0207.jpg");
}

.container.cate02 .study-visual.sv08 {
  background-image: url("/_image/bg/bg-sub0208.jpg");
}

@media screen and (max-width: 1024px) {
  .container.cate02 .study-visual {
    height: 250px;
  }
}

@media screen and (max-width: 767px) {
  .container.cate02 .study-visual {
    margin-bottom: 30px;
    padding-top: 0;
    height: 200px;
  }
}

.container.cate02 .study-visual .tit-wrap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: 70%;
  max-width: 700px;
  padding: 70px 80px;
  background: rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 1024px) {
  .container.cate02 .study-visual .tit-wrap {
    width: 80%;
    max-width: none;
    padding: 40px 30px;
  }
}

@media screen and (max-width: 767px) {
  .container.cate02 .study-visual .tit-wrap {
    width: 100%;
    padding: 20px 12px;
  }
}

.container.cate02 .study-visual .tit-wrap .tit {
  margin-top: auto;
  color: #fff;
  font-size: 48px;
  font-weight: 900;
}

@media screen and (max-width: 1024px) {
  .container.cate02 .study-visual .tit-wrap .tit {
    font-size: 36px;
  }
}

@media screen and (max-width: 767px) {
  .container.cate02 .study-visual .tit-wrap .tit {
    font-size: 30px;
  }
}

.container.cate02 .study-visual .tit-wrap .desc {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .container.cate02 .study-visual .tit-wrap .desc {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 767px) {
  .container.cate02 .study-visual .tit-wrap .desc {
    margin-top: 10px;
  }
}

.container.cate02 .study-info-wrap .card {
  margin-top: 100px;
}

.container.cate02 .study-info-wrap .card::after {
  content: " ";
  display: block;
  clear: both;
}

@media screen and (max-width: 1024px) {
  .container.cate02 .study-info-wrap .card {
    margin-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  .container.cate02 .study-info-wrap .card {
    margin-top: 60px;
  }
}

.container.cate02 .study-info-wrap .card:first-child {
  margin-top: 0;
}

.container.cate02 .study-info-wrap .card .left {
  float: left;
  width: 42.857143%;
  padding-right: 2.857143%;
}

@media screen and (max-width: 1024px) {
  .container.cate02 .study-info-wrap .card .left {
    float: none;
    width: 100%;
    padding-right: 0;
  }
}

.container.cate02 .study-info-wrap .card .left .tit {
  color: #00b760;
  font-size: 26px;
  line-height: 38px;
  font-weight: 900;
  word-break: keep-all;
  letter-spacing: -1px;
}

@media screen and (max-width: 767px) {
  .container.cate02 .study-info-wrap .card .left .tit {
    font-size: 22px;
    line-height: 30px;
  }
}

.container.cate02 .study-info-wrap .card .left .desc {
  margin-top: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .container.cate02 .study-info-wrap .card .left .desc {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 767px) {
  .container.cate02 .study-info-wrap .card .left .desc {
    margin-top: 5px;
    padding-bottom: 10px;
  }
}

.container.cate02 .study-info-wrap .card .left dl {
  margin-top: 20px;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
}

@media screen and (max-width: 767px) {
  .container.cate02 .study-info-wrap .card .left dl {
    font-size: 14px;
    line-height: 22px;
  }
}

.container.cate02 .study-info-wrap .card .left dl dt {
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .container.cate02 .study-info-wrap .card .left dl {
    margin-top: 15px;
  }
}

.container.cate02 .study-info-wrap .card .right {
  float: right;
  width: 57.142857%;
  padding: 40px 50px;
  border-radius: 10px;
  background: #f4f4f4;
}

@media screen and (max-width: 1024px) {
  .container.cate02 .study-info-wrap .card .right {
    float: none;
    width: 100%;
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .container.cate02 .study-info-wrap .card .right {
    margin-top: 15px;
    padding: 20px;
  }
}

.container.cate02 .study-info-wrap .card .right>dl {
  margin-top: 20px;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .container.cate02 .study-info-wrap .card .right>dl {
    font-size: 14px;
    line-height: 22px;
  }
}

.container.cate02 .study-info-wrap .card .right>dl::after {
  content: " ";
  display: block;
  clear: both;
}

@media screen and (max-width: 767px) {
  .container.cate02 .study-info-wrap .card .right>dl {
    margin-top: 10px;
  }
}

.container.cate02 .study-info-wrap .card .right>dl:first-child {
  margin-top: 0;
}

.container.cate02 .study-info-wrap .card .right>dl>dt {
  float: left;
  width: 100px;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .container.cate02 .study-info-wrap .card .right>dl>dt {
    width: 80px;
  }
}

.container.cate02 .study-info-wrap .card .right>dl>dd {
  margin-left: 100px;
  color: #555;
}

@media screen and (max-width: 767px) {
  .container.cate02 .study-info-wrap .card .right>dl>dd {
    margin-left: 80px;
  }
}

.container.cate02 .study-info-wrap .card .right>dl dl.in {
  margin-top: 10px;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
}

@media screen and (max-width: 767px) {
  .container.cate02 .study-info-wrap .card .right>dl dl.in {
    font-size: 14px;
    line-height: 22px;
  }
}

.container.cate02 .study-info-wrap .card .right>dl dl.in:first-child {
  margin-top: 0;
}

.container.cate02 .study-info-wrap .card .right>dl dl.in dt {
  margin-bottom: 5px;
  color: #00b760;
  font-weight: 900;
}

.container.cate02 .study-info-wrap .card .right p {
  position: relative;
  margin-top: 5px;
  padding-left: 55px;
}

.container.cate02 .study-info-wrap .card .right p:first-child {
  margin-top: 0;
}

.container.cate02 .study-info-wrap .card .right p span {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
}

/* 자격증 */
.container.cate03 .certificate-info {
  margin-top: 100px;
  padding: 170px 70px 0;
  background-repeat: no-repeat;
  background-position: center 0;
}

.container.cate03 .certificate-info:first-child {
  margin-top: 0;
}

.container.cate03 .certificate-info.bg1 {
  background-image: url("/_image/bg/bg-sub0301.jpg");
}

.container.cate03 .certificate-info.bg2 {
  background-image: url("/_image/bg/bg-sub0302.jpg");
}

.container.cate03 .certificate-info.bg3 {
  background-image: url("/_image/bg/bg-sub0303.jpg");
}

.container.cate03 .certificate-info.bg4 {
  background-image: url("/_image/bg/bg-sub0304-1.jpg");
}

.container.cate03 .certificate-info.bg5 {
  background-image: url("/_image/bg/bg-sub0304-2.jpg");
}

@media screen and (max-width: 1024px) {
  .container.cate03 .certificate-info {
    padding: 140px 40px 0;
    background-size: auto 260px;
  }
}

@media screen and (max-width: 767px) {
  .container.cate03 .certificate-info {
    padding: 100px 12px 0;
    background-size: auto 160px;
  }
}

.container.cate03 .certificate-info .box {
  max-width: 560px;
  padding: 40px 50px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.23);
}

@media screen and (max-width: 1024px) {
  .container.cate03 .certificate-info .box {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .container.cate03 .certificate-info .box {
    padding: 30px 20px;
  }
}

.container.cate03 .certificate-info .box .tit {
  color: #00b760;
  font-size: 26px;
  line-height: 38px;
  font-weight: 900;
  word-break: keep-all;
  letter-spacing: -1px;
}

@media screen and (max-width: 767px) {
  .container.cate03 .certificate-info .box .tit {
    font-size: 22px;
    line-height: 30px;
  }
}

.container.cate03 .certificate-info .box .desc {
  margin-top: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .container.cate03 .certificate-info .box .desc {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 767px) {
  .container.cate03 .certificate-info .box .desc {
    margin-top: 5px;
    padding-bottom: 10px;
  }
}

.container.cate03 .certificate-info .box dl {
  margin-top: 20px;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
}

@media screen and (max-width: 767px) {
  .container.cate03 .certificate-info .box dl {
    font-size: 14px;
    line-height: 22px;
  }
}

.container.cate03 .certificate-info .box dl dt {
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .container.cate03 .certificate-info .box dl {
    margin-top: 15px;
  }
}

.container.cate03 .certificate-info .cont {
  margin-top: 40px;
  padding: 40px 50px;
  border-radius: 10px;
  background: #f4f4f4;
}

@media screen and (max-width: 767px) {
  .container.cate03 .certificate-info .cont {
    margin-top: 15px;
    padding: 20px;
  }
}

.container.cate03 .certificate-info .cont>dl {
  margin-top: 20px;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
  word-break: keep-all;
}

@media screen and (max-width: 767px) {
  .container.cate03 .certificate-info .cont>dl {
    font-size: 14px;
    line-height: 22px;
  }
}

.container.cate03 .certificate-info .cont>dl::after {
  content: " ";
  display: block;
  clear: both;
}

@media screen and (max-width: 767px) {
  .container.cate03 .certificate-info .cont>dl {
    margin-top: 10px;
  }
}

.container.cate03 .certificate-info .cont>dl:first-child {
  margin-top: 0;
}

.container.cate03 .certificate-info .cont>dl>dt {
  float: left;
  width: 100px;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .container.cate03 .certificate-info .cont>dl>dt {
    width: 80px;
  }
}

.container.cate03 .certificate-info .cont>dl>dd {
  margin-left: 100px;
  color: #555;
}

@media screen and (max-width: 767px) {
  .container.cate03 .certificate-info .cont>dl>dd {
    margin-left: 80px;
  }
}

.container.cate03 .certificate-info .cont>dl dl.in {
  margin-top: 10px;
  font-size: 16px;
  line-height: 24px;

  letter-spacing: -0.3px;
}

@media screen and (max-width: 767px) {
  .container.cate03 .certificate-info .cont>dl dl.in {
    font-size: 14px;
    line-height: 22px;
  }
}

.container.cate03 .certificate-info .cont>dl dl.in:first-child {
  margin-top: 0;
}

.container.cate03 .certificate-info .cont>dl dl.in dt {
  margin-bottom: 5px;
  color: #00b760;
  font-weight: 900;
}

.container.cate03 .certificate-info .cont p {
  position: relative;
  margin-top: 5px;
  padding-left: 55px;
}

.container.cate03 .certificate-info .cont p:first-child {
  margin-top: 0;
}

.container.cate03 .certificate-info .cont p span {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
}


@media screen and (max-width: 1024px) {
  .sub-eyebrow .lash {
    font-size: 14px;
    margin: 0;
  }

  .sub-eyebrow h2 {
    font-size: 32px;
  }

  .container .contents .sect.bg-half {
    background: #f7f7f7;
  }

  .container.cate01 .ai-manager {
    padding: 0 16px;
    padding-bottom: 40px;
    flex-direction: column-reverse;
    margin: 0;

  }

  .container.cate01 .ai-manager h2 {
    font-size: 24px;
  }

  .container.cate01 .ai-manager .left_box {
    width: 100%;
  }

  .container .contents .sect.skin {
    padding: 0;
  }

  .skin-control {
    display: flex;
    font-size: 0;
    white-space: nowrap;
    overflow-x: scroll;
    gap: 20px;
  }

  .skin-control::-webkit-scrollbar {
    display: none;
  }

  .container.cate01 .skin-how {
    margin: 20px 0;

    display: block;
  }

  .skin-item em {
    font-size: 12px;
  }

  .skin_content img {
    max-width: 250px;
  }

  .main-box {
    flex-direction: column;
    gap: 20px;
  }

}

@media screen and (max-width: 767px) {
  .sub-eyebrow ul.txt em {
    font-size: 18px;
    display: block;
  }

  .sub-eyebrow .desc,
  .sub-eyebrow ul.txt {
    font-size: 15px;
    margin: 10px 0;
  }

  .sub-eyebrow ul.txt li {
    display: contents;
  }

  .btn-mouse {
    width: 70% !important;
    margin: 0 auto;
    height: 60px !important;
    font-size: 18px !important;
  }

  .tab_inner.active {
    gap: 20px;
    flex-direction: column;
  }

  .skin-control {
    display: flex;
    font-size: 0;
    white-space: nowrap;
    overflow-x: scroll;
    justify-content: space-between;
    margin: 0;
  }

  .skin-control::-webkit-scrollbar {
    display: none;
  }

  .skin-item {
    font-size: 14px;
    padding: 0 15px;
    background: #fff;
    color: #000;
    border-radius: 20px;
  }

  .skin-item.active::after {
    display: none;
  }

  .skin-item.active {
    background: #368553;
    color: #fff;
  }

  .skin-item.active em {
    color: #fff;
    font-weight: bold;
  }

  .skin_content .desc {
    padding: 0;
  }

  .skin_content .desc::before {
    display: none;
  }
}



/* Rx코칭 */
.subscribe-wrap{
  position: relative;
  display: flex;
  gap:30px;
  margin-bottom: 50px;
  justify-content: space-between;
}

.subscribe-wrap ul{
  flex:1;
  display: flex;
  gap:10px;
  text-align: center;
  align-items: center;
}

.subscribe-wrap ul li{
  position: relative;
  flex:1;
  background: #fff;
  width: 100%;
  height: 100%;
  padding:20px 0;
  border-radius: 10px;
  border:solid 1px #ddd;
}

.subscribe-wrap ul li p{
  font-weight:500;
  color:#09aa5c;
  font-size:28px;
}

.subscribe-wrap ul li a{
  display: flex;
  flex-direction:column;
  gap:15px;
  font-weight: 500;
}

.speech-bubble {
  position: absolute;
  width: fit-content;
  padding: 10px 13px;
  background-color: #164622;
  border-radius: 4px;
  color: #fff;
  left: -80px;
  top: -43px;
  z-index: 1;
}

.speech-bubble::before{
  content: '';
  position: absolute;
  right: 20px;
  bottom: -12px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid #164622;
}

@media screen and (max-width: 520px) {
  .speech-bubble {
    font-size:12px;
    top: -38px;
	white-space: nowrap;
  }
}



.subscribe-wrap > a{
  flex:1.5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:25px 50px;

  background: linear-gradient(
    90deg,
    #d90056 0%,
    #f1303c 15%,
    #f7832d 30%,
    #baae53 45%,
    #62b593 60%,
    #20afc3  75%,
    #0aabd4 80%,
    #01aadb 95%
);
 color:#fff;
}

.subscribe-wrap > a > p{
  color:#fff;
  font-weight: 500;
  font-size:30px;
}

.subscribe-wrap > a > div {
  color: #d1d2d3;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}


.coaching {
  position: relative;
  word-break: keep-all;
}

.coaching aside {
  position: relative;
  min-width: 350px;
  height: fit-content;
  margin-bottom: 50px;
}

.coaching aside .tabs {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  display: none;
}

.coaching aside .tabs li {
  position: relative;
  width:fit-content;
  text-align: left;
  padding: 10px;
  border-radius: 5px;
  flex:1;
  padding-left:35px;
  color:#a3a3a3;
}

.coaching aside .tabs li::before{
  content: ' ';
  position: absolute;
  top: 7px;
  left: 7px;
  width: 20px;
  height: 20px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 9px;
}

.coaching aside .tabs li.active {
  position: relative;
  font-weight: bold;
  color: #000;
}

.coaching aside .tabs li.active::before{
  content: ' ';
  position: absolute;
  top: 7px;
  left: 7px;
  width: 20px;
  height: 20px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 9px;
}

.coaching aside .tabs li.active::after{
  content: ' ';
  position: absolute;
  top: 12px;
  left: 12px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: #000;
}

.coaching aside .inner {
  position: relative;
  border-radius: 20px;
  padding: 20px 0;
  min-width: 350px;
  flex-basis: 400px;
  height: fit-content;
}


.coaching .sub-title-wrap {
  margin-bottom: 20px;
}

.coaching .title {
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
}




@media screen and (max-width: 1024px) {
  .coaching aside{
    margin-bottom: 0;
  }
  .subscribe-wrap{
    flex-direction: column;
    margin:42px 0 30px;
  }
  .subscribe-wrap ul li a{
    font-size:14px;
    gap:10px;
  }
  .subscribe-wrap ul li p{
    font-size:22px;
  }
  .subscribe-wrap > a{
    padding:20px;
  }
  .subscribe-wrap > a > p{
    font-size:22px;
  }
  .subscribe-wrap > a > div{
    font-size:18px;
  }
}



@media screen and (max-width: 520px) {
  .coaching .title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .subscribe-wrap > a > div {
    font-size: 14px;
}

  .subscribe-wrap > a > div img{
    width:12px;
  }
}




.coaching .lists {
  position: relative;
}

.coaching .lists ul {
  position: relative;
  display: flex; 
  gap:50px;
}

.coaching .lists li {
  position: relative;
  padding: 20px;
  background: #fff;
  margin-bottom: 20px;
}

.coaching .lists li:last-of-type {
  margin: 0;
}

.coaching .lists li .days {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.coaching .lists li .days a img {
  animation: emergency 2s ease-in-out infinite;
}


.coaching .ci-lists {
  position: relative;
  width: 100%;
  margin: 0;
}

.coaching .result-table{
  position: relative;
  font-size:18px;
  line-height: 1.2;
}








.score_wrap {
  margin: 10px 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.score_wrap .type {
  font-size: 36px;
  font-weight: bold;
  color: #00b5e2;
}


.score_wrap .skin_score {
  padding: 20px;
  background: #828282;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  width: 50%;
  text-align: right;
}

.score_wrap .skin_score p {
  text-align: left;
}

.score_wrap .skin_score span {
  font-size: 40px;
}

@media screen and (max-width: 1024px) {
  .score_wrap .skin_score span {
    font-size: 36px;
  }

  .score_wrap .type {
    font-size: 32px;
  }
}




.score_wrap .skin_score em {
  font-size: 16px;
}

.skin_exp {
  margin-top: 20px;
  border-top: dotted 1px #ddd;
  border-width: 3px;
  padding-top: 20px;
  line-height: 1.25;
  color: #666;
  font-weight: 500;
}

.chart-wrap {
  position: relative;
  flex: 2;
}

.chart-wrap ul {
  position: relative;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.chart-wrap ul li {
  width: 50%;
  flex: 1;
  border: solid 1px blue;
  border-radius: 20px;
  border: solid 1px #ddd;
  flex-basis: 320px;
  background: #fff;
}



.highcharts-credits{
  display: none;
}

/* 1024 */
@media screen and (max-width: 1024px) {
  .coaching {
    flex-direction: column;
  }

  .chart-wrap ul {
    flex-direction: column;
    gap: 10px;

  }

  .chart-wrap ul li {
    width: 100%;
  }

  .coaching aside .inner {
    display: none;
  }

  .coaching .lists ul{
    flex-direction: column;
    gap:20px;
  }
}



@media screen and (max-width: 1024px) {
  .coaching aside .tabs {
    display: flex;
  }
}

/* //Rx코칭 */



/* 제품정보 및 사용안내 */
.info_guide {
  position: relative;
  display: flex;
  gap: 20px;
  word-break: keep-all;
}


.info_guide aside {
  position: relative;
  background: #eef6f0;
  border-radius: 20px;
  flex: 2;
  padding: 20px;
  height: fit-content;
  border: solid 5px #328b49;
  overflow: hidden;
  line-height: 1.2;
}

.info_guide aside h2 {
  position: relative;
  font-weight: bold;
  color: #fff;
  background: #328b49;
  text-align: center;
  padding: 10px 0;
  font-size: 18px;
  z-index: 1;
  margin: 20px 0;
}

.info_guide aside h2::before,
.info_guide aside h2::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -9999px;
  right: 0;
  background-color: #328b49;
  z-index: -1;
}

.info_guide aside h2::after {
  right: -9999px;
}

.info_guide aside .user_info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  margin: 20px 0;
}

.info_guide aside .user_info li {
  color: #1e6b32;
  margin-bottom: 5px;
}

.info_guide aside .user_info li span {
  color: #000;
  font-weight: 500;
}

.info_guide aside .chab {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 30px 0;
}

.info_guide aside .chab_type {
  position: relative;
  overflow: hidden;
  min-width: 75px;
}

.info_guide aside .chab_type p {
  position: absolute;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
}

.info_guide aside .chab>.desc {
  font-weight: bold;
  font-size: 18px;
}

.info_guide .skin_use table {
  margin-bottom: 20px;
  border: solid 1px #959595;
  background: #fff;
}


.info_guide .skin_use table th:nth-child(2),
.info_guide .skin_use table tr td:nth-child(2) {
  background: #d5e3d8;
}

.info_guide .skin_use table th,
.info_guide .skin_use table tr,
.info_guide .skin_use table td {
  padding: 0 !important;
  height: auto !important;
  border-color: #959595 !important;
  border-right: none !important;
}

.info-table-wrap {
  position: relative;
  border-radius: 20px;
  padding: 20px;
  border: solid 5px #328b49;
  overflow: hidden;
  line-height: 1.2;
  flex: 7
}

.info-table-wrap h2 {
  color: #328b49;
  font-weight: bold;
}

.info-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.info-table {
  position: relative;
}

.info-table ul {
  position: relative;
  overflow: hidden;
}

.info-table ul li {
  position: relative;
  display: flex;
  font-size: 13px;
  border: solid 1px #ddd;
  margin-bottom: 10px;
}


.info-table ul li>div {
  position: relative;
  border-right: solid 1px #ddd;
}

.info-table ul li>div:last-of-type {
  border-right: none;
}

.info-table ul li .info-product {
  display: flex;
  text-align: center;
  margin: 0 auto;
  flex: 1;
}

.info-table ul li .info-product .product-img {
  flex: 1;
  margin: 0 auto;
  overflow: hidden;
  margin: 0 auto;
  border-right: solid 1px #ddd;
}

.info-table ul li .info-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 120px;
}

.info-table ul li .efficacy {
  flex: 2;
  color: #333;
  text-align: left;
  padding: 10px;
}

.info-table ul li .efficacy h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.info-table ul li .ingredient {
  flex: 1;
  color: #777;
  align-self: center;
  padding: 10px;
}

.info-table ul li a,
.info-table ul li span {
  display: none;
}

.info-table ul li a.on {
  background: #1a79c0;
}

.info-table ul li a.on p {
  display: none;
}

.info-table ul li a.on span {
  display: block;
}



/* 1024 */
@media screen and (max-width: 1024px) {
  .info_guide {
    flex-direction: column;
  }

  .info-table ul li {
    width: 100%;
    margin-bottom: 20px;
    font-size: 14px;
    display: block;
  }

  .info-table ul li .info-product {
    flex: 2;
    height: auto;
    border-right: none;
  }

  .info-table ul li .info-product .product-img {
    flex: 2;
  }

  .info-table ul li .efficacy {
    flex: 8;
    border-right: none;
  }

  .info-table ul li .ingredient {
    display: none;
    background: #f9f9f9;
    border-top: solid 1px #ddd;
  }

  .info-table ul li .ingredient.on {
    display: block;
  }

  .info-table ul li a {
    display: block;
    position: absolute;
    right: 10px;
    bottom: -10px;
    font-weight: bold;
    color: #fff;
    border-radius: 30px;
    background: #000;
    padding: 5px 20px;
    height: 30px;
    line-height: 1.2;
  }

  .info-table ul li .ingredient.on a {
    background: #1a79c0;
  }
}

@media screen and (max-width: 520px) {
  .info-table ul li {
    flex-direction: column;
  }

  .info-table ul li .info-product {
    border-right: 0;
    flex-direction: column;
  }

  .info-table ul li .info-product .product-img {
    border-right: none;
    flex-basis: unset;
  }

  .info-table ul li .efficacy {
    border-top: solid 1px #ddd;
    padding-bottom: 30px;
  }
}

/* //제품정보 및 사용안내 */


.highcharts-figure,
.highcharts-data-table table {
  /* max-width: 800px; */
  margin: 1em auto;
}

.highcharts-data-table table {
  font-family: Verdana, sans-serif;
  border-collapse: collapse;
  border: 1px solid #ebebeb;
  margin: 10px auto;
  text-align: center;
  width: 100%;
  max-width: 500px;
}

.highcharts-data-table caption {
  padding: 1em 0;
  font-size: 1.2em;
  color: #555;
}

.highcharts-data-table th {
  font-weight: 600;
  padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
  padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
  background: #f8f8f8;
}

.highcharts-data-table tr:hover {
  background: #f1f7ff;
}


/*# sourceMappingURL=maps/common.css.map */

.container .gallery-lists {
  overflow: hidden;
  margin-top: 40px;
}

.container .gallery-lists .sect {
  padding: 0 10px;
}

@media screen and (max-width: 1024px) {
  .container .gallery-lists {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .container .gallery-lists {
    margin-top: 30px;
  }
}

#comments li a::before,
#comments li a::after {
  content: ' ';
  position: absolute;
  top: -13px; /*8px;*/
  left: 50%;
  width: 5px;
  height: 24px;
  margin-top: -12px;
  margin-left: -1px;
  background: #333;
  border-radius: 5px;
}

@media screen and (max-width: 1024px) {
  .com_info {
    display: block !important;
  }
}

@media screen and (max-width: 1024px) {
  .goods_image {
    display: none;
  }

  .goods_col3 {
    width: auto !important;
  }
}

.btn-cart {
  position: relative;
}

.cart_badge {
  width: 20px;
  height: 20px;
  padding-top: 4px;
  position: absolute;
  top: -7px;
  right: -2px;
  border-radius: 10px;
  background-color: #ff6600;
  font-size: 12px;
  font-weight: normal;
  color: #ffffff;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .cart_badge {
    top: 0px;
    right: 2px;
  }
}

.boy-box{
  position: relative;
  text-align: center;
  font-size:20px;
  line-height: 1.5;
}