﻿@charset "UTF-8";

/* common */
[class*="btn-line-"] {
  display: inline-block;
  border: 1px solid #424242;
  border-radius: 48px;
  font-size: 15px;
  line-height: 48px;
  font-weight: bold;
  text-align: center;
}
[class*="btn-line-"].arr-right::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: -2px 0 0 8px;
  vertical-align: middle;
}
.btn-line-black {
  border-color: #111921;
}
.btn-line-black:hover {
  background-color: #111921;
  color: #fff;
}
.btn-line-black::after {
  background-image: url("../../images2/ic_btn_arr_right.svg");
}
.btn-line-black:hover::after {
  background-image: url("../../images2/ic_btn_arr_right_white.svg");
}
.btn-line-black:disabled,
.btn-line-black.disabled {
  border-color: #c6c6c6;
  color: #c6c6c6;
  background-color: #fff;
  cursor: default;
}
.btn-line-white {
  border-color: #fff;
  color: #fff;
}
.btn-line-white::after {
  background-image: url("../../images2/ic_btn_arr_right_white.svg");
}
.btn-line-white:hover {
  background-color: #fff;
  color: #202020;
}
.btn-line-white:hover::after {
  background-image: url("../../images2/ic_btn_arr_right.svg");
}

[class*="btn-default-"] {
  height: 60px;
  line-height: 60px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: bold;
}
[class*="btn-default-"].size-label {
  width: 308px;
  font-size: 16px;
}
.submit-btn-wrap {
  text-align: center;
}
.submit-btn-wrap a {
  display: inline-block;
  vertical-align: top;
}
.btn-default-solid {
  background-color: #111921;
  color: #fff;
  margin: 0 auto;
}
.btn-default-solid:hover {
  background-color: #00babb;
}
.btn-default-solid:disabled {
  background-color: #b8babd;
}

.container {
  min-width: 1024px;
}

.m-show {
  display: none;
}
.m-hide {
  display: block;
}
.p-hide {
  display: block !important;
}
.m-br {
  display: none;
}

/* header */
header {
  position: sticky;
  top: 0;
  height: 70px;
  border-bottom: 1px solid #eee;
  background-color: #fff;
  z-index: 99;
}
header .haeder-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
header nav {
  height: 100%;
}
header .header-menu {
  display: flex;
  align-items: center;
  height: 100%;
}
header .header-menu li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
header .header-menu li + li {
  margin-left: 60px;
}
header .header-menu li a {
  padding: 0 10px;
  font-weight: bold;
  font-size: 16px;
  line-height: 26px;
}
header .header-menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #00babb;
  transition: width 0.4s;
}
header .header-menu li a:hover::after,
header .header-menu li a:focus::after,
header .header-menu li a.on::after {
  width: 100%;
}
header .header-link {
  display: flex;
  align-items: center;
}
header .header-link a {
  line-height: 28px;
}
header .header-link a + a {
  margin-left: 36px;
}
header .mobile-menu .btn-mobile-menu {
  width: 24px;
  height: 24px;
  background-image: url("../../images2/ic_header_mobile_menu.svg");
}

/* main */
main section {
  position: relative;
}
main .section-inner {
  position: relative;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
main .section-inner.full {
  max-width: 100%;
}

/* footer */
footer > * {
  border-top: 1px solid #efefef;
}
footer .footer-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
footer .footer-top .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 79px;
}
footer .footer-btm .footer-inner {
  padding-top: 30px;
  padding-bottom: 40px;
}
footer .fnb ul {
  display: flex;
  align-items: center;
}
footer .fnb ul li {
  position: relative;
  margin-right: 40px;
}
footer .fnb ul li:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -19px;
  width: 1px;
  height: 10px;
  background-color: #e5e5e5;
  transform: translateY(-50%);
}
footer .fnb ul li:last-child {
  margin-right: 0;
}
footer .fnb ul li:last-child::after {
  content: none;
}
footer .fnb ul li:last-child a {
  color: #052460;
}
footer .link-group {
  display: flex;
  align-items: center;
}
footer .link-group > div {
  position: relative;
}
footer .link-group > div.on .link-detail {
  display: block;
}
footer .link-group > div.on .btn-link-toggle::after {
  transform: translateY(-50%) rotate(45deg);
}
footer .link-group > div + div {
  margin: 0 0 0 12px;
}
footer .link-group .btn-link-toggle {
  position: relative;
  width: 208px;
  height: 40px;
  padding: 0 0 0 19px;
  border: 1px solid #eee;
  border-radius: 5px;
  background-color: #f5f5f5;
  color: #5c5c5c;
  font-weight: 500;
  line-height: 40px;
  text-align: left;
}
footer .link-group .btn-link-toggle:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 16px;
  height: 16px;
  background-image: url("../../images2/about/ic_link_btn_toggle_plus.svg");
  transform: translateY(-50%);
  transition: transform 0.2s;
}
footer .link-group .link-detail {
  position: absolute;
  bottom: 48px;
  left: 0;
  width: 100%;
}
footer .link-group .link-detail {
  display: none;
}
footer .link-group .link-detail ul {
  padding: 11px 20px 11px 27px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  background-color: #fff;
}
footer .link-group .link-detail a {
  display: flex;
  align-items: center;
}
footer .link-group .link-detail a::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin-left: 4px;
  /*background-image: url("../../images2/about/ic_link_detail_arr.svg");*/
}
footer .link-group .link-detail a span {
  font-size: 12px;
  line-height: 28px;
}
footer .sns {
  display: flex;
  align-items: center;
  position: absolute;
  top: calc(50% - 20px);
  right: 20px;
  transform: translateY(-50%);
}
footer .sns a {
  width: 40px;
  height: 40px;
  font-size: 0;
}
footer .sns a + a {
  margin-left: 16px;
}
footer .sns a.sns-facebook {
  background-image: url("../../images2/about/ic_footer_sns_facebook.svg");
}
footer .sns a.sns-blog {
  background-image: url("../../images2/about/ic_footer_sns_blog.svg");
}
footer .sns a.sns-instagram {
  background-image: url("../../images2/about/ic_footer_sns_instagram.svg");
}
footer .sns a.sns-youtube {
  background-image: url("../../images2/about/ic_footer_sns_youtube.svg");
}
footer .sns a.sns-naverblog {
  background-image: url("../../images2/about/ic_footer_sns_naverblog.svg");
}
footer .company-info {
  line-height: 25px;
}
footer .company-info .info-title {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}
footer .company-info .info-detail {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 560px;
}
footer .company-info .info-detail dl {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0 20px 2px 0;
}
footer .company-info .info-detail dl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 1px;
  height: 10px;
  background-color: #e5e5e5;
  transform: translateY(-50%);
}
footer .company-info .info-detail dl:nth-child(2)::after,
footer .company-info .info-detail dl:last-child::after {
  content: none;
}
footer .company-info .info-detail dt {
  position: relative;
  margin-right: 3px;
  font-weight: 300;
}
footer .company-info .copyright {
  margin-top: 10px;
  color: #757575;
  font-weight: 500;
  font-size: 13px;
}
footer .awards {
  display: flex;
  align-items: center;
  margin-top: 40px;
}
footer .awards .awards-item {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 11px;
  line-height: 16px;
}
footer .awards .awards-item::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  background-size: 100%;
}
footer .awards .awards-item + .awards-item {
  margin-left: 21px;
}
footer .awards .awards-item-1::before {
  background-image: url("../../images2/about/ic_footer_awards_1.png");
}
footer .awards .awards-item-2::before {
  background-image: url("../../images2/about/ic_footer_awards_2.png");
}
footer .awards .awards-item-3::before {
  background-image: url("../../images2/about/ic_footer_awards_3.png");
}
footer .awards .awards-item-4::before {
  background-image: url("../../images2/about/ic_footer_awards_4.png");
}
footer .awards .awards-item-5::before {
  background-image: url("../../images2/about/ic_footer_awards_5.png");
}
footer .m-footer {
  height: 290px;
  font-size: 20px;
  font-weight: bold;
}

