@charset "UTF-8";
/* 변수 및 공통 SCSS 정의 */
/* color */
/* font-weight */
.mt0 {
  margin-top: 0rem !important;
}

.mb0 {
  margin-bottom: 0rem !important;
}

.ml0 {
  margin-left: 0rem !important;
}

.mr0 {
  margin-right: 0rem !important;
}

.mt4 {
  margin-top: 0.4rem !important;
}

.mb4 {
  margin-bottom: 0.4rem !important;
}

.ml4 {
  margin-left: 0.4rem !important;
}

.mr4 {
  margin-right: 0.4rem !important;
}

.mt8 {
  margin-top: 0.8rem !important;
}

.mb8 {
  margin-bottom: 0.8rem !important;
}

.ml8 {
  margin-left: 0.8rem !important;
}

.mr8 {
  margin-right: 0.8rem !important;
}

.mt12 {
  margin-top: 1.2rem !important;
}

.mb12 {
  margin-bottom: 1.2rem !important;
}

.ml12 {
  margin-left: 1.2rem !important;
}

.mr12 {
  margin-right: 1.2rem !important;
}

.mt16 {
  margin-top: 1.6rem !important;
}

.mb16 {
  margin-bottom: 1.6rem !important;
}

.ml16 {
  margin-left: 1.6rem !important;
}

.mr16 {
  margin-right: 1.6rem !important;
}

.mt20 {
  margin-top: 2rem !important;
}

.mb20 {
  margin-bottom: 2rem !important;
}

.ml20 {
  margin-left: 2rem !important;
}

.mr20 {
  margin-right: 2rem !important;
}

.mt24 {
  margin-top: 2.4rem !important;
}

.mb24 {
  margin-bottom: 2.4rem !important;
}

.ml24 {
  margin-left: 2.4rem !important;
}

.mr24 {
  margin-right: 2.4rem !important;
}

.mt28 {
  margin-top: 2.8rem !important;
}

.mb28 {
  margin-bottom: 2.8rem !important;
}

.ml28 {
  margin-left: 2.8rem !important;
}

.mr28 {
  margin-right: 2.8rem !important;
}

.mt32 {
  margin-top: 3.2rem !important;
}

.mb32 {
  margin-bottom: 3.2rem !important;
}

.ml32 {
  margin-left: 3.2rem !important;
}

.mr32 {
  margin-right: 3.2rem !important;
}

.underline {
  text-decoration: underline;
}

.fade-enter-active,
.fade-leave-active {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.toast-enter-active,
.toast-leave-active {
  transition: transform 0.5s, opacity 0.5s;
}

.toast-enter,
.toast-leave-to {
  transform: translateY(4rem);
  opacity: 0;
}

.toast-enter-to,
.toast-leave {
  transform: translateY(0);
  opacity: 1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.rotating_element {
  animation: rotate 2s linear infinite;
}

@keyframes upDown {
  0% {
    top: -3px;
  }
  50% {
    top: 3px;
  }
  100% {
    top: -3px;
  }
}
.moveUpDown {
  position: relative;
  animation: upDown 1s infinite;
}

.animate__animated:hover {
  animation-duration: 2s;
  animation-fill-mode: none;
}

.hover-animate-heartBeat:hover {
  animation-name: heartBeat;
}

.animate__animated:hover {
  animation-duration: 2s;
  animation-fill-mode: none;
}

.hover-animate-shakeX:hover {
  animation-name: shakeX;
}

.hover_scale {
  transition: all 0.5s;
  transform: scale(100%);
}
.hover_scale.huge:hover {
  transform: scale(130%);
}
.hover_scale.small:hover {
  transform: scale(110%);
}

/* common layout properties */
* {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

input {
  border: none;
  background: transparent;
}

th, td {
  font-weight: unset;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

li {
  list-style-type: none;
}

ul {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

pre {
  margin: 0;
}

canvas {
  box-sizing: border-box;
}

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

/* font-family */
:is(html, body, pre, button, input, textarea) {
  font-family: "Spoqa Han Sans Neo", "sans-serif";
}

input[type=text i] {
  padding: 0;
}

input:focus {
  outline: none;
}

body,
html {
  font-size: 62.5% !important;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  margin: 0;
  position: relative;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera*/
}

.flex {
  display: flex;
}

.non_cursor {
  caret-color: transparent;
}

/* chrome 아이디, 패스워드 저장시에 input background 변경 막기 */
/* 배경색과 동일하게 맞추기 */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-text-fill-color: #EAEBED;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active {
  -webkit-text-fill-color: #EAEBED;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}

input:disabled {
  background: transparent;
  color: inherit;
  /* safari & ios :disabled font-color change */
  -webkit-text-fill-color: inherit;
  -webkit-opacity: 1;
}

input:focus {
  /* prevent the input like button */
  -webkit-transform: translateZ(0px);
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-perspective: 1000;
}

/* chrome 2023.06.28 업데이트 이후 input focus outline 없애기 */
input:focus, select:focus, option:focus, textarea:focus, button:focus {
  outline: none;
}

/* form 태그 reset */
form {
  margin-block-end: 0;
}

/* input focus시에 placeholder 없애기 */
/* Chrome, Firefox, Opera, Safari 10.1+ */
input:focus::placeholder {
  opacity: 0;
}

/* Edge */
input:focus::-ms-input-placeholder {
  opacity: 0;
}

iframe {
  overflow-clip-margin: content-box !important;
  overflow: clip !important;
  border-width: 0;
  border-style: inset;
  border-color: initial;
  border-image: initial;
}

summary::-webkit-details-marker {
  display: none;
}

/* For other browsers */
summary::marker {
  display: none;
}

img {
  /*.chart_img {
      background: center / contain no-repeat url($img-path + 'image_repayment_chart.jpg');
      width: 100%;
      height: 0;
      padding-top: calc(112 / 312 * 100%);
  }*/
}

.icon.favorit {
  background: center/contain no-repeat url("../image/renewal/icons/icon_20_favorit.svg");
  min-width: 2rem;
  min-height: 2rem;
}
.icon.admin {
  background: center/contain no-repeat url("../image/renewal/icons/icon_20_admin.svg");
  min-width: 2rem;
  min-height: 2rem;
}
.icon.teacher {
  background: center/contain no-repeat url("../image/renewal/icons/icon_20_teacher.svg");
  min-width: 2rem;
  min-height: 2rem;
}
.icon.add_circle {
  background: center/contain no-repeat url("../image/renewal/icons/icon_20_add_circle.svg");
  min-width: 2rem;
  min-height: 2rem;
}
.icon.remove_circle {
  background: center/contain no-repeat url("../image/renewal/icons/icon_20_remove_circle.svg");
  min-width: 2rem;
  min-height: 2rem;
}
.icon.level_star {
  background: center/contain no-repeat url("../image/renewal/icons/icon_24_level_star.svg");
  min-width: 2.4rem;
  min-height: 2.4rem;
}
.icon.problem_arrow {
  background: center/contain no-repeat url("../image/renewal/icons/icon_24_problem_arrow.svg");
  min-width: 2.4rem;
  min-height: 2.4rem;
}
.icon.pause {
  background: center/contain no-repeat url("../image/renewal/icons/icon_48_pause.svg");
  min-width: 4.8rem;
  min-height: 4.8rem;
}
.icon.play_arrow {
  background: center/contain no-repeat url("../image/renewal/icons/icon_48_play_arrow.svg");
  min-width: 4.8rem;
  min-height: 4.8rem;
}
.icon.volume_on {
  background: center/contain no-repeat url("../image/renewal/icons/icon_48_volume_on.svg");
  min-width: 4.8rem;
  min-height: 4.8rem;
}
.icon.volume_off {
  background: center/contain no-repeat url("../image/renewal/icons/icon_48_volume_off.svg");
  min-width: 4.8rem;
  min-height: 4.8rem;
}
.icon.study {
  background: center/contain no-repeat url("../image/renewal/icons/icon_80_study.svg");
  min-width: 8rem;
  min-height: 8rem;
}
.icon.guide {
  background: center/contain no-repeat url("../image/renewal/icons/icon_80_guide.svg");
  min-width: 8rem;
  min-height: 8rem;
}
.icon.qna {
  background: center/contain no-repeat url("../image/renewal/icons/icon_80_qna.svg");
  min-width: 8rem;
  min-height: 8rem;
}
.icon.mobile {
  background: center/contain no-repeat url("../image/renewal/icons/icon_80_mobile.svg");
  min-width: 8rem;
  min-height: 8rem;
}

html body section#bodyWrap #quickMenu {
  left: 52%;
}
html body section#bodyWrap #quickMenu .banner {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.6);
}
html body section#bodyWrap #quickMenu .banner dt {
  background: #1C1D1F;
  display: flex;
  align-items: center;
  padding: 1.6rem;
  height: unset;
}
html body section#bodyWrap #quickMenu .banner dt .clock {
  position: relative;
  opacity: 0.6;
  width: 4rem;
  height: 4rem;
  margin-right: 0.8rem;
}
html body section#bodyWrap #quickMenu .banner dt .clock .clock_frame {
  width: 4rem;
  position: absolute;
}
html body section#bodyWrap #quickMenu .banner dt .clock .clock_hands {
  width: 4rem;
  position: absolute;
}
html body section#bodyWrap #quickMenu .banner dt .test_d_day span {
  font: 1.3rem/1.6rem "Spoqa Han Sans Neo", "sans-serif";
  background: unset;
  width: 100%;
  color: #9FA4A8;
}
html body section#bodyWrap #quickMenu .banner dt .test_d_day strong {
  font: 2.5rem/3.1rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 700;
}
html body section#bodyWrap #quickMenu .banner dd {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #27282C;
  transition: all 0.4s;
}
html body section#bodyWrap #quickMenu .banner dd:hover {
  background: #F5F5F5;
}
html body section#bodyWrap #quickMenu .banner dd:hover .inquire_section {
  color: #9FA4A8;
}
html body section#bodyWrap #quickMenu .banner dd:hover .inquire_section span {
  color: #73787E;
}
html body section#bodyWrap #quickMenu .banner dd a {
  padding: 0;
}
html body section#bodyWrap #quickMenu .banner dd a img {
  height: 2.4rem;
}
html body section#bodyWrap #quickMenu .banner dd a .inquire_section {
  font: 1.5rem/1.9rem "Spoqa Han Sans Neo", "sans-serif";
  color: #73787E;
}
html body section#bodyWrap #quickMenu .banner dd a .inquire_section span {
  font-weight: 700;
  color: #CACDD2;
}
@media screen and (max-width: 1554px) {
  html body section#bodyWrap #quickMenu {
    position: absolute;
    left: auto;
    right: -152px;
    top: 0;
    height: 0;
    margin-left: 0;
  }
  html body section#bodyWrap #quickMenu.on {
    right: 0;
  }
  html body section#bodyWrap #quickMenu.on .open .quickmenu_arrow {
    transform: rotate(180deg);
  }
  html body section#bodyWrap #quickMenu .open {
    width: 4.8rem;
    height: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F5F5F5;
    left: -4.8rem;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.6);
  }
  html body section#bodyWrap #quickMenu .open .quickmenu_arrow {
    transform: rotate(0);
    transition: all 0.4s;
  }
}

html body section#bodyWrap .sub_menu {
  min-width: 22rem;
  background-color: #1D1D1D !important;
  padding-top: 6.4rem;
  margin-right: 2.4rem;
  margin-bottom: 2.4rem;
  height: fit-content !important;
}
html body section#bodyWrap .sub_menu dl {
  background-color: #1D1D1D;
}
html body section#bodyWrap .sub_menu dl dt {
  position: relative;
  color: white !important;
  z-index: 1;
  font: 2.9rem/3.6rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 700;
  padding: 0;
  margin: 0 0 4.4rem 1.6rem;
}
html body section#bodyWrap .sub_menu dl dt:before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10rem;
  height: 10rem;
  background-color: #504BFF;
  border-radius: 50%;
  z-index: -1;
}
html body section#bodyWrap .sub_menu dl dd {
  padding-top: 0;
}
html body section#bodyWrap .sub_menu dl dd > a {
  font: 1.7rem/2.1rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 700;
  transition: all 0.4s;
  height: fit-content;
  padding-left: 0;
  padding: 1.6rem 0 1.6rem 1.6rem;
  position: relative;
  color: #9FA4A8;
}
html body section#bodyWrap .sub_menu dl dd > a:hover {
  color: white;
}
html body section#bodyWrap .sub_menu dl dd > a:hover:before {
  content: "";
  position: absolute;
  width: 0.4rem;
  height: 4rem;
  background-color: #504BFF;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5rem;
}
html body section#bodyWrap .sub_menu dl dd.on > a:before {
  content: "";
  position: absolute;
  width: 0.4rem;
  height: 4rem;
  background-color: #504BFF;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5rem;
  color: white;
}
html body section#bodyWrap .sub_menu dl dd .low_rank_menu:has(li) {
  border-top: 1px solid #474C52;
  border-bottom: 1px solid #474C52;
  margin-left: 1.6rem;
  padding: 1.6rem 0;
}
html body section#bodyWrap .sub_menu dl dd .low_rank_menu:has(li) li a {
  padding: 1.6rem 0 1.6rem 2.4rem;
  height: fit-content;
  font: 1.5rem/1.9rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 500;
  transition: all 0.4s;
  color: #73787E;
}
html body section#bodyWrap .sub_menu dl dd .low_rank_menu:has(li) li:hover {
  background: rgba(80, 75, 255, 0.5);
  border-radius: 5rem;
}
html body section#bodyWrap .sub_menu dl dd .low_rank_menu:has(li) li:hover a {
  color: #F7F8FA;
}
html body section#bodyWrap .sub_menu dl dd .low_rank_menu:has(li) li.on {
  position: relative;
}
html body section#bodyWrap .sub_menu dl dd .low_rank_menu:has(li) li.on a {
  color: white;
}

html body section#bodyWrap .sub_title {
  padding: 0 0 2rem 0;
}

html body section#bodyWrap .content #location_nav {
  display: flex;
  align-items: center;
}
html body section#bodyWrap .content #location_nav .icon {
  background-color: #504BFF;
}
html body section#bodyWrap .content #location_nav .icon.arw {
  margin: 0;
  background-color: unset;
}
html body section#bodyWrap .content #location_nav a span {
  color: #9FA4A8;
}
html body section#bodyWrap .content h2.sub_title {
  color: #CACDD2;
  font-weight: 500;
  font: 2.2rem/2.8rem "Spoqa Han Sans Neo", "sans-serif";
}

html body section#bodyWrap {
  min-height: calc(100vh - 373px);
  /* 쿠폰 적용 완료 페이지 */
  /* 쿠폰 적용 완료 페이지 끝 */
}
html body section#bodyWrap .content {
  /* ========== 스터디 포인트 시스템 ========== */
  /* ========== 포인트 전환 모달 ========== */
}
html body section#bodyWrap .content .chapter_list .title_wrap {
  display: flex;
}
html body section#bodyWrap .content .chapter_list .title_wrap .title_level {
  display: flex;
  align-items: center;
  margin-left: 1.6rem;
}
html body section#bodyWrap .content .inset_wrap .progress_wrap {
  padding-top: 0;
}
html body section#bodyWrap .content .inset_wrap .progress_wrap dl {
  height: fit-content;
  margin-bottom: 0;
}
html body section#bodyWrap .content .inset_wrap .progress_wrap dl dd {
  padding: 0;
}
html body section#bodyWrap .content .inset_wrap .progress_wrap dl dd .bar {
  border-radius: 5rem;
}
html body section#bodyWrap .content .inset_wrap .progress_wrap dl dd .bar .active {
  background: rgb(176, 64, 255);
  background: linear-gradient(90deg, rgb(176, 64, 255) 0%, rgb(176, 64, 255) 90%, rgb(248, 192, 255) 100%);
}
html body section#bodyWrap .content .inset_wrap .progress_wrap dl dd .bar .bg {
  background: #141414;
}
html body section#bodyWrap .content .inset_wrap .progress_wrap dl dd:first-of-type {
  font: 2.8rem/3.5rem "Spoqa Han Sans Neo", "sans-serif";
  color: #73787E;
  font-weight: 300;
  margin-bottom: 1.6rem;
}
html body section#bodyWrap .content .inset_wrap .progress_wrap dl dd:first-of-type .user_name {
  color: #F7F8FA;
  font-weight: 700;
}
html body section#bodyWrap .content .inset_wrap .progress_wrap dl dd:first-of-type .percent {
  font: 3.6rem/4.5rem "Spoqa Han Sans Neo", "sans-serif";
  color: #F7F8FA;
  font-weight: 700;
}
html body section#bodyWrap .content .inset_wrap .progress_wrap dl dd .info {
  display: flex;
  justify-content: space-between;
}
html body section#bodyWrap .content .inset_wrap .progress_wrap dl dd .info .comment div:first-of-type {
  margin-bottom: 0.4rem;
}
html body section#bodyWrap .content .inset_wrap .progress_wrap dl dd .info button.toggle_btn {
  margin-top: auto;
  position: relative;
  top: unset;
  right: unset;
  background: center/contain no-repeat url("../image/renewal/icons/icon_40_accordion_arrow.svg");
  min-width: 4rem;
  min-height: 4rem;
  transform: rotate(0);
  transition: all 0.3s;
}
html body section#bodyWrap .content .inset_wrap .progress_wrap dl dd .info button.toggle_btn.on {
  transform: rotate(180deg);
}
html body section#bodyWrap .content .inset_wrap .progress_wrap .inner {
  margin-top: 4.8rem;
  background: #1D1D1D;
  border-top: unset;
}
html body section#bodyWrap .content .inset_wrap .progress_wrap .inner ul.matter_bundle li.matter_list {
  background: #27282C;
  margin-bottom: 2.4rem;
  border: 1px solid #EAEBED;
  border-radius: 0.8rem;
  padding: 1.6rem 3.2rem;
}
html body section#bodyWrap .content .inset_wrap .progress_wrap .inner ul.matter_bundle li.matter_list .info {
  padding: 0;
}
html body section#bodyWrap .content .inset_wrap .progress_wrap .inner ul.matter_bundle li.matter_list .info .type {
  display: flex;
  align-items: center;
}
html body section#bodyWrap .content .inset_wrap .progress_wrap .inner ul.matter_bundle li.matter_list .info .type span {
  height: fit-content;
}
html body section#bodyWrap .content .inset_wrap .progress_wrap .inner ul.matter_bundle li.matter_list .info .type span:first-of-type {
  font: 1.5rem/1.9rem "Spoqa Han Sans Neo", "sans-serif";
  color: #CACDD2;
}
html body section#bodyWrap .content .inset_wrap .progress_wrap .inner ul.matter_bundle li.matter_list .info .type .b666 {
  font: 1.6rem/2rem "Spoqa Han Sans Neo", "sans-serif";
  padding: 0 2rem;
  display: flex;
  align-items: center;
}
html body section#bodyWrap .content .inset_wrap .progress_wrap .inner ul.matter_bundle li.matter_list .bar {
  padding-top: 2.4rem;
}
html body section#bodyWrap .content .inset_wrap .progress_wrap .inner ul.matter_bundle li.matter_list .bar ul li {
  border-radius: 5rem;
}
html body section#bodyWrap .content .inset_wrap .progress_wrap .inner ul.matter_bundle li.matter_list .bar ul li.pro_bar {
  border-bottom: unset;
}
html body section#bodyWrap .content .inset_wrap .progress_wrap .inner ul.matter_bundle li.matter_list .bar ul li.pro_bar div {
  border-radius: 5rem;
}
html body section#bodyWrap .content .inset_wrap .progress_wrap .inner ul.matter_bundle li.matter_list .bar ul li.ans_bar {
  margin-top: 0.8rem;
}
html body section#bodyWrap .content .inset_wrap .progress_wrap .inner ul.matter_bundle li.matter_list .bar ul li.ans_bar div {
  border-radius: 5rem;
}
html body section#bodyWrap .content .inset_wrap .tab_nav {
  padding-top: 4.8rem;
}
html body section#bodyWrap .content .inset_wrap .tab_nav .sort button {
  font: 1.6rem/2rem "Spoqa Han Sans Neo", "sans-serif";
  transition: all 0.4s;
}
html body section#bodyWrap .content .inset_wrap .tab_nav .sort button.on {
  color: #F5F5F5;
  font-weight: 700;
}
html body section#bodyWrap .content .inset_wrap .tab_nav .sort span {
  font: 1.5rem/1.9rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .inset_wrap .tab_nav .clear li {
  margin-left: 0;
}
html body section#bodyWrap .content .inset_wrap .tab_nav .clear li a {
  background: #474C52;
  border-radius: 0.8rem 0.8rem 0 0;
  transition: all 0.4s;
}
html body section#bodyWrap .content .inset_wrap .tab_nav .clear li.on a {
  background: #504BFF;
  color: #F7F8FA;
  font-weight: 700;
}
html body section#bodyWrap .content .inset_wrap .mystudy_list {
  padding-top: 3.2rem;
}
html body section#bodyWrap .content .inset_wrap .mystudy_list ul li.item {
  margin-bottom: 6.4rem;
}
html body section#bodyWrap .content .inset_wrap .mystudy_list ul li.item h4 {
  font: 1.6rem/2rem "Spoqa Han Sans Neo", "sans-serif";
  border-radius: 5rem;
  margin-bottom: 1.6rem;
  background: #73787E;
  font-weight: 400;
}
html body section#bodyWrap .content .inset_wrap .mystudy_list ul li.item .table {
  border-spacing: 0;
  margin: 0;
  width: 100%;
}
html body section#bodyWrap .content .inset_wrap .mystudy_list ul li.item .table ul {
  display: flex;
}
html body section#bodyWrap .content .inset_wrap .mystudy_list ul li.item .table ul:has(li) {
  margin-bottom: 2.4rem;
}
html body section#bodyWrap .content .inset_wrap .mystudy_list ul li.item .table ul:has(li):last-child {
  margin-bottom: 0;
}
html body section#bodyWrap .content .inset_wrap .mystudy_list ul li.item .table ul li {
  margin-right: 2.4rem;
  width: 100%;
  max-width: 100%;
  border-radius: 0.8rem;
}
html body section#bodyWrap .content .inset_wrap .mystudy_list ul li.item .table ul li:last-of-type {
  margin-right: 0;
}
html body section#bodyWrap .content .inset_wrap .mystudy_list ul li.item .table ul li a.title {
  border-radius: 0.8rem;
  color: #27282C;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.6rem;
  background: unset;
}
html body section#bodyWrap .content .inset_wrap .mystudy_list ul li.item .table ul li a.title h5 {
  width: 24rem;
}
html body section#bodyWrap .content .inset_wrap .mystudy_list ul li.item .table ul li a.title h5 small {
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
  color: #504BFF;
  margin-bottom: 0.4rem;
  font-weight: 700;
}
html body section#bodyWrap .content .inset_wrap .mystudy_list ul li.item .table ul li a.title .level_icon {
  position: relative;
  right: unset;
  top: unset;
  margin-top: unset;
}
html body section#bodyWrap .content .inset_wrap .mystudy_list ul li.item .table ul li a.title .level_bundle {
  display: flex;
  width: fit-content;
}
html body section#bodyWrap .content .inset_wrap .mystudy_list ul li.item .table ul li a.title .level_bundle .disabled {
  display: flex;
  padding-right: 1.6rem;
}
html body section#bodyWrap .content .inset_wrap .mystudy_list ul li.item .table ul li a.title .level_bundle .icon {
  position: relative;
  top: unset;
  right: unset;
  margin-top: unset;
}
html body section#bodyWrap .content .inset_wrap .mystudy_list ul li.item .table ul li .sub {
  border-top: 1px solid #9FA4A8;
}
html body section#bodyWrap .content .inset_wrap .mystudy_list ul li.item .table ul li .sub .font_v {
  background: #B9B7FF;
}
html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li {
  margin-bottom: 0.8rem;
}
html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li.middle a, html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li.high a {
  color: white;
}
html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li.middle .cnt, html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li.high .cnt {
  background: white;
}
html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li.middle .cnt dl dt, html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li.high .cnt dl dt {
  width: fit-content;
}
html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li.middle .cnt dl dt .font_v, html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li.high .cnt dl dt .font_v {
  padding: 0 0.8rem;
  width: fit-content;
  height: 2.4rem;
  border-radius: 0.4rem;
  font: 1.3rem/1.6rem "Spoqa Han Sans Neo", "sans-serif";
  display: flex;
  align-items: center;
  background: #73787E;
}
html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li.middle .cnt dl dd, html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li.high .cnt dl dd {
  padding-left: 6.4rem;
}
html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li.middle .cnt dl dd .btn_ui, html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li.high .cnt dl dd .btn_ui {
  background: #504BFF;
  border-radius: 5rem;
  font: 1.3rem/1.6rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li.middle {
  background: #00999a;
}
html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li.high {
  background: #1240ab;
}
html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li.disabled {
  opacity: 0.4;
  background: #73787E;
}
html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li .togglebtn {
  background-position: 91rem 13px;
}
html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li .togglebtn.on {
  background-position: 91rem -63px;
}
html body section#bodyWrap .content .inset_wrap.mystudy_wrap .in_small ul .home_list a:hover {
  color: white;
}
html body section#bodyWrap .content .inset_wrap.test_list {
  color: white;
  background-color: #27282C;
  padding: 2rem;
  margin-top: 2rem;
}
html body section#bodyWrap .content .inset_wrap.test_list .list ul li {
  background-color: #1C1D1F;
  border: 1px solid #474C52;
}
html body section#bodyWrap .content .inset_wrap.test_list .list ul li .title {
  background: none;
  height: 5.4rem;
  display: flex;
  align-items: center;
}
html body section#bodyWrap .content .inset_wrap.test_list .list ul li .title .btn_ui {
  background: #504BFF;
  border-radius: 5rem;
  font: 1.3rem/1.6rem "Spoqa Han Sans Neo", "sans-serif";
  position: absolute;
  right: 2.8rem;
  height: 3.4rem;
}
html body section#bodyWrap .content .inset_wrap .paging > ul > li.active > a {
  border-color: transparent;
  background-color: transparent;
}
html body section#bodyWrap .content .inset_wrap .paging > ul > li > a {
  border-color: transparent;
  background-color: transparent;
}
html body section#bodyWrap .content .inset_wrap .paging > ul > li > a.point_p_end, html body section#bodyWrap .content .inset_wrap .paging > ul > li > a.point_p_first {
  background: url(../image/common/page_arrow_end.png) no-repeat 48% 9px;
}
html body section#bodyWrap .content .inset_wrap .paging > ul > li > a.point_p_next, html body section#bodyWrap .content .inset_wrap .paging > ul > li > a.point_p_prev {
  background: url(../image/common/page_arrow.png) no-repeat 48% 9px;
}
html body section#bodyWrap .content .inset_wrap .paging > ul > li > a.point_p_end, html body section#bodyWrap .content .inset_wrap .paging > ul > li > a.point_p_next {
  background-position: 50% -28px;
}
html body section#bodyWrap .content .favor_list .list ul .togglebtn {
  background-color: #73787E;
}
html body section#bodyWrap .content .favor_list .list ul .togglebtn .title {
  color: white;
}
html body section#bodyWrap .content .favor_list .list ul .togglebtn button {
  background-color: #7E36FF;
}
html body section#bodyWrap .content .favor_list .list ul .cnt {
  background-color: #474C52;
  color: white;
}
html body section#bodyWrap .content .wrong_list h3 {
  padding: 0.8rem;
  border-bottom: 1px solid white;
  margin-bottom: 1.4rem;
  color: white;
}
html body section#bodyWrap .content .wrong_list .list {
  width: 100%;
  background-color: #474C52;
  border-radius: 0.8rem;
  overflow: hidden;
}
html body section#bodyWrap .content .wrong_list .list .accordion {
  background-color: #474C52;
  color: white;
  padding: 0.8rem;
  margin: 0.4rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: bold;
  width: 100%;
  border: none;
  text-align: left;
}
html body section#bodyWrap .content .wrong_list .list .accordion:focus {
  outline: none;
}
html body section#bodyWrap .content .wrong_list .list .accordion::after {
  content: "▼";
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
  transition: transform 0.3s ease;
}
html body section#bodyWrap .content .wrong_list .list .accordion.active::after {
  transform: rotate(-180deg);
}
html body section#bodyWrap .content .wrong_list .list .panel {
  background-color: #73787E;
  display: none;
  overflow: hidden;
  padding: 0;
}
html body section#bodyWrap .content .wrong_list .list .panel ul {
  padding: 0;
  margin: 0;
}
html body section#bodyWrap .content .wrong_list .list .panel ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  float: none;
}
html body section#bodyWrap .content .wrong_list .list .panel ul li a {
  text-decoration: none;
  width: 100%;
  display: flex;
  background-color: white;
}
html body section#bodyWrap .content .wrong_list .list .panel ul li a .location {
  display: flex;
  background: none;
  padding-top: 0;
  align-items: center;
}
html body section#bodyWrap .content .wrong_list .list .panel ul li a .location .qst_button {
  color: white;
  padding: 0 0.8rem;
  width: fit-content;
  height: 2.4rem;
  border-radius: 0.4rem;
  font: 1.3rem/1.6rem "Spoqa Han Sans Neo", "sans-serif";
  display: flex;
  align-items: center;
  background: #73787E;
  margin-right: 0.8rem;
}
html body section#bodyWrap .content .wrong_list .list .panel ul li a .location .arw {
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
  color: white;
  margin-right: 0.8rem;
}
html body section#bodyWrap .content .message_complete_wrap .btns {
  margin-top: 3rem;
}
html body section#bodyWrap .content .message_complete_wrap .btns .primary {
  background-color: #7E36FF;
}
html body section#bodyWrap .content .message_wrap {
  color: white;
}
html body section#bodyWrap .content .message_wrap .btm_wrap .t_l {
  left: 0;
  display: flex;
  gap: 1rem;
}
html body section#bodyWrap .content .message_wrap .btm_wrap .t_l .btn_ui {
  background-color: #474C52;
}
html body section#bodyWrap .content .message_wrap .btm_wrap .t_r .btn_ui {
  background-color: #7E36FF;
}
html body section#bodyWrap .content .message_wrap .blue_table thead {
  background-color: #7E36FF;
  color: white;
}
html body section#bodyWrap .content .message_wrap .blue_table tbody tr {
  background-color: #474C52;
  border-top: 1px solid black;
}
html body section#bodyWrap .content .message_wrap .blue_table tbody tr td .delete_btn {
  background-color: #73787E;
  padding: 0.4rem 1rem;
  border-radius: 0.4rem;
}
html body section#bodyWrap .content .message_wrap .write_wrap .send_form .btns .primary {
  background-color: #7E36FF;
}
html body section#bodyWrap .content .message_wrap .write_wrap .cnt_wrap .textarea,
html body section#bodyWrap .content .message_wrap .write_wrap .reply_wrap .textarea {
  background-color: #474C52 !important;
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .message_wrap .write_wrap .cnt_wrap textarea,
html body section#bodyWrap .content .message_wrap .write_wrap .reply_wrap textarea {
  background-color: #474C52 !important;
}
html body section#bodyWrap .content .message_wrap .write_wrap .btns {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}
html body section#bodyWrap .content .message_wrap .write_wrap .btns .primary {
  background-color: #7E36FF;
}
html body section#bodyWrap .content .message_wrap .reply_form .btns {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}
html body section#bodyWrap .content .message_wrap .reply_form .btns .primary {
  background-color: #7E36FF;
}
html body section#bodyWrap .content .message_wrap .select_ui select {
  color: white;
  background-color: #474C52;
}
html body section#bodyWrap .content .send_popup .layer_wrap .layer_title {
  background-color: #474C52;
}
html body section#bodyWrap .content .send_popup .layer_wrap .layer_title h3 {
  color: white;
}
html body section#bodyWrap .content .send_popup .layer_wrap .layer_content {
  background-color: #474C52;
}
html body section#bodyWrap .content .send_popup .layer_wrap .layer_footer {
  background-color: #474C52;
}
html body section#bodyWrap .content .send_popup .layer_wrap .layer_footer .f_r .green {
  background-color: #7E36FF;
}
html body section#bodyWrap .content .send_popup .layer_wrap .exit {
  background: #7E36FF url(../image/common/layer_exit2.png) no-repeat center;
}
html body section#bodyWrap .content .gallery_default_wrapper .list #galleryList li a {
  background-color: #474C52;
  color: white;
}
html body section#bodyWrap .content .gallery_default_wrapper .list #galleryList li a .title {
  background: none;
}
html body section#bodyWrap .content .gallery_default_wrapper .list #galleryList li a .thumb {
  background-color: #73787E;
}
html body section#bodyWrap .content .gallery_view_wrapper {
  color: white;
}
html body section#bodyWrap .content .question_detail {
  background-color: transparent;
  border: 0;
}
html body section#bodyWrap .content .question_detail .question_wrap .audio_wrap {
  background-color: #474C52;
}
html body section#bodyWrap .content .question_detail .question_wrap .audio_wrap .custom_audio_controls {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 98%;
}
html body section#bodyWrap .content .question_detail .question_wrap .audio_wrap .custom_audio_controls .play_pause {
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  margin: 0;
  color: white;
  cursor: pointer;
  font-size: 14px;
  outline: none;
}
html body section#bodyWrap .content .question_detail .question_wrap .audio_wrap .custom_audio_controls .play_pause:hover {
  background-color: #777;
}
html body section#bodyWrap .content .question_detail .question_wrap .audio_wrap .custom_audio_controls .progress_container {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
html body section#bodyWrap .content .question_detail .question_wrap .audio_wrap .custom_audio_controls .progress_container .current_time,
html body section#bodyWrap .content .question_detail .question_wrap .audio_wrap .custom_audio_controls .progress_container .duration {
  font-size: 12px;
  color: #ccc;
}
html body section#bodyWrap .content .question_detail .question_wrap .audio_wrap .custom_audio_controls .progress_container .progress_bar {
  position: relative;
  width: 100%;
  height: 5px;
  background-color: white;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}
