@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&display=swap');

* {
    word-break: keep-all;
}

#site {
    padding-top: 0px;
    font-family: 'Roboto', 'notokr', sans-serif;
}

#site>.container {
    width: 100%;
    padding: 0;
}

/*=================================== reset =================================== */

img {
    flex-shrink: 0;
}

.img-box {
    position: relative;
}

.img-box.bordered {
    border: 1px solid #ccc;
    padding: 10px;
}

ol,
ul,
li,
dl {
    margin: 0;
    padding: 0;
    font-weight: normal;
    list-style-type: none;
    list-style-position: inside;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
dt dd,
th,
td,
li {
    position: relative;
    font-weight: normal;
    letter-spacing: -0.034em;
}

a,
a:hover {
    text-decoration: none;
}

button {
    border-radius: 0;
    background: transparent;
    border: 1px solid #444;
}

br {
    visibility: visible;
    opacity: 0;
}

/*=================================== common =================================== */
[class$="-dash"] {
    margin: 0;
    padding: 0;
}

[class$="-dash"]>*:not(dt) {
    position: relative;
    padding-left: 15px;
}

[class$="-dash"]>*:not(dt)::before {
    position: absolute;
    left: 0;
}

[class$="-dash"]>*:not(dt)::before {
    content: '-';
}

.li-dash li+li {
    margin-top: 5px;
}

.li-box {
    padding: 25px;
    background: #f4f4f4;
}

/* =================================== navbar =================================== */

/* 불필요 항목 삭제 */
.navbar .caret {
    display: none;
}

#gnbauth i {
    display: none;
}

/* 상단 메뉴 */
.navbar-header,
.navbar>.container {
    display: flex;
}

.navbar-header {
    justify-content: center;
    align-items: center;
}

.navbar>.container {
    width: 100%;
    padding: 0 60px;
    justify-content: center;
}

.navbar>.container::before,
.navbar>.container::after {
    display: none;
}

.navbar-inverse {
    width: 100%;
    background: transparent;
    position: fixed;
    left: 0;
    top: 0;
    padding: 50px 0px 0;
    box-shadow: none;
    margin-bottom: 0;
    border: 0
}

.navbar-collapse .navbar-right {
    margin-right: 0 !important;
}

.navbar-brand {
    margin-left: 0px !important;
    padding: 0;
    height: auto;
}

/* nav 메뉴 속성 */
.navbar-collapse .navbar-nav>li>a {
    transition: .25s;
    position: relative;
    z-index: 10;
    font-size: 17px;

    color: #222;
    letter-spacing: 0.02em;
}

/* nav 메뉴 클릭 및 후버 시 */
.navbar-collapse .navbar-nav>li>a:hover,
.navbar-collapse .navbar-nav>li>a:focus,
.navbar-collapse .navbar-nav .dropdown.open .dropdown-toggle,
.navbar-collapse .navbar-nav .dropdown.open:hover .dropdown-toggle,
.navbar-collapse .navbar-nav .dropdown.open:focus .dropdown-toggle {
    background: none;
    color: #ff5d17;
}

/* dropdown-menu 배경 */
.navbar-collapse .navbar-nav .dropdown-menu {
    background: #fff;
}

/* dropdown-menu 메뉴 기본 */
.navbar-collapse .navbar-nav .open .dropdown-menu>li>a,
.navbar-collapse .navbar-nav .dropdown-menu>li>a {
    color: #222;
    text-align: left;
}

/* dropdown-menu 메뉴 후버 */
.navbar-collapse .navbar-nav .dropdown-menu>li>a:hover {
    color: #f24a00;
    background: transparent;
}

/* hamberger-side-menu */

.navbar-inverse [id^="hamberger"] {
    position: absolute;
    transform: translateY(4px);
    right: 60px;
    border: 0;
    width: 50px;
    height: 50px;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    z-index: 2;
    color: #fff;
}

.navbar-inverse [id^="hamberger"] .bar {
    display: block;
    width: 27px;
    background: currentColor;
    position: relative;
    border: 0;
}

.navbar-inverse.before #hamberger .bar {
    height: 3px;
}

.navbar-inverse #hamberger-close .bar,
.navbar-inverse.after #hamberger .bar {
    height: 2px;
}

.navbar-inverse [id^="hamberger"] .bar::before,
.navbar-inverse [id^="hamberger"] .bar::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    background: currentColor;
}

.navbar-inverse [id^="hamberger"] .bar::before {
    transform: translateY(7px);
}

.navbar-inverse [id^="hamberger"] .bar::after {
    transform: translateY(-7px);
}

.navbar-inverse #hamberger-close .bar {
    color: transparent;
}

.navbar-inverse #hamberger-close .bar::before,
.navbar-inverse #hamberger-close .bar::after {
    background: #000;
}

.navbar-inverse #hamberger-close .bar::before {
    transform: rotate(45deg);
}

.navbar-inverse #hamberger-close .bar::after {
    transform: rotate(-45deg);
}

#navbar-side-menu {
    z-index: 1000;
    position: fixed;
    background: #fff;
    color: #000;
    right: 0;
    top: 0;
    bottom: 0;
    max-width: 550px;
    padding: 50px 65px;
    overflow-x: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 35%;
    transform: translateX(100%) translateZ(0);
    transition: 0.6s;
}

#navbar-side-menu #gnb_78 {
    display: none;
}


#navbar-side-menu.open {
    transform: translateX(0%) translateZ(0);
}

#navbar-side-menu .navbar-nav {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
}

#navbar-side-menu .navbar-nav>li>a {
    transition: .5s;
    padding: 0;
    line-height: 1;
    margin: 0 0 30px 0;
    font-size: 25px;
    color: #888;
    font-weight: 500;
}

#navbar-side-menu .navbar-nav>li>a:hover {
    color: #000;
}

#navbar-side-menu .navbar-nav>.open>a,
#navbar-side-menu .navbar-nav>.open>a:focus,
#navbar-side-menu .navbar-nav>.open>a:hover {
    background-color: transparent;
    color: #000;
}

#navbar-side-menu .dropdown-menu {
    position: static;
    padding: 0 0 35px 30px;
    box-shadow: none;
    border: 0;
}

