@charset "utf-8";

@import url('base.css');

/* --------------------------------------------
 * layout
/* ------------------------------------------ */
.mbg {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10;
}
body.ovf_hdn,
.ovf_hdn {
    overflow: hidden;
    height: 100%;
    -ms-touch-action: none;
    touch-action: none;
    -webkit-overflow-scrolling: none;
    overflow: hidden;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
}

#wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffcb3d;
    display: flex;
    flex-direction: column;
    z-index: 2;
    transition: all 0.2s ease-in-out;
}
#header .hd-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    height: 50px;
    margin: 0 auto;
}
#header .hd-top .hd-top-lnk {
    display: flex;
    height: 50px;
    align-items: center;
}
#header .hd-top .hd-top-lnk a {
    color: #000;
}
#header .hd-top .hd-top-lnk a + a {
    margin-left: 50px;
}
#header .hd-top .hd-top-lnk a:first-child {
    font-weight: 600;
}
#header .hd-top .hd-top-sch {
    position: relative;
    height: 36px;
    width: 244px;
}
#header .hd-top .hd-top-sch .inp {
    border-radius: 30px;
    border: #d9d9d9 1px solid;
    line-height: 36px;
    padding-right: 50px;
    background-color: #fff;
    height: 36px;
    width: 100%;
    color: #111;
}
#header .hd-top .hd-top-sch .inp::-webkit-input-placeholder {
    color: #999;
    font-size: 14px;
}
#header .hd-top .hd-top-sch .inp:-ms-input-placeholder {
    color: #999;
    font-size: 14px;
}
#header .hd-top .hd-top-sch .sch {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: block;
    text-indent: -9999px;
    background: url(../images/search.svg) no-repeat 50% 50% / 24px;
    fill: #000;
}
#header .hd-top .hd-top-utill {
    display: flex;
    align-items: center;
    height: 50px;
    font-size: 14px;
}
#header .hd-top .hd-top-utill a {
    color: rgba(0, 0, 0, 0.9);
}
#header .hd-top .hd-top-utill a + a {
    margin-left: 30px;
}
#header .hd-top .hd-top-utill a:hover {
    text-decoration: underline;
}
#header .logo {
    width: 216px;
}
#header .logo a {
    display: block;
    height: 45px;
    background: url(../images/logo.png) no-repeat 50% 50% / 100% auto;
    text-indent: -9999px;
}
#header .inner {
    position: relative;
    z-index: 2;
    background: #fff;
    border-bottom: #d9d9d9 1px solid;
}
#header .inner::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e5e5e5;
    display: block;
}
#header .subBg {
    position: absolute;
    top: 140px;
    left: 0;
    width: 100%;
    height: 330px;
    z-index: 1;
    background-color: #fff;
    box-shadow: 10px 0 34px rgba(0, 0, 0, 0.1);
    display: none;
}

#gnbWrap {
    max-width: 1200px;
    height: 90px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    z-index: 2;
}
#gnb {
    display: flex;
    justify-content: flex-end;
}
#gnb a {
    display: block;
    line-height: 1.2;
}
#gnb > li {
    position: relative;
    padding: 0 45px;
}
#gnb > li:last-child {
    padding-right: 0;
}
#gnb > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background-color: #0039c8;
    display: block;
    opacity: 0;
    transition: all 0.2s ease-in-out;
}
#gnb > li.active > a::after {
    opacity: 1;
    left: 0;
    width: 100%;
}
#gnb > li > a {
    position: relative;
    font-size: 22px;
    height: 90px;
    line-height: 90px;
    padding: 0;
    font-weight: 600;
    color: #000;
}
#gnb > li .subDepth {
    display: none;
    position: absolute;
    top: 88px;
    width: 100%;
    padding: 28px 0 0 0;
    height: 330px;
}
#gnb > li .subDepth > li > a {
    display: block;
    color: #000;
    font-size: 18px;
    padding: 12px 0;
    line-height: 1;
    white-space: nowrap;
}
#gnb > li .subDepth > li > a:hover {
    text-decoration: underline;
    color: #0039c8;
}

.nav-up.fixed #header {
    top: -50px;
}
.nav-up.fixed #header .logo a {
    height: 40px;
    background-size: auto 40px;
    background-position: 0 50%;
}
.nav-up.fixed #gnbWrap {
    height: 60px;
}
.nav-up.fixed .locationBar {
    top: 60px;
}

.nav-up.fixed #gnb > li > a {
    height: 60px;
    line-height: 60px;
}
.nav-up.fixed #gnb > li .subDepth {
    top: 58px;
}
.nav-up.fixed #header .subBg {
    top: 110px;
}

#container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1640px;
    min-height: 1200px;
    margin: 0 auto;
    padding: 280px 20px 0;
    box-sizing: border-box;
}
#indexWrap {
    position: relative;
    z-index: 1;
    background-color: #f9f9f9;
}
#contents {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px 170px;
    box-sizing: border-box;
}

.locationBar {
    position: fixed;
    top: 140px;
    left: 0;
    width: 100%;
    background-color: #f9f9f9;
    border-bottom: #e9e9e9 1px solid;
    z-index: 2;
}
.locationBar .inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
}
.locationBar .h {
    height: 40px;
    width: 40px;
    text-indent: -9999px;
    background: url(../images/home.svg) no-repeat 50% 50% / 16px;
    border-right: #e9e9e9 1px solid;
}
.locationBar .location {
    display: block;
    position: relative;
    border-right: #e9e9e9 1px solid;
    width: 198px;
}
.locationBar .location .bt {
    position: relative;
    padding: 0 40px 0 20px;
    display: block;
    height: 40px;
    line-height: 40px;
    font-size: 13px;
    color: #666;
    white-space: nowrap;
}
.locationBar .location .bt::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 6px;
    height: 6px;
    margin-top: -2px;
    border-top: #666 1px solid;
    border-right: #666 1px solid;
    transform: rotate(135deg);
    transition: all 0.2s ease-in-out;
}
.locationBar .location.active .bt::after {
    transform: rotate(-45deg);
}
.locationBar .location ul {
    position: absolute;
    top: 40px;
    left: -1px;
    width: calc(100% + 2px);
    border: #e9e9e9 1px solid;
    background-color: #f9f9f9;
    padding-top: 10px;
    display: none;
}
.locationBar .location ul a {
    display: block;
    line-height: 34px;
    padding: 0 20px;
    font-size: 13px;
}
.locationBar .location ul a:hover {
    background-color: #ededed;
}

#snb {
    position: absolute;
    top: 284px;
    left: 0;
    width: 220px;
}
#snb .h2-tit {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}
#lm {
    margin: 20px 0 0 0;
    border-top: #000 2px solid;
}
#lm > li {
    border-bottom: #a3a3a3 1px solid;
}
#lm > li a {
    line-height: 46px;
    padding: 0 15px;
    display: block;
    color: #222;
}
#lm > li a:hover {
    background-color: #f1f1f1;
}
#lm > li.active a {
    background-color: #ffedbb;
    font-weight: 600;
}