html body section#bodyWrap .content .question_detail .question_wrap .audio_wrap .custom_audio_controls .progress_container .progress_bar .progress {
  width: 0;
  height: 100%;
  background-color: #27282C;
  transition: width 0.3s linear;
}
html body section#bodyWrap .content .question_detail .question_wrap .audio_wrap .custom_audio_controls .volume_controls {
  display: flex;
  align-items: center;
  position: relative;
}
html body section#bodyWrap .content .question_detail .question_wrap .audio_wrap .custom_audio_controls .volume_controls .mute {
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  color: #27282C;
  cursor: pointer;
  font-size: 14px;
  outline: none;
  z-index: 10;
}
html body section#bodyWrap .content .question_detail .question_wrap .audio_wrap .custom_audio_controls .volume_controls .mute:hover {
  background-color: #777;
}
html body section#bodyWrap .content .question_detail .question_wrap .audio_wrap .custom_audio_controls .volume_controls .volume_slider {
  width: 7rem;
  accent-color: white;
}
html body section#bodyWrap .content .question_detail .question_wrap .audio_wrap .custom_audio_controls .volume_controls:hover .volume_slider {
  display: block !important;
}
html body section#bodyWrap .content .question_detail .question_wrap .audio_wrap .audio audio {
  display: none !important;
}
html body section#bodyWrap .content .question_detail .question_wrap .audio_wrap .div_rate button {
  background: none !important;
}
html body section#bodyWrap .content .question_detail .question_wrap .audio_wrap .div_rate .rate_string {
  width: 6rem;
}
html body section#bodyWrap .content .question_detail .question_wrap .top {
  color: white;
  background-color: #474C52;
  margin-bottom: 2rem;
}
html body section#bodyWrap .content .question_detail .script_wrap .top {
  color: white;
  background-color: #474C52;
}
html body section#bodyWrap .content .test_question_detail .question_detail audio {
  display: none !important;
}
html body section#bodyWrap .content .test_question_detail .question_detail .custom_audio_controls {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding-right: 1rem;
  background-color: #474C52;
}
html body section#bodyWrap .content .test_question_detail .question_detail .custom_audio_controls .play_pause {
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  margin: 0;
  color: white;
  cursor: pointer;
  font-size: 14px;
  outline: none;
}
html body section#bodyWrap .content .test_question_detail .question_detail .custom_audio_controls .play_pause:hover {
  background-color: #777;
}
html body section#bodyWrap .content .test_question_detail .question_detail .custom_audio_controls .progress_container {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
html body section#bodyWrap .content .test_question_detail .question_detail .custom_audio_controls .progress_container .current_time,
html body section#bodyWrap .content .test_question_detail .question_detail .custom_audio_controls .progress_container .duration {
  font-size: 12px;
  color: #ccc;
}
html body section#bodyWrap .content .test_question_detail .question_detail .custom_audio_controls .progress_container .progress_bar {
  position: relative;
  width: 100%;
  height: 5px;
  background-color: white;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}
html body section#bodyWrap .content .test_question_detail .question_detail .custom_audio_controls .progress_container .progress_bar .progress {
  width: 0;
  height: 100%;
  background-color: #27282C;
  transition: width 0.3s linear;
}
html body section#bodyWrap .content .test_question_detail .question_detail .custom_audio_controls .volume_controls {
  display: flex;
  align-items: center;
  position: relative;
}
html body section#bodyWrap .content .test_question_detail .question_detail .custom_audio_controls .volume_controls .mute {
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  color: #27282C;
  cursor: pointer;
  font-size: 14px;
  outline: none;
  z-index: 10;
}
html body section#bodyWrap .content .test_question_detail .question_detail .custom_audio_controls .volume_controls .mute:hover {
  background-color: #777;
}
html body section#bodyWrap .content .test_question_detail .question_detail .custom_audio_controls .volume_controls .volume_slider {
  width: 7rem;
  accent-color: white;
}
html body section#bodyWrap .content .test_question_detail .question_detail .custom_audio_controls .volume_controls:hover .volume_slider {
  display: block !important;
}
html body section#bodyWrap .content .test_question_detail .question_detail .top {
  margin-bottom: 0;
}
html body section#bodyWrap .content .test_question_detail .question_detail .btn_ui {
  background-color: #504BFF;
}
html body section#bodyWrap .content .complete_view .list {
  color: white;
}
html body section#bodyWrap .content .complete_view .list ul li .title {
  background-color: #27282C;
}
html body section#bodyWrap .content .complete_view .list ul li .cnt {
  background-color: #474C52;
}
html body section#bodyWrap .content .testresult_list .list ul li {
  margin-bottom: 0.8rem;
  position: relative;
  border: 1px solid #73787E;
}
html body section#bodyWrap .content .testresult_list .list ul li h5 {
  color: white;
  font: 2rem/2.5rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 700;
}
html body section#bodyWrap .content .testresult_list .list ul li a {
  color: white;
}
html body section#bodyWrap .content .testresult_list .list ul li .days dt {
  color: white;
  background-color: #474C52;
  padding: 0rem 1rem;
  height: 2rem;
  line-height: 2rem;
  margin-top: 1rem;
  border-radius: 1rem;
}
html body section#bodyWrap .content .testresult_list .list ul li .days dd {
  background-color: transparent;
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 700;
  line-height: 3.4rem;
  padding: 0rem 0.4rem;
}
html body section#bodyWrap .content .testresult_list .list ul li .cnt {
  background: #27282C;
  border-top: 1px solid #73787E;
}
html body section#bodyWrap .content .testresult_list .list ul li .cnt dl {
  border-top: 1px solid #73787E;
}
html body section#bodyWrap .content .testresult_list .list ul li .cnt dl dt {
  width: fit-content;
}
html body section#bodyWrap .content .testresult_list .list ul li .cnt dl dt .font_v {
  padding: 0 0.8rem;
  width: fit-content;
  height: 2.4rem;
  border-radius: 0.4rem;
  font: 1.3rem/1.6rem "Spoqa Han Sans Neo", "sans-serif";
  display: flex;
  align-items: center;
  background: #7E36FF;
}
html body section#bodyWrap .content .testresult_list .list ul li .cnt dl dd {
  padding-left: 4.4rem;
  color: white;
}
html body section#bodyWrap .content .testresult_list .list ul li .cnt dl dd .btn_ui {
  background: #474C52;
  border: 1px solid #73787E;
  border-radius: 1rem;
  font: 1.3rem/1.6rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .testresult_list .list ul li .togglebtn {
  background: #27282C;
}
html body section#bodyWrap .content .testresult_list .list ul li .questions_btn {
  position: absolute;
  right: 2rem;
  top: 7.4rem;
  padding: 1rem;
  background-color: #7E36FF;
  border-radius: 1rem;
}
html body section#bodyWrap .content .testresult_list .list .sub {
  background-color: #27282C;
  height: 6rem;
  border-top: 1px solid #73787E;
  display: flex;
  align-items: center;
  color: white;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .samtest_result .exam_list .list ul li {
  margin-bottom: 0.8rem;
  position: relative;
  border: 1px solid #73787E;
}
html body section#bodyWrap .content .samtest_result .exam_list .list ul li h5 {
  color: white;
  font: 2rem/2.5rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 700;
}
html body section#bodyWrap .content .samtest_result .exam_list .list ul li a {
  color: white;
}
html body section#bodyWrap .content .samtest_result .exam_list .list ul li .days dt {
  color: white;
  background-color: #474C52;
  padding: 0rem 1rem;
  height: 2rem;
  line-height: 2rem;
  margin-top: 1rem;
  border-radius: 1rem;
}
html body section#bodyWrap .content .samtest_result .exam_list .list ul li .days dd {
  background-color: transparent;
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 700;
  line-height: 3.4rem;
  padding: 0rem 0.4rem;
}
html body section#bodyWrap .content .samtest_result .exam_list .list ul li .cnt {
  background: #27282C;
  border-top: 1px solid #73787E;
}
html body section#bodyWrap .content .samtest_result .exam_list .list ul li .cnt dl {
  border-top: 1px solid #73787E;
}
html body section#bodyWrap .content .samtest_result .exam_list .list ul li .cnt dl dt {
  width: fit-content;
}
html body section#bodyWrap .content .samtest_result .exam_list .list ul li .cnt dl dt .font_v {
  padding: 0 0.8rem;
  width: fit-content;
  height: 2.4rem;
  border-radius: 0.4rem;
  font: 1.3rem/1.6rem "Spoqa Han Sans Neo", "sans-serif";
  display: flex;
  align-items: center;
  background: #7E36FF;
}
html body section#bodyWrap .content .samtest_result .exam_list .list ul li .cnt dl dd {
  padding-left: 4.4rem;
  color: white;
}
html body section#bodyWrap .content .samtest_result .exam_list .list ul li .cnt dl dd .btn_ui {
  background: #474C52;
  border: 1px solid #73787E;
  border-radius: 1rem;
  font: 1.3rem/1.6rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .samtest_result .exam_list .list ul li .togglebtn {
  background: #27282C;
}
html body section#bodyWrap .content .samtest_result .exam_list .list ul li .questions_btn {
  position: absolute;
  right: 2rem;
  top: 7.4rem;
  padding: 1rem;
  background-color: #7E36FF;
  border-radius: 1rem;
}
html body section#bodyWrap .content .samtest_result .exam_list .list .sub {
  background-color: #27282C;
  height: 6rem;
  border-top: 1px solid #73787E;
  display: flex;
  align-items: center;
  color: white;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .samtest_result .exam_list .list .sub ul li {
  margin-bottom: 0;
  border: none;
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .samtest_div .two_area_list {
  color: white;
}
html body section#bodyWrap .content .samtest_div .two_area_list ul li {
  margin-bottom: 0.8rem;
}
html body section#bodyWrap .content .samtest_div .two_area_list ul li a {
  color: white;
}
html body section#bodyWrap .content .samtest_div .two_area_list ul li .cnt {
  background: white;
}
html body section#bodyWrap .content .samtest_div .two_area_list ul li .cnt dl dt {
  width: fit-content;
}
html body section#bodyWrap .content .samtest_div .two_area_list ul li .cnt dl dt .font_v {
  padding: 0 0.8rem;
  width: fit-content;
  height: 2.4rem;
  border-radius: 0.4rem;
  font: 1.3rem/1.6rem "Spoqa Han Sans Neo", "sans-serif";
  display: flex;
  align-items: center;
  background: #73787E;
}
html body section#bodyWrap .content .samtest_div .two_area_list ul li .cnt dl dd {
  padding-left: 6.4rem;
}
html body section#bodyWrap .content .samtest_div .two_area_list ul li .cnt dl dd .btn_ui {
  background: #504BFF;
  border-radius: 5rem;
  font: 1.3rem/1.6rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .samtest_div .two_area_list ul li .togglebtn {
  background-position: 91rem 13px;
}
html body section#bodyWrap .content .samtest_div .two_area_list ul li .togglebtn.on {
  background-position: 91rem -63px;
}
html body section#bodyWrap .content .samtest_div .two_area_list ul li .sub {
  background-color: #474C52;
}
html body section#bodyWrap .content .exp_wrap {
  color: white;
}
html body section#bodyWrap .content .guide_list_wrap {
  color: white;
}
html body section#bodyWrap .content .guide_list_wrap .guide_list {
  color: white;
}
html body section#bodyWrap .content .tasty_list .ex ul li .title,
html body section#bodyWrap .content .tasty_list .ex ul li .title1 {
  background-color: #474C52;
}
html body section#bodyWrap .content .tasty_list .ex ul li .title h5,
html body section#bodyWrap .content .tasty_list .ex ul li .title1 h5 {
  display: flex;
  align-items: center;
}
html body section#bodyWrap .content .tasty_list .ex ul li .title small,
html body section#bodyWrap .content .tasty_list .ex ul li .title1 small {
  color: #504BFF;
}
html body section#bodyWrap .content .tasty_list .ex ul li .title span,
html body section#bodyWrap .content .tasty_list .ex ul li .title1 span {
  color: white;
}
html body section#bodyWrap .content .tasty_list .ex ul li .title .level_bundle,
html body section#bodyWrap .content .tasty_list .ex ul li .title1 .level_bundle {
  display: flex;
  width: fit-content;
  position: absolute;
  right: 1.8rem;
}
html body section#bodyWrap .content .tasty_list .ex ul li .title .level_bundle .icon,
html body section#bodyWrap .content .tasty_list .ex ul li .title1 .level_bundle .icon {
  position: relative;
  top: unset;
  right: unset;
  margin-top: unset;
}
html body section#bodyWrap .content .tasty_list .ex ul li .cnt {
  background: white;
}
html body section#bodyWrap .content .tasty_list .ex ul li .cnt dl dt {
  width: fit-content;
}
html body section#bodyWrap .content .tasty_list .ex ul li .cnt dl dt .font_v {
  padding: 0 0.8rem;
  width: fit-content;
  height: 2.4rem;
  border-radius: 0.4rem;
  font: 1.3rem/1.6rem "Spoqa Han Sans Neo", "sans-serif";
  display: flex;
  align-items: center;
  background: #73787E;
}
html body section#bodyWrap .content .tasty_list .ex ul li .cnt dl dd {
  padding-left: 6.4rem;
}
html body section#bodyWrap .content .tasty_list .ex ul li .cnt dl dd .btn_ui {
  background: #504BFF;
  border-radius: 5rem;
  font: 1.3rem/1.6rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .board_default .ex ul li .togglebtn {
  background: none;
  color: white;
}
html body section#bodyWrap .content .inquiry_wrapper form dl dd {
  color: white;
}
html body section#bodyWrap .content .inquiry_wrapper form dl dd textarea {
  background-color: #27282C;
}
html body section#bodyWrap .content .inquiry_wrapper form .btns .btn_ui {
  background-color: #504BFF;
}
html body section#bodyWrap .content .gallery_event_wrapper .list #eventList ul li .title,
html body section#bodyWrap .content .gallery_event_wrapper .list #exEventList ul li .title {
  background: #474C52;
  color: white;
}
html body section#bodyWrap .content .gallery_event_wrapper .list #eventList ul li .thumb,
html body section#bodyWrap .content .gallery_event_wrapper .list #exEventList ul li .thumb {
  background-color: #73787E;
  position: relative;
}
html body section#bodyWrap .content .gallery_event_wrapper .list #eventList ul li .thumb .ex_event,
html body section#bodyWrap .content .gallery_event_wrapper .list #exEventList ul li .thumb .ex_event {
  font: 3.4rem/4.3rem "Spoqa Han Sans Neo", "sans-serif";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(85, 85, 85, 0.5411764706);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