#navbar-side-menu .dropdown-menu li+li {
    margin-top: 15px;
}

#navbar-side-menu .dropdown-menu a {
    padding: 0;
    font-size: 16px;
    color: #888;
}

#navbar-side-menu .dropdown-menu a:hover {
    background: transparent;
    color: #000;
}

#navbar-side-menu .menu-footer .copyright {
    letter-spacing: -0.01em;
    color: #666;
}

#navbar-side-overlay {
    z-index: 1000;
    position: absolute;
    display: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.35);
}

@media (max-width: 1510px) {
    .navbar-inverse .navbar-collapse.collapse {
        display: none !important;
    }
    .navbar-inverse{
        height: 114px;
    }
}

@media (max-width: 1200px) {
    #navbar-side-menu {
        width: 50%;
        max-width: 100%;
    }

    .container {
        width: 100%;
        padding: 0 30px;
    }
    .navbar-inverse .navbar-header{
        left: 30px;
    }
    .navbar-inverse [id^="hamberger"]{
        right: 30px;
    }
}

@media (min-width: 768px) {
    #gnb_78 {
        float: right;
        margin-right: -60px;
        margin-left: 50px;
    }

    #gnb_78>a {
        font-weight: 300;
        font-size: 17px;
    }

    #gnb_78>a b {
        margin-left: 5px;
    }

    .navbar-header {
        position: absolute;
        left: 60px;
    }

    /* pc nav 메뉴 */
    .navbar-collapse .navbar-nav>li>a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 60px;
        padding: 0 30px;
        color: #fff;
    }

    /* pc nav 드롭다운 */
    .navbar-collapse .navbar-nav .dropdown-menu {
        left: 50%;
        right: auto;
        transform: translate(-50%, 0);
        border-radius: 0;
        border: 1px solid #999;
        padding: 20px 15px;
        text-align: center;
    }

    /* pc nav 드롭다운 메뉴*/
    .navbar-collapse .navbar-nav .dropdown-menu>li>a {
        padding: 7px 15px;
        font-size: 15px;
        line-height: 1;
        color: #222;
        letter-spacing: 0;
    }

    .navbar-inverse {
        transition: .5s;
    }

    .navbar-inverse.after {
        background: #fff;
        padding: 27px 0;
    }

    .navbar-inverse.after .navbar-collapse .navbar-nav>li>a {
        color: #000;
        font-weight: 500;
    }

    .navbar-inverse.after [id^="hamberger"] {
        color: #000;
        transition: none;
    }

    .navbar-inverse.after [id^="hamberger"] .bar::before,
    .navbar-inverse.after [id^="hamberger"] .bar::after,
    .navbar-inverse.after [id^="hamberger"] .bar {
        transition: none;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }

    #site {
        padding-top: 0px;
    }

    .navbar-inverse {
        transition: .25s;
        padding-top: 0;
    }

    .navbar-inverse.after {
        background: #fff;
        height: 90px;
        box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    }

    .navbar-inverse.before #hamberger .bar {
        height: 2px;
    }

    .navbar-inverse.after #hamberger span {
        color: #000;
    }

    .navbar>.container {
        padding: 0 15px;
    }

    #navbar-side-menu {
        width: 100%;
        padding: 40px 50px;
    }

    .navbar-inverse #hamberger {
        right: 15px;
        transform: translateY(18px);
    }

    .navbar-inverse #hamberger-close {
        right: 30px;
        transform: translateY(-5px);
    }

    #navbar-side-menu .navbar-nav>li>a {
        font-size: 22px;
        margin-bottom: 25px;
    }

    #navbar-side-menu .dropdown-menu {
        padding-left: 15px;
    }

    .navbar-header {
        justify-content: space-between;
        height: 90px;
        border-bottom: 0;
    }

    #navbar-side-menu .menu-footer .copyright {
        line-height: 1.5;
        font-size: 13px;
    }

    .navbar-collapse {
        width: 100vw;
        padding: 0;
    }

    .navbar-nav {
        width: 100%;
        margin: 0;
    }

    .navbar-header::before,
    .navbar-header::after {
        display: none;
    }

    .navbar>.container {
        display: block;
    }

    .navbar-brand {
        order: 1;
        width: 130px;
        margin: 0 0 0 15px !important;
    }

    .navbar-inverse .navbar-toggle {
        display: none;
        order: 2;
        border: 0;
        padding: 9px 0;
        margin: 0 15px 0 0;
    }

    .navbar-inverse .navbar-toggle .icon-bar {
        background-color: #666;
        transition: ease-in-out .15s all;
        opacity: 1;
        position: relative;
    }

    .navbar-inverse .navbar-toggle:hover,
    .navbar-inverse .navbar-toggle:focus {
        background: none;
        border-color: #444;
    }

    .navbar-inverse .navbar-toggle:hover .icon-bar,
    .navbar-inverse .navbar-toggle:focus .icon-bar {
        background-color: #444;
    }

    .navbar-inverse .navbar-collapse,
    .navbar-inverse .navbar-form {
        border-color: transparent;
    }

    /* menu */
    .navbar-inverse.open .navbar-toggle>.icon-bar:nth-of-type(1) {
        transform: rotate(45deg);
        top: 6px;
    }

    .navbar-inverse.open .navbar-toggle>.icon-bar:nth-of-type(2) {
        opacity: 0;
    }

    .navbar-inverse.open .navbar-toggle>.icon-bar:nth-of-type(3) {
        transform: rotate(-45deg);
        top: -6px;
    }

    .navbar-inverse .navbar-nav>li>a {
        padding: 15px;
    }

    .dropdown-menu {
        padding: 0;
    }

    .navbar-nav .open .dropdown-menu .dropdown-header,
    .navbar-nav .open .dropdown-menu>li>a {
        padding: 15px 15px 15px 25px;
    }

    /* 드롭다운 배경 */
    /* .navbar-inverse .navbar-nav .dropdown-menu{
        background: #444;
    } */

    /* 드롭다운 폰트 */
    /* .navbar-inverse .navbar-nav .open .dropdown-menu>li>a{
        color: #fff;
    } */

    /* 드롭다운 메뉴 클릭시 */
    /* .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:active {
        color: #fff;
        background: #2968d4;
    } */
}

