@charset "UTF-8";

:root {
  --ct-primary: #6271dd;
  --ct-secondary: #787ca9;
  --ct-point: #30d1ff;

  --ct-primary-active: #6271dd;
  --ct-secondary-active: #787ca9;
  --ct-point-active: #30d1ff;

  --ct-dark: #1e1e2c;
  --ct-white: #fff;
}
/* font */
@font-face {
  font-family: "Pretendard";
  src: local("Pretendard-Regular"), url("/assets/fonts/Pretendard-Regular.woff") format("woff"), url("/assets/fonts/Pretendard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Pretendard";
  src: local("Pretendard-Medium"), url("/assets/fonts/Pretendard-Medium.woff") format("woff"), url("/assets/fonts/Pretendard-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Pretendard";
  src: local("Pretendard-SemiBold"), url("/assets/fonts/Pretendard-SemiBold.woff") format("woff"), url("/assets/fonts/Pretendard-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Pretendard";
  src: local("Pretendard-Bold"), url("/assets/fonts/Pretendard-Bold.woff") format("woff"), url("/assets/fonts/Pretendard-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Pretendard";
  src: local("Pretendard-ExtraBold"), url("/assets/fonts/Pretendard-ExtraBold.woff") format("woff"), url("/assets/fonts/Pretendard-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Pretendard";
  src: local("Pretendard-black"), url("/assets/fonts/Pretendard-Black.woff") format("woff"), url("/assets/fonts/Pretendard-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "GmarketSans";
  src: local("GmarketSans"), url("/assets/fonts/GmarketSansTTFBold.woff") format("woff"), url("/assets/fonts/GmarketSansTTFBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

/** 
* beark point 
* @media (max-width: 1400px)
* @media (max-width: 1200px)
* @media (max-width: 991px)
* @media (max-width: 767px)
* @media (max-width: 576px)
*/

html,
body {
  width: 100%;
  height: 100%;
}
body {
  font-family: "Pretendard";
}

/* common */
.font-gmarket-sans {
  font-family: "GmarketSans" !important;
  font-weight: 700 !important;
}
.text-ct-primary {
  color: var(--ct-primary) !important;
}
.text-ct-secondary {
  color: var(--ct-secondary) !important;
}
.text-ct-point {
  color: var(--ct-point) !important;
}
.text-ct-dark {
  color: var(--ct-dark) !important;
}
.text-ct-white {
  color: var(--ct-white) !important;
}
.bg-ct-primary {
  background-color: var(--ct-primary) !important;
}
.bg-ct-secondary {
  background-color: var(--ct-secondary) !important;
}
.bg-ct-point {
  background-color: var(--ct-point) !important;
}
.bg-ct-dark {
  background-color: var(--ct-dark) !important;
}
.bg-ct-white {
  background-color: var(--ct-white) !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  padding: 17px 25px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}
.btn.btn-ct-primary {
  background-color: var(--ct-primary);
  border-color: var(--ct-primary);
  color: var(--ct-white);
}
.btn.btn-ct-gray {
  background-color: #b7c4d6;
  border-color: #b7c4d6;
  color: var(--ct-white);
}
.btn:not(.btn-outline):not(.btn-dashed):not(.btn-bordered):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon) {
  padding: 17px 25px;
}
.btn-check:active + .btn.btn-ct-primary,
.btn-check:checked + .btn.btn-ct-primary,
.btn.btn-ct-primary.active,
.btn.btn-ct-primary.show,
.btn.btn-ct-primary:active:not(.btn-active),
.btn.btn-ct-primary:focus:not(.btn-active),
.btn.btn-ct-primary:hover:not(.btn-active),
.show > .btn.btn-ct-primary {
  background-color: var(--ct-primary-active) !important;
  border-color: var(--ct-primary-active);
  color: var(--ct-white);
}
.btn.btn-ct-secondary {
  background-color: var(--ct-secondary);
  border-color: var(--ct-secondary);
  color: var(--ct-white);
}
.btn-check:active + .btn.btn-ct-secondary,
.btn-check:checked + .btn.btn-ct-secondary,
.btn.btn-ct-secondary.active,
.btn.btn-ct-secondary.show,
.btn.btn-ct-secondary:active:not(.btn-active),
.btn.btn-ct-secondary:focus:not(.btn-active),
.btn.btn-ct-secondary:hover:not(.btn-active),
.show > .btn.btn-ct-secondary {
  background-color: var(--ct-secondary-active) !important;
  border-color: var(--ct-secondary-active);
  color: var(--ct-white);
}
.btn.btn-ct-point {
  background-color: var(--ct-point);
  border-color: var(--ct-point);
  color: var(--ct-dark);
}
.btn-check:active + .btn.btn-ct-point,
.btn-check:checked + .btn.btn-ct-point,
.btn.btn-ct-point.active,
.btn.btn-ct-point.show,
.btn.btn-ct-point:active:not(.btn-active),
.btn.btn-ct-point:focus:not(.btn-active),
.btn.btn-ct-point:hover:not(.btn-active),
.show > .btn.btn-ct-point {
  background-color: var(--ct-point-active) !important;
  border-color: var(--ct-point-active);
  color: var(--ct-dark);
}
[class*="btn-ct-"].btn-lg {
  padding: 25px !important;
  font-size: 20px;
}

/* form */
.input-checkbox {
  position: absolute;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.checkbox label {
  position: relative;
  font-size: 14px;
  line-height: 24px;
}
.checkbox label:before {
  content: "";
  display: block;
  margin-right: 9px;
  width: 24px;
  height: 24px;
  background: url(/assets/images/icon_checkbox.svg) no-repeat center center/100%;
}
.input-text {
  width: 100%;
  height: 53px;
  padding: 0 25px;
  border-radius: 7px;
  border: 1px solid #b7c4d6;
  background: var(--ct-white);
}
.input-text::-webkit-input-placeholder,
.input-text::placeholder {
  color: #b7c4d6;
}

.ct-icon {
  position: relative;
}
.ct-icon:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 1399px) {
}
@media (max-width: 1199px) {
}
@media (max-width: 991px) {
  .btn[class*="btn-ct-"] {
    height: 42px;
    padding: 12px 10px !important;
  }
  [class*="btn-ct-"].btn-lg {
    height: 48px;
    padding: 20px !important;
    font-size: 16px;
  }

  /* form */
  .checkbox label {
    font-size: 13px;
  }
  .checkbox label:before {
    margin-right: 6px;
    width: 20px;
    height: 20px;
  }
  .input-text {
    height: 42px;
    padding: 0 16px;
  }
}
@media (max-width: 767px) {
  .btn[class*="btn-ct-"] {
    min-width: 80px;
    height: 38px;
    padding: 7px 10px !important;
  }
  [class*="btn-ct-"].btn-lg {
    height: 42px;
    padding: 15px 25px !important;
  }

  /* form */
  .checkbox label {
    font-size: 12px;
  }
  .input-text {
    height: 38px;
    padding: 0 12px;
  }
}

/* layout */
#wrap {
  display: flex;
  /* min-height: 100%; */
  flex-direction: column;
}
#container {
  flex: 1;
}
#container.main-container,
#container.contents {
  padding-bottom: 10px;
}
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 991px) {
  #container.main-container,
  #container.contents {
    padding-bottom: 10px;
  }
  .container {
    padding: 0 15px;
  }
}

/* header */
#header {
  flex: none;
  padding: 15px 0;
  z-index: 10;
  box-shadow: unset;
  background-color: unset;
}
#header.header-main {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 100;
  background: var(--ct-primary);
}
#header.header-main .h-logo .ct-icon {
  width: 132px;
  height: 33px;
}
#header.header-main .h-logo .ct-icon:before {
  background-image: url(/assets/images/h_logo.svg);
}
#header.header-main .h-util {
  gap: 16px;
}
#header.header-main .mypage.ct-icon {
  width: 32px;
  height: 32px;
}
#header.header-main .mypage.ct-icon:before {
  background-image: url(/assets/images/ico_mypage.svg);
}
#header.header-main .h-util .btn-subscribe {
  padding: 10px 25px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}
#header.header-main .h-nav ul {
  gap: 25px;
}
#header.header-main .h-nav ul a {
  font-size: 22px;
  color: var(--ct-white);
  transition: all 0.3s ease;
}
#header.header-main .h-nav ul a:hover {
  color: var(--ct-point);
}

