@charset "utf-8";

/***** 공통 *****/
.wrap.sub {
    padding-top: 9rem;
}

.sub-title {
    text-align: center;
    padding: 12rem 0 6rem;
}
.sub-title h3 {
    font-size: 3.4rem;
    color: #333333;
    font-weight: 800;
    margin-bottom: 3.5rem;
}
.sub-title p {
    font-size: 1.6rem;
    color: #666666;
    margin-bottom: 1.5rem;
}
.sub-title small {
    font-size: 1.4rem;
    color: #ff2d0b;
}

@media (max-width: 768px) {
    .wrap.sub {
        padding-top: 7rem;
    }
    .sub-title {
        padding: 8rem 0 5rem;
    }
    .sub-title h3 {
        font-size: 3rem;
        margin-bottom: 3rem;
    }
}
@media (max-width: 768px) {
    .sub-title {
        padding: 5rem 0;
    }
}

/***** 공통 *****/

/** price **/
.price {
    padding-bottom: 10rem;
}
.price-list {
    display: flex;
    flex-wrap: wrap;
}
.price-list li {
    width: 33.3%;
    padding: 0 2.5rem;
    margin-bottom: 5rem;
}
.price-list li .border {
    border: solid 6px #f0f0f0;
    transition: 0.3s;
    background: #fff;
    position: relative;
}
.price-list li .border .line {
    padding: 4rem 5rem;
}
.price-list li .tit {
    text-align: center;
    margin-bottom: 5rem;
}
.price-list li .tit p {
    font-size: 1.8rem;
    color: #666666;
}
.price-list li .tit b {
    font-size: 2.8rem;
    color: #333333;
    font-weight: 800;
    font-family: 'Noto Sans KR';
}
.price-list li .cont {
    margin-bottom: 7rem;
}
.price-list li .cont .flex-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    height: 4rem;
}
.price-list li .cont .flex-box p {
    font-size: 1.6rem;
    color: #666666;
}
.price-list li .cont .flex-box .detail {
    display: flex;
    align-items: center;
}
.price-list li .cont .flex-box .detail b {
    font-size: 2.6rem;
    color: #333333;
    font-weight: 500;
    margin-right: 1rem;
}
.price-list li .btn-wrap {
    width: 15rem;
    height: 5rem;
    margin: 0 auto;
}
.price-list li .btn-wrap a {
    font-size: 1.4rem;
}
.price-list li .btn-wrap a:hover {
    box-shadow: unset;
}

.price-list li:last-child .cont .flex-box .detail b {
    font-size: 1.8rem;
    font-weight: 800;
}
.price-list li .cont .flex-box:last-child {
    margin-bottom: 0;
}
.price-list li .border:hover {
    box-shadow: 22px 0 35px rgb(0 0 0 / 13%);
}
.price-list li .border:hover .btn-wrap a {
    color: #fff;
}
.price-list li .border:hover .btn-wrap span {
    width: 100%;
}


.price-list li .border:before,
.price-list li .border:after,
.price-list li .border .line:before,
.price-list li .border .line:after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    width: 0;
    height: 0;
    background: #0357c2;
    transition: all .3s;
    z-index: 1;
}
.price-list li .border:before {
    height: 6px;
    left: 0;
}
.price-list li .border:after {
    left: initial;
}
.price-list li .border:after,
.price-list li .border .line:after {
    width: 6px;
}
.price-list li .border .line:before {
    top: initial;
    bottom: 0;
    left: initial;
    right: 0;
    height: 6px;
}
.price-list li .border:after,
.price-list li .border .line:after {
    width: 6px;
}
.price-list li .border .line:after {
    top: initial;
    bottom: 0;
}
.price-list li .border:hover:before {
    width: 101.5%;
}
.price-list li .border:hover:after {
    height: 101.5%;
    transition-delay: .2s;
}
.price-list li .border .line:hover:before {
    width: 101.5%;
    transition-delay: .4s;
}
.price-list li .border .line:hover:after {
    height: 101.5%;
    transition-delay: .6s;
}