/* =================================== footer =================================== */
#main_wrapper>footer {
    z-index: 50;
    position: fixed;
    width: 100%;
    bottom: 0;
    letter-spacing: 0;
    background: transparent;
    padding: 0 0 50px;
}

#main_wrapper>footer .clearfix {
    display: none;
}

#main_wrapper>footer li {
    display: block;
    color: #fff;
    text-align: right;
    margin-right: 0;
    font-size: 13px;
    letter-spacing: -0.01em;
}

#main_wrapper>footer .container {
    width: 100%;
    padding: 0 60px;
}

#main_wrapper>footer .footer-wrap {
    justify-content: flex-end;
    border: 0;
}

#main_wrapper>footer .footer-info a {
    color: #fff;
}

#site>footer {
    padding: 100px 0 70px;
}

#site>footer .footer-wrap::before {
    content: '';
    display: block;
    width: 35px;
    height: 2px;
    background: #f24a00;
    position: absolute;
    top: -1px;
    left: 0;
}

#site>footer .footer-wrap {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-top: 30px;
    position: relative;
    border-top: 1px solid #ebebeb;
}


#site>footer .footer-info li.copyright {
    display: block;
    margin-top: 15px;
    font-size: 12px;
    color: #ccc;
    letter-spacing: 0.01em;
}

#site>footer .footer-info li.copyright b {
    color: #999;
}

/* default */
.footer-info {
    color: #444;
    font-size: 14px;
    margin: 0 0 10px;
    line-height: 1.6;
}

.footer-info a {
    transition: .25s;
    color: #222;
    letter-spacing: 0.01em;
}

.footer-info a:hover {
    text-decoration: underline;
    color: #f24a00 !important;
}

#main_wrapper .footer-info a:hover {
    text-shadow: 0 0 1px #f24a00, 0 0 1px #f24a00;
}

.footer-info .contact span {
    display: inline-block;
}

.footer-info .contact span+span {
    margin-left: 10px;
}

.footer-info li:not(.copyright) {
    display: inline;
    margin-right: 10px;
}

.footer-info li.clearfix {
    display: block;
}

/* scrolltop */
#scrolltop {
    position: fixed;
    z-index: 1000;
    right: 50px;
    bottom: 50px;
    display: none;
    font-size: 18px;
    text-align: center;
    width: 50px;
    height: 50px;
    color: #fff;
    background: #000;
}

#scrolltop .inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

#scrolltop .inner i {
    font-size: 24px;
}

/* mobile footer*/
@media(max-width:767px) {
    .footer-info {
        margin-top: 15px;
    }

    .footer-info li {
        display: block;
        line-height: 1.25;
        margin-bottom: 5px;
    }

    .footer-info li+li {
        border: 0;
        margin-left: 0;
        padding-left: 0;
    }
}

/* no_content */
.maintenance {
    background: #f4f4f4;
    padding: 120px 25px;
    text-align: center;
}

.maintenance .icon {
    display: block;
    line-height: 1;
    font-size: 64px;
    margin-bottom: 10px;
}

.maintenance .big-cont {
    display: block;
    line-height: 1;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
}

.maintenance .small-cont {
    display: block;
    line-height: 1.5;
    font-size: 14px;
    letter-spacing: -0.03em;
    color: #818181;
    margin-bottom: 20px;
}

/* =================================== mainCarousel =================================== */

/* 슬라이드 */
#mainCarousel .carousel-inner .item {
    height: 100vh;
}

/* #mainCarousel .carousel-inner .item::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0;
} */

/* caption */
.carousel-caption {
    top: 50%;
}

.carousel-caption h1 {
    position: relative;
    font-size: 48px;
    font-weight: 600;
}

.carousel-caption p {
    font-size: 20px;
    line-height: 1.65;
    font-weight: 300;
}

/* control */
.carousel-control {
    display: flex;
    align-items: center;
    opacity: 1;
    width: 10%;
}

.carousel-control.right,
.carousel-control.left {
    background: transparent;
    justify-content: center;
}

.carousel-control.right {
    justify-content: flex-end;
}

.carousel-control.right span {
    margin-right: 0;
}

.carousel-control.left {
    justify-content: flex-start;
}

.carousel-control.left span {
    margin-left: 0;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next,
.carousel-control .icon-prev {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 100px;
    font-size: 28px;
    left: auto;
    right: auto;
    top: auto;
    position: relative;
    background: #333;
}

.glyphicon.glyphicon-chevron-right::before,
.glyphicon.glyphicon-chevron-left::before {
    color: #fff;
    font-family: 'Line Awesome Free';
    font-weight: 900;
}

.glyphicon.glyphicon-chevron-right::before {
    content: '\f105';
}

.glyphicon.glyphicon-chevron-left::before {
    content: '\f104';
}

/* indicators */
.carousel-indicators {
    bottom: 40px;
}

.carousel-indicators li,
.carousel-indicators li.active {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 0;
    margin: 0 5px;
}

.carousel-indicators li {
    border: 2px solid #fff;
    background-color: rgba(255, 255, 255, .1);
    transition: ease-in-out .15s all;
}

.carousel-indicators li.active {
    background: #fff;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, .0);
}

.carousel-caption {
    text-shadow: 0px 0px 10px rgba(0, 0, 0, .0);
}

/* =================================== mainpage common =================================== */
/* section */
.mainpage {
    position: relative;
    height: 100vh;
}

.mainpage::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    background: #222;
    opacity: 1;
}

.fullpage-wrapper {
    width: 100% !important;
    transform: none !important;
}

.fp-tableCell {
    transition: .5s;
}

.fp-tableCell>.container {
    display: flex;
    height: 100%;
    align-items: center;
}

.fp-section.active {
    visibility: visible;
    opacity: 1;
    z-index: 1;
}

.mainpage section {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    padding: 0;
}

.mainpage section.main01 {
    z-index: 10;
}

.mainpage section.main02 {
    z-index: 9;
}

