@charset "UTF-8";

body.fixed {overflow: hidden;}

b,
strong {font-weight: 500;}

.bi::before,
[class^="bi-"]::before,
[class*=" bi-"]::before {vertical-align: -0.1em;}


/*----------------------------------------
TEMPLATE 6 - header
----------------------------------------*/
header .inner__wrap {
    /*position: relative;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    min-height: 95px;
}

header .logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;
}

header .logo h1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0;
    font-size: clamp(1.25rem, 6vw, 2rem);
    font-weight: 700;
    letter-spacing: -.1rem;
    color: #464646;
}

/* util menu */
.util__menu {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.util__menu li::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 1px;
    height: 13px;
    background: #dadada;
    margin-top: -6px;
    
}

.util__menu li {position: relative; margin-left: 15px; padding-left: 15px;}
.util__menu li a {font-size: calc(.875rem + 0.05vw); color: #505050;}
.util__menu li:first-child::after {display: none;}

@media (max-width: 991.98px) {
    .util__menu {display: none;}
}

/* gnb menu */
.header__gnb {
    position: relative;
    width: 100%;
    border-top: 1px solid hsl(0, 0%, 87%);
    border-bottom: 1px solid #dfdfdf;
}

.header__gnb.fixed {
    z-index: 16;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
}

.gnb__wrap ul.gnb_depth1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    min-height: 72px;
}

.gnb__wrap>ul>li>a {
    position: relative;
    display: block;
    padding: 1.25rem 0;
    font-size: calc(1.25625rem + 0.075vw);
    color: inherit;
}

.gnb__wrap>ul>li>a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -10%;
    display: block;
    width: 120%;
    height: 10px;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transition: transform 0.3s;
    -webkit-transition: transform 0.3s;
}

.gnb__wrap>ul>li:hover>a:before {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
}

.gnb__wrap.active::before {
    z-index: 16;
    content: '';
    position: absolute;
    top: 73px;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    border-bottom: 1px solid #dfdfdf;
} 

.gnb__depth2 {
    z-index: 18;
    position: absolute;
    left: 0;
    display: none;
    width: 100%;
}

.gnb__depth2 ul {display: flex; flex-wrap: wrap; justify-content: center;}
.gnb__depth2 li {display: inline-block; padding: 0 1.25rem;}

.gnb__depth2 li a {
    position: relative;
    display: block;
    padding: 1.875rem 0 1rem;
    font-size: calc(1rem + 0.05vw);
    letter-spacing: -.025rem;
    line-height: 0;
}

.gnb__depth2 li a:hover::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0%;
    display: block;
    width: 100%;
    height: 1px; 
}

.gnb__wrap>ul>li:nth-child(1),
.gnb__wrap>ul>li:nth-last-child(2),
.gnb__wrap>ul>li:nth-last-child(3) {display: none;} /* 이용약관, 멤버쉽, 마이페이지 */

.gnb__wrap>ul>li:nth-child(2) .gnb__depth2 ul {justify-content: flex-start;}
.gnb__wrap>ul>li:last-child   .gnb__depth2 ul {justify-content: flex-end;}

@media (max-width: 991.98px) {
    .header__gnb {border-top: none;}
    .gnb__wrap   {display: none;}
}

/* all menu */
.mask {
    z-index: 16;
    position: absolute;
    top: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.all__menu--wrap {
    z-index: 17;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: auto;
    background: #fff;
    padding: 30px 50px;
}

.all__menu--title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #ced4da;
    margin-bottom: 30px;
}

.all__menu--title h1 {width: 95%; text-align: center;}

.all_depth1 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1110px;
    margin: 0 auto;
}

.all_depth1>li:nth-child(1),
.all_depth1>li:nth-last-child(2),
.all_depth1>li:nth-last-child(3) {display: none;} /* 이용약관, 멤버쉽, 마이페이지 */