.quick {
    position: fixed;
    top: 330px;
    left: 50%;
    margin-left: 600px;
    width: 88px;
    z-index: 9;
    transition: all 0.2s ease-in-out;
}
.quick .tit {
    font-size: 13px;
    color: #fff;
    text-align: center;
    line-height: 38px;
    background-color: #57608d;
    border-radius: 10px 10px 0 0;
    transition: all 0.2s ease-in-out;
}
.quick ul {
    display: flex;
    flex-direction: column;
    border: #99b0e9 1px solid;
    border-radius: 0 0 10px 10px;
    background-color: #fff;
}
.quick ul a {
    padding: 10px 10px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
}
.quick ul a::before {
    content: '';
    width: 24px;
    height: 24px;
    margin-bottom: 6px;
    background-size: 24px;
    background-repeat: no-repeat;
}
.quick ul li + li {
    border-top: #99b0e9 1px solid;
}
.quick ul li:nth-child(1) a::before {
    background-image: url(../images/ic_quick1.svg);
}
.quick ul li:nth-child(2) a::before {
    background-image: url(../images/ic_quick2.svg);
}
.quick ul li:nth-child(3) a::before {
    background-image: url(../images/ic_quick3.svg);
}
.quick ul li:nth-child(4) a::before {
    background-image: url(../images/ic_quick4.svg);
}
.quick ul li:nth-child(5) a::before {
    background-image: url(../images/ic_quick5.svg);
}
.quick .bt-top {
    width: 24px;
    height: 24px;
    background: url(../images/ic_top.svg) no-repeat 50% 50% / 24px;
    display: block;
    margin: 20px auto 0;
}
.nav-up .quick {
    top: 140px;
}
.quick.active .tit {
    border-radius: 10px;
}
.quick.active .bt-top {
    transform: rotate(180deg);
}

footer {
    background-color: #525252;
    padding: 100px 0 95px;
    color: #fff;
    font-size: 15px;
}
footer .inner {
    max-width: 1200px;
    margin: 0 auto;
}
footer .f-wr {
    display: flex;
    align-items: center;
}
footer .f-wr .logo {
    width: 139px;
    height: 38px;
    background: url(../images/f_logo.png) no-repeat 50% 50% / 100% auto;
}
footer .f-wr .f-lnk {
    display: flex;
    margin-left: 60px;
}
footer .f-wr .f-lnk a {
    color: #fff;
    opacity: 0.6;
}
footer .f-wr .f-lnk a + a {
    margin-left: 40px;
}
footer .f-wr .f-lnk a:first-child {
    opacity: 1;
}
footer .f-wr .f-lnk a:hover {
    text-decoration: underline;
}
footer .f-wr .f-fam {
    position: relative;
    width: 222px;
    margin-left: auto;
    height: 46px;
    z-index: 2;
}
footer .f-wr .f-fam .bt {
    position: relative;
    display: block;
    height: 44px;
    line-height: 44px;
    padding: 0 30px 0 10px;
    color: #fff;
    border: #fff 1px solid;
}
footer .f-wr .f-fam .bt::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -2px;
    width: 5px;
    height: 5px;
    display: block;
    border-top: #fff 1px solid;
    border-right: #fff 1px solid;
    transform: rotate(135deg);
}
footer .f-wr .f-fam .bt.active::after {
    transform: rotate(-45deg);
}
footer .f-wr .f-fam ul {
    position: absolute;
    bottom: 44px;
    left: 0;
    width: 100%;
    background-color: #fff;
    display: none;
}
footer .f-wr .f-fam ul a {
    line-height: 30px;
    display: block;
    padding: 0 20px;
}
footer .f-wr .f-fam ul a:hover {
    background-color: #e1e1e1;
}
footer address {
    margin: 40px 0 0 0;
    display: flex;
    font-size: 14px;
}
footer address p + p {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
}
footer address p + p::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 10px;
    background-color: #ccc;
    display: block;
    margin-top: -5px;
}

#btTop {
    margin-bottom: auto;
    width: 46px;
    height: 52px;
    background: url(../images/bt_top.png) 50% 50% no-repeat;
    z-index: 4;
}

.sub-tit {
    font-size: 40px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 50px;
}
.page-tit {
    margin: 40px 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.page-tit .tit {
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    color: #000;
}
.page-tit.sm {
    margin-bottom: 20px;
}
.page-tit.sm .tit {
    font-size: 16px;
}

.pop-wr {
    background-color: #fff;
    display: none;
}
.pop-wr.pop-sm {
    width: 480px;
}
.pop-wr .pop-hd {
    padding: 0 30px;
    font-size: 20px;
    font-weight: 700;
    height: 78px;
    display: flex;
    align-items: center;
    color: #fff;
    background: #0039c8;
}
.pop-wr .pop-con {
    padding: 45px;
}
.pop-wr .pop-bt {
    margin: 45px 0 0 0;
    display: flex;
    justify-content: center;
}
.pop-wr .pop-bt > * + * {
    margin-left: 10px;
}
.pop-wr .alert-bx {
    padding: 25px 0 0 0;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}
.pop-wr .pop-close {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 27px;
    right: 30px;
}
.pop-wr .pop-close i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background-color: #fff;
    display: block;
    margin: -1px 0 0 -7px;
    transform: rotate(45deg);
}
.pop-wr .pop-close i + i {
    transform: rotate(-45deg);
}

/* 수강신청 */
.date-hd {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 30px;
}
.date-hd .date-tx {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0 40px;
}
.date-hd button {
    position: relative;
    width: 18px;
    height: 18px;
    display: inline-block;
    border: #000 1px solid;
    border-radius: 50%;
}
.date-hd button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(45deg);
    margin: -3px 0 0 -4px;
    width: 6px;
    height: 6px;
    display: inline-block;
    border-top: #000 1px solid;
    border-right: #000 1px solid;
}
.date-hd button.prev::after {
    transform: rotate(-135deg);
    margin: -3px 0 0 -2px;
}
.date-hd button:hover {
    background-color: #000;
}
.date-hd button:hover::after {
    border-color: #fff;
}

.study-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    align-items: center;
    justify-items: center;
}
.study-list .study-itm {
    width: 333px;
    margin-top: 50px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.15s ease-in-out;
    overflow: hidden;
    background: #fff;
}
.study-list .study-itm:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    border-color: rgba(0, 0, 0, 0.16);
}
.study-list .study-itm:nth-child(3n + 1) {
    margin-left: 0;
}
.study-list .study-itm .thumb img {
    display: block;
    width: 100%;
    /* height: 200px; */
    height: 187px;
    object-fit: cover;
    object-position: center;
}
.study-list .study-itm .info {
    padding: 20px 14px;
    /* border-left: #d9d9d9 1px solid;
    border-right: #d9d9d9 1px solid; */
}
.study-list .study-itm .subject {
    color: #000;
    font-weight: 700;
    margin: 15px 0 0 0;
}
.study-list .study-itm ul {
    margin: 10px 0 0 0;
}
.study-list .study-itm ul > li {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
}
.study-list .study-itm ul > li span {
    display: flex;
    align-items: center;
    width: 74px;
}
.study-list .study-itm ul > li span::before {
    content: '';
    width: 4px;
    height: 4px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #222;
}
.study-list .study-itm .btn {
    width: 100%;
    display: block;
    height: 54px;
    line-height: 52px;
}