/* breadcrumb */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  padding-top: 10px;
}
.breadcrumb ol li {
  display: flex;
  align-items: center;
  color: #595c66;
}
.breadcrumb ol li:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  background-image: url("../../images2/ic_breadcrumb_arr.svg");
}
.breadcrumb ol li:last-child {
  font-weight: bold;
}
.breadcrumb ol li:last-child::after {
  content: none;
}

/* input */
fieldset {
  position: relative;
  min-width: 0;
}
.input-cont-wrap {
  display: flex;
  align-items: flex-start;
}
.input-cont-wrap.required .input-label span:after {
  content: "*";
  display: block;
  margin-left: 6px;
  color: #ff3737;
}
.input-label {
  display: flex;
  align-items: center;
  width: 175px;
  height: 50px;
  padding-right: 10px;
}
.input-label span {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
}
.input-label + .input-wrap {
  min-height: 50px;
}
.input-label + .input-wrap .input-radio-wrap {
  min-height: 50px;
}
.input-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
  width: 100%;
}
.input-in-row {
  display: flex;
  align-items: center;
  margin-top: 14px;
}
.input-in-row > * {
  flex: 1;
  min-width: 0;
}
.input-in-row > * + * {
  margin-left: 10px;
}
.input-wrap .vaild-text {
  display: none;
  position: absolute;
  bottom: -19px;
  left: 0;
  font-size: 13px;
  line-height: 14px;
  color: #ec061d;
}
.input-wrap .error {
  border-color: #ec061d !important;
}
.input-wrap .error ~ .vaild-text {
  display: block;
}
.input-wrap .input-btm-desc {
  padding: 6px 0 0 5px;
  font-weight: bold;
  color: #999;
}
.input-text-wrap {
  position: relative;
}
.input-text-wrap input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #fff;
  font-size: 15px;
}
.input-text-wrap input::placeholder {
  color: #595c66;
}
.input-text-wrap input.confirm {
  border-color: #00babb;
}
.input-text-wrap input:disabled {
  border-color: #e0e0e0 !important;
  background-color: #f5f5f5;
  color: #9e9e9e;
}
.input-select-wrap {
  position: relative;
  z-index: 1;
}
.input-select-wrap .selected-label {
  position: relative;
  width: 100%;
  height: 50px;
  padding: 0 46px 0 14px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #fff;
  font-size: 15px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.input-select-wrap .selected-label.placeholder {
  color: #595c66;
}
.input-select-wrap .selected-label::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 16px;
  height: 16px;
  background-image: url("../../images2/ic_selectbox_arr.svg");
  transform: translateY(-50%);
}
.input-select-wrap .selected-label:disabled {
  border-color: #e0e0e0 !important;
  background-color: #f5f5f5;
  color: #9e9e9e;
  cursor: default;
}
.input-select-wrap .selected-label:disabled::after {
  background-position: 100% 0;
}
.input-select-wrap .select-option {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  padding: 5px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #fff;
  z-index: 1;
}
.input-select-wrap .select-option {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  padding: 5px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #fff;
  z-index: 1;
  max-height: 252px;
  overflow: auto;
}
.input-select-wrap .select-option::-webkit-scrollbar {
  width: 14px;
  background-color: #fff;
  border-radius: 8px;
}
.input-select-wrap .select-option::-webkit-scrollbar-thumb {
  background-color: #9fa1a4;
  background-clip: padding-box;
  border: 0;
  border-radius: 8px;
  border: 4px solid transparent;
}
.input-select-wrap .select-option::-webkit-scrollbar-track {
  background-color: #e0e0e0;
  border-radius: 8px;
  border: 4px solid #fff;
}
.input-select-wrap .select-option ul li {
  position: relative;
  min-height: 38px;
  padding: 10px 9px;
  font-size: 15px;
  border-radius: 5px;
  cursor: pointer;
}
.input-select-wrap .select-option ul li.selected {
  padding-right: 34px;
}
.input-select-wrap .select-option ul li.selected:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 9px;
  width: 16px;
  height: 16px;
  background-image: url("../../images2/ic_selectbox_selected.svg");
  transform: translateY(-50%);
}
.input-select-wrap .select-option ul li.selected,
.input-select-wrap .select-option ul li:hover {
  background-color: #d9f5f5;
}
.input-select-wrap.active {
  z-index: 2;
}
.input-select-wrap.active .select-option {
  display: block;
}
.input-select-wrap.active .selected-label::after {
  transform: translateY(-50%) rotate(180deg);
}
.input-radio-wrap {
  display: flex;
  align-items: center;
  height: 100%;
}
.input-radio-wrap .radio-item {
  margin-right: 40px;
}
.input-radio-wrap .radio-item:last-child {
  margin-right: 0;
}
.input-radio-wrap .radio-item input {
  display: none;
}
.input-radio-wrap .radio-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  line-height: 24px;
  color: #616161;
}
.input-radio-wrap .radio-item label::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background-image: url("../../images2/ic_radio.svg");
}
.input-radio-wrap .radio-item input:checked + label::before {
  background-position: -16px 0;
}
.input-radio-wrap.type-column {
  flex-direction: column;
  align-items: baseline;
}
.input-radio-wrap.type-column .radio-item + .radio-item {
  margin: 12px 0 0 0;
}
.input-checkbox-wrap {
  display: flex;
  align-items: center;
  height: 100%;
}
.input-checkbox-wrap .checkbox-item {
  margin-right: 40px;
}
.input-checkbox-wrap .checkbox-item:last-child {
  margin-right: 0;
}
.input-checkbox-wrap .checkbox-item input {
  display: none;
}
.input-checkbox-wrap .checkbox-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
}
.input-checkbox-wrap .checkbox-item label::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 12px;
  background-image: url("../../images2/ic_checkbox.svg");
}
.input-checkbox-wrap .checkbox-item input:checked + label::before {
  background-position: -16px 0;
}
.input-checkbox-wrap .checkbox-item.reverse label {
  flex-direction: row-reverse;
}
.input-checkbox-wrap .checkbox-item.reverse label::before {
  margin-right: auto;
  margin-left: 12px;
}
.input-checkbox-wrap.type-column {
  flex-direction: column;
  align-items: baseline;
}
.input-checkbox-wrap.type-column .checkbox-item + .checkbox-item {
  margin: 12px 0 0 0;
}

/* 응시는 PC, Tablet에서 가능합니다 */
.only-pc-possible {
  display: none;
  text-align: center;
}
.only-pc-possible p {
  color: #fff;
  display: inline-block;
  height: 48px;
  padding: 0 27px;
  border-radius: 48px;
  background-color: rgba(17, 25, 33, 0.3);
  vertical-align: top;
  font-size: 14px;
  line-height: 48px;
  font-weight: bold;
}