html body section#bodyWrap .content .myinfo_wrap form {
  width: 100%;
}
html body section#bodyWrap .content .myinfo_wrap form .top {
  padding: 4rem;
}
html body section#bodyWrap .content .myinfo_wrap form .top table tbody tr th {
  width: 20rem;
  color: #9FA4A8;
  vertical-align: middle;
  padding-top: 0;
  padding-bottom: 0;
}
html body section#bodyWrap .content .myinfo_wrap form .top table tbody tr td {
  height: 6rem;
  padding-bottom: 0;
  color: #EAEBED;
}
html body section#bodyWrap .content .myinfo_wrap form .top table tbody tr td input,
html body section#bodyWrap .content .myinfo_wrap form .top table tbody tr td span {
  width: 100%;
  font-size: 1.167em;
}
html body section#bodyWrap .content .myinfo_wrap form .bottom {
  padding: 4rem;
}
html body section#bodyWrap .content .myinfo_wrap form .bottom .table tbody tr th {
  width: 20rem;
  color: #9FA4A8;
  vertical-align: middle;
  padding-top: 0;
  padding-bottom: 0;
}
html body section#bodyWrap .content .myinfo_wrap form .bottom .table tbody tr td {
  height: 6rem;
  padding-bottom: 0;
  color: #EAEBED;
}
html body section#bodyWrap .content .myinfo_wrap form .bottom .table tbody tr td .select_ui {
  width: 33rem;
}
html body section#bodyWrap .content .myinfo_wrap form .bottom .table tbody tr td .select_ui select {
  background-color: #1C1D1F;
  color: #EAEBED;
  line-height: 3.8rem;
  height: 3.8rem;
  border: 1px solid #535353;
}
html body section#bodyWrap .content .myinfo_wrap form .bottom .table tbody tr td .select_ui .icon {
  margin-top: -3.8rem;
  width: 3.8rem;
  height: 3.8rem;
  top: auto;
}
html body section#bodyWrap .content .myinfo_wrap form .bottom .table tbody tr td .btns_wrap.on {
  width: 115px;
}
html body section#bodyWrap .content .myinfo_wrap form .bottom .table tbody tr td .btns_wrap .change_btns .active_btn {
  padding: 0.4rem;
  background-color: #504BFF;
  border: none;
  border-radius: 0.8rem;
  color: white;
  cursor: pointer;
  margin-top: 23px;
}
html body section#bodyWrap .content .myinfo_wrap form .bottom .table tbody tr td .btns_wrap .change_btns .disable_btn {
  padding: 0.4rem;
  background-color: #73787E;
  border: none;
  border-radius: 0.8rem;
  color: white;
  cursor: pointer;
  margin-top: 23px;
}
html body section#bodyWrap .content .myinfo_wrap form .bottom .table tbody tr td .btns_wrap .change_btns .disable_btn.auth_btn {
  cursor: default;
}
html body section#bodyWrap .content .myinfo_wrap form .bottom .table tbody tr td input {
  height: 3.8rem;
  width: 33rem;
  font-size: 1.167em;
}
html body section#bodyWrap .content .myinfo_wrap form .bottom .table tbody tr td .auth,
html body section#bodyWrap .content .myinfo_wrap form .bottom .table tbody tr td .auth_check {
  width: 11rem;
  padding: 0.4rem 0;
  background-color: #504BFF;
  border-radius: 0.8rem;
  color: white;
  cursor: pointer;
}
html body section#bodyWrap .content .myinfo_wrap form .bottom .table tbody .change_tel input {
  width: calc(100% - 11.8rem);
}
html body section#bodyWrap .content .myinfo_wrap form .comp_div .info_submit {
  color: white;
  background: #504BFF;
  width: 25rem;
  border-radius: 2px;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: bold;
  position: relative;
  margin-top: 2rem;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 1.8rem 2.8rem;
}
html body section#bodyWrap .content .myinfo_wrap form .dropout_wrap .dropout {
  padding-top: 3rem;
}
html body section#bodyWrap .content .my_progress_wrap {
  padding-top: 0;
}
html body section#bodyWrap .content .my_progress_wrap .my_status_wrap {
  padding: 3rem;
  background-color: #27282C;
  margin: 2rem 0;
}
html body section#bodyWrap .content .my_progress_wrap dl {
  height: fit-content;
  margin-bottom: 0;
}
html body section#bodyWrap .content .my_progress_wrap dl dd {
  padding: 0;
}
html body section#bodyWrap .content .my_progress_wrap dl dd .bar {
  border-radius: 5rem;
}
html body section#bodyWrap .content .my_progress_wrap dl dd .bar .active {
  background: rgb(176, 64, 255);
  background: linear-gradient(90deg, rgb(176, 64, 255) 0%, rgb(176, 64, 255) 90%, rgb(248, 192, 255) 100%);
}
html body section#bodyWrap .content .my_progress_wrap dl dd .bar .bg {
  background: #141414;
}
html body section#bodyWrap .content .my_progress_wrap dl dd:first-of-type {
  font: 2.8rem/3.5rem "Spoqa Han Sans Neo", "sans-serif";
  color: #73787E;
  font-weight: 300;
  margin-bottom: 1.6rem;
}
html body section#bodyWrap .content .my_progress_wrap dl dd:first-of-type .user_name {
  color: #F7F8FA;
  font-weight: 700;
}
html body section#bodyWrap .content .my_progress_wrap dl dd:first-of-type .percent {
  font: 3.6rem/4.5rem "Spoqa Han Sans Neo", "sans-serif";
  color: #F7F8FA;
  font-weight: 700;
}
html body section#bodyWrap .content .my_progress_wrap dl dd .info {
  display: flex;
  justify-content: space-between;
}
html body section#bodyWrap .content .my_progress_wrap dl dd .info .comment div:first-of-type {
  margin-bottom: 0.4rem;
}
html body section#bodyWrap .content .my_progress_wrap dl dd .info button.toggle_btn {
  margin-top: auto;
  position: relative;
  top: unset;
  right: unset;
  background: center/contain no-repeat url("../image/renewal/icons/icon_40_accordion_arrow.svg");
  min-width: 4rem;
  min-height: 4rem;
  transform: rotate(0);
  transition: all 0.3s;
}
html body section#bodyWrap .content .my_progress_wrap dl dd .info button.toggle_btn.on {
  transform: rotate(180deg);
}
html body section#bodyWrap .content .my_progress_wrap .inner {
  margin-top: 4.8rem;
  background: #1D1D1D;
  border-top: unset;
}
html body section#bodyWrap .content .my_progress_wrap .inner ul.matter_bundle li.matter_list {
  background: #27282C;
  margin-bottom: 2.4rem;
  border: 1px solid #EAEBED;
  border-radius: 0.8rem;
  padding: 1.6rem 3.2rem;
}
html body section#bodyWrap .content .my_progress_wrap .inner ul.matter_bundle li.matter_list .info {
  padding: 0;
}
html body section#bodyWrap .content .my_progress_wrap .inner ul.matter_bundle li.matter_list .info .type {
  display: flex;
  align-items: center;
}
html body section#bodyWrap .content .my_progress_wrap .inner ul.matter_bundle li.matter_list .info .type span {
  height: fit-content;
}
html body section#bodyWrap .content .my_progress_wrap .inner ul.matter_bundle li.matter_list .info .type span:first-of-type {
  font: 1.5rem/1.9rem "Spoqa Han Sans Neo", "sans-serif";
  color: #CACDD2;
}
html body section#bodyWrap .content .my_progress_wrap .inner ul.matter_bundle li.matter_list .info .type .b666 {
  font: 1.6rem/2rem "Spoqa Han Sans Neo", "sans-serif";
  padding: 0 2rem;
  display: flex;
  align-items: center;
}
html body section#bodyWrap .content .my_progress_wrap .inner ul.matter_bundle li.matter_list .bar {
  padding-top: 2.4rem;
}
html body section#bodyWrap .content .my_progress_wrap .inner ul.matter_bundle li.matter_list .bar ul li {
  border-radius: 5rem;
}
html body section#bodyWrap .content .my_progress_wrap .inner ul.matter_bundle li.matter_list .bar ul li.pro_bar {
  border-bottom: unset;
}
html body section#bodyWrap .content .my_progress_wrap .inner ul.matter_bundle li.matter_list .bar ul li.pro_bar div {
  border-radius: 5rem;
}
html body section#bodyWrap .content .my_progress_wrap .inner ul.matter_bundle li.matter_list .bar ul li.ans_bar {
  margin-top: 0.8rem;
}
html body section#bodyWrap .content .my_progress_wrap .inner ul.matter_bundle li.matter_list .bar ul li.ans_bar div {
  border-radius: 5rem;
}
html body section#bodyWrap .content .myclass_wrap .find_teacher_wrap,
html body section#bodyWrap .content .myclass_wrap .class_wrap {
  color: white;
}
html body section#bodyWrap .content .myclass_wrap .find_teacher_wrap .list_wrap,
html body section#bodyWrap .content .myclass_wrap .class_wrap .list_wrap {
  background-color: #27282C;
  border: 0;
}
html body section#bodyWrap .content .myclass_wrap .find_teacher_wrap .list_wrap .searchfrm,
html body section#bodyWrap .content .myclass_wrap .class_wrap .list_wrap .searchfrm {
  color: #9FA4A8;
  display: flex;
  padding: 1rem 5rem;
  gap: 1rem;
}
html body section#bodyWrap .content .myclass_wrap .find_teacher_wrap .list_wrap .searchfrm .search_btn,
html body section#bodyWrap .content .myclass_wrap .class_wrap .list_wrap .searchfrm .search_btn {
  position: absolute;
  right: 5rem;
  margin-top: 0.4rem;
  height: 3rem;
  width: 7rem;
  background-color: #9662d8;
  color: black;
}
html body section#bodyWrap .content .myclass_wrap .find_teacher_wrap .list_wrap .searchfrm .form_input,
html body section#bodyWrap .content .myclass_wrap .class_wrap .list_wrap .searchfrm .form_input {
  background-color: #1C1D1F;
  color: #9FA4A8;
  margin-top: 0.4rem;
  line-height: 3rem;
  height: 3rem;
  border: 0;
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .myclass_wrap .find_teacher_wrap .list_wrap .searchfrm .select_ui select,
html body section#bodyWrap .content .myclass_wrap .class_wrap .list_wrap .searchfrm .select_ui select {
  background-color: #1C1D1F;
  color: #9FA4A8;
  margin-top: 0.4rem;
  line-height: 3rem;
  height: 3rem;
  border: 0;
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
  border-radius: 1px;
  appearance: auto;
  text-indent: 0;
}
html body section#bodyWrap .content .myclass_wrap .find_teacher_wrap .list_wrap .searchfrm .select_ui .icon,
html body section#bodyWrap .content .myclass_wrap .class_wrap .list_wrap .searchfrm .select_ui .icon {
  margin-top: -3rem;
  height: 3rem;
  top: auto;
}
html body section#bodyWrap .content .myclass_wrap .find_teacher_wrap .list_wrap table,
html body section#bodyWrap .content .myclass_wrap .class_wrap .list_wrap table {
  background-color: #27282C;
}
html body section#bodyWrap .content .myclass_wrap .find_teacher_wrap .list_wrap table thead,
html body section#bodyWrap .content .myclass_wrap .class_wrap .list_wrap table thead {
  background-color: #474C52;
}
html body section#bodyWrap .content .coupon-container {
  /* 사용중인 쿠폰*/
  padding: 20px;
  background: #27282c;
  width: 90%;
  margin: 0 auto;
  margin-top: 50px;
  /* border: 1px solid #e0e0e0; */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
html body section#bodyWrap .content .coupon-container .coupon-status-banner {
  background-color: transparent;
  color: white;
  padding: 12px;
  text-align: center;
}
html body section#bodyWrap .content .coupon-container .coupon-title {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 400;
}
html body section#bodyWrap .content .coupon-container .coupon-date {
  font-size: 16px;
  color: #999;
}
html body section#bodyWrap .content .coupon-container .coupon-date #startDate {
  font-size: 14px;
}
html body section#bodyWrap .content .coupon-container .coupon-date #endDate {
  font-size: 16px;
  font-weight: 500;
  color: #504bff;
}
html body section#bodyWrap .content .coupon-container .coupon-details {
  border-radius: 10px;
  margin-top: 20px;
  padding: 16px 25px;
  line-height: 1;
  background-color: rgba(0, 0, 0, 0.0784313725);
}
html body section#bodyWrap .content .coupon-container .coupon-details h3 {
  margin: 0 0 12px 0;
  font-size: 14px;
}
html body section#bodyWrap .content .coupon-container .coupon-details p {
  font-size: 16px;
}
html body section#bodyWrap .content .content_wrap #have_coupon {
  /* 쿠폰등록상자 */
  height: 120px;
  border-radius: 10px;
  align-items: center;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, rgb(150, 98, 216) 34%, rgb(80, 75, 255) 100%);
  padding: 2.4rem;
  border: none;
}
html body section#bodyWrap .content .content_wrap #have_coupon #have_coupon_text {
  color: white;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .content_wrap #have_coupon button {
  width: 13rem;
  height: 4rem;
  color: white;
  border: 1px solid;
  border-color: white;
  border-radius: 50px;
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .content_wrap .collapse .content_btn {
  display: flex;
  width: 100%;
  background-color: #27282C;
  padding: 1.8rem;
  margin: 0.8rem 0;
}
html body section#bodyWrap .content .content_wrap .collapse .content_btn span {
  color: white;
}
html body section#bodyWrap .content .content_wrap .collapse .content_btn .content_cnt {
  width: 3.4rem;
  color: black;
  background-color: #9662D8;
  margin-left: 0.8rem;
  border-radius: 2rem;
}
html body section#bodyWrap .content .content_wrap .collapse .content_btn .content_arrow {
  color: white;
  margin-left: auto;
}
html body section#bodyWrap .content .content_wrap .collapse .content_div {
  padding: 2.4rem 0;
}
html body section#bodyWrap .content .content_wrap .collapse .content_div .content_item {
  display: flex;
  color: white;
  background-color: #27282C;
  margin: 1.4rem;
  border-radius: 0.4rem;
  overflow: hidden;
}
html body section#bodyWrap .content .content_wrap .collapse .content_div .content_item .content_desc {
  width: 50%;
  padding: 2.8rem;
  padding-right: 0;
}
html body section#bodyWrap .content .content_wrap .collapse .content_div .content_item .content_desc div {
  margin-bottom: 1.4rem;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .content_wrap .collapse .content_div .content_item .content_desc small {
  color: #73787E;
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .content_wrap .collapse .content_div .content_item .content_price {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 30%;
  padding: 2.8rem;
  padding-left: 0;
}
html body section#bodyWrap .content .content_wrap .collapse .content_div .content_item .content_price .price_div {
  display: flex;
  align-items: end;
}
html body section#bodyWrap .content .content_wrap .collapse .content_div .content_item .content_price .price_div .price_before {
  color: #73787E;
  text-decoration: line-through;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .content_wrap .collapse .content_div .content_item .content_price .price_div .price_arrow {
  color: #73787E;
  padding: 0 0.8rem;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .content_wrap .collapse .content_div .content_item .content_price .price_div .price_after {
  font: 2.8rem/3.5rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: bold;
}
html body section#bodyWrap .content .content_wrap .collapse .content_div .content_item .content_purchase {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
  background-color: #504BFF;
  font: 2.4rem/3rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: bold;
}
html body section#bodyWrap .content .content_wrap .layer_popup.coupon_layer .layer_wrap .layer_content {
  /* 레이어팝업 */
  height: 100% !important;
}
html body section#bodyWrap .content .content_wrap .layer_popup.coupon_layer .layer_wrap .layer_content form {
  position: relative;
  height: 100%;
}
html body section#bodyWrap .content .content_wrap .layer_popup.coupon_layer .layer_wrap .layer_content form .input_div {
  display: flex;
  align-items: center;
  justify-content: center;
}
html body section#bodyWrap .content .content_wrap .layer_popup.buy_complete_popup .layer_wrap {
  background: none;
  background-color: #27282C;
}
html body section#bodyWrap .content .content_wrap .layer_popup.buy_complete_popup .layer_wrap .layer_header {
  display: flex;
  align-items: center;
  height: 3.8rem;
  background-color: #474C52;
  padding-left: 1.4rem;
}
html body section#bodyWrap .content .content_wrap .layer_popup.buy_complete_popup .layer_wrap .layer_header span {
  color: #9FA4A8;
}
html body section#bodyWrap .content .content_wrap .layer_popup.buy_complete_popup .layer_wrap .layer_content {
  height: 100%;
  padding: 3.4rem;
}
html body section#bodyWrap .content .content_wrap .layer_popup.buy_complete_popup .layer_wrap .layer_content span {
  color: #EAEBED;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .content_wrap .layer_popup.buy_complete_popup .layer_wrap .layer_content .normal_hr,
html body section#bodyWrap .content .content_wrap .layer_popup.buy_complete_popup .layer_wrap .layer_content .light_hr {
  width: 100%;
  margin: 1.4rem 0;
}
html body section#bodyWrap .content .content_wrap .layer_popup.buy_complete_popup .layer_wrap .layer_content .normal_hr {
  border-color: #EAEBED;
}
html body section#bodyWrap .content .content_wrap .layer_popup.buy_complete_popup .layer_wrap .layer_content .light_hr {
  border-color: #9FA4A8;
}
html body section#bodyWrap .content .content_wrap .layer_popup.buy_complete_popup .layer_wrap .layer_content .content_div {
  display: flex;
  margin: 0.8rem 1.8rem;
}
html body section#bodyWrap .content .content_wrap .layer_popup.buy_complete_popup .layer_wrap .layer_content .content_div .content_title {
  width: 20%;
  padding-right: 0.8rem;
  text-align: end;
}
html body section#bodyWrap .content .content_wrap .layer_popup.buy_complete_popup .layer_wrap .layer_content .content_div .content_desc {
  width: 80%;
  color: #EAEBED;
}
html body section#bodyWrap .content .content_wrap .layer_popup.buy_complete_popup .layer_wrap .layer_content .content_div .left {
  text-align: start;
}
html body section#bodyWrap .content .content_wrap .layer_popup.buy_complete_popup .layer_wrap .layer_content .content_div .right {
  text-align: end;
}
html body section#bodyWrap .content .content_wrap .layer_popup.buy_complete_popup .layer_wrap .layer_content .content_div .bold {
  text-align: end;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: bold;
}
html body section#bodyWrap .content .content_wrap .layer_popup.buy_complete_popup .layer_wrap .layer_content #content_pay {
  width: 100%;
  height: 3.8rem;
  background-color: #1C1D1F;
  margin: 1.4rem 0 0 0;
  padding: 0 5px;
  border-color: #EAEBED;
  color: #EAEBED;
}
html body section#bodyWrap .content .content_wrap .layer_popup.buy_complete_popup .layer_wrap .layer_footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3.4rem;
  margin-top: 1.4rem;
}
html body section#bodyWrap .content .content_wrap .layer_popup.buy_complete_popup .layer_wrap .layer_footer .button {
  width: 10rem;
  height: 3.8rem;
  margin: 0 0.8rem;
  border-radius: 0.2rem;
  color: white;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .content_wrap .layer_popup.buy_complete_popup .layer_wrap .layer_footer .button_pay {
  background-color: #504BFF;
}
html body section#bodyWrap .content .content_wrap .layer_popup.buy_complete_popup .layer_wrap .layer_footer .button_cancel {
  background-color: #474C52;
}
html body section#bodyWrap .content .gallery_default_wrapper .event_list_div h3 {
  padding: 0.8rem;
  border-bottom: 1px solid white;
  color: white;
}
html body section#bodyWrap .content .gallery_default_wrapper .event_list_div .event_div {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  margin-top: 2.8rem;
  margin-bottom: 1.4rem;
}
html body section#bodyWrap .content .gallery_default_wrapper .event_list_div .event_div .event_item {
  position: relative;
  width: 49.3%;
  height: 28rem;
  background-color: #73787E;
  margin-bottom: 1.4rem;
  border-radius: 0.8rem;
  overflow: hidden;
  cursor: pointer;
}
html body section#bodyWrap .content .gallery_default_wrapper .event_list_div .event_div .event_item .event_end {
  position: absolute;
  width: 100%;
  height: 28rem;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  color: white;
  font: 2.8rem/3.5rem "Spoqa Han Sans Neo", "sans-serif";
  line-height: 28rem;
}
html body section#bodyWrap .content .gallery_default_wrapper .event_list_div .event_div .event_item .event_image {
  height: 75%;
  text-align: center;
}
html body section#bodyWrap .content .gallery_default_wrapper .event_list_div .event_div .event_item .event_image img {
  height: 100%;
}
html body section#bodyWrap .content .gallery_default_wrapper .event_list_div .event_div .event_item .event_desc {
  height: 25%;
  padding: 1.4rem;
  background-color: #474C52;
}
html body section#bodyWrap .content .gallery_default_wrapper .event_list_div .event_div .event_item .event_desc .event_title {
  margin-bottom: 0.4rem;
  color: white;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
html body section#bodyWrap .content .gallery_default_wrapper .event_list_div .event_div .event_item .event_desc .event_period {
  color: #9FA4A8;
}
html body section#bodyWrap .content .gallery_default_wrapper .event_list_div .button_div {
  text-align: center;
}
html body section#bodyWrap .content .gallery_default_wrapper .event_list_div .button_div #button_more {
  background-color: #7E36FF;
  padding: 0.8rem 1.8rem;
  border-radius: 0.8rem;
  color: white;
}
html body section#bodyWrap .content .gallery_view_wrapper .event_view_div .title_div div,
html body section#bodyWrap .content .gallery_view_wrapper .pick_view_div .title_div div {
  border-bottom: 1px solid #474C52;
}
html body section#bodyWrap .content .gallery_view_wrapper .event_view_div .title_div div h5,
html body section#bodyWrap .content .gallery_view_wrapper .pick_view_div .title_div div h5 {
  font: 2.4rem/3rem "Spoqa Han Sans Neo", "sans-serif";
  line-height: 4.4rem;
}
html body section#bodyWrap .content .gallery_view_wrapper .event_view_div .title_div div span,
html body section#bodyWrap .content .gallery_view_wrapper .pick_view_div .title_div div span {
  line-height: 3.4rem;
}
html body section#bodyWrap .content .gallery_view_wrapper .event_view_div .content_div,
html body section#bodyWrap .content .gallery_view_wrapper .pick_view_div .content_div {
  padding: 1.8rem 0;
  border-bottom: 1px solid #474C52;
}
html body section#bodyWrap .content .gallery_view_wrapper .event_view_div .content_div .event_image,
html body section#bodyWrap .content .gallery_view_wrapper .event_view_div .content_div .pick_image,
html body section#bodyWrap .content .gallery_view_wrapper .pick_view_div .content_div .event_image,
html body section#bodyWrap .content .gallery_view_wrapper .pick_view_div .content_div .pick_image {
  text-align: center;
}
html body section#bodyWrap .content .gallery_view_wrapper .event_view_div .content_div .event_image img,
html body section#bodyWrap .content .gallery_view_wrapper .event_view_div .content_div .pick_image img,
html body section#bodyWrap .content .gallery_view_wrapper .pick_view_div .content_div .event_image img,
html body section#bodyWrap .content .gallery_view_wrapper .pick_view_div .content_div .pick_image img {
  max-width: 100%;
}
html body section#bodyWrap .content .gallery_view_wrapper .event_view_div .content_div .event_content,
html body section#bodyWrap .content .gallery_view_wrapper .event_view_div .content_div .pick_content,
html body section#bodyWrap .content .gallery_view_wrapper .pick_view_div .content_div .event_content,
html body section#bodyWrap .content .gallery_view_wrapper .pick_view_div .content_div .pick_content {
  padding-top: 1.8rem;
  letter-spacing: normal;
  line-height: 2.4rem;
}
html body section#bodyWrap .content .gallery_view_wrapper .notice_view_div .title_div div,
html body section#bodyWrap .content .gallery_view_wrapper .eduinfo_view_div .title_div div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #474C52;
}
html body section#bodyWrap .content .gallery_view_wrapper .notice_view_div .title_div div h5,
html body section#bodyWrap .content .gallery_view_wrapper .eduinfo_view_div .title_div div h5 {
  font: 2.4rem/3rem "Spoqa Han Sans Neo", "sans-serif";
  line-height: 4.4rem;
}
html body section#bodyWrap .content .gallery_view_wrapper .notice_view_div .title_div div span,
html body section#bodyWrap .content .gallery_view_wrapper .eduinfo_view_div .title_div div span {
  line-height: 3.4rem;
}
html body section#bodyWrap .content .gallery_view_wrapper .notice_view_div .content_div,
html body section#bodyWrap .content .gallery_view_wrapper .eduinfo_view_div .content_div {
  padding: 1.8rem 0;
  border-bottom: 1px solid #474C52;
  letter-spacing: normal;
}
html body section#bodyWrap .content .gallery_view_wrapper .notice_view_div .addfiles_div,
html body section#bodyWrap .content .gallery_view_wrapper .eduinfo_view_div .addfiles_div {
  display: flex;
  padding: 0.8rem 1.4rem;
  border-bottom: 1px solid #474C52;
}
html body section#bodyWrap .content .gallery_view_wrapper .notice_view_div .addfiles_div span,
html body section#bodyWrap .content .gallery_view_wrapper .eduinfo_view_div .addfiles_div span {
  margin-right: 1.8rem;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  line-height: 2.4rem;
}
html body section#bodyWrap .content .gallery_view_wrapper .notice_view_div .addfiles_div ul li,
html body section#bodyWrap .content .gallery_view_wrapper .eduinfo_view_div .addfiles_div ul li {
  color: #9FA4A8;
  line-height: 2.4rem;
  cursor: pointer;
}
html body section#bodyWrap .content .gallery_view_wrapper .notice_view_div .addfiles_div ul li:hover,
html body section#bodyWrap .content .gallery_view_wrapper .eduinfo_view_div .addfiles_div ul li:hover {
  text-decoration: underline;
}
html body section#bodyWrap .content .gallery_view_wrapper .notice_view_div .comments_div,
html body section#bodyWrap .content .gallery_view_wrapper .eduinfo_view_div .comments_div {
  margin-top: 1.8rem;
}
html body section#bodyWrap .content .gallery_view_wrapper .notice_view_div .comments_div .comments_submit,
html body section#bodyWrap .content .gallery_view_wrapper .eduinfo_view_div .comments_div .comments_submit {
  display: flex;
  justify-content: space-between;
}
html body section#bodyWrap .content .gallery_view_wrapper .notice_view_div .comments_div .comments_submit .comments_textarea,
html body section#bodyWrap .content .gallery_view_wrapper .eduinfo_view_div .comments_div .comments_submit .comments_textarea {
  width: 89%;
  background-color: #474C52;
  padding: 0.8rem;
  border: 1px solid #9FA4A8;
  border-radius: 0.4rem;
  color: white;
  resize: none;
}
html body section#bodyWrap .content .gallery_view_wrapper .notice_view_div .comments_div .comments_submit .submit_btn,
html body section#bodyWrap .content .gallery_view_wrapper .eduinfo_view_div .comments_div .comments_submit .submit_btn {
  width: 10%;
  height: 10.8rem;
  background-color: #7E36FF;
  border-radius: 0.4rem;
  color: white;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .gallery_view_wrapper .notice_view_div .comments_div .comments_byte,