.study-sch {
    margin: 30px 0 50px;
}
.study-sch .tit {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
}
.study-sch .tit::before {
    content: '';
    width: 16px;
    height: 16px;
    margin-right: 6px;
    background: url(../images/ic_settings.svg) no-repeat 50% 50% / 16px;
}
.study-sch .study-sch-bd {
    border: #d2d2d2 1px solid;
}
.study-sch .study-sch-bd .depth1 {
    display: flex;
    align-items: center;
    border-bottom: #d2d2d2 1px solid;
}
.study-sch .study-sch-bd .depth1 a {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    height: 46px;
    padding: 0 20px;
    color: #000;
    font-size: 14px;
    font-weight: 700;
}
.study-sch .study-sch-bd .depth1 a + a {
    border-left: #d2d2d2 1px solid;
}
.study-sch .study-sch-bd .depth1 a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    background-image: url('../images/ic_select.svg');
    background-position: 50% center;
    background-size: 24px auto;
    background-repeat: no-repeat;
}
.study-sch .study-sch-bd .depth2 {
    padding: 15px 20px;
    font-size: 14px;
}
.study-sch .study-sch-bd .depth2 label + label {
    margin-left: 30px;
}
.study-sch .sch-bx {
    position: relative;
    width: 400px;
    margin: 30px auto 0;
}
.study-sch .sch-bx .keyword {
    height: 54px;
    background-color: #f9f9f9;
    padding-right: 60px;
    border: #d9d9d9 1px solid;
    border-radius: 30px;
    font-size: 20px;
    width: 100%;
}
.study-sch .sch-bx .sch {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    display: block;
    right: 10px;
    margin-top: -25px;
    background: url(../images/search_g.svg) no-repeat 50% 50% / 24px;
}

.study-wr {
    display: flex;
    padding: 30px;
    background-color: #fafafa;
}
.study-wr .thumbBx {
    width: 333px;
    margin-right: 35px;
}
.study-wr .thumbBx .thumb img {
    display: block;
    width: 333px;
    height: 200px;
    object-fit: cover;
    object-position: center;
}
.study-wr .thumbBx .btn-box {
    margin-top: 24px;
}
.study-wr .info {
    flex: 1;
    padding: 15px 0 0 0;
    font-size: 14px;
}
.study-wr .info .subject {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}
.study-wr .study-tx1 {
    display: flex;
    margin: 30px 0 0 0;
}
.study-wr .study-tx1-1 {
    width: 250px;
}
.study-wr .study-tx1-1 li {
    display: flex;
    align-items: center;
}
.study-wr .study-tx1-1 li span {
    width: 85px;
    font-weight: 600;
}
.study-wr .study-tx1-1 li + li {
    margin-top: 10px;
}
.study-wr .study-tx1-2 {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    padding-left: 40px;
    border-left: #d9d9d9 1px solid;
}
.study-wr .study-tx1-2 li {
    width: 50%;
    display: flex;
    align-items: center;
}
.study-wr .study-tx1-2 li span {
    width: 85px;
    font-weight: 600;
}
.study-wr .study-tx2 {
    margin: 40px 0 0 0;
}
.study-wr .study-tx2 li {
    display: flex;
    align-items: center;
}
.study-wr .study-tx2 li .t-tx {
    font-weight: 600;
    display: flex;
    align-items: center;
    width: 115px;
}
.study-wr .study-tx2 li .t-tx::before {
    content: '';
    width: 4px;
    height: 4px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #222;
}
.study-wr .study-tx2 li .c-tx {
    flex: 1;
}
.study-wr .study-tx2.study-tx3 {
    margin: 30px 0 0 0;
}
.study-wr .study-tx2.study-tx3 .t-tx {
    width: 130px;
}
.study-wr .info .btn-box {
    margin-top: 40px;
}

.complet-wr {
    text-align: center;
    position: relative;
    margin: 150px 0 0 0;
}
.complet-wr::before {
    content: '';
    width: 124px;
    height: 124px;
    background: url(../images/ic_myclass.svg) no-repeat 50% 50% / 124px;
    display: block;
    margin: 0 auto 90px;
}
.complet-wr b {
    display: block;
    font-size: 36px;
    color: #000;
    font-weight: 500;
    margin-bottom: 20px;
}

.study-process {
    display: flex;
    align-items: center;
    justify-content: center;
}
.study-process li {
    color: #888;
    font-size: 20px;
    font-weight: 500;
    height: 54px;
    width: 174px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    border-radius: 30px;
    border: #888 2px solid;
}
.study-process li.on {
    background-color: #333;
    border-color: #333;
    color: #fff;
}
.study-process li + li {
    margin-left: 20px;
}

.study-grp {
    background-color: #fafafa;
    border: rgba(0, 0, 0, 0.05) 1px solid;
}
.study-grp .itm {
    padding: 30px;
    display: flex;
}
.study-grp .itm + .itm {
    border-top: rgba(0, 0, 0, 0.05) 1px solid;
}
.study-grp .itm .step {
    width: 134px;
    height: 38px;
    background-color: rgba(0, 57, 200, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border-radius: 3px;
}
.study-grp .itm:nth-child(2) .step {
    background-color: rgba(0, 57, 200, 0.4);
}
.study-grp .itm:nth-child(3) .step {
    background-color: rgba(0, 57, 200, 0.5);
}
.study-grp .itm:nth-child(4) .step {
    background-color: rgba(0, 57, 200, 0.7);
}
.study-grp .itm:nth-child(5) .step {
    background-color: rgba(0, 57, 200, 0.8);
}
.study-grp .itm:nth-child(6) .step {
    background-color: rgba(0, 57, 200, 1);
}
.study-grp .itm .txt {
    color: #000;
    font-weight: 700;
    font-size: 18px;
}
.study-grp .itm .txt .btn {
    margin-left: 30px;
}
.study-grp .itm .txt ul li {
    font-weight: 500;
}

/* 나의 강의실 */
.myclass-wr {
    padding: 25px 15px;
    background-color: #fafafa;
    margin: 0 0 20px 0;
}
.myclass-wr .myclass-hd {
    font-weight: 700;
    font-size: 22px;
    color: #000;
    display: flex;
    align-items: center;
}
.myclass-wr .myclass-hd span {
    color: #0039c8;
    height: 34px;
    padding: 0 15px;
    font-size: 15px;
    font-weight: 500;
    margin-right: 10px;
    display: inline-block;
    line-height: 32px;
    border: #0039c8 1px solid;
    border-radius: 30px;
}
.myclass-wr .myclass-hd b {
    flex: 1;
}
.myclass-wr .myclass-bd {
    margin: 25px 0 0 0;
    display: flex;
}
.myclass-wr .myclass-bd .thumb {
    width: 333px;
    margin-right: 40px;
}
.myclass-wr .myclass-bd .thumb img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}
.myclass-wr .myclass-bd .info {
    flex: 1;
}
.myclass-wr .myclass-bd .info ul > li {
    display: flex;
    font-size: 14px;
}
.myclass-wr .myclass-bd .info ul > li + li {
    margin-top: 14px;
}
.myclass-wr .myclass-bd .info ul > li .t-tx {
    font-weight: 600;
    display: flex;
    align-items: center;
    width: 115px;
}
.myclass-wr .myclass-bd .info ul > li .t-tx::before {
    content: '';
    width: 4px;
    height: 4px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #222;
}
.myclass-wr .myclass-bd .info ul > li .c-tx {
    flex: 1;
}
.myclass-wr .myclass-bd .btn-box {
    margin-top: 30px;
}

.bar-chart {
    position: relative;
    display: flex;
    align-items: center;
}
.bar-chart .bar {
    width: 300px;
    position: relative;
    height: 14px;
    background-color: #e0e0e0;
    border-radius: 10px;
    font-size: 13px;
    overflow: hidden;
    margin-right: 15px;
}
.bar-chart .bar > span {
    position: absolute;
    top: 0;
    left: 0;
    height: 14px;
    background-color: #ff7e76;
    border-radius: 10px;
}
.bar-chart .bar-tx {
    display: flex;
    align-items: center;
}
.bar-chart .bar-tx b {
    color: #c8362d;
    font-size: 19px;
    margin-right: 10px;
}

