@import url(../font/NanumNeo.css);

/*common*/
html,body {
    width: 100%;
    height: 100%;
}
body {
    font-family: 'NanumNeo', -apple-system,BlinkMacSystemFont,helvetica,"Apple SD Gothic Neo",sans-serif;
    font-size:12px;
    font-weight:400;
    color: #000;
}
p {
    margin-bottom:0;
}
a {
    text-decoration: none;
    color:#000;
}
a:hover {
    color:unset;
}
ul {
    list-style: none;
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
}
figure {
    margin:0;
}

.filter-gray {
    filter: grayscale(1);
}

/*header*/
.header {
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    right:0;
    z-index: 9999;
    padding:7px 0;
    background-color:#fff;
}
.header .navbar {
    background-color:#fff;
}
.header .navbar-brand {
    font-weight:600;
}
.header .navbar-brand:hover {
    color:#005e32;
}
.header .navbar-nav {
    font-size:16px;
    font-weight: 300;
}
.header .nav-link {
    position:relative;
    color:#000;
}
.header .nav-link.active:after {
    content:'';
    width:100%;
    height:1px;
    position:absolute;
    right:0;
    left:0;
    bottom:7px;
    background-color: #000;
}
.header .navbar-icon {
    order: 0;
    margin-left: auto;
    margin-right: 15px;
}
.header .icon-insta {
    font-size: 18px;
}
.header .navbar-toggler {
    border:0;
}

/*nav hover action*/
.header .nav-link:hover {
    color: #005e32;
}
.header .nav-link:before,
.header .nav-link:after {
    content: "";
    width: 0;
    height: 1px;
    display: block;
    position: absolute;
    bottom:7px;
}
.header .nav-link:before {
    transition: width 0s ease, background 0.4s ease;
    left: 0;
    right: 0;
    bottom:7px;
}
.header .nav-link:after {
    right: 2.2%;
    bottom:7px;
    background: #005e32;
    transition: width 0.4s ease;
}
.header .nav-link:hover:before {
    width: 97.8%;
    background: #005e32;
    transition: width 0.4s ease;
}
.header .nav-link:hover:after {
    width: 97.8%;
    background: 0 0;
    transition: all 0s ease;
}

/*submenu*/
.submenu-wrap {
    position:fixed;
    top:70px;
    z-index: 9998;
    width:100%;
    overflow:hidden;
    background-color:rgba(255,255,255,0.9);
    border-top:1px solid #ccc;
    border-bottom:1px solid #000;
}
.submenu-inner {
    overflow-x:auto;
    padding:0 15px;
}
.submenu {
    display: flex;
    flex-flow:row nowrap;
}
.submenu-item.active .submenu-link {

    font-weight:bold;
    color:#005e32;
}
.submenu-link {
    display: block;
    height: 46px;
    line-height: 46px;
    font-size:14px;
    color:#666;
    white-space:nowrap;
    padding:0 10px;
}
.submenu-item:first-child .submenu-link {
    padding-left:0;
}

/*content*/
.content {
    min-height: calc(100vh - 60px);
    padding-top: 70px;
}
.content-inner {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    padding-top:18vw;
    padding-bottom:12vw;
}

/*main*/
.main-gallery .gallery-list {
    width:100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.main-gallery .gallery-item {
    width:100%;
    margin-bottom:4vw;
}
.main-gallery .gallery-link {
    padding-top: 78%;
    position: relative;
    display: block;
    overflow: hidden;
}
.main-gallery .gallery-link>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    transition-duration: 0.8s;
}
.main-gallery .gallery-link:hover>img {
    transform: scale(1.02);
    transition-duration: 0.5s;
}
.main-gallery .gallery-item .txt-wrap {
    margin-top:1vw;
}
.main-gallery .gallery-item .title {
    display: block;
    font-size:24px;
    font-weight:600;
    margin-bottom:5px;
}
.main-gallery .gallery-item .text {
    font-size:14px;
    line-height: 1.3;
    word-break: keep-all;
}