html body section#bodyWrap .content .gallery_view_wrapper .eduinfo_view_div .comments_div .comments_byte {
  color: #9FA4A8;
  margin-bottom: 1.8rem;
}
html body section#bodyWrap .content .gallery_view_wrapper .notice_view_div .comments_div .comments_list,
html body section#bodyWrap .content .gallery_view_wrapper .eduinfo_view_div .comments_div .comments_list {
  padding-top: 1.8rem;
}
html body section#bodyWrap .content .gallery_view_wrapper .notice_view_div .comments_div .comments_list li,
html body section#bodyWrap .content .gallery_view_wrapper .eduinfo_view_div .comments_div .comments_list li {
  padding: 0.8rem;
  border-top: 1px solid #9FA4A8;
}
html body section#bodyWrap .content .gallery_view_wrapper .notice_view_div .comments_div .comments_list li div,
html body section#bodyWrap .content .gallery_view_wrapper .eduinfo_view_div .comments_div .comments_list li div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}
html body section#bodyWrap .content .gallery_view_wrapper .notice_view_div .comments_div .comments_list li span,
html body section#bodyWrap .content .gallery_view_wrapper .eduinfo_view_div .comments_div .comments_list li span {
  color: white;
}
html body section#bodyWrap .content .gallery_view_wrapper .notice_view_div .comments_div .comments_list li .delete_btn,
html body section#bodyWrap .content .gallery_view_wrapper .eduinfo_view_div .comments_div .comments_list li .delete_btn {
  display: block;
  margin-left: auto;
  color: #73787E;
}
html body section#bodyWrap .content .gallery_view_wrapper .notice_view_div .comments_div .comments_list li:last-child,
html body section#bodyWrap .content .gallery_view_wrapper .eduinfo_view_div .comments_div .comments_list li:last-child {
  border-bottom: 1px solid #9FA4A8;
}
html body section#bodyWrap .content .gallery_view_wrapper .list_btn {
  width: 10.8rem;
  height: 2.8rem;
  background-color: #474C52;
  margin: 1.8rem 0;
  border-radius: 0.8rem;
}
html body section#bodyWrap .content .inquiry_wrapper .inquiry_register_div .input_div {
  margin-bottom: 2.8rem;
}
html body section#bodyWrap .content .inquiry_wrapper .inquiry_register_div .input_div input,
html body section#bodyWrap .content .inquiry_wrapper .inquiry_register_div .input_div textarea {
  background-color: #474C52;
  padding: 0.8rem;
  margin-bottom: 0.8rem;
  color: white;
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .inquiry_wrapper .inquiry_register_div .button_div button {
  height: 3.4rem;
  background-color: #7E36FF;
  padding: 0 1.4rem;
  border-radius: 0.4rem;
  color: white;
  line-height: 3.4rem;
}
html body section#bodyWrap .content .board_default .notice_list_div h3,
html body section#bodyWrap .content .board_default .eduinfo_list_div h3 {
  padding: 0.8rem;
  padding-bottom: 1.8rem;
  color: white;
}
html body section#bodyWrap .content .board_default .notice_list_div .blue_table,
html body section#bodyWrap .content .board_default .eduinfo_list_div .blue_table {
  color: white;
}
html body section#bodyWrap .content .board_default .notice_list_div .blue_table thead,
html body section#bodyWrap .content .board_default .eduinfo_list_div .blue_table thead {
  background-color: #7E36FF;
}
html body section#bodyWrap .content .board_default .notice_list_div .blue_table thead th,
html body section#bodyWrap .content .board_default .eduinfo_list_div .blue_table thead th {
  padding: 15px;
  text-align: left;
}
html body section#bodyWrap .content .board_default .notice_list_div .blue_table tbody tr,
html body section#bodyWrap .content .board_default .eduinfo_list_div .blue_table tbody tr {
  background-color: #474C52;
  border-top: 1px solid black;
  cursor: pointer;
}
html body section#bodyWrap .content .board_default .notice_list_div .blue_table tbody tr td,
html body section#bodyWrap .content .board_default .eduinfo_list_div .blue_table tbody tr td {
  padding: 10px 15px;
  text-align: left;
}
html body section#bodyWrap .content .board_default .notice_list_div .blue_table tbody .nodata td,
html body section#bodyWrap .content .board_default .eduinfo_list_div .blue_table tbody .nodata td {
  text-align: center;
}
html body section#bodyWrap .content .board_group .faq_list_div .search_div div {
  margin-bottom: 1.8rem;
}
html body section#bodyWrap .content .board_group .faq_list_div .search_div div .category_btn {
  width: 8.4rem;
  height: 3.4rem;
  background-color: #474C52;
  margin-right: 0.8rem;
  border-radius: 0.8rem;
  color: white;
}
html body section#bodyWrap .content .board_group .faq_list_div .search_div div .category_btn:last-child {
  margin-right: 0;
}
html body section#bodyWrap .content .board_group .faq_list_div .search_div div .category_btn:hover,
html body section#bodyWrap .content .board_group .faq_list_div .search_div div .category_btn.selected {
  background-color: #73787E;
}
html body section#bodyWrap .content .board_group .faq_list_div .search_div form {
  display: flex;
  margin-bottom: 2.4rem;
}
html body section#bodyWrap .content .board_group .faq_list_div .search_div form #search {
  width: 89%;
  background-color: #474C52;
  padding: 0.8rem;
  border: 1px solid white;
  border-radius: 0.4rem;
  color: white;
}
html body section#bodyWrap .content .board_group .faq_list_div .search_div form .search_btn {
  width: 10%;
  background-color: #7E36FF;
  margin-left: auto;
  border-radius: 0.4rem;
  color: white;
}
html body section#bodyWrap .content .board_group .faq_list_div h3 {
  color: white;
  padding: 0.8rem;
  padding-bottom: 1.8rem;
}
html body section#bodyWrap .content .board_group .faq_list_div .collapse {
  padding: 0 1.4rem;
  border-top: 1px solid #474C52;
  border-bottom: 1px solid #474C52;
}
html body section#bodyWrap .content .board_group .faq_list_div .collapse .faq_btn {
  display: block;
  margin: 1.4rem 0;
  color: white;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: bold;
}
html body section#bodyWrap .content .board_group .faq_list_div .collapse .faq_div {
  background-color: #474C52;
  padding: 1.4rem;
  margin: 1.4rem 2.4rem;
  border-radius: 0.4rem;
  color: white;
}
html body section#bodyWrap .content .board_group .faq_list_div .collapse .faq_div p {
  letter-spacing: normal;
  line-height: 2.4rem;
}
html body section#bodyWrap .content .board_group .faq_list_div .inquiry_div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #474C52;
  margin-top: 3.4rem;
  border-radius: 0.8rem;
}
html body section#bodyWrap .content .board_group .faq_list_div .inquiry_div .text_div {
  padding: 2.4rem;
}
html body section#bodyWrap .content .board_group .faq_list_div .inquiry_div .text_div h5 {
  margin-bottom: 0.8rem;
  color: white;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: bold;
}
html body section#bodyWrap .content .board_group .faq_list_div .inquiry_div .text_div span {
  color: #CACDD2;
}
html body section#bodyWrap .content .board_group .faq_list_div .inquiry_div button {
  width: 13rem;
  height: 6.4rem;
  background-color: #73787E;
  padding: 0 1.4rem;
  margin: 1.4rem 1.8rem;
  border-radius: 0.8rem;
  color: white;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .message_wrap .btns div {
  display: flex;
  gap: 1rem;
}
html body section#bodyWrap .content .message_send_wrap .top_wrap .member_wrap .item {
  margin-right: 6px;
}
html body section#bodyWrap .content .message_send_wrap .top_wrap .member_wrap .item.mem span {
  margin-left: 0.4rem;
  color: #73787E;
}
html body section#bodyWrap .content .layer_popup.send_popup .layer_wrap .nodata,
html body section#bodyWrap .content .layer_popup.send_popup .layer_wrap .data {
  width: 100%;
}
html body section#bodyWrap .content .layer_popup.send_popup .layer_wrap .nodata {
  height: auto;
  overflow: hidden;
  color: white;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .layer_popup.send_popup .layer_wrap .nodata button {
  background-color: #73787E;
  padding: 0.8rem 1.4rem;
  margin-top: 1.8rem;
  border-radius: 0.8rem;
}
html body section#bodyWrap .content .layer_popup.send_popup .point_wrap {
  padding-top: 5px;
}
html body section#bodyWrap .content .layer_popup.send_popup .btn_ui {
  width: auto;
  height: 34px;
  padding: 0 15px;
  border-radius: 2px;
  font-weight: normal;
  line-height: 34px;
}
html body section#bodyWrap .content .wrong_list .list {
  background-color: transparent !important;
  border-radius: 0 !important;
}
html body section#bodyWrap .content .wrong_list .list .accordion {
  padding: 15px 18px !important;
  margin: 0 !important;
  margin-top: 5px !important;
  border-radius: 2px;
}
html body section#bodyWrap .content .wrong_list .list .accordion:first-child {
  margin-top: 0 !important;
}
html body section#bodyWrap .content .wrong_list .list .panel {
  background-color: transparent !important;
}
html body section#bodyWrap .content .wrong_list .list .panel ul li {
  margin: 0 !important;
  margin-top: 2px !important;
}
html body section#bodyWrap .content .wrong_list .list .panel ul li:hover a,
html body section#bodyWrap .content .wrong_list .list .panel ul li:focus a {
  border-color: transparent;
}
html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li {
  margin-bottom: 5px !important;
  border: none;
}
html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 2px;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: bold;
}
html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li:last-child {
  margin-bottom: 0 !important;
}
html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li:not(.disabled) {
  background: transparent !important;
}
html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li:not(.disabled).middle a {
  background: #00999a;
}
html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li:not(.disabled).high a {
  background: #1240ab;
}
html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li:not(.disabled) a::after {
  content: "▼";
  margin-right: 0.4rem;
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
  transition: transform 0.3s ease;
}
html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul li:not(.disabled) a.on::after {
  transform: rotate(-180deg);
}
html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul .cnt {
  background: transparent !important;
  border-top: none;
}
html body section#bodyWrap .content .inset_wrap.mystudy_wrap .chapter_list ul .cnt dl {
  background-color: white;
  margin-top: 2px;
  border-top: none;
  border-radius: 2px;
}
html body section#bodyWrap .content .inset_wrap.test_list .list ul li .title .btn_ui {
  margin-right: 10px;
}
html body section#bodyWrap .content .inset_wrap.test_list .list ul li:not(.disabled) a {
  color: white;
}
html body section#bodyWrap .content .testresult_list .list ul li .days dt {
  margin-top: 1.2rem !important;
}
html body section#bodyWrap .content .testresult_list .list ul li .days dd {
  line-height: 40px !important;
}
html body section#bodyWrap .content .samtest_div {
  padding: 0;
  padding-top: 28px;
}
html body section#bodyWrap .content .samtest_div .two_area_list ul .item {
  background-color: #1C1D1F;
  border: 1px solid #474C52;
}
html body section#bodyWrap .content .samtest_div .two_area_list ul .item .title .right_area {
  top: 15px;
}
html body section#bodyWrap .content .samtest_div .two_area_list ul .item .title .right_area li {
  margin-bottom: 0;
}
html body section#bodyWrap .content .samtest_div .two_area_list ul .item .title .right_area li .types dd {
  width: 30px;
}
html body section#bodyWrap .content .samtest_div .two_area_list ul .item .title .right_area li dt {
  height: 30px;
  line-height: 30px;
}
html body section#bodyWrap .content .samtest_div .two_area_list ul .item .title .right_area li dd {
  height: 30px;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: bold;
  line-height: 30px;
}
html body section#bodyWrap .content .samtest_div .two_area_list ul .item .sub {
  border-top: 0;
}
html body section#bodyWrap .content .samtest_div .two_area_list ul .item .sub li {
  margin-bottom: 0;
}
html body section#bodyWrap .content .samtest_div .two_area_list ul .item .sub a {
  background: #504BFF;
  border-radius: 5em;
  font: 1.3rem/1.6rem "Spoqa Han Sans Neo", "sans-serif";
  line-height: 3.6rem;
}
html body section#bodyWrap .content .samtest_result .exam_list .list .togglebtn {
  cursor: pointer;
}
html body section#bodyWrap .content .samtest_result .exam_list .list .sub {
  height: 4.4rem !important;
}
html body section#bodyWrap .content .samtest_result .exam_list .list .sub ul li {
  margin-bottom: 0;
  border: none;
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .tasty_list .ex ul li {
  background-color: transparent;
  border: none !important;
  border-radius: 0 !important;
}
html body section#bodyWrap .content .tasty_list .ex ul li a {
  background: none;
  padding: 15px 18px;
  border-radius: 2px;
  color: white;
}
html body section#bodyWrap .content .tasty_list .ex ul li a h5 span {
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: bold;
}
html body section#bodyWrap .content .tasty_list .ex ul li a .level_bundle {
  display: flex;
  align-items: center;
}
html body section#bodyWrap .content .tasty_list .ex ul li a .level_bundle::after {
  content: "▼";
  margin-left: 1.8rem;
  margin-right: 0.4rem;
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
  transition: transform 0.3s ease;
}
html body section#bodyWrap .content .tasty_list .ex ul li a.on .level_bundle::after {
  transform: rotate(-180deg);
}
html body section#bodyWrap .content .tasty_list .ex ul li .cnt {
  background-color: transparent !important;
  border-top: none;
}
html body section#bodyWrap .content .tasty_list .ex ul li .cnt dl {
  background-color: white;
  margin-top: 2px;
  border-top: none;
  border-radius: 2px;
}
html body section#bodyWrap .content .gallery_default_wrapper .list #galleryList ul li {
  border: none !important;
  border-radius: 0.8rem;
  overflow: hidden;
}
html body section#bodyWrap .content .gallery_default_wrapper .list #galleryList ul li .thumb img {
  height: 100%;
}
html body section#bodyWrap .content .gallery_default_wrapper .list #galleryList ul li .title {
  background-color: #474C52 !important;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  line-height: 58px;
}
html body section#bodyWrap .content .myclass_wrap .find_teacher_wrap .list_wrap,
html body section#bodyWrap .content .myclass_wrap .class_wrap .list_wrap {
  background-color: transparent !important;
  border-radius: 0;
}
html body section#bodyWrap .content .myclass_wrap .find_teacher_wrap .list_wrap .searchfrm,
html body section#bodyWrap .content .myclass_wrap .class_wrap .list_wrap .searchfrm {
  justify-content: space-between;
  padding: 1.8rem 0 !important;
  border-bottom: none;
}
html body section#bodyWrap .content .myclass_wrap .find_teacher_wrap .list_wrap .searchfrm .select_ui,
html body section#bodyWrap .content .myclass_wrap .class_wrap .list_wrap .searchfrm .select_ui {
  width: 15%;
}
html body section#bodyWrap .content .myclass_wrap .find_teacher_wrap .list_wrap .searchfrm .select_ui #category,
html body section#bodyWrap .content .myclass_wrap .class_wrap .list_wrap .searchfrm .select_ui #category {
  height: auto;
  background-color: #474C52;
  padding: 0.7rem;
  margin-top: 0;
  border: 1px solid white;
  border-radius: 0.4rem;
  color: white;
}
html body section#bodyWrap .content .myclass_wrap .find_teacher_wrap .list_wrap .searchfrm #search,
html body section#bodyWrap .content .myclass_wrap .class_wrap .list_wrap .searchfrm #search {
  width: 75%;
  height: auto;
  background-color: #474C52;
  padding: 0.8rem;
  margin-top: 0;
  border: 1px solid white;
  border-radius: 0.4rem;
  color: white;
}
html body section#bodyWrap .content .myclass_wrap .find_teacher_wrap .list_wrap .searchfrm .search_btn,
html body section#bodyWrap .content .myclass_wrap .class_wrap .list_wrap .searchfrm .search_btn {
  width: 10% !important;
  height: auto !important;
  position: unset !important;
  background-color: #7E36FF !important;
  margin-top: 0 !important;
  border-radius: 0.4rem;
  color: white !important;
}
html body section#bodyWrap .content .myclass_wrap .find_teacher_wrap .list_wrap table,
html body section#bodyWrap .content .myclass_wrap .class_wrap .list_wrap table {
  background-color: transparent !important;
}
html body section#bodyWrap .content .myclass_wrap .find_teacher_wrap .list_wrap table thead,
html body section#bodyWrap .content .myclass_wrap .class_wrap .list_wrap table thead {
  background-color: #7E36FF !important;
}
html body section#bodyWrap .content .myclass_wrap .find_teacher_wrap .list_wrap table tbody tr,
html body section#bodyWrap .content .myclass_wrap .class_wrap .list_wrap table tbody tr {
  background-color: #474C52;
  border-top: 1px solid black;
}
html body section#bodyWrap .content .myclass_wrap .find_teacher_wrap .list_wrap table tbody tr .nodata,
html body section#bodyWrap .content .myclass_wrap .class_wrap .list_wrap table tbody tr .nodata {
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .myclass_wrap .find_teacher_wrap .list_wrap table tbody tr .join_btn,
html body section#bodyWrap .content .myclass_wrap .find_teacher_wrap .list_wrap table tbody tr .delete_btn,
html body section#bodyWrap .content .myclass_wrap .class_wrap .list_wrap table tbody tr .join_btn,
html body section#bodyWrap .content .myclass_wrap .class_wrap .list_wrap table tbody tr .delete_btn {
  background-color: #73787E;
  padding: 0.4rem 1rem;
  border-radius: 0.4rem;
}
html body section#bodyWrap .content .myclass_wrap .find_teacher_wrap .list_wrap .paging,
html body section#bodyWrap .content .myclass_wrap .class_wrap .list_wrap .paging {
  border-top: none;
}
html body section#bodyWrap .content .hof_head {
  background-image: url(../image/renewal/images/img_hof_confetti.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 0 -65px;
  width: 100%;
  padding-bottom: 120px;
}
html body section#bodyWrap .content .hof_head .head_subTitle {
  margin-top: 30px;
}
html body section#bodyWrap .content .hof_head .head_subTitle .qutation {
  margin-left: 180px;
  position: relative;
}
html body section#bodyWrap .content .hof_head .head_subTitle .qutation::before {
  content: "";
  display: block;
  width: 180px;
  height: 1px;
  background-color: #474C52;
  position: absolute;
  left: -195px;
  top: 8px;
}
html body section#bodyWrap .content .hof_head .head_subTitle .qutation p {
  margin-left: 25px;
  padding-top: 10px;
  font: 1.1rem/1.4rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .hof_head .head_userScore {
  width: 95%;
  height: 130px;
  border-radius: 0.5vw;
  background: linear-gradient(90deg, rgb(150, 98, 216) 34%, rgb(80, 75, 255) 100%);
  margin: 60px auto 80px auto;
  position: relative;
  color: white;
}
html body section#bodyWrap .content .hof_head .head_userScore .trophy {
  position: absolute;
  top: -90px;
  right: -10px;
}
html body section#bodyWrap .content .hof_head .head_userScore .trophy img {
  width: 70%;
}
html body section#bodyWrap .content .hof_head .head_userScore .rank {
  font: 2rem/2.5rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 300;
  width: 50%;
  float: left;
  padding: 45px 0 0 50px;
}
html body section#bodyWrap .content .hof_head .head_userScore .rank span:nth-child(2) {
  font: 3rem/3.8rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 700;
}
html body section#bodyWrap .content .hof_head .head_userScore .score {
  float: right;
  width: 40%;
  text-align: right;
  margin: 25px 45px 0 0;
  font: 2.5rem/3.1rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .hof_head .head_userScore .score ul {
  display: flex;
  justify-content: space-around;
}
html body section#bodyWrap .content .hof_head .head_userScore .score ul span {
  display: block;
  padding-top: 10px;
}
html body section#bodyWrap .content .hof_head .head_userScore .score ul span:first-child {
  font: 1.3rem/1.6rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .hof_head .head_userScore .score_high {
  float: right;
  width: 30%;
  text-align: right;
  margin: 25px 60px 0 0;
  font: 2.5rem/3.1rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .hof_head .head_userScore .score_high ul {
  display: flex;
  justify-content: space-around;
}
html body section#bodyWrap .content .hof_head .head_userScore .score_high ul span {
  display: block;
  padding-top: 10px;
}
html body section#bodyWrap .content .hof_head .head_userScore .score_high ul span:first-child {
  font: 1.3rem/1.6rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .hof_head .head_title {
  margin-top: 50px;
}
html body section#bodyWrap .content .hof_head .head_title span {
  display: block;
  width: 70px;
  margin: auto;
  text-align: center;
  font: 2rem/2.5rem "Spoqa Han Sans Neo", "sans-serif";
  color: white;
  position: relative;
}
html body section#bodyWrap .content .hof_head .head_title span::before {
  content: "";
  display: block;
  width: 200px;
  height: 1px;
  background-color: #474C52;
  position: absolute;
  left: -220px;
  top: 12px;
}
html body section#bodyWrap .content .hof_head .head_title span::after {
  content: "";
  display: block;
  width: 200px;
  height: 1px;
  background-color: #474C52;
  position: absolute;
  right: -220px;
  top: 12px;
}
html body section#bodyWrap .content .hof_head .head_title .title_img {
  width: 350px;
  margin: auto;
  text-align: center;
  position: relative;
  padding-top: 10px;
}
html body section#bodyWrap .content .hof_head .head_title .title_img img {
  width: 70%;
}
html body section#bodyWrap .content .hof_head .head_title .title_img::after {
  content: "";
  display: block;
  width: 515px;
  height: 1px;
  background-color: #474C52;
  position: absolute;
  bottom: -20px;
  left: -80px;
}
html body section#bodyWrap .content .hof_content .cont_tab ul {
  width: 650px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}
html body section#bodyWrap .content .hof_content .cont_tab ul li {
  line-height: 40px;
  border: 1px solid #474C52;
  box-sizing: border-box;
  flex-grow: 1;
  cursor: pointer;
}
html body section#bodyWrap .content .hof_content .cont_tab ul li:nth-child(2) {
  border-left: 0;
  border-right: 0;
}
html body section#bodyWrap .content .hof_content .cont_tab ul li.on {
  background-color: #474C52;
  color: white;
}
html body section#bodyWrap .content .hof_content .cont_tab_high ul {
  width: 400px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}
html body section#bodyWrap .content .hof_content .cont_tab_high ul li {
  line-height: 40px;
  border: 1px solid #474C52;
  box-sizing: border-box;
  flex-grow: 1;
  cursor: pointer;
}
html body section#bodyWrap .content .hof_content .cont_tab_high ul li.on {
  background-color: #474C52;
  color: white;
}
html body section#bodyWrap .content .hof_content .cont_rangkingWrap {
  margin-top: 50px;
}
html body section#bodyWrap .content .hof_content .cont_rangkingWrap ul {
  width: 650px;
  margin: auto;
  justify-content: space-between;
  display: none;
}
html body section#bodyWrap .content .hof_content .cont_rangkingWrap ul li {
  width: 200px;
  height: 470px;
  color: white;
  font-weight: 300;
  text-align: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