.class-state {
    display: inline-flex;
    align-items: center;
    color: #0039c8;
    font-size: 14px;
    font-weight: 700;
}
.class-state i {
    position: relative;
    width: 20px;
    height: 20px;
    border: #0039c8 1px solid;
    border-radius: 50%;
    margin-right: 10px;
}
.class-state i::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 5px;
    margin: -4px 0 0 -4px;
    border-left: #0039c8 1px solid;
    border-bottom: #0039c8 1px solid;
    transform: rotate(-45deg);
}
.class-state.on i {
    background-color: #0039c8;
}
.class-state.on i::after {
    border-color: #fff;
}

.poll-wr {
    border: #d9d9d9 1px solid;
}
.poll-wr .poll-q {
    background-color: #f7f7f7;
    padding: 25px 20px;
}
.poll-wr .poll-a {
    border-top: #d9d9d9 1px solid;
    padding: 20px;
}
.poll-wr .poll-a + .poll-q {
    border-top: #d9d9d9 1px solid;
}
.poll-wr .poll-a.inline li {
    display: inline-block;
    margin-right: 40px;
}

.myclass-cancel {
    background-color: #fafafa;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.myclass-cancel::before {
    content: '';
    width: 124px;
    height: 124px;
    background: url(../images/ic_myclass.svg) no-repeat 50% 50% / 124px;
    display: block;
    margin: 0 auto 45px;
}
.myclass-cancel ul > li {
    text-indent: -15px;
    padding-left: 15px;
}
.myclass-cancel ul > li::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #888;
    margin-right: 10px;
    vertical-align: 3px;
}

/* customer */
.tbl-hd {
    position: relative;
    display: flex;
    align-items: end;
    font-weight: 500;
    margin: 0 0 15px 0;
}
.tbl-hd .tbl-sch {
    display: flex;
    margin-left: auto;
}
.tbl-hd .tbl-sch .select {
    width: 140px;
}
.tbl-hd .sch-bx {
    position: relative;
    margin-left: 20px;
    width: 415px;
}
.tbl-hd .sch-bx .inp {
    height: 60px;
    line-height: 58px;
    width: 100%;
    padding-right: 70px;
}
.tbl-hd .sch-bx .sch {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: url(../images/search_g.svg) no-repeat 50% 50% / 24px;
}
.tbl-hd .right {
    margin-left: auto;
}
.tbl-hd .dv-select {
    position: relative;
    margin-left: auto;
}
.dv-select .bt {
    height: 40px;
    display: flex;
    align-items: center;
    width: 70px;
}
.dv-select .bt::after {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url('../images/ic_select.svg');
    background-position: 100% center;
    background-size: 24px auto;
    background-repeat: no-repeat;
}
.dv-select.active .bt::after {
    transform: rotate(180deg);
}
.dv-select ul {
    position: absolute;
    top: 38px;
    left: 0;
    border: 1px solid #d9d9d9;
    width: 100%;
    background-color: #fff;
    padding: 10px 5px;
    font-size: 14px;
    display: none;
}

table.list {
    border-top: #222 2px solid;
    border-bottom: #d9d9d9 1px solid;
}
table.list thead th {
    font-weight: 700;
    color: #000;
    text-align: center;
    padding: 12px 0;
    background-color: #f7f7f7;
    border-left: #d9d9d9 1px solid;
    border-bottom: #d9d9d9 1px solid;
}
table.list tbody tr {
    border-bottom: #d9d9d9 1px solid;
}
table.list tbody tr:hover {
    background-color: #f9f9f9;
}
table.list tbody tr:last-child {
    border-bottom: none;
}
table.list tbody td {
    font-size: 14px;
    text-align: center;
    padding: 14px 14px;
    border-left: #d9d9d9 1px solid;
}
table.list tbody td.subject {
    text-align: left;
    padding: 14px 20px;
}
table.list tbody td.subject a {
    font-weight: 600;
    color: #000;
}
table.list tbody td.subject a:hover {
    text-decoration: underline;
}
table.list tbody td.subject .file {
    display: inline-block;
    vertical-align: -4px;
}
table.list .noBrd-l {
    border-left: none;
}
table.list.brd {
    border-top: #d9d9d9 1px solid;
    border-bottom: #d9d9d9 1px solid;
    border-right: #d9d9d9 1px solid;
}

table.view {
    border-top: #d9d9d9 1px solid;
    border-right: #d9d9d9 1px solid;
    border-bottom: #d9d9d9 1px solid;
    table-layout: fixed;
}
table.view tbody tr {
    border-bottom: #d9d9d9 1px solid;
}
table.view tbody th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 500;
    color: #000;
    border-left: #d9d9d9 1px solid;
    background-color: #f7f7f7;
}
table.view tbody td {
    padding: 18px 20px;
    text-align: left;
    font-weight: 500;
    color: #000;
    border-left: #d9d9d9 1px solid;
}
table.view.line {
    border-top: #222 2px solid;
    border-right: none;
    border-bottom: #222 1px solid;
}
table.view.line tbody tr:last-child {
    border-bottom: none;
}
table.view .noBrd-l {
    border-left: none;
}

.tbl-view {
    border-top: #222 2px solid;
    border-bottom: #222 1px solid;
}
.tbl-view .view-hd {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    border-bottom: #222 2px solid;
    background-color: #f7f7f7;
}
.tbl-view .view-hd .subject {
    font-weight: 700;
    color: #000;
    flex: 1;
}
.tbl-view .view-hd .date {
    width: 100px;
    text-align: right;
}
.tbl-view .view-bd {
    padding: 50px 20px;
    border-bottom: #d9d9d9 1px solid;
}

.dv-file {
    font-size: 15px;
}
.dv-file > li {
    display: flex;
    border-bottom: #d9d9d9 1px solid;
}
.dv-file > li span {
    width: 120px;
    padding: 14px 0;
    text-align: center;
    border-right: #d9d9d9 1px solid;
    color: #000;
    font-weight: 500;
}
.dv-file > li a {
    padding: 14px 20px;
    font-weight: 600;
    color: #000;
}
.dv-file > li a:hover {
    text-decoration: underline;
}
.dv-file > li .file {
    display: inline-block;
    vertical-align: -4px;
}

.viewBottomList ul {
    display: block;
    width: 100%;
}
.viewBottomList ul li {
    display: flex;
}
.viewBottomList .viewBottomPrev,
.viewBottomList .viewBottomNext {
    padding: 0;
}
.viewBottomList .viewBottomPrev {
    border-bottom: #d9d9d9 1px solid;
}
.viewBottomList .orderPrev,
.viewBottomList .orderNext {
    background-color: #f7f7f7;
    padding: 14px 0;
    text-align: center;
    width: 120px;
    color: #000;
    font-weight: 500;
    border-right: #d9d9d9 1px solid;
}
.viewBottomList a {
    color: #666;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    white-space: nowrap;
    flex: 1;
    padding: 14px 20px;
}
.viewBottomList .viewBottomPrev:hover a,
.viewBottomList .viewBottomNext:hover a {
    text-decoration: underline;
}