/* About */
#About [class*="btn-line-"] {
  width: 150px;
  height: 48px;
}
#About .section-1 {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fa 100%);
}
#About .section-1 h2 {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 42px;
  line-height: 60px;
  font-weight: bold;
}
#About .section-1 h2 b {
  color: #00babb;
}
#About .section-1 .visual {
  height: 100%;
}
#About .section-1 .visual img {
  width: 100%;
}
#About .section-2 {
  background-color: #eeeff0;
}
#About .section-2 .section-inner {
  padding-top: 120px;
  padding-bottom: 120px;
}
#About .section-2 .title-wrap {
  position: relative;
}
#About .section-2 .title-wrap h3 {
  font-weight: bold;
  font-size: 32px;
  line-height: 42px;
}
#About .section-2 .title-wrap p {
  margin-top: 4px;
  font-size: 18px;
  line-height: 30px;
  color: #666;
}
#About .section-2 .title-wrap .link-wrap {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
#About .section-2 .title-wrap .only-pc-possible p {
  color: #fff;
  margin-top: 18px;
  line-height: 48px;
}
#About .section-2 .card-wrap {
  display: flex;
  align-items: stretch;
  margin-top: 40px;
}
#About .section-2 .card-wrap .card {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  min-height: 272px;
  padding: 36px 48px 0 36px;
  background-color: #fff;
  border-radius: 16px;
}
#About .section-2 .card-wrap .card + .card {
  margin-left: 20px;
}
#About .section-2 .card-wrap .card .img-wrap {
  width: 184px;
  margin: 4px 4px 0 0;
}
#About .section-2 .card-wrap .card .img-wrap img {
  width: 100%;
}
#About .section-2 .card-wrap .card .text-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 100%;
  padding-bottom: 80px;
  line-height: 28px;
}
#About .section-2 .card-wrap .card .text-wrap .text-title {
  display: flex;
  align-items: baseline;
}
#About .section-2 .card-wrap .card .text-wrap .text-title h4 {
  font-size: 28px;
  font-weight: bold;
}
#About .section-2 .card-wrap .card .text-wrap .text-title .time {
  margin-left: 12px;
  font-size: 16px;
  color: #666;
}
#About .section-2 .card-wrap .card .text-wrap p {
  margin-top: 16px;
  font-size: 16px;
  color: #666;
}
#About .section-2 .card-wrap .card .text-wrap button {
  position: absolute;
  bottom: 40px;
  left: 0;
  font-size: 20px;
  color: #111921;
}
#About .section-2 .card-wrap .card .text-wrap button:after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #111921;
}
#About .section-3 .section-inner {
  padding-top: 120px;
  padding-bottom: 60px;
}
#About .section-3 .desc-item {
  display: flex;
  align-items: center;
}
#About .section-3 .desc-item + .desc-item {
  margin-top: 100px;
}
#About .section-3 .desc-item .text-wrap {
  width: 50%;
  margin-right: 20px;
  padding: 0 50px;
}
#About .section-3 .desc-item .text-wrap h3 {
  font-size: 36px;
  line-height: 46px;
  font-weight: bold;
}
#About .section-3 .desc-item .text-wrap p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 28px;
  color: #666;
}
#About .section-3 .desc-item .img-wrap {
  width: 50%;
  order: 2;
}
#About .section-3 .desc-item .img-wrap .img {
  height: 360px;
  border-radius: 16px;
  background-size: cover;
  background-position: top right;
}
#About .section-3 .desc-item-1 .img-wrap .img {
  background-image: url("../../images2/about/img_desc_1.png");
}
#About .section-3 .desc-item-2 .img-wrap {
  order: 0;
}
#About .section-3 .desc-item-2 .img-wrap .img {
  background-image: url("../../images2/about/img_desc_2.png");
}
#About .section-3 .desc-item-3 .img-wrap .img {
  background-image: url("../../images2/about/img_desc_3.png");
}
#About .section-4 .section-inner {
  padding: 0;
}
#About .section-4 .detail-box-wrap {
  display: flex;
  align-items: stretch;
}
#About .section-4 .detail-box-wrap .detail-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 248px;
  height: 560px;
  padding: 0 20px;
  overflow: hidden;
  transition: flex 0.6s;
}
#About .section-4 .detail-box-wrap .detail-box.active {
  flex: 1;
  min-width: 0;
  width: auto;
}
#About .section-4 .detail-box-wrap .detail-box.active .box-content {
  display: flex;
}
#About .section-4 .detail-box-wrap .detail-box.active .open-btn {
  display: none;
}
#About .section-4 .detail-box-wrap .detail-box .box-content {
  display: none;
  align-items: center;
  justify-content: center;
}
#About .section-4 .detail-box-wrap .detail-box .open-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  font-weight: bold;
}
#About .section-4 .detail-box-wrap .detail-box .open-btn span::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  margin: 10px auto 0;
  background-image: url("../../images2/about/ic_section4_btn_arr.svg");
  transform: rotate(-180deg);
}
#About .section-4 .detail-box-wrap .detail-box .img-wrap {
  width: 260px;
  margin-right: 60px;
}
#About .section-4 .detail-box-wrap .detail-box .img-wrap img {
  width: 100%;
}
#About .section-4 .detail-box-wrap .detail-box .text-wrap {
  flex: 1;
  min-width: 0;
  max-width: 512px;
}
#About .section-4 .detail-box-wrap .detail-box .text-wrap h3 {
  font-size: 40px;
  line-height: 58px;
  color: #fff;
  font-weight: bold;
}
#About .section-4 .detail-box-wrap .detail-box .text-wrap p {
  margin-top: 18px;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}
#About .section-4 .detail-box-wrap .detail-box .text-wrap .link-wrap {
  margin-top: 42px;
}
#About .section-4 .detail-box-wrap .detail-box-1 {
  background-color: #052460;
}
#About .section-4 .detail-box-wrap .detail-box-2 {
  background-color: #00babb;
}
#About .section-4 .detail-box-wrap .detail-box-2 .open-btn span::after {
  /* transform: rotate(-180deg); */
  transform: rotate(0deg);
}

/* OnTest - 설문조사 */
#OnTest.bg1 {
  background-color: #f7f9fa;
}

