:root {
    --pri-color: #885D3A;
    --white-color: #ffffff;
    --black-color: #000000;
    --tit_des-color: #444444;
}



body {
    color: var(--black-color);
}

.default {
    padding: 100px 0;
    overflow: hidden;
}

footer {
    padding: 80px 0;
}

.inner {
    max-width: 1410px;
    margin: 0 auto;
}

.tit {
    max-width: 1410px;
    margin: 0 auto 40px auto;
}

.tit h2 {
    text-align: center;
    margin: 0 0 24px 0;
    font-size: 45px;
    font-weight: 700;
    line-height: 45px;
    font-family: "Montserrat";
}

.tit p {
    color: #222;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
}

.tit h2 span {
    color: var(--pri-color);
    font-family: "Montserrat";
}

.voucher_tit p {
    text-align: left;
}

.voucher_tit h2 {
    font-size: 40px;
    line-height: 40px;
}

.btn_w a {
    position: relative;
    z-index: 9;
    margin: 0 auto;
    display: block;
    padding: 0 0;
    width: 190px;
    line-height: 48px;
    color: #fff;
    border: 1px solid #fff;
    text-align: center;

    font-size: 16px;
    font-weight: 600;
    transition: 0.5s;
    font-family: "Montserrat";
}

.btn_w a:hover {
    color: var(--black-color);
    transition: 0.5s;
}

.btn_w a::after {
    content: '';
    z-index: -1;
    position: absolute;
    right: 0;
    top: 0;

    bottom: 0;
    width: 0%;
    background: var(--white-color);

    transition: 0.5s;
}

.btn_w a:hover::after {
    right: auto;
    left: 0;
    width: 100%;
    transition: 0.5s;
}


.btn_b a {
    position: relative;
    margin: 0 auto;
    display: block;
    padding: 0 0;
    width: 190px;
    line-height: 48px;
    color: #444;
    border: 1px solid #ddd;
    text-align: center;

    font-size: 16px;
    font-weight: 600;
    font-family: "Montserrat";
}

.btn_b a:hover {
    color: var(--white-color);
    transition: 0.5s;
}

.btn_b a::after {
    content: '';
    z-index: -1;
    position: absolute;
    right: 0;
    top: 0;

    bottom: 0;
    width: 0%;
    background: #444;

    transition: 0.5s;
}

.btn_b a:hover::after {
    right: auto;
    left: 0;
    width: 100%;
    transition: 0.5s;
}

.sub_visual {
    position: relative;
    height: 600px;
}