#header.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  padding: 20px 40px 20px;
}
#header.header .logo .ct-icon {
  width: 159px;
  height: 40px;
}
#header.header .logo .ct-icon:before {
  background-image: url(/assets/images/logo.svg);
}
#header.header .btn-copy {
  gap: 8px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.6;
  border: 0;
  border-radius: 7px;
  background: #f5f6f7;
}
#header.header .btn-copy .icon-copy-url {
  width: 20px;
  height: 20px;
}
#header.header .btn-copy .icon-copy-url:before {
  background-image: url(/assets/images/icon_link.svg);
}

@media (max-width: 991px) {
  #header {
    padding: 12px 0;
  }
  #header.header-main .h-logo .ct-icon {
    width: 120px;
    height: 30px;
  }
  #header.header-main .h-util {
    gap: 10px;
  }
  #header.header-main .mypage.ct-icon {
    width: 28px;
    height: 28px;
  }
  #header.header-main .mypage.ct-icon:before {
    background-size: 100%;
  }
  #header.header-main .h-util .btn-subscribe {
    padding: 6px 20px;
    font-size: 18px;
  }
  #header.header-main .h-nav ul {
    gap: 20px;
  }
  #header.header-main .h-nav ul a {
    font-size: 18px;
  }

  #header.header {
    padding: 15px 20px;
  }
  #header.header .logo .ct-icon {
    width: 120px;
    height: 31px;
  }
  #header.header .btn-copy {
    gap: 6px;
    padding: 6px 10px;
    font-size: 13px;
  }
  #header.header .btn-copy .icon-copy-url {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 767px) {
  #header.header-main .btn-menu-controler {
    position: absolute;
    top: 12px;
    right: 15px;
    width: 32px;
    height: 32px;
    padding: 0;
    background: transparent;
    z-index: 100;
  }
  #header.header-main .btn-menu-controler:before,
  #header.header-main .btn-menu-controler:after {
    content: "";
    position: absolute;
    left: 0;
    width: 32px;
    height: 3px;
    background: var(--ct-white);
    transition: all 0.3s ease;
  }
  #header.header-main .btn-menu-controler:before {
    top: 3px;
  }
  #header.header-main .btn-menu-controler:after {
    bottom: 3px;
  }
  #header.header-main .btn-menu-controler .bar {
    position: absolute;
    left: 0;
    top: calc(50% - (3px / 2));
    width: 32px;
    height: 3px;
    background: var(--ct-white);
    transition: all 0.3s ease;
  }

  #header.header-main .btn-menu-controler.active:before {
    transform: rotate(45deg);
    transform-origin: left top;
    width: 36px;
    top: 2px;
    left: 4px;
  }
  #header.header-main .btn-menu-controler.active:after {
    transform: rotate(-45deg);
    transform-origin: left bottom;
    width: 36px;
    bottom: 2px;
    left: 4px;
  }
  #header.header-main .btn-menu-controler.active .bar {
    opacity: 0;
  }
  #header.header-main .nav-wrap {
    position: fixed;
    right: -260px;
    top: 0;
    bottom: 0;
    width: 260px;
    padding: 80px 20px 30px;
    transform: translateX(0);
    background: var(--ct-dark);
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    z-index: 99;
  }
  #header.header-main .nav-wrap.active {
    transform: translateX(-260px);
    opacity: 1;
  }
  #header.header-main .h-nav ul {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--ct-secondary);
  }
  #header.header-main .h-nav ul li {
    margin: 12px 0;
  }
  #header.header-main .h-util {
    gap: 10px;
    margin-top: 20px;
  }
  #header.header-main .mypage.ct-icon {
    position: absolute;
    top: 15px;
    left: 20px;
  }
  #header.header-main .h-util .btn-subscribe {
    min-width: auto;
    padding: 10px 10px;
    font-size: 16px;
  }
  .header-dimmed {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 1;
    visibility: visible;
    transform: all 0.3 ease;
    z-index: 98;
  }

  #header.header {
    padding: 10px 20px;
  }
  #header.header .logo .ct-icon {
    width: 90px;
    height: 23px;
  }
  #header.header .btn-copy {
    padding: 6px;
    background: transparent;
  }
  #header.header .btn-copy .icon-copy-url {
    width: 18px;
    height: 18px;
  }
}

/* footer */
#footer {
  flex: none;
}
#footer.footer-main {
  padding: 32px 0 20px;
  /*background: var(--ct-dark);*/
}
#footer.footer-main .f-logo {
  width: 120px;
  height: 31px;
  margin-bottom: 18px;
}
#footer.footer-main .f-logo:before {
  background-image: url(/assets/images/f_logo.svg);
}
#footer.footer-main .copyright {
  margin-top: 30px;
}
#footer.footer-main .tel-info strong {
  font-size: 28px;
}
#footer.footer-main .tel-info small {
  font-size: 13px;
}
#footer.footer-main .sns {
  gap: 14px;
  margin-top: 20px;
}
#footer.footer-main .sns a {
  width: 20px;
  height: 19px;
}
#footer.footer-main .sns .instagram:before {
  background-image: url(/assets/images/ico_instagram.svg);
}
#footer.footer-main .sns .facebook:before {
  background-image: url(/assets/images/ico_facebook.svg);
}
#footer.footer-main .sns .youtube:before {
  background-image: url(/assets/images/ico_youtube.svg);
}
#footer.footer-main .sns .twitter:before {
  background-image: url(/assets/images/ico_twitter.svg);
}

#footer.footer {
 /* background: var(--ct-dark);*/
  padding: 15px 0;
}
#footer.footer .logo-sm {
  width: 30px;
  height: 26px;
}
/*#footer.footer .logo-sm:before {
  background-image: url(/assets/images/logo_sm.svg);
}*/
#footer.footer .copyright {
  font-size: 11px;
}

@media (max-width: 767px) {
  #footer.footer-main {
    padding: 20px 0;
  }
  #footer.footer-main .f-logo {
    width: 100px;
    height: 26px;
    margin-bottom: 12px;
  }
  #footer.footer-main .f-logo:before {
    background-size: 100%;
  }
  #footer.footer-main .copyright {
    margin-top: 18px;
  }
  #footer.footer-main .tel-info strong {
    margin-bottom: 5px;
    font-size: 24px;
  }
  #footer.footer-main .f-customer {
    margin-top: 38px;
  }
  #footer.footer-main .sns {
    gap: 10px;
    margin-top: 15px;
  }

  #footer.footer {
    padding: 15px 0;
  }
  #footer.footer .logo-sm {
    width: 20px;
    height: 18px;
  }
}

/* main container */
.main-visual {
  padding-top: 122px;
}
.main-visual .text-area {
  margin-bottom: 56px;
}
.main-visual .text-tit {
  margin-bottom: 17px;
  font-size: 50px;
}
.main-visual .desc {
  font-size: 26px;
}
.main-visual .img-area {
  text-align: center;
}