/* onTest - 응시전 설문조사 */
.onTest-survey {
  padding-top: 74px;
  padding-bottom: 100px;
  overflow: auto;
}
.onTest-survey .section-inner {
  min-width: 1200px;
}
.onTest-survey .title-wrap {
  text-align: center;
}
.onTest-survey .title-wrap h2 {
  font-size: 40px;
  line-height: 58px;
  font-weight: bold;
}
.onTest-survey .title-wrap p {
  margin-top: 24px;
  font-size: 16px;
  line-height: 28px;
  color: #595c66;
}
.onTest-survey .form-box-wrap {
  margin-top: 52px;
}
.onTest-survey .form-box {
  width: 960px;
  margin: 0 auto;
  padding: 80px 145px 90px;
  background-color: #fff;
  border-radius: 18px;
}
.onTest-survey .form-box form {
  position: relative;
}
.onTest-survey .form-box .required-text {
  position: absolute;
  top: -57px;
  right: 0;
  line-height: 32px;
  color: #ff3737;
}
.onTest-survey .form-box .input-cont-wrap + .input-cont-wrap {
  margin-top: 24px;
}
.onTest-survey .question-wrap {
  margin: 77px 0 50px;
}
.onTest-survey .question-title-wrap {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 11px;
}
.onTest-survey .question-title-wrap h3 {
  text-align: left;
  font-size: 27px;
  line-height: 38px;
  font-weight: bold;
}
.onTest-survey .question-title-wrap h3 span {
  margin-left: 6px;
  color: #ff3737;
}
.onTest-survey .question-title-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
}
.onTest-survey .question-item + .question-item {
  margin-top: 60px;
}
.onTest-survey .question-item .qeustion-text {
  display: block;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 28px;
}
.onTest-survey .desc-wrap {
  position: relative;
  padding-top: 81px;
}
.onTest-survey .desc-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: -116px;
  width: calc(100% + 232px);
  height: 1px;
  background-color: #e0e0e0;
}
.onTest-survey .desc-wrap h3 {
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 35px;
  font-weight: bold;
}
.onTest-survey .desc-wrap ul li {
  position: relative;
  padding-left: 25px;
  font-size: 17px;
  line-height: 28px;
  color: #595c66;
}
.onTest-survey .desc-wrap ul li + li {
  margin-top: 10px;
}
.onTest-survey .desc-wrap ul li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50px;
  background-color: #595c66;
}
.onTest-survey .desc-wrap .desc-item + .desc-item {
  margin-top: 60px;
}
.onTest-survey .desc-wrap .desc-agree h4 {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 28px;
  font-weight: bold;
}
.onTest-survey .desc-wrap .desc-agree .input-radio-wrap .radio-item label {
  font-size: 18px;
  line-height: 28px;
  color: #202020;
}
.onTest-survey .submit-btn-wrap {
  margin-top: 40px;
  text-align: center;
}
.onTest-survey .submit-btn-wrap a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* onTest - 응시 종료 */
.onTest-end {
  padding: 74px 0 100px;
  overflow: auto;
}
.onTest-end .section-inner {
  min-width: 1200px;
}
.onTest-end .top-title-wrap {
  text-align: center;
}
.onTest-end .top-title-wrap h2 {
  display: flex;
  justify-content: center;
  align-items: end;
  font-size: 24px;
  line-height: 36px;
  font-weight: bold;
}
.onTest-end .top-title-wrap h2 .student-name {
  display: inline-flex;
  align-items: center;
  position: relative;
  top: 4px;
  margin-right: 6px;
  vertical-align: middle;
  font-size: 40px;
  line-height: 58px;
}
.onTest-end .top-title-wrap h2 .student-name span {
  margin-left: 10px;
  padding-top: 14px;
  font-size: 24px;
  line-height: 36px;
}
.onTest-end .top-title-wrap h2 .student-name::before {
  content: "";
  display: block;
  width: 43px;
  height: 47px;
  margin-right: 12px;
  background-image: url("../../images2/ic_ontest_end_student_name.svg");
  background-size: 100%;
}
.onTest-end .top-title-wrap p {
  margin-top: 24px;
  font-size: 24px;
  line-height: 36px;
}
.onTest-end .movie-wrap {
  margin-top: 40px;
  text-align: center;
}
.onTest-end .movie-wrap video,
.onTest-end .movie-wrap iframe {
  width: 820px;
  height: 496px;
  background-color: #202020;
  vertical-align: top;
}
.interest-brands-wrap {
  width: 820px;
  margin: 60px auto 0;
}
.interest-brands-wrap .select-title {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.03em;
}
.interest-brands-wrap .top-wrap .input-radio-wrap .radio-item label {
  font-size: 18px;
  line-height: 28px;
  font-weight: bold;
  color: #202020;
}
.interest-brands-wrap .interest-item {
  display: none;
}
.interest-brands-wrap .interest-item.on {
  display: block;
}
.interest-brands-wrap .interest-item .guide {
  margin-bottom: 6px;
  text-align: right;
  line-height: 24px;
  color: #ff3737;
}
.interest-brands-wrap .interest-item ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 48px;
  padding: 0 19px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fff;
}
.interest-brands-wrap .interest-item ul li + li {
  margin-top: 8px;
}
.interest-brands-wrap .interest-item .item-link {
  margin-right: 80px;
}
.interest-brands-wrap .interest-item .item-link .brand-icon {
  display: block;
  width: 160px;
  height: 28px;
  background-size: 100%;
}
.interest-brands-wrap .interest-item .item-link .brand-icon-1 {
  background-image: url("../../images2/ic_brand_1.png");
}
.interest-brands-wrap .interest-item .item-link .brand-icon-2 {
  background-image: url("../../images2/ic_brand_2.png");
}
.interest-brands-wrap .interest-item .item-link .brand-icon-3 {
  background-image: url("../../images2/ic_brand_3.png");
}
.interest-brands-wrap .interest-item .item-link .brand-icon-4 {
  background-image: url("../../images2/ic_brand_4.png");
}
.interest-brands-wrap .interest-item .item-link .brand-icon-5 {
  background-image: url("../../images2/ic_brand_5.png");
}
.interest-brands-wrap .interest-item .item-button {
  flex: 1;
  min-width: 0;
  width: 100%;
}
.interest-brands-wrap .interest-item .item-button button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.interest-brands-wrap .interest-item .item-button button::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-left: 12px;
  background-image: url("../../images2/icon_show_movie.svg");
}
.interest-brands-wrap .dot-list-wrap {
  margin-top: 40px;
}
.interest-brands-wrap .dot-list-wrap ul li {
  position: relative;
  padding-left: 24px;
  color: #595c66;
  font-size: 16px;
  line-height: 26px;
}
.interest-brands-wrap .dot-list-wrap ul li + li {
  margin-top: 10px;
}
.interest-brands-wrap .dot-list-wrap ul li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #595c66;
}
.interest-brands-wrap .dot-list-wrap ul li strong {
  font-weight: bold;
}
.interest-brands-wrap .submit-btn-wrap {
  margin-top: 40px;
}

/* onTest - 응시 하기 */
.onTest-stare {
  padding: 74px 0 100px;
  overflow: auto;
}
.onTest-stare .top-title-wrap {
  text-align: center;
}
.onTest-stare .top-title-wrap strong {
  font-size: 40px;
  line-height: 58px;
  display: block;
}
.onTest-stare .top-title-wrap b {
  font-size: 40px;
  line-height: 58px;
  color: #202020;
}
.onTest-stare .top-title-wrap p {
  font-size: 16px;
  line-height: 28px;
  color: #666666;
  margin-top: 24px;
}
.onTest-stare .step-wrap {
  margin: 100px auto 102px auto;
  max-width: 668px;
  width: 100%;
}
.onTest-stare .step-wrap ul {
  display: grid;
  grid-template-columns: repeat(1, 4fr);
  row-gap: 58px;
  width: 100%;
  height: 100%;
}
.onTest-stare .step-wrap li {
  display: flex;
  align-items: center;
}
.onTest-stare .step-wrap .step-circle {
  width: 128px;
  height: 128px;
  border-radius: 48px;
  background-color: #00babb;
  display: flex;
  justify-content: center;
  align-items: center;
}
.onTest-stare .step-wrap .step-circle img {
  width: 79px;
  height: 64px;
  display: block;
}
.onTest-stare .step-wrap .step-circle .img-step02 {
  width: 53px;
  height: 72px;
}
.onTest-stare .step-wrap .step-circle .img-step04 {
  width: 72px;
}
.onTest-stare .step-wrap ul li .step-desc {
  margin-left: 60px;
}
.onTest-stare .step-wrap strong {
  font-size: 18px;
  line-height: 28px;
  color: #00babb;
  display: block;
  letter-spacing: -0.03em;
}
.onTest-stare .step-wrap p {
  margin-top: 16px;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.03em;
}
.onTest-stare .step-wrap p b {
  font-weight: 700;
  line-height: 28px;
}
.onTest-stare .step-wrap span {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.02em;
  margin-top: 6px;
  display: block;
}
.onTest-stare .attention-wrap {
  margin-top: 140px;
  position: relative;
}
.onTest-stare .attention-wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  border-top: 1px solid #e0e0e0;
  top: 0;
  left: 0;
}
.onTest-stare .attention-wrap h3 {
  padding-top: 40px;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #202020;
}
.onTest-stare .attention-wrap ul {
  margin-top: 37px;
}
.onTest-stare .attention-wrap ul li {
  position: relative;
  margin: 0 0 12px 25px;
  color: #595c66;
  font-size: 16px;
  line-height: 26px;
}
.onTest-stare .attention-wrap ul li::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50px;
  background-color: #595c66;
  top: 13px;
  left: -14px;
}

