@charset "utf-8";
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
@import url('//cdn.jsdelivr.net/font-iropke-batang/1.2/font-iropke-batang.css');

/*-------------------------------------------------
Author : WB,Seo
Create date : 2023. 06. 27.
Last update : 
-------------------------------------------------*/

/* =================================
    RESET
=================================== */
* {box-sizing: border-box;}
body {
    color: #333;
    font-family: 'Pretendard', sans-serif;
    overflow-x: hidden;
}
hr {display: none;}
a {text-decoration: none; color: #333;}
b {font-weight: 700;}
button {padding: 0; border: none; background: none; cursor: pointer;}
img {border: none; -webkit-user-drag: none;}
html {font-size: 0.625em;}
.clear:after {content: ""; clear: both; display: block;}
.blind {position: absolute; top: -9999px; left: -9999px;}
input,
textarea,
select,
button {
    font-family: 'Pretendard', sans-serif;
    appearance: none;
    -webkit-appearance: none;
}
input::placeholder,
textarea::placeholder {color: #b0b0b0;}
input[type="checkbox"]:checked,
select {
    appearance: auto;
    -webkit-appearance: auto;
}
table {
    width: 100%;
    border-spacing: 0;
    table-layout: fixed;
}
caption, figcaption {
    visibility: hidden;
    overflow: hidden;
    width: 0; height: 0;
    font-size: 0;
    line-height:0
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
body::-webkit-scrollbar {width: 10px;}
body::-webkit-scrollbar-track-piece {background-color: #fff;}
body::-webkit-scrollbar-thumb {
    background-color: #d5d5d5;
    border-radius: 6px;
}
body::-webkit-scrollbar-thumb:hover {background-color: #c6c6c6;}
.pc {display: none;}
:root {
    --font: #331806;
}
body.menu-open {overflow: hidden;}
.font-mj {font-family: 'Iropke Batang', serif;}
/* ==================================
    MOBILE
=================================== */
/* ============= HEADER === */
header {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 50px;
    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 99;
    transition: .5s;
}
h1 {padding-top: 7px;}
h1 a {
    display: block;
    font-size: 0;
    width: 124px;
    margin: 0 auto;
}
h1 a img {width: 100%;}
#mobile-menu-open {
    position: absolute;
    top: 50%; right: 16px; transform: translateY(-50%);
    width: 22px; height: 19px;
}
#mobile-menu-open span {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: #3a3a3a;
    border-radius: 2px;
    transition: transform .5s, top .5s .3s;
}
#mobile-menu-open span:nth-child(2) {top: 8px;}
#mobile-menu-open span:nth-child(3) {top: 16px;}
#mobile-nav {
    padding: 18px 16px;
    position: absolute;
    top: 50px;
    width: 82%; height: calc(100vh - 50px);
    background: var(--font);
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
#mobile-nav .gnb > li > a {
    display: block;
    padding: 15px 0;
    font-size: 2rem; color: #fff;
    font-weight: 400;
}
#mobile-nav .lnb {display: none;}
#mobile-nav .lnb li a {
    display: block;
    padding: 7px 8px;
    font-size: 1.5rem; color: #fff;
}
.nav-wrap.active #mobile-menu-open span {
    top: 50%; transform: translateY(-50%) rotate(45deg);
    transition: top .5s, transform .5s .3s;
}
.nav-wrap.active #mobile-menu-open span:nth-child(2) {opacity: 0;}
.nav-wrap.active #mobile-menu-open span:nth-child(3) {transform: translateY(-50%) rotate(-45deg);}
.nav-wrap.active #mobile-nav {
    opacity: 1;
    visibility: visible;
}
header.scrolled {transform: translateY(-100%);}
main {padding-top: 50px;}