.mainpage section.main03 {
    z-index: 8;
}

.mainpage section.main04 {
    z-index: 7;
}

.mainpage section.main05 {
    z-index: 6;
}

.mainpage section.back,
.mainpage section {
    transition: all 1000ms cubic-bezier(0.55, 0.085, 0, 0.99);
    transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
}

.mainpage section.active:first-child {
    transform: inherit !important;
}

.mainpage section.active {
    transform: inherit !important;
}

.mainpage section::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: .4;
}

.mainpage section.main02 .main-caption strong,
.mainpage section.main03 .main-caption strong {
    font-size: 1.1em;
}

.mainpage section.main01 {
    background-image: url(/public/img/main/main01-bg-re.jpg);
}

.mainpage section.main02 {
    background-image: url(/public/img/main/main02-bg-220613.jpg);
}

.mainpage section.main03 {
    background-image: url(/public/img/main/main03-bg.jpg);
}

.mainpage section.main04 {
    background-image: url(/public/img/main/main04-bg.jpg);
}

.mainpage section.main05 {
    background-image: url(/public/img/main/main05-bg.jpg);
}

.mainpage .main-caption {
    width: 100%;
    margin-top: 20px;
    position: relative;
    z-index: 50;
    color: #fff;
}

.mainpage .main-caption h1 {
    font-family: 'Teko', sans-serif;
    font-size: 140px;
    line-height: 0.875;
    letter-spacing: 0.015em;
    font-weight: 500;
    text-shadow: 0 0 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.mainpage .main-caption h4 {
    margin: 0;
    font-size: 30px;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: -0.034em;
}

.mainpage .main-caption h4+p {
    margin: 10px 0 0;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 300;
}

.mainpage .main-caption p {
    margin-top: 20px;
    font-size: 24px;
    letter-spacing: -0.03em;
    font-weight: 400;
}

.mainpage .main-caption span.cate {
    font-size: 20px;
    margin-bottom: 17px;
    padding-left: 5px;
    font-weight: 300;
}

.mainpage section .more-btn {
    font-family: 'Teko', sans-serif;
    display: inline-block;
    margin-top: 50px;
    border-bottom: 2px solid #fff;
    padding-bottom: 7px;
    color: #fff;
    font-size: 26px;
    line-height: 1;
}

.mainpage section .more-btn:hover {
    color: #fff;
}

.mainpage .main-caption .counter {
    font-family: 'Teko', sans-serif;
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
}

.mainpage .main-caption .counter p {
    margin: 0;
    font-size: 44px;
    letter-spacing: 0.2em;
    line-height: 1;
}

.mainpage .main-caption .counter p.all {
    opacity: .5;
}

.mainpage .main-caption h1>* {
    display: inline-block;
}

.mainpage .main-caption span {
    font-weight: 400;
}

.mainpage .main-caption strong {
    font-weight: 400;
    text-transform: uppercase;
    /* font-family: 'KoPub Dotum', sans-serif; */
    /* margin-left: 5px;
    letter-spacing: 0;
    font-size: 1.02em; */
}

#site #fp-nav.fp-right {
    right: 60px;
}

#site #fp-nav ul li,
#site .fp-slidesNav ul li {
    margin: 14px 0;

}

#site #fp-nav ul li a.active span {
    border-radius: 50%;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
    height: 5px;
    width: 5px;
    border: 0;
    background: #fff;
    left: 90%;
    top: 90%;
}

#site #fp-nav ul li a::before {
    opacity: 0;
    content: '';
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    left: 50%;
    top: 45%;
    display: block;
    border: 1px solid #fff;
    width: 23px;
    height: 23px;
    border-radius: 50%;
}

#site #fp-nav ul li a.active::before {
    opacity: 1;
}

#site #fp-nav ul li a span,
#site .fp-slidesNav ul li a span {
    transition: .25s;
    background: #fff;
}

#site #fp-nav ul li:hover a span,
#site .fp-slidesNav ul li:hover a span {
    background: #f24a00;
}

#site #fp-nav ul li:hover a::before {
    border-color: #f24a00;

}


/* wrap */

/* =================================== subpage header =================================== */

/* default */
.subpage-header {
    position: relative;
    z-index: 2;
    display: flex;
    flex-flow: wrap;
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(/public/img/sub/sub-top01.jpg);
    background-color: #ddd;
}

/* background */

.subpage-header.visual01-01 {
    background-image: url(/public/img/sub/sub-top01-01.jpg);
}

.subpage-header.visual01-02 {
    background-image: url(/public/img/sub/sub-top01-02.jpg);
}

.subpage-header.visual01-03 {
    background-image: url(/public/img/sub/sub-top01-03.jpg);
}

.subpage-header.visual02-01 {
    background-image: url(/public/img/sub/sub-top02-01re.jpg);
}

.subpage-header.visual02-02 {
    background-image: url(/public/img/sub/sub-top02-02-220613.jpg);
}

.subpage-header.visual02-03 {
    background-image: url(/public/img/sub/sub-top02-03.jpg);
}

.subpage-header.visual02-04 {
    background-image: url(/public/img/sub/sub-top02-04.jpg);
}

.subpage-header.visual02-05 {
    background-image: url(/public/img/sub/sub-top02-05.jpg);
}

.subpage-header.visual03-01 {
    background-image: url(/public/img/sub/sub-top03-01.jpg);
}

.subpage-header.visual04-01 {
    background-image: url(/public/img/sub/sub-top04-01.jpg);
}

.subpage-header.visual04-02 {
    background-image: url(/public/img/sub/sub-top04-02.jpg);
}

.subpage-header.visual05-01 {
    background-image: url(/public/img/sub/sub-top05-01.jpg);
}

.subpage-header.visual05-02 {
    background-image: url(/public/img/sub/sub-top05-02.jpg);
}

.subpage-header.visual06-01 {
    background-image: url(/public/img/sub/sub-top06-01.jpg);
}

.subpage-header.visual06-02 {
    background-image: url(/public/img/sub/sub-top06-02.jpg);
}

.subpage-header.visual06-03 {
    background-image: url(/public/img/sub/sub-top06-03.jpg);
}