html body section#bodyWrap .content .hof_content .cont_rangkingWrap ul li p {
  display: block;
  padding-top: 15px;
}
html body section#bodyWrap .content .hof_content .cont_rangkingWrap ul li p span {
  display: block;
}
html body section#bodyWrap .content .hof_content .cont_rangkingWrap ul li p span:first-child {
  height: 15px;
  font: 1.2rem/1.5rem "Spoqa Han Sans Neo", "sans-serif";
  color: #73787E;
}
html body section#bodyWrap .content .hof_content .cont_rangkingWrap ul li p span:last-child {
  height: 30px;
  font: 2.5rem/3.1rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .hof_content .cont_rangkingWrap ul li div {
  font: 2.5rem/3.1rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 300;
}
html body section#bodyWrap .content .hof_content .cont_rangkingWrap ul li div span {
  display: inline-block;
  padding-right: 5px;
  font: 3rem/3.8rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .hof_content .cont_rangkingWrap ul li.rank-first {
  background-image: url(../image/renewal/images/img_hof_first.png);
}
html body section#bodyWrap .content .hof_content .cont_rangkingWrap ul li.rank-first .first_yellow {
  display: block;
  width: 52px;
  height: 75px;
  margin: 35px auto;
  padding-top: 30px;
  color: #474C52;
  font-weight: 700;
  background-image: url(../image/renewal/images/img_hof_first_yellow.png);
  background-size: 75%;
  background-repeat: no-repeat;
  background-position: 7px 11px;
}
html body section#bodyWrap .content .hof_content .cont_rangkingWrap ul li.rank-first div {
  margin-top: 37px;
}
html body section#bodyWrap .content .hof_content .cont_rangkingWrap ul li.rank-second {
  background-image: url(../image/renewal/images/img_hof_second.png);
  order: -1;
  margin-top: 40px;
  padding-top: 50px;
}
html body section#bodyWrap .content .hof_content .cont_rangkingWrap ul li.rank-second p {
  margin-top: 65px;
}
html body section#bodyWrap .content .hof_content .cont_rangkingWrap ul li.rank-second div {
  margin-top: 48px;
}
html body section#bodyWrap .content .hof_content .cont_rangkingWrap ul li.rank-third {
  background-image: url(../image/renewal/images/img_hof_second.png);
  margin-top: 40px;
  padding-top: 50px;
}
html body section#bodyWrap .content .hof_content .cont_rangkingWrap ul li.rank-third p {
  margin-top: 65px;
}
html body section#bodyWrap .content .hof_content .cont_rangkingWrap ul li.rank-third div {
  margin-top: 48px;
}
html body section#bodyWrap .content .hof_content .cont_rangkingWrap ul.on {
  display: flex;
}
html body section#bodyWrap .content .hof_list .list_btns {
  width: 400px;
  height: 50px;
  display: flex;
  justify-content: space-between;
  margin-left: 30%;
  float: left;
}
html body section#bodyWrap .content .hof_list .list_btns .btns {
  color: #EAEBED;
  background-color: #474C52;
  width: 30px;
  height: 30px;
  border-radius: 0.2vw;
}
html body section#bodyWrap .content .hof_list .list_btns .btns img {
  width: 70%;
  translate: 0 2px;
}
html body section#bodyWrap .content .hof_list .list_btns p {
  text-align: center;
  width: 200px;
  color: white;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .hof_list .list_btns .hasDatepicker {
  display: none;
}
html body section#bodyWrap .content .hof_list .list_btns .ui-datepicker-trigger {
  color: #EAEBED;
  background-color: #474C52;
  width: 30px;
  height: 30px;
  border-radius: 0.2vw;
}
html body section#bodyWrap .content .hof_list .list_btns .ui-datepicker-trigger img {
  width: 20px;
  height: 20px;
}
html body section#bodyWrap .content .hof_list .list_select {
  width: 120px;
  float: left;
  margin: 5px 0 0 20px;
}
html body section#bodyWrap .content .hof_list .list_select label {
  padding-top: 5px;
}
html body section#bodyWrap .content .hof_list .list_select .sub_list {
  width: 80px;
  background-color: black;
  color: #474C52;
  border-color: #474C52;
  border-radius: 0.2vw;
}
html body section#bodyWrap .content .hof_list .list_select label {
  padding-top: 5px;
}
html body section#bodyWrap .content .hof_list .list_select .sub_list {
  width: 80px;
  background-color: black;
  color: #474C52;
  border-color: #474C52;
  border-radius: 0.2vw;
}
html body section#bodyWrap .content .hof_list .list_list .user_score {
  line-height: 60px;
  clear: both;
  border-bottom: 1px solid #474C52;
}
html body section#bodyWrap .content .hof_list .list_list .user_score:first-child {
  border-top: 2px solid #474C52;
  margin-top: 25px;
}
html body section#bodyWrap .content .hof_list .list_list .user_score li {
  height: 60px;
  text-align: center;
  width: 11%;
  float: left;
  text-align: center;
}
html body section#bodyWrap .content .hof_list .list_list .user_score li:first-child img {
  width: 27%;
}
html body section#bodyWrap .content .hof_list .list_list .user_score li:nth-child(2) {
  width: 13%;
}
html body section#bodyWrap .content .hof_list .list_list .user_score li:nth-child(3) {
  width: 13%;
}
html body section#bodyWrap .content .hof_list .list_list .user_score li:nth-child(4) {
  width: 6%;
}
html body section#bodyWrap .content .hof_list .list_list .user_score li:nth-child(5) {
  width: 10%;
}
html body section#bodyWrap .content .hof_list .list_list .user_score li:nth-child(6) {
  width: 10%;
}
html body section#bodyWrap .content .hof_list .list_list .user_score li:nth-child(7) {
  width: 10%;
}
html body section#bodyWrap .content .hof_list .list_list .user_score li:nth-child(8) {
  width: 10%;
}
html body section#bodyWrap .content .hof_list .list_list .user_score li:nth-child(5) {
  color: #9FA4A8;
}
html body section#bodyWrap .content .hof_list .list_list .user_score li:nth-child(6) {
  color: #9FA4A8;
}
html body section#bodyWrap .content .hof_list .list_list .user_score li:nth-child(7) {
  color: #9FA4A8;
}
html body section#bodyWrap .content .hof_list .list_list .user_score li:nth-child(8) {
  color: #9FA4A8;
}
html body section#bodyWrap .content .hof_list .list_list .user_score li img {
  width: 70%;
  translate: 0 5px;
}
html body section#bodyWrap .content .hof_list .list_list_high .user_score {
  line-height: 60px;
  clear: both;
  border-bottom: 1px solid #474C52;
}
html body section#bodyWrap .content .hof_list .list_list_high .user_score:first-child {
  border-top: 2px solid #474C52;
  margin-top: 25px;
}
html body section#bodyWrap .content .hof_list .list_list_high .user_score li {
  height: 60px;
  text-align: center;
  width: 12%;
  float: left;
  text-align: center;
}
html body section#bodyWrap .content .hof_list .list_list_high .user_score li:first-child img {
  width: 25%;
}
html body section#bodyWrap .content .hof_list .list_list_high .user_score li:nth-child(2) {
  width: 14%;
}
html body section#bodyWrap .content .hof_list .list_list_high .user_score li:nth-child(3) {
  width: 14%;
}
html body section#bodyWrap .content .hof_list .list_list_high .user_score li:nth-child(4) {
  width: 7%;
}
html body section#bodyWrap .content .hof_list .list_list_high .user_score li:nth-child(5) {
  color: #9FA4A8;
}
html body section#bodyWrap .content .hof_list .list_list_high .user_score li:nth-child(6) {
  color: #9FA4A8;
}
html body section#bodyWrap .content .hof_list .list_list_high .user_score li:nth-child(7) {
  color: #9FA4A8;
}
html body section#bodyWrap .content .hof_list .list_list_high .user_score li img {
  width: 70%;
  translate: 0 5px;
}
html body section#bodyWrap .content .exp_wrap {
  font: 1.6rem/2rem "Spoqa Han Sans Neo", "sans-serif";
  position: relative;
  padding: 90px 0 55px 0;
  border-bottom: 0;
}
html body section#bodyWrap .content .exp_wrap::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../image/renewal/images/img_hof_quote.png);
  width: 15px;
  height: 14px;
  top: 60px;
  left: 220px;
}
html body section#bodyWrap .content .exp_wrap::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../image/renewal/images/img_hof_quote.png);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  width: 15px;
  height: 14px;
  top: 60px;
  right: 220px;
}
html body section#bodyWrap .content .guide_list .group_title {
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  position: relative;
  margin-left: 50px;
}
html body section#bodyWrap .content .guide_list .group_title::before {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  top: 5px;
  left: -25px;
  border-bottom: 7px solid transparent;
  border-top: 7px solid transparent;
  border-left: 12px solid #9662D8;
  border-right: 20px solid transparent;
}
html body section#bodyWrap .content .guide_list .guide_listup {
  width: 85%;
  margin: auto;
  display: flex;
  justify-content: space-around;
}
html body section#bodyWrap .content .guide_list .guide_listup li .guide_images {
  width: 180px;
  height: 180px;
  border-radius: 1vw;
  background-color: #9662D8;
  position: relative;
}
html body section#bodyWrap .content .guide_list .guide_listup li .guide_images img {
  width: 60%;
}
html body section#bodyWrap .content .guide_list .guide_listup li .guide_images::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  top: 76px;
  right: -36px;
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  border-left: 16px solid #9662D8;
  border-right: 20px solid transparent;
}
html body section#bodyWrap .content .guide_list .guide_listup li:first-child .guide_images {
  padding-top: 25px;
}
html body section#bodyWrap .content .guide_list .guide_listup li:nth-child(2) .guide_images {
  padding: 32px 0 0 15px;
}
html body section#bodyWrap .content .guide_list .guide_listup li:last-child .guide_images {
  padding-top: 32px;
}
html body section#bodyWrap .content .guide_list .guide_listup li:last-child .guide_images::after {
  border: 0;
}
html body section#bodyWrap .content .guide_list .guide_listup li .guide_text span {
  display: block;
}
html body section#bodyWrap .content .guide_list .guide_listup li .guide_text span:first-child {
  font-weight: 500;
  color: #F7F8FA;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .guide_list .guide_listup li .guide_text span:last-child {
  margin-top: 5px;
  color: #CACDD2;
  font: 1.5rem/1.9rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .guide_list .green_icons .group_title::before {
  border-left: 12px solid #7E36FF;
}
html body section#bodyWrap .content .guide_list .green_icons li .guide_images {
  background-color: #7E36FF;
}
html body section#bodyWrap .content .guide_list .green_icons li .guide_images::after {
  border-left: 16px solid #7E36FF;
}
html body section#bodyWrap .content .guide_list .green_icons li:nth-child(2) .guide_images {
  padding: 30px 0 0 10px;
}
html body section#bodyWrap .content .guide_list .green_icons li:nth-child(2) .guide_images img {
  width: 80%;
}
html body section#bodyWrap .content .study_point_wrap {
  /* 포인트 요약 섹션 */
  /* 포인트 전환 버튼 */
  /* 포인트 전환 버튼 애니메이션 */
}
html body section#bodyWrap .content .study_point_wrap .point_summary_wrap {
  background: #F5F5F5;
  border-radius: 1.2rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
