@charset "UTF-8";
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");

:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@keyframes bgAniWidth {
    0% {
        width: 60%;
        left: calc(50% - 30%);
        opacity: 0;
    }

    to {
        width: 100%;
        left: 0;
        opacity: 1;
    }
}

@-webkit-keyframes bgAniWidth {
    0% {
        width: 60%;
        left: calc(50% - 30%);
    }

    to {
        width: 100%;
        left: 0;
    }
}

.bgAniWidth {
    -webkit-animation-name: bgAniWidth;
    animation-name: bgAniWidth;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInBig {
    from {
        -webkit-transform: translateX(-50%) scale(1.2);
        transform: translateX(-50%) scale(1.2);
    }

    to {
        -webkit-transform: translateX(-50%) scale(1);
        transform: translateX(-50%) scale(1);
    }
}

@keyframes fadeInBig {
    from {
        -webkit-transform: translateX(-50%) scale(1.2);
        transform: translateX(-50%) scale(1.2);
    }

    to {
        -webkit-transform: translateX(-50%) scale(1);
        transform: translateX(-50%) scale(1);
    }
}

.fadeInBig {
    -webkit-animation-name: fadeInBig;
    animation-name: fadeInBig;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(20%, 0, 0);
        transform: translate3d(20%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(20%, 0, 0);
        transform: translate3d(20%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-300px, 0, 0);
        transform: translate3d(-300px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-300px, 0, 0);
        transform: translate3d(-300px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@keyframes brAni {
    0% {
        border-top-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    to {
        border-top-left-radius: 100px;
        border-bottom-right-radius: 100px;
    }
}

@media screen and (max-width: 768px) {
    @-webkit-keyframes brAni {
        0% {
            border-top-left-radius: 0;
            border-bottom-right-radius: 0;
        }

        to {
            border-top-left-radius: 50px;
            border-bottom-right-radius: 50px;
        }
    }

    @keyframes brAni {
        0% {
            border-top-left-radius: 0;
            border-bottom-right-radius: 0;
        }

        to {
            border-top-left-radius: 50px;
            border-bottom-right-radius: 50px;
        }
    }
}

@-webkit-keyframes brAni {
    0% {
        border-top-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    to {
        border-top-left-radius: 100px;
        border-bottom-right-radius: 100px;
    }
}

@media screen and (max-width: 768px) {
    0% {
        border-top-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    to {
        border-top-left-radius: 100px;
        border-bottom-right-radius: 100px;
    }
}

.brAni {
    -webkit-animation-name: brAni;
    animation-name: brAni;
}

@-webkit-keyframes scaleDown {
    from {
        transform: scale(0.9);
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    to {
        transform: scale(1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes scaleDown {
    from {
        transform: scale(0.9);
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    to {
        transform: scale(1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.scaleDown {
    -webkit-animation-name: scaleDown;
    animation-name: scaleDown;
}

/* Font */
/* Guide 
----------------------------------------------------------------------------------------------------------------------------------------------------------

▶사이즈
pc : 1200px
tablet : 980px ~
mobile : 767px ~ 320px

▶미디어쿼리는 (주석으로 구분 되어있는)파트마다 각각 작성함.

*/
/* Reset 
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
html {
    font-size: 62.5%;
}

@media screen and (max-width: 768px) {
    html {
        font-size: 50%;
    }
}

/* ex) 폰트사이즈 16px은 1.6rem */
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-size: 1.6rem;
    color: #333;
}

dl,
ul,
ol,
menu,
li {
    list-style: none;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.2;
    letter-spacing: -0.2px;
}

:focus {
    outline: 0 !important;
}

iframe {
    border: none;
    width: 100%;
}

a {
    color: inherit;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

a:hover,
a:focus,
a:active,
a:link {
    text-decoration: none !important;
    color: inherit;
}

img {
    max-width: 100%;
}

textarea {
    max-width: 100%;
    resize: none;
}

body {
    overflow-x: hidden;
}

@media only screen and (min-width: 320px) {
    body {
        overflow-x: hidden;
    }
}

.hidden {
    font-size: 0;
    line-height: 0;
    text-indent: -9999em;
    overflow: hidden;
}

/* 변수선언
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
:root {
    --blue: #212a91;
    --sky_blue: #4bb8b5;
    --yellow: #ffee00;
    --black: #333;
    --gray: #888;
    --gray2: #666;
    --br_color: #d8dee5;
}

.xi-icon:after {
    font-family: 'xeicon' !important;
}

/* 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 {
    display: block;
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    text-align: center;
    z-index: 10000;
    border-radius: 23px;
    background: #fff;
    -webkit-box-shadow: 0 6px 30px rgba(0, 0, 0, 0.03);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--br_color);
}

.back-to-top i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #303030;
    font-size: 25px;
}

@media screen and (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        border-radius: 17px;
    }

    .back-to-top i {
        font-size: 22px;
    }
}

/* Layoyt (레이아웃)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#wrapper {
    position: relative;
    width: 100%;
    min-width: 340px;
    height: 100%;
    overflow-x: hidden;
}

.login-bar {
    padding: 21px 0;
    text-align: center;
    z-index: 999;
    position: relative;
}

.login-bar li {
    display: inline-block;
    position: relative;
    margin-left: 10px;
    border-left: 1px solid #ddd;
    height: 23px;
    border: 1px solid #525353;
    border-radius: 11px;
    margin-bottom: 10px;
}

.login-bar li a {
    font-size: 12px;
    line-height: 23px;
    padding: 0 14px;
    color: #525353;
    font-weight: 500;
}

.login-bar .material-icons {
    display: block;
    position: absolute;
    right: 6px;
    top: 2px;
    font-size: 18px;
    color: #fff;
}

.login-bar li:first-child {
    padding-right: 12px;
    background-color: #0b7c02;
    border: 1px solid #1c9e75;
}

.login-bar li:first-child a {
    display: block;
    width: 55px;
    color: #fff;
}

.login-bar li ul {
    position: absolute;
    left: -11px;
    top: 31px;
}

.login-bar li ul li {
    padding-right: 12px;
}

.login-bar li ul li a {
    display: block;
    margin-bottom: 38px;
    width: 55px;
}

.login-bar .lang_list {
    display: none;
    position: absolute;
    background-color: #000;
    width: 71px;
    left: -3px;
    border-radius: 10px;
    padding: 5px 0;
    top: -1px;
}

.login-bar .lang_list dd a {
    color: #fff;
    font-weight: 400;
    position: relative;
    line-height: 26px;
}

.login-bar .lang_list dd a i {
    color: #fff !important;
    right: -8px !important;
    top: 5px !important;
}

/* Header
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    height: 140px;
    width: 100%;
    z-index: 1000;
    padding: 0 5%;
}

#header > div.inner {
    position: relative;
    width: 100%;
    height: 140px;
    margin: 0 auto;
}

#header #L_SITE_LOGO {
    position: absolute;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 231px;
    height: 14rem;
}

#header #L_SITE_LOGO h1 a img {
    display: none;
}

#header #L_SITE_LOGO h1 a {
    width: 231px;
    height: 40px;
    display: block;
    background: url(/images/kor16r-22-0457/common/logo_w.png) no-repeat 0 0;
    background-size: 100% auto;
}

#header #nav {
    width: 1260px;
    height: 140px;
    margin: 0 auto;
    z-index: 1000;
}

#header #nav .navigation {
    opacity: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 75%;
    -webkit-transition: all 1s;
    transition: all 1s;
}

#header #nav .navigation:after {
    content: '';
    display: inline-block;
    clear: both;
}

#header #nav .navigation li {
    position: relative;
    width: 16.6%;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

#header #nav .navigation li > a {
    position: relative;
    display: inline-block;
    width: 100%;
    line-height: 137px;
    padding-top: 3px;
}

#header #nav .navigation li > a span {
    position: relative;
    display: inline-block;
    font-size: 2.2rem;
    color: #fff;
    font-weight: 500;
}

#header #nav .navigation li > a span:after {
    content: "";
    display: block;
    position: absolute;
    top: -0.5rem;
    right: -0.8rem;
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

#header #nav .navigation li > a:hover {
    text-decoration: none;
}

#header #nav .navigation li > a:hover span:after {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

#header #nav .navigation li .sub-menu {
    position: absolute;
    top: 140px;
    left: 0;
    width: 100%;
    -webkit-transition: all 0s 0s;
    transition: all 0s 0s;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    padding-top: 30px;
}

#header #nav .navigation li .sub-menu li {
    position: relative;
    width: 100%;
    float: none;
    padding: 0;
    text-align: center;
}

#header #nav .navigation li .sub-menu a {
    display: block;
    width: 100%;
    font-size: 1.6rem;
    color: var(--gray2);
    font-weight: 400;
    line-height: 2rem;
    padding: 10px 0;
}

#header #nav .navigation li .sub-menu a:hover {
    color: var(--blue);
}

#header.sub_page #L_SITE_LOGO h1 a {
    background: url(/images/kor16r-22-0457/common/logo.png) no-repeat;
    background-size: 100% auto;
}

#header.sub_page #nav .navigation li.gnb1,
#header.sub_page #nav .navigation li.gnb2,
#header.sub_page #nav .navigation li.gnb3,
#header.sub_page #nav .navigation li.gnb4 {
    width: 16.6%;
}

#header.sub_page #nav .navigation li > a span {
    color: var(--black);
}

#header.sub_page #nav .navigation li .sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transition:
        height 0.5s ease-in-out,
        opacity 0.5s ease-in-out 0.2s;
    transition:
        height 0.5s ease-in-out,
        opacity 0.5s ease-in-out 0.2s;
}

#header.sub_page:before {
    content: '';
    display: block;
    position: absolute;
    top: 140px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e5e5e5;
}

#header .nav-bg {
    position: absolute;
    top: -440px;
    left: -6%;
    width: 112%;
    height: 0;
    background: #fff;
    height: 240px;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 0.5;
    z-index: -1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

#header.scroll_on {
    background: #fff;
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

#header.scroll_on #L_SITE_LOGO h1 a {
    background: url(/images/kor16r-22-0457/common/logo.png) no-repeat 0 0;
    background-size: 100% auto;
}

#header.scroll_on #nav .navigation li > a span {
    color: var(--black);
}

#header.scroll_on .util-menu ul > li:first-child {
    border-right: 1px solid #e5e5e5;
}

#header.scroll_on .util-menu ul > li:first-child a:before {
    color: var(--gray2);
}

#header.scroll_on .util-menu ul > li a {
    color: var(--gray2);
}

#header.sub_page .nav-bg {
    top: 0;
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    opacity: 1;
}

#header .util-menu {
    position: absolute;
    top: 62px;
    right: 0;
}

#header .util-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#header .util-menu ul > li a {
    position: relative;
    display: inline-block;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 500;
    line-height: 1;
    padding: 0 10px;
}

#header .util-menu ul > li a:hover {
    text-decoration: none;
}

#header .util-menu ul > li:first-child {
    border-right: 1px solid #fff;
}

#header .util-menu ul > li:first-child a {
    padding-left: 25px;
}

#header .util-menu ul > li:first-child a:before {
    content: "\e9f5";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    font-size: 2.6rem;
    color: #fff;
    font-family: "xeicon";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#header.sub_page .util-menu ul > li:first-child {
    border-right: 1px solid #e5e5e5;
}

#header.sub_page .util-menu ul > li:first-child a:before {
    color: var(--gray2);
}

#header.sub_page .util-menu ul > li a {
    color: var(--gray2);
}

#header .nav-btn {
    display: none;
}

@media screen and (max-width: 1500px) {
    #header #L_SITE_LOGO {
        width: 180px;
    }

    #header #L_SITE_LOGO h1 a {
        width: 180px;
        height: 32px;
    }
}

@media screen and (max-width: 1320px) {
    #header #L_SITE_LOGO {}

    #header > div.inner {
        height: 100px;
    }

    #header #L_SITE_LOGO {
        height: 100px;
    }

    #header #nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100%;
        background: #fff;
    }

    #header #nav .navigation {
        width: 100%;
        padding-top: 100px;
        display: none;
        opacity: 0;
    }

    #header #nav .navigation.navigation-open {
        opacity: 1;
        display: block;
    }

    #header #nav .navigation li {
        float: none;
        width: 100% !important;
        text-align: left;
        border-top: 1px solid #e7e7e7;
    }

    #header #nav .navigation li:last-child {
        border-bottom: 1px solid #e7e7e7;
    }

    #header #nav .navigation li > a {
        position: relative;
        padding: 20px 15px;
        line-height: 1;
    }

    #header #nav .navigation li > a span {
        font-size: 1.8rem;
        color: var(--black);
    }

    #header #nav .navigation li > a span:after {
        display: none;
    }

    #header #nav .navigation li > a.main-menu:before {
        font-size: 2rem;
        font-family: "xeicon";
        content: "\e914";
        position: absolute;
        top: 50%;
        right: 30px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        font-weight: 400;
        color: var(--black);
    }

    #header #nav .navigation li.active > a.main-menu:before {
        content: "\e91b";
    }

    #header #nav .navigation li.active .sub-menu {
        position: relative;
        top: unset;
        padding: 10px 0;
        background: #f2f2f2;
        opacity: 1;
        visibility: visible;
    }

    #header #nav .navigation li.active .sub-menu li {
        border: 0 !important;
        text-align: left;
    }

    #header #nav .navigation li.active .sub-menu li a {
        padding: 12px 15px;
    }

    #header .util-menu {
        display: block;
        top: 40px;
        right: unset;
        left: 20px;
    }

    #header .util-menu ul > li:first-child {
        border-right: 1px solid #e5e5e5;
    }

    #header .util-menu ul > li:first-child a:before {
        color: var(--gray2);
    }

    #header .util-menu ul > li a {
        color: var(--gray2);
    }

    #header .nav-btn {
        display: block;
        position: fixed;
        top: 35px;
        right: 5%;
        z-index: 10000;
        height: 30px;
        -webkit-transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
        transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
        cursor: pointer;
    }

    #header .nav-btn span {
        display: block;
        width: 28px;
        height: 3px;
        background: #fff;
        margin: 4px auto;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    #header .nav-btn.nav-close {
        right: 30px;
    }

    #header .nav-btn.nav-close span {
        background: var(--black);
    }

    #header .nav-btn.nav-close span:first-child {
        -webkit-transform: translateY(7px) rotate(45deg);
        transform: translateY(7px) rotate(45deg);
    }

    #header .nav-btn.nav-close span:nth-child(2) {
        opacity: 0;
    }

    #header .nav-btn.nav-close span:last-child {
        -webkit-transform: translateY(-7px) rotate(-45deg);
        transform: translateY(-7px) rotate(-45deg);
    }

    #header .nav-bg {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.7);
        opacity: 1;
        -webkit-box-shadow: none;
        box-shadow: none;
        z-index: 50;
        display: none;
    }

    #header.scroll_on {
        height: 100px;
    }

    #header.scroll_on .nav-btn span {
        background: var(--black);
    }
}

/* 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 0.2s ease-out;
    transition: all 0.2s ease-out;
    text-transform: uppercase;
    background-color: #509591;
    border-color: #509591;
    color: #fff;
}

.btn-custom:hover,
.btn-custom:focus {
    background-color: #447774;
    border-color: #447774;
    color: #fff;
}

.btn-custom-outline {
    border-radius: 3px;
    padding: 0.8em 1.8em;
    color: #fff;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.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, 0.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: #333;
}

/* Footer (하단메시지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#footer {
    position: relative;
    width: 95%;
    margin: 15rem 0 0 5%;
    background: #6d6e70;
    border-top-left-radius: 30px;
    padding: 9rem 0;
}

#footer .footer-area {
    position: relative;
    width: 1260px;
    margin: 0 auto;
}

#footer .foot-agree {
    margin-bottom: 6rem;
}

#footer .foot-agree ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#footer .foot-agree ul li {
    padding: 0 1.5rem;
}

#footer .foot-agree ul li:not(:last-child) {
    border-right: 1px solid #fff;
}

#footer .foot-agree ul li:first-child {
    padding-left: 0;
}

#footer .foot-agree ul li:last-child {
    padding-right: 0;
}

#footer .foot-agree ul li a {
    display: block;
    font-size: 1.7rem;
    font-weight: 500;
    color: #fff;
    line-height: 1;
}

#footer .foot-sns {
    position: absolute;
    top: 0;
    right: 0;
}

#footer .foot-sns ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#footer .foot-sns ul li:not(:last-child) {
    margin-right: 1rem;
}

#footer .foot-sns ul li a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    text-align: center;
    line-height: 40px;
}

#footer .foot-sns ul li a i {
    font-size: 2.4rem;
    line-height: 40px;
    color: #6d6e70;
}

#footer .foot-logo {
    margin-bottom: 4rem;
}

#footer .foot-info p,
#footer .foot-info li,
#footer .foot-info a {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 400;
    line-height: 2.6rem;
}

#footer .foot-info ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#footer .foot-info ul li {
    position: relative;
}

#footer .foot-info ul li:not(:last-child):after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    right: 1rem;
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.5);
}

#footer .foot-info ul li:not(:last-child) {
    padding-right: 2rem;
}

@media screen and (max-width: 1320px) {
    #footer {
        width: 100%;
        margin: 15rem 0 0 0;
        padding: 9rem 5%;
    }

    #footer .footer-area {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    #footer .foot-sns {
        position: relative;
        margin-bottom: 2rem;
    }
}

/* Main Visual (메인이미지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main-visual {
    position: relative;
}

.main-visual .swiper-container {
    width: 100%;
    height: 100vh;
}

.main-visual .swiper-container .swiper-slide {
    overflow: hidden;
}

.main-visual .swiper-container .swiper-slide .slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
}

.main-visual .swiper-container .swiper-slide .slide-inner.visual_01 {
    background-image: url("/images/kor16r-22-0457/main/visual_1.png");
}

.main-visual .swiper-container .swiper-slide .slide-inner.visual_02 {
    background-image: url("/images/kor16r-22-0457/main/visual_2.png");
}

.main-visual .visual-btn > div {
    width: 74px;
    height: 74px;
    background: rgba(255, 255, 255, 0.8);
    text-align: center;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.main-visual .visual-btn > div:hover {
    background: white;
}

.main-visual .visual-btn > div:after {
    color: var(--blue);
    font-size: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.main-visual .visual-btn > div.swiper-button-prev {
    top: unset;
    bottom: 0;
    left: 40%;
    -webkit-transform: translateX(-37px);
    transform: translateX(-37px);
}

.main-visual .visual-btn > div.swiper-button-prev:after {
    content: "\e93d";
}

.main-visual .visual-btn > div.swiper-button-next {
    top: unset;
    bottom: 0;
    left: 40%;
    -webkit-transform: translateX(37px);
    transform: translateX(37px);
}

.main-visual .visual-btn > div.swiper-button-next:after {
    content: "\e940";
}

.main-visual .slogan {
    position: absolute;
    bottom: 0;
    right: 60%;
    -webkit-transform: translateX(-37px);
    transform: translateX(-37px);
    width: calc(50% - 37px);
    height: 380px;
    background: var(--sky_blue);
    border-top-right-radius: 150px;
    z-index: 100;
}

.main-visual .slogan .slogan_inner {
    position: absolute;
    top: 50%;
    right: 100px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.main-visual .slogan span {
    padding: .25rem .7rem;
    color: #977b00;
    font-size: 1.8rem;
    font-weight: 700;
    background: #f4ca10;
}

.main-visual .slogan p {
    font-size: 4rem;
    line-height: 5rem;
    color: #fff;
    font-weight: 700;
    word-break: keep-all;
    margin: 2rem 0 0;
}

.main-visual .slogan p:nth-child(3) {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    grid-gap: 0 1rem;
    font-weight: 400;
    font-size: 3rem;
    margin: 2rem 0 0;
    line-height: 1;
}

.main-visual .slogan a {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 2rem;
    line-height: 1;
    font-weight: 500;
    color: #fff;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 3rem;
}

.main-visual .slogan a:hover {
    background: #fff;
    color: var(--sky_blue);
}

@media screen and (max-width: 1220px) {
    .main-visual .visual-btn > div.swiper-button-prev {
        left: 0;
        bottom: 350px;
        -webkit-transform: none;
        transform: none;
    }

    .main-visual .visual-btn > div.swiper-button-next {
        left: 74px;
        bottom: 350px;
        -webkit-transform: none;
        transform: none;
    }

    .main-visual .slogan {
        right: unset;
        left: 0;
        -webkit-transform: none;
        transform: none;
        width: 55%;
        height: 350px;
        background: rgba(75, 184, 181, 0.8);
    }

    .main-visual .slogan .slogan_inner {
        right: unset;
        left: 10%;
    }

    .main-visual .slogan p:nth-child(3) {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .main-visual .visual-btn > div {
        width: 54px;
        height: 54px;
        bottom: 280px;
    }

    .main-visual .visual-btn > div.swiper-button-prev {
        bottom: 280px;
    }

    .main-visual .visual-btn > div.swiper-button-next {
        left: 54px;
        bottom: 280px;
    }

    .main-visual .slogan {
        width: 65%;
        height: 280px;
    }

    .main-visual .slogan p {
        font-size: 3rem;
    }

    .main-visual .slogan p:nth-child(3) {
        flex-direction: column;
        align-items: flex-start;
        grid-gap: 1rem 0;
        margin-top: 1rem;
        font-size: 2rem;
    }
}

@media screen and (max-width: 550px) {
    .main-visual .slogan {
        width: 75%;
    }
}

/* Main Contents (메인 컨텐츠)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main-container > section {
    padding: 150px 0;
}

.main-container > section .inner {
    position: relative;
    width: 1260px;
    margin: 0 auto;
}

.main-container .m_tit {
    margin-bottom: 100px;
}

.main-container .m_tit dt {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--blue);
    margin-bottom: 1.5rem;
}

.main-container .m_tit dd {
    font-size: 5rem;
    line-height: 6rem;
    font-weight: 500;
    color: var(--black);
}

.main-container .m_tit p {
    font-size: 2.2rem;
    font-weight: 300;
    color: #55585b;
    margin-top: 2rem;
}

.main-container .m_tit.m_tit_w * {
    color: #fff;
}

.main-container .m_tit.alignC {
    text-align: center;
}

@media screen and (max-width: 1320px) {
    .main-container > section .inner {
        width: 100%;
        padding: 0 30px;
    }
}

@media screen and (max-width: 980px) {
    .main-container > section {
        padding: 80px 0;
    }

    .main-container .m_tit {
        margin-bottom: 50px;
    }
}

section.service .service-bg {
    position: absolute;
    top: 80px;
    left: 0;
    width: 200%;
    height: calc(100% - 160px);
    background: #f7fafc;
    z-index: -1;
    border-radius: 100px;
}

section.service .inner_con {
    padding: 0 140px;
}

section.service .ser_btn {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

section.service .ser_btn div {
    width: calc((100% - 60px) / 4);
}

section.service .ser_btn div a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: #fff;
    -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #fff;
    padding: 70px 20px 50px 20px;
}

section.service .ser_btn div a:hover {
    border: 2px solid var(--sky_blue);
}

section.service .ser_btn div a:hover span {
    background: var(--sky_blue);
    border: 1px solid var(--sky_blue);
}

section.service .ser_btn div a:hover span i {
    color: #fff;
}

section.service .ser_btn div p {
    margin-bottom: 30px;
}

section.service .ser_btn div p img {
    width: auto;
    height: 70px;
}

section.service .ser_btn div dt {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

section.service .ser_btn div dd {
    font-size: 1.6rem;
    color: var(--gray);
}

section.service .ser_btn div span {
    display: inline-block;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    border: 1px solid var(--gray);
    margin-top: 25px;
}

section.service .ser_btn div span i {
    font-size: 2rem;
    color: var(--gray);
    line-height: 39px;
}

@media screen and (max-width: 1320px) {
    section.service .inner_con {
        padding: 0 5%;
    }

    section.service .inner:before {
        left: 15px;
    }
}

@media screen and (max-width: 980px) {
    section.service .ser_btn div {
        width: calc((100% - 20px) / 2);
    }

    section.service .ser_btn div:nth-child(3),
    section.service .ser_btn div:last-child {
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    section.service .inner:before {
        top: 60px;
        left: 15px;
        height: calc(100% - 120px);
    }

    section.service .ser_btn div a {
        padding: 50px 20px 30px 20px;
        border-radius: 20px;
    }

    section.service .ser_btn div p {
        margin-bottom: 20px;
    }

    section.service .ser_btn div p img {
        height: 50px;
    }

    section.service .ser_btn div dt {
        margin-bottom: 5px;
    }

    section.service .ser_btn div span {
        margin-top: 15px;
    }
}

@media screen and (max-width: 480px) {
    section.service .ser_btn div {
        width: 100%;
    }

    section.service .ser_btn div:nth-child(2) {
        margin-top: 20px;
    }
}

/* 갤러리게시판 */
section.gallery {
    background: url(/images/kor16r-22-0457/main/bg_gallery.png) no-repeat center center/cover;
    height: 900px;
    margin-bottom: 50px;
}

section.gallery .inner {
    height: 800px;
}

section.gallery .m_tit {
    text-align: right;
}

section.gallery .module_gal {
    width: 1750px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    border-top-right-radius: 100px;
    padding: 120px 120px 0 0;
}

section.gallery .swiper-gallery {
    width: 100%;
}

section.gallery .swiper-gallery .swiper-slide {
    overflow: hidden;
    border-radius: 30px;
    height: 380px;
}

section.gallery .swiper-gallery .swiper-slide a {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

section.gallery .swiper-gallery .swiper-slide a img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: unset;
    border-radius: 30px;
}

section.gallery .gall-btn {
    position: absolute;
    top: 60px;
    right: 130px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

section.gallery .gall-btn > div {
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f8f8;
    border: 1px solid #e8eaed;
    text-align: center;
}

section.gallery .gall-btn > div i {
    font-size: 2rem;
    color: var(--blue);
    margin-top: 7px;
}

section.gallery .gall-btn > div.gall-btn-next {
    margin-right: 10px;
}

@media screen and (max-width: 1320px) {
    section.gallery .module_gal {
        right: 20px;
        padding: 120px 80px 0 0;
    }
}

@media screen and (max-width: 980px) {
    section.gallery {
        height: 830px;
    }
}

@media screen and (max-width: 768px) {
    section.gallery {
        height: 480px;
    }

    section.gallery .inner {
        height: 450px;
    }

    section.gallery .module_gal {
        width: calc(100% - 20px);
        padding: 80px 40px 0 0;
        border-top-right-radius: 50px;
    }

    section.gallery .swiper-gallery .swiper-slide {
        height: 190px;
    }

    section.gallery .gall-btn {
        top: 30px;
        right: 60px;
    }

    section.gallery .gall-btn > div i {
        margin-top: 9px;
    }
}

/* 공지 - 뉴스형게시판 */
.module_notice {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
}

.module_notice .item {
    width: calc((100% - 90px) / 4);
    border-radius: 30px;
    -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
}

.module_notice .item .pic {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.module_notice .item .pic img {
    width: auto;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: unset;
}

.module_notice .item .txt_area {
    padding: 40px;
    width: 100%;
}

.module_notice .item .txt_area dt a {
    display: block;
    font-size: 2.2rem;
    color: var(--black);
    font-weight: 700;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.module_notice .item .txt_area dt a:hover {
    color: var(--blue);
}

.module_notice .item .txt_area dd {
    font-size: 1.6rem;
    color: var(--gray);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    line-height: 2.4rem;
    height: 7.2rem;
    margin: 20px 0 30px 0;
}

.module_notice .item .txt_area .date {
    font-size: 1.6rem;
    color: var(--gray);
    line-height: 1;
}

.module_notice .btn_notice {
    width: 100%;
    text-align: center;
    margin-top: 70px;
}

.module_notice .btn_notice a {
    display: inline-block;
    width: 260px;
    height: 60px;
    line-height: 60px;
    background: var(--sky_blue);
    font-size: 2rem;
    color: #fff;
    font-weight: 500;
    text-align: center;
    border-radius: 30px;
}

@media screen and (max-width: 1220px) {
    .module_notice .item {
        width: calc((100% - 60px) / 4);
    }
}

@media screen and (max-width: 980px) {
    .module_notice {
        gap: 20px;
    }

    .module_notice .item {
        width: calc((100% - 20px) / 2);
    }
}

@media screen and (max-width: 768px) {
    .module_notice .item .txt_area {
        padding: 30px;
    }

    .module_notice .item .txt_area dd {
        margin: 10px 0 15px 0;
    }

    .module_notice .btn_notice {
        margin-top: 40px;
    }

    .module_notice .btn_notice a {
        width: 200px;
        height: 45px;
        line-height: 45px;
    }
}

@media screen and (max-width: 480px) {
    .module_notice .item {
        width: 100%;
    }

    .module_notice .item:nth-child(2) {
        margin-top: 20px;
    }
}

/* 공지 - 뉴스형게시판 */
section.review {
    position: relative;
}

section.review .review-bg {
    position: absolute;
    top: 220px;
    left: 0;
    width: 100%;
    height: 50%;
    background: #f7fafc;
}

section.review .module_review {
    border-radius: 100px;
    overflow: hidden;
    -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.02);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.02);
}

section.review .item_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

section.review .item_area > div:nth-child(3) {
    position: relative;
}

section.review .item_area > div:nth-child(3):before {
    content: '';
    display: block;
    position: absolute;
    top: 80px;
    left: 0;
    width: 1px;
    height: calc(100% - 160px);
    background: #dbdbdb;
}

section.review .item_area > div:nth-child(3):after {
    content: '';
    display: block;
    position: absolute;
    top: 80px;
    right: 0;
    width: 1px;
    height: calc(100% - 160px);
    background: #dbdbdb;
}

section.review .item_area .more_area {
    background: var(--sky_blue);
    width: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

section.review .item_area .more_area a {
    font-size: 3rem;
    color: #fff;
    font-weight: 700;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

section.review .item_area .more_area span {
    display: inline-block;
    width: 39px;
    height: 39px;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    margin-top: 30px;
}

section.review .item_area .more_area span i {
    font-size: 1.8rem;
    color: #fff;
}

section.review .item_area .item {
    width: 25%;
    background: #fff;
    padding: 80px 30px;
    text-align: center;
}

section.review .item_area .item p {
    margin-bottom: 30px;
}

section.review .item_area .item p span {
    display: inline-block;
    width: 115px;
    line-height: 1;
    font-size: 1.6rem;
    color: var(--blue);
    border: 1px solid var(--blue);
    border-radius: 2rem;
    padding: 1rem 2rem;
}

section.review .item_area .item dt,
section.review .item_area .item dd {
    font-size: 1.6rem;
    color: var(--gray);
    line-height: 2.4rem;
    font-weight: 300;
}

section.review .item_area .item dt {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* 라인수 */
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    line-height: 2.4rem;
    margin-bottom: 40px;
}

@media screen and (max-width: 980px) {
    section.review .review-bg {
        top: 150px;
    }
}

@media screen and (max-width: 768px) {
    section.review .review-bg {
        top: 130px;
    }

    section.review .module_review {
        border-radius: 50px;
    }

    section.review .item_area > div:nth-child(3):before,
    section.review .item_area > div:nth-child(3):after {
        height: calc(100% - 80px);
        top: 40px;
    }

    section.review .item_area .more_area {
        width: 20%;
    }

    section.review .item_area .more_area span {
        width: 31px;
        height: 31px;
        margin-top: 20px;
        line-height: 25px;
    }

    section.review .item_area .item {
        width: 26.66%;
        padding: 40px 20px;
    }

    section.review .item_area .item p {
        margin-bottom: 15px;
    }

    section.review .item_area .item p span {
        width: 100px;
    }

    section.review .item_area .item dt {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 600px) {
    section.review .item_area .more_area {
        width: 100%;
        padding: 25px 0;
        text-align: center;
    }

    section.review .item_area .more_area span {
        margin-top: 10px;
    }

    section.review .item_area > div:nth-child(3):before {
        width: calc(100% - 40px);
        height: 1px;
        top: 0;
        left: 20px;
    }

    section.review .item_area > div:nth-child(3):after {
        width: calc(100% - 40px);
        height: 1px;
        top: unset;
        bottom: 0;
        left: 20px;
    }

    section.review .item_area .item {
        width: 100%;
        padding: 30px 20px;
    }
}