@media (max-width: 1399px) {
}
@media (max-width: 1199px) {
}
@media (max-width: 991px) {
  .main-visual {
    padding-top: 100px;
  }
  .main-visual .text-area {
    margin-bottom: 40px;
  }
  .main-visual .text-tit {
    margin-bottom: 12px;
    font-size: 45px;
  }
  .main-visual .desc {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .main-visual {
    padding-top: 85px;
  }
  .main-visual .text-area {
    margin-bottom: 35px;
  }
  .main-visual .text-tit {
    font-size: 35px;
  }
  .main-visual .desc {
    font-size: 18px;
  }
}

.main-quick {
  margin-top: -50px;
  padding: 22px 0;
  background: #e0eaf8;
  border-radius: 12px;
  box-shadow: 0px 10px 30px 0px rgba(22, 33, 91, 0.28);
  z-index: 1;
}
.main-quick .q-link {
  gap: 15px;
  padding: 0 20px;
  color: #16215b;
  font-size: 24px;
}
.main-quick .q-link:before {
  content: "";
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 7px;
}
.main-quick .q-link:not(:first-child) {
  border-left: 1px solid #cbd4e8;
}
.main-quick .q-link:first-child:before {
  background: var(--ct-secondary) url(/assets/images/icon_main_quick1.svg) no-repeat center center/24px;
}
.main-quick .q-link:nth-child(2):before {
  background: var(--ct-secondary) url(/assets/images/icon_main_quick2.svg) no-repeat center center/24px;
}
.main-quick .q-link:nth-child(3):before {
  background: var(--ct-dark) url(/assets/images/icon_main_quick3.svg) no-repeat center center/24px;
}
.main-quick .q-link small {
  font-size: 14px;
}
.main-quick .q-link:after {
  content: "";
  display: block;
  width: 10px;
  height: 16px;
  background: url(/assets/images/ico_arrow_right_dark.svg) no-repeat center center/100%;
}

@media (max-width: 991px) {
  .main-quick {
    margin-top: -30px;
    padding: 10px 0;
  }
  .main-quick .q-link {
    padding: 0 15px;
    font-size: 18px;
  }
  .main-quick .q-link:before {
    width: 44px;
    height: 44px;
  }
  .main-quick .q-link:first-child:before {
    background-size: 18px;
  }
  .main-quick .q-link:nth-child(2):before {
    background-size: 18px;
  }
  .main-quick .q-link:nth-child(3):before {
    background-size: 18px;
  }
  .main-quick .q-link small {
    font-size: 12px;
  }
  .main-quick .q-link:after {
    width: 8px;
  }
}
@media (max-width: 767px) {
  .main-quick {
    margin-top: -20px;
    padding: 0;
    gap: 10px;
    background: transparent;
    box-shadow: none;
  }
  .main-quick .q-link {
    gap: 10px;
    padding: 10px;
    font-size: 16px;
    border-radius: 7px;
    background-color: #e0eaf8;
    box-shadow: 0px 5px 10px 0px rgba(22, 33, 91, 0.28);
  }
  .main-quick .q-link:before {
    width: 32px;
    height: 32px;
  }
  .main-quick .q-link:first-child:before {
    background-size: 12px;
  }
  .main-quick .q-link:nth-child(2):before {
    background-size: 12px;
  }
  .main-quick .q-link:nth-child(3):before {
    background-size: 12px;
  }
  .main-quick .q-link small {
    font-size: 10px;
  }
  .main-quick .q-link:after {
    width: 8px;
  }
}

.main-section {
  margin-top: 150px;
}
.quick + .main-section {
  margin-top: 120px;
}
.main-section-title {
  margin-bottom: 55px;
  font-size: 36px;
}
.main-section-title:has(+ .title-desc) {
  margin-bottom: 34px;
}
.main-section-title + .title-desc {
  font-size: 22px;
}

@media (max-width: 1199px) {
  .main-section {
    margin-top: 80px;
  }
  .quick + .main-section {
    margin-top: 80px;
  }
}
@media (max-width: 991px) {
  .main-section {
    margin-top: 60px;
  }
  .quick + .main-section {
    margin-top: 60px;
  }
  .main-section-title {
    margin-bottom: 30px;
    font-size: 30px;
  }
  .main-section-title:has(+ .title-desc) {
    margin-bottom: 18px;
  }
  .main-section-title + .title-desc {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .main-section {
    margin-top: 50px;
  }
  .quick + .main-section {
    margin-top: 50px;
  }
  .main-section-title {
    margin-bottom: 20px;
    font-size: 26px;
  }
  .main-section-title:has(+ .title-desc) {
    margin-bottom: 15px;
  }
  .main-section-title + .title-desc {
    font-size: 16px;
  }
}

.main-sec-function {
  gap: 40px;
  margin-top: 100px;
}
.main-sec-function .divide-box {
  gap: 40px;
}
.main-sec-function .dl-box {
  padding: 33px 0 29px 40px;
  border-radius: 20px;
}
.main-sec-function .dl-box dt {
  margin-bottom: 12px;
  font-size: 32px;
}
.main-sec-function .dl-box dd {
  word-break: keep-all;
  font-size: 22px;
}
.main-sec-function .dl-box dd small {
  font-size: 17px;
}

.main-sec-function .dl-box1 {
  color: #16215b;
  background: #a7adf5;
}
.main-sec-function .dl-box1 dd {
  color: #2f3360;
}
.main-sec-function .dl-box2 {
  color: #235260;
  background: #ccedf7;
}
.main-sec-function .dl-box2 dd {
  color: #31697a;
}
.main-sec-function .dl-box3 {
  color: #5d4f8a;
  background: #e0d9f6;
}
.main-sec-function .dl-box4 {
  color: #16215b;
  background: #d4d8fe;
}
.main-sec-function .dl-box4 dd {
  color: #2f3360;
}
.main-sec-function .dl-box5 {
  color: var(--ct-white);
  background: var(--ct-secondary);
}
.main-sec-function .dl-box6 {
  color: #1c3a67;
  background: #cedbee;
}
.main-sec-function .dl-box7 {
  color: var(--ct-white);
  background: var(--ct-primary);
}
.main-sec-function .dl-box8 {
  color: var(--ct-dark);
  background: #d3d5e1;
}
.main-sec-function .dl-box8 dd {
  color: #494949;
}
.main-sec-function .dl-box.has-illus:after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
}
.main-sec-function .dl-box.has-illus-1 {
  padding-bottom: 72px;
}
.main-sec-function .dl-box.has-illus-1:after {
  top: 38px;
  right: 6px;
  width: 209px;
  height: 240px;
  background-image: url(/assets/images/bg_main_sec_ill_01.png);
}
.main-sec-function .dl-box.has-illus-2:after {
  bottom: -2px;
  right: 10px;
  width: 257px;
  height: 241px;
  background-image: url(/assets/images/bg_main_sec_ill_02.png);
}
.main-sec-function .dl-box.has-illus-3:after {
  bottom: -10px;
  right: -5px;
  width: 240px;
  height: 216px;
  background-image: url(/assets/images/bg_main_sec_ill_03.png);
}
.main-sec-function .dl-box.has-illus-4:after {
  top: -20px;
  right: 12px;
  width: 288px;
  height: 211px;
  background-image: url(/assets/images/bg_main_sec_ill_04.png);
}

@media (max-width: 1399px) {
  .main-sec-function .dl-box dt,
  .main-sec-function .dl-box dd {
    position: relative;
    z-index: 3;
  }
  .main-sec-function .dl-box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    z-index: 2;
  }
  .main-sec-function .dl-box.has-illus-1:after {
    top: auto;
    bottom: 5px;
  }
  .main-sec-function .dl-box.has-illus-4:after {
    top: 5px;
  }
}
@media (max-width: 1199px) {
  .main-sec-function {
    gap: 30px;
    margin-top: 60px;
  }
  .main-sec-function .divide-box {
    gap: 30px;
  }
  .main-sec-function .dl-box {
    overflow: hidden;
    padding: 25px;
  }
  .main-sec-function .dl-box dt {
    font-size: 28px;
  }
  .main-sec-function .dl-box dd {
    font-size: 18px;
  }
  .main-sec-function .dl-box dd small {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .main-sec-function .dl-box:before {
    display: none;
  }
  .main-sec-function {
    gap: 15px;
    margin-top: 40px;
  }
  .main-sec-function .divide-box {
    gap: 15px;
  }
  .main-sec-function .dl-box {
    padding: 20px;
    border-radius: 15px;
  }
  .main-sec-function .dl-box dt {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .main-sec-function .dl-box dd {
    font-size: 16px;
  }
  .main-sec-function .dl-box dd small {
    font-size: 14px;
  }
  .main-sec-function .dl-box.has-illus:after {
    display: none;
  }
  .main-sec-function .dl-box.has-illus-1 {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .main-sec-function {
    gap: 10px;
    margin-top: 20px;
  }
  .main-sec-function .divide-box {
    gap: 10px;
  }
  .main-sec-function .dl-box {
    padding: 15px;
  }
  .main-sec-function .dl-box dt {
    margin-bottom: 8px;
    font-size: 20px;
  }
  .main-sec-function .dl-box dd {
    font-size: 14px;
  }
  .main-sec-function .dl-box dd small {
    font-size: 12px;
  }
  .main-sec-function .dl-box.has-illus-1 {
    padding-bottom: 15px;
  }
}

.main-sec-service {
  gap: 80px;
  margin-top: 120px;
  counter-reset: count;
}
.main-sec-service li {
  gap: 80px;
}
.main-sec-service li strong {
  gap: 12px;
  margin-bottom: 16px;
  font-size: 32px;
}
.main-sec-service li strong:before {
  content: "0" counters(count, ".");
  counter-increment: count;
  display: flex;
  width: 34px;
  height: 34px;
  justify-content: center;
  align-items: center;
  color: var(--ct-point);
  font-weight: 900;
  font-size: 14px;
  border-radius: 7px;
  background-color: var(--ct-dark);
}
.main-sec-service p {
  word-break: keep-all;
  font-size: 24px;
}
.main-sec-service .img-area {
  width: 50%;
}

@media (max-width: 1199px) {
  .main-sec-service {
    margin-top: 60px;
    gap: 40px;
  }
  .main-sec-service li {
    gap: 40px;
  }
  .main-sec-service li strong {
    font-size: 30px;
  }
  .main-sec-service p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .main-sec-service {
    gap: 20px;
    margin-top: 40px;
  }
  .main-sec-service li {
    gap: 40px;
  }
  .main-sec-service li strong {
    gap: 8px;
    margin-bottom: 8px;
    font-size: 24px;
  }
  .main-sec-service li strong:before {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
  .main-sec-service p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .main-sec-service {
    gap: 10px;
    margin-top: 30px;
  }
  .main-sec-service li {
    gap: 10px;
  }
  .main-sec-service li strong {
    gap: 5px;
    font-size: 18px;
  }
  .main-sec-service li strong:before {
    width: 24px;
    height: 24px;
    font-size: 11px;
    flex: none;
  }
  .main-sec-service p {
    font-size: 14px;
  }
  .main-sec-service .img-area {
    width: 44%;
  }
}
@media (max-width: 575px) {
  .main-sec-service {
    gap: 15px;
  }
  .main-sec-service .img-area {
    width: 100%;
    max-height: 160px;
    overflow: hidden;
    border-radius: 20px;
  }
  .main-sec-service .img-area img {
    height: 100%;
    object-fit: cover;
  }
}

.main-sec-form {
  margin-top: 100px;
}
.main-sec-form .inner {
  min-height: 750px;
  padding-top: 40px;
  border-radius: 20px;
  background-image: url(/assets/images/bg_main_form.png);
  background-repeat: no-repeat;
  background-position: center bottom;
}
.main-sec-form .main-section-title:has(+ .title-desc) {
  margin-bottom: 15px;
}
.main-sec-form .form-box {
  max-width: 520px;
  height: 48px;
  gap: 10px;
  margin: 38px auto 0;
}
.main-sec-form .form-box input {
  padding: 0 18px;
  font-size: 16px;
  border-radius: 7px;
  border: 0;
}
.main-sec-form .form-box input::-webkit-input-placeholder,
.main-sec-form .form-box input::placeholder {
  color: var(--ct-secondary);
}
.main-sec-form .form-box .btn.btn-request {
  flex: none;
  min-width: 170px;
  height: 48px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 24px;
}

@media (max-width: 1199px) {
  .main-sec-form {
    margin-top: 80px;
  }
}
@media (max-width: 991px) {
  .main-sec-form {
    margin-top: 60px;
  }
  .main-sec-form .inner {
    padding-top: 30px;
    border-radius: 20px;
  }
  .main-sec-form .main-section-title:has(+ .title-desc) {
    margin-bottom: 18px;
  }
  .main-sec-form .form-box {
    height: 42px;
    margin: 28px auto 0;
  }
  .main-sec-form .form-box input {
    padding: 0 12px;
    font-size: 14px;
  }
  .main-sec-form .form-box .btn.btn-request {
    padding: 6px 20px;
    min-width: 130px;
    height: 42px;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .main-sec-form .inner {
    min-height: min-content;
    padding: 30px 20px;
    background-image: none;
  }
  .main-sec-form .main-section-title:has(+ .title-desc) {
    margin-bottom: 12px;
  }
  .main-sec-form .form-box {
    height: 42px;
    margin: 28px auto 0;
  }
  .main-sec-form .form-box .btn.btn-request {
    padding: 10px;
    min-width: 130px;
    font-size: 16px;
  }
}

.main-section:has(.main-sec-customers) {
  margin-top: 112px;
}
.main-sec-customers {
  padding: 49px 0;
  background: #f2f2f8;
}
.swiper-customers {
  margin: 0;
}
.swiper-customers + .swiper-customers {
  margin-top: 30px;
}
.swiper-customers ul {
  gap: 20px;
}
.swiper-customers a {
  width: 158px;
  height: 84px;
  border-radius: 7px;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .main-section:has(.main-sec-customers) {
    margin-top: 80px;
  }
  .main-sec-customers {
    padding: 40px 0;
  }
  .swiper-customers + .swiper-customers {
    margin-top: 25px;
  }
}
@media (max-width: 991px) {
  .main-section:has(.main-sec-customers) {
    margin-top: 60px;
  }
  .main-sec-customers {
    padding: 30px 0;
  }
  .swiper-customers + .swiper-customers {
    margin-top: 15px;
  }
  .swiper-customers a {
    width: 120px;
    height: 64px;
  }
}
@media (max-width: 767px) {
  .main-sec-customers {
    padding: 20px 0;
  }
  .swiper-customers ul {
    gap: 10px;
  }
  .swiper-customers a {
    width: 95px;
    height: 50px;
  }
}

.main-sec-qna {
  border-top: 1px solid var(--ct-secondary);
}
.main-sec-qna .qna-box {
  padding: 14px 17px;
  border-bottom: 1px solid #e0eaf8;
}
.main-sec-qna .qna-box .q-box {
  gap: 16px;
  font-size: 22px;
}
.main-sec-qna .q-box:before {
  content: "Q";
  font-weight: 700;
  color: #6271dd;
  flex: none;
}
.main-sec-qna .q-box:after {
  content: "";
  display: block;
  width: 11px;
  height: 32px;
  background: url(/assets/images/ico_arrow_bottom_fill_secondary.svg) no-repeat center center/100%;
  flex: none;
}
.main-sec-qna .a-box {
  overflow: hidden;
  height: 0;
  font-size: 18px;
}
.main-sec-qna .qna-box.active .a-box {
  position: relative;
  height: auto;
  margin-top: 10px;
  padding: 0 17px 0 75px;
}
.main-sec-qna .qna-box.active .a-box:before {
  content: "";
  position: absolute;
  left: 50px;
  top: 0;
  width: 18px;
  height: 24px;
  background: url(/assets/images/ico_reply.svg) no-repeat center center;
}

@media (max-width: 767px) {
  .main-sec-qna .qna-box {
    padding: 10px 12px;
  }
  .main-sec-qna .qna-box .q-box {
    gap: 12px;
    font-size: 17px;
  }
  .main-sec-qna .q-box:after {
    height: 25px;
  }
  .main-sec-qna .a-box {
    font-size: 14px;
  }
  .main-sec-qna .qna-box.active .a-box {
    margin-top: 5px;
    padding: 0 12px 0 52px;
  }
  .main-sec-qna .qna-box.active .a-box:before {
    left: 28px;
    width: 15px;
    background-size: 100%;
  }
}

.main-section-title:has(+ .main-sec-subscribeinfo) {
  margin-bottom: 30px;
}
.main-sec-subscribeinfo .tab-btns {
  margin: 0 auto 80px;
  padding: 5px 6px;
  gap: 40px;
  background: #f0f4f9;
  border-radius: 23px;
}
.main-sec-subscribeinfo .tab-btns button {
  padding: 6px 14px;
  font-size: 16px;
  color: var(--ct-secondary);
  border-radius: 23px;
  background: transparent;
  transition: all 0.3s ease;
}
.main-sec-subscribeinfo .tab-btns .active button {
  color: var(--ct-point);
  background: var(--ct-dark);
}
.main-sec-subscribeinfo .tab-cont {
  display: none;
}
.main-sec-subscribeinfo .tab-cont.active {
  display: block;
}

.price-card {
  padding: 35px 15px 15px;
  border-radius: 20px;
  background: #e0eaf8;
}
.price-card small {
  margin-bottom: 9px;
  font-size: 12px;
}
.price-card strong {
  margin-bottom: 25px;
  font-size: 24px;
  color: var(--ct-dark);
}
.price-card .price-info {
  margin-bottom: 18px;
}
.price-card .price-info .price {
  margin-bottom: 8px;
  font-size: 28px;
}
.price-card .price-info .price:not(.counsel):before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 4px;
  background: url(/assets/images/ico_price_unit.svg) no-repeat right center/24px;
}
.price-card .price-info .unit {
  font-size: 14px;
  color: var(--ct-primary);
}
.price-card .btn,
.price-card .btn:active,
.price-card .btn:hover,
.price-card .btn:focus {
  padding: 13px !important;
  border-radius: 10px;
  font-size: 20px;
  color: var(--ct-white);
  background: var(--ct-primary);
}
.price-card .btn.btn-kakao:after {
  content: "";
  position: absolute;
  right: -12px;
  top: -18px;
  width: 54px;
  height: 50px;
  background: url(/assets/images/ico_kakaotalk.svg) no-repeat center center/cover;
}
.price-card.active {
  background: #16215b;
}
.price-card.active strong {
  color: var(--ct-white);
}
.price-card.active .price-info .price {
  color: var(--ct-point);
}
.price-card.active .price-info .price:not(.counsel):before {
  background-image: url(/assets/images/ico_price_unit_active.svg);
}
.price-card.active .price-info .unit {
  color: var(--ct-white);
}
.price-card.active .btn {
  background: #243171;
}

.price-table-box {
  gap: 40px;
}
.price-table.counsel-info-box {
  width: 184px;
}
.price-table .header-row .divide,
.price-table .body-row .divide {
  width: 170px;
}
.price-table .header-row {
  gap: 40px;
  margin-bottom: 42px;
}
.price-table .body-row {
  gap: 40px;
  height: 72px;
  font-size: 20px;
  border-bottom: 1px solid var(--ct-secondary);
}

.price-table .subscribe_aside {
  padding-bottom: 264px;
  border-radius: 20px;
  background: #eff4fa url(/assets/images/bg_subscribe_aside.png) no-repeat center bottom/100%;
}
.price-table .subscribe_aside .quotes-box:after {
  content: "";
  display: block;
  width: 100%;
  height: 142px;
  margin-top: -30px;
  background: url(/assets/images/bg_subscribe_quotes.png) no-repeat center top/100%;
}
.price-table .subscribe_aside .text {
  padding: 80px 20px 60px;
  font-size: 17px;
  border-radius: 20px;
  background: #a2a9fb;
}
.price-table .subscribe_aside .text:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  width: 25px;
  height: 19px;
  background: url(/assets/images/ico_quotes.svg) no-repeat center center/cover;
}

@media (max-width: 1399px) {
  .price-table-box {
    gap: 2.2vw;
  }
  .price-table .header-row {
    gap: 2.2vw;
  }
  .price-table .body-row {
    gap: 2.2vw;
  }
}
@media (max-width: 1199px) {
  .main-sec-subscribeinfo .tab-btns {
    margin: 0 auto 50px;
  }

  .price-card {
    margin: 0 auto;
    padding: 30px 10px 12px;
  }
  .price-card small {
    margin-bottom: 7px;
    font-size: 11px;
  }
  .price-card strong {
    margin-bottom: 18px;
    font-size: 21px;
  }
  .price-card .price-info {
    margin-bottom: 15px;
  }
  .price-card .price-info .price {
    margin-bottom: 6px;
    font-size: 25px;
    letter-spacing: -1px;
  }
  .price-card .price-info .price:not(.counsel):before {
    width: 22px;
    height: 22px;
    background-size: 100%;
  }
  .price-card.active .price-info .unit {
    font-size: 13px;
  }
  .price-card .btn,
  .price-card .btn:active,
  .price-card .btn:hover,
  .price-card .btn:focus {
    padding: 11px !important;
    font-size: 17px;
  }
  .price-card .btn.btn-kakao:after {
    width: 45px;
    height: 50px;
    background-size: 100%;
  }

  .price-table-box {
    gap: 1.6vw;
  }
  .price-table.counsel-info-box {
    width: auto;
    max-width: 16%;
    flex: 1 1 164px;
  }
  .price-table .header-row .divide,
  .price-table .body-row .divide {
    text-align: left;
    line-height: 1.3;
    width: 110px;
    word-break: keep-all;
  }
  .price-table .header-row {
    gap: 1.6vw;
    margin-bottom: 32px;
  }
  .price-table .body-row {
    gap: 1.6vw;
    height: 62px;
    font-size: 17px;
  }
  .price-table .subscribe_aside .text {
    padding: 60px 15px 50px;
    font-size: 16px;
  }
  .price-table .subscribe_aside .text:before {
    content: "";
    position: absolute;
    left: 20px;
    top: 20px;
    width: 25px;
    height: 19px;
    background: url(/assets/images/ico_quotes.svg) no-repeat center center/cover;
  }
}
@media (max-width: 991px) {
  .main-sec-subscribeinfo .tab-btns {
    margin: 0 auto 20px;
  }
  .main-sec-subscribeinfo .tab-btns {
    gap: 25px;
  }
  .main-sec-subscribeinfo .tab-btns button {
    font-size: 14px;
  }

  .price-card {
    padding: 25px 8px 12px;
  }
  .price-card strong {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .price-card .price-info .price {
    margin-bottom: 4px;
    font-size: 22px;
  }
  .price-card .price-info .price:not(.counsel):before {
    width: 20px;
    height: 20px;
  }
  .price-card.active .price-info .unit {
    font-size: 12px;
  }
  .price-card .btn,
  .price-card .btn:active,
  .price-card .btn:hover,
  .price-card .btn:focus {
    font-size: 15px;
  }
  .price-card .btn.btn-kakao:after {
    width: 35px;
    height: 45px;
  }

  .price-table-box {
    width: 100%;
    gap: 15px;
    overflow: auto;
  }
  .price-table.counsel-info-box {
    max-width: fit-content;
  }
  .price-table .header-row .header-column {
    min-width: 135px;
  }
  .price-table .header-row .divide,
  .price-table .body-row .divide {
    position: sticky;
    left: 0;
    width: 100px;
    padding: 0 5px;
    background-color: var(--ct-white);
    z-index: 10;
  }
  .price-table .header-row .divide {
    background: transparent;
  }
  .price-table .header-row {
    gap: 15px;
    margin-bottom: 20px;
  }
  .price-table .body-row {
    gap: 15px;
    height: 55px;
    font-size: 15px;
  }
  .price-table .header-row + .body-row {
    border-top: 1px solid var(--ct-secondary);
  }
  .price-table .body-row img {
    width: auto;
    height: 17px;
  }
  .price-table .body-row .divide {
    background: #f2f2f8;
  }
  .price-table .subscribe_aside {
    min-width: 135px;
    padding-bottom: 204px;
  }
  .price-table .subscribe_aside .text {
    padding: 40px 15px 30px;
    font-size: 14px;
  }
  .price-table .subscribe_aside .text:before {
    left: 10px;
    top: 10px;
    width: 20px;
    background-size: 100%;
  }
}
@media (max-width: 767px) {
  .main-section-title:has(+ .main-sec-subscribeinfo) {
    margin-bottom: 20px;
  }
  .main-sec-subscribeinfo .tab-btns {
    margin: 0 auto 20px;
  }
  .price-table .subscribe_aside .quotes-box:after {
    height: 120px;
  }
}

/* join */
.join .join-left {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
  padding: 40px;
}
.join .join-left:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 860px;
  padding-bottom: 100dvh;
  max-width: 100%;
  background: url(/assets/images/bg_join.png) no-repeat center bottom/860px;
}
.join .h-logo .ct-icon {
  width: 132px;
  height: 33px;
}
.join .h-logo .ct-icon:before {
  background-image: url(/assets/images/h_logo.svg);
}
.join .text-desc {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 42vh;
  /* padding-bottom: 500px; */
  z-index: 1;
}
.join .text-desc .text-lg {
  margin-bottom: 15px;
  font-family: "GmarketSans";
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
}
.join .text-desc .text-sm {
  margin-bottom: 45px;
  font-size: 26px;
  font-weight: 600;
  word-break: keep-all;
  line-height: 1.3;
}
.join .join-form {
  flex: 1;
}
.join .join-form .form-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 79px 30px 69px;
}
.join .join-form .join-title {
  margin-bottom: 6px;
  font-size: 30px;
  font-weight: 600;
}
.join .join-form .title-desc {
  margin-bottom: 48px;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
}
.join .join-form .form-cont {
  position: relative;
}
.join .join-form .form-cont:before {
  content: "";
  position: absolute;
  right: 15px;
  top: -150px;
  width: 165px;
  height: 190px;
  background: url(/assets/images/img_join.png) no-repeat center center/auto 100%;
}
.join .join-form .agree-area {
  position: relative;
  z-index: 1;
}
.join .join-form .agree-area + .agree-area {
  margin-top: 40px;
}
.join .join-form .agree-title {
  margin-bottom: 13px;
  font-size: 16px;
}
.join .join-form .agree-box {
  margin-bottom: 15px;
  padding: 12px 10px;
  border-radius: 7px;
  border: 1px solid #b7c4d6;
  background-color: var(--ct-white);
}
.join .join-form .agree-box .scroll-area {
  height: 200px;
  padding: 0 10px;
  overflow-y: auto;
  scrollbar-width: auto;
  scrollbar-color: inherit;
}
.join .join-form .agree-box .scroll-area::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.join .join-form .agree-box .scroll-area::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #b7c4d6;
}
.join .join-form .agree-box .scroll-area::-webkit-scrollbar-thumb {
  background: #16215b;
}
.join .join-form .all-check {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid #b7c4d6;
}
.join .btn-area {
  margin-top: 45px;
  gap: 40px;
}

.join .form-area {
  position: relative;
  z-index: 1;
}
.join .form-area + .form-area {
  margin-top: 20px;
}
.join .form-area .label {
  margin-bottom: 7px;
  font-size: 14px;
}
.join .form-area div:has(.input-text) {
  gap: 12px;
}

@media (max-width: 1199px) {
  .join .join-left {
    padding: 30px;
  }
  .join .text-desc {
    padding-bottom: 38vh;
  }
  .join .text-desc .text-lg {
    margin-bottom: 12px;
    font-size: 48px;
  }
  .join .text-desc .text-sm {
    margin-bottom: 40px;
    font-size: 24px;
  }
  .join .join-form .form-inner {
    padding: 70px 25px 60px;
  }
  .join .join-form .form-cont:before {
    top: -55px;
    height: 90px;
    background-position: center top;
    background-size: 100% auto;
  }
}
@media (max-width: 991px) {
  .join .join-left {
    padding: 20px;
  }
  .join .join-left:after {
    background-size: 650px;
  }
  .join .h-logo .ct-icon:before {
    background-image: url(/assets/images/h_logo.svg);
  }
  .join .text-desc {
    padding-bottom: 40vh;
  }
  .join .text-desc .text-lg {
    margin-bottom: 10px;
    font-size: 40px;
  }
  .join .text-desc .text-sm {
    margin-bottom: 30px;
    font-size: 20px;
  }
  .join .join-form .form-inner {
    padding: 60px 25px 50px;
  }
  .join .join-form .join-title {
    margin-bottom: 5px;
    font-size: 28px;
  }
  .join .join-form .title-desc {
    margin-bottom: 40px;
    font-size: 15px;
  }
  .join .join-form .agree-area + .agree-area {
    margin-top: 25px;
  }
  .join .join-form .agree-title {
    margin-bottom: 10px;
    font-size: 15px;
  }
  .join .join-form .agree-box {
    margin-bottom: 10px;
    padding: 10px;
  }
  .join .join-form .agree-box .scroll-area {
    height: 180px;
  }
  .join .join-form .all-check {
    margin-top: 24px;
    padding-top: 16px;
  }
  .join .btn-area {
    margin-top: 30px;
    gap: 20px;
  }

  .join .form-area + .form-area {
    margin-top: 15px;
  }
  .join .form-area .label {
    margin-bottom: 5px;
    font-size: 13px;
  }
  .join .form-area div:has(.input-text) {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .join .join-left {
    display: none;
  }
  .join .join-form .form-cont:before {
    height: 78px;
    top: -44px;
    right: 5px;
  }
  .join .join-form .form-inner {
    padding: 30px 20px;
  }
  .join .join-form .join-title {
    margin-bottom: 2px;
    font-size: 26px;
  }
  .join .join-form .title-desc {
    margin-bottom: 35px;
    font-size: 14px;
  }
  .join .join-form .agree-area + .agree-area {
    margin-top: 20px;
  }
  .join .join-form .agree-title {
    margin-bottom: 8px;
    font-size: 14px;
  }
  .join .join-form .agree-box {
    margin-bottom: 8px;
  }
  .join .join-form .agree-box .scroll-area {
    height: 160px;
  }
  .join .join-form .all-check {
    margin-top: 12px;
    padding-top: 10px;
  }
  .join .btn-area {
    margin-top: 30px;
    gap: 10px;
  }
}

/* teachers info */
.teacher-profile .cont-area {
  padding-top: 30px;
}
.teachers-info {
  margin-bottom: 35px;
}
.teachers-info > small {
  left: -2px;
  bottom: 0;
  font-size: 12px;
  line-height: 1.4;
  transform-origin: left bottom;
  transform: rotate(-90deg);
}
.teachers-info > small em {
  font-size: 15px;
}
.teachers-info > small i {
  color: #666;
}
.teachers-info .info-box {
  height: 250px;
  padding-left: 125px;
  border: 1px solid #b7c4d6;
}
.teachers-info .info-box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(-45deg);
  transform-origin: left top;
  width: 1px;
  height: 178px;
  background: #b7c4d6;
}
.teachers-info .info-box .thumb {
  width: 250px;
}
.teachers-info .info-box .thumb:before,
.teachers-info .info-box .thumb:after {
  content: "";
  display: block;
  width: 1px;
  height: 250px;
  background: #b7c4d6;
  flex: none;
}
.teachers-info .info-box .thumb .inner {
  padding-bottom: 100%;
  background: #ecedee;
}
.teachers-info .info-box .caption {
  padding: 30px 18px 18px 50px;
}
.teachers-info .info-box .name {
  margin-bottom: 25px;
  font-size: 34px;
}
.teachers-info .info-box .name small {
  font-size: 20px;
}
.teachers-info .info-box .name small:before {
  content: "";
  display: block;
  width: 1px;
  height: 34px;
  margin: 0 17px;
  background: #b7c4d6;
}
.teachers-info .info-box .subject {
  margin-bottom: 16px;
  font-size: 26px;
}
.teachers-info .info-box .info p {
  gap: 6px;
  font-size: 16px;
  line-height: 2;
}
.teachers-info .info-box .info a {
  text-underline-offset: 3px;
}
.teachers-info .info-box .info a:hover {
  text-decoration: underline !important;
}
.teachers-info .info-box .info p .ct-icon {
  width: 20px;
  height: 20px;
  margin-top: 6px;
  background-size: 100% 100%;
}
.teachers-info .info-box .info p .ct-icon.icon-email {
  background-image: url(/assets/images//ico_email.svg);
}
.teachers-info .info-box .info p .ct-icon.icon-tel {
  background-image: url(/assets/images//ico_tel.svg);
}
.teachers-info .info-box .info p .ct-icon.icon-url {
  background-image: url(/assets/images//ico_url.svg);
}

.greet-area {
  margin-bottom: 48px;
}
.greet-area strong {
  margin-bottom: 20px;
  font-size: 28px;
}
.greet-area p {
  font-size: 20px;
}

.teacher-profile .section-cont .title {
  flex: 0 0 125px;
  padding: 15px 0;
  font-size: 16px;
}
.teacher-profile .section-cont .dl-box {
  padding: 15px 0;
}
.teacher-profile .section-cont .dl-box:not(:first-child) {
  border-top: 1px solid #b7c4d6;
}
.teacher-profile .section-cont .cont .summary {
  margin-bottom: 4px;
  font-size: 16px;
}
.teacher-profile .section-cont .cont .dot-text {
  gap: 4px;
  font-size: 16px;
}
.teacher-profile .section-cont .cont .dot-text:before {
  content: "•";
  display: block;
}
.teacher-profile .section-cont .cont .date {
  font-size: 14px;
}
.teacher-profile .section-cont .career-feed-list {
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 28px 0;
}
.teacher-profile .section-cont .career-feed-list li {
  padding-bottom: 100%;
  border-radius: 12px;
  background: #f5f9fd;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40px;
}
.teacher-profile .section-cont .career-feed-list li:empty {
  background-image: url(/assets/images/ico_noimage.svg);
}

.sticky-area {
  width: 240px;
  margin-left: 40px;
}
.sticky-area dl {
  position: sticky;
  top: 70px;
}
.sticky-area dt {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 20px;
}
.sticky-area dd {
  /*gap: 10px;*/
}
.sticky-area a {
  padding: 5px 30px;
  font-size: 16px;
  color: #333;
}
.sticky-area a.active {
  color: var(--ct-white);
  background: var(--ct-dark);
}

@media (max-width: 1399px) {
  .container.teacher-profile {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .teachers-info > small em {
    font-size: 14px;
  }
  .teachers-info .info-box {
    height: 200px;
    padding-left: 100px;
  }
  .teachers-info .info-box:before {
    height: 143px;
  }
  .teachers-info .info-box .thumb {
    width: 200px;
  }
  .teachers-info .info-box .thumb:before,
  .teachers-info .info-box .thumb:after {
    height: 200px;
  }
  .teachers-info .info-box .caption {
    padding: 20px 15px 15px 30px;
  }
  .teachers-info .info-box .name {
    margin-bottom: 15px;
    font-size: 30px;
  }
  .teachers-info .info-box .name small {
    font-size: 18px;
  }
  .teachers-info .info-box .name small:before {
    height: 30px;
    margin: 0 12px;
  }
  .teachers-info .info-box .subject {
    margin-bottom: 12px;
    font-size: 22px;
  }
  .teachers-info .info-box .info p {
    font-size: 14px;
  }
  .teachers-info .info-box .info p .ct-icon {
    width: 18px;
    height: 18px;
  }

  .greet-area {
    margin-bottom: 30px;
  }
  .greet-area strong {
    margin-bottom: 16px;
    font-size: 25px;
  }
  .greet-area p {
    font-size: 18px;
  }

  .teacher-profile .section-cont .title {
    flex: 0 0 115px;
    padding: 15px 0;
    font-size: 16px;
  }
  .teacher-profile .section-cont .dl-box {
    padding: 15px 0;
  }
  .teacher-profile .section-cont .cont .summary {
    font-size: 18px;
  }
  .teacher-profile .section-cont .cont .dot-text {
    font-size: 16px;
  }
  .teacher-profile .section-cont .career-feed-list {
    gap: 15px;
    padding: 24px 0;
  }

  .sticky-area {
    width: 160px;
    margin-left: 20px;
  }
  .sticky-area dl {
    position: sticky;
    top: 70px;
  }
  .sticky-area dt {
    font-size: 13px;
  }
  .sticky-area a {
    padding: 0 20px;
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .container.teacher-profile {
    padding: 0 20px;
  }
  .teachers-info > small {
    left: auto;
    right: 0;
    bottom: -35px;
    text-align: right;
    line-height: 1.2;
    transform: rotate(0);
  }
  .teachers-info > small em {
    font-size: 13px;
  }
  .teachers-info .info-box {
    height: 190px;
    padding-left: 0;
  }
  .teachers-info .info-box:before {
    display: none;
  }
  .teachers-info .info-box .thumb {
    width: 190px;
  }
  .teachers-info .info-box .thumb:before,
  .teachers-info .info-box .thumb:after {
    height: 190px;
  }
  .teachers-info .info-box .caption {
    padding: 20px 15px 15px 20px;
  }
  .teachers-info .info-box .name {
    font-size: 28px;
  }
  .teachers-info .info-box .name small {
    font-size: 16px;
  }
  .teachers-info .info-box .name small:before {
    height: 28px;
    margin: 0 10px;
  }
  .teachers-info .info-box .subject {
    font-size: 20px;
  }

  .greet-area {
    margin-bottom: 25px;
  }
  .greet-area strong {
    margin-bottom: 12px;
    font-size: 24px;
  }
  .greet-area p {
    font-size: 15px;
  }

  .teacher-profile .section-cont .title {
    flex: 0 0 110px;
    padding: 15px 0;
    font-size: 16px;
  }
  .teacher-profile .section-cont .dl-box {
    padding: 15px 0;
  }
  .teacher-profile .section-cont .cont .summary {
    font-size: 18px;
  }
  .teacher-profile .section-cont .cont .dot-text {
    font-size: 15px;
  }
  .teacher-profile .section-cont .cont .date {
    font-size: 13px;
  }
  .teacher-profile .section-cont .career-feed-list {
    gap: 12px;
    padding: 20px 0;
  }
  .teacher-profile .section-cont .career-feed-list li {
    background-size: 25px;
  }

  .sticky-area {
    width: 140px;
    margin-left: 20px;
  }
  .sticky-area dl {
    top: 50px;
  }
  .sticky-area a {
    padding: 0 16px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .teachers-info > small {
    bottom: -30px;
    font-size: 10px;
  }
  .teachers-info > small em {
    font-size: 12px;
  }
  .teachers-info .info-box {
    height: auto;
    padding: 15px;
    border: 0;
    border-radius: 12px;
    background: #f5f9fd;
  }
  .teachers-info .info-box .thumb {
    width: 90px;
  }
  .teachers-info .info-box .thumb:before,
  .teachers-info .info-box .thumb:after {
    display: none;
  }
  .teachers-info .info-box .caption {
    margin-top: 15px;
    padding: 0;
  }
  .teachers-info .info-box .name {
    font-size: 24px;
  }
  .teachers-info .info-box .name small {
    font-size: 14px;
  }
  .teachers-info .info-box .name small:before {
    height: 24px;
  }
  .teachers-info .info-box .subject {
    font-size: 18px;
  }
  .teachers-info .info-box .info p {
    font-size: 13px;
  }
  .teachers-info .info-box .info p .ct-icon {
    margin-top: 4px;
  }

  .greet-area {
    margin-bottom: 20px;
  }
  .greet-area strong {
    margin-bottom: 10px;
    font-size: 22px;
  }
  .greet-area p {
    font-size: 14px;
  }

  .teacher-profile .section-cont .title {
    flex: 0 0 auto;
    padding: 10px 15px;
    font-size: 16px;
    background: #f5f9fd;
  }
  .teacher-profile .section-cont .dl-box {
    padding: 15px 0px;
  }
  .teacher-profile .section-cont .cont .summary {
    font-size: 16px;
  }
  .teacher-profile .section-cont .cont .dot-text {
    font-size: 13px;
  }
  .teacher-profile .section-cont .cont .date {
    font-size: 12px;
  }
  .teacher-profile .section-cont .career-feed-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 15px;
  }

  .sticky-area {
    display: none;
  }
}

.task-result-wrap {
  overflow: auto;
  flex: 1 1 auto;
  width: 100%;
  /*min-height: 100dvh;*/
  /*padding-bottom: 80px;*/
}
.task-result-wrap .container {
  max-width: calc(100% - 160px);
}
#header.header-result {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 30px 40px 20px;
  z-index: 11;
}
#header.header-result .logo .ct-icon {
  width: 159px;
  height: 40px;
}
#header.header-result .logo .ct-icon:before {
  background-image: url(/assets/images/h_logo.svg);
}

#footer.footer-result .footer-inner {
  padding: 12px 15px;
  border-top: 1px solid var(--ct-dark);
  border-bottom: 1px solid var(--ct-dark);
}
#footer.footer-result .logo-dark {
  width: 220px;
  height: 56px;
  margin-bottom: 0;
  flex: none;
  align-self: center;
}
#footer.footer-result .logo-dark:before {
  background-image: url(/assets/images/logo_black.svg);
}
#footer.footer-result .addr {
  margin: 0 20px;
  padding: 0 20px;
  font-size: 15px;
  line-height: 1.8;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