html body section#bodyWrap .content .study_point_wrap .point_summary_wrap::after {
  content: "STUDY POINT";
  scale: 0.9;
  line-height: 2;
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2rem);
  font-weight: 500;
  color: white;
  position: absolute;
  display: block;
  width: 50rem;
  height: 4rem;
  background: linear-gradient(135deg, #504BFF 0%, #7E36FF 100%);
  top: 25%;
  right: 0;
  translate: 40% -75%;
  rotate: 45deg;
  transform-origin: center center;
  bottom: 0;
  z-index: 1;
  box-shadow: 0px 5px 10px hsla(242, 100%, 65%, 0.4);
}
html body section#bodyWrap .content .study_point_wrap .point_summary_wrap_inner {
  padding: 1rem;
  background: white;
  border-radius: 1rem;
}
html body section#bodyWrap .content .study_point_wrap .summary_info .point_info {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
html body section#bodyWrap .content .study_point_wrap .summary_info dl.current_point {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 3rem;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
html body section#bodyWrap .content .study_point_wrap .summary_info dl.current_point dt {
  color: #504BFF;
  font: 1.6rem/2rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 500;
  margin-bottom: 0.8rem;
}
html body section#bodyWrap .content .study_point_wrap .summary_info dl.current_point dd.point_value {
  font: 4rem/5rem "Spoqa Han Sans Neo", "sans-serif";
  font-family: pretendard;
  font-weight: 800;
  color: #504BFF;
  margin: 0;
}
html body section#bodyWrap .content .study_point_wrap .summary_info dl.current_point dd.point_value span {
  padding-left: 0.3rem;
}
html body section#bodyWrap .content .study_point_wrap .summary_info .summary_row {
  display: flex;
  justify-content: space-between;
}
html body section#bodyWrap .content .study_point_wrap .summary_info .summary_row dl {
  flex-basis: 33%;
  margin: 0;
  padding: 1rem 0;
  padding-left: 4rem;
}
html body section#bodyWrap .content .study_point_wrap .summary_info .summary_row dl dt {
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
  color: #73787E;
  margin-bottom: 0.4rem;
  font-weight: 500;
}
html body section#bodyWrap .content .study_point_wrap .summary_info .summary_row dl dd.point_value {
  font: 2.4rem/3rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 700;
  color: #504BFF;
  filter: brightness(2);
  margin: 0;
}
html body section#bodyWrap .content .study_point_wrap .point_change_btn {
  display: block;
  margin: 0.5rem 0;
  background: linear-gradient(135deg, #504BFF 0%, #7E36FF 100%);
  width: 100%;
  max-width: 300px;
  height: auto;
  font-size: clamp(1.3rem, 4vw, 1.5rem);
  font-weight: 500;
  border-radius: 1rem;
  padding-left: 5.1rem;
  line-height: 1.5;
  transition: opacity 0.3s ease;
  position: relative;
  color: white;
  border: none;
  cursor: pointer;
}
html body section#bodyWrap .content .study_point_wrap .point_change_btn:hover {
  opacity: 0.9;
}
html body section#bodyWrap .content .study_point_wrap .point_change_btn:hover img {
  scale: 1.04;
  animation: float 1.5s ease-in-out infinite;
}
html body section#bodyWrap .content .study_point_wrap .point_change_btn img {
  position: absolute;
  width: 5rem;
  aspect-ratio: 1/1;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-60%);
  filter: drop-shadow(2px 4px 0px rgba(0, 0, 0, 0.3));
  transition: 0.3s ease;
}
@keyframes float {
  0%, 100% {
    transform: translateY(-60%);
  }
  50% {
    transform: translateY(-65%);
  }
}
html body section#bodyWrap .content .study_point_wrap .point_history_card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 1.2rem;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.1);
  /* 포인트 히스토리 필터 */
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .point_history_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #F5F5F5;
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .section_icon {
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  margin-right: 0.8rem;
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .section_title {
  margin: 0;
  font: 1.6rem/2rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 600;
  color: #333;
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .point_history_wrap {
  margin: 0;
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .point_change.plus {
  color: #00bab4;
  font-weight: 700;
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .point_change.minus {
  color: #ff727f;
  font-weight: 700;
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .date {
  font: 1.2rem/1.5rem "Spoqa Han Sans Neo", "sans-serif";
  color: #666;
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .balance {
  font-weight: 700;
  color: #504BFF;
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .point_history_filter {
  margin-bottom: 2rem;
  border: 1px solid #e9ecef;
  border-radius: 0.8rem;
  overflow: hidden;
  /* 슬라이드 애니메이션 */
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .point_history_filter .filter_toggle {
  padding: 1.5rem;
  cursor: pointer;
  background: #F5F5F5;
  transition: background-color 0.2s ease;
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .point_history_filter .filter_toggle:hover {
  background: #e9ecef;
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .point_history_filter .filter_toggle .filter_display {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  align-items: center;
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .point_history_filter .filter_toggle .filter_display .filter_text {
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
  color: #333;
  font-weight: 500;
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .point_history_filter .filter_toggle .filter_display .filter_arrow {
  transition: transform 0.3s ease;
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .point_history_filter .filter_toggle .filter_display .filter_arrow.rotated {
  transform: rotate(180deg);
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .point_history_filter .filter_options {
  background: white;
  border-top: 1px solid #e9ecef;
  padding: 2rem;
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .point_history_filter .filter_options .filter_group {
  flex-basis: 33%;
  border-right: 1px dashed #e0e0e0;
  padding: 0 2rem;
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .point_history_filter .filter_options .filter_group:last-child {
  margin-bottom: 0;
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .point_history_filter .filter_options .filter_group .filter_group_title {
  font: 1.3rem/1.6rem "Spoqa Han Sans Neo", "sans-serif";
  color: #666;
  margin: 0 0 1rem 0;
  font-weight: 500;
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .point_history_filter .filter_options .filter_group .filter_items {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  flex-wrap: wrap;
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .point_history_filter .filter_options .filter_group .filter_items .filter_item {
  width: 70px;
  font: 1.3rem/1.6rem "Spoqa Han Sans Neo", "sans-serif";
  padding: 0.8rem 1.6rem;
  border: 1px solid #ddd;
  border-radius: 1.5rem;
  background: white;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .point_history_filter .filter_options .filter_group .filter_items .filter_item:hover {
  border-color: #504BFF;
  color: #504BFF;
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .point_history_filter .filter_options .filter_group .filter_items .filter_item.active {
  background: #504BFF;
  border-color: #504BFF;
  color: white;
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .point_history_filter .filter_options {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  display: flex;
  justify-content: space-around;
}
html body section#bodyWrap .content .study_point_wrap .point_history_card .point_history_filter .filter_options.show {
  max-height: 300px;
}
html body section#bodyWrap .content .point_conversion_modal {
  width: 52rem;
  /* 사용자 정보 섹션 */
  /* 전환 섹션 */
  /* 모달 푸터 */
}
html body section#bodyWrap .content .point_conversion_modal .user_info_section {
  background: #F5F5F5;
  border-radius: 1.2rem;
  padding: 2.4rem;
  margin-bottom: 2.4rem;
}
html body section#bodyWrap .content .point_conversion_modal .user_info_section .user_id, html body section#bodyWrap .content .point_conversion_modal .user_info_section .current_points {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5rem;
}
html body section#bodyWrap .content .point_conversion_modal .user_info_section .user_id:last-child, html body section#bodyWrap .content .point_conversion_modal .user_info_section .current_points:last-child {
  margin-bottom: 0;
}
html body section#bodyWrap .content .point_conversion_modal .user_info_section .user_id .label, html body section#bodyWrap .content .point_conversion_modal .user_info_section .current_points .label {
  font: 1.5rem/1.9rem "Spoqa Han Sans Neo", "sans-serif";
  color: #666;
  font-weight: 500;
}
html body section#bodyWrap .content .point_conversion_modal .user_info_section .user_id .value, html body section#bodyWrap .content .point_conversion_modal .user_info_section .current_points .value {
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 700;
  color: #504BFF;
}
html body section#bodyWrap .content .point_conversion_modal .user_info_section .user_id .value.id, html body section#bodyWrap .content .point_conversion_modal .user_info_section .current_points .value.id {
  color: #73787E;
  font-weight: 400;
}
html body section#bodyWrap .content .point_conversion_modal .user_info_section .user_id #currentPointsModal, html body section#bodyWrap .content .point_conversion_modal .user_info_section .current_points #currentPointsModal {
  font-size: 4rem;
  font-weight: 900;
  font-family: pretendard;
}
html body section#bodyWrap .content .point_conversion_modal .conversion_section {
  /* 금액 버튼 그룹 */
  /* 전환 미리보기 */
}
html body section#bodyWrap .content .point_conversion_modal .conversion_section .input_section {
  margin-bottom: 2.4rem;
}
html body section#bodyWrap .content .point_conversion_modal .conversion_section .input_section label {
  display: block;
  font: 1.5rem/1.9rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 500;
  color: #333;
  margin-bottom: 1.2rem;
}
html body section#bodyWrap .content .point_conversion_modal .conversion_section .input_section .input_wrapper {
  position: relative;
}
html body section#bodyWrap .content .point_conversion_modal .conversion_section .input_section .input_wrapper input {
  width: 100%;
  height: 5.2rem;
  padding: 0 4rem 0 1.6rem;
  border: 2px solid rgba(80, 75, 255, 0.3215686275);
  border-radius: 0.8rem;
  font: 1.6rem/2rem "Spoqa Han Sans Neo", "sans-serif";
  color: #333;
}
html body section#bodyWrap .content .point_conversion_modal .conversion_section .input_section .input_wrapper input:focus {
  outline: none;
  border-color: #504BFF;
}
html body section#bodyWrap .content .point_conversion_modal .conversion_section .input_section .input_wrapper input::placeholder {
  color: #9FA4A8;
}
html body section#bodyWrap .content .point_conversion_modal .conversion_section .input_section .input_wrapper .unit {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  font: 1.6rem/2rem "Spoqa Han Sans Neo", "sans-serif";
  color: #666;
  font-weight: 500;
}
html body section#bodyWrap .content .point_conversion_modal .conversion_section .input_section .min_notice {
  margin-top: 0.8rem;
  font: 1.3rem/1.6rem "Spoqa Han Sans Neo", "sans-serif";
  color: #9FA4A8;
  margin-bottom: 0;
}
html body section#bodyWrap .content .point_conversion_modal .conversion_section .input_section .min_notice.error_msg {
  color: #7E36FF;
}
html body section#bodyWrap .content .point_conversion_modal .conversion_section .amount_buttons {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}
html body section#bodyWrap .content .point_conversion_modal .conversion_section .amount_buttons .amount_btn {
  flex: 1;
  height: 4.4rem;
  background: #F5F5F5;
  border: 2px solid #e9ecef;
  border-radius: 0.8rem;
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
}
html body section#bodyWrap .content .point_conversion_modal .conversion_section .amount_buttons .amount_btn.max {
  border: 2px solid #504bff !important;
  color: #504bff !important;
  background: #fff !important;
}
html body section#bodyWrap .content .point_conversion_modal .conversion_section .amount_buttons .amount_btn.max:hover {
  background: #504bff !important;
  color: #fff !important;
}
html body section#bodyWrap .content .point_conversion_modal .conversion_section .amount_buttons .amount_btn:hover {
  background: #504BFF;
  color: white;
  border-color: #504BFF;
}
html body section#bodyWrap .content .point_conversion_modal .conversion_section .conversion_preview {
  background: #F5F5F5;
  border-radius: 1.2rem;
  padding: 2rem;
}
html body section#bodyWrap .content .point_conversion_modal .conversion_section .conversion_preview .preview_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}
html body section#bodyWrap .content .point_conversion_modal .conversion_section .conversion_preview .preview_item:last-child {
  margin-bottom: 0;
}
html body section#bodyWrap .content .point_conversion_modal .conversion_section .conversion_preview .preview_item .label {
  font: 1.5rem/1.9rem "Spoqa Han Sans Neo", "sans-serif";
  color: #666;
  font-weight: 500;
}
html body section#bodyWrap .content .point_conversion_modal .conversion_section .conversion_preview .preview_item .value {
  font: 1.6rem/2rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 700;
  color: #504BFF;
}
html body section#bodyWrap .content .point_conversion_modal .modal_footer .modal_btn:disabled {
  background: #e9ecef;
  color: #9FA4A8;
  cursor: not-allowed;
}
html body section#bodyWrap .content .point_conversion_modal .modal_footer .modal_btn:disabled:hover {
  background: #e9ecef;
}
html body section#bodyWrap .content .membership_wrap .mem_top {
  margin-top: 32px;
}
html body section#bodyWrap .content .membership_wrap .mem_top .mem_top_img {
  text-align: center;
}
html body section#bodyWrap .content .membership_wrap .mem_top .mem_top_text {
  margin-top: 32px;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  text-align: center;
  color: white;
  position: relative;
}
html body section#bodyWrap .content .membership_wrap .mem_top .mem_top_text::after, html body section#bodyWrap .content .membership_wrap .mem_top .mem_top_text::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url(../image/renewal/images/img_hof_quote.png);
  width: 15px;
  height: 14px;
  top: -5px;
}
html body section#bodyWrap .content .membership_wrap .mem_top .mem_top_text::after {
  left: 230px;
}
html body section#bodyWrap .content .membership_wrap .mem_top .mem_top_text::before {
  right: 230px;
  transform: rotate(180deg);
}
html body section#bodyWrap .content .membership_wrap .mem_mid {
  margin-top: 72px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-inline: 16px;
  row-gap: 32px;
}
html body section#bodyWrap .content .membership_wrap .mem_mid .mem_mid_contents {
  display: flex;
  justify-content: center;
  column-gap: 48px;
  padding-inline: 24px;
  align-items: center;
  background-color: #27282C;
  border-radius: 8px;
  width: 447px;
  height: 127px;
  transition: all 0.3s;
}
html body section#bodyWrap .content .membership_wrap .mem_mid .mem_mid_contents:hover {
  transform: scale(1.03);
}
html body section#bodyWrap .content .membership_wrap .mem_mid .mem_mid_contents .cont_icon {
  width: 48px;
  height: 48px;
}
html body section#bodyWrap .content .membership_wrap .mem_mid .mem_mid_contents .cont_icon img {
  width: 100%;
  height: 100%;
}
html body section#bodyWrap .content .membership_wrap .mem_mid .mem_mid_contents .cont_txt_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  width: 283px;
}
html body section#bodyWrap .content .membership_wrap .mem_mid .mem_mid_contents .cont_txt_wrap .cont_title {
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  color: #B9B7FF;
  font-weight: 700;
}
html body section#bodyWrap .content .membership_wrap .mem_mid .mem_mid_contents .cont_txt_wrap .cont_text {
  color: #EAEBED;
}
html body section#bodyWrap .content .membership_wrap .mem_bttm {
  margin-top: 32px;
}
html body section#bodyWrap .content .membership_wrap .mem_bttm ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 16px;
  padding-inline: 48px;
}
html body section#bodyWrap .content .membership_wrap .mem_bttm ul li {
  list-style: disc;
  width: 45%;
  color: #73787E;
}
html body section#bodyWrap .content .membership_wrap .mem_bttm ul li .goMy {
  display: inline-block;
  padding-inline: 8px;
  color: #9FA4A8;
}
html body section#bodyWrap .content .membership_payment_wrap {
  margin-top: 60px;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_top {
  text-align: center;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_top .top_title {
  font: 2.1rem/2.6rem "Spoqa Han Sans Neo", "sans-serif";
  color: white;
  font-weight: 700;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_top .top_text {
  margin-top: 16px;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  color: #CACDD2;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_top .top_warning {
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  color: white;
  font-weight: 700;
  background-color: rgb(176, 64, 255);
  border-radius: 100vw;
  width: fit-content;
  padding: 16px 24px;
  margin: auto;
  margin-top: 16px;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  cursor: pointer;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .on {
  transform: scale(1.02);
  background: linear-gradient(90deg, rgb(80, 75, 255) 0%, rgb(176, 64, 255) 100%);
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .on > .cont_title {
  color: #F7F8FA !important;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .on > .cont_price {
  color: white !important;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .on > .cont_price span {
  color: #F7F8FA !important;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .on > .cont_price span.discount {
  background-color: #F7F8FA !important;
  color: #504BFF !important;
  font-weight: 500;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .on > .cont_inner {
  color: #EAEBED !important;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .on > .last::after {
  background: none;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .cont_description {
  position: relative;
  display: none;
  border-radius: 8px;
  background: linear-gradient(90deg, rgb(80, 75, 255) 0%, rgb(176, 64, 255) 100%);
  width: 100%;
  padding: 32px;
  cursor: pointer;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .cont_description > p {
  font: 2rem/2.5rem "Spoqa Han Sans Neo", "sans-serif";
  color: white;
  padding-left: 15px;
  padding-bottom: 5px;
  font-weight: 500;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .cont_description > p::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  width: 3px;
  height: 2.2rem;
  margin-left: 32px;
  background-color: #ffffff;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .cont_description > span {
  color: white;
  line-height: 1.5;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .year_plan {
  width: fit-content;
  margin: 0 auto;
  padding: 16px 32px;
  background-color: #504BFF;
  border-radius: 100vw;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  color: white;
  font-weight: 700;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .mid_contents {
  position: relative;
  display: flex;
  justify-content: flex-start;
  column-gap: 24px;
  align-items: center;
  padding-inline: 24px;
  background-color: #F7F8FA;
  width: 100%;
  height: 146px;
  border-radius: 8px;
  transition: all 0.3s;
  /* event 효과 */
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .mid_contents.last::after {
  content: "EVENT";
  padding: 0 2px;
  color: white;
  scale: 2.5 3;
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
  translate: -100% 80%;
  transform: rotate(336deg);
  background: linear-gradient(90deg, rgb(80, 75, 255) 0%, rgb(176, 64, 255) 100%);
  opacity: 0.8;
  animation: blink 1s infinite alternate;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .mid_contents.last.on::after {
  background: none !important;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .now {
  display: block !important;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .using {
  position: absolute;
  z-index: 10;
  display: none;
  top: -24px;
  background-color: #504BFF;
  width: 100px;
  height: 48px;
  line-height: 48px;
  border-radius: 100vw;
  text-align: center;
  color: white;
  font-size: 2rem;
  font-weight: 500;
  box-shadow: 4px 4px 15px rgba(25, 25, 25, 0.4);
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .cont_title {
  width: 190px;
  font: 2rem/2.5rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 700;
  color: #504BFF;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .cont_price {
  width: 250px;
  font: 2.8rem/3.5rem "Spoqa Han Sans Neo", "sans-serif";
  color: black;
  font-weight: 700;
  position: relative;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .cont_price span {
  display: inline-block;
  padding-left: 16px;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  color: #73787E;
  font-weight: medium;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .cont_price span.before_price {
  font-weight: 500;
  text-decoration: line-through;
  font-weight: bold;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .cont_price .discount {
  display: flex;
  width: 100px;
  text-align: start;
  padding: 2px 3px;
  font-weight: 500;
  background-color: #504BFF;
  color: white;
  border-radius: 5px;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .cont_price .vat {
  display: none;
  position: absolute;
  bottom: -20px;
  left: -12px;
  color: #9FA4A8;
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .cont_inner {
  color: #73787E;
  width: calc(100% - 250px - 190px);
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .cont_inner > ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 8px;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .cont_inner > ul > li {
  display: flex;
  column-gap: 8px;
  align-items: center;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .cont_inner > ul > li > img {
  width: 20px;
  height: 20px;
}
html body section#bodyWrap .content .membership_payment_wrap .payment_mid .cont_inner > ul > li > p {
  font: 1.6rem/2rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .content .payment_bttm {
  position: relative;
  margin-top: 72px;
  display: flex;
  justify-content: center;
}
html body section#bodyWrap .content .payment_bttm .tooltip_warning {
  display: none;
  position: absolute;
  top: -48px;
  font: 1.6rem/2rem "Spoqa Han Sans Neo", "sans-serif";
  color: white;
  font-weight: 700;
  background-color: rgb(176, 64, 255);
  border-radius: 8px;
  width: fit-content;
  padding: 8px 16px;
}
html body section#bodyWrap .content .payment_bttm .tooltip_warning::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  left: 195px;
  bottom: -25px;
  position: absolute;
  z-index: 1;
  width: 0;
  height: 0;
  border-top: 16px solid rgb(176, 64, 255);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid transparent;
}
html body section#bodyWrap .content .payment_bttm .purchase,
html body section#bodyWrap .content .payment_bttm .purchase_change,
html body section#bodyWrap .content .payment_bttm .goBack {
  border: 0;
  width: 320px;
  height: 72px;
  line-height: 72px;
  background-color: #9FA4A8;
  border-radius: 100vw;
  color: #474C52;
  font-size: 2.4rem;
  font-weight: 700;
  transition: all 0.3s;
}
html body section#bodyWrap .content .payment_bttm .purchase:hover,
html body section#bodyWrap .content .payment_bttm .purchase_change:hover,
html body section#bodyWrap .content .payment_bttm .goBack:hover {
  filter: brightness(1.2);
}
html body section#bodyWrap .content .payment_bttm .goBack {
  background-color: #73787E;
  color: #27282C;
  text-align: center;
  display: block;
}
html body section#bodyWrap .content .payment_bttm .btn_wrap {
  display: flex;
  justify-content: center;
  column-gap: 64px;
}
html body section#bodyWrap .content .payment_bttm .on {
  background-color: #504BFF;
  color: white;
}
html body section#bodyWrap .content .payment_bttm .off {
  display: none;
}
html body section#bodyWrap .buy_complete_wrap .big_title {
  color: #CACDD2;
  padding-bottom: 30px;
}
html body section#bodyWrap .buy_complete_wrap .big_title span {
  color: #9662D8;
}
html body section#bodyWrap .buy_complete_wrap .title_p {
  color: #9FA4A8;
  padding-bottom: 70px;
}
html body section#bodyWrap .buy_complete_wrap .two_area_list .title {
  padding: 40px;
  min-height: 120px;
}
html body section#bodyWrap .buy_complete_wrap .two_area_list .title h5 {
  font-size: 18px;
  font-weight: bold;
  padding-top: 10px;
}
html body section#bodyWrap .buy_complete_wrap .two_area_list .title h5 span {
  padding-top: 10px;
  color: #B9B7FF;
}
html body section#bodyWrap .buy_complete_wrap .two_area_list .title h5 small {
  color: #CACDD2;
  font-size: 14px;
}
html body section#bodyWrap .buy_complete_wrap .btn_ui {
  width: 240px;
  height: 64px;
  line-height: 64px;
  border-radius: 100vw;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
html body section#bodyWrap .buy_complete_wrap .home {
  padding-top: 80px;
  border: none;
}
html body section#bodyWrap .buy_complete_wrap li.item {
  width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 7px 7px 25px 25px;
  box-shadow: inset 1px 2px 9px rgba(255, 255, 255, 0.5098039216), 2px 2px 4px black;
  background: linear-gradient(313deg, #4b4b4b, transparent);
}
html body section#bodyWrap .buy_complete_wrap li .text {
  padding: 20px;
}
html body section#bodyWrap .membership_my_info_wrap .myInfo_title {
  margin-top: 32px;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 700;
  color: white;
}
html body section#bodyWrap .membership_my_info_wrap .myInfo_contents {
  margin-top: 32px;
  background-color: #27282C;
  width: 100%;
  padding: 32px;
  border-radius: 8px;
}
html body section#bodyWrap .membership_my_info_wrap .myInfo_contents span.cancellation {
  display: block;
  text-align: center;
  font: 1.5rem/1.9rem "Spoqa Han Sans Neo", "sans-serif";
  line-height: 1.5;
}
html body section#bodyWrap .membership_my_info_wrap .myInfo_contents .no_membership {
  color: #EAEBED;
  font: 1.6rem/2rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .membership_my_info_wrap .myInfo_contents .no_membership.cancellation {
  font: 2rem/2.5rem "Spoqa Han Sans Neo", "sans-serif";
  text-align: center;
  padding: 10px;
  padding-bottom: 30px;
}
html body section#bodyWrap .membership_my_info_wrap .myInfo_contents .yes_membership .btn_change {
  background-color: #504BFF;
  transform: translate(-100%);
  color: white;
  position: relative;
  padding: 3px 4px;
  border-radius: 4px;
  transition: all 0.3s;
}
html body section#bodyWrap .membership_my_info_wrap .myInfo_contents .yes_membership .btn_change:hover {
  filter: brightness(1.5);
}
html body section#bodyWrap .membership_my_info_wrap .myInfo_contents .yes_membership.cancellation {
  padding: 25px;
  background: repeating-linear-gradient(45deg, black, transparent 100px);
  margin-bottom: 20px;
}
html body section#bodyWrap .membership_my_info_wrap .myInfo_contents .yes_membership.cancellation > table {
  margin: 0 auto;
}
html body section#bodyWrap .membership_my_info_wrap .yes_membership > .cont_start {
  color: #EAEBED;
  font: 1.6rem/2rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .membership_my_info_wrap .yes_membership > .cont_start.cancellation {
  text-align: center;
}
html body section#bodyWrap .membership_my_info_wrap .yes_membership > table {
  margin-top: 32px;
}
html body section#bodyWrap .membership_my_info_wrap .yes_membership > table td {
  padding: 8px 0;
  color: #EAEBED;
  font: 1.6rem/2rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .membership_my_info_wrap .yes_membership > table td:first-child {
  padding-right: 72px;
}
html body section#bodyWrap .myInfo_btns .using,
html body section#bodyWrap .myInfo_btns .no_using {
  margin-top: 72px;
  display: flex;
  justify-content: center;
  column-gap: 64px;
}
html body section#bodyWrap .myInfo_btns .withdraw {
  margin-top: 32px !important;
}
html body section#bodyWrap .myInfo_btns .btn_change,
html body section#bodyWrap .myInfo_btns .btn_cancel,
html body section#bodyWrap .myInfo_btns .btn_start {
  width: 320px;
  height: 72px;
  font: 2rem/2.5rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 700;
  border-radius: 100vw;
  text-align: center;
  transition: all 0.3s;
}
html body section#bodyWrap .myInfo_btns .btn_change:hover,
html body section#bodyWrap .myInfo_btns .btn_cancel:hover,
html body section#bodyWrap .myInfo_btns .btn_start:hover {
  filter: brightness(1.2);
}
html body section#bodyWrap .myInfo_btns .btn_change,
html body section#bodyWrap .myInfo_btns .btn_start {
  color: white;
  background-color: #504BFF;
  line-height: 72px;
}
html body section#bodyWrap .myInfo_btns .btn_cancel {
  color: #27282C;
  background-color: #73787E;
}
html body section#bodyWrap .off {
  display: none !important;
}
html body section .myInfo_mem_modal {
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
}
html body section .myInfo_mem_modal.pay_change .mem_modal {
  width: fit-content;
  height: fit-content;
  display: block;
  background-color: transparent;
}
html body section .myInfo_mem_modal.pay_change .mem_modal .regi_card_title {
  text-align: center;
  padding: 25px;
  font: 2.4rem/3rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section .myInfo_mem_modal .mem_modal {
  width: 600px;
  height: 400px;
  position: fixed;
  z-index: 99;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  align-items: center;
  justify-content: center;
}
html body section .myInfo_mem_modal .mem_modal .modal_x {
  display: flex;
  position: absolute;
  top: 15px;
  right: 15px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 100vw;
}
html body section .myInfo_mem_modal .mem_modal .modal_x img {
  width: 32px;
  height: 32px;
  transition: all 0.8s;
}
html body section .myInfo_mem_modal .mem_modal .modal_x:hover img {
  transform: rotate(180deg);
}
html body section .myInfo_mem_modal .mem_modal img {
  width: 96px;
  height: 96px;
}
html body section .myInfo_mem_modal .mem_modal .modal_text_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  text-align: center;
}
html body section .myInfo_mem_modal .mem_modal .modal_text_wrap .modal_title {
  color: black;
  font: 2.4rem/3rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 700;
}
html body section .myInfo_mem_modal .mem_modal .modal_btns {
  display: flex;
  justify-content: center;
  column-gap: 32px;
}
html body section .myInfo_mem_modal .mem_modal .modal_btns .modal_btn_no,
html body section .myInfo_mem_modal .mem_modal .modal_btns .modal_btn_yes {
  width: 240px;
  height: 72px;
  border-radius: 100vw;
  font-weight: 700;
  font-size: 2rem;
  transition: all 0.3s;
}
html body section .myInfo_mem_modal .mem_modal .modal_btns .modal_btn_no:hover,
html body section .myInfo_mem_modal .mem_modal .modal_btns .modal_btn_yes:hover {
  filter: brightness(1.2);
}
html body section .myInfo_mem_modal .mem_modal .modal_btns .modal_btn_no {
  background-color: #504BFF;
  color: white;
}
html body section .myInfo_mem_modal .mem_modal .modal_btns .modal_btn_yes {
  background-color: #9FA4A8;
  color: #474C52;
}
html body section .buy_contents {
  position: relative;
  display: flex;
  justify-content: flex-start;
  column-gap: 24px;
  align-items: center;
  padding-inline: 24px;
  background-color: #F7F8FA;
  width: 100%;
  height: 146px;
  border-radius: 8px;
  transition: all 0.3s;
  margin-top: 32px;
}
html body section .buy_contents .cont_title {
  width: 190px;
  font: 2rem/2.5rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 700;
  color: #504BFF;
}
html body section .buy_contents .cont_price {
  width: 250px;
  font: 2.8rem/3.5rem "Spoqa Han Sans Neo", "sans-serif";
  color: black;
  font-weight: 700;
  position: relative;
}
html body section .buy_contents .cont_price span {
  display: inline-block;
  padding-left: 16px;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  color: #73787E;
}
html body section .buy_contents .cont_price .discount {
  display: block;
  width: 100%;
  text-align: start;
  padding: 0;
  font-weight: 500;
}
html body section .buy_contents .cont_price .vat {
  position: absolute;
  bottom: -20px;
  left: -12px;
  color: #9FA4A8;
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section .buy_contents .cont_inner {
  color: #73787E;
  width: calc(100% - 250px - 190px);
}
html body section .buy_contents .cont_inner > ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 8px;
}
html body section .buy_contents .cont_inner > ul > li {
  display: flex;
  column-gap: 8px;
  align-items: center;
}
html body section .buy_contents .cont_inner > ul > li > img {
  width: 20px;
  height: 20px;
}
html body section .buy_contents .cont_inner > ul > li > p {
  font: 1.6rem/2rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section .regi_wrap {
  visibility: hidden;
}
html body section .regi_card_wrap .card_form {
  background-color: #27282C;
  width: 100%;
  padding: 32px;
  border-radius: 8px;
}
html body section .regi_card_wrap .regi_card_title {
  text-align: center;
  padding: 0 16px 16px 16px;
  border-radius: 4px;
  color: #F5F5F5;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  margin-bottom: 16px;
}
html body section .regi_card_wrap label {
  display: block;
  padding: 8px 4px;
  border-bottom: 1px solid #73787E;
  color: #EAEBED;
  font: 1.6rem/2rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section .regi_card_wrap input {
  font: 1.6rem/2rem "Spoqa Han Sans Neo", "sans-serif";
  color: white !important;
  padding: 8px 0;
  margin: 8px 0;
}
html body section .regi_card_wrap input:-webkit-autofill {
  -webkit-text-fill-color: white;
}
html body section .regi_card_wrap .card_num_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
html body section .regi_card_wrap .card_num_wrap span {
  font: 2rem/2.5rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section .regi_card_wrap .card_thing,
html body section .regi_card_wrap .card_owner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
html body section .regi_card_wrap .card_thing .expiration_date_wrap,
html body section .regi_card_wrap .card_thing .card_cvc_wrap,
html body section .regi_card_wrap .card_thing .card_name,
html body section .regi_card_wrap .card_thing .card_birth,
html body section .regi_card_wrap .card_owner .expiration_date_wrap,
html body section .regi_card_wrap .card_owner .card_cvc_wrap,
html body section .regi_card_wrap .card_owner .card_name,
html body section .regi_card_wrap .card_owner .card_birth {
  width: 48%;
}
html body section .regi_card_wrap .card_thing .expiration_date_wrap input,
html body section .regi_card_wrap .card_thing .card_cvc_wrap input,
html body section .regi_card_wrap .card_thing .card_name input,
html body section .regi_card_wrap .card_thing .card_birth input,
html body section .regi_card_wrap .card_owner .expiration_date_wrap input,
html body section .regi_card_wrap .card_owner .card_cvc_wrap input,
html body section .regi_card_wrap .card_owner .card_name input,
html body section .regi_card_wrap .card_owner .card_birth input {
  width: 100%;
}
html body section .regi_card_wrap .card_pw {
  margin-bottom: 32px;
}
html body section .regi_card_wrap .card_pw input {
  width: 100%;
}
html body section .regi_card_wrap .card_done {
  text-align: center;
  width: 100%;
  padding: 16px 0;
  border-radius: 100vw;
  background-color: #474C52;
  font-weight: 500 !important;
  font: 2rem/2.5rem "Spoqa Han Sans Neo", "sans-serif";
  letter-spacing: 8px;
  transition: all 0.3s;
}
html body section .regi_card_wrap .card_done:hover {
  filter: brightness(1.2);
  background-color: #504BFF;
}
html body section .regi_card_wrap .on {
  background-color: #504BFF;
  color: white;
}
html body .join_apply_wrap {
  margin-top: 8rem;
  background-color: #27282C;
  width: 45rem;
  height: 53rem;
  color: white;
  padding: 5rem 3rem;
}
html body .join_apply_wrap .tab {
  display: flex;
  justify-content: space-evenly;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
}
html body .join_apply_wrap .tab label {
  display: inline-block;
  margin-right: 10px;
  cursor: pointer;
  position: relative;
  color: #9FA4A8;
}
html body .join_apply_wrap .tab input[type=radio]:checked + label {
  color: white;
}
html body .join_apply_wrap .tab input[type=radio]:checked + label:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: -5px;
  left: 0;
}
html body .join_apply_wrap .tab input[type=radio] {
  display: none;
}
html body .join_apply_wrap form {
  display: flex;
  flex-direction: column;
  margin-top: 4rem;
  width: 100%;
}
html body .join_apply_wrap form p {
  margin-bottom: 2rem;
  color: #9FA4A8;
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
}
html body .join_apply_wrap form label {
  margin-top: 1rem;
  color: #9FA4A8;
}
html body .join_apply_wrap form input[type=text],
html body .join_apply_wrap form input[type=password] {
  width: 100%;
  padding: 1.4rem;
  margin-top: 0.8rem;
  color: #EAEBED;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
}
html body .join_apply_wrap form .primary {
  background-color: #504BFF;
}
html body .join_apply_wrap .findLoginBtns {
  display: flex;
  gap: 1rem;
  justify-content: space-evenly;
  padding-bottom: 3rem;
  border-bottom: 1px solid #efefef;
}
html body .join_apply_wrap .findLoginBtns button {
  width: calc(100% - 20px);
  padding: 1rem;
  background-color: #504BFF;
  color: white;
  cursor: pointer;
  margin-top: 2rem;
  border-radius: 2px;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: bold;
}
html body .join_apply_wrap .findLoginBtns button#login-btn {
  background-color: #73787E !important;
}
html body .join_apply_wrap .registerForm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}
html body .join_apply_wrap .registerForm span {
  color: #9FA4A8;
  font: 1.3rem/1.6rem "Spoqa Han Sans Neo", "sans-serif";
}
html body .join_apply_wrap .registerForm button {
  width: 10rem;
  padding: 1rem;
  background-color: #504BFF;
  border: none;
  border-radius: 2px;
  color: white;
  cursor: pointer;
}
html body .join_apply_wrap .alert1 {
  bottom: 0;
  left: -1.8rem;
}
html body .join_apply_wrap .title_p {
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  line-height: 3rem;
  padding: 3rem;
}
html body .join_apply_wrap .big_title {
  font: 2.8rem/3.5rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 700;
}
html body .join_apply_wrap .home {
  display: flex;
}
html body .join_apply_wrap .home a {
  width: calc(100% - 20px);
  padding: 1rem;
  background-color: #73787E;
  border: none;
  border-radius: 0.4rem;
  color: white;
  cursor: pointer;
  margin-top: 10px;
}
html body .join_apply_wrap .home .primary {
  background-color: #504BFF;
}
html body .join_apply_wrap .primary {
  color: #504BFF;
}
html body .join_apply_wrap .email_box {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-around;
}
html body .join_apply_wrap .email_box dt {
  padding: 0;
  color: white;
}
html body .join_apply_wrap .email_box dd {
  padding: 0;
}
html body .join_apply_wrap .alert {
  transform: translate(50%, -50%);
  top: 80%;
  right: 50%;
  bottom: 50%;
}
html body .signup_wrap {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 85rem;
  padding: 6rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background: white;
}
html body .signup_wrap h2 {
  padding-bottom: 2rem;
}
html body .signup_wrap .title_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
html body .signup_wrap .title_wrap .logo {
  width: 20rem;
  height: 5rem;
  background: center/contain no-repeat url("../image/renewal/images/img_logo_renewal.png");
}
html body .signup_wrap .title_wrap .h2_title {
  color: black;
  padding-bottom: 0;
}
html body .signup_wrap .form_wrap {
  position: relative;
  border-top: 1px solid #efefef;
}
html body .signup_wrap .form_wrap table {
  width: 100%;
  display: flex;
  flex-direction: column;
}
html body .signup_wrap .form_wrap table tbody {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
html body .signup_wrap .form_wrap table tr {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
html body .signup_wrap .form_wrap table tr th, html body .signup_wrap .form_wrap table tr td {
  vertical-align: top;
}
html body .signup_wrap .form_wrap table tr th {
  flex: 0 0 17rem;
  padding-top: 1.4rem;
  color: #454545;
  text-align: left;
}
html body .signup_wrap .form_wrap table tr td {
  flex: 1;
  min-width: 0;
}
html body .signup_wrap .form_wrap table tr td input:not([type=checkbox]) {
  max-width: 36rem;
  width: 100%;
  height: 5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  color: #1C1D1F;
  background: white;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
}
html body .signup_wrap .form_wrap table tr td input:not([type=checkbox])[type=text], html body .signup_wrap .form_wrap table tr td input:not([type=checkbox])[type=password], html body .signup_wrap .form_wrap table tr td input:not([type=checkbox])[type=tel] {
  border: 1px solid #CACDD2;
  border-radius: 1rem;
}
html body .signup_wrap .form_wrap table tr td input:not([type=checkbox]):disabled {
  background: #F9F9F9;
}
html body .signup_wrap .form_wrap table tr td input:not([type=checkbox]):focus:not([disabled]) {
  border: 1px double #504BFF !important;
  outline: none !important;
  transform: translateY(-2px);
  transition: 0.2s ease;
}
html body .signup_wrap .form_wrap table tr td input:not([type=checkbox]):hover:not([disabled]) {
  border: 1px double #504BFF !important;
}
html body .signup_wrap .form_wrap table tr td .btn_ui {
  background: #504BFF;
  height: 4.5rem;
  border-radius: 5rem;
  font: 1.5rem/1.9rem "Spoqa Han Sans Neo", "sans-serif";
}
html body .signup_wrap .form_wrap table tr td .select_ui {
  width: 100%;
  max-width: 36rem;
}
html body .signup_wrap .form_wrap table tr td .select_ui select {
  background-color: #ebebff;
  color: #1C1D1F !important;
  margin-top: 0.8rem;
  height: 5rem;
  border-radius: 1rem;
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
  line-height: 3.8rem;
  background-image: url(../image/common/select_arrow_old.jpg);
  background-position: right 10px center;
}
html body .signup_wrap .form_wrap table tr td .select_ui select:focus:not([disabled]) {
  border: 1px double #504BFF !important;
  outline: none !important;
  transform: translateY(-2px);
  transition: 0.2s ease;
}
html body .signup_wrap .form_wrap table tr td .select_ui select:hover:not([disabled]) {
  border: 1px double #504BFF !important;
}
html body .signup_wrap .form_wrap table tr td .select_ui .icon {
  margin-top: -3.8rem;
  width: 3.8rem;
  height: 3.8rem;
  top: auto;
}
html body .signup_wrap .form_wrap .table_div1,
html body .signup_wrap .form_wrap .table_div2 {
  padding: 3rem 3rem 0;
  border-bottom: 1px solid #efefef;
}
html body .signup_wrap .form_wrap .table_div1 table tbody {
  gap: 3.5rem;
}
html body .signup_wrap .form_wrap .table_div1 table tr .uid_td input {
  color: #666;
  border: 0;
}
html body .signup_wrap .form_wrap .table_div2 table tbody {
  gap: 3rem;
}
html body .signup_wrap .form_wrap .table_div2 table tr {
  align-items: center;
}
html body .signup_wrap .form_wrap .table_div2 table tr td {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
html body .signup_wrap .form_wrap .table_div2 table tr td .form_ui1 {
  width: 100%;
  max-width: 36rem;
}
html body .signup_wrap .form_wrap .table_div2 table tr td .form_ui2 button {
  margin: 1rem 0;
}
html body .signup_wrap .form_wrap .btns {
  padding-top: 3rem;
}
html body .signup_wrap .form_wrap .btns button {
  width: 41rem;
  margin: 0 auto;
}
html body .signup_wrap .form_wrap .alert {
  right: 3rem;
  top: 4.5rem;
}
html body .signup_wrap .form_wrap form .title > label.required::before {
  content: "*";
  color: #504BFF;
}
html body .signup_wrap .form_wrap form .submit {
  background: #504BFF;
  width: 100%;
  border-radius: 1.5rem;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 500;
  position: relative;
  padding: 1rem;
  margin-top: 6rem;
  height: 6rem;
  left: 50%;
  transform: translate(-50%, 0);
  transition: all 0.2s ease;
  transform-origin: center;
}
html body .signup_wrap .form_wrap form .submit:focus, html body .signup_wrap .form_wrap form .submit:active {
  scale: 0.98;
  transition: all 0.2s ease;
}
html body .signup_wrap .email_box {
  color: #CACDD2;
}
html body .signup_wrap .email_box dl dt {
  color: #9FA4A8;
}
html body .signup_wrap .home {
  border-top: none;
}
html body .signup_wrap .home .btn_ui {
  background: #73787E;
  height: 3rem;
  border-radius: 5rem;
  font: 1.3rem/1.6rem "Spoqa Han Sans Neo", "sans-serif";
  width: fit-content;
  position: relative;
  margin-top: 2rem;
  padding: 1.8rem 2.8rem;
  line-height: 0;
}
html body .signup_wrap .home .primary {
  background-color: #504BFF;
}
html body .sitemap_wrap {
  margin-top: 5rem;
}
html body .sitemap_wrap .sub_title {
  color: white;
}
html body .sitemap_wrap .top ul li a,
html body .sitemap_wrap .bottom ul li a {
  color: #9FA4A8;
  background-color: #27282C;
}
html body .login_wrap {
  background: url("../image/login/background.svg");
  background-size: 100%;
  width: 100%;
  height: 100%;
  padding: 30%;
  margin: -116px auto;
  position: relative;
}
html body .login_wrap .login_form {
  position: absolute;
  left: 10%;
  top: 24%;
  width: 30%;
  height: 65rem;
  background-color: #27282C;
  padding: 5rem;
}
html body .login_wrap .login_form .h2_title {
  margin-top: 2rem;
  color: #EAEBED;
  display: flex;
  gap: 2rem;
}
html body .login_wrap .login_form .h2_title .active_login {
  border-bottom: 1px soild #EAEBED;
}
html body .login_wrap .login_form .h2_title .gray_title {
  color: #9FA4A8;
  margin-top: 0;
}
html body .login_wrap .login_form form {
  margin-top: 3rem;
}
html body .login_wrap .login_form form fieldset dl dt label {
  display: inline-block;
  color: #9FA4A8;
  margin-top: 3rem;
}
html body .login_wrap .login_form form fieldset dl dt input {
  width: 100%;
  padding: 1.4rem;
  color: #EAEBED;
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
}
html body .login_wrap .login_form form fieldset dl dt input:autofill,
html body .login_wrap .login_form form fieldset dl dt input -webkit-autofill {
  -webkit-text-fill-color: #EAEBED;
}
html body .login_wrap .login_form form fieldset dl dd .primary {
  background-color: #504BFF;
  margin-top: 2rem;
}
html body .login_wrap .login_form form fieldset dl .alert {
  bottom: 70px;
}
html body .login_wrap .login_form a {
  display: inline-block;
  margin-top: 2.8rem;
}
html body .login_wrap .site_name {
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: column;
  top: 30%;
  right: 0;
}
html body .login_wrap .site_name h2 {
  font: 2.8rem/3.5rem "Spoqa Han Sans Neo", "sans-serif";
  color: white;
  margin-bottom: 4rem;
  text-align: center;
}
html body .login_wrap .site_name img {
  width: 60%;
}
html body .signup_wrap .form_wrap table tr td select {
  font-size: 1.1em !important;
  color: white !important;
}
html body .signup_wrap .form_wrap table tr td p {
  padding: 12px 0 0 0 !important;
}
html body .signup_wrap .form_wrap form .job_div {
  display: flex;
  flex-direction: row;
}
html body .signup_wrap .form_wrap form .job_div input[type=radio] {
  display: none;
}
html body .signup_wrap .form_wrap form .job_div input[type=radio] + label {
  display: inline-block;
  cursor: pointer;
  height: 30px;
  width: 80px;
  line-height: 30px;
  text-align: left;
  font-weight: 500;
  font-size: 16px;
  color: #333;
}
html body .signup_wrap .form_wrap form .job_div input[type=radio] + label::before {
  content: "";
  display: inline-block;
  translate: 0 25%;
  margin-right: 0.5rem;
  width: 25px;
  height: 25px;
  background: white;
  border-radius: 100%;
  border: 1px solid #504BFF;
}
html body .signup_wrap .form_wrap form .job_div input[type=radio]:checked + label {
  position: relative;
}
html body .signup_wrap .form_wrap form .job_div input[type=radio]:checked + label::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  translate: 0 25%;
  margin-right: 0.5rem;
  width: 25px;
  height: 25px;
  background: white;
  border-radius: 100%;
  border: 1px solid #504BFF;
  background-color: #504BFF;
  scale: 0.6;
}
html body .signup_wrap .form_wrap form .job_select {
  padding: 10px 10px;
  background-color: #504bff;
  color: white;
  margin: 0 5px 0 0;
  font-size: 1.2em;
}
html body .signup_wrap .form_wrap form .school_cert p {
  font-size: 1.667em;
  font-weight: bold;
  padding-top: 0;
  margin-left: -20px;
  margin-top: -10px;
}
html body .signup_wrap .table_div1 {
  padding-top: 4.5rem;
}
html body .signup_wrap .table_div1 table tbody {
  gap: 4rem;
}
html body .signup_wrap .job_div label {
  font-weight: normal;
}
html body .signup_wrap .clause_div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0 4.5rem 0;
  gap: 1.4rem;
  color: #9FA4A8;
}
html body .signup_wrap .clause_div a {
  color: #9FA4A8;
}
html body .signup_wrap .email_box .bottom {
  line-height: 50px;
}
html body .billing_wrap {
  width: 333px;
  margin: 160px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 32px;
}
html body .billing_wrap .billing_img {
  width: 72px;
  height: 72px;
}
html body .billing_wrap .billing_img img {
  width: 100%;
  height: 100%;
}
html body .billing_wrap .billing_text {
  text-align: center;
  color: white;
  font-size: 2rem;
}
html body .billing_wrap .billing_text span {
  display: block;
  padding-bottom: 16px;
  font-size: 2.4rem;
  font-weight: 700;
}
html body .billing_wrap .billing_study_btn {
  width: 320px;
  height: 72px;
  line-height: 72px;
  text-align: center;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  background-color: #504BFF;
  border-radius: 100vw;
  transition: all 0.3s;
}
html body .billing_wrap .billing_study_btn:hover {
  filter: brightness(1.2);
}

#ui-datepicker-div {
  width: 260px;
}

