@charset "UTF-8";

:root {
    --primary: #515151;
    --highlight: #6C61FF;
    --darkgray: #333333;
    --border: #dfdfdf;
    --placeholder: #ACACAC;
    --gray: #999999;
    --dark: #100F0F;
    --msugreen: #0F3D3E;
    --bone: #E2DCC8;
    --white-gray: #F8F8F8;
    --violet-blue: #7C76CC;
    --iris: #564DCC;
    --magnolia: rgba(160, 97, 255, 0.11);
    --sky-blue: #6189FF;
    --red: #ff6184;
    --dim: rgba(0, 0, 0, .56);

    --border-solid: 1px solid var(--border);

    --inner-padding: 0 50px;
    --inner-padding-l: 50px;
    --inner-padding-r: 50px;
    
    --gap: 30px;

    /* viewport */
    --vh: 100dvh;
}

html {scroll-behavior: smooth;}

.fw-t {font-weight: 100;}
.fw-el {font-weight: 200;}
.fw-l {font-weight: 300;}
.fw-r {font-weight: 400;}
.fw-m {font-weight: 500;}
.fw-sb {font-weight: 600;}
.fw-b {font-weight: 700;}
.fw-eb {font-weight: 800;}
.fw-bl {font-weight: 900;}

.modal-open {overflow: hidden;}

.backdrop {
	-o-transition: background-color .1s linear;
	-moz-transition: background-color .1s linear;
	-webkit-transition: background-color .1s linear;
	transition: background-color .1s linear;
	background-color: transparent; position: fixed; inset: 0; z-index: 5555; visibility: hidden; -webkit-user-select: none; user-select: none;
}
.backdrop.open {background-color: var(--dim); visibility: visible; -webkit-user-select: auto; user-select: auto;}

.sound-only {display: inline-block !important; position: absolute; top: 0; left: 0; margin: 0 !important; padding: 0 !important; font-size: 0; line-height: 0; border: 0 !important; overflow: hidden !important}

.wrap {position: relative; width: 100%; min-height: 100vh;}
.wrap {display:-webkit-flex; display: flex; flex-direction: column;}
#footer {margin-top: auto;}
.wrap::after {content: ''; display: block; clear: both;}

.inner {width: 100%; max-width: 1200px; margin: 0 auto;}

.required {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5.414' height='5.564' viewBox='0 0 5.414 5.564'%3E%3Cpath d='M3.021-4.334H4.2L4.088-6.289l1.654,1.08.574-1.025-1.75-.875L6.316-8,5.742-9.023,4.088-7.943,4.2-9.9H3.021l.109,1.955L1.49-9.023.9-8l1.764.889L.9-6.234,1.49-5.209l1.641-1.08Z' transform='translate(-0.902 9.898)' fill='%23eb2c57'/%3E%3C/svg%3E"), linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)) !important;
    background-repeat: no-repeat !important;
    background-position: calc(100% - 10px) 10px, center !important;
}

:target::before {content: ''; display: block; height: 70px; margin-top: -70px;}

::placeholder {font-size: 0.875rem; color: var(--placeholder);}

input, select {width: 100%; height: 40px; line-height: 40px;}
input:disabled {background: var(--white-gray); font-weight: 400; font-size: 1rem; color: var(--gray);}
input[type='text'],input[type='password'],input[type='search'],input[type='date'],input[type='email'],input[type='tel'], select {padding: 0 20px; border: var(--border-solid); border-radius: 6px; font-size: 1rem;}
textarea {padding: 30px 20px; border: var(--border-solid); border-radius: 6px; font-size: 1rem;}
button,input[type='button'],input[type='submit'],input[type='reset'],input[type='file'] {border-radius: 6px;}