.sub_visual .slg {
    z-index: 9;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.sub_visual .slg h2 {
    font-size: 48px;
    line-height: 48px;
    color: var(--white-color);
    font-weight: 700;
    text-align: center;
    font-family: "Montserrat";
}

.sub_visual .slg h2 span {
    font-weight: 300;
}


/* 개인정보수집 */
.agree_pop {
    display: none;
    width: 500px;
    box-sizing: border-box;
    position: fixed;
    left: 50%;
    margin-left: -250px;
    top: 200px;
    z-index: 10000;
    overflow: hidden;
}

.agree_pop:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.black {
    font-weight: 800;
}

.agree_pop .title {
    width: 500px;
    background-color: #333;
    padding: 10px 20px;
    box-sizing: border-box;
    color: #fff;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
    line-height: 20px;
    text-align: left;
    font-size: 17px;
}

.agree_pop .pop-esc {
    cursor: pointer;
    background-color: #000;
    color: #fff;
    border: 0;
    padding: 0 15px;
    font-size: 20px;
    right: 0;
    position: absolute;
    top: 0;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
    line-height: 40px;
}

.pop-content {
    padding: 30px 20px;
    font-size: 12px;
    background-color: #fff;
    overflow-y: hidden;
    border: 1px solid #ddd;
    line-height: 1.3;
    color: #5d5d5d;
    text-align: left;
}

@media screen and (max-width: 540px) {
    .agree_pop {
        width: 350px;
        left: 50%;
        margin-left: -175px;
    }

    .agree_pop .title {
        font-size: 16px;
    }

    .pop-content {
        padding: 15px;
    }

}

@media(max-width: 1530px) {
    .inner {
        padding: 0 40px;
    }
}

@media(max-width: 1024px) {
    .inner {
        padding: 0 30px;
    }

    .tit {
        margin: 0 auto 32px auto;
        padding: 0 30px;
    }

    .tit h2 {
        margin: 0 0 16px 0;
        font-size: 32px;
        line-height: 32px;
    }

    .tit p {
        color: var(--black-color);
        font-size: 16px;
        line-height: 24px;
    }

    .voucher_tit h2 {
        text-align: center;
        margin: 0 0 16px 0;
        font-size: 32px;
        line-height: 32px;
    }

    .btn_w a {
        width: 160px;
        line-height: 40px;
        font-size: 16px;
    }

    .btn_b a {
        width: 160px;
        line-height: 40px;
        font-size: 16px;
    }

    .sub_visual {
        height: 50vh;
    }

    .sub_visual .slg h2 {
        font-size: 32px;
        line-height: 32px;
        color: var(--white-color);
        font-weight: 700;
    }
}

@media(max-width:769px) {
    .inner {
        padding: 0 16px;
    }

    .tit {
        padding: 0 16px;
    }

    .tit h2 {
        margin: 0 0 12px 0;
        font-size: 24px;
        line-height: 24px;
    }

    .tit p {
        color: var(--black-color);
        font-size: 16px;
        line-height: 22px;
    }

    .voucher_tit h2 {
        text-align: center;
        margin: 0 0 12px 0;
        font-size: 24px;
        line-height: 24px;
    }

    .default,
    .footer {
        padding: 60px 0;
    }

    .sub_visual .slg h2 {
        font-size: 28px;
        line-height: 28px;
        color: var(--white-color);
        font-weight: 700;
    }
}

@media (max-width: 480px) {
    .tit {
        margin: 0 auto 24px auto;
    }

    .tit h2 {
        margin: 0 0 12px 0;
        font-size: 18px;
        line-height: 18px;
    }

    .tit p {
        color: var(--black-color);
        font-size: 14px;
        line-height: 20px;
    }

    .voucher_tit h2 {
        text-align: center;
        margin: 0 0 12px 0;
        font-size: 20px;
        line-height: 20px;
    }

    .btn_w a {
        width: 120px;
        line-height: 32px;
        font-size: 14px;
    }

    .btn_b a {
        width: 120px;
        line-height: 32px;
        font-size: 14px;
    }

    .default,
    .footer {
        padding: 40px 0;
    }

    .sub_visual .slg h2 {
        font-size: 20px;
        line-height: 20px;
        color: var(--white-color);
        font-weight: 700;
    }
}

/* 개인정보수집 */
.agree_pop {
    display: none;
    width: 500px;
    box-sizing: border-box;
    position: fixed;
    left: 50%;
    margin-left: -250px;
    top: 200px;
    z-index: 10000;
    overflow: hidden;
}

.agree_pop:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.black {
    font-weight: 800;
}

.agree_pop .title {
    width: 500px;
    background-color: #333;
    padding: 10px 20px;
    box-sizing: border-box;
    color: #fff;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
    line-height: 20px;
    text-align: left;
    font-size: 17px;
}

.agree_pop .pop-esc {
    cursor: pointer;
    background-color: #000;
    color: #fff;
    border: 0;
    padding: 0 15px;
    font-size: 20px;
    right: 0;
    position: absolute;
    top: 0;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
    line-height: 40px;
}

.pop-content {
    padding: 30px 20px;
    font-size: 12px;
    background-color: #fff;
    overflow-y: hidden;
    border: 1px solid #ddd;
    line-height: 1.3;
    color: #5d5d5d;
    text-align: left;
}

@media (max-width: 540px) {
    .agree_pop {
        width: 350px;
        left: 50%;
        top: 150px;
        margin-left: -175px;
    }

    .agree_pop .title {
        font-size: 16px;
    }

    .pop-content {
        padding: 15px;
    }

}

@media (max-width: 400px) {
    .agree_pop {
        width: 320px;
        left: 50%;

        margin-left: -162px;
    }
}