.subpage-header::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: .35;
}

.subpage-header .sub-title {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-top: 10px;
    height: 100%;
}

.subpage-header .sub-title h2 {
    font-family: 'Teko', sans-serif;
    font-size: 160px;
    line-height: 0.78;
    letter-spacing: 0.01em;
    font-weight: 400;
    text-shadow: 0 0 60px rgba(0, 0, 0, 0.15);
}

.subpage-header .sub-title h4 {
    margin: 0;
    font-size: 28px;
    line-height: 1.6;
    font-weight: 400;
}

.subpage-header .sub-title h4+p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
}

.subpage-header .sub-title {
    position: relative;
    z-index: 50;
    color: #fff;
}

.subpage-header .sub-title p {


    margin: 50px 0 0 3px;
    padding-bottom: 2px;
    font-size: 28px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}

.subpage-header .sub-title span.cate {
    font-size: 20px;
    margin-bottom: 10px;
    padding-left: 5px;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.breadcrumb {
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 13px;
}

.breadcrumb>li {
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb>li.active {
    color: #fff;
}

.breadcrumb>li+li:before {
    content: '\f054';
    padding: 0 8px 0 6px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    font-size: 10px;
}


/* =================================== snb =================================== */
.snb {
    position: relative;
    z-index: 10;
    border-bottom: 1px solid #ccc;
}

.snb ul,
.snb li>a {
    display: flex;
}

.snb ul {
    margin: 0;
    justify-content: center;
}

.snb li {
    flex: 1;
}

.snb li>a {
    align-items: center;
    width: 100%;
    height: 55px;
    background: #222;
    text-align: center;
    font-size: 16px;
    color: #fff;
}

.snb li.active a {
    position: relative;
    background: #fff;
    font-weight: 700;
    color: #222;
}

/* .snb li.active a::after {
    content: '';
    position: absolute;
    display: block;
    background: #222;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: -1px;
} */


/* =================================== subpage section, title =================================== */
.subpage-content {
    position: relative;
    z-index: 2;
    background: #fff;
}

.subpage-content section {
    padding: 70px 0 70px;
}

.subpage-content section>.row+.row {
    margin-top: 100px;
}

.subpage-content .col-sm-12:not(.wrap-title)+.col-sm-12 {
    margin-top: 40px;
}

.subpage-content .wrap-title {
    margin-bottom: 25px;
}

.subpage-content .container>h3 {
    margin-top: 100px;
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0px;
    color: #111;
    letter-spacing: -0.06em;
}

#cureent01 .subpage-content .container>h3 {
    letter-spacing: -0.02em;
}

.subpage-content .container>h3+p {
    color: #222;
    margin-top: 70px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.6em;
    font-weight: 500;
}

.subpage-content h4 {
    margin: 0 0 20px;
    padding-left: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #111;
}

.subpage-content .wrap-title h4 {
    margin-bottom: 0;
}

.subpage-content .wrap-title h4+ul,
.subpage-content .wrap-title h4+p {
    margin-top: 20px;
    margin-bottom: 10px;
}

/* .subpage-content .wrap-title h4+* {
    margin-top: 20px;
} */

.subpage-content h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    display: block;
    width: 4px;
    height: 23px;
    background: #f24a00;
}

.subpage-content .item h5 {
    margin: 0 0 30px;
    font-weight: 500;
    font-size: 24px;
    color: #333;
}

.subpage-content .item h6 {
    margin: 0 0 15px;
    font-weight: 600;
    font-size: 20px;
}

.subpage-content p {
    font-size: 17px;
    line-height: 1.5;
    color: #444;
}

.subpage-content p+p {
    margin-top: 15px;
}

.subpage-content p+div {
    margin-top: 30px;
}

/* =================================== subpage content =================================== */
/* 01 */

/* map */
/* map-kakao */
.map-kakao .wrap_map,
.map-kakao .root_daum_roughmap {
    width: 100% !important;
    height: 450px !important;
    padding: 0 !important;
}

.map-kakao .root_daum_roughmap .map_border {
    display: none !important;
}

/* map-google */
.map-google iframe {
    width: 100%;
    height: 400px;
    margin-bottom: -5px;
}

.li-map {
    display: flex;
}

.li-map li {
    font-size: 17px;
}

.li-map li strong {
    margin-right: 10px;
}

.li-map li+li {
    margin-left: 20px;
}

.sub-greet-wrap>div:nth-child(1) {
    padding-right: 70px;
    text-align: justify;
}

.sub-greet-wrap img {
    padding-left: 60px;
}

.sub-greet-wrap p {
    line-height: 1.6;
    margin: 0;
    font-size: 17px;
}

.sub-greet-wrap p+p {
    margin-top: 20px;
}

.sub-greet-wrap p.name {
    margin-top: 20px;
    color: #222;
    text-align: right;
    font-size: 15px;
}

.sub-greet-wrap p.name b {
    font-size: 20px;
    margin-left: 10px;
}

.sub-carrer-wrap .item {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 30px;
    border: 1px solid #ddd;
}

.sub-carrer-wrap .item>div {
    padding: 0;
}

.sub-carrer-wrap .item .img-box {
    display: flex;
    justify-content: center;
}

.sub-carrer-wrap .item p {
    margin: 0;
    padding-left: 40px;
    border-left: 1px solid #f24a00;
    font-size: 16px;
    font-weight: 500;
}

/* 02 */
.sub-info-wrap .text {
    padding-right: 40px;
}

.sub-info-wrap .text h4 {
    margin-bottom: 30px;
}

.li-num li {
    position: relative;
    font-size: 17px;
    padding-left: 33px;
    font-weight: 500;
}

.li-num li+li {
    margin-top: 10px;
}

.li-num strong {
    margin-right: 10px;
    position: absolute;
    left: 0;
    font-size: 15px;
    font-weight: 400;
    top: 0px;
    background: #ff7033;
    border-radius: 50%;
    width: 23px;
    height: 23px;
    text-align: center;
    padding: 2px 0 0;
    color: #Fff;
}