.all_depth1_item {display: block; text-align: center;}
.all_depth1_item>a {font-size: 1.35rem; padding: .5rem; border-bottom-width: 2px; border-bottom-style: solid;}

.all_depth2 {margin-top: 20px;}
.all_depth2 li {padding: 10px 0;}

.close_all__menu {line-height: 0;}
.close_all__menu i {font-size: 1.5rem;}

/* mobile menu */
.mobiel__menu--util {display: none;}
.mobiel__menu--top {display: none;}

@media (max-width: 991.98px) {
    /* all menu */
    .pc-only {display: none;}

    .all_depth1 {display: block; width: 100%;}
    .all_depth1_item {display: block; text-align: left; width: auto;}
    .all_depth1_item>a {
        display: block;
        padding: 1rem 1.5rem;
        background: #f7f7f7;
        border-bottom: 1px solid #dfdfdf;
        font-size: calc(1.25rem + 0.15vw);
        font-weight: 400;
        color: #313131;
    }

    .all_depth2 {margin-top: 0;}
    .all_depth2 li {padding: 0;}
    .all_depth2 li:last-child {margin-bottom: 0;}
    .all_depth2 li a {display: block; padding: 1rem 2rem; border-bottom: 1px solid #dfdfdf;}

    /* all__menu--wrap */
    .all__menu--wrap {
        position: fixed;
        top: 0;
        left: auto;
        bottom: 0;
        right: 0;
        width: 55%;
        height: auto;
        padding: 0;
    }

    .mobiel__menu--top {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin: 1.25rem 1.5rem;
        min-height: 50px;
    }

    .mobiel__menu--top h1 {font-size: calc(1.2890625rem + 0.46875vw); letter-spacing: -.1rem;}

    .mobiel__menu--util {
        padding: 12px 30px;
        background: #f5f6fa;
        border-top: 1px solid #dfdfdf;
        border-bottom: 1px solid #dfdfdf;
        text-align: right;
    }

    .mobiel__menu--util li {
        position: relative;
        display: inline-block;
        margin-left: 15px;
        padding-left: 15px;
        color: #535353;
    }

    .mobiel__menu--util li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        display: block;
        width: 1px;
        height: 12px;
        background: #535353;
        margin-top: -6px;
    }

    .mobiel__menu--util {display: block;}
    .mobiel__menu--util li:nth-child(1)::before {display: none;}

    /* mobile__menu */
    .mobile__menu button {line-height: 0;}
    .btn__allmenu i {font-size: 2rem;}
}

@media (max-width: 575.98px) {
    /* all menu */
    .all__menu--wrap {width: 80%;}
}


/*----------------------------------------
TEMPLATE 6 - footer
----------------------------------------*/
footer {position: relative;}
footer hr {
    border-top: 1px solid;
    opacity: .15;
    margin-top: 0;
    margin-bottom: 0;
}

/* foot-1-wrap */
.foot-1-wrap {position: relative; background-color: rgba(256, 256, 256, .05);}

.foot-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    min-height: 50px;
}

.foot-link-left a {display: inline-block; margin: 0 10px; opacity: .7;}
.foot-link-left a:hover {color: inherit; opacity: 1;}
.foot-link-left a:first-child {margin-left: 0;}

footer .btn-group {
    float: right;
    border-left: 1px solid rgba(0, 0, 0, .1);
    border-right: 1px solid rgba(0, 0, 0, .1);
}

footer .btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    min-width: 150px;
    color: inherit;
    opacity: .7;
}

footer .btn:focus {box-shadow: none;}

/* foot-2-wrap */
.foot-2-wrap {position: relative; padding: 1.5rem 0;}
.foot-2-wrap .title {margin-bottom: .5rem;}

address {font-size: .85rem; margin-bottom: 0;}
address .add {display: block;}
address .add::after {display: none;}

address span {
    position: relative;
    display: inline-block;
    opacity: .8;
    margin-bottom: 0.25rem;
}

