@charset "utf-8";

/* 서브 공통 */
#wrapper {
    padding-top: 60px;
}

#container {
    position: relative;
    padding: 40px 40px 60px;
}

#container.subscription {
    background-color: var(--bg-background-gray);
}

#container h1.tit-h1 {
    margin-bottom: 30px;
}

#container h1.tit-h1 em {
    font-size: 2.4rem;
    font-family: var(--font-point);
}

#container h2.tit-h2 {
    position: relative;
    padding-left: 15px;
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: 500;
}

#container h2.tit-h2:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: var(--color-point);
    border-radius: 50%;
    content: '';
}

#container .sub-gnb {
    position: relative;
    margin-bottom: 30px;
}

#container .sub-gnb:after {
    position: absolute;
    bottom: -1px;
    left: -40px;
    right: -40px;
    height: 1px;
    background-color: var(--border-line);
    content: '';
}

#container.subscription .sub-gnb:after {
    bottom: -2px;
    height: 2px;
    background-color: var(--color-point);
}

#container .sub-gnb ul li {
    position: relative;
    width: auto;
}

#container .sub-gnb ul li:not(:first-child)::after {
    position: absolute;
    top: 15px;
    left: 0;
    bottom: 15px;
    width: 1px;
    background-color: rgba(0,0,0,0.1);
    content: '';
}

#container .sub-gnb ul li a {
    display: block;
    height: 46px;
    line-height: 46px;
    padding: 0 20px;
    background-color: var(--bg-background-gray);
    color: var(--color-gray);
}

#container.subscription .sub-gnb ul li a {
    background-color: #fff;
}

#container .sub-gnb ul li a.active {
    background-color: var(--color-point);
    font-weight: 500;
    color: #fff;
}

#container .pc-only-guide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    text-align: center;
}

#container .pc-only-guide span.ico {
    width: 100px;
    height: 100px;
    background-color: #B1F2B7;
    border-radius: 50%;
    font-size: 0;
}

#container .pc-only-guide em {
    margin-top: 10px;
    font-family: var(--font-point);
    font-size: 1.8rem;
}

@media screen and (min-width: 767px) {
    #container h1.tit-h1 {
        margin-bottom: 50px;
    }

    #container h1.tit-h1 em {
        font-size: 3rem;
    }

    #container h2.tit-h2 {
        padding-left: 25px;
        margin-bottom: 20px;
        font-size: 2.4rem;
        font-weight: 700;
    }
    
    #container h2.tit-h2:after {
        width: 15px;
        height: 15px;
    }

    #container .sub-gnb ul li a {
        height: 50px;
        line-height: 50px;
        padding: 0 30px;
        letter-spacing: -.25pt;
        font-size: 1.6rem;
    }
}

@media screen and (min-width: 979px) {
    #wrapper {
        padding-top: 120px;
    }

    #container {
        padding: 60px 40px;
    }

    #container .sub-gnb ul li:not(:first-child)::after {
        top: 20px;
        bottom: 20px;
    }

    #container .sub-gnb {
        margin-bottom: 50px;
    }

    #container .sub-gnb ul li a {
        height: 60px;
        line-height: 60px;
        padding: 0 30px;
        font-size: 1.8rem;
    }
}

@media screen and (min-width:1339px) {
    #container {
        padding: 60px 0px 100px;
    }

    #container h1.tit-h1 em {
        font-size: 4rem;
    }

    #container h2.tit-h2 {
        font-size: 3rem;
    }

    #container .sub-gnb:after {
        left: -1000px;
        right: -1000px;
    }
}


/* 테이블 */
.basic-tbl {
    border-top: 2px solid var(--color-point);
    background-color: var(--color-white);
}

.basic-tbl th,
.basic-tbl td {
    padding: 5px;
    border: 1px solid var(--border-line);
    text-align: center;
}

.basic-tbl thead th {
    background-color: var(--bg-background-gray);
    font-family: var(--font-point);
}

.basic-tbl.write-tbl tbody th {
    background-color: #5B809B;
    color: #fff;
}