.li-num li span {
    display: block;
    background: #eeeef1;
    margin-top: 5px;
    margin-bottom: 15px;
    padding: 7px;
    font-size: 15px;
    color: #070754;
}

.sub-vert-wrap,
.sub-info-wrap {
    margin: 0;
    border-top: 1px solid #ddd;
    padding-top: 30px;
}

.sub-vert-wrap .wrap-title {
    padding: 0;
}

#area01 h4,
#area03 h4 {
    padding: 0;
    font-size: 28px;
    display: inline-block;
    width: 280px;
}

#area01 h4::before,
#area03 h4::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    top: -31px;
    background: #333;
}

.sub-card-wrap {
    display: flex;
    flex-wrap: wrap;
}

.sub-card-wrap .img-box {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 350px;
}

.sub-card-wrap .img-box img {
    transition: 1s;
}

.sub-card-wrap .img-box:hover img {
    transform: scale(1.1);
}

.sub-card-wrap .text {
    transition: .5s;
    position: relative;
    z-index: 2;
    padding: 50px 50px;
    height: 320px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}

.sub-card-wrap .item:hover .text {
    background: #f24a00;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.15);
}

.sub-card-wrap .item {
    position: relative;
    margin-bottom: 30px;
}

.sub-card-wrap .item span.num {
    display: block;
    font-size: 42px;
    font-weight: 100;
    padding-left: 3px;
    margin-bottom: 7px;
    color: #fff;
}

.sub-card-wrap .item h4 {
    font-size: 32px;
    color: #fff;
    padding: 0;
    margin-bottom: 30px;
}

.sub-card-wrap .item h4::before {
    content: none;
}

.sub-card-wrap .item p {
    color: #fff;
    font-size: 18px;
    margin: 0;
    font-weight: 300;
}

.sub-card-wrap .item img {
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.step-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    border: 1px solid #ddd;
    border-right: 0;
    border-bottom: 0;
}

.step-wrap>div {
    padding: 0;
}

.step-wrap .item {
    height: 100%;
    border: 1px solid #ddd;
    border-left: 0;
    border-top: 0;
    padding: 40px 35px;
}

.step-wrap .item span.num {
    display: block;
    font-weight: 300;
    margin-bottom: 10px;
    font-size: 24px;
    color: #666;
    letter-spacing: 0.02em;
    font-family: 'Teko', sans-serif;
}

.step-wrap .item h5 {
    margin: 0;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
    color: #111;
}

.step-wrap .item h5+p {
    margin-top: 15px;
    margin-bottom: 0;
}

.step-wrap .item i {
    color: #f24a00;
    font-size: 52px;
    margin-top: 40px;
}

#recruit01 .step-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -40px;

    border: 0;
}

#recruit01 .step-wrap>div {
    padding: 30px 40px 50px;
}

#recruit01 .step-wrap .item {
    height: 100%;
    position: relative;
    border: 0;
    padding: 0;
}

#recruit01 .step-wrap .item span.num {
    display: none;
}

#recruit01 .step-wrap .item h5 {
    float: left;
    margin: 0;
    font-size: 27px;
    line-height: 1.35;
    font-weight: 700;
    color: #111;
    width: 35%;
    padding: 48px 30px 0 0;
}

#recruit01 .step-wrap .item h5+p {
    float: right;
    width: 65%;
    margin: 47px 0 0;
    padding-left: 20px;
    font-size: 16px;
}

#recruit01 .step-wrap .item i {
    color: #f24a00;
    font-size: 44px;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
}

/* 03 */

/* 04 */
.li-partner {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #eee;
    border-right: 0;
    border-bottom: 0;
}

.li-partner li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
    height: 100px;
    color: #333;
    font-weight: 500;
    font-size: 17px;
    border: 1px solid #eee;
    border-left: 0;
    border-top: 0;
}

.li-partner.low {
    border: 0;
}

.li-partner.low li {
    border: 1px solid #eee;
}

.li-partner.low li+li {
    border-left: 0;
}

.li-partner li img {
    padding: 0 40px;
}

/* 05 */

/* table */
.sub-table-wrap {
    display: flex;
    flex-wrap: wrap;
}

.sub-table-wrap>div>* {
    height: 100%;
}

.sub-table-wrap .table-style th,
.sub-table-wrap .table-style td {
    border-color: #ddd;
    padding: 10px 15px;
    font-size: 14px;
    vertical-align: middle;
    color: #333;
}

.sub-table-wrap .table-style thead th {
    font-weight: 500;
    border: 1px solid #666 !important;
    color: #fff;
    text-align: center;
    background: #333;
    letter-spacing: 0.02em;
    font-size: 15px;
}

.sub-table-wrap .table-style tbody tr:last-child td {
    background: #f4f4f4;
    /* border: 2px solid #bbb; */
    font-weight: 600;
    color: #2c2c60;
}

.sub-table-wrap .table-style tbody tr.imp {}

.sub-table-wrap .table-style tbody tr.imp td {
    color: #5656ad;
    font-weight: 700;
}

.sub-table-wrap .right .img-box {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 40px;
}

/* =================================== board, bbs =================================== */
/* .bbs-area h4 {
    font-weight: 500;
    font-size: 20px;
    padding: 0;
    color: #222;
}

.bbs-area h4::before,
.bbs-area h4::after {
    content: none !important;
}

.bbs-area h4.title {
    text-align: center;
} */
.bbs-area .header_wrap h4,
.bbs-area .reply_wrap h4 {
    padding: 0;
    font-weight: 500;
    font-size: 22px;
}

.bbs-area .header_wrap h4::before,
.bbs-area .reply_wrap h4::before {
    content: none;
}

.bbs-area .reply_wrap h4 {
    text-align: left;
    font-size: 18px;
}

.bbs-area .search_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.bbs-area .search_wrap>*+* {
    margin-left: 5px;
}

.board_wrapper .text-center .btn.btn-lg,
.board_wrapper .text-center .btn+.btn {
    min-width: 200px;
}

.btn.btn-primary {
    font-family: 'notokr';
    background-color: #555;
    border: 1px solid #555;
    color: #fff;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background-color: #222;
    border-color: #222;
}

/* member */
.member_wrapper {
    max-width: 1140px;
    margin: 0 auto;
}