select {
    -moz-appearance: none; -webkit-appearance: none; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.715' height='8' viewBox='0 0 13.715 8'%3E%3Cpath id='select-down' d='M6.862,168a1.138,1.138,0,0,1-.808-.335L.34,161.951a1.143,1.143,0,0,1,1.616-1.616l4.906,4.908,4.907-4.907a1.143,1.143,0,1,1,1.616,1.616l-5.714,5.714A1.14,1.14,0,0,1,6.862,168Z' transform='translate(-0.005 -160)' fill='%23100f0f'/%3E%3C/svg%3E%0A"), linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center, center;
    background-size: auto;
    padding-right: 44px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
select::-ms-expand {display: none;} /* for IE10, 11 */
select.empty, select:disabled {font-size: 0.875rem; color: var(--placeholder); opacity: 1;}
select option {font-size: 1rem; color: var(--primary);}
select option:disabled {font-size: 1rem; color: var(--placeholder);}
select option:hover, select option:focus, select option:active, select option:checked {
    background: linear-gradient(var(--bone), var(--bone)); 
    background-color: var(--bone); /* IE */
    color: #fff;
}

input[type=checkbox] {display: none;}
input[type=checkbox] + label {cursor: pointer; font-size: 1rem; font-weight: 400; color: var(--primary); display: -webkit-flex; display: flex; justify-content: start; align-items: center; gap: 10px; line-height: 1;}
input[type=checkbox] + label::before {display: inline-block; content: '\f14a'; font-weight: 400; font-family: "Font Awesome 6 Free"; color: #BBBBBB; font-size: 1.25rem;}
input[type=checkbox]:checked + label::before {display: inline-block; content: '\f14a'; font-weight: 900; font-family: "Font Awesome 6 Free"; color: var(--sky-blue); font-size: 1.25rem;}

.radio-area {position: relative; display: -webkit-flex; display: flex; justify-content: start; align-items: center;}
input[type=radio] {display: none;}
input[type=radio] + label {cursor: pointer; margin-left: 22px;}
input[type=radio] + label::before {position: absolute; top: 50%; left: 0; transform: translateY(-50%); display: inline-block; content: ''; width: 12px; height: 12px; border: 1px solid var(--highlight); border-radius: 50%; text-align: center;}
input[type=radio] + label::after {position: absolute; top: 50%; left: 3px; transform: translateY(-50%) scale(0); display: inline-block; content: ''; width: 6px; height: 6px; border: 1px solid var(--highlight); border-radius: 50%; background: var(--highlight); transition: transform 0.3s ease;}
input[type=radio]:checked + label::after {transform: translateY(-50%) scale(1);}

.search-box {position: relative; width: 326px;}
.search-box1 input[type='search'].input-search {border-radius: 999px; padding-right: 40px;}
.btn-search {
    position: absolute; top: 50%; right: 0; transform: translateY(-50%); width: 40px; height: 40px; font-size: 0; line-height: 0;
    background-repeat: no-repeat; background-position: left center; background-size: 50%; 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.998' height='20' viewBox='0 0 19.998 20'%3E%3Cpath id='search' d='M27.044,18.08a7.986,7.986,0,1,0,3.4,14.542l.517-.348,5.47,5.47a.925.925,0,0,0,1.308-1.31h0l-5.47-5.47.348-.517A7.98,7.98,0,0,0,27.044,18.08ZM25.958,32.13A6.134,6.134,0,1,1,32.092,26,6.141,6.141,0,0,1,25.958,32.13Z' transform='translate(-18.014 -18.014)' fill='%23100f0f'/%3E%3C/svg%3E%0A");
}

.input-label {display: inline-block; width: 110px; font-size: 0.938rem; flex-shrink: 0;}

progress[value] {display: block; width: 100%; height: 6px;}
progress[value]::-webkit-progress-bar {background-color: #b6b6b6; border-radius: 0;}
progress[value]::-webkit-progress-value {background-color: var(--red); border-radius: 0;}
progress + label {width: 100%; padding: 0 6px; display: -webkit-flex; display: flex; justify-content: space-between; align-items: center;}

.close {position: absolute; top: 12px; right: 30px; width: 40px; height: 40px;}
.close::before {content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(45deg); width: 1px; height: 30px; background: var(--highlight);}
.close::after {content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-45deg); width: 1px; height: 30px; background: var(--highlight);}

.popup {display: none; opacity: 0; width: auto; min-height: 800px; height: auto;}

.flex-item {-webkit-flex-shrink: 0; flex-shrink: 0;}

.scroll::-webkit-scrollbar {width: 19px; /* 세로 스크롤바 너비 */ height: 19px; /* 가로 스크롤바 높이 */ background-color: transparent;}
.scroll::-webkit-scrollbar-thumb {width: 19px; background-color: #CCCCCC; border-radius: 999px; background-clip: padding-box; border: 6px solid transparent;} /* 실제 스크롤바 막대 */
.scroll::-webkit-scrollbar-track {width: 19px; border-radius: 999px; background-color: transparent;}

.title1 {font-weight: 700; font-size: 1.875rem; color: var(--darkgray);}
.title2 {font-weight: 700; font-size: 1.375rem; color: var(--darkgray);}
.title3 {font-weight: 700; font-size: 1.125rem; color: var(--darkgray);}

.text1 {font-weight: 300; font-size: 1.5rem; color: var(--darkgray);}
.text2 {font-weight: 300; font-size: 1.125rem; color: var(--darkgray);}

.date {font-weight: 300; font-size: 1rem; color: var(--gray); text-align: right;}

.ellipsis {overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;}

.btn1 {width: -moz-fit-content; width: -webkit-fit-content; width: fit-content; padding: 12px 30px; background: var(--highlight); font-weight: 600; font-size: 1.125rem; color: #fff; display: -webkit-flex; display: flex; justify-content: center; align-items: center; border-radius: 6px;}
.btn2 {width: -moz-fit-content; width: -webkit-fit-content; width: fit-content; padding: 10px 17px; background: #fff; border: 1px solid var(--gray); font-weight: 600; display: -webkit-flex; display: flex; justify-content: center; align-items: center; column-gap: 10px; border-radius: 6px;}
.btn3 {height: 40px; padding: 0 30px; background: var(--dark); font-weight: 600; color: #fff; display: -webkit-flex; display: flex; justify-content: center; align-items: center; border-radius: 6px;}

.btn-more {display: -webkit-flex; display: flex; justify-content: start; align-items: center; gap: 10px; font-weight: 600; font-size: 1rem; color: #fff;}
.btn-more i {font-size: 0.75rem;}

.btn-plus {display: -webkit-flex; display: flex; justify-content: center; align-items: center; font-size: 1.25rem; color: var(--highlight); transform: rotate(0); transition: transform .5s;}
/* .btn-plus:hover {transform: rotate(180deg);} */

.swiper-wrap {position: relative;}

.sub-page {padding-top: 40px; padding-bottom: 80px;}
.sub-page-info {padding-bottom: 20px; border-bottom: 2px solid var(--dark);}
.sub-page-info .text2 {margin-top: 12px;}

.board-cate-wrap {overflow-x: auto; overflow-y: hidden; display: -webkit-flex; display: flex; justify-content: safe center; align-items: safe center;}
.board-cate-wrap::-webkit-scrollbar {display: none;}
.ul-board-cate {display: -webkit-flex; display: flex; justify-content: center; align-items: center; column-gap: 10px; margin-top: 40px; margin-bottom: 20px;}
.ul-board-cate .cate {min-height: 36px; padding: 0px 12px; display: flex; justify-content: center; align-items: center; border-radius: 999px; border: var(--border-solid); font-weight: 400; font-size: 0.875rem; text-align: center; white-space: nowrap;}
.ul-board-cate .cate.on {font-weight: 655; border-color: var(--sky-blue); background: var(--sky-blue); color: #fff;}

.sub-page-info + .board-list-top {margin-top: 15px;}
.board-list-top {display: -webkit-flex; display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;}
.ul-filter {display: -webkit-flex; display: flex; justify-content: start; align-items: center; flex-wrap: wrap; gap: 16px;}
.ul-filter .item {display: -webkit-flex; display: flex; justify-content: start; align-items: center; gap: 6px;}
.ul-filter .item::before {display: inline-block; content: ''; width: 4px; height: 4px; border-radius: 50%; background-color: var(--primary);}
.ul-filter .item.on::before {width: 11.201px; height: 8px; border-radius: 0; background-color: transparent; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.201' height='8' viewBox='0 0 11.201 8'%3E%3Cpath d='M10.966,96.245a.8.8,0,0,1,0,1.13l-6.4,6.4a.8.8,0,0,1-1.13,0l-3.2-3.2a.8.8,0,1,1,1.132-1.13l2.612,2.633,5.858-5.833a.8.8,0,0,1,1.13,0Z' transform='translate(0 -96.01)' fill='%239F61FF'/%3E%3C/svg%3E");}
.ul-filter .item a {font-weight: 300; font-size: 0.875rem; color: var(--primary);}

.tag-area {display: -webkit-flex; display: flex; justify-content: start; align-items: center; flex-wrap: wrap; gap: 6px;}
.tag {padding: 2px 4px; border-radius: 3px; font-weight: 500; font-size: 0.938rem; color: #FFF; text-align: center;}
.tag.offline {background: #29B56A;}
.tag.online {background: #FFC648;}
.tag.regular {background: #0039B7;}
.tag.full-time {background: #D64A95;}

.btn-list, .study-btn1 {display: -webkit-flex; display: flex; justify-content: center; align-items: center; gap: 8px; width: -moz-fit-content; width: -webkit-fit-content; width: fit-content; padding: 10px 20px; border-radius: 6px; background: var(--dark); font-weight: 600; font-size: 1.125rem; color: #fff; margin: 0 auto; transition: background .2s ease-in-out;}
.btn-area :is(.btn-list, .study-btn1) {margin: 0;}
:is(.btn-list, .study-btn1) i {font-size: 0.938rem;}

.btn-list:hover, 
.study-btn1:hover {background-color: var(--highlight);}

.blank-content {padding: 80px 0; text-align: center;}

/* 가격표 */
.price {font-family: "Pretendard Variable", Pretendard, sans-serif;}
.consumer-price, 
.selling-price {white-space: nowrap;}
.discount-rate, 
.price-num {font-family: "Gmarket Sans", sans-serif; white-space: nowrap;}





/* Safari 14.1 이전 버전 */
@supports not (inset: 0){
    input[type=checkbox] + label::before {margin-right: 10px;}
    .btn-more i {margin-left: 10px;}
    .ul-board-cate .item {margin-right: 26px;}
    .ul-board-cate .item:last-child {margin-right: 0;}
    .ul-filter .item {margin-right: 16px;}
    .ul-filter .item::before {margin-right: 6px;}
    .tag-area .tag {margin-right: 6px;}
    .tag-area .tag:last-child {margin-right: 0;}
    .btn-list i {margin-right: 8px;}
}



@media screen and (max-width:1200px){
    :root {
        --inner-padding: 0 36px;
        --inner-padding-l: 36px;
        --inner-padding-r: 36px;
        --gap: 24px;
    }

    .sub-page {padding-left: var(--inner-padding-l); padding-right: var(--inner-padding-r);}
}

@media screen and (min-width:993px){
    .popup {min-width: 900px;}

    .board-list-top .search-box2 {width: calc((100% - 90px)/4);}
}

@media screen and (max-width:992px){
    input, select {height: 35px; line-height: 35px;}

    .btn-search {width: 35px; height: 35px;}

    .popup {min-width: calc(100% - 100px);}

    .btn1 {padding: 10px 24px}
    .btn2 {padding: 8px 16px;}
    .btn3 {height: 35px; padding: 0 24px;}

    .sub-page {padding-bottom: 70px;}
    .sub-page-info {padding-bottom: 8px;}
    .ul-board-cate {column-gap: 20px; margin-top: 24px;}
    .ul-filter {gap: 14px;}
    .board-list-top .search-box2 {width: calc((100% - 54px)/4);}

    .blank-content {padding: 60px 0;}

    /* Safari 14.1 이전 버전 */
    @supports not (inset: 0){
        .ul-board-cate .item {margin-right: 20px;}
        .ul-board-cate .item:last-child {margin-right: 0;}
        .ul-filter .item {margin-right: 14px;}
        .ul-filter .item:last-child {margin-right: 0;}
    }
}

@media screen and (max-width:768px){
    :root {
        --inner-padding: 0 32px;
        --inner-padding-l: 32px;
        --inner-padding-r: 32px;
        --gap: 22px;
    }

    .board-list-top .search-box2 {width: calc((100% - 18px)/2);}
}

@media screen and (max-width:480px){
    :root {
        --inner-padding: 0 20px;
        --inner-padding-l: 20px;
        --inner-padding-r: 20px;
        --gap: 16px;
    }

    input, select {height: 30px; line-height: 30px;}
    input[type='text'],input[type='password'],input[type='search'],input[type='date'],input[type='email'],input[type='tel'], select {padding: 0 10px;}
    textarea {padding: 20px 10px;}
    select {background-position: calc(100% - 10px) center, center; padding-right: 34px;}

    .btn-search {width: 30px; height: 30px;}
    
    .popup {min-width: calc(100% - 32px);}

    .btn1 {padding: 8px 22px}
    .btn2 {padding: 7px 15px;}
    .btn3 {height: 30px; padding: 0 22px;}

    .sub-page {padding-top: 26px; padding-bottom: 54px;}
    .sub-page-info {padding-bottom: 6px;}
    .ul-board-cate {column-gap: 16px; margin-top: 16px;}
    .board-list-top {align-items: start; flex-direction: column-reverse; gap: 10px;}
    .board-list-top .search-box2 {width: 100%;}

    .blank-content {padding: 40px 0;}

    /* Safari 14.1 이전 버전 */
    @supports not (inset: 0){
        .ul-board-cate .item {margin-right: 16px;}
        .ul-board-cate .item:last-child {margin-right: 0;}
        .board-list-top .search-box2 {margin-bottom: 10px;}
    }
}