.lice-wr {
    margin: 50px 0 0 0;
}
.lice-wr .lice-tit {
    font-weight: 600;
    color: #000;
    margin: 0 0 20px 0;
}
.lice-wr .lice-bx {
    position: relative;
}
.lice-wr .lice-bx .itm {
    position: relative;
    display: flex;
    margin-bottom: 20px;
    padding: 0 44px 0 0;
}
.lice-wr .lice-bx .itm .inp {
    margin-right: 20px;
}
.lice-wr .lice-bx .itm strong {
    width: 96px;
    text-align: center;
    font-weight: 500;
    color: #000;
}
.lice-wr .lice-bx .itm .date-bx {
    flex: 1;
    display: flex;
    align-items: center;
}
.lice-wr .lice-bx .itm .date-bx .inp {
    width: calc(100% - 96px);
}
.lice-wr .lice-bx .itm .bt-del {
    position: absolute;
    width: 20px;
    height: 20px;
    border: #9e9e9e 1px solid;
    border-radius: 50%;
    display: block;
    top: 50%;
    right: 0;
    margin-top: -10px;
}
.lice-wr .lice-bx .itm .bt-del::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0 0 0 -4px;
    width: 8px;
    height: 1px;
    background-color: #9e9e9e;
    display: block;
}

/* member */
.login-wr {
    margin: 0 auto;
    width: 470px;
    padding: 50px 0 0 0;
}
.login-wr .tit {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 40px;
}
.login-form .inp {
    position: relative;
    height: 60px;
    border: #d9d9d9 1px solid;
    padding: 0 20px 0 54px;
    display: block;
    width: 100%;
}
.login-form .inp + .inp {
    margin-top: -1px;
}
.login-form .inp.mail {
    background: url(../images/user.svg) no-repeat 20px 50% / 24px;
}
.login-form .inp.pw {
    background: url(../images/password.svg) no-repeat 20px 50% / 24px;
}
.login-form .inp:focus {
    z-index: 2;
}
.login-form .dv-chk {
    margin: 20px 0 0 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #222;
    font-weight: 600;
}
.login-form .btn {
    margin-top: 40px;
    width: 100%;
}
.login-form .login-lnk {
    display: flex;
    justify-content: center;
    margin: 30px 0 0 0;
    width: 100%;
}
.login-form .login-lnk a {
    color: #666;
}
.login-form .login-lnk a + a {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
}
.login-form .login-lnk a + a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -7px;
    width: 1px;
    height: 14px;
    background-color: #9e9e9e;
}

.join-process > ul {
    display: flex;
    justify-content: center;
}
.join-process > ul > li {
    height: 54px;
    display: flex;
    align-items: center;
    background-color: #ebebeb;
    border-radius: 30px;
    font-size: 20px;
    color: #666;
    font-weight: 500;
    padding: 0 30px;
}
.join-process > ul > li + li {
    margin-left: 20px;
}
.join-process > ul > li i {
    background-color: #fff;
    font-size: 18px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    line-height: 32px;
    text-align: center;
    margin-right: 10px;
}
.join-process > ul > li.on {
    background-color: #0039c8;
    color: #fff;
}
.join-process > ul > li.on i {
    color: #0039c8;
}
.join-process > p {
    font-size: 20px;
    margin: 25px 0 0 0;
    text-align: center;
}
.bt-joinCert {
    margin: 90px auto 40px;
    width: 220px;
}
.bt-joinCert a {
    border: #d9d9d9 1px solid;
    border-radius: 10px;
    width: 220px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}
.bt-joinCert a::before {
    content: '';
    width: 50px;
    height: 50px;
    background: url(../images/ic_joincert.svg);
    margin-bottom: 10px;
}

.join-agr {
    nav-down: 20px 0 0 0;
}
.agr-hd {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.agr-bd {
    border: #d9d9d9 1px solid;
}
.agr-bd .itm a {
    display: flex;
    align-items: center;
}
.agr-bd .itm em {
    color: #0039c8;
    font-weight: 500;
    margin-right: 5px;
}
.agr-bd .itm {
    padding: 25px 35px;
    display: flex;
    align-items: center;
}
.agr-bd .itm + .itm {
    border-top: #d9d9d9 1px solid;
}
.agr-bd .itm input[type='checkbox'] {
    margin-right: 35px;
}
.agr-bd .itm-s {
    border-top: #d9d9d9 1px solid;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
}
.agr-bd .itm-s label + label {
    margin-left: 40px;
}
#popAgr .scroll-bx {
    height: 300px;
}

.join-info {
    margin: 50px 0 0 0;
}
.join-info .join-info-itm {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.join-info .join-info-grp {
    display: flex;
}
.join-info .join-info-itm + .join-info-itm,
.join-info .join-info-grp + .join-info-itm,
.join-info .join-info-grp + .join-info-grp,
.join-info .join-info-itm + .join-info-grp {
    margin-top: 50px;
}
.join-info .join-info-grp .join-info-itm + .join-info-itm {
    margin-top: 0;
    margin-left: 50px;
}
.join-info .join-info-itm .hd-tx {
    font-weight: 600;
}
.join-info .join-info-itm .bd-tx {
    margin: 20px 0 0 0;
    display: flex;
    align-items: center;
}
.join-info .join-info-itm.half {
    width: 525px;
    flex: auto;
}
.join-info .join-info-itm .bd-tx.email .tx-help {
    padding: 0 20px;
}
.join-info .join-info-itm .bd-tx.email .inp {
    flex: 1;
}
.join-info .join-info-itm .bd-tx.email .select {
    margin-left: 20px;
    width: 360px;
}
.join-info .join-info-itm .bd-tx.agr {
    background-color: #fafafa;
    padding: 30px;
    justify-content: center;
}
.join-info .join-info-itm .bd-tx.agr label + label {
    margin-left: 40px;
}
.join-info .inp {
    border-color: #d9d9d9;
    height: 60px;
    flex: 1;
}
.join-info .select {
    border-color: #d9d9d9;
    height: 60px;
    flex: 1;
}
.join-info .select + .select {
    margin-left: 50px;
}
.join-info .btn {
    height: 60px;
}
.join-info .inp + .btn {
    margin-left: 12px;
}
.join-info label {
    display: flex;
    align-items: center;
}
.join-info label + label {
    margin-left: 50px;
}
.join-info label input {
    margin-right: 5px;
}
.join-info .tx-warning {
    margin-top: 20px;
    color: #c8362d;
    padding: 0 10px;
    font-weight: 500;
}

.join-find > ul {
    border: #d9d9d9 1px solid;
    display: flex;
}
.join-find > ul > li {
    flex: 1;
}
.join-find > ul > li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 110px 40px;
    font-size: 24px;
    color: #000;
    font-weight: 600;
}
.join-find > ul > li span {
    margin: 20px 0 0 0;
    line-height: 1.2;
}
.join-find > ul > li + li {
    border-left: #d9d9d9 1px solid;
}
.join-find .txt {
    margin-top: 40px;
    font-size: 22px;
}

.join-find-inf {
    width: 750px;
    margin: 0 auto;
}
.join-find-inf .tit {
    text-align: center;
    margin: 0 0 20px 0;
}
.join-find-inf .tit i {
    display: block;
    text-align: center;
}
.join-find-inf .tit span {
    font-size: 24px;
    font-weight: 700;
    display: block;
    margin: 20px 0 0 0;
}
.join-find-inf .txt {
    font-size: 22px;
    text-align: center;
    font-weight: 600;
    color: #666666;
}
.join-find-inf .btn-box {
    max-width: 470px;
    padding: 0;
}
.join-find-inf.result .c {
    font-weight: 500;
    padding: 30px 0;
}
.find-form {
    margin: 50px 0 0 0;
}
.find-form .find-form-itm {
    display: flex;
    align-items: center;
}
.find-form .find-form-itm .hd-tx {
    width: 140px;
    padding: 0 0 0 70px;
    font-size: 18px;
    font-weight: 500;
}
.find-form .find-form-itm .bd-tx {
    flex: 1;
    display: flex;
    align-items: center;
}
.find-form .find-form-itm + .find-form-itm {
    margin-top: 10px;
}
.find-form .find-form-itm .inp {
    width: 470px;
    height: 60px;
}
.find-form .find-form-itm .inp.gray {
    background-color: #f9f9f9;
}
.find-form .find-form-itm .btn {
    width: 130px;
    height: 60px;
    margin-left: auto;
}
.find-form .find-form-itm.cert {
    margin-top: 20px;
}