.test-content .basic-tbl {
    border-top: 2px solid #364F64;
}

.basic-tbl.write-tbl thead th,
.test-content .basic-tbl thead th {
    background-color: #55748F;
    color: #fff;
}

.basic-tbl .table-comment {
    margin-top: 5px;
}

.basic-tbl ul li {
    position: relative;
    padding-left: 12px;
}

.basic-tbl ul li:not(:first-child) {
    margin-top: 10px;
}

.basic-tbl ul li:after {
    position: absolute;
    top: 8px;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: #333;
    border-radius: 50%;
    content: '';
}

@media screen and (min-width: 767px) {
    .basic-tbl th,
    .basic-tbl td {
        padding: 10px 20px;
    }
}

@media screen and (min-width: 979px) {
    .basic-tbl thead th {
        padding: 20px 10px;
        font-size: 1.6rem;
    }
}


/* 기본 페이지 */
.basic-page .basic-page-box {
    position: relative;
}

.basic-page .basic-page-box:not(:first-child) {
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--border-line);
}

.basic-page .basic-page-box .basic-page-con {
    margin-bottom: 30px;
}

.basic-page .basic-page-box .basic-page-con:last-child {
    margin-bottom: 0 !important;
}

.basic-page .basic-page-box .basic-page-con .bpc-top {
    position: relative;
    padding: 30px 20px;
    margin-bottom: 20px;
    border: 1px dashed rgba(0,0,0,0.15);
    background: #f8f8f8 url("../images/page_titbg.png") no-repeat center bottom/cover;
    text-align: center;
}

.basic-page .basic-page-box .basic-page-con .bpc-top:after,
.basic-page .basic-page-box .basic-page-con .bpc-top:before {
    position: absolute;
    top: -1px;
    bottom: -1px;
    width: 30px;
    border: 5px solid var(--color-point);
    content: '';
}

.basic-page .basic-page-box .basic-page-con .bpc-top:after {
    left: -1px;
    border-right: none;
}

.basic-page .basic-page-box .basic-page-con .bpc-top:before {
    right: -1px;
    border-left: none;
}

.basic-page .basic-page-box .basic-page-con .bpc-top h3 {
    position: relative;
    margin-bottom: 15px;
    font-family: var(--font-point-bold);
    font-size: 1.8rem;
}

.basic-page .basic-page-box .basic-page-con .bpc-top p br {
    display: none;
}

.basic-page .basic-page-box .basic-page-con h4 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-point);
}

.basic-page .basic-page-box .basic-page-con .business-introduce > li {
    margin-top: 10px;
}

.basic-page .basic-page-box .basic-page-con .business-introduce > li em {
    font-weight: 500;
    font-size: 1.6rem;
}

.basic-page .basic-page-box .basic-page-con .business-introduce > li ul li {
    position: relative;
    padding-left: 12px;
}

.basic-page .basic-page-box .basic-page-con .business-introduce > li ul li:after {
    position: absolute;
    top: 8px;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: #333;
    border-radius: 50%;
    content: '';
}

.basic-page .basic-page-box .basic-page-con .bpcbox {
    margin-top: 15px;
}