@media (max-width: 1200px) {
    .price-list li .border .line {
        padding: 4rem 3rem;
    }
}
@media (max-width: 1024px) {
    .price-list li {
        width: 50%;
    }
}
@media (max-width: 768px) {
    .price-list li {
        width: 100%;
        padding: 0;
    }
    .price-list li:last-child {
        margin-bottom: 0;
    }
    .price-list li .border .line {
        padding: 3rem;
    }
    .price-list li .tit {
        margin-bottom: 3rem;
    }
    .price-list li .tit b {
        font-size: 2.6rem;
    }
    .price-list li .cont .flex-box {
        margin-bottom: 1rem;
    }
    .price-list li .cont {
        margin-bottom: 3rem;
    }
}

/** price **/


/** inquiry **/
.inquiry {
    padding-bottom: 15rem;
}
.inquiry .form-wrap .btn-wrap {
    margin: 0 auto;
}
.inquiry  .form-wrap .form-check {
    border-top: solid 1px #dbdbdb;
    padding: 3.5rem 0 5rem;
}
.inquiry .form-wrap .form-itembox .form-item > *::placeholder {
    font-size: 1.4rem;
    color: #999999;
}
.inquiry .form-wrap .form-itembox .form-item.top {
    align-items: flex-start;
}
.inquiry .form-wrap .btn-wrap:hover a {
    box-shadow: unset;
}

@media (max-width: 768px) {
    .inquiry {
        padding-bottom: 10rem;
    }
    .inquiry .sub-title h3 {
        margin-bottom: 0;
    }
}
/** inquiry **/


/** join  **/
.join-wrap {
    padding-bottom: 16rem;
}
.join-wrap .maxinner {
    max-width: 56rem;
}
.join-root {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.join-root:after {
    content: '';
    border-bottom: dashed 1px #d6d6d6;
    width: 90%;
    position: absolute;
    top: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
}
.join-root li i {
    width: 4.5rem;
    height: 2.4rem;
    margin: 0 auto 1rem;
    display: block;
    background: url('../../images/ico/ico-check-gray.png') #fff no-repeat center / cover;
    background-size: 2.4rem 2.4rem;
    position: relative;
    z-index: 1;
}
.join-root li p {
    font-size: 1.3rem;
    color: #999999;
}

.join-root li.active i {
    background: url('../../images/ico/ico-check02.png') #fff no-repeat center / cover;
    background-size: 2.4rem 2.4rem;
}
.join-root li.active p {
    font-size: 1.3rem;
    color: #0357c2;
}

.agreement-wrap .agreement-allcheck {
    margin: 7rem 0 4rem;
}
.agreement-wrap .agreement-allcheck input[type="checkbox"] {
    display: none;
}
.agreement-wrap .agreement-allcheck label {
    border: solid 1px #0357c2;
    background: #fff;
    width: 100%;
    height: 7rem;
    cursor: pointer;
    position:relative;
    transition: 0.3s;
}
.agreement-wrap .agreement-allcheck label b {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-size: 1.8rem;
    color: #0357c2;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.agreement-wrap .agreement-allcheck label b i {
    width: 1.7rem;
    height: 1.1rem;
    margin-right: 1rem;
    background: url('../../images/ico/ico-check-line.png') no-repeat center;
    display: inline-block;
}

.agreement-wrap .agreement-allcheck input:checked + label b {
    color: #fff;
}
.agreement-wrap .agreement-allcheck input:checked + label::before {
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    background-color: #0357c2;
    width: 100%;
    height: 100%;
}
.agreement-wrap .agreement-allcheck input:checked + label i {
    background: url('../../images/ico/ico-check-line-white.png') no-repeat center;
}

.agreement-wrap .chk-wrap {
    margin-bottom: 2rem;
}
.agreement-wrap .chk-wrap .chk-box label b {
    color: #ff6261;
    margin-right: 5px;
    font-weight: 400;
}
.agreement-wrap .chk-wrap .chk-box {
    margin-bottom: 2rem;
}
.agreement-wrap .chk-wrap .cont {
    background: #fafafa;
    padding: 2rem;
    border-top: solid 1px #e5e5e5;
    height: 22rem;
    overflow-y: scroll;
}
.agreement-wrap .chk-wrap .cont strong {
    font-size: 1.5rem;
    color: #111111;
    font-family: 'Noto Sans KR';
    display: block;
    margin-bottom: 1rem;
}
.agreement-wrap .chk-wrap .cont b {
    font-size: 1.5rem;
    color: #333333;
    font-family: 'Noto Sans KR';
    margin-bottom: 1rem;
    display: block;
}
.agreement-wrap .chk-wrap .cont p {
    font-size: 1.5rem;
    color: #666666;
    margin-bottom: 3rem;
}

.agreement-wrap .chk-wrap .cont::-webkit-scrollbar{
    width: 4px;
    height: 4px;
}
.agreement-wrap .chk-wrap .cont::-webkit-scrollbar-thumb{
    background-color:#dbdbdb;
    border-radius:2px;
    transition:all 0.5s;
}
.agreement-wrap .chk-wrap .cont::-webkit-scrollbar-track{
    background-color:unset;
    border-radius:0;
}

.join-wrap .btn-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 3rem -5px 0;
}
.join-wrap .btn-wrap a {
    margin: 0 5px;
    background: #0257c2;
    color: #fff;
}
.join-wrap  .btn-wrap:hover a {
    box-shadow: unset;
}
.join-wrap .btn-wrap a.gray {
    background: #555555;
    border: #555555;
}