address span::after {
    content: '';
    display: inline-block;
    background: rgba(0, 0, 0, .2);
    width: 1px;
    height: 11px;
    margin-left: 1rem;
    margin-right: 1rem;
}

address span:last-child::after  {display: none;}

/* sns icons */
.sns {text-align: right;}

.sns a {
    display: inline-block;
    width: 34px;
    height: 34px;
    border-radius: 100%;
    background: #bdbdbd;
    text-align: center;
    line-height: 34px;
}

/* site-info */
.site-info {position: relative;}
.site-info .copyright {font-size: .75rem; opacity: .6;}
.site-info .copyright span {text-transform: uppercase;}
.site-info .by {font-size: .6875rem; opacity: .35;}

@media (max-width: 991.98px) {
    address span.add {display: block;}
    address span.add::after {display: none;}
    footer .sns {margin-top: .5rem;}
}

@media (max-width: 767.98px) {
    footer .foot-link-left a {display: none;}
    footer .btn-group {float: none; width: 100%;}
    footer .btn {width: 100%;}
}

@media (max-width: 575.98px) {
    address span {display: block;}
    address span::after {display: none;}
}


/*----------------------------------------
TEMPLATE 6 - main layout
----------------------------------------*/
section {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* main - main-banner */
.main-banner {display: flex; align-items: center;}

.main-banner .caption {
    position: absolute;
    display: block;
    overflow: hidden;
    word-break: keep-all;
    left: 10%;
    bottom: 40%;
}

.main-banner .caption h1 {
    font-size: clamp(1.5rem, 4vw, 3.2rem);
    font-weight: 500;
    margin-bottom: 2rem;
}

.main-banner .caption h2 {
    font-size: clamp(1rem, 2.5vw, 2rem);
    font-weight: 400;
    margin-bottom: .5rem;
}

.main-banner .caption h3 {
    font-size: clamp(.8rem, 1vw, 1rem);
    font-weight: 300;
    opacity: .75 !important;
}

@media (max-width: 991.98px) {
    .main-banner {height: 31.25rem;}
    .main-banner .caption {bottom: 45%;}
}

@media (max-width: 767.98px) {
    .main-banner {height: 20rem;}
    .main-banner .caption {left: 0; bottom: 25%; padding-left: 2rem;  padding-right: 2rem;}
} 

@media (max-width: 575.98px) {
    .main-banner {height: 18.75rem;}
}


/* main - quick-btn */
.quick-btn .quick-btn-wrap {
    z-index: 1 !important;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.quick-btn .quick-btn-list {
    display: inline-block;
    margin: 0 auto;
    padding: .75rem;
}

.quick-btn .quick-btn-img {
    display: block;
    margin: 0 auto;
    border-radius: 100%;
    transition-duration: .5s;
}

.quick-btn .quick-btn-img i {
    position: relative;
    top: 50%;
    display: block;
    overflow: hidden;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    /*width: auto;
    max-width: 90%;*/
    margin: 0 auto;
    font-size: 3rem;
}

.quick-btn .quick-btn-text {
    display: block;
    overflow: hidden;
    margin-top: .5rem;
    font-size: calc(1rem + 0.15vw);
}

@media (max-width: 767.98px) {
    .quick-btn {margin: 2rem 0;}
}

@media (max-width: 414.98px) {
    .quick-btn .quick-btn-wrap  {padding: 1.5rem;}    
}

@media (max-width: 359.98px) {
    .quick-box-list.basic2 .link li {display: block; width: 100%;}
    .quick-btn .quick-btn-wrap  {padding: 1rem;} 
    .quick-btn .quick-btn-list  {padding: .75rem 0rem;}
    .quick-btn .quick-btn-img   {width: 75px; height: 75px;}    
    .quick-btn .quick-btn-img i {font-size: 2.5rem;}    
    .quick-btn .quick-btn-text  {font-size: .875em;}
}

/* main - quick-box */
.quick-box {margin: 2rem 0;}
.quick-box-wrap {display: grid; padding-bottom: 1rem;}

.quick-box-list {padding: 2.5rem 3rem 3rem;}

.quick-box-list h2 {
    position: relative;
    font-size: calc(1.25rem + 0.375vw);
    font-weight: 500;
    letter-spacing: -1px;
    color: #fff;
    padding: 4px 0;
}

.quick-box-list h2 a.btn-more {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .3);
    font-size: 2rem;
    color: #FFF;
}

.quick-box-list h2 a.btn-more:hover {background: rgba(255, 255, 255, .1);}

.quick-box-list h3 {
    font-size: calc(.95rem + 0.05vw);
    font-weight: 300;
    letter-spacing: -.5px;
    color: #fff;
    opacity: .85;
    margin: 20px 0;
}

.quick-box-list .link li a {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 50px;
    background-color: #fff;
}

.quick-box-list .link li a>i {font-size: 1.125rem;}
.quick-box-list .link li+li {margin-top: 10px;}

.quick-box-list .link a {
    position: relative;
    padding: 0 1.5rem;
    letter-spacing: -1px;
    color: #313131;
}

.quick-box-list .link li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 0;
    height: 100%;
    background: transparent;
    box-sizing: border-box;
}