/*contact*/
.contact-wrap .logo-svg {
    max-width: 310px;
}
.contact-box {
    margin-top:30px;
    margin-bottom:30px;
}
.contact-title {
    font-size:16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.contact-text {
    font-size:14px;
    line-height: 1.3;
    word-break: keep-all;
    margin-bottom:10px;
}
/*창업 절차*/
.step-list {
    display:flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-flow: row wrap;
}
.step-item .item-img {
    display:inline-block;
    background-color:#f7f7f7;
    border-radius:50%;
    padding:25px;
}
.step-item .item-img>img {
    width:50px;
}
.step-item {
    width:33.333%;
    text-align:center;
    position: relative;
    margin-bottom:20px;
}
.step-item:after {
    content: '\F138';
    font-family: 'bootstrap-icons';
    position: absolute;
    right: -12px;
    top: 109px;
    font-size: 18px;
    color: #c5c5c5;
}
.step-item:last-child:after {
    display: none;
}
.step-item .title {
    color:#005e32;
    font-size:12px;
    margin-top: 15px;
    margin-bottom: 5px;
}
.step-item .text {
    font-weight:600;
    line-height: 1.3;
}
.step-item .text>span {
    display: block;
    color:#888;
    font-weight: 400;
    margin-top:3px;
}

/*sub*/
.sub-gallery {
    letter-spacing: -0.015em;
}
.sub-gallery .gallery-header {
    width:100%;
}
.sub-gallery .gallery-header:first-child {
    margin-bottom:4vw;
}
.sub-gallery .gallery-header .point-line>span {
    display: block;
    width: 4vw;
    height: 0.8vw;
    background-color: #000;
}
.sub-gallery .gallery-header .title {
    margin-top: 8vw;
}
.sub-gallery .gallery-header .title>h3 {
    font-size:9vw;
    line-height: 1.3;
    font-weight:700;
    margin-bottom:0;
}
.sub-gallery .gallery-header .text {
    margin-top: 3vw;
}
.sub-gallery .gallery-header .text>p {
    font-size:4vw;
    line-height: 1.6;
}
.sub-gallery .gallery-body {
    width:100%;
    margin-top: 12vw;
}
.sub-gallery .gallery-body>.row>div {
    margin-bottom: calc(1.5rem * .5);
}
.sub-gallery .gallery-body .img-container {
    padding-top: 78vw;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.sub-gallery .gallery-body>.row>.col-12 .img-container {
    padding-top:45vw;
}
.sub-gallery .gallery-body .img-container>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}
.sub-gallery .gallery-sub-header {
    width:100%;
}
.sub-gallery .sub-title {
    padding-top:130px;
    /* padding-bottom:10vw; */
}
.sub-gallery .sub-title .text {
    font-size:3vw;
    line-height: 1.7;
    border-bottom:1px solid #000;
    padding-bottom:2vw;
}
.sub-gallery .sub-title .title {
    font-size: 7vw;
    font-weight: 700;
    line-height: 1.3;
    padding-top:4vw;
    margin-bottom:0;
}
.sub-gallery .sub-title .adr {
    font-size:3.7vw;
    line-height: 1.7;
}

/*footer*/
.footer-inner {
    height:60px;
    display: flex;
    align-items: center;
}
.footer-logo {
    font-size: 14px;
    font-weight: 600;
    margin-right:15px;
}
.footer .copy {
    font-size:12px;
    margin-bottom:0;
}

@media (min-width:768px) {
    .submenu-wrap {
        background-color:#000;
        border-width:0;
    }
    .submenu-link {
        height:50px;
        line-height:50px;
        color:#fff;
        font-size:15px;
        padding:0 20px;
    }
    .submenu-link:hover {
        color:#fff;
    }
    .submenu-item.active .submenu-link {
        color:#fff;
    }
    .content-inner {
        padding-top:8vw;
    }
    .main-gallery .gallery-item {
        width:50%;
        padding:1%;
    }
    .sub-gallery .gallery-header .point-line>span {
        width: 2vw;
        height: 0.4vw;
    }
    .sub-gallery .gallery-header .title {
        margin-top: 45px;
    }
    .sub-gallery .gallery-header .title>h3 {
        font-size: 5vw;
    }
    .sub-gallery .gallery-header .text {
        margin-top: 45px;
    }
    .sub-gallery .gallery-header .text>p {
        font-size:1.8vw;
    }
    .sub-gallery .gallery-body {
        margin-top: 7vw;
    }
    .sub-gallery .gallery-body .img-container {
        padding-top:120%;
    }
    .sub-gallery .gallery-body>.row>div {
        margin-bottom:1.5rem;
    }
    .sub-gallery .gallery-body>.row>.col-12 .img-container {
        padding-top:54%;
    }
    .sub-gallery .sub-title .text {
        font-size:1.4vw;
        padding-bottom:4%;
    }
    .sub-gallery .sub-title .title {
        font-size:3vw;
        padding-top:3.5vw;
    }
    .sub-gallery .sub-title .adr {
        font-size:1.8vw;
    }
}

@media (min-width:992px) {
    .header .navbar-icon {
        order: 1;
        margin-left: unset;
        margin-right: unset;
    }
    .sub-gallery .gallery-header .title>h3 {
        font-size: 4vw;
    }
}

@media (min-width:1200px) {
    .content-inner {
        padding-top:100px;
        padding-bottom:200px;
    }
    .main-gallery .gallery-item {
        padding:10px;
        margin-bottom:50px;
    }
    .main-gallery .gallery-item .txt-wrap {
        margin-top:15px;
    }
    .sub-gallery .gallery-header:first-child {
        margin-bottom:0;
    }
    .sub-gallery .gallery-header .title>h3 {
        font-size: 60px;
    }
    .sub-gallery .gallery-header .text>p {
        font-size:24px;
    }
    .sub-gallery .gallery-body {
        margin-top:95px;
    }
    .sub-gallery .sub-title {
        padding-top:230px;
    }
    .sub-gallery .sub-title .text {
        font-size: 18px;
    }
    .sub-gallery .sub-title .title {
        font-size:48px;
        padding-top:45px;
    }
    .sub-gallery .sub-title .adr {
        font-size:24px;
    }
}