.ui-datepicker-title {
  font-size: 1.3rem;
}

.ui-datepicker-calendar thead tr {
  font-size: 1.3rem;
}

.ui-state-default {
  font-size: 1.5rem;
}

.membership_policy_info {
  background-color: #27282c;
  padding: 32px;
  border-radius: 8px;
  margin-top: 72px;
  color: #cacdd2;
  line-height: 160%;
}
.membership_policy_info h3,
.membership_policy_info h4 {
  position: relative;
  font-size: 18px;
  color: white;
  text-indent: 1.5rem;
  font-weight: 700;
}
.membership_policy_info h3::before,
.membership_policy_info h4::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 2.2rem;
  background-color: #504bff;
}
.membership_policy_info h4 {
  margin-block: 20px 4px;
}
.membership_policy_info h3 {
  margin-bottom: 4px;
}
.membership_policy_info ul {
  margin-left: 2rem;
}
.membership_policy_info ul li {
  list-style: disc;
}
.membership_policy_info .note {
  position: relative;
  text-indent: 2rem;
}
.membership_policy_info .note::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 6px;
  height: 5px;
  background-color: #504bff;
}

/* ===EBS 영어학당 목록 변경 ==== */
/* 영어학당 상세페이지 스타일조정  */
.inset_wrap.mystudy_wrap.study_part.conversation.part .program-item:hover {
  background: none;
}
.inset_wrap.mystudy_wrap.study_part.conversation.part .program-item:hover .program-thumbnail > img {
  scale: 1;
  transition: 0.2s;
  cursor: auto;
}
.inset_wrap.mystudy_wrap.study_part.conversation.part .program-list {
  background: none;
}
.inset_wrap.mystudy_wrap.study_part.conversation.part .program-description {
  -webkit-line-clamp: none;
}
.inset_wrap.mystudy_wrap.study_part.conversation.part .program-info {
  padding: 0px;
  padding-left: 15px;
}
.inset_wrap.mystudy_wrap.study_part.conversation.part .level {
  background: #504bff;
}

/* ============================== */
.content-list.conversation {
  width: 100%;
  height: auto;
  padding-bottom: 20px;
}
.content-list.conversation.part {
  background: #2d2d2d;
}
.content-list.conversation .program-list {
  background: #222;
  margin: 0 auto;
  padding: 10px;
  padding-top: 30px;
}
.content-list.conversation .program-list p.total {
  padding-bottom: 20px;
  padding-left: 20px;
  font-size: 18px;
  color: #999;
}
.content-list.conversation .program-item {
  height: 250px;
  position: relative;
  display: flex;
  padding: 0px 15px;
  padding-bottom: 0px;
  transition: 0.2s;
}
.content-list.conversation .program-item .level {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  padding: 15px;
  font-size: x-large;
  font-weight: 600;
  color: white;
  background: rgba(0, 0, 0, 0.3411764706);
  border-radius: 2px 2px 2px 20px;
}
.content-list.conversation .program-item:hover {
  background: rgba(68, 68, 68, 0.4666666667);
}
.content-list.conversation .program-item:hover .program-thumbnail > img {
  scale: 1.05;
  transition: 0.2s;
  cursor: pointer;
}
.content-list.conversation .program-thumbnail {
  top: 50%;
  translate: 0 -60%;
  width: 313px;
  height: 176px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin: 10px;
  margin-right: 15px;
  background-color: #777;
  flex-shrink: 0;
}
.content-list.conversation .program-thumbnail img {
  width: 100%;
  transition: 0.2s;
}
.content-list.conversation .program-thumbnail::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.content-list.conversation .program-title {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0px;
  color: #ffffff;
}
.content-list.conversation .program-description {
  width: 80%;
  line-height: 1.4;
  font-size: 16px;
  color: #999;
  margin-bottom: 5px;
  /* 말줄임 */
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.content-list.conversation .tag {
  display: inline-block;
  padding: 5px 9px;
  background-color: #f0f0f0;
  border-radius: 13px;
  font-size: 14px;
  color: #666;
  margin-right: 5px;
}
.content-list.conversation .program-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.content-list.conversation .program-info p.info_txt {
  padding-top: 10px;
  color: #999;
}
.content-list.conversation .tag-container {
  padding-top: 20px;
}

html .study_part.conversation {
  /*  ==========EBS 영어학당 추가 2025.03.06====================== */
}
html .study_part.conversation .title_top {
  padding: 32px 0 40px 0;
  font: 2.4rem/3rem "Spoqa Han Sans Neo", "sans-serif";
  color: white;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
  line-height: 1.5;
}
html .study_part.conversation .item {
  position: relative;
  background: linear-gradient(90deg, rgb(150, 98, 216) 34%, rgb(80, 75, 255) 100%);
  border-radius: 10px;
  position: relative;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 2.5rem !important;
  padding: 15px;
}
html .study_part.conversation .item--part {
  padding: 30px;
  pointer-events: none; /* hover 효과를 차단 */
}
html .study_part.conversation .item--part p {
  color: white;
  padding-bottom: 20px;
}
html .study_part.conversation .item:hover .bg {
  backdrop-filter: brightness(0.5);
  transition: 0.2s;
}
html .study_part.conversation .item:hover h4 {
  transform: scale(1.1);
  transition: 0.2s;
  pointer-events: none;
}
html .study_part.conversation .item .bg {
  position: absolute;
  height: calc(100% + 1px);
  width: 100%;
  left: 0;
  top: 0;
}
html .study_part.conversation .item h4 {
  background: transparent !important;
  font-size: x-large !important;
}
html .study_part.conversation .item p {
  color: white;
  padding-bottom: 20px;
  font-size: medium;
  text-align: center;
}
html .study_part.conversation .item .level {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  padding: 15px;
  font-size: x-large;
  font-weight: 600;
  color: white;
  background: rgba(0, 0, 0, 0.3411764706);
  border-radius: 0 0 0 20px;
}
html .study_part.conversation .container {
  width: 90%;
  margin: auto;
  background: #333;
  padding: 10px;
  border-radius: 10px;
  margin-top: 30px !important;
}
html .study_part.conversation .container .list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 10px;
  margin: 5px 0;
  border-radius: 15px 5px 5px 5px;
  position: relative;
}
html .study_part.conversation .container .list-item::before {
  content: attr(data-order);
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: #666;
  color: white;
  width: 45px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
}
html .study_part.conversation .container .list-item span {
  font-size: 15px;
  margin-left: 60px;
  display: block;
  width: 80%;
  line-height: 1.54;
  padding: 10px;
}
html .study_part.conversation .container .play-button {
  background: #504BFF;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
html .study_part.conversation .play-container {
  width: 93%;
  margin: auto;
}
html .study_part.conversation .play-container .top {
  padding: 10px;
  border-radius: 15px;
  position: relative;
  color: white;
  background-color: #474C52;
}
html .study_part.conversation .play-container .top .flex-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
html .study_part.conversation .play-container .top .note-modal {
  width: calc(100% - 10px);
  height: auto;
  max-height: 150px;
  background: grey;
  overflow-y: auto;
  margin: 5px;
  margin-top: 15px;
  border-radius: 5px;
}
html .study_part.conversation .play-container .top .note-modal .note-text {
  color: #474C52;
  padding: 10px;
  text-align: justify;
  font-size: 16px;
  font-weight: 500;
  font-family: "Spoqa Han Sans Neo", "sans-serif";
  line-height: 1.4;
}
html .study_part.conversation .play-container .top .title {
  flex-basis: 68%;
  font-size: 14px;
  font-weight: bold;
  position: relative;
}
html .study_part.conversation .play-container .top .title .num {
  position: absolute;
  width: fit-content;
  height: 40px;
  font-size: 18px;
  color: #fff;
  line-height: 40px;
  padding: 0 10px;
  background: #504BFF;
  border-radius: 20px;
  margin-left: 10px;
}
html .study_part.conversation .play-container .top .title span {
  display: block;
  font-size: 20px;
  padding-right: 30px;
  padding-left: 100px;
  text-align: left;
  line-height: 1.4;
  font-weight: 400;
}
html .study_part.conversation .play-container .top .title .sub {
  position: relative;
  padding: 12px 16px;
  border-top: 1px solid #ebebeb;
  word-break: break-all;
}
html .study_part.conversation .play-container .top .title .btn {
  float: left;
  background: none;
  margin-left: 12px;
  letter-spacing: -1px;
}
html .study_part.conversation .play-container .top .btns {
  align-self: flex-start;
  flex-basis: 37%;
  font-size: small;
}
html .study_part.conversation .play-container .top .btns button {
  padding: 0 5px;
}
html .study_part.conversation .play-container .top .btns .btn .icon {
  display: block;
  width: 38px;
  height: 38px;
  margin: 0 auto;
  margin-bottom: 5px;
  background: url(https://high-test.ebslistening.com/source/image/question/icon_question.png) no-repeat;
  bottom: 0;
  z-index: 9999;
}
html .study_part.conversation .play-container .top .btns .btn.note_q .icon {
  background-position: -179px -135px;
}
html .study_part.conversation .play-container .top .btns .btn.prev_q .icon {
  background-position: 0 -90px;
}
html .study_part.conversation .play-container .top .btns .btn.list_q .icon {
  background-position: -45px -90px;
}
html .study_part.conversation .play-container .top .btns .btn.favor_q .icon {
  background-position: -90px -90px !important;
}
html .study_part.conversation .play-container .top .btns .btn.favor_q.on .icon {
  background-position: -90px -135px !important;
}
html .study_part.conversation .play-container .top .btns .btn.next_q .icon {
  background-position: -135px -90px;
}
html .study_part.conversation .play-container .top .btns .btn.scrt_q .icon {
  background-position: 0 -180px;
}
html .study_part.conversation .play-container .top .btns .btn.trsl_q .icon {
  background-position: -45px -180px;
}
html .study_part.conversation .play-container .top .btns .btn.words_q .icon {
  background-position: -90px -180px;
}
html .study_part.conversation .play-container .top .btns .btn.prev_q:hover .icon,
html .study_part.conversation .play-container .top .btns .btn.prev_q:focus .icon,
html .study_part.conversation .play-container .top .btns .btn.prev_q.on .icon {
  background-position: 0 -135px;
}
html .study_part.conversation .play-container .top .btns .btn.list_q:hover .icon,
html .study_part.conversation .play-container .top .btns .btn.list_q:focus .icon,
html .study_part.conversation .play-container .top .btns .btn.list_q.on .icon {
  background-position: -45px -135px;
}
html .study_part.conversation .play-container .top .btns .btn.favor_q:hover .icon,
html .study_part.conversation .play-container .top .btns .btn.favor_q:focus .icon,
html .study_part.conversation .play-container .top .btns .btn.favor_q.on .icon {
  background-position: -90px -135px;
}
html .study_part.conversation .play-container .top .btns .btn.next_q:hover .icon,
html .study_part.conversation .play-container .top .btns .btn.next_q:focus .icon,
html .study_part.conversation .play-container .top .btns .btn.next_q.on .icon {
  background-position: -135px -135px;
}
html .study_part.conversation .play-container .top .btns .btn.scrt_q:hover .icon,
html .study_part.conversation .play-container .top .btns .btn.scrt_q:focus .icon,
html .study_part.conversation .play-container .top .btns .btn.scrt_q.on .icon {
  background-position: 0 -225px;
}
html .study_part.conversation .play-container .top .btns .btn.trsl_q:hover .icon,
html .study_part.conversation .play-container .top .btns .btn.trsl_q:focus .icon,
html .study_part.conversation .play-container .top .btns .btn.trsl_q.on .icon {
  background-position: -45px -225px;
}
html .study_part.conversation .play-container .top .btns .btn.words_q:hover .icon,
html .study_part.conversation .play-container .top .btns .btn.words_q:focus .icon,
html .study_part.conversation .play-container .top .btns .btn.words_q.on .icon {
  background-position: -90px -225px;
}
html .study_part.conversation .play-container .top .btns .btn:disabled {
  background-color: transparent !important;
  color: #ccc;
}
html .study_part.conversation .play-container .top .btns .btn.prev_q:disabled:hover .icon,
html .study_part.conversation .play-container .top .btns .btn.prev_q:disabled:focus .icon {
  background-position: 0 -90px;
}
html .study_part.conversation .play-container .top .btns .btn.next_q:disabled:hover .icon,
html .study_part.conversation .play-container .top .btns .btn.next_q:disabled:focus .icon {
  background-position: -135px -90px;
}
html .study_part.conversation .play-container .content-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
html .study_part.conversation .play-container .audio_wrap {
  position: relative;
  background-color: #101010;
}
html .study_part.conversation .play-container .audio_wrap .custom_audio_controls {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 98%;
}
html .study_part.conversation .play-container .audio_wrap .custom_audio_controls .play_pause {
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  margin: 0;
  color: white;
  cursor: pointer;
  font-size: 14px;
  outline: none;
}
html .study_part.conversation .play-container .audio_wrap .custom_audio_controls .play_pause:hover {
  background-color: #777;
}
html .study_part.conversation .play-container .audio_wrap .custom_audio_controls .progress_container {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
html .study_part.conversation .play-container .audio_wrap .custom_audio_controls .progress_container .current_time,
html .study_part.conversation .play-container .audio_wrap .custom_audio_controls .progress_container .duration {
  font-size: 12px;
  color: #ccc;
}
html .study_part.conversation .play-container .audio_wrap .custom_audio_controls .progress_container .progress_time {
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
}
html .study_part.conversation .play-container .audio_wrap .custom_audio_controls .progress_container .progress_bar {
  position: relative;
  width: 100%;
  height: 5px;
  background-color: white;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}
html .study_part.conversation .play-container .audio_wrap .custom_audio_controls .progress_container .progress_bar .progress {
  width: 0;
  height: 100%;
  background-color: #27282C;
  transition: width 0.3s linear;
}
html .study_part.conversation .play-container .audio_wrap .custom_audio_controls .volume_controls {
  display: flex;
  align-items: center;
  position: relative;
}
html .study_part.conversation .play-container .audio_wrap .custom_audio_controls .volume_controls .mute {
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  color: #27282C;
  cursor: pointer;
  font-size: 14px;
  outline: none;
  z-index: 10;
}
html .study_part.conversation .play-container .audio_wrap .custom_audio_controls .volume_controls .mute:hover {
  background-color: #777;
}
html .study_part.conversation .play-container .audio_wrap .custom_audio_controls .volume_controls .volume_slider {
  width: 7rem;
  accent-color: white;
}
html .study_part.conversation .play-container .audio_wrap .custom_audio_controls .volume_controls:hover .volume_slider {
  display: block !important;
}
html .study_part.conversation .play-container .audio_wrap .audio {
  padding-right: 110px;
  height: 50px;
  line-height: 49px;
  overflow: hidden;
  background: #504BFF;
  border-radius: 10px;
  margin-top: 10px;
}
html .study_part.conversation .play-container .audio_wrap .audio audio {
  display: none !important;
}
html .study_part.conversation .play-container .audio_wrap .div_rate {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
}
html .study_part.conversation .play-container .audio_wrap .div_rate > * {
  float: left;
  line-height: 19px;
}
html .study_part.conversation .play-container .audio_wrap .div_rate button {
  display: block;
  width: 20px;
  height: 20px;
  background: url(../image/question/icon_audio_control.png) no-repeat;
  background: none !important;
}
html .study_part.conversation .play-container .audio_wrap .div_rate button.plus {
  background-position: -20px 0;
}
html .study_part.conversation .play-container .audio_wrap .div_rate div {
  text-align: center;
  color: #fff;
}
html .study_part.conversation .play-container .audio_wrap .div_rate div.rate {
  font-weight: bold;
}
html .study_part.conversation .play-container .audio_wrap .div_rate div.rate_string {
  width: 45px;
}

.auth_modal_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth_modal {
  background-color: white;
  border-radius: 1.6rem;
  box-shadow: 0 0.8rem 3.2rem rgba(0, 0, 0, 0.3);
  max-width: 43rem;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.auth_modal_content {
  padding: 4rem 3rem;
  text-align: center;
}
.auth_modal_content .auth_modal_icon {
  margin-bottom: 2.4rem;
}
.auth_modal_content .auth_modal_icon img {
  width: 8rem;
  height: 8rem;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  padding: 1rem;
}
.auth_modal_content .auth_modal_icon img.success, .auth_modal_content .auth_modal_icon img.error {
  background-color: #504BFF;
}
.auth_modal_content .auth_modal_message {
  font: 2rem/2.5rem "Spoqa Han Sans Neo", "sans-serif";
  color: #27282C;
  font-weight: 500;
  margin-bottom: 2.4rem;
  line-height: 1.5;
}
.auth_modal_content .auth_modal_buttons {
  margin-top: 3.2rem;
}
.auth_modal_content .auth_modal_buttons .auth_retry_btn {
  background-color: #504BFF;
  color: white;
  border: none;
  border-radius: 0.8rem;
  padding: 1.2rem 2.4rem;
  font: 1.6rem/2rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.auth_modal_content .auth_modal_buttons .auth_retry_btn:hover {
  background-color: rgb(30.4166666667, 24, 255);
  transform: translateY(-0.2rem);
}
.auth_modal_content .auth_modal_buttons .auth_retry_btn:active {
  transform: translateY(0);
}

html body section#bodyWrap {
  padding-top: 8rem;
  background: #1D1D1D;
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap #toTop {
  background: #504BFF;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}
html body section#bodyWrap #toTop:hover {
  opacity: 0.6;
  box-shadow: 0 0 8px 0 rgb(185, 183, 255);
}
html body section#bodyWrap > .area {
  display: flex;
  width: 100%;
  max-width: 119.4rem;
}
html body section#bodyWrap .main_wrap .m_visual_wrap {
  height: 50rem;
  border-bottom: unset;
}
html body section#bodyWrap .main_wrap .m_visual_wrap .m_visual .slider {
  height: 50rem;
}
html body section#bodyWrap .main_wrap .m_visual_wrap .m_visual .slider .owl-stage-outer {
  height: 50rem;
}
html body section#bodyWrap .main_wrap .m_visual_wrap .m_visual .slider .owl-stage-outer .owl-stage {
  max-height: 50rem;
}
html body section#bodyWrap .main_wrap .m_visual_wrap .m_visual .slider .owl-stage-outer .owl-stage .owl-item {
  opacity: 0.2;
  transition: all 0.4s;
}
html body section#bodyWrap .main_wrap .m_visual_wrap .m_visual .slider .owl-stage-outer .owl-stage .owl-item.center {
  opacity: 1;
}
html body section#bodyWrap .main_wrap .m_visual_wrap .m_visual .slider .owl-stage-outer .owl-stage .owl-item a .owl-lazy {
  width: auto;
  height: 50rem;
}
html body section#bodyWrap .main_wrap .m_visual_wrap .m_visual .slider .owl-nav div {
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  padding: 0.8rem;
  transition: all 0.4s;
  opacity: 0.75;
}
html body section#bodyWrap .main_wrap .m_visual_wrap .m_visual .slider .owl-nav .owl-prev {
  background: center/contain no-repeat url("../image/renewal/icons/icon_80_slick_arrow_left.svg");
  left: 4rem;
  margin-left: 0;
}
html body section#bodyWrap .main_wrap .m_visual_wrap .m_visual .slider .owl-nav .owl-prev:hover {
  opacity: 1;
}
html body section#bodyWrap .main_wrap .m_visual_wrap .m_visual .slider .owl-nav .owl-next {
  background: center/contain no-repeat url("../image/renewal/icons/icon_80_slick_arrow_right.svg");
  right: 4rem;
  left: unset;
  margin-left: 0;
}
html body section#bodyWrap .main_wrap .m_visual_wrap .m_visual .slider .owl-nav .owl-next:hover {
  opacity: 1;
}
html body section#bodyWrap .main_wrap .con1, html body section#bodyWrap .main_wrap .con2, html body section#bodyWrap .main_wrap .con3 {
  width: 119.4rem;
  margin: 0 auto;
}
html body section#bodyWrap .main_wrap .con1 .area, html body section#bodyWrap .main_wrap .con2 .area, html body section#bodyWrap .main_wrap .con3 .area {
  width: 100%;
  margin: 0;
}
html body section#bodyWrap .main_wrap .con1 .area .board ul li a:hover, html body section#bodyWrap .main_wrap .con2 .area .board ul li a:hover, html body section#bodyWrap .main_wrap .con3 .area .board ul li a:hover {
  color: #B9B7FF;
}
html body section#bodyWrap .main_wrap .con1 {
  padding: 6.4rem 0;
}
html body section#bodyWrap .main_wrap .con1 .area ul {
  display: flex;
  justify-content: center;
}
html body section#bodyWrap .main_wrap .con1 .area ul li {
  margin: 0;
}
html body section#bodyWrap .main_wrap .con1 .area ul li h3 {
  padding: 0;
  font: 2.2rem/2.8rem "Spoqa Han Sans Neo", "sans-serif";
  color: #F5F5F5;
  font-weight: 700;
}
html body section#bodyWrap .main_wrap .con1 .area ul li a {
  width: fit-content;
  height: fit-content;
  background: unset;
}
html body section#bodyWrap .main_wrap .con1 .area ul li a .icon {
  margin: 1.6rem 0 2.4rem;
}
html body section#bodyWrap .main_wrap .con1 .area ul li p {
  font: 1.5rem/1.9rem "Spoqa Han Sans Neo", "sans-serif";
  color: #9FA4A8;
  width: 18rem;
}
html body section#bodyWrap .main_wrap .con2.honor .area .board:first-of-type {
  margin: 0;
}
html body section#bodyWrap .main_wrap .con2.honor .area .board .honor_wrap {
  padding: 0 1.6rem;
  display: flex;
}
html body section#bodyWrap .main_wrap .con2.honor .area .board .honor_wrap .honor_section {
  width: 100%;
  flex: auto;
}
html body section#bodyWrap .main_wrap .con2.honor .area .board .honor_wrap .honor_section:first-of-type {
  margin-right: 6.4rem;
}
html body section#bodyWrap .main_wrap .con2.honor .area .board .honor_wrap .honor_section h4 {
  font: 1.8rem/2.3rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 500;
  color: #9FA4A8;
  padding: 1.6rem 0;
}
html body section#bodyWrap .main_wrap .con2.honor .area .board .honor_wrap .honor_section .honor_article {
  padding: 3.6rem 5rem;
  background: #2E333C;
  border-radius: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