.member_wrapper h1 {
    margin-top: 0;
}

.member_wrapper .btn {
    transition: all ease 0.3s
}

.member_wrapper .table tbody tr th {
    background-color: rgba(0, 0, 0, 0.03);
}

.member_wrapper .table tbody tr th span {
    color: #5dae57
}

.table_blog2 dd .inner {
    border: none;
}

.table.table_default tbody tr th.num {
    font-weight: normal;
}

.table.table_default tbody .subject a {
    font-size: 16px;
    color: #333;
}

.table.table_default tr th,
.table.table_default tr td {
    font-size: 15px;
    border-bottom: 1px solid #ddd;
}

.table.table_default thead th {
    background: #fff;
    border-bottom: 1px solid #ccc;
    font-weight: 700;
}

.table_default {
    border-top: 2px solid #333;
}


.table.table_default tr td {
    color: #777;
}

.text-muted {
    font-size: 14px !important;
    margin-top: 8px !important;
}

input.form-control {
    font-family: 'notokr', sans-serif;
}

.table_default .status_badge {
    font-weight: 500;
    border-radius: 2px;
    padding: 3px 0 2px;
    display: inline-block;
    width: 52px;
    font-size: 13px;
}

/* wrapper */
.board_wrapper {
    margin: 0 !important;
    font-family: 'Roboto', 'notokr', sans-serif;
}

.board_wrapper i::after,
.board_wrapper i::before {
    font-family: 'Font Awesome 5 Free';
}

.board_wrapper .text-center .btn {
    padding: 15px 0 !important;
}

.board_wrapper .table.board_write_table .input-group.input-group-big,
.board_wrapper .table.board_write_table .form-control.form-control-big,
.board_wrapper .table.board_write_table tbody tr td .btn,
.board_wrapper .table.board_write_table tbody tr td .form-control {
    width: 50%;
}

.board_wrapper .table.board_write_table .files .fileInput .file_add {
    padding: 6px 7px 5px;
}

.board_wrapper .table.board_write_table .files+.sumChk {
    padding-bottom: 0;
    margin-bottom: 0;
    border: 0;
}

.board_wrapper .table.board_write_table tbody tr th {
    font-size: 15px;
    font-weight: 700;
    width: 220px;
}

.board_box_blog2 .row {
    margin-left: -5px;
    margin-right: -5px;
}

.board_box_blog2 .row>div[class^="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}

.board_box_blog2 .inner {
    margin-top: 0;
    margin-bottom: 0;
}

.board_box_blog2 .inner .bottom {
    padding: 12px 10px;
}

.board_box_blog2 .inner .bottom .title {
    font-size: 25px;
    letter-spacing: -0.02em;
}

.board_box_blog2 .inner .bottom .title a {
    font-size: 14px;
}

.board_data_view {
    border-top: 2px solid #333;
}

.board_data_view .header_wrap {
    border-bottom: 1px solid #ddd;
    padding: 40px 0;
    text-align: left;
}

.board_data_view .contents_wrap {
    font-size: 16px;
    padding: 50px 2px;
}

.board_data_view .status_wrap {
    background: #f8f8f8;
    border-top: 1px solid #eee;
}

.board_data_view .status_wrap table th {
    font-size: 15px;
    font-weight: 500;
}

.radio-inline span {
    display: block;
    width: 50px;
    text-align: center;
    padding: 3px 0 1px;
    border-radius: 2px;
    font-size: 13px;
}

.board_data_view .header_wrap .title {
    font-size: 26px;
    letter-spacing: -0.06em;
}

.board_data_view .contents_wrap p {
    /* font-size: 17px; */
}

.board_box_blog2 .inner .bottom .info {
    display: none;
}

.board_box_blog2 .inner .top a .thumb {
    height: 180px;
}

.checkbox label,
.radio label {
    font-size: 15px;
    letter-spacing: -0.06em;
}

.custom_checkbox+span a {
    font-weight: 500;
}

.privacy_body {
    font-size: 16px;
    line-height: 1.6em;
    padding: 0 100px;
}

.badge {
    padding: 6px 6px;
    border-radius: 2px;
    font-weight: 400;
    font-size: 13px;
    margin-right: 3px;
}

.main_popup {
    border: 0;
}

.main_popup_contents {
    padding: 0;
}

.main_popup_contents img {
    display: block;
    max-width: 100%;
    height: auto;
}

h2.form_history_title {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

.alert-info {
    border: 0;
    background: #f8f8f8;
    color: #333;
    border-radius: 0;
    margin-bottom: 30px;
}

.alert-info ul li {
    font-size: 15px;
}

.alert-info ul li::before {
    content: '';
    display: block;
    position: absolute;
    width: 6px;
    height: 3px;
    background: #666;
    left: -14px;
    top: 11px;
}

/* =================================== mobile =================================== */
/* mainpage */
@media(max-width:767px) {
    .mainpage .main-caption span.cate {
        font-size: 16px;
    }

    .mainpage section::before {
        opacity: 0.5;
    }

    .mainpage .main-caption {
        padding-right: 40px;
        margin-top: 0;
        margin-bottom: 50px;
    }

    .mainpage .main-caption h1 {
        font-size: 64px;
        margin-bottom: 20px;
    }

    .mainpage .main-caption h4 {
        font-size: 20px;
    }

    .mainpage .main-caption h4+p {
        font-size: 14px;
    }

    .mainpage .main-caption h4+p br {
        display: none;
    }

    .mainpage section .more-btn {
        font-size: 22px;
        margin-top: 40px;
    }

    .mainpage .main-caption .counter {
        right: 30px;
    }

    .mainpage .main-caption .counter p {
        font-size: 28px;
    }

    #main_wrapper>footer li {
        font-size: 11px;
        text-align: left;
    }

    #main_wrapper>footer li br {
        display: none !important;
    }

    #main_wrapper>footer .container {
        padding: 0 15px;
    }

    #main_wrapper>footer {
        padding-bottom: 15px;
    }

    #site #fp-nav.fp-right {
        right: 20px;
    }

    .fp-tableCell {
        transition: none !important;
    }
}