/* common */
.opacity {
    opacity: 0;
}

.scroll-bx {
    overflow: hidden;
    overflow-y: auto;
}
.scroll-bx::-webkit-scrollbar {
    width: 6px;
    background-color: transparent;
}
.scroll-bx::-webkit-scrollbar-thumb {
    border: 0 solid transparent;
    border-radius: 4px;
    background-clip: padding-box;
    background-color: #ccc;
}
.scroll-bx::-webkit-scrollbar-track {
    padding: 0;
    background-color: #f3f3f3;
    border-radius: 4px;
}

div.paging {
    text-align: center;
    padding: 0;
    margin: 70px 0 0 0;
    position: relative;
    clear: both;
}
div.paging a,
div.paging strong {
    color: #000;
    font-weight: 500;
    border: #fff 1px solid;
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    margin: 0 1px;
    vertical-align: middle;
}
div.paging a:hover,
div.paging .on {
    border-color: #e49b31;
}
div.paging .direction {
    position: relative;
    text-indent: -9999px;
    border: #d9d9d9 1px solid;
}
div.paging .direction.prev {
    margin-right: 8px;
}
div.paging .direction.next {
    margin-left: 8px;
}
div.paging .direction.first:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -4px 0 0 0px;
    width: 8px;
    height: 8px;
    display: block;
    border: 1px solid #000;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
div.paging .direction.first:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -4px 0 0 -4px;
    width: 8px;
    height: 8px;
    display: block;
    border: 1px solid #000;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
div.paging .direction.prev:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -4px 0 0 -4px;
    width: 8px;
    height: 8px;
    display: block;
    border: 1px solid #000;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
div.paging .direction.next:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -4px 0 0 -4px;
    width: 8px;
    height: 8px;
    display: block;
    border: 1px solid #000;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
div.paging .direction.last:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -4px 0 0 -8px;
    width: 8px;
    height: 8px;
    display: block;
    border: 1px solid #000;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
div.paging .direction.last:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -4px 0 0 -4px;
    width: 8px;
    height: 8px;
    display: block;
    border: 1px solid #000;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
div.paging a:hover,
div.paging .direction:hover,
div.paging .direction:hover {
    border-color: #d9d9d9;
    background-color: #f7f7f7;
}

.txt-bx {
    background-color: #fafafa;
    border: #e9eef2 1px solid;
    padding: 30px;
    border-radius: 10px;
}
.txt-bx > li + li {
    margin-top: 10px;
}
.txt-bx > li {
    text-indent: -15px;
    padding-left: 15px;
}
.txt-bx > li::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #888;
    margin-right: 10px;
    vertical-align: 3px;
}

.ul-list01 > li + li {
    margin-top: 5px;
}
.ul-list01 > li {
    text-indent: -15px;
    padding-left: 15px;
}
.ul-list01 > li::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #888;
    margin-right: 10px;
    vertical-align: 3px;
}

.blt-bx .blt + .blt {
    margin-left: 10px;
}
.blt {
    display: inline-block;
    height: 26px;
    line-height: 26px;
    padding: 0 10px;
    color: #fff;
    background-color: #0039c8;
    font-size: 15px;
    font-weight: 400;
}
.blt.blue {
    color: #0039c8;
    border-color: #0039c8;
}
.blt.brd {
    border: #8a30ff 1px solid;
    color: #8a30ff;
    background-color: #fff;
}
.blt.blue.brd {
    border: #0039c8 1px solid;
    color: #0039c8;
}
.blt.rdu {
    border-radius: 14px;
}

.dv-tab {
    display: flex;
    align-items: center;
    font-size: 18px;
}
.dv-tab .itm {
    height: 50px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    border: #d2d2d2 1px solid;
    border-radius: 25px;
}
.dv-tab .itm + .itm {
    margin-left: 20px;
}
.dv-tab .itm.on {
    background: #0039c8;
    border: none;
    color: #fff;
    font-weight: 700;
}