.join-wrap .form-wrap {
    margin-top: 7rem;
}
.join-wrap .form-wrap .form-item {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding: 0;
}
.join-wrap .form-wrap .form-item > h4 {
    margin-bottom: 5px;
    padding: 0;
    font-size: 1.5rem;
}
.join-wrap .form-wrap .form-item > * {
    display: flex;
    width: 100%;
    align-items: center;
}
.join-wrap .form-wrap .form-item input {
    height: 6rem;
}
.join-wrap .form-wrap .form-item input::placeholder {
    color: #999999;
}
.join-wrap .form-wrap .form-item select {
    height: 6rem;
}
.join-wrap .form-wrap .form-check .chk-box label {
    color: #666;
    font-size: 1.4rem;
}
.join-wrap .form-wrap .form-check .chk-box label span {
    min-width: 18px;
    height: 18px;
    background: url('../../images/ico/ico-check_none03.png') no-repeat center center;
}
.join-wrap .form-wrap .form-check .chk-box input:checked + label span::before {
    background: url('../../images/ico/ico-check03.png') no-repeat center center;
    background-size: cover;
    min-width: 18px;
    height: 18px;
}

.form-wrap .form-item a {
    font-size: 1.5rem;
    width: 14.3rem;
    height: 6rem;
    background: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 1rem;
    color: #fff;
}
.form-wrap .form-item.important > h4:before {
    content: '*';
    color: #ff2d0b;
    margin: 2px 5px 0 0;
}
.form-wrap .form-item.tel > div {
    margin: 0 -8px;
}
.form-wrap .form-item.tel > div input {
    margin: 0 8px;
    height: 6rem;
}
.form-wrap .form-item.email > div select {
    width: 18rem;
    flex-shrink: 0;
    margin-left: 1rem;
}
.form-wrap .form-item.email .chk-box {
    margin-top: 1rem;
}
.form-wrap .form-item.email .chk-box input {
    width: 1.8rem;
    height: 1.8rem;
}
.form-wrap .form-item.address > div {
    margin-bottom: 1rem;
}
.form-wrap .form-item.address > div input {
    margin-bottom: 0;
}
.form-wrap .form-item.address input {
    margin-bottom: 1rem;
}
.form-wrap .form-item.address input:last-child {
    margin-bottom: 0;
}


.join-finish {
    text-align: center;
    margin-top: 8rem;
}
.join-finish h4 {
    font-size: 2.4rem;
    color: #333333;
    font-weight: 400;
    margin-top: 5rem;
}
.join-finish h4 b {
    font-weight: 900;
}
.join-finish p {
    font-size: 1.5rem;
    color: #666666;
    line-height: 1.8;
    margin: 2rem 0 8rem;
}
.join-finish p b {
    font-weight: 900;
    color: #111111;
    line-height: 1.8;
}
.join-wrap .btn-wrap a.white {
    background: #fff;
    border-color: #0257c2;
    color: #0257c2;
}