/* subpage */
@media(max-width:767px) {
    .subpage-header::before {
        opacity: .5;
    }

    .subpage-header {
        height: 500px;
    }

    .subpage-header>.container {
        width: 100%;
    }

    .subpage-content .container>h3+p {
        margin-top: 40px;
    }

    .subpage-content .col-sm-12:not(.wrap-title)+.col-sm-12 {
        margin-top: 30px;
    }

    .subpage-content section>.row+.row {
        margin-top: 60px;
    }

    .subpage-header .sub-title span.cate {
        font-size: 17px;
    }

    .subpage-header .sub-title {
        margin: 0;
        padding-top: 50px;
    }

    .subpage-header .sub-title h2 {
        font-size: 86px;
    }

    .subpage-header .sub-title p {
        font-size: 20px;
        margin-top: 20px;
    }

    .subpage-content .container>h3 {
        margin-top: 70px;
        line-height: 1.3;
        font-size: 30px;
    }

    .sub-greet-wrap>div:nth-child(1) {
        padding-right: 15px;
        margin-bottom: 30px;
    }

    .subpage-content section {
        padding: 50px 0 80px;
    }

    .sub-greet-wrap img {
        padding-left: 0;
    }

    #site>footer {
        padding-top: 0;
        padding-bottom: 50px;
    }

    .footer-info .contact span+span {
        margin-left: 0;
    }

    #site>footer .footer-info li.copyright br {
        display: none !important;
    }

    .sub-carrer-wrap .item {
        flex-wrap: wrap;
        justify-content: center;
    }

    .sub-carrer-wrap .item p {
        width: 100%;
        padding-left: 0;
        padding-top: 15px;
        margin-top: 15px;
        text-align: center;
        border-top: 1px solid #f24a00;
        border-left: 0;
    }

    .sub-carrer-wrap .item>div:nth-child(2) {
        width: 100%;
    }

    .li-map {
        flex-wrap: wrap;
    }

    .li-map>li {
        width: 100%;
    }

    .li-map>li+li {
        margin-left: 0;
        margin-top: 10px;
    }

    .sub-card-wrap .img-box {
        height: auto;
    }

    .sub-card-wrap>div+div {
        margin-top: 15px;
    }

    .sub-card-wrap>div {
        width: 100%;
    }

    .sub-card-wrap .item {
        margin-bottom: 0;
    }

    .sub-card-wrap .text {
        padding: 40px;
    }

    .sub-card-wrap .item h4 {
        font-size: 28px;
    }

    .sub-card-wrap .item span.num {
        font-size: 36px;
    }

    .sub-vert-wrap>.wrap-content {
        padding: 0;
    }

    .sub-info-wrap .text {
        padding-right: 0;
    }

    .sub-vert-wrap>div,
    .sub-info-wrap>div {
        padding: 0;
    }

    #area01 h4,
    #area03 h4 {
        font-size: 24px;
    }

    .li-num li {
        font-size: 15px;
    }

    .li-num li span {
        font-size: 14px;
    }

    .step-wrap>div {
        width: 50%;
    }

    .step-wrap .item {
        padding: 25px;
    }

    .step-wrap .item h5 {
        font-size: 20px;
    }

    .sub-table-wrap .right .img-box {
        padding-left: 0;
        margin-top: 30px;
    }

    .li-partner li {
        width: 50%;
    }

    .li-partner li img {
        padding: 0 15px;
    }

    #recruit01 .step-wrap>div {
        width: 100%;
        padding: 30px;
        border: 1px solid #ddd;
    }

    #recruit01 .step-wrap>div+div {
        margin-top: 20px;
    }

    #recruit01 .step-wrap {
        margin: 0;
    }

    #recruit01 .step-wrap .item h5 {
        width: 100%;
        font-size: 24px;
    }

    #recruit01 .step-wrap .item h5+p {
        width: 100%;
        margin-top: 20px;
        padding-left: 0;
    }

}

/* bbs, etc */
@media(max-width:767px) {
    .member_wrapper {
        padding: 70px 15px;
    }

    .privacy_body {
        padding: 0 30px;
    }

    .table_default colgroup,
    .table_default .num,
    .table_default .regdate,
    .table_default .hits,
    .table_default .writer {
        display: none;
    }

    .table_default .subject {
        width: 100%;
    }

    .member_wrapper #join_form .table .input-group.input-group-big,
    .member_wrapper #join_form .table .form-control.form-control-big,
    .board_wrapper .table.board_write_table .input-group.input-group-big,
    .board_wrapper .table.board_write_table .form-control.form-control-big,
    .board_wrapper .table.board_write_table tbody tr td .btn,
    .board_wrapper .table.board_write_table tbody tr td .form-control,
    .board_wrapper .table.board_write_table .input-group.input-group-big,
    .board_wrapper .table.board_write_table .form-control.form-control-big {
        width: 100%;
    }

    .bbs-area .search_wrap>*+* {
        margin-left: 0;
    }

    .search_wrap {
        margin-bottom: 0 !important;
    }

    .search_wrap>*+* {
        margin-left: 0;
    }

    .board_wrapper div.text-center {
        margin-top: 0;
        margin-bottom: 50px;
        padding-top: 30px;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .board_wrapper .text-center .btn.btn-lg {
        padding: 0;
        height: 50px;
    }

    .board_wrapper .text-center .btn.btn-lg,
    .board_wrapper .text-center .btn+.btn {
        flex: 1;
        min-width: inherit;
    }

    .form-horizontal .form-group {
        margin-bottom: 20px !important;
    }

    .table.table_responsive tbody tr th {
        padding: 15px !important;
    }

    .main_popup_contents {
        padding: 10px;
    }
}

/* bbs-reset */
.board_data_view .contents_wrap p {
    font-size: inherit;
}

.board_data_view .contents_wrap li,
.board_data_view .contents_wrap dl {
    margin: inherit;
    padding: inherit;
    list-style-position: inside !important;
}

.board_data_view .contents_wrap ul li {
    list-style-type: disc !important;
}

.board_data_view .contents_wrap ol li {
    list-style-type: decimal !important;
}