/* onTest - 상담하기 */
.onTest-counsel {
  padding: 74px 0 102px;
  overflow: auto;
}
.onTest-counsel .section-inner {
  min-width: 1200px;
}
.onTest-counsel strong {
  font-size: 24px;
  line-height: 36px;
  display: block;
  text-align: center;
}
.onTest-counsel .counsel-wrap {
  text-align: center;
  max-width: 840px;
  width: 100%;
  margin: 34px auto 40px auto;
  height: auto;
  border-radius: 16px;
  background-color: #f7f9fa;
  padding: 30px 30px 40px 30px;
}
.onTest-counsel .counsel-wrap p {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.03em;
  color: #202010;
}
.onTest-counsel .counsel-wrap p:last-of-type {
  margin-top: 20px;
}
.onTest-counsel .counsel-wrap p b {
  font-weight: 700;
}
.onTest-counsel .counsel-wrap img {
  width: 289px;
  margin-top: 30px;
}
.onTest-counsel .counsel-desc {
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.onTest-counsel .counsel-desc img {
  width: 56px;
  height: 52px;
  margin-right: 14px;
}
.onTest-counsel .counsel-desc b {
  font-size: 18px;
  line-height: 28px;
  display: flex;
}
.onTest-counsel .counsel-desc .green-color {
  margin-left: 8px;
  color: #00babb;
  display: inline-block;
}
.onTest-counsel .counsel-desc p {
  font-size: 14px;
  line-height: 24px;
  color: #666666;
  display: flex;
  align-items: center;
  margin-top: 4px;
}
.onTest-counsel .counsel-desc p span {
  font-size: 13px;
  line-height: 16px;
}
.onTest-counsel .counsel-desc p span:last-child {
  margin-left: 4px;
}
.onTest-counsel .submit-btn-wrap {
  margin-bottom: 40px;
}
.onTest-counsel .submit-btn-wrap a,
.onTest-counsel .submit-btn-wrap button {
  width: 212px;
}

/* onTest - 리포트 */
.onTest-report {
  margin: 130px 0 160px 0;
}
.onTest-report .section-inner {
  padding: 0;
}
.onTest-report .report-wrap {
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
  padding: 0 95px 0 60px;
  background-color: #f7f9fa;
  border-radius: 16px;
  min-height: 240px;
  display: flex;
  align-items: center;
}
.onTest-report .report-inner {
  display: flex;
  align-items: center;
  width: 100%;
}
.onTest-report .report-icon {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 102px;
  height: 102px;
}
.onTest-report .icon-file {
  background-image: url("../../images2/ic_report_1.svg");
}
.onTest-report .report-flex {
  margin-left: 72px;
  position: relative;
  flex: 1;
  min-width: 0;
}
.onTest-report .report-line {
  height: 80px;
  border-left: 2px solid #385362;
  margin-left: 61px;
}
.onTest-report h3 {
  font-size: 40px;
  line-height: 58px;
  margin-bottom: 20px;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
}
.onTest-report h3 span {
  margin-left: 10px;
  font-size: 24px;
  line-height: 36px;
}
.onTest-report b {
  font-size: 24px;
  line-height: 36px;
  margin-left: 3px;
}
.onTest-report .report-desc-wrap {
  margin: 20px 0 40px 0;
}
.onTest-report .report-desc {
  font-size: 16px;
  line-height: 28px;
  color: #666666;
  text-align: center;
}
.onTest-report .submit-btn-wrap {
  font-size: 0;
}
.onTest-report .submit-btn-wrap a,
.onTest-report .submit-btn-wrap button {
  width: 212px;
  height: 60px;
  font-size: 16px;
  font-weight: bold;
  line-height: 58px;
}
.onTest-report .submit-btn-wrap > * + * {
  margin-left: 12px;
}

/* onTest-report (리포트_상담완료한 경우) */
.onTest-report .icon-stats {
  background-image: url("../../images2/ic_report_2.svg");
}
.onTest-report .complete .report-flex {
  margin-left: 40px;
}
.onTest-report .result-desc {
  font-size: 24px;
  line-height: 36px;
}
.onTest-report .result-desc span {
  color: #00babb;
  font-weight: 700;
}
.share-popup {
  display: none;
}

/* 브랜드 아이콘 */
.brand-icon {
  display: block;
  width: 160px;
  height: 28px;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center left;
}
.brand-icon-1 {
  background-image: url("../../images2/ic_brand_1.png");
}
.brand-icon-2 {
  background-image: url("../../images2/ic_brand_2.png");
}
.brand-icon-3 {
  background-image: url("../../images2/ic_brand_3.png");
}
.brand-icon-4 {
  background-image: url("../../images2/ic_brand_4.png");
}
.brand-icon-5 {
  background-image: url("../../images2/ic_brand_5.png");
}

/* modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 99;
}
.modal-inner {
  display: flex;
  height: 100%;
  overflow: auto;
}
.modal-box {
  margin: auto;
  padding: 20px 30px 30px;
  background-color: #fff;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}
.modal-header .modal-title {
  font-size: 24px;
  line-height: 36px;
}
.modal-header .btn-modal-close {
  width: 36px;
  height: 36px;
  background: url("../../images2/ic_popup_close.svg");
  background-size: 100%;
}

/* 브랜드영상보기  */
.modal-brandMovie .modal-box {
  display: flex;
  flex-direction: column;
  width: 1200px;
  height: 100%;
  max-height: 835px;
  padding: 20px;
}
.modal-brandMovie .modal-cont {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  height: 100%;
}
.modal-brandMovie .modal-header {
  margin-bottom: 10px;
  padding-left: 4px;
  padding-bottom: 0;
  border: 0;
}
.modal-brandMovie .desc {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #e0e0e0;
}
.modal-brandMovie .desc span {
  color: #595c66;
  font-size: 16px;
}
.modal-brandMovie .movie-wrap {
  flex: 1;
  height: 100%;
  min-height: 0;
}
.modal-brandMovie .movie-wrap > * {
  width: 100%;
  height: 100%;
  vertical-align: top;
}

/* 상담신청 */
.modal-consultRequest .modal-box {
  width: 880px;
}
.modal-consultRequest .interest-brands-wrap {
  margin: 0;
}

/* 공유하기 팝업 */
.modal-share {
  z-index: 50;
}
.modal-share .modal-box {
  width: 240px;
  padding: 20px;
}
.modal-share .modal-header {
  margin-bottom: 22px;
  padding-left: 0;
  justify-content: center;
}
.modal-share .modal-header h3 {
  position: relative;
  font-weight: bold;
  line-height: 24px;
}
.modal-share .btn-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background-image: url("../../images2/ic_share_close.svg");
}
.modal-share .modal-box {
  padding: 20px 12px 28px;
}
.modal-share .share-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.modal-share .share-wrap li:nth-of-type(4),
.modal-share .share-wrap li:nth-of-type(5) {
  margin-top: 16px;
}
.modal-share .share-wrap li:nth-of-type(5) {
  margin-left: 6px;
}
.modal-share .share-wrap li a {
  display: block;
  width: 72px;
  text-align: center;
}
.modal-share .share-wrap li a span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 16px;
}