@media (max-width: 768px) {
    .join-wrap {
        padding-bottom: 10rem;
    }
}

/** join  **/



/** mypage **/

.mypage-wrap {
    padding: 12rem 0 18rem;
}
.mypage-wrap .maxinner {
    max-width: 1040px;
    display: flex;
}
.mypage-wrap nav {
    float: left;
    width: 21.154%;
    margin-right: 5rem;
}
.mypage-wrap nav h4 {
    font-size: 2.8rem;
    color: #333333;
    font-weight: 500;
    margin-bottom: 1rem;
    height: 4rem;
}
.mypage-wrap nav ul {
    border-top: solid 1px #e5e5e5;
    padding-top: 1rem;
}
.mypage-wrap ul li {
    height: 4rem;
}
.mypage-wrap ul li a {
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1.6rem;
    color: #777777;
}

.mypage-wrap ul li.active a {
    color: #000000;
}

.mypage-wrap .right {
    float: left;
    width: calc(78.846% - 5rem);
}
.mypage-wrap .right h5 {
    font-size: 2.2rem;
    color: #333333;
    font-weight: 600;
    height: 4rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.mypage-wrap .form-wrap {
    border-top: solid 1px #e5e5e5;
    padding-top: 2.5rem;
}
.mypage-wrap .form-wrap .form-item {
    padding: 0;
    margin-bottom: 3rem;
}
.mypage-wrap .form-wrap .form-item h4 {
    width: 21.5rem;
    flex-shrink: 0;
    padding: 0;
}
.mypage-wrap .form-wrap .form-item input {
    height: 6rem;
}
.mypage-wrap .form-wrap .form-item select {
    height: 6rem;
}
.mypage-wrap .form-wrap .form-item > div {
    width: 100%;
    display: flex;
    align-items: center;
}
.mypage-wrap .form-wrap .form-item > div .inner {
    display: flex;
    width: 100%;
}
.mypage-wrap .form-wrap .form-item > div .form-check {
    width: 100%;
}
.mypage-wrap .form-wrap .form-check .chk-box label span {
    min-width: 18px;
    height: 18px;
    background: url('../../images/ico/ico-check_none03.png') no-repeat center center;
}
.mypage-wrap .form-wrap .form-check .chk-box input:checked + label span::before {
    background: url('../../images/ico/ico-check03.png') no-repeat center center;
    background-size: cover;
    min-width: 18px;
    height: 18px;
}


.mypage-wrap .form-wrap .form-item.email > div {
    flex-direction: column;
}
.mypage-wrap .form-wrap .form-item.address {
    align-items: flex-start;
}
.mypage-wrap .form-wrap .form-item.address h4 {
    margin-top: 2rem;
}
.mypage-wrap .form-wrap .form-item.address > div {
    flex-direction: column;
}
.mypage-wrap .form-wrap .form-item.address > div input {
    margin-bottom: 1rem;
}


.mypage-wrap .form-wrap .form-item input.gray {
    color: #999999;
    background: #f0f0f0;
}

.mypage-wrap .btn-wrap {
    position: relative;
    width: 27.5rem;
    height: 6rem;
    margin: 0 auto;
}
.mypage-wrap .btn-wrap a {
    background: #0357c2;
    color: #fff;
}
.mypage-wrap .btn-wrap:hover a {
    box-shadow: unset;
}

@media (max-width: 768px) {
    .mypage-wrap {
        padding: 8rem 0 10rem;
    }
    .mypage-wrap .maxinner {
        flex-direction: column;
    }
    .mypage-wrap .maxinner > * {
        width: 100%;
        margin-right: 0;
    }
    .mypage-wrap nav {
        margin-bottom: 5rem;
    }
}

@media (max-width: 500px) {
    .mypage-wrap {
        padding: 5rem 0 8rem;
    }
    .mypage-wrap .form-wrap .form-item {
        flex-direction: column;
    }
    .mypage-wrap .form-wrap .form-item h4 {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/** mypage **/



/** 기능소개 **/

.introduction-wrap .sec01 {
    height: calc(85vh - 9rem);
    position: relative;
}
.introduction-wrap .sub-title {
    text-align: center;
    padding: 18rem 0 7rem;
}
.introduction-wrap .sub-title h3 {
    font-size: 1.6rem;
    color: #0357c2;
    font-weight: 800;
    margin-bottom: 2.5rem;
}
.introduction-wrap .sub-title p {
    font-size: 2.8rem;
    color: #111111;
    margin-bottom: 0;
}
.introduction-wrap .sub-title b {
    font-weight: 900;
}
.introduction-wrap .img {
    text-align: center;
    margin-right: 8rem;
}
.introduction-wrap .scroll {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 35px;
    background: #cccccc;
    display: block;
}
.introduction-wrap .scroll:after {
    content: '';
    width: 5px;
    height: 5px;
    border: solid 2px #0357c2;
    background: #fff;
    border-radius: 100%;
    display: block;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    animation: scrollBtn 1.5s linear infinite;
}

@keyframes scrollBtn{
    0%{
        top: 0;
    }
    100%{
        top: 100%;
    }
}

.introduction-wrap .sec02 {
    padding: 15rem 0;
}
.introduction-wrap .sec02 .bg {
    background-color: #0b1e43;
    top: 0;
    right: 0;
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-position: right center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.introduction-wrap .sec02.show .bg {
    opacity: 1;
}

.introduction-wrap .sec02 .flex-box {
    display: flex;
    padding-bottom: 15rem;
    position: relative;
}
.introduction-wrap .sec02 .flex-box .img {
    margin-right: 12rem;
    flex: 1;
    z-index: 1;
}
.introduction-wrap .sec02 .flex-box .img img {
    box-shadow: 7px 0 29px rgb(43 43 43 / 30%);
    border-radius: 10px;
}
.introduction-wrap .sec02 .flex-box .text {
    flex: 1;
    padding-top: 9rem;
}
.introduction-wrap .sec02 .flex-box .text .tit {
    color: #ffffff;
    margin-bottom: 3rem;
}
.introduction-wrap .sec02 .flex-box .text .tit p {
    font-size: 2rem;
    font-weight: 600;
}
.introduction-wrap .sec02 .flex-box .text .tit strong {
    font-size: 3.2rem;
    font-weight: 800;
    font-family: 'Noto Sans KR';
}
.introduction-wrap .sec02 .flex-box .text ul li {
    font-size: 1.8rem;
    color: #b9c1cf;
    margin-bottom: 1rem;
    display: flex;
}
.introduction-wrap .sec02 .flex-box .text ul li:before {
    content: '';
    width: 4px;
    height: 4px;
    background: #b9c1cf;
    display: block;
    border-radius: 100%;
    margin: 1.1rem 1rem 0 0;
}

.introduction-wrap .sec02 .circle-point {
    position: absolute;
    background: url('../../images/sub/introduction_img10.png') no-repeat;
    width: 31.6rem;
    height: 25.6rem;
    bottom: -3%;
    left: 44%;
}
.introduction-wrap .sec02 .circle-point > div {
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 10px;
    background-color: #0760d1;
    border-radius: 35px;
    offset: path('M0,2s220,8,316,254') auto;
    animation: moveto 5s linear infinite;
}

.introduction-wrap .sec02 .circle-point.point02 {
    left: 25%;
}
.introduction-wrap .sec02 .circle-point.point04 {
    display: none;
}

@keyframes moveto{
    0%{
        offset-distance: 0%
    }
    100%{
        offset-distance: 100%;
    }
}

.introduction-wrap .sec02 .flex-box:last-child {
    padding-bottom: 0;
}
.introduction-wrap .sec02 .flex-box:nth-child(2n) {
    flex-direction: row-reverse;
}
.introduction-wrap .sec02 .flex-box:nth-child(2n) .img{
    margin: 0;
}
.introduction-wrap .sec02 .flex-box:nth-child(2n) .circle-point {
    transform: scaleX(-1);
}

@media (max-width: 1024px) {
    .introduction-wrap .sec02 .flex-box .text {
        padding-top: 0;
    }
    .introduction-wrap .sec02 .circle-point {
        display: none;
    }
}
@media (max-width: 768px) {
    .introduction-wrap .sec01 {
        height: calc(90vh - 7rem);
    }
    .introduction-wrap .img {
        margin-right: 0;
    }
    .introduction-wrap .sec02 {
        padding: 10rem 0;
        overflow: hidden;
    }
    .introduction-wrap .sec02 .flex-box {
        flex-direction: column !important;
        padding-bottom: 8rem;
    }
    .introduction-wrap .sec02 .flex-box .img {
        margin-right: 0;
    }
    .introduction-wrap .sec02 .flex-box .text {
        padding-top: 3rem;
    }
    .introduction-wrap .sec02 .flex-box .text .tit strong {
        font-size: 2.4rem;
    }
}

/** 기능소개 **/


/** 개인정보처리방침 **/
.contactus {
    padding-bottom: 15rem;
}
.contactus .maxinner {
    max-width: 100rem;
}
.contactus .maxinner > .box {
    background-color: #fafafa;
    padding: 3rem;
    margin-bottom: 8rem;
}
.contactus .maxinner > .box p {
    font-size: 1.6rem;
    color: #333;
    font-family: 'Noto Sans KR';
}
.contactus .content {
    color: #333;
}
.contactus .content .box {
    margin-bottom: 5rem;
}
.contactus .content .box h4 {
    font-size: 2.2rem;
    font-family: 'Noto Sans KR';
    margin-bottom: 2rem;
}
.contactus .content .box b {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    display: block;
}
.contactus .content .box p {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.contactus .content .box ul {
    margin-bottom: 2rem;
}
.contactus .content .box ul li {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 3rem;
}
.contactus .content .box ul li:before {
    content: '-';
    margin-right: 1rem;
}
.contactus .content .box ul li.no-line:before {
    content: '';
}

.contactus .content h4.center {
    font-size: 2.4rem;
    text-align: center;
    font-weight: 800;
    font-family: 'Noto Sans KR';
    margin: 5rem 0;
}
.contactus .content .box:last-child {
    margin-top: 10rem;
}
.contactus .content .box table {
    width: 100%;
    margin-top: 2rem;
}
.contactus .content .box table th {
    font-size: 1.6rem;
    padding: 1rem;
    border: solid 1px #ddd;
    font-weight: 600;
}
.contactus .content .box table td {
    text-align: center;
    font-size: 1.6rem;
    padding: 1rem;
    border: solid 1px #ddd;
}
.contactus .content .point {
    color: #ff2d0b;
}


@media (max-width: 768px) {
    .contactus {
        padding-bottom: 10rem;
    }
    .contactus .sub-title h3 {
        margin-bottom: 0;
    }
    .contactus .content h4.center {
        margin: 3rem 0;
    }
}

/** 개인정보처리방침 **/


/** popup **/
.popup-wrap.contactus {
    position: fixed;
    background-color: rgba(0,0,0,30%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    display: none;
    font-size: 50%;
}
.popup-wrap.contactus .popup-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.popup-wrap.contactus .popup-box .txtbox {
    position: relative;
    box-shadow: rgb(0 0 0 / 10%) 9px 10px 8px;
    background-color: #fff;
    padding: 3rem 5rem;
    height: 50rem;
    overflow-y: scroll;
}
.popup-wrap.contactus .popup-box .close {
    right: -50px;
    top: 0;
    z-index: 2;
    position: absolute;
    cursor: pointer;
}
.popup-wrap .popup-box .txtbox .sub-title {
    padding: 5rem 0;
}
.popup-wrap .popup-box .txtbox .sub-title h3 {
    font-size: 2.8rem;
    margin-bottom: 0;
}
.popup-wrap .popup-box .txtbox > .box {
    background-color: #fafafa;
    padding: 3rem;
    margin-bottom: 8rem;
}
.popup-wrap .popup-box .txtbox > .box p {
    font-size: 1.6rem;
    color: #333;
    font-family: 'Noto Sans KR';
}

/** popup **/