.quick-box-list .link li a:hover:after {
    width: 100%;
    background-color: rgba(247, 195, 46, 0.15);
    transition: .2s ease-out;
}

.quick-box-list.basic2 .link li {float: left; width: 50%; padding: 0 5px;}
.quick-box-list.basic2 .link li:first-child {display: block; width: 100%; padding: 0 5px;}

.quick-box-list .journal {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}
.quick-box-list .journal .j-cover {padding-left: 0rem;}
.quick-box-list .journal .j-info  {padding-left: 0rem; padding-right: 0rem;}
.quick-box-list .journal img {width: calc(100% - 10%);}
.quick-box-list .journal h2  {color: inherit;}
.quick-box-list .journal h3  {color: inherit;}
.quick-box-list .journal h2 a.btn-more {color: inherit; border: 1px solid rgba(0, 0, 0, .3);}

.quick-box-list.contact i  {color: inherit; font-size: 1.5rem; margin-right: 0.5rem;}
.quick-box-list.contact h2 {color: inherit;}
.quick-box-list.contact ul {margin-top: 1rem;}
.quick-box-list.contact li:last-child {text-align: right; margin-top: 1rem;}

@media (min-width: 768px) and (max-width: 991.98px) {
    .quick-box-list.basic .link li {float: left; width: 50%; padding: 0 5px;}
    .quick-box-list.basic .link li+li {margin-top: 0;}

    .quick-box-list.basic2 .link li:first-child {margin-bottom: 10px;}

    .quick-box-list.contact .tel {display: inline-flex; align-items: baseline;}
    .quick-box-list.contact .tel h5 {margin-right: .5rem;}

    .quick-box-list.contact li {display: inline-block;}
    .quick-box-list.contact li+li {margin-left: 1rem;}
    .quick-box-list.contact li:last-child {float: right; margin-top: 0;}
}

@media (max-width: 414.98px) {
    .quick-box-list {padding: 2rem;}
    .quick-box-list h2 a.btn-more {width: 34px; height: 34px; font-size: 1.75rem;}
    .quick-box-list h3 {font-size: .875rem;}
    .quick-box-list .link a {padding: 0 .75rem;}

    .quick-box-list .journal .j-cover {display: none;}
}

@media (max-width: 359.98px) {
    .quick-box-list {padding: 2rem 1.5rem;}
    .quick-box-list.basic2 .link li:first-child {padding: 0rem;}
    .quick-box-list.basic2 .link li {display: block; width: 100%; padding: 0rem;}
}

/* main - bbs-widgets */
.bbs-widgets {padding: 2.5rem 0;}

@media (max-width: 359.98px) {
    .widget_post02 li .date {display: none;}
    .widget_post02 li div {width: 100% !important; margin: 0rem !important;}
}