.page-tab {
    display: flex;
    font-size: 14px;
    margin: 50px 0 0 0;
}
.page-tab .itm {
    border-top: #d2d2d2 1px solid;
    border-bottom: #d2d2d2 1px solid;
    height: 57px;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.page-tab .itm + .itm {
    border-left: #d2d2d2 1px solid;
}
.page-tab .itm:nth-child(1) {
    border-left: #d2d2d2 1px solid;
}
.page-tab .itm:last-child {
    border-right: #d2d2d2 1px solid;
}
.page-tab .itm.on {
    border: #0039c8 1px solid;
    background-color: #fff;
    color: #0039c8;
}
.page-tab-con {
    padding: 30px 10px;
}

/* 연수원소개 */
.intro-wr .intro01-bx1 {
    position: relative;
}
.intro-wr .intro01-bx1 img {
    display: block;
}
.intro-wr .intro01-bx1 .tx {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 50px;
    color: #fff;
    font-size: 32px;
    line-height: 1.3;
}
.intro-wr .intro01-bx2 {
    padding: 44px 50px;
    font-size: 20px;
}
.intro02-wr .intro02-bx1 {
    position: relative;
    background: url(../images/intro02.png) no-repeat 50% 0 / 430px auto;
    min-height: 580px;
}
.intro02-wr .intro02-bx1 .intro02-bx1-itm {
    position: absolute;
}
.intro02-wr .intro02-bx1 .intro02-bx1-itm strong {
    display: block;
}
.intro02-wr .intro02-bx1 .intro02-bx1-itm ul {
    margin: 15px 0 0 0;
}
.intro02-wr .intro02-bx1 .intro02-bx1-itm ul li {
    text-indent: -10px;
    padding-left: 10px;
}
.intro02-wr .intro02-bx1 .intro02-bx1-itm ul li::before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: #333;
    border-radius: 50%;
    margin-right: 5px;
    display: inline-block;
    vertical-align: 4px;
}
.intro02-wr .intro02-bx1 .intro02-bx1-itm:first-child {
    top: 113px;
    left: 58px;
}
.intro02-wr .intro02-bx1 .intro02-bx1-itm:nth-child(2) {
    top: 113px;
    left: 770px;
}
.intro02-wr .intro02-bx1 .intro02-bx1-itm:nth-child(3) {
    top: 456px;
    left: 422px;
}
.intro02-wr .intro02-bx1 .intro02-bx1-itm:nth-child(3) strong {
    text-align: center;
}
.intro02-wr .intro02-bx2 {
    margin: 100px auto 0;
    width: 990px;
}
.intro02-wr .intro02-bx2 h4 {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 110px 0;
}
.intro02-wr .intro02-bx2 ul {
    display: flex;
}
.intro02-wr .intro02-bx2 ul li {
    position: relative;
    flex: 1;
    text-align: center;
    padding: 70px 10px 30px;
    border: #c5d0f5 1px solid;
    border-radius: 10px;
}
.intro02-wr .intro02-bx2 ul li + li {
    margin-left: 50px;
}
.intro02-wr .intro02-bx2 ul li::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    margin-left: -50px;
    border-radius: 50%;
    display: block;
    width: 100px;
    height: 100px;
    border: #c5d0f5 1px solid;
    background-color: #fff;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.intro02-wr .intro02-bx2 ul li:nth-child(1):before {
    background-image: url(../images/intro02_1.png);
}
.intro02-wr .intro02-bx2 ul li:nth-child(2):before {
    background-image: url(../images/intro02_2.png);
}
.intro02-wr .intro02-bx2 ul li:nth-child(3):before {
    background-image: url(../images/intro02_3.png);
}
.intro03-wr h4 {
    margin: 50px 0 30px;
    font-size: 22px;
    font-weight: 700;
}
.intro03-wr .intro03-tbx {
    background-color: #fafafa;
    border-radius: 10px;
    border: rgba(0, 0, 0, 0.05) 1px solid;
    padding: 30px;
    color: #000;
}
.intro03-wr .intro03-tbx > li {
    text-indent: -10px;
    padding-left: 10px;
}
.intro03-wr .intro03-tbx > li + li {
    margin-top: 5px;
}
.intro03-wr .intro03-tbx > li::before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: #333;
    border-radius: 50%;
    margin-right: 5px;
    display: inline-block;
    vertical-align: 4px;
}
.intro03-wr .intro03-tbx .btn {
    margin: 0 auto;
}
.intro04-wr .intro04-bx1 {
    margin: 35px 0 0 0;
    background-color: #f3f6ff;
    border-radius: 10px;
    padding: 50px 0;
}
.intro04-wr .intro04-bx1 h4 {
    text-align: center;
}
.intro04-wr .intro04-bx1 ul {
    display: flex;
    justify-content: center;
}
.intro04-wr .intro04-bx1 ul li {
    position: relative;
    border: #cfd7f5 10px solid;
    text-align: center;
    line-height: 1.3;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.intro04-wr .intro04-bx1 ul li:nth-child(2) {
    border-color: #869ce7;
}
.intro04-wr .intro04-bx1 ul li:nth-child(3) {
    border-color: #0e39ce;
}
.intro04-wr .intro04-bx1 ul li + li {
    margin-left: 115px;
}
.intro04-wr .intro04-bx1 ul li::before {
    content: '';
    width: 36px;
    height: 36px;
    background-size: 36px;
    margin: 0 0 10px 0;
}
.intro04-wr .intro04-bx1 ul li:nth-child(1)::before {
    background-image: url(../images/intro04_ic1.png);
}
.intro04-wr .intro04-bx1 ul li:nth-child(2)::before {
    background-image: url(../images/intro04_ic2.png);
}
.intro04-wr .intro04-bx1 ul li:nth-child(3)::before {
    background-image: url(../images/intro04_ic3.png);
}
.intro04-wr .intro04-bx1 ul li:nth-child(2)::after {
    content: '';
    position: absolute;
    display: block;
    width: 116px;
    height: 2px;
    background: url(../images/intro04_line1.png);
    top: 108px;
    left: -122px;
}
.intro04-wr .intro04-bx1 ul li:nth-child(3)::after {
    content: '';
    position: absolute;
    display: block;
    width: 116px;
    height: 2px;
    background: url(../images/intro04_line2.png);
    top: 108px;
    left: -122px;
}
.intro04-wr .intro04-bx1 ul li i {
    position: absolute;
    color: #fff;
    width: 58px;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    background-color: #0e39ce;
    border-radius: 16px;
    display: block;
    top: 127px;
    left: -92px;
}
.intro06-wr .intro06-bx1 {
    text-align: center;
    color: #444;
    font-size: 20px;
}
.intro06-wr .intro06-bx1::before {
    content: '';
    width: 96px;
    height: 96px;
    display: block;
    margin: 0 auto 40px;
    background: url(../images/intro06_ic.png) no-repeat 50% 50%;
}
.intro06-wr h4 {
    font-size: 22px;
    margin: 50px 0 30px;
}
.intro06-wr .intro06-bx2 {
    background-color: #fafafa;
    border-radius: 10px;
    border: rgba(0, 0, 0, 0.05) 1px solid;
    padding: 30px;
}
.intro06-wr .intro06-bx2 label {
    margin: 10px 20px 10px 0;
    font-size: 14px;
}

.dv-toggle {
    border-top: #000 1px solid;
}
.dv-toggle dt {
    position: relative;
    border-bottom: #000 1px solid;
}
.dv-toggle dt::after {
    content: '';
    transform: rotate(135deg);
    width: 10px;
    height: 10px;
    border-top: #0039c8 2px solid;
    border-right: #0039c8 2px solid;
    display: block;
    position: absolute;
    top: 50%;
    right: 40px;
    margin-top: -5px;
    transition: all 0.2s ease-in-out;
}
.dv-toggle dt.active::after {
    transform: rotate(-45deg);
}
.dv-toggle dt button {
    width: 100%;
    display: flex;
    padding: 17px 60px 17px 20px;
    align-items: center;
    font-size: 14px;
    color: #222;
    font-weight: 600;
}
.dv-toggle dt i {
    width: 25px;
    height: 25px;
    color: #fff;
    background-color: #99b0e9;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin-right: 15px;
}
.dv-toggle dt span {
    text-align: left;
    flex: 1;
}
.dv-toggle dd {
    background-color: #fafafa;
    padding: 20px 60px;
    border-bottom: #000 1px solid;
    display: none;
}

@media screen and (max-width: 1740px) {
    @media screen and (max-width: 1470px) {
    }

    @media screen and (max-width: 1024px) {
        @media screen and (max-width: 640px) {
        }
    }
}

/* main */
.main #header,
.main #header .inner {
    background-color: transparent;
}
.main #header .hd-top .hd-top-lnk a,
.main #header .hd-top .hd-top-utill a {
    color: #fff;
}
.main #header .hd-top .hd-top-sch .inp {
    background-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}
.main #header .hd-top .hd-top-sch .inp::-webkit-input-placeholder {
    color: #fff;
}
.main #header .hd-top .hd-top-sch .inp:-ms-input-placeholder {
    color: #fff;
}
.main #gnb > li > a {
    color: #fff;
}
.main #header .hd-top .hd-top-sch .sch {
    background: url(../images/search_w.svg) no-repeat 50% 50% / 24px;
}
.main #header .inner::before {
    background-color: rgba(229, 229, 229, 0.5);
}

.main .fixed #header,
.main #header.on,
.main #header.on .inner {
    background-color: #fff;
}
.main #header.on .hd-top .hd-top-sch .inp {
    color: #000;
}
.main #header.on .hd-top .hd-top-sch .inp::-webkit-input-placeholder {
    color: #000;
}
.main #header.on .hd-top .hd-top-sch .inp:-ms-input-placeholder {
    color: #000;
}
.main #header.on .hd-top .hd-top-sch .sch {
    background: url(../images/search.svg) no-repeat 50% 50% / 24px;
}
.main .fixed #header .hd-top .hd-top-lnk a,
.main .fixed #header .hd-top .hd-top-utill a,
.main #header.on .hd-top .hd-top-lnk a,
.main #header.on .hd-top .hd-top-utill a,
.main #header.on #gnb > li > a,
.main .fixed #gnb > li > a {
    color: #000;
}

.main .fixed #header .hd-top .hd-top-sch .sch {
    background: url(../images/search.svg) no-repeat 50% 50% / 24px;
}
.main .fixed #header .hd-top .hd-top-sch .inp {
    color: #000;
}
.main .fixed #header .hd-top .hd-top-sch .inp::-webkit-input-placeholder {
    color: #000;
}
.main .fixed #header .hd-top .hd-top-sch .inp:-ms-input-placeholder {
    color: #000;
}