.basic-page .basic-page-box .basic-page-con .bpcbox h5 {
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.basic-page .basic-page-box .basic-page-con .bpcbox .step-imgbox {
    padding: 20px;
    margin: 0 -20px;
    background-color: var(--bg-background-gray);
    border-radius: 10px;
    text-align: center;
}

.basic-page .basic-page-box .basic-page-con .mapbox {
    overflow: hidden;
    margin: 0 -40px;
    border-radius: 10px;
    font-size: 0;
}

.basic-page .basic-page-box .basic-page-con .mapbox iframe {
    width: 100%;
    height: 350px;
}

@media screen and (min-width:639px) {
    .basic-page .basic-page-box .basic-page-con .bpc-top {
        padding: 40px;
    }

    .basic-page .basic-page-box .basic-page-con .bpc-top h3 {
        font-size: 2.4rem;
    }
}

@media screen and (min-width:767px) {
    .basic-page .basic-page-box:not(:first-child) {
        padding-top: 60px;
        margin-top: 60px;
    }

    .basic-page .basic-page-box .basic-page-con {
        margin-bottom: 40px;
    }

    .basic-page .basic-page-box .basic-page-con .bpc-top {
        padding: 60px 40px;
    }

    .basic-page .basic-page-box .basic-page-con .bpc-top:after,
    .basic-page .basic-page-box .basic-page-con .bpc-top:before {
        width: 50px;
        border-width: 10px;
    }

    .basic-page .basic-page-box .basic-page-con .bpc-top h3 {
        font-size: 2.6rem;
    }

    .basic-page .basic-page-box .basic-page-con .bpc-top h3:not(:first-child) {
        margin-top: 40px;
    }

    .basic-page .basic-page-box .basic-page-con .bpc-top p {
        font-size: 1.8rem;
    }

    .basic-page .basic-page-box .basic-page-con h4 {
        font-size: 2.4rem;
    }

    .basic-page .basic-page-box .basic-page-con .sub-comment {
        margin-top: -10px;
        color: var(--color-gray);
    }

    .basic-page .basic-page-box .basic-page-con .business-introduce > li {
        margin-top: 15px;
    }

    .basic-page .basic-page-box .basic-page-con .business-introduce > li ul {
        margin-left: 20px;
    }

    .basic-page .basic-page-box .basic-page-con .business-introduce > li ul li {
        margin-top: 5px;
    }
}

@media screen and (min-width:979px) {
    .basic-page .basic-page-box .basic-page-con  {
        padding-left: 25px;
    }

    .basic-page .basic-page-box .basic-page-con .bpc-top {
        margin-bottom: 40px;
    }

    .basic-page .basic-page-box .basic-page-con .bpc-top p br {
        display: block !important;
    }

    .basic-page .basic-page-box .basic-page-con .bpcbox .step-imgbox {
        padding: 30px 20px;
        margin: 0;
    }

    .basic-page .basic-page-box .basic-page-con .bpcbox h5 {
        margin-bottom: 15px;
        font-size: 2rem;
    }
}

@media screen and (min-width:1139px) {
    .basic-page .basic-page-box .basic-page-con {
        font-size: 1.8rem;
    }

    .basic-page .basic-page-box .basic-page-con .bpc-top h3 {
        margin-bottom: 20px;
        font-size: 3.4rem;
    }

    .basic-page .basic-page-box .basic-page-con .bpc-top p {
        font-size: 2rem;
    }

    .basic-page .basic-page-box .basic-page-con .bpcbox .step-imgbox {
        padding: 40px 20px;
        margin: 0;
    }

    .basic-page .basic-page-box .basic-page-con .mapbox {
        margin: 0;
    }

    .basic-page .basic-page-box .basic-page-con .mapbox iframe {
        height: 450px;
    }
    
    .basic-page .basic-page-box .basic-page-con .business-introduce > li em {
        font-size: 2rem;
    }
    
    .basic-page .basic-page-box .basic-page-con .guide-txt {
        font-size: 1.4rem;
        color: var(--color-gray);
    }
}


/* 사전준비사항 */
.subscription-guide .guide-txt {
    margin-bottom: 20px;
}

.subscription-guide .note {
    margin-top: 20px;
    padding: 20px;
    background-color: var(--bg-background-gray);
}

.subscription-guide .note h4 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-family: var(--font-point);
}

.subscription-guide .note p {
    color: var(--color-gray);
}

@media screen and (min-width: 979px) {
    .subscription-guide .note {
        padding: 30px 40px;
    }

    .subscription-guide .note h4 {
        font-size: 2rem;
    }
}


/* 인터넷 청약신청 절차 */
.subscription-step .step-box .step-con {
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid var(--border-line);
}

.subscription-step .step-box .step-con h3 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px dashed var(--border-line);
    font-family: var(--font-point);
    font-size: 1.6rem;
}