#footer.footer-result .addr span + span:before {
  content: "|";
  display: inline-block;
  margin: 0 4px;
}
#footer.footer-result .f-info {
  gap: 24px;
}
#footer.footer-result .f-info .date {
  justify-content: space-between;
  margin-right: 1.4vw;
}
#footer.footer-result .f-info .date .title {
  font-size: 13px;
}
#footer.footer-result .f-info .date .con {
  font-size: 20px;
}
#footer.footer-result .links {
  align-self: end;
}
#footer.footer-result .links .url {
  font-size: 16px;
}
#footer.footer-result .links .sns {
  margin-top: 9px;
  gap: 15px;
}
#footer.footer-result .links .sns a {
  width: 20px;
  height: 18px;
}
#footer.footer-result .links .sns .instagram:before {
  background-image: url(/assets/images/ico_instagram_bk.svg);
}
#footer.footer-result .links .sns .facebook:before {
  background-image: url(/assets/images/ico_facebook_bk.svg);
}
#footer.footer-result .links .sns .youtube:before {
  background-image: url(/assets/images/ico_youtube_bk.svg);
}
#footer.footer-result .links .sns .twitter:before {
  background-image: url(/assets/images/ico_twitter_bk.svg);
}
#footer.footer-result .f-info .qr {
  width: 80px;
  height: 80px;
  flex: none;
}