.main-visual {
    background-color: #fff;
}
.main-visual .slide-bx {
    position: relative;
    width: 2240px;
    left: 50%;
    transform: translateX(-50%);
}
.main-visual .swiper-slide {
    position: relative;
}
.main-visual .swiper-slide .bg img {
    object-fit: cover;
    width: 100%;
    height: 950px;
}
.main-visual .swiper-slide .copy {
    position: absolute;
    width: 1200px;
    left: 50%;
    margin-left: -600px;
    top: 0;
    bottom: 0;
    padding: 310px 50px 50px 50px;
    display: flex;
    flex-direction: column;
    color: #000;
    font-size: 24px;
    line-height: 1.2;
}
.main-visual .swiper-slide .copy .copy-tx1 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
}
.main-visual .ctrl {
    position: absolute;
    left: 50%;
    margin-left: -68px;
    bottom: 60px;
    width: 135px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.main-visual .ctrl button {
    width: 24px;
    height: 24px;
    position: relative;
}
.main-visual .ctrl button span {
    position: absolute;
    top: -9999px;
    left: -9999px;
}
.main-visual .ctrl button.stop {
    margin-right: 4px;
}
.main-visual .ctrl button.stop::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-left: #fff 2px solid;
    border-right: #fff 2px solid;
    margin: -5px 0 0 -4px;
    display: block;
}
.main-visual .ctrl button.stop.on::after {
    content: '';
    width: auto;
    height: auto;
    border-left: #fff 8px solid;
    border-top: transparent 4px solid;
    border-bottom: transparent 4px solid;
    margin: -4px 0 0 -4px;
    border-right: none;
}
.main-visual .ctrl button.prev::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-top: #fff 2px solid;
    border-right: #fff 2px solid;
    display: block;
    margin: -4px 0 0 -4px;
    transform: rotate(-135deg);
}
.main-visual .ctrl button.next::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-top: #fff 2px solid;
    border-right: #fff 2px solid;
    display: block;
    margin: -4px 0 0 -4px;
    transform: rotate(45deg);
}
.main-visual .ctrl button.prev.swiper-button-disabled,
.main-visual .ctrl button.next.swiper-button-disabled {
    opacity: 0.3;
}
.main-visual .ctrl .pag {
    width: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: 0;
    font-size: 13px;
}
.main-visual .ctrl .pag .swiper-pagination-current {
    color: rgba(255, 255, 255, 1);
}
.main-visual #currentSlide {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}

.main-sct01 {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 70px 0;
}
.main-sct01 .main-sch {
    max-width: 1200px;
    margin: 0 auto;
}
.main-sct01 .main-sch .inp-bx {
    display: flex;
    position: relative;
}
.main-sct01 .main-sch .inp-bx .inp {
    height: 90px;
    background-color: #464d71;
    border: none;
    border-radius: 50px;
    width: 100%;
    padding: 0 90px 0 50px;
    color: #fff;
    font-size: 30px;
}
.main-sct01 .main-sch .inp-bx .inp::-webkit-input-placeholder {
    color: #fff;
}
.main-sct01 .main-sch .inp-bx .inp:-ms-input-placeholder {
    color: #fff;
}
.main-sct01 .main-sch .inp-bx .bt-sch {
    position: absolute;
    display: block;
    top: calc(50% - 16px);
    right: 50px;
    width: 32px;
    height: 32px;
    background: url(../images/search_w.svg) no-repeat 50% 50%;
    text-indent: -9999px;
}
.main-sct01 .main-sch .sch-keyword {
    display: flex;
    justify-content: center;
    margin: 20px 0 0 0;
}
.main-sct01 .main-sch .sch-keyword a {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    border: #d9d9d9 1px solid;
    border-radius: 20px;
    background-color: #fff;
    color: #0039c8;
    font-size: 16px;
    margin: 0 10px;
}
.main-sct01 .main-sch .sch-keyword a:hover {
    text-decoration: underline;
}

.main-brn {
    margin: 60px auto 0;
    max-width: 1200px;
    display: flex;
}
.main-brn .itm {
    position: relative;
    flex: 1;
    padding: 34px 32px 30px;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.7);
    font-size: 16px;
}
.main-brn .itm + .itm {
    margin-left: 40px;
}
.main-brn .itm b {
    font-size: 24px;
    display: block;
    color: #000;
}
.main-brn .itm span {
    display: block;
}
.main-brn .itm em {
    margin: 47px 0 0 0;
    display: inline-block;
    line-height: 38px;
    width: 96px;
    border: #0039c8 1px solid;
    border-radius: 20px;
    color: #0039c8;
    text-align: center;
}
.main-brn .itm i {
    width: 52px;
    height: 52px;
    display: block;
    position: absolute;
    bottom: 30px;
    right: 30px;
}
.main-brn .itm i path {
    fill: #0039c8;
}
.main-brn .itm:hover {
    background-color: #0039c8;
}
.main-brn .itm:hover b,
.main-brn .itm:hover span,
.main-brn .itm:hover em {
    color: #fff;
    border-color: #fff;
}
.main-brn .itm:hover i path {
    fill: #fff;
    opacity: 0.5;
}

.main-sct02 {
    max-width: 1200px;
    margin: 80px auto 0;
    position: relative;
}
.main-sct02 + .main-sct02 {
    padding-bottom: 80px;
}
.main-sct02 .more {
    position: absolute;
    top: 15px;
    right: 0;
    display: flex;
    align-items: center;
    line-height: 24px;
    color: #0039c8;
    font-size: 18px;
}
.main-sct02 .more i {
    position: relative;
    width: 24px;
    height: 24px;
}
.main-sct02 .more i::before,
.main-sct02 .more i::after {
    content: '';
    position: absolute;
    width: 14px;
    top: 50%;
    left: 50%;
    height: 2px;
    margin: -1px 0 0 -6px;
    background-color: #0039c8;
}
.main-sct02 .more i::after {
    transform: rotate(90deg);
}
.main-sct02 .tit {
    font-size: 36px;
    line-height: 1;
    margin: 0 0 40px 0;
}

.main-faq {
    border-top: #000 2px solid;
}
.main-faq dt {
    padding: 30px 20px;
    display: flex;
    align-items: center;
    border-bottom: #d6d6d6 1px solid;
}
.main-faq dt i {
    font-size: 18px;
    width: 34px;
    display: inline-flex;
    text-align: center;
    color: #0039c8;
    font-family: 'Pretendard';
    font-weight: 600;
}
.main-faq dt span {
    font-size: 18px;
    flex: 1;
    color: #000;
    font-weight: 600;
}
.main-faq dt:hover {
    background-color: rgba(0, 0, 0, 0.01);
}
.main-faq dd {
    padding: 30px;
    border-bottom: #d6d6d6 1px solid;
}

.main-notice {
    border-top: #000 2px solid;
}
.main-notice li {
    padding: 0 20px 0 30px;
    min-height: 80px;
    display: flex;
    align-items: center;
    border-bottom: #d6d6d6 1px solid;
}
.main-notice li:hover {
    background-color: rgba(0, 0, 0, 0.01);
}
.main-notice li .blt {
    margin-right: 20px;
    width: 72px;
    height: 42px;
    line-height: 42px;
    border-radius: 10px;
    font-size: 18px;
    text-align: center;
}
.main-notice li a {
    flex: 1;
    font-weight: 600;
    color: #000;
    font-size: 18px;
}
.main-notice li .date {
    width: 116px;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.4);
    font-family: 'Pretendard';
}
