@charset "UTF-8";
/* font */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");
/* Noto Sans KR */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@font-face {
  font-family: "SUIT";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "SUIT";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "SUIT";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "SUIT";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "SUIT";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "SUIT";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "SUIT";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "MBC1961M";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2304-01@1.0/MBC1961M.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
.SUIT * {
  font-family: "SUIT", serif;
}

/* common */
.wrap {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

.hidden {
  display: none !important;
}

.flex_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mo_only {
  display: none !important;
}

.mo1000_only {
  display: none !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pt-8 {
  padding-top: 8px !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mt-12 {
  margin-top: 12px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.tac {
  text-align: center !important;
}

.btn {
  width: 100%;
}
.btn.flex {
  display: flex;
  align-items: center;
  gap: 4px;
}
.btn.flex a:nth-child(n+2),
.btn.flex button:nth-child(n+2) {
  margin-top: 0px;
}
.btn.bottom {
  position: fixed;
  bottom: 0;
  padding-bottom: 24px;
  border-radius: 30px 30px 0 0;
  width: 332px;
}
.btn a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  box-sizing: border-box;
  font-size: 16px;
  border-radius: 50px;
  text-align: center;
}
.btn a.disabled {
  opacity: 0.3;
}
.btn a:nth-child(n+2) {
  margin-top: 8px;
}
.btn button {
  width: 100%;
  padding: 0 10px;
  gap: 10px;
  box-sizing: border-box;
  font-size: 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.btn button:disabled {
  opacity: 0.3;
}
.btn button:nth-child(n+2) {
  margin-top: 8px;
}
.btn .file_btn {
  width: 100%;
}
.btn .file_btn input {
  display: none;
}
.btn .file_btn input + label {
  display: inline-block;
  width: 100%;
  padding: 0 10px;
  gap: 10px;
  box-sizing: border-box;
  font-size: 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.btn .file_btn input + label.btn_primary {
  background: #8985FF;
  box-sizing: border-box;
  color: #fff;
  height: 52px;
  border: 1px solid #8985FF;
}
.btn .file_btn input + label.btn_blue {
  background: #00068D;
  box-sizing: border-box;
  color: #fff;
  height: 52px;
  border: 1px solid #00068D;
}
.btn .file_btn input + label.btn_white {
  background: #fff;
  box-sizing: border-box;
  color: #272A30;
  height: 52px;
  border: 1px solid #8985FF;
}
.btn .btn_primary {
  background: #8985FF;
  box-sizing: border-box;
  color: #fff;
  height: 52px;
  border: 1px solid #8985FF;
}
.btn .btn_blue {
  background: #00068D;
  box-sizing: border-box;
  color: #fff;
  height: 52px;
  border: 1px solid #00068D;
}
.btn .btn_white {
  background: #fff;
  box-sizing: border-box;
  color: #272A30;
  height: 52px;
  border: 1px solid #8985FF;
}

.input_flex {
  display: flex;
  align-items: center;
  gap: 4px;
}

.input_wrap select {
  width: 100%;
  border-radius: 50px;
  border: 1px solid #E9EBF1;
  padding: 0px 20px;
  height: 56px;
  font-size: 14px;
  font-weight: 400;
  background: url("../images/select_arrow.svg") no-repeat right 20px center;
}
.input_wrap select::placeholder {
  color: #C8CCD5;
}
.input_wrap select.nation_code {
  width: 110px;
  flex: none;
}
.input_wrap input {
  width: 100%;
  border-radius: 50px;
  border: 1px solid #E9EBF1;
  padding: 0px 20px;
  height: 56px;
  font-size: 14px;
  font-weight: 400;
}
.input_wrap input::placeholder {
  color: #C8CCD5;
}
.input_wrap input.id {
  padding-left: 48px;
  background: url("../images/input_id.svg") no-repeat left 20px center;
}
.input_wrap input.password {
  padding-left: 48px;
  background: url("../images/input_password.svg") no-repeat left 20px center;
}
.input_wrap input.email {
  padding-left: 48px;
  background: url("../images/input_email.svg") no-repeat left 20px center;
}
.input_wrap input.date {
  background: url("../images/i_date.svg") no-repeat right 20px center;
}
.input_wrap input.time {
  background: url("../images/i_time.svg") no-repeat right 20px center;
}
.input_wrap textarea {
  width: 100%;
  border: 1px solid #E9EBF1;
  padding: 20px 12px;
  height: 448px;
  font-size: 14px;
  font-weight: 400;
  resize: none;
}

.table table {
  width: 100%;
  text-align: center;
  border-top: 1px solid #272A30;
}
.table table tr {
  border-bottom: 1px solid #E9E9E9;
}
.table table tr th {
  height: 37px;
  vertical-align: middle;
  font-weight: 700;
  font-size: 13px;
}
.table table tr td {
  height: 37px;
  font-size: 13px;
  vertical-align: middle;
}
.table table tr td p.red {
  color: #FF6666;
}
.table table tr td p.blue {
  color: #5B9DFF;
}
.table table tr td p.view {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* 라디오 */
input[type=radio] {
  display: none;
}

input[type=radio] + label.radio_style1 {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  margin-right: 15px;
  font-size: 16px;
}

input[type=radio] + label.radio_style1:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  background-color: #fff;
  border-radius: 2px;
  background: url("../images/check_off.svg");
}

input[type=radio]:checked + label.radio_style1:before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../images/check_on.svg");
}

/* 체크박스 */
input[type=checkbox] {
  display: none;
}

input[type=checkbox] + label.check_style1 {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  font-size: 16px;
}

input[type=checkbox] + label.check_style1::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background-color: #fff;
  border-radius: 2px;
  background: url("../images/check_off.svg");
}

input[type=checkbox]:checked + label.check_style1::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../images/check_on.svg");
}

/* header */
header {
  width: 360px;
  margin: 0 auto;
  background: #fff;
  position: relative;
  z-index: 11;
}
header > .wrap {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header > .wrap .logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
header > .wrap .logo a.prev {
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header > .wrap ul.header_func {
  display: flex;
  align-items: center;
  gap: 8px;
}
header > .wrap ul.header_func li a {
  display: flex;
}
header > .wrap ul.header_func li a.study_btn {
  color: #fff;
  background: #13268C;
  line-height: 1;
  font-size: 14px;
  padding: 8px 16px;
  font-weight: 700;
  border-radius: 999px;
}
header .ham_menu {
  display: none;
  position: absolute;
  z-index: 1;
  background: #fff;
  top: 0;
  width: 100%;
}
header .ham_menu.on {
  display: block;
}
header .ham_menu .menu_header .wrap {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .ham_menu .menu_header .wrap .user_login a {
  display: flex;
  align-items: center;
  gap: 8px;
}
header .ham_menu .menu_header .wrap .user_login p {
  font-weight: 500;
}
header .ham_menu .menu_header .wrap ul.header_func {
  display: flex;
  align-items: center;
  gap: 8px;
}
header .ham_menu .menu_con {
  border-top: 1px solid #E9EBF1;
}
header .ham_menu .menu_con ul.info_list {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  padding-bottom: 14px;
  box-sizing: border-box;
}
header .ham_menu .menu_con ul.info_list li {
  text-align: center;
  width: 162px;
  height: 125.58px;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 16px;
}
header .ham_menu .menu_con ul.info_list li.subscribe {
  background: #8985FF;
  border: 1px solid #8985FF;
}
header .ham_menu .menu_con ul.info_list li.subscribe a {
  color: #fff;
}
header .ham_menu .menu_con ul.info_list li.consult {
  border: 1px solid #8985FF;
}
header .ham_menu .menu_con ul.info_list li.consult a h3 span {
  color: #8985FF;
}
header .ham_menu .menu_con ul.info_list li.consult a p {
  color: #6A7081;
}
header .ham_menu .menu_con ul.info_list li a {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
header .ham_menu .menu_con ul.info_list li a h5 {
  font-weight: 600;
}
header .ham_menu .menu_con ul.info_list li a h3 {
  font-weight: 700;
}
header .ham_menu .menu_con ul.info_list li a h3 span {
  font-size: 24px;
}
header .ham_menu .menu_con ul.info_list li a p {
  font-size: 12px;
}
header .ham_menu .menu_con .nav_wrap {
  border-top: 1px solid #E9EBF1;
  display: flex;
  height: calc(100% - 204px);
}
header .ham_menu .menu_con .nav_wrap .nav_box {
  width: 50%;
}
header .ham_menu .menu_con .nav_wrap .nav_box ul li {
  border-bottom: 1px solid #E9EBF1;
}
header .ham_menu .menu_con .nav_wrap .nav_box ul li.on a {
  background: #00068D;
  color: #fff;
}
header .ham_menu .menu_con .nav_wrap .nav_box ul li button {
  width: 100%;
  height: 56px;
  text-align: left;
  font-size: 16px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
header .ham_menu .menu_con .nav_wrap .nav_box ul li a {
  display: inline-block;
  width: 100%;
  height: 56px;
  line-height: 56px;
  font-size: 16px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  cursor: pointer;
}
header .ham_menu .menu_con .nav_wrap .nav_box ul.depth2_list {
  display: none;
}
header .ham_menu .menu_con .nav_wrap .nav_box ul.depth2_list.on {
  display: block;
}
header .ham_menu .menu_con .nav_wrap .nav_box:nth-child(n+2) {
  border-left: 1px solid #E9EBF1;
}
header .ham_menu .menu_con .nav_wrap .nav_box .copyright {
  padding: 20px;
  padding-top: 80px;
  box-sizing: border-box;
  font-size: 12px;
  color: #DEE0E8;
  letter-spacing: -0.2px;
}

.content {
  width: 360px;
  margin: 0 auto;
  padding-bottom: 24px;
  box-sizing: border-box;
}
.content.hide {
  min-height: 0;
  height: 0;
  overflow: hidden;
}

/* footer */
/* modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 100;
  justify-content: center;
  align-items: center;
}

.modal2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 100;
  justify-content: center;
  align-items: center;
}

.modal_open {
  cursor: pointer;
}

.modal_overlay {
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 24;
}

.modal_content {
  background-color: white;
  text-align: left;
  position: relative;
  z-index: 25;
  border-radius: 8px;
  box-shadow: 0.125rem 0.125rem 1.25rem 0.25rem rgba(0, 0, 0, 0.2);
}

.modal_content .modalContWrap {
  font-size: 0.9375rem;
}

.modal .modal_close {
  position: absolute;
  z-index: 50;
  right: 1.0625rem;
  top: 1.0625rem;
  cursor: pointer;
}

.modal_content .modalContWrap {
  font-size: 1.125rem;
  color: #000;
}

.modal_content .modalContWrapTab {
  text-align: left;
}

.modal_content .modal_scroll {
  height: 31.25rem;
  overflow-y: scroll;
}

.modal_md {
  width: 46.25rem;
  max-height: 40.625rem;
  box-sizing: border-box;
}

.modal_md .modal_con {
  padding: 30px 24px;
  font-size: 15px;
  box-sizing: border-box;
}

.modal_sm {
  width: 300px;
  text-align: center;
}

.modal_sm .modal_con {
  padding: 30px;
  font-size: 15px;
}

.bottom_position {
  align-items: end;
}

.modal_content .modal_con ul.btn_list {
  margin-top: 28px;
}
.modal_content .modal_con ul.btn_list.flex {
  display: flex;
  gap: 4px;
}
.modal_content .modal_con ul.btn_list.flex li {
  width: 100%;
}
.modal_content .modal_con ul.btn_list.flex li:nth-child(n+2) {
  margin-top: 0;
}
.modal_content .modal_con ul.btn_list li:nth-child(n+2) {
  margin-top: 8px;
}
.modal_content .modal_con ul.btn_list li a,
.modal_content .modal_con ul.btn_list li button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 50px;
  border: 1px solid #8985FF;
  background: #FFF;
  font-size: 16px;
}
.modal_content .modal_con ul.btn_list li a.btn_primary,
.modal_content .modal_con ul.btn_list li button.btn_primary {
  background: #8985FF;
  color: #fff;
  border: 1px solid #8985FF;
}
.modal_content .modal_con ul.btn_list li a.btn_blue,
.modal_content .modal_con ul.btn_list li button.btn_blue {
  background: #00068D;
  color: #fff;
  border: 1px solid #00068D;
}
.modal_content .modal_con ul.btn_list li a p,
.modal_content .modal_con ul.btn_list li button p {
  font-weight: 500;
}
.modal_content .modal_con ul.btn_list li a i,
.modal_content .modal_con ul.btn_list li button i {
  margin-right: 6px;
}

.modal_bottom {
  width: 360px;
  text-align: center;
  border-radius: 20px 20px 0px 0px;
}
.modal_bottom .modal_con {
  padding-top: 40px;
  font-size: 15px;
  text-align: left;
  padding-bottom: 24px;
  overflow-y: auto;
}
.modal_bottom .modal_con .center_con {
  text-align: center;
}
.modal_bottom .modal_con .con_info small {
  font-size: 12px;
  color: #9297A4;
}
.modal_bottom .modal_con .con_info h2 {
  font-size: 24px;
  line-height: 1.16;
  margin-top: 7px;
  font-family: "MBC1961M", serif;
}
.modal_bottom .modal_con .con_info h2 span {
  font-family: "MBC1961M", serif;
  color: #756EF5;
}
.modal_bottom .modal_con .con_info h5 {
  font-size: 16px;
  font-weight: 700;
}
.modal_bottom .modal_con .con_info p {
  margin-top: 12px;
  font-size: 14px;
}
.modal_bottom .modal_con .term_list {
  margin-top: 28px;
}
.modal_bottom .modal_con .term_list h5 {
  font-weight: 600;
  padding-bottom: 16px;
}
.modal_bottom .modal_con .term_list .all_agree {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal_bottom .modal_con .term_list .all_agree .chk_btn {
  padding-bottom: 16px;
}
.modal_bottom .modal_con .term_list .all_agree .chk_btn label::before {
  width: 20px;
  height: 20px;
  background-size: cover;
}
.modal_bottom .modal_con .term_list ul {
  border-top: 1px solid #E9EBF1;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal_bottom .modal_con .term_list ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal_bottom .modal_con .term_list ul li a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.modal_bottom .modal_con .term_list ul li .chk_btn input + label {
  padding-left: 40px;
}
.modal_bottom .modal_con .term_list ul li .chk_btn input + label ::before {
  margin-right: 0;
}
.modal_bottom .modal_con .term_txt {
  margin-top: 28px;
  height: 504px;
  overflow-y: auto;
  overflow-x: hidden;
}
.modal_bottom .modal_con ul.permit_list {
  margin-top: 35.69px;
  border-top: 1px solid #E3E3E3;
  border-bottom: 1px solid #E3E3E3;
  padding: 16px 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal_bottom .modal_con ul.permit_list li p {
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #595E6E;
}
.modal_bottom .modal_con ul.permit_list li p span {
  font-weight: 700;
}
.modal_bottom .modal_con ul.permit_list li p i {
  color: #A6A6A6;
}
.modal_bottom .modal_con .simple_comment .comment_box:nth-child(n+2) {
  margin-top: 28px;
}
.modal_bottom .modal_con .simple_comment .comment_box h5 {
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  width: fit-content;
  font-size: 14px;
  font-weight: 700;
}
.modal_bottom .modal_con .simple_comment .comment_box h5.blue {
  background: #EDFCFF;
  color: #00A1C4;
}
.modal_bottom .modal_con .simple_comment .comment_box h5.purple {
  background: #F5F1FF;
  color: #8C6AFE;
}
.modal_bottom .modal_con .simple_comment .comment_box p {
  font-size: 15px;
  margin-top: 8px;
}
.modal_bottom .modal_con .listening_box .play_btn {
  position: relative;
  top: -15px;
}
.modal_bottom .modal_con .listening_box #progress {
  appearance: none;
  display: block;
  width: 100%;
  height: 8px;
}
.modal_bottom .modal_con .listening_box #progress::-webkit-progress-bar {
  background: #EEF0F5;
  border-radius: 10px;
}
.modal_bottom .modal_con .listening_box #progress::-webkit-progress-value {
  border-radius: 10px;
  background: #1D976C;
  background: var(--gradation, linear-gradient(90deg, #BCB9FF -2.56%, #8883F1 103.16%));
}
.modal_bottom .modal_con .date_box .date_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}
.modal_bottom .modal_con .date_box .date_head h5 {
  font-size: 18px;
  font-weight: 700;
}
.modal_bottom .modal_con .date_box .date_head .date_btns {
  display: flex;
  align-items: center;
}
.modal_bottom .modal_con .date_box .date_head .date_btns button:nth-child(n+2) {
  margin-left: 16px;
}
.modal_bottom .modal_con .date_box .date_body {
  margin-top: 32px;
}
.modal_bottom .modal_con .date_box .date_body ul.week {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
.modal_bottom .modal_con .date_box .date_body ul.week li {
  margin-top: 13px;
  font-size: 14px;
  font-weight: 600;
}
.modal_bottom .modal_con .date_box .date_body ul.th {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
.modal_bottom .modal_con .date_box .date_body ul.th li {
  margin-top: 15px;
}
.modal_bottom .modal_con .date_box .date_body ul.th li button {
  font-size: 15px;
  width: 30px;
  height: 26px;
  display: inline-block;
}
.modal_bottom .modal_con .date_box .date_body ul.th li button.on {
  border-radius: 16px;
  background: #8985FF;
  color: #fff;
}
.modal_bottom .modal_con .time_box {
  margin-top: 28px;
}
.modal_bottom .modal_con .time_box h5 {
  font-weight: 600;
  text-align: left;
}
.modal_bottom .modal_con .time_box ul.time_list {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  gap: 8px 4px;
}
.modal_bottom .modal_con .time_box ul.time_list li input + label {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #E9EBF1;
  border-radius: 8px;
  width: 100%;
  padding: 20px 0;
  display: inline-block;
  cursor: pointer;
}
.modal_bottom .modal_con .time_box ul.time_list li input:checked + label {
  border: 1px solid #8985FF;
}

.modal_bottom .modal_con .input_wrap .input_func a {
  width: 100%;
}

.modal_bottom .modal_close {
  top: 16px;
  right: 20px;
}

.modal_btn {
  border-top: 1px solid #eeeeee;
}

.modal_btn.flex {
  display: flex;
}

.modal_btn button {
  color: #999999;
  font-size: 15px;
  width: 100%;
  height: 40px;
}

@media screen and (max-width: 1000px) {
  .mo1000_only {
    display: block !important;
  }
  .pc1000_only {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .mo_only {
    display: block !important;
  }
  .pc_only {
    display: none !important;
  }
}

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