.subscription-step .step-box .step-con h3 span {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    line-height: 36px;
    margin-right: 10px;
    background-color: var(--color-point);
    text-align: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.4rem;
}

.subscription-step .step-box .step-con h3 em {
    flex-grow: 1;
}

.subscription-step .step-box .step-con .txt-con {
    color: var(--color-light);
}

.subscription-step .note {
    margin-top: 20px;
    padding: 20px;
    background-color: var(--bg-background-gray);
}

.subscription-step .note h4 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-family: var(--font-point);
}

.subscription-step .note p {
    color: var(--color-gray);
}

@media screen and (min-width: 767px) {
    .subscription-step .step-box {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: stretch;
    }

    .subscription-step .step-box .step-con {
        width: 49%;
        margin-bottom: 2%;
    }
}

@media screen and (min-width: 979px) {
    .subscription-step .step-box .step-con {
        width: 32%;
        padding: 30px;
        margin-bottom: 2%;
        border-top: 1px solid var(--color-point);
    }

    .subscription-step .step-box .step-con h3 {
        font-size: 1.8rem;
    }

    .subscription-step .step-box .step-con h3 span {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1.6rem;
        font-family: var(--font-point-bold)
    }

    .subscription-step .note {
        padding: 30px 40px;
    }

    .subscription-step .note h4 {
        font-size: 2rem;
    }
}


/* 연습하기 // STEP */
.subscription-test .st-step {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 40px;
    border: 1px solid rgba(0,0,0,0.1);
    background-color: #fff;
}

.subscription-test .st-step .sts-con {
    position: relative;
    width: 20%;
    padding: 30px 20px;
}

.subscription-test .st-step .sts-con:not(:first-child)::after {
    position: absolute;
    top: 15px;
    left: 0px;
    bottom: 15px;
    width: 1px;
    background-color: rgba(0,0,0,0.1);
    content: '';
}

.subscription-test .st-step .sts-con dt {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    font-size: 2rem;
}

.subscription-test .st-step .sts-con dt span {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-right: 10px;
    background-color: var(--color-point);
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 1.6rem;
}

.subscription-test .st-step .sts-con dt em {
    font-family: var(--font-point);
}

.subscription-test .st-step .sts-con dt .edit-btn {
	position: absolute;
	bottom: 15px;
	right: 15px;
	width: 26px;
	height: 26px;
	line-height: 26px;
	background-color: var(--color-green);
	color: #fff;
	text-align: center;
	border-radius: 50%;
	font-size: 14px;
}

.subscription-test .st-step .sts-con.active {
    background-color: #333;
    color: #fff;
}

.subscription-test .st-step .sts-con.active dt span {
    background-color: var(--color-white);
    color: #333;
}


/* 연습하기 // 공통 */
.subscription-content h3 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.subscription-content h3 > em {
    display: block;
    font-family: var(--font-point);
}

.subscription-content h3 > span {
    display: block;
    margin-top: 5px;
    font-size: 1.6rem;
    color: var(--color-gray);
    font-weight: 400;
}

.s-check-txt {
    position: relative;
    padding-left: 100px;
}

.s-check-txt h4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: var(--color-point);
    color: #fff;
    text-align: center;
    border-radius: 50%;
    font-family: var(--font-point);
    font-size: 1.8rem;
}

.s-check-txt dl {
    display: table;
    width: 100%;
    border: 1px solid rgba(0,0,0,0.1);
    background-color: #fff;
}

.s-check-txt dl:not(:first-child) {
    margin-top: 5px;
}

.s-check-txt dl dt {
    display: table-cell;
    width: 120px;
    padding: 10px;
    background-color: #333;
    color: #fff;
    text-align: center;
    font-weight: 700;
}

.s-check-txt dl dd {
    display: table-cell;
    padding: 10px 20px;
}

.s-input-area {
    margin-top: 50px;
}

.s-input-area h4 {
    position: relative;
    margin-bottom: 20px;
}

.s-input-area h4 em {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-point);
}