html body section#bodyWrap .main_wrap .con2.honor .area .board .honor_wrap .honor_section .honor_article .student_info {
  color: #9FA4A8;
  text-align: center;
}
html body section#bodyWrap .main_wrap .con2.honor .area .board .honor_wrap .honor_section .honor_article .student_info img {
  width: 7.2rem;
  height: 7.2rem;
  margin-bottom: 1.2rem;
}
html body section#bodyWrap .main_wrap .con2.honor .area .board .honor_wrap .honor_section .honor_article .student_info p {
  width: 72px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font: 1.3rem/1.6rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .main_wrap .con2.honor .area .board .honor_wrap .honor_section .honor_article .student_info .name {
  border-bottom: 1px solid #474C52;
  padding: 0.4rem 0;
  margin-bottom: 0.4rem;
}
html body section#bodyWrap .main_wrap .con2.honor .area .board .honor_wrap .honor_section .honor_article .student_info .name span {
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .main_wrap .con2.honor .area .board .honor_wrap .honor_section .honor_article .student_info .name span:first-of-type {
  font-weight: 700;
  font: 1.6rem/2rem "Spoqa Han Sans Neo", "sans-serif";
  color: #F5F5F5;
  margin-right: 0.4rem;
}
html body section#bodyWrap .main_wrap .con2.honor .area .board .honor_wrap .honor_section .honor_article .student_info .score span {
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .main_wrap .con2.honor .area .board .honor_wrap .honor_section .honor_article .student_info .score span:first-of-type {
  font-weight: 700;
  color: #F5F5F5;
  margin-right: 0.4rem;
}
html body section#bodyWrap .main_wrap .con2.honor .area .board .honor_wrap .honor_section .honor_article .student_info.center {
  /*position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);*/
}
html body section#bodyWrap .main_wrap .con2.honor .area .board .honor_wrap .honor_section .honor_article .student_info.center img {
  width: 8.8rem;
  height: 8.8rem;
}
html body section#bodyWrap .main_wrap .con2.honor .area .board .honor_wrap .honor_section .honor_article .student_info.center p {
  width: 88px;
  font: 1.5rem/1.9rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .main_wrap .con2.honor .area .board .honor_wrap .honor_section .honor_article .student_info.center .name span {
  font: 1.6rem/2rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .main_wrap .con2.honor .area .board .honor_wrap .honor_section .honor_article .student_info.center .name span:first-of-type {
  font: 2rem/2.5rem "Spoqa Han Sans Neo", "sans-serif";
  color: #F5F5F5;
}
html body section#bodyWrap .main_wrap .con2.honor .area .board .honor_wrap .honor_section .honor_article .student_info.center .score span {
  font: 1.6rem/2rem "Spoqa Han Sans Neo", "sans-serif";
}
html body section#bodyWrap .main_wrap .con2.honor .area .board .honor_wrap .honor_section .honor_article .student_info.center .score span:first-of-type {
  color: #F5F5F5;
}
html body section#bodyWrap .main_wrap .con2.honor .area .board .honor_wrap .honor_section .honor_article .student_info.left {
  order: -1;
  margin-left: 2rem;
}
html body section#bodyWrap .main_wrap .con2.honor .area .board .honor_wrap .honor_section .honor_article .student_info.right {
  width: 72px;
  margin-right: 2rem;
}
html body section#bodyWrap .main_wrap .con2 .area {
  border-top: unset;
  padding-top: 6.4rem;
  display: flex;
  height: fit-content;
}
html body section#bodyWrap .main_wrap .con2 .area:nth-of-type(2) {
  padding-top: 4.8rem;
}
html body section#bodyWrap .main_wrap .con2 .area .proceeding_BG {
  margin-right: 0.8rem;
}
html body section#bodyWrap .main_wrap .con2 .area .board {
  width: 100%;
  margin-left: 0;
}
html body section#bodyWrap .main_wrap .con2 .area .board:first-of-type {
  margin-right: 3rem;
}
html body section#bodyWrap .main_wrap .con2 .area .board h3.h3_title {
  width: 100%;
  padding: 0 0 0.8rem 1.6rem;
  border-bottom: 1px solid #9FA4A8;
}
html body section#bodyWrap .main_wrap .con2 .area .board h3.h3_title a {
  font: 2.2rem/2.8rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 700;
  color: white;
}
html body section#bodyWrap .main_wrap .con2 .area .board ul {
  height: fit-content;
}
html body section#bodyWrap .main_wrap .con2 .area .board ul li {
  padding: 1.6rem;
  height: fit-content;
  border-top: unset;
  border-bottom: 1px solid #474C52;
  line-height: unset;
  display: flex;
  justify-content: space-between;
}
html body section#bodyWrap .main_wrap .con2 .area .board ul li:last-of-type {
  border-bottom: 1px solid #9FA4A8;
}
html body section#bodyWrap .main_wrap .con2 .area .today_w {
  width: 100%;
  margin-left: 0;
}
html body section#bodyWrap .main_wrap .con2 .area .today_w h3.h3_title {
  width: 100%;
  padding: 0 0 0.8rem 1.6rem;
  border-bottom: 1px solid #9FA4A8;
}
html body section#bodyWrap .main_wrap .con2 .area .today_w h3.h3_title a {
  font: 2.2rem/2.8rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 700;
  color: white;
}
html body section#bodyWrap .main_wrap .con2 .area .today_w > a {
  margin-top: 1.6rem;
  padding: 2.4rem;
  border: 1px solid #73787E;
  border-radius: 0.8rem;
  display: flex;
  justify-content: center;
}
html body section#bodyWrap .main_wrap .con2 .area .today_w > a img {
  height: 19.9rem;
  border-radius: 0.4rem;
}
html body section#bodyWrap .main_wrap .con2 .area .today_w > a img:hover {
  box-shadow: 0 0 6px 0 rgba(255, 255, 255, 0.5);
}
html body section#bodyWrap .main_wrap .con3 {
  background: unset;
  padding: 5.6rem 0;
  height: fit-content;
}
html body section#bodyWrap .main_wrap .con3 .area {
  height: fit-content;
}
html body section#bodyWrap .main_wrap .con3 .area h3.h3_title {
  font: 2.2rem/2.8rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 700;
  color: white;
  padding: 0 0 0.8rem 1.6rem;
  border-bottom: 1px solid #9FA4A8;
  margin-bottom: 2.4rem;
}
html body section#bodyWrap .main_wrap .con3 .area .owl-carousel.partners .owl-stage-outer {
  margin: 0 7.2rem;
}
html body section#bodyWrap .main_wrap .con3 .area .owl-carousel.partners .owl-stage-outer .owl-item {
  transform: scale(90%);
  filter: brightness(80%);
  transition: all 0.3s;
}
html body section#bodyWrap .main_wrap .con3 .area .owl-carousel.partners .owl-stage-outer .owl-item:hover {
  transform: scale(100%);
  filter: brightness(100%);
}
html body section#bodyWrap .main_wrap .con3 .area .owl-carousel.partners .owl-controls .owl-prev, html body section#bodyWrap .main_wrap .con3 .area .owl-carousel.partners .owl-controls .owl-next {
  width: 4.8rem;
  height: 4.8rem;
  transform: translateY(-50%);
  background-position: center;
  margin-top: 0;
}
html body section#bodyWrap .main_wrap .con3 .area .owl-carousel.partners .owl-controls .owl-prev {
  left: 1.4rem;
}
html body section#bodyWrap .main_wrap .con3 .area .owl-carousel.partners .owl-controls .owl-next {
  right: 1.4rem;
}
html body section#bodyWrap .sub_menu + .content {
  width: calc(100% - 24.4rem);
}
html body section#bodyWrap .content {
  width: 100%;
}
html body section#bodyWrap .content .inset_wrap {
  padding-left: 0;
}

[data-type-divider=bold] {
  width: 119.4rem;
  height: 0.8rem;
  background: #474C52;
  border-radius: 5rem;
  margin: 0 auto;
}

.floating_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}
.floating_modal .modal_container {
  background: white;
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
}
.floating_modal .modal_container .modal_header {
  padding: 2.4rem 2.4rem 0 2.4rem;
  position: relative;
}
.floating_modal .modal_container .modal_header .modal_title {
  font: 2.2rem/2.8rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 700;
  color: #1C1D1F;
  margin: 0;
  text-align: center;
}
.floating_modal .modal_container .modal_header .modal_close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #EAEBED;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.floating_modal .modal_container .modal_header .modal_close:hover {
  background: #CACDD2;
  transform: rotate(180deg);
}
.floating_modal .modal_container .modal_header .modal_close::before, .floating_modal .modal_container .modal_header .modal_close::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 0.2rem;
  background: #474C52;
  border-radius: 0.1rem;
}
.floating_modal .modal_container .modal_header .modal_close::before {
  transform: rotate(45deg);
}
.floating_modal .modal_container .modal_header .modal_close::after {
  transform: rotate(-45deg);
}
.floating_modal .modal_container .modal_content {
  padding: 2.4rem;
}
.floating_modal .modal_container .modal_footer {
  padding: 0 2.4rem 2.4rem 2.4rem;
  display: flex;
  gap: 1.6rem;
}
.floating_modal .modal_container .modal_footer.single_button {
  justify-content: center;
}
.floating_modal .modal_container .modal_footer.double_button {
  justify-content: space-between;
}
.floating_modal .modal_container .modal_footer .modal_btn {
  flex: 1;
  height: 5.2rem;
  border-radius: 0.8rem;
  font: 1.6rem/2rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.floating_modal .modal_container .modal_footer .modal_btn.primary {
  background: #504BFF;
  color: white;
}
.floating_modal .modal_container .modal_footer .modal_btn.primary:hover {
  background: rgb(30.4166666667, 24, 255);
}
.floating_modal .modal_container .modal_footer .modal_btn.secondary {
  background: #EAEBED;
  color: #474C52;
}
.floating_modal .modal_container .modal_footer .modal_btn.secondary:hover {
  background: #CACDD2;
}
.floating_modal.show {
  display: flex;
}

@media (max-width: 768px) {
  .floating_modal .modal_container {
    margin: 2rem;
    max-width: calc(100vw - 4rem);
  }
  .floating_modal .modal_container .modal_header {
    padding: 2rem 2rem 0 2rem;
  }
  .floating_modal .modal_container .modal_header .modal_title {
    font: 2rem/2.5rem "Spoqa Han Sans Neo", "sans-serif";
  }
  .floating_modal .modal_container .modal_header .modal_close {
    top: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
  }
  .floating_modal .modal_container .modal_content {
    padding: 2rem;
  }
  .floating_modal .modal_container .modal_footer {
    padding: 0 2rem 2rem 2rem;
  }
  .floating_modal .modal_container .modal_footer .modal_btn {
    height: 4.8rem;
    font: 1.5rem/1.9rem "Spoqa Han Sans Neo", "sans-serif";
  }
}
section {
  min-height: calc(100% - 320px);
}

footer#footer {
  position: relative;
  background: #141414;
  border-top: unset;
  padding: 6.4rem 0 4rem;
}
footer#footer .footer_bottom {
  height: fit-content;
}
footer#footer .footer_bottom .logo_gray {
  height: 4.8rem;
  margin-bottom: 4rem;
}
footer#footer .footer_bottom .clause {
  padding-top: 0;
}
footer#footer .footer_bottom .clause ul {
  display: flex;
  justify-content: center;
}
footer#footer .footer_bottom .clause ul a {
  font: 1.3rem/1.6rem "Spoqa Han Sans Neo", "sans-serif";
  color: #73787E;
  padding: 0.4rem 1.2rem;
  transition: all 0.4s;
  border: 1px solid #474C52;
  border-radius: 5rem;
  margin-right: 0.8rem;
}
footer#footer .footer_bottom .clause ul a:hover {
  color: #27282C;
  background: #CACDD2;
}
footer#footer .footer_bottom .copyright {
  padding: 2.4rem 0 1.6rem;
  color: #474C52;
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 400;
}
footer#footer .footer_bottom address {
  color: #73787E;
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
}
footer#footer .footer_bottom address .align {
  width: fit-content;
  margin: 0 auto;
}
footer#footer .footer_bottom address .align div {
  text-align: left;
  margin-bottom: 0.4rem;
}
footer#footer .footer_bottom address .align div span:first-of-type {
  display: inline-block;
  min-width: 16.6rem;
  margin-right: 1.6rem;
}

html body header {
  background: #141414;
  height: 4rem;
}
html body header .header_top {
  height: 4rem;
  background: #141414;
  border-bottom: 1px solid #73787E;
}
html body header .header_top .area {
  width: 100%;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
html body header .header_top .area .f_l li {
  display: flex;
  align-items: center;
  background: unset;
  padding-left: 2.4rem;
}
html body header .header_top .area .f_l li:first-of-type {
  padding-left: 0;
}
html body header .header_top .area .f_l li a {
  display: flex;
  align-items: center;
  font: 1.3rem/1.6rem "Spoqa Han Sans Neo", "sans-serif";
  color: #9FA4A8;
}
html body header .header_top .area .f_l li a .icon {
  margin-right: 0.4rem;
}
html body header .header_top .area .f_r li {
  display: flex;
  align-items: center;
  background: unset;
  padding-left: 0;
}
html body header .header_top .area .f_r li::after {
  content: "";
  display: block;
  width: 1px;
  height: 1.6rem;
  margin: 0 1.6rem;
  background: #474C52;
}
html body header .header_top .area .f_r li:last-of-type::after {
  display: none;
}
html body header .header_top .area .f_r li a {
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
  color: #9FA4A8;
}
html body header .header_top .area .f_r li a .icon {
  margin-right: 0.4rem;
}
html body header .header_bottom {
  width: 100%;
  height: 8rem;
  background: #141414;
  border-bottom: none;
  box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
html body header .header_bottom .area {
  width: 100%;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
html body header .header_bottom .area #logo a {
  background: center/contain no-repeat url("../image/renewal/images/img_logo_renewal.png");
  height: 3.2rem;
}
html body header .header_bottom .area #gnb > ul {
  display: flex;
  align-items: center;
}
html body header .header_bottom .area #gnb > ul > li {
  z-index: 1000;
}
html body header .header_bottom .area #gnb > ul > li#id1 {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_01.svg");
  min-width: 8.8rem;
  max-height: 3.2rem;
  transition: all 0.4s;
}
html body header .header_bottom .area #gnb > ul > li#id1 > a {
  width: 12rem;
  max-height: 3.2rem;
}
html body header .header_bottom .area #gnb > ul > li#id1:hover {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_01_active.svg");
}
html body header .header_bottom .area #gnb > ul > li#id2 {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_02.svg");
  min-width: 8.8rem;
  max-height: 3.2rem;
  transition: all 0.4s;
}
html body header .header_bottom .area #gnb > ul > li#id2 > a {
  width: 12rem;
  max-height: 3.2rem;
}
html body header .header_bottom .area #gnb > ul > li#id2:hover {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_02_active.svg");
}
html body header .header_bottom .area #gnb > ul > li#id3 {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_03.svg");
  min-width: 8.8rem;
  max-height: 3.2rem;
  transition: all 0.4s;
}
html body header .header_bottom .area #gnb > ul > li#id3 > a {
  width: 12rem;
  max-height: 3.2rem;
}
html body header .header_bottom .area #gnb > ul > li#id3:hover {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_03_active.svg");
}
html body header .header_bottom .area #gnb > ul > li#id4 {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_04.svg");
  min-width: 8.8rem;
  max-height: 3.2rem;
  transition: all 0.4s;
}
html body header .header_bottom .area #gnb > ul > li#id4 > a {
  width: 12rem;
  max-height: 3.2rem;
}
html body header .header_bottom .area #gnb > ul > li#id4:hover {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_04_active.svg");
}
html body header .header_bottom .area #gnb > ul > li#id5 {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_05.svg");
  min-width: 8.8rem;
  max-height: 3.2rem;
  transition: all 0.4s;
}
html body header .header_bottom .area #gnb > ul > li#id5 > a {
  width: 12rem;
  max-height: 3.2rem;
}
html body header .header_bottom .area #gnb > ul > li#id5:hover {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_05_active.svg");
}
html body header .header_bottom .area #gnb > ul > li#id6 {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_06.svg");
  min-width: 8.8rem;
  max-height: 3.2rem;
  transition: all 0.4s;
}
html body header .header_bottom .area #gnb > ul > li#id6 > a {
  width: 12rem;
  max-height: 3.2rem;
}
html body header .header_bottom .area #gnb > ul > li#id6:hover {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_06_active.svg");
}
html body header .header_bottom .area #gnb > ul > li#id7 {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_07.svg");
  min-width: 8.8rem;
  max-height: 3.2rem;
  transition: all 0.4s;
}
html body header .header_bottom .area #gnb > ul > li#id7 > a {
  width: 12rem;
  max-height: 3.2rem;
}
html body header .header_bottom .area #gnb > ul > li#id7:hover {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_07_active.svg");
}
html body header .header_bottom .area #gnb > ul > li#id8 {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_08.svg");
  min-width: 8.8rem;
  max-height: 3.2rem;
  transition: all 0.4s;
}
html body header .header_bottom .area #gnb > ul > li#id8 > a {
  width: 12rem;
  max-height: 3.2rem;
}
html body header .header_bottom .area #gnb > ul > li#id8:hover {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_08_active.svg");
}
html body header .header_bottom .area #gnb > ul > li#id9 {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_09.svg");
  min-width: 8.8rem;
  max-height: 3.2rem;
  transition: all 0.4s;
}
html body header .header_bottom .area #gnb > ul > li#id9 > a {
  width: 12rem;
  max-height: 3.2rem;
}
html body header .header_bottom .area #gnb > ul > li#id9:hover {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_09_active.svg");
}
html body header .header_bottom .area #gnb > ul > li#id10 {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_10.svg");
  min-width: 8.8rem;
  max-height: 3.2rem;
  transition: all 0.4s;
}
html body header .header_bottom .area #gnb > ul > li#id10 > a {
  width: 12rem;
  max-height: 3.2rem;
}
html body header .header_bottom .area #gnb > ul > li#id10:hover {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_10_active.svg");
}
html body header .header_bottom .area #gnb > ul > li#id11 {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_11.svg");
  min-width: 8.8rem;
  max-height: 3.2rem;
  transition: all 0.4s;
}
html body header .header_bottom .area #gnb > ul > li#id11 > a {
  width: 12rem;
  max-height: 3.2rem;
}
html body header .header_bottom .area #gnb > ul > li#id11:hover {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_11_active.svg");
}
html body header .header_bottom .area #gnb > ul > li#id12 {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_12.svg");
  min-width: 8.8rem;
  max-height: 3.2rem;
  transition: all 0.4s;
}
html body header .header_bottom .area #gnb > ul > li#id12 > a {
  width: 12rem;
  max-height: 3.2rem;
}
html body header .header_bottom .area #gnb > ul > li#id12:hover {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_12_active.svg");
}
html body header .header_bottom .area #gnb > ul > li#id13 {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_13.svg");
  min-width: 8.8rem;
  max-height: 3.2rem;
  transition: all 0.4s;
}
html body header .header_bottom .area #gnb > ul > li#id13 > a {
  width: 12rem;
  max-height: 3.2rem;
}
html body header .header_bottom .area #gnb > ul > li#id13:hover {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_13_active.svg");
}
html body header .header_bottom .area #gnb > ul > li#id14 {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_14.svg");
  min-width: 8.8rem;
  max-height: 3.2rem;
  transition: all 0.4s;
}
html body header .header_bottom .area #gnb > ul > li#id14 > a {
  width: 12rem;
  max-height: 3.2rem;
}
html body header .header_bottom .area #gnb > ul > li#id14:hover {
  background: center/contain no-repeat url("../image/renewal/images/img_gnb_14_active.svg");
}
html body header .header_bottom .area #gnb > ul > li > ul.second_list {
  top: 5.6rem;
  padding: 0;
}
html body header .header_bottom .area #gnb > ul > li > ul.second_list > li {
  height: 4rem;
}
html body header .header_bottom .area #gnb > ul > li > ul.second_list > li a {
  width: 100%;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 1.4rem/1.8rem "Spoqa Han Sans Neo", "sans-serif";
  margin: 0;
}
html body header .header_bottom .area #gnb > ul > li > ul.second_list.on {
  height: 24rem;
}
html body header .header_bottom .area #gnb > ul > li > ul.second_list.on > li {
  height: 4rem;
}
html body header .header_bottom .area #gnb > ul > li > ul.second_list.on > li a {
  height: 4rem;
}
html body header .header_bottom .area #gnb > ul a {
  border-bottom: none;
}
html body header .header_bottom .area .sns_group {
  padding-top: 0;
}
html body header .header_bottom .area .sns_group #wordle {
  background: center/contain no-repeat url("../image/renewal/images/img_wordle.svg");
  width: 12rem;
  min-height: 3.2rem;
  transition: all 0.4s;
}
html body header .header_bottom .area .sns_group #wordle:hover {
  background: center/contain no-repeat url("../image/renewal/images/img_wordle_active.svg");
}
html body header .header_bottom .area .sns_group #wordle a {
  background: none;
  width: 12rem;
  height: 3.2rem;
}
html body .sub_bg {
  top: 12rem;
  z-index: 900;
}
html body .sub_bg.on {
  height: 24rem;
}
html body .sub_bg > .area {
  margin: 0 auto;
}
html body .sub_bg .icon_bg {
  width: 18rem;
}
html body .sub_bg .icon_bg span {
  padding-top: 13rem;
  background: url(../image/common/gnb_open_ico04.png) no-repeat center 30px !important;
}

/*# sourceMappingURL=main.css.map */