/* 마이페이지 팝업 */
.tooltip {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 2;
}
.tooltip-inner {
  display: flex;
  height: 100%;
  padding: 0 20px;
}
.tooltip-box {
  background-color: #ffffff;
  box-shadow: 0px 4px 8px rgba(32, 32, 32, 0.12);
  width: 100%;
  padding: 20px;
  height: auto;
  position: relative;
}
.tooltip-box::before {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 10px solid #ffffff;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  position: absolute;
  top: -7px;
  left: 46px;
}
.tooltip-header {
  padding-bottom: 11px;
  border-bottom: 1px solid #efefef;
  display: flex;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 11px;
}
.tooltip-wrap {
  font-size: 0;
}
.tooltip-wrap img {
  height: 20px;
}
.tooltip-wrap p {
  font-size: 12px;
  color: #757575;
  line-height: 20px;
  display: inline;
  vertical-align: middle;
}
.tooltip-wrap img {
  margin-right: 10px;
}
.tooltip-btn {
  margin-top: 11px;
}
.tooltip-btn ul {
  display: flex;
}
.tooltip-btn ul li {
  border: 1px solid #efefef;
  height: 40px;
  width: 100%;
}
.tooltip-btn ul li:last-child {
  border-left: 0;
}
.tooltip-btn ul li a {
  font-size: 12px;
  display: block;
  padding: 10px 20px;
  text-align: center;
}