/*----------------------------------------
TEMPLATE 6 - sub layout
----------------------------------------*/
/* sub-banner */
.sub-banner {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.caption-text {color: inherit;}
.caption-text .text1 {font-size: calc(1rem + 0.5vw); letter-spacing: -.05rem; font-weight: 300;}
.caption-text .text2 {font-size: calc(1.75rem + 0.5vw); font-weight: 500;}

/* sub - ani */
.ani {position: relative; top: 20px;}
.ani_view {
    animation: txt-ani 1s ease forwards;
    -webkit-animation: txt-ani 1s ease forwards;
}

@keyframes txt-ani {
    0% {top: 20px;}
    100% {top: 0;}
}

/* sub - lnb-basic */
.lnb-wrap {
    z-index: 9;
    float: left;
    margin-top: -6.1rem;
}

.lnb_depth {
    display: block;
    padding: 1.5rem;
    width: 100%;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.lnb_depth h2 {font-size: 1.75rem; padding: .5rem 0 1.5rem;}

.lnb_depth .m2 {
    display: block;
    text-align: left;
    border-top: 1px solid #ededed;
}

.lnb_depth .m2>a {
    display: block;
    font-size: 1.05rem;
    letter-spacing: -.025rem;
    padding: .75rem 1rem;
    margin: 0;
}

.lnb_depth .m2.selected>a {color: #FFF;}
.lnb_depth .m2.selected>a:hover {color: #FFF;}

.lnb_depth .m2>ul {padding-bottom: 1rem;}

.lnb_depth ul>.m3 {background-color: #ededed;}
.lnb_depth ul>.m3:first-child {padding-top: .5rem;}
.lnb_depth ul>.m3:last-child  {padding-bottom: .5rem;}

.lnb_depth .m3>a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 1rem;
    font-size: .85rem;
}
.lnb_depth .m3>a i {color: #666; font-size: 1.25rem; line-height: 1.25;}


/* sub - lnb-style1 */
.lnb_depth.lnb-style1 {
    padding: 0;
    background-color: #F7F7F9;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -4px rgb(0 0 0 / 10%);
}

.lnb_depth.lnb-style1 h2 {
    padding: 2rem 0;
    border-top-right-radius: 0.5rem;
    border-top-left-radius: 0.5rem;
    font-weight: 300;
    text-align: center;
}

.lnb_depth.lnb-style1 .m2 {border-top: none;}
.lnb_depth.lnb-style1 .m2>a {margin: 0 1rem; border-bottom: 1px solid #ededed;}
.lnb_depth.lnb-style1 .m2.selected {background-color: #dfdfdf;}

.lnb_depth.lnb-style1 .m2>ul {padding-bottom: 1rem;}

@media (max-width: 991.98px) {
    .lnb-wrap {display: none;}
}


/* sub - page-wrap */
.page-wrap-overlap {
    z-index: 10;
    margin-top: -10rem;
}

.page-title {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    min-height: 5rem;
    margin: 2.5rem 0;
}

.page-title h3 {
    font-size: calc(1.75rem + .75vw);
    letter-spacing: -.1rem;
    color: #FFF;
    opacity: .95;
}

.page-title .location {font-size: calc(.8rem + 0.15vw); color: #FFF; opacity: .85;}
.page-title .location a {padding: 0 3px;}
.page-title .location a:hover {color: #FFF; text-decoration: underline;}

.page-content {padding: 1.5rem 0 3rem; min-height: 20rem;}

@media (max-width: 991.98px) {
    .page-title {display: block; text-align: center;}
    .page-title h3 {margin-bottom: 1rem;}
}


/* sub - blank page */
.page-wrap.blank .page-title {
    padding-bottom: 1rem;
    border-bottom: 1px solid #ccc;
    margin: 1.5rem 0;
}

.page-wrap.blank .page-title h3,
.page-wrap.blank .page-title .location,
.page-wrap.blank .page-title .location a:hover {color: #313131;}