.task-result .title-banner-area {
  padding: 80px 0;
  background: var(--ct-primary) url(/assets/images/bg_result_top.png) no-repeat center top/auto 100%;
}
.task-result .title-banner-area .title {
  font-size: 60px;
  font-weight: 700;
}
.task-result .title-banner-area .info {
  margin-top: 25px;
  font-size: 20px;
}
.task-result .title-banner-area .info .date:after {
  content: "|";
  display: inline-block;
  margin: 0 6px;
  opacity: 0.2;
}
.task-result .section {
  margin: 65px 0;
}
.task-result .section .section-title {
  margin: 0 0 10px 0px;
  font-size: 19px;
}
.task-result .section [class*="section-task"] {
  border-top: 2px solid var(--ct-dark);
  border-bottom: 1px solid #b7c4d6;
}
.task-result .section-task-feedback {
  padding: 40px;
  font-size: 22px;
}

.task-result .dot-list li,
.task-result .dl-box {
  gap: 4px;
  padding: 16px 40px;
  color: var(--ct-dark);
  font-size: 14px;
  line-height: 1.8;
}
.task-result .dot-list li:before {
  content: "•";
  display: block;
  flex: none;
}
.task-result .dot-list li + li,
.task-result .dl-box + .dl-box {
  border-top: 1px solid #b7c4d6;
}
.task-result .dl-box dt {
  flex: 0 0 320px;
  color: var(--ct-dark);
}
.task-result .dl-box dd {
  color: var(--ct-dark);
}
.task-result .dl-box .text-em {
  font-weight: 600;
  color: #f25929;
}
.task-result .dl-box .btn-download {
  gap: 15px;
  padding: 5px 17px;
  font-size: 16px;
  border: 1px solid #787ca9;
  border-radius: 7px;
  background: var(--ct-white);
}
.task-result .dl-box dd {
  gap: 20px;
}
.task-result .dl-box .ico-pdf {
  display: block;
  width: 18px;
  height: 20px;
}
.task-result .dl-box .ico-pdf:before {
  background-image: url(/assets/images/ico_pdf.svg);
}

