<style>
    @charset "utf-8";
    /* Font */

    @import url(font.css);

    /* Guide
----------------------------------------------------------------------------------------------------------------------------------------------------------
	▶사이즈
	pc : 1160px
	tablet : 980px ~
	mobile : 768px ~ 320px

	▶미디어쿼리는 (주석으로 구분 되어있는)파트마다 각각 작성함.

*/

    /* Reset
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

    body,
    div,
    dl,
    dt,
    dd,
    ul,
    ol,
    li,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    pre,
    code,
    form,
    fieldset,
    legend,
    textarea,
    p,
    blockquote,
    th,
    td,
    input,
    select,
    textarea,
    button {
        margin: 0;
        padding: 0;
    }

    body,
    th,
    td,
    input,
    select,
    textarea,
    button {
        font-family: 'NotoSansKR', sans-serif;
        letter-spacing: -1px;
        font-weight: 300;
        font-size: 16px;
        color: #555;
    }

    dl,
    ul,
    ol,
    menu,
    li {
        list-style: none;
    }

    *,
    *:before,
    *:after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    :focus {
        outline: 0 !important;
    }

    iframe {
        border: none;
        width: 100%;
    }

    a {
        color: inherit;
        -webkit-transition: all .2s ease-out;
        -moz-transition: all .2s ease-out;
        transition: all .2s ease-out;
    }

    a:hover,
    a:focus,
    a:active {
        text-decoration: none;
        color: #d50050;
    }

    img {
        max-width: 100%;
    }

    textarea {
        max-width: 100%;
        resize: none;
    }

    @media only screen and (max-width: 768px) {

        body,
        th,
        td,
        input,
        select,
        textarea,
        button {
            font-size: 14px;
        }
    }

    @media only screen and (min-width: 320px) {
        body {
            overflow-x: hidden;
        }
    }

    .hidden {
        font-size: 0;
        line-height: 0;
        text-indent: -9999em;
        overflow: hidden;
    }


    /* Parallax
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

    .parallax {
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: 100% auto;
        width: 100%;
        background-size: cover;
        background-attachment: fixed;
    }


    /* Preloader
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

    .animationload {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #fff;
        z-index: 999999;
    }

    .loader {
        width: 200px;
        height: 200px;
        font-size: 24px;
        text-align: center;
        position: absolute;
        left: 50%;
        top: 50%;
        background-image: url(/images/basic_resp/img/preloader.gif);
        background-repeat: no-repeat;
        background-position: center;
        margin: -100px 0 0 -100px;
    }


    /* Back to top (탑 버튼)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

    .back-to-top {
        width: 40px;
        height: 40px;
        position: fixed;
        bottom: 10px;
        right: 20px;
        display: none;
        text-align: center;
        z-index: 10000;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        background: #6A6A82;
    }

    .back-to-top i {
        color: #fff;
        font-size: 15px;
        display: block;
        line-height: 33px;
    }


    /* Layoyt (레이아웃)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
    .con_title {
        display: none !important;
    }

    #wrapper {
        position: relative;
        width: 100%;
        min-width: 320px;
        height: 100%;
    }


    /* Header
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

    #header {
        position: relative;
        height: 100px;
        background: #fff;
        border-bottom: 1px solid #ddd;
    }

    #header h1 {
        float: left;
        padding-left: 30px;
        line-height: 0;
        font-size: 0;
        margin: 0;
    }

    #header h1 a {
        display: block;
        line-height: 100px;
        vertical-align: middle;
    }

    #header img {
        vertical-align: middle !important;
    }

    .nav-btn {
        z-index: 999;
        position: absolute;
        top: 35px;
        right: 32px;
        width: 35px;
        height: 29px;
        cursor: pointer;
    }

    .nav-btn span {
        position: absolute;
        left: 50%;
        display: inline-block;
        margin-left: -17.5px;
        width: 35px;
        height: 3px;
        background: #d50050;
        -webkit-transition: all .3s ease-out;
        -moz-transition: all .3s ease-out;
        transition: all .3s ease-out;
    }

    .nav-btn span:nth-child(1) {
        top: 0;
    }

    .nav-btn span:nth-child(2) {
        top: 13px;
    }

    .nav-btn span:nth-child(3) {
        top: 26px;
    }

    .nav-btn.nav-close span:nth-child(1) {
        top: 50%;
        transform: rotate(45deg);
    }

    .nav-btn.nav-close span:nth-child(2) {
        margin-left: 0;
        width: 0;
    }

    .nav-btn.nav-close span:nth-child(3) {
        top: 50%;
        transform: rotate(-45deg);
    }

    @media only screen and (min-width: 981px) {
        #header {
            height: 100px;
        }

        .nav-bg {
            z-index: 777;
            display: none;
            position: absolute;
            top: 100px;
            width: 100%;
            height: 132px;
            background: rgba(256, 256, 256, 0.9);
            border-bottom: 2px solid #d50050;
        }

        #nav {
            z-index: 888;
            float: right;
            margin-right: 99px;
        }

        .login-menu {
            float: right;
            font-size: 0;
            line-height: 0;
        }

        .login-menu li {
            display: inline-block;
            margin-left: 20px;
            line-height: 99px;
        }

        .navigation {
            float: right;
            margin-top: 37px;
        }

        .navigation>li {
            position: relative;
            float: left;
            width: 193px;
            text-align: center;
        }

        .navigation .main-menu {
            display: block;
            margin-bottom: 38px;
            width: 100%;
            font-weight: 400;
            font-size: 18px;
            color: #000;
        }

        .navigation .main-menu:hover {
            color: #d50050;
        }

        .navigation>li:hover .main-menu {
            color: #d50050;
        }

        .navigation .sub-menu {
            z-index: 888;
            display: none;
            position: absolute;
            top: 63px;
            left: 50%;
            margin-left: -93px;
            padding: 20px 0;
            width: 100%;
            text-align: center;
        }

        .navigation .sub-menu a {
            line-height: 30px;
            font-size: 16px;
            color: #777;
        }

        .navigation .sub-menu a:hover {
            text-decoration: underline;
            color: #d50050;
        }
    }

    @media only screen and (min-width: 981px) and (max-width: 1200px) {
        #header h1 {
            padding-left: 20px;
        }

        .nav-btn {
            right: 20px;
        }

        #nav {
            margin-right: 75px
        }

        .login-menu li:first-child {
            margin-left: 0;
        }

        .navigation>li {
            width: 120px;
        }

        .navigation .sub-menu {
            margin-left: -60px;
        }
    }

    @media only screen and (max-width: 980px) {
        #header {
            height: 65px;
        }

        #header h1 {
            padding-left: 20px;
        }

        #header h1 a {
            line-height: 65px;
        }

        .nav-btn {
            top: 18px;
            right: 20px;
        }

        .nav-btn.nav-close {
            position: fixed;
        }

        .nav-bg {
            z-index: 777;
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
        }

        #nav {
            z-index: 888;
            position: fixed;
            right: -260px;
            padding-top: 75px;
            width: 260px;
            height: 100%;
            background: #fff;
        }

        .login-menu {
            margin-bottom: 40px;
            padding: 0 20px;
            text-align: center;
            line-height: 0;
            font-size: 0;
        }

        .login-menu li {
            display: inline-block;
        }

        .login-menu li:first-child {
            margin-right: 25px;
        }

        .navigation .main-menu {
            display: block;
            margin-top: 20px;
            text-align: center;
            padding: 0 20px;
            width: 100%;
            font-weight: 400;
            font-size: 18px;
            color: #000;
        }

        .navigation>li:first-child .main-menu {
            margin-top: 0;
        }

        .navigation .active .main-menu {
            font-weight: 400;
            text-decoration: underline;
            color: #d50050;
        }

        .navigation .sub-menu {
            display: none;
            padding: 10px 0;
        }

        .navigation .sub-menu a {
            display: block;
            text-align: center;
            line-height: 30px;
            font-size: 16px;
            color: #777;
        }
    }

    @media only screen and (max-width: 768px) {

        .sub1-1,
        .sub1-2 {
            font-size: 14px !important;
        }

        .big-text {
            font-size: 18px !important;
        }

        #header h1 {
            padding-left: 10px;
        }

        #header h1 img {
            width: 200px;
        }

        .nav-btn {
            top: 20px;
            right: 10px;
            width: 30px;
            height: 25px
        }

        .nav-btn span {
            margin-left: -15px;
            width: 30px;
            height: 3px;
        }

        .nav-btn span:nth-child(1) {
            top: 0;
        }

        .nav-btn span:nth-child(2) {
            top: 11px;
        }

        .nav-btn span:nth-child(3) {
            top: 22px;
        }
    }


    /* Button (공통 버튼)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

    .btn {
        text-transform: uppercase;
        border-radius: 0;
        line-height: 24px;
    }

    .btn:focus,
    .btn:active {
        outline: none;
        color: #fff;
    }

    .btn-custom {
        border-radius: 3px;
        padding: 0.8em 1.8em;
        -webkit-transition: all .2s ease-out;
        -moz-transition: all .2s ease-out;
        transition: all .2s ease-out;
        text-transform: uppercase;
        background-color: #e65b43;
        border-color: #e65b43;
        color: #fff;
    }

    .btn-custom:hover,
    .btn-custom:focus {
        background-color: #00208e;
        border-color: #00208e;
        color: #fff;
    }

    .btn-custom-outline {
        border-radius: 3px;
        padding: 0.8em 1.8em;
        color: #fff;
        -webkit-transition: all .2s ease-out;
        transition: all .2s ease-out;
        text-transform: uppercase;
        background-color: transparent;
        border-color: #fff;
    }

    .btn-custom-outline:hover,
    .btn-custom-outline:focus {
        color: #fff;
        background-color: rgba(255, 255, 255, .5);
    }

    .btn-bar a {
        margin-right: 10px;
    }

    .form-control {
        box-shadow: none;
        -webkit-box-shadow: none;
        border-radius: 3px;
        height: 38px;
    }

    .form-control:focus {
        outline: none;
        box-shadow: none;
        -webkit-box-shadow: none;
        border-color: #e65b43;
    }

    @media only screen and (max-width: 980px) {}


    /* Footer (하단메시지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

    #footer {
        padding: 50px 20px;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        background: #24242b;
        color: #8e8e91;
    }

    .foot_logo {
        margin-bottom: 40px;
    }

    .footer-menu {
        margin-bottom: 15px;
        font-size: 0;
        line-height: 0;
    }

    .footer-menu li {
        display: inline-block;
        margin-left: 10px;
        padding-left: 10px;
        line-height: 8px;
        border-left: 1px solid #8e8e91;
        color: #8e8e91;
    }

    .footer-menu li:first-child {
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
    }

    .footer-menu li a {
        line-height: 8px;
        letter-spacing: 0;
        font-weight: 400;
        font-size: 14px;
        color: #8e8e91;
    }

    .footer-info {
        margin: 0 auto;
        width: 980px;
        letter-spacing: 0;
        font-size: 14px;
        color: #8e8e91;
    }

    .footer-info span {
        color: #6b6b6b;
    }

    .footer-info>p {
        margin-top: 10px;
    }

    @media only screen and (max-width:980px) {
        .footer-info {
            width: 100%;
        }
    }

    @media only screen and (max-width:768px) {
        #footer {
            padding: 35px 10px;
        }

        .foot_logo {
            margin-bottom: 30px;
        }

        .foot_logo img {
            width: 200px;
        }
    }

    @media only screen and (max-width:480px) {
        .footer-menu li {
            margin-left: 6px;
            padding-left: 6px;
        }

        .footer-menu li a {
            font-size: 13px;
        }

        .footer-info {
            font-size: 13px;
        }
    }


    /* Main Visual (메인이미지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

    .main-visual {
        z-index: 666;
        width: 100%;
        height: 690px;
        background: url('/images/kor15r-18-0402/main/main_visual.jpg') no-repeat 55% bottom/cover;
    }

    .main-visual>div {
        padding-top: 120px;
        margin: 0 auto;
        width: 1200px;
    }

    .main-visual p {
        line-height: 1.2;
        color: #000;
        word-break: keep-all;
    }

    .main-visual p strong {
        color: #d50050;
        color: #000;
    }

    .main-visual p br {
        display: none;
    }

    .main-visual .intro-copy {
        font-size: 32px;
        font-weight: 400;
    }

    .main-visual .main-copy {
        margin-bottom: 20px;
        font-family: 'Raleway', sans-serif;
        font-size: 55px;
        font-weight: 400;
    }

    .main-visual .main-copy strong {
        font-weight: 600;
    }

    .main-visual .sub-copy {
        font-size: 22px;
    }

    .main-visual .sub-copy strong {
        font-weight: 500;
    }

    @media only screen and (max-width:1200px) {
        .main-visual>div {
            padding: 120px 20px 0;
            width: 100%;
        }
    }

    @media only screen and (max-width:980px) {
        .main-visual {
            height: 400px;
        }

        .main-visual>div {
            padding-top: 40px;
        }

        .main-visual .intro-copy {
            font-size: 25px;
        }

        .main-visual .main-copy {
            margin-bottom: 10px;
            font-size: 42px;
        }

        .main-visual .sub-copy {
            font-size: 19px;
        }
    }

    @media only screen and (max-width:768px) {
        .main-visual {
            background-position: 65% bottom;
        }

        .main-visual .intro-copy {
            font-size: 23px;
        }

        .main-visual .main-copy {
            margin-bottom: 10px;
            font-size: 35px;
        }

        .main-visual .sub-copy {
            font-size: 16px;
        }
    }

    @media only screen and (max-width:480px) {
        .main-visual {
            background-position: 75% top;
        }

        .main-visual>div {
            padding: 25px 10px 0;
        }

        .main-visual p {
            text-align: center;
        }

        .main-visual .intro-copy {
            font-size: 20px;
        }

        .main-visual .main-copy {
            margin-bottom: 5px;
            font-size: 27px;
        }

        .main-visual .sub-copy {
            font-size: 13px;
        }
    }


    /* Main Contents (메인 컨텐츠)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

    .main-contents {
        background: #f3f3f3;
    }

    /* 퀵배너 3개 */

    .quick-banner {
        position: relative;
        top: -70px;
        margin: 0 auto;
        width: 1200px;
        line-height: 0;
        font-size: 0;
    }

    .quick-banner ul {
        margin: 0 -7.5px;
    }

    .quick-banner li {
        position: relative;
        display: inline-block;
        margin: 0 7.5px;
        padding-bottom: calc(33.33% - 15px);
        width: calc(33.33% - 15px);
        overflow: hidden;
        text-align: center;
        background: #fff;
    }

    .quick-banner li:nth-child(1) {
        background: #fff url('/images/kor15r-18-0402/main/main_icon01.gif') no-repeat center 20%;
    }

    .quick-banner li:nth-child(2) {
        background: #fff url('/images/kor15r-18-0402/main/main_icon02.gif') no-repeat center 20%;
    }

    .quick-banner li:nth-child(3) {
        background: #fff url('/images/kor15r-18-0402/main/main_icon03.gif') no-repeat center 20%;
    }

    .quick-banner li>div {
        position: absolute;
        top: 60%;
        left: 0;
        width: 100%;
        height: 40%;
    }

    .quick-banner .go-link {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        text-indent: -9999em;
        overflow: hidden;
    }

    .quick-banner .go-link:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        display: block;
        width: 0;
        height: 0;
        -webkit-transition: all .3s ease-out;
        -moz-transition: all .3s ease-out;
        transition: all .3s ease-out;
    }

    .quick-banner .go-link:after {
        position: absolute;
        bottom: 0;
        right: 0;
        content: "";
        display: block;
        width: 0;
        height: 0;
        -webkit-transition: all .3s ease-out;
        -moz-transition: all .3s ease-out;
        transition: all .3s ease-out;
    }

    .quick-banner .go-link:hover:before {
        width: calc(100% + 2px);
        height: calc(100% + 2px);
        border-left: 5px solid #d50050;
        border-top: 5px solid #d50050;
    }

    .quick-banner .go-link:hover:after {
        width: calc(100% + 2px);
        height: calc(100% + 2px);
        border-right: 5px solid #d50050;
        border-bottom: 5px solid #d50050;
    }

    .quick-banner h3 {
        margin-bottom: 10px;
        font-weight: 400;
        font-size: 25px;
        line-height: 1;
        color: #000;
    }

    .quick-banner p {
        font-size: 15px;
        line-height: 1.4;
        color: #777;
    }

    @media only screen and (max-width:1200px) {
        .quick-banner {
            width: calc(100% - 40px);
        }

        .quick-banner li:nth-child(1),
        .quick-banner li:nth-child(2),
        .quick-banner li:nth-child(3) {
            background-size: 45%;
        }
    }

    @media only screen and (max-width:980px) {
        .quick-banner h3 {
            margin-bottom: 15px;
            font-size: 20px;
        }

        .quick-banner p {
            display:none;
        }
    }

    @media only screen and (max-width:768px) {
        .contact-us span {padding:13px !important;}
        #footer h3 {
            font-size: 18px;
        }

        .quick-banner {
            top: -30px;
            width: calc(100% - 20px);
        }

        .quick-banner ul {
            margin: 0 -5px;
        }

        .quick-banner li {
            margin: 0 5px;
            padding-bottom: calc(33.33% - 10px);
            width: calc(33.33% - 10px);
        }

        .quick-banner h3 {
            margin-bottom: 10px;
            font-size: 18px;
        }

        .quick-banner p {
            font-size: 13px;
            display:none;
        }
    }

    @media only screen and (max-width:512px) {
        .quick-banner {
            top: 0;
        }

        .quick-banner ul {
            margin: 0;
            padding: 5px 0;
        }

        .quick-banner li {
            margin: 5px 0;
            padding-bottom: 100%;
            width: 100%;
        }

        .quick-banner h3 {
            margin-bottom: 20px;
            font-size: 25px;
        }

    }

    /* Contact Us */

    .contact-us {
        padding: 60px 0;
        width: 100%;
        background: url('/images/kor15r-18-0402/main/main_contact_bg.jpg') no-repeat center center/cover;
        text-align: center;
        color: #fff;
    }

    .contact-us h3 {
        position: relative;
        display: inline-block;
        margin-bottom: 20px;
        font-weight: 300;
    }

    .contact-us a {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        text-indent: -9999em;
        overflow: hidden;
    }

    .contact-us a:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        display: block;
        width: 0;
        height: 0;
        -webkit-transition: all .3s ease-out;
        -moz-transition: all .3s ease-out;
        transition: all .3s ease-out;
    }

    .contact-us a:after {
        position: absolute;
        bottom: 0;
        right: 0;
        content: "";
        display: block;
        width: 0;
        height: 0;
        -webkit-transition: all .3s ease-out;
        -moz-transition: all .3s ease-out;
        transition: all .3s ease-out;
    }

    .contact-us a:hover:before {
        width: calc(100% + 2px);
        height: calc(100% + 2px);
        border-left: 5px solid #d50050;
        border-top: 5px solid #d50050;
    }

    .contact-us a:hover:after {
        width: calc(100% + 2px);
        height: calc(100% + 2px);
        border-right: 5px solid #d50050;
        border-bottom: 5px solid #d50050;
    }

    .contact-us span {
        border: 1px solid #ddd;
        padding: 13px 101px;
        display: inline-block;

    }

    .contact-us p {
        font-size: 18px;

    }

    @media only screen and (min-width:1200px) {
        .contact-us>div {
            margin: 0 auto;
            width: 1200px;
        }
    }

    @media only screen and (max-width:768px) {
        .contact-us {
            padding: 40px 30px;
        }

        .contact-us h2 {
            font-size: 30px;
        }

        .contact-us h2+p {
            margin: 5px 0 30px;
            font-size: 14px;
        }
    }

</style>