.s-input-area h4 small {
    display: block;
    margin-top: 5px;
    color: var(--color-gray);
    font-size: 1.6rem;
}

.s-input-area h4 .right-btnbox {
    position: absolute;
    top: calc(50% - 15px);
    right: 0;
}

.s-input-area .plus-minus-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.s-input-area .plus-minus-box a {
    height: 34px;
    line-height: 32px;
    padding: 0 20px;
    margin: 0 3px;
    border: 1px solid var(--border-line);
    background-color: #fff;
    color: var(--color-light);
    border-radius: 17px;
    font-size: 14px;
}

.s-input-area .guide-comment {
    font-size: 1.4rem;
}


/* 연습하기 // 사회초년생 */
.freshman-choice {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 20px;
    border: 1px solid var(--border-line);
    background-color: #fff;
}

.freshman-choice h4 {
    flex-shrink: 0;
    width: 200px;
    margin-bottom: 10px;
    color: var(--color-point);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}

.freshman-choice ul {
    flex-grow: 1;
}

.freshman-choice ul li {
    width: 33.3333%;
    padding: 5px;
}

.freshman-choice ul li input {
    display: none;
}

.freshman-choice ul li input + label {
    width: 100%;
    padding: 20px;
    border: 1px solid rgba(var(--color-black-rgb),0.1);
    background-color: var(--bg-background-gray);
    border-radius: 5px;
}

.freshman-choice ul li input + label strong {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.freshman-choice ul li input + label strong span.ico {
    color: yellow;
    font-size: 2.4rem;
    opacity: 0;
}

.freshman-choice ul li input + label p {
    height: 50px;
    font-size: 1.4rem;
    color: var(--color-gray);
}

.freshman-choice ul li input:checked + label {
    background-color: var(--color-point);
    color: var(--color-white);
}

.freshman-choice ul li input:checked + label strong span.ico {
    opacity: 1;
}

.freshman-choice ul li input:checked + label p {
    color: var(--color-white);
}


/* 연습하기 // 서약서 */
.pledge h5 {
    margin-bottom: 20px;
}

.pledge h5 em {
    display: block;
    font-size: 2rem;
}

.pledge h5 small {
    display: block;
    margin-top: 5px;
    color: var(--color-gray);
    font-size: 1.4rem;
}

.pledge .pledge-box {
    height: 500px;
    padding: 20px;
    border: 1px solid var(--border-line);
    background-color: #fff;
    font-size: 14px;
}

.pledge .pledge-box.h300px {
    height: 300px;
}

.pledge .pledge-con:not(:first-child) {
    margin-top: 30px;
}

.pledge .pledge-con .basic-tbl th,
.pledge .pledge-con .basic-tbl td {
    font-size: 13px;
}

.pledge .pledge-con .basic-tbl.mini-tbl th {
    background-color: var(--bg-background-gray);
}

.agree-check-area {
    padding: 20px;
    border: 1px solid var(--border-line);
    background-color: #fff;
}


/* 연습하기 // 청약완료 */
.subscription-complete {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.subscription-complete .txt {
    text-align: center;
}

.subscription-complete .txt em {
    display: block;
    font-size: 2.4rem;
    font-family: var(--font-point);
}

.subscription-complete .txt span {
    font-size: 1.8rem;
}


/* 청약신청 // 휴대폰인증 */
.phone-cerfity {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.phone-cerfity .txt {
    text-align: center;
}

.phone-cerfity .txt em {
    display: block;
    font-size: 1.8rem;
    font-family: var(--font-point);
}

.phone-cerfity .txt strong {
    font-size: 2.4rem;
    font-weight: 700;
}


/* -------------------------------- */
@media screen and (min-width: 639px) {
}

@media screen and (min-width: 767px) {
}

@media screen and (min-width: 979px) {
}

@media screen and (min-width:1239px) {
}

@media screen and (min-width:1339px) {
}

@media screen and (min-width:1439px) {
}

@media screen and (min-width:1639px) {
}

@media screen and (min-width:1839px) {
}