@media (max-width: 1399px) {
  .task-result-wrap .container {
    max-width: calc(100% - 80px);
  }
  #footer.footer-result .footer-inner {
    padding: 10px;
  }
  #footer.footer-result .logo-dark {
    width: 180px;
    height: 46px;
  }

  #footer.footer-result .addr {
    line-height: 1.5;
  }

  #footer.footer-result .f-info {
    gap: 20px;
  }
  #footer.footer-result .f-info .date {
    margin-right: 1vw;
  }
  #footer.footer-result .f-info .date .title {
    font-size: 12px;
  }
  #footer.footer-result .f-info .date .con {
    font-size: 18px;
  }
  #footer.footer-result .links .url {
    font-size: 15px;
  }
  #footer.footer-result .links .sns {
    margin-top: 8px;
    gap: 12px;
  }
  #footer.footer-result .f-info .qr {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 1199px) {
  .task-result-wrap .container {
    max-width: 100%;
    padding: 0 40px;
  }
  #header.header-result {
    padding: 20px 40px 20px;
  }

  #footer.footer-result .footer-inner {
    gap: 10px 20px;
  }

  #footer.footer-result .logo-dark {
    width: 160px;
    height: 41px;
  }

  #footer.footer-result .addr {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    border: 0;
  }

  #footer.footer-result .f-info {
    gap: 15px;
    padding-top: 10px;
    border-top: 1px solid var(--ct-dark);
  }
  #footer.footer-result .f-info .date {
    flex: 1;
    margin-right: 0;
  }
  #footer.footer-result .f-info .date .con {
    font-size: 16px;
  }
  #footer.footer-result .links .url {
    font-size: 14px;
  }
  #footer.footer-result .f-info .qr {
    width: 70px;
    height: 70px;
  }

  .task-result .title-banner-area {
    padding: 60px 0;
  }
  .task-result .title-banner-area .title {
    font-size: 55px;
  }
  .task-result .title-banner-area .info {
    font-size: 18px;
  }
  .task-result .section {
    margin: 55px 0;
  }
  .task-result .section .section-title {
    margin: 0 0 10px 0px;
    font-size: 19px;
  }
  .task-result .section-task-feedback {
    padding: 25px;
    font-size: 20px;
  }

  .task-result .dot-list li,
  .task-result .dl-box {
    padding: 16px 25px;
    font-size: 14px;
  }
  .task-result .dl-box dt {
    flex: 0 0 240px;
  }
  .task-result .dl-box .btn-download {
    gap: 10px;
    padding: 5px 12px;
    font-size: 14px;
  }
  .task-result .dl-box dd {
    gap: 15px;
  }
  .task-result .dl-box .ico-pdf {
    display: block;
    width: 16px;
    height: 18px;
  }
}
@media (max-width: 991px) {
  .task-result-wrap .container {
    padding: 0 20px;
  }
  #header.header-result {
    padding: 15px 20px;
  }

  #header.header-result .logo .ct-icon {
    width: 120px;
    height: 31px;
  }

  #footer.footer-result .footer-inner {
    gap: 7px 15px;
  }

  #footer.footer-result .logo-dark {
    width: 140px;
    height: 36px;
  }

  #footer.footer-result .addr {
    font-size: 14px;
  }

  #footer.footer-result .f-info {
    gap: 10px;
    padding-top: 7px;
  }
  #footer.footer-result .f-info .date .con {
    font-size: 15px;
  }
  #footer.footer-result .links .url {
    font-size: 14px;
  }
  #footer.footer-result .links .sns {
    margin-top: 5px;
    gap: 10px;
  }
  #footer.footer-result .links .sns a {
    width: 17px;
    height: 16px;
  }
  #footer.footer-result .f-info .qr {
    width: 60px;
    height: 60px;
  }

  .task-result .title-banner-area .title {
    font-size: 48px;
  }
  .task-result .title-banner-area .info {
    font-size: 17px;
  }
  .task-result .section {
    margin: 50px 0;
  }
  .task-result .section .section-title {
    margin: 0 0 10px 0px;
    font-size: 19px;
  }
  .task-result .section-task-feedback {
    padding: 18px;
    font-size: 18px;
  }

  .task-result .dot-list li,
  .task-result .dl-box {
    padding: 12px 18px;
    font-size: 14px;
  }
  .task-result .dl-box dt {
    flex: 0 0 200px;
  }
  .task-result .dl-box .btn-download {
    padding: 3px 10px;
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  #header.header-result {
    padding: 10px 20px;
  }
  #header.header-result .logo .ct-icon {
    width: 90px;
    height: 23px;
  }

  #footer.footer-result .footer-inner {
    gap: 7px 10px;
  }

  #footer.footer-result .logo-dark {
    width: 140px;
    height: 36px;
  }

  #footer.footer-result .addr {
    font-size: 13px;
  }

  #footer.footer-result .f-info .date .con {
    font-size: 14px;
  }
  #footer.footer-result .links .url {
    font-size: 12px;
  }
  #footer.footer-result .f-info .qr {
    width: 50px;
    height: 50px;
  }

  .task-result .title-banner-area .title {
    font-size: 38px;
  }
  .task-result .title-banner-area .info {
    font-size: 15px;
  }
  .task-result .section {
    margin: 40px 0;
  }
  .task-result .section .section-title {
    font-size: 19px;
  }
  .task-result .section-task-feedback {
    padding: 12px;
    font-size: 15px;
  }

  .task-result .dot-list li,
  .task-result .dl-box {
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.5;
  }
  .task-result .dl-box {
    padding: 0;
  }
  .task-result .dl-box dt {
    padding: 8px 12px;
    flex: 0 0 auto;
    background: #f5f9fd;
  }
  .task-result .dl-box dd {
    padding: 8px 12px;
  }
  .task-result .dl-box .btn-download {
    padding: 3px 10px;
    font-size: 13px;
  }
}
@media (max-width: 575px) {
}