/* 햄버거 메뉴 */
/* (햄버거 메뉴 - 로그인 안된 상태) */
.m-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 150;
}
.m-menu.on {
  display: block;
}
.m-menu.close .dimm {
  animation-name: fadeOut;
}
.m-menu.close .m-menu-inner {
  animation-name: fadeOutRight;
}
.m-menu .dimm {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.2s linear;
  animation-fill-mode: both;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInRight {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes fadeOutRight {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
.m-menu .m-menu-inner {
  display: flex;
  height: 100%;
  background-color: #ffffff;
  flex-direction: column;
  animation: fadeInRight 0.2s linear;
  animation-fill-mode: both;
}
.m-menu .m-menu-header {
  height: 56px;
  background-color: #00babb;
  padding: 10px;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  z-index: 10;
}
.m-menu .m-menu-header .mobile-login span {
  font-weight: 700;
  text-decoration-line: underline;
}
.m-menu .m-menu-header .mobile-login {
  margin-left: 4px;
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.03em;
  display: flex;
}
.m-menu .m-menu-header .mobtile-btn-wrap {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0;
}
.m-menu .m-menu-header .mobtile-btn-wrap button + button {
  margin-left: 4px;
}
.m-menu .m-menu-wrap {
  padding: 0 20px;
  flex: 1;
  min-height: 0;
  height: 100%;
  overflow: auto;
}
.m-menu .m-menu-wrap ul {
  display: flex;
  flex-direction: column;
}
.m-menu .m-menu-wrap ul li {
  border-bottom: 1px solid #efefef;
}
.m-menu .m-menu-wrap ul li:last-child {
  border-bottom: 0;
}
.m-menu .m-menu-wrap ul li a {
  font-size: 16px;
  line-height: 26px;
  color: #202020;
  display: block;
  padding: 12px 0;
  position: relative;
}
.m-menu .m-menu-wrap ul li a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../../images2/ic_burger_link.svg");
  width: 16px;
  height: 16px;
}
/* (햄버거 메뉴 - 로그인 된 상태) */
.m-menu .line {
  width: 0;
  height: 16px;
  border-left: 1px solid #111921;
  opacity: 0.15;
  margin: 0 4px;
}
.m-menu .profile strong {
  margin-left: 4px;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  letter-spacing: -0.03em;
}
.m-menu .logout-btn {
  margin-top: 10px;
  display: flex;
  align-items: center;
}
.m-menu .logout-btn span {
  font-size: 11px;
  color: #757575;
  position: relative;
  margin-left: 6px;
}
.m-menu .profile {
  display: flex;
  align-items: center;
}
.profile-wrap {
  position: relative;
  width: 292px;
  height: 154px;
  background-color: #ffffff;
}
.profile-wrap::before {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 10px solid red;
}

/* 모바일인 경우 */
.mobile .t-show {
  display: none !important;
}
.mobile .only-pc-possible {
  display: block !important;
}

@media screen and (max-width: 1023px) {
  .m-show {
    display: block;
  }
  .m-hide {
    display: none;
  }
  .p-hide {
    display: none !important;
  }
  .m-br {
    display: block;
  }

  .container {
    min-width: auto;
  }
  [class*="btn-line-"] {
    font-size: 14px;
  }

  [class*="btn-default-"].size-label {
    width: auto;
    height: 48px;
    font-size: 14px;
    line-height: 21px;
  }
  .btn-default-solid {
    padding: 14px 28px;
  }

  header {
    height: 56px;
  }
  header nav {
    display: none;
  }
  header h1 a img {
    width: 95px;
  }
  header .header-link {
    display: none;
  }
  footer {
    padding: 21px 20px 26px 20px;
    border-top: 1px solid #efefef;
  }
  footer .m-footer {
    height: auto;
    padding-bottom: 20px;
  }
  footer .m-copy {
    margin-top: 14px;
    font-size: 11px;
    color: #757575;
    line-height: 20px;
    text-align: center;
  }
  footer .link-group {
    display: none;
  }
  footer .fnb {
    max-width: 320px;
    margin: 0 auto;
  }
  footer .fnb ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .fnb ul li {
    padding: 0 20px;
    margin: 0;
  }
  footer .fnb ul li:nth-child(1),
  footer .fnb ul li:nth-child(2),
  footer .fnb ul li:nth-child(3) {
    margin-bottom: 4px;
  }
  footer .fnb ul li:first-child {
    color: #00babb;
  }
  footer .fnb ul li:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0px;
    width: 1px;
    height: 10px;
    background-color: #e5e5e5;
    transform: translateY(-50%);
  }
  footer .fnb ul li:nth-of-type(3):after {
    content: none;
  }
  footer .company-info {
    margin-bottom: 18px;
    font-size: 11px;
    line-height: 20px;
  }
  footer .company-info .info-detail {
    display: block;
    width: 100%;
  }
  footer .company-info .info-detail dl {
    align-items: flex-start;
    margin: 0;
  }
  footer .company-info .info-detail dl::after {
    content: none;
  }
  footer .company-info .info-detail dl dt {
    margin-right: 6px;
    font-weight: 400;
  }
  footer .company-info .info-detail dl dd {
    font-weight: bold;
    color: #666;
  }
  footer .company-info .copyright {
    display: none;
  }
  footer .sns {
    display: none;
  }
  footer .awards {
    margin-top: 0;
    width: 100%;
    overflow-x: scroll;
    display: flex;
    white-space: nowrap;
    -ms-overflow-style: none;
  }
  footer .awards::-webkit-scrollbar {
    display: none;
  }
  footer .awards .awards-item {
    font-size: 11px;
    line-height: 16px;
  }
  footer .awards .awards-item + .awards-item {
    margin-left: 28px;
  }
  footer .awards .awards-item::before {
    background-repeat: no-repeat;
    background-position: center center;
  }
  footer .footer-top {
    padding-bottom: 20px;
    border-top: 0;
  }
  footer .footer-top .footer-inner {
    display: block;
    height: auto;
    padding: 0;
  }
  footer .footer-btm .footer-inner {
    padding: 12px 0 0 0;
  }
  footer .company-info .info-title {
    display: none;
  }

  .input-cont-wrap {
    display: block;
  }
  .input-cont-wrap .input-label {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
  .input-cont-wrap .input-label span {
    font-size: 14px;
    line-height: 22px;
  }
  .input-label + .input-wrap {
    height: auto;
  }
  .input-text-wrap input {
    height: 40px;
    font-size: 14px;
  }
  .input-select-wrap .selected-label {
    height: 40px;
    font-size: 14px;
  }
  .input-select-wrap .select-option {
    top: 45px;
  }
  .input-radio-wrap .radio-item {
    margin-right: 20px;
  }
  .input-radio-wrap .radio-item label {
    font-size: 14px;
  }

  .breadcrumb {
    display: none;
  }

  #About [class*="btn-line-"] {
    width: 126px;
    height: 48px;
  }
  #About .section-1 h2 {
    top: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 24px;
    line-height: 36px;
    transform: none;
  }
  #About .section-1 .section-inner {
    padding: 0;
  }
  #About .section-2 .section-inner {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  #About .section-2 .title-wrap h3 {
    font-size: 20px;
    line-height: 28px;
  }
  #About .section-2 .title-wrap p {
    margin-top: 6px;
    font-size: 14px;
    line-height: 24px;
  }
  #About .section-2 .title-wrap .link-wrap {
    position: static;
    margin-top: 18px;
    text-align: center;
    transform: none;
  }
  #About .section-2 .title-wrap .link-wrap a {
    width: 180px;
    margin: 0 auto;
  }
  #About .section-2 .card-wrap {
    display: block;
    margin-top: 36px;
  }
  #About .section-2 .card-wrap .card {
    display: block;
    padding: 20px 24px;
  }
  #About .section-2 .card-wrap .card + .card {
    margin: 12px 0 0 0;
  }
  #About .section-2 .card-wrap .card .img-wrap {
    width: 124px;
    margin: 0 auto 8px;
  }
  #About .section-2 .card-wrap .card .text-wrap {
    padding-bottom: 46px;
  }
  #About .section-2 .card-wrap .card .text-wrap p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 22px;
  }
  #About .section-2 .card-wrap .card .text-wrap button {
    bottom: 0;
    font-size: 14px;
    line-height: 28px;
  }
  #About .section-2 .card-wrap .card .text-wrap button:after {
    bottom: 6px;
  }
  #About .section-2 .card-wrap .card .text-wrap .text-title h4 {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }
  #About .section-2 .card-wrap .card .text-wrap .text-title {
    display: block;
    text-align: center;
  }
  #About .section-2 .card-wrap .card .text-wrap .text-title .time {
    margin: 2px 0 0 0;
    font-size: 14px;
    line-height: 22px;
  }
  #About .section-3 .section-inner {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  #About .section-3 .desc-item {
    display: block;
  }
  #About .section-3 .desc-item + .desc-item {
    margin-top: 48px;
  }
  #About .section-3 .desc-item .img-wrap {
    width: 100%;
  }
  #About .section-3 .desc-item .img-wrap .img {
    height: 202px;
  }
  #About .section-3 .desc-item .text-wrap {
    width: 100%;
    margin: 20px 0 0 0;
    padding: 0;
  }
  #About .section-3 .desc-item .text-wrap h3 {
    font-size: 20px;
    line-height: 28px;
  }
  #About .section-3 .desc-item .text-wrap p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 22px;
  }
  #About .section-4 .detail-box-wrap {
    display: block;
  }
  #About .section-4 .detail-box-wrap .detail-box {
    width: auto;
    height: auto;
    padding: 32px 20px;
  }
  #About .section-4 .detail-box-wrap .detail-box .open-btn {
    display: none;
  }
  #About .section-4 .detail-box-wrap .detail-box .box-content {
    display: block !important;
  }
  #About .section-4 .detail-box-wrap .detail-box .img-wrap {
    width: 170px;
    margin: 0 auto 24px;
  }
  #About .section-4 .detail-box-wrap .detail-box .text-wrap h3 {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }
  #About .section-4 .detail-box-wrap .detail-box .text-wrap p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 22px;
  }
  #About .section-4 .detail-box-wrap .detail-box .text-wrap .link-wrap {
    margin-top: 18px;
    text-align: center;
  }

  /* onTest-stare */
  .m-subMenu {
    background-color: #00babb;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    position: sticky;
    top: 56px;
    z-index: 99;
  }
  .m-subMenu button {
    background-image: url("../../images2/ic_stare_share.svg");
    width: 36px;
    height: 36px;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }
  .onTest-stare {
    padding: 0 0 40px 0;
  }
  .onTest-stare .section-inner {
    min-width: 100%;
    padding: 0;
  }
  .onTest-stare .top-title-wrap {
    text-align: center;
    padding: 40px 36px;
    height: 100%;
    background-color: #f7f9fa;
  }
  .onTest-stare .top-title-wrap strong {
    font-size: 20px;
    line-height: 28px;
  }
  .onTest-stare .top-title-wrap b {
    font-size: 20px;
    line-height: 28px;
  }
  .onTest-stare .top-title-wrap p {
    font-size: 14px;
    line-height: 22px;
    margin-top: 16px;
    text-align: left;
  }
  .onTest-stare .step-wrap {
    margin: 40px auto;
    max-width: 100%;
    padding: 0 20px;
  }
  .onTest-stare .step-wrap ul {
    row-gap: 30px;
  }
  .onTest-stare .step-wrap li {
    height: auto;
    flex-direction: column;
    align-items: center;
  }
  .onTest-stare .step-wrap .step-circle {
    width: 100px;
    height: 100px;
    border-radius: 40px;
  }
  .onTest-stare .step-wrap .step-circle img {
    width: 59px;
    height: 48px;
  }
  .onTest-stare .step-wrap .step-circle .img-step02 {
    width: 41px;
    height: 55px;
  }
  .onTest-stare .step-wrap .step-circle .img-step04 {
    width: 54px;
  }
  .onTest-stare .step-wrap ul li .step-desc {
    max-width: 100;
    margin-left: 0;
    text-align: center;
  }
  .onTest-stare .step-wrap strong {
    font-size: 16px;
    line-height: 26px;
    margin-top: 12px;
  }
  .onTest-stare .step-wrap p {
    margin-top: 8px;
    font-size: 16px;
    line-height: 26px;
  }
  .onTest-stare .step-wrap p .m-br {
    display: block;
  }
  .onTest-stare .step-wrap span {
    font-size: 14px;
    line-height: 24px;
    margin-top: 0px;
  }
  .onTest-stare .attention-wrap {
    margin-top: 40px;
    padding: 0 20px;
  }
  .onTest-stare .attention-wrap::before {
    width: calc(100% - 40px);
    left: 50%;
    transform: translateX(-50%);
  }
  .onTest-stare .attention-wrap h3 {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }
  .onTest-stare .attention-wrap ul {
    margin-top: 28px;
  }
  .onTest-stare .attention-wrap ul li {
    margin: 0 0 0 15px;
    font-size: 14px;
    line-height: 24px;
  }
  .onTest-stare .attention-wrap ul li::before {
    width: 4px;
    height: 4px;
    top: 10px;
    left: -15px;
    transform: unset;
  }

  /* onTest-end */
  .onTest-end {
    padding: 40px 0 60px;
  }
  .onTest-end .section-inner {
    min-width: 0;
  }
  .onTest-end .top-title-wrap h2 {
    display: block;
    text-align: center;
  }
  .onTest-end .top-title-wrap h2 {
    margin: 0;
    font-size: 16px;
    line-height: 26px;
  }
  .onTest-end .top-title-wrap h2 .student-name {
    font-size: 18px;
    line-height: 34px;
  }
  .onTest-end .top-title-wrap h2 .student-name span {
    margin-left: 6px;
    padding: 0;
    font-size: 16px;
    line-height: 26px;
  }
  .onTest-end .top-title-wrap h2 .student-name::before {
    width: 26px;
    height: 28px;
    margin: -2px 6px 0 0;
  }
  .onTest-end .top-title-wrap p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 24px;
  }
  .onTest-end .movie-wrap {
    position: relative;
    padding-top: 56.25%;
  }
  .onTest-end .movie-wrap video,
  .onTest-end .movie-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  /* onTest-counsel */
  .onTest-counsel {
    padding: 20px 0 60px;
  }
  .onTest-counsel .section-inner {
    min-width: 100%;
  }
  .onTest-counsel strong {
    font-size: 20px;
    line-height: 28px;
  }
  .onTest-counsel .counsel-wrap {
    max-width: 100%;
    margin: 20px auto 30px auto;
    border-radius: 8px;
    padding: 20px 20px 40px 20px;
  }
  .onTest-counsel .counsel-wrap p {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.02em;
  }
  .onTest-counsel .counsel-wrap p:last-of-type {
    font-size: 16px;
  }
  .onTest-counsel .counsel-wrap img {
    width: 207px;
    margin-top: 24px;
  }
  .onTest-counsel .counsel-desc {
    max-width: 100%;
    padding: 0 24px;
  }
  .onTest-counsel .counsel-desc img {
    margin-right: 12px;
  }
  .onTest-counsel .counsel-desc b {
    font-size: 16px;
    line-height: 26px;
  }
  .onTest-counsel .counsel-desc .green-color {
    margin-left: 6px;
  }
  .onTest-counsel .counsel-desc p {
    font-size: 12px;
    line-height: 16px;
    margin-top: 2px;
    flex-direction: column;
    align-items: flex-start;
  }
  .onTest-counsel .counsel-desc p span {
    line-height: 12px;
    display: block;
    margin-top: 2px;
  }
  .onTest-counsel .counsel-desc p span:last-child {
    margin-left: 0;
    font-size: 10px;
  }
  .onTest-counsel .submit-btn-wrap {
    margin-bottom: 30px;
  }
  .onTest-counsel .submit-btn-wrap a,
  .onTest-counsel .submit-btn-wrap button {
    width: 206px;
  }

  /* onTest-report */
  .onTest-report {
    margin: 40px 0 60px 0;
  }
  .onTest-report .section-inner {
    max-width: 100%;
    padding: 0 20px;
  }
  .onTest-report .report-wrap {
    padding: 27px 36px;
    border-radius: 8px;
    min-height: 160px;
  }
  .onTest-report .report-inner {
    text-align: center;
    justify-content: center;
  }
  .onTest-report .report-icon {
    display: none;
  }
  .onTest-report .report-flex {
    margin-left: 0;
  }
  .onTest-report .report-line {
    display: none;
  }
  .onTest-report h3 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
    justify-content: center;
  }
  .onTest-report h3 span {
    margin-left: 6px;
    font-size: 16px;
    line-height: 26px;
  }
  .onTest-report b {
    font-size: 16px;
    line-height: 26px;
  }
  .onTest-report .report-desc-wrap {
    margin: 14px 0 30px 0;
  }
  .onTest-report .report-desc {
    font-size: 14px;
    line-height: 24px;
  }
  .onTest-report .submit-btn-wrap {
    width: 240px;
    margin: 0 auto;
  }
  .onTest-report .submit-btn-wrap a,
  .onTest-report .submit-btn-wrap button {
    width: 206px;
    height: 48px;
    font-size: 14px;
    line-height: 48px;
  }
  .onTest-report .submit-btn-wrap > * + * {
    margin: 12px 0 0 0;
  }

  /* onTest-report (리포트_상담완료한 경우) */
  .onTest-report .complete .report-flex {
    margin-left: 0px;
  }
  .onTest-report .complete .result-desc {
    font-size: 16px;
    line-height: 26px;
  }

  /* interest-brands-wrap */
  .interest-brands-wrap {
    width: 100%;
    margin-top: 30px;
  }
  .interest-brands-wrap .select-title {
    font-size: 14px;
    line-height: 24px;
  }
  .interest-brands-wrap .dot-list-wrap {
    margin-top: 14px;
  }
  .interest-brands-wrap .dot-list-wrap ul li {
    padding-left: 21px;
    font-size: 14px;
    line-height: 24px;
    word-break: break-all;
  }
  .interest-brands-wrap .dot-list-wrap ul li::before {
    top: 8px;
    left: 9px;
  }
  .interest-brands-wrap .dot-list-wrap ul li + li {
    margin: 0;
  }
  .interest-brands-wrap .submit-btn-wrap a {
    width: 206px;
  }
  .interest-brands-wrap .interest-item .guide {
    font-size: 10px;
    line-height: 20px;
  }
  .interest-brands-wrap .interest-item ul li {
    height: 36px;
    padding: 0 11px;
  }
  .interest-brands-wrap .interest-item ul li + li {
    margin-top: 6px;
  }
  .interest-brands-wrap .interest-item .item-link {
    margin: 0;
  }
  .interest-brands-wrap .interest-item .item-link .brand-icon {
    width: 100px;
    height: 20px;
    background-size: auto 100%;
  }
  .interest-brands-wrap .interest-item .item-button button {
    font-size: 0;
    text-indent: -9999px;
    overflow: hidden;
  }
  .interest-brands-wrap .interest-item .item-button button::after {
    margin: 0;
  }
  .interest-brands-wrap .interest-item .input-checkbox-wrap .checkbox-item label {
    font-size: 12px;
  }
  .interest-brands-wrap .interest-item .input-checkbox-wrap .checkbox-item label::before {
    margin-left: 4px;
  }
  .interest-brands-wrap .interest-item .guide {
    margin: 0;
  }
  .interest-brands-wrap .top-wrap .input-radio-wrap .radio-item label {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
  }
  .interest-brands-wrap .submit-btn-wrap {
    margin-top: 30px;
  }

  /* modal */
  .modal-header {
    margin-bottom: 12px;
    padding-bottom: 9px;
  }
  .modal-header .modal-title {
    font-size: 16px;
  }
  .modal .modal-box {
    padding: 12px 20px 20px;
  }

  /* modal-consultRequest */
  .modal-consultRequest .modal-box {
    width: 320px;
  }

  /* 브랜드영상보기 */
  .modal-brandMovie .modal-header img {
    height: 20px;
  }
  .modal-brandMovie .modal-box {
    width: 320px;
    height: auto;
  }
  .modal-brandMovie .desc {
    display: block;
  }
  .modal-brandMovie .desc .brand-icon {
    height: 20px;
  }
  .modal-brandMovie .desc span {
    margin-top: 4px;
    font-size: 12px;
    line-height: 20px;
  }
  .modal-brandMovie .movie-wrap {
    position: relative;
    padding-top: 56.25%;
  }
  .modal-brandMovie .movie-wrap video,
  .modal-brandMovie .movie-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