/* ============= FOOTER === */
footer {background: #1b1b1b;}
.footer-inner {
    padding: 45px 16px;
    color: #c2c2c2;
    text-align: center;
}
.footer-inner .left-area .info {
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 300;
    white-space: pre-line;
}
.footer-inner .left-area .info .line {display: block;}
.footer-inner .right-area {margin-top: 20px;}
.footer-inner .right-area .inquire {font-size: 1.5rem;}
.footer-inner .right-area .number {
    display: block;
    margin-top: 5px;
    font-size: 1.8rem;
    font-weight: 700;
}

/* ============== SNB ======= */
.visual-inner .page-navigation {
	padding: 17px 16px 12px 0;
	display: flex;
	justify-content: flex-end;
	border-bottom: 1px dotted #ccc;
}
.visual-inner .page-navigation li {font-size: 1.3rem; color: #999;}
.visual-inner .page-navigation li:nth-child(-n+2):after {
	display: inline-block;
	margin: 0 5px;
	content: '>';
}
.visual-inner .page-navigation li.now-page {font-weight: 700;}
.common-inner {padding: 38px 16px 42px;}
.common-inner .co-title-area {margin-bottom: 19px;}
.common-inner .co-title-area h3 {
    font-size: 2rem;
}
.common-inner .co-title-area h3:after {
    display: block;
    margin: 11px 0 13px;
    width: 28px; height: 1px;
    content: '';
    background: var(--font);
}
.common-inner .co-title-area .cont {
    font-size: 1.5rem;
    line-height: 1.3;
}

/* ==================================
    PC
=================================== */
@media screen and (min-width:1084px){
    /* ==================================
        RESET
    =================================== */
    .pc {display: block;}
    .mobile {display: none;}

    /* ============= HEADER === */
    header {height: 100px;}
    .nav-wrap {
        display: flex;
        width: 1200px;
        margin: 0 auto;
        justify-content: space-between;
    }
    h1 {
        width: 193px;
        padding-top: 21px;
    }
    h1 a {width: auto;}
    #mobile-menu-open {display: none;}
    main {
        padding-top: 100px;
        min-height: 81.6vh;
    }
    #pc-nav .gnb {
        display: flex;
        gap: 0 80px;
    }
    #pc-nav .gnb > li {position: relative;}
    #pc-nav .gnb > li > a {
        position: relative;
        display: block;
        line-height: 99px;
        font-size: 1.8rem;
        font-weight: 500;
    }
    #pc-nav .gnb > li > a.active:after {
        position: absolute;
        content: '';
        bottom: 26px; left: 50%; transform: translateX(-50%);
        width: 26px; height: 2px;
        background: var(--font);
    }
    #pc-nav .bg {
        position: absolute;
        width: 100%; height: 0;
        top: 99px; left: 0;
        background: #fff;
        border-top: 1px solid #eee;
        transition: height .5s;
    }
    #pc-nav .lnb {
        position: absolute;
        width: 100%;
        top: 129px; left: 0;
        text-align: center;
        z-index: 2;
        display: none;
    }
    #pc-nav .lnb li:nth-child(n+2) {margin-top: 20px;}
    #pc-nav .lnb li a {font-size: 1.5rem;}

    /* ============= FOOTER === */
    .footer-inner {
        display: flex;
        width: 1200px;
        margin: 0 auto;
        padding: 46px 0;
        text-align: left;
        justify-content: space-between;
    }
    .footer-inner .left-area {
        position: relative;
        padding-left: 140px;
    }
    .footer-inner .left-area:before {
        position: absolute;
        top: 0; left: 0;
        content: '';
        width: 99px; height: 98px;
        background: url(/image/footer_logo.png) no-repeat center/contain;
    }
    .footer-inner .left-area .info .line {
        display: inline-block;
        margin: 0 12px;
        width: 1px; height: 8px;
        background: #c2c2c2;
        vertical-align: 1px;
    }
    .footer-inner .right-area {
        margin: 0;
        text-align: right;
    }
    .footer-inner .right-area .inquire {
        font-size: 2.4rem;
        font-weight: 600;
    }
    .footer-inner .right-area .number {
        margin-top: 3px;
        font-size: 2.4rem;
        font-weight: 600;
    }
    .footer-inner .right-area .tel-info {
        margin-top: 10px;
        font-size: 1.5rem;
        line-height: 1.3;
        white-space: pre-line;
    }

    /* ============== SNB ======= */
    .visual-inner .sub-common-visual {
        height: 200px;
        background: url(/image/sub_visual.jpg) no-repeat center/cover;
    }
    .visual-inner .page-navigation {
        padding: 17px 16px 12px 0;
        display: flex;
        justify-content: flex-end;
        border-bottom: 1px dotted #ccc;
    }
    .visual-inner .page-navigation li {font-size: 1.3rem; color: #999;}
    .visual-inner .page-navigation li:nth-child(-n+2):after {
        display: inline-block;
        margin: 0 5px;
        content: '>';
    }
    .visual-inner .page-navigation li.now-page {font-weight: 700;}
    .common-inner {
        width: 1200px;
        margin: 0 auto;
        padding: 68px 0 82px;
    }
    .common-inner .co-title-area {margin-bottom: 38px;}
    .common-inner .co-title-area h3 {font-size: 2.5rem;}
    .common-inner .co-title-area h3:after {
        margin: 17px 0 28px;
        height: 2px;
    }
    .common-inner .co-title-area .cont {
        font-size: 1.7rem;
        line-height: 1;
    }
}