@charset "UTF-8";

/* 폰트 적용 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700&family=Noto+Serif+KR:wght@200;300;400;500;600;700&display=swap');

html, body {
    font-family: "Inter";
}

/* 노말라이즈 */
html, body, h1, h2, h3, h4, h5, h6, div, p, blockquote, pre, code, address, ul, ol, li, menu, nav, section, article, aside, dl, dt, dd, table, thead, tbody, tfoot, label, caption, th, td, form, fieldset, legend, hr, input, button, textarea, object, figure, figcaption {
    margin:0;
    padding:0;
}

main, header, section, nav, footer, aside, article, figure {
    display:block;
}

html{
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
}

html, body {
    overflow-x:hidden; /* 반응형 */
}

ul, ol, li {
    list-style:none;
}

h1, h2, h3, h4, strong, th {
    font-weight:normal;
    font-family:"Inter";
    color:inherit;
}

a {
    color:inherit;
    text-decoration:none;
    outline:none;
}

i, em {font-style: normal;}

/* 헤더 */
header {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 10000;
}

header .logo {
    padding: 15px; 
    font-size:25px; 
    color: #fff; 
    text-align: center;
}

/* 페이지 앵커 */
#pageMenu { 
    position: fixed; 
    right:40px; 
    top:50%; 
    transform: translate(0,-50%); 
    width: 80px; 
    z-index: 999; 
}

#pageMenu li { 
    margin: 5px 0; 
}

#pageMenu a { 
    display: block; 
    width: 100%; 
    position: relative; 
    text-align: right; 
    padding-right: 20px; 
}

#pageMenu a span { 
    color: #fff; 
    font-size: 0px; 
    font-family: 'Montserrat'; 
    font-weight: bold; 
    line-height: 30px; 
    display: inline-block; 
}

#pageMenu.on a span { 
    color: #fff; 
}

#pageMenu a i {
    display: inline-block; 
    position: absolute; 
    width: 8px; 
    height: 8px; 
    background: #d5d5d5; 
    border-radius: 50%; 
    top: 50%; 
    right: 0; 
    transform: translateY(-50%); 
}

#pageMenu a i::before {
    content: ''; 
    display: inline-block; 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 17px; 
    height: 17px; 
    border: 1px solid rgba(255,255,255,0.5); 
    border-radius: 50%; 
    opacity: 0; 
    transition: all 0.3s;
}

#pageMenu li.active a span { 
    font-size: 13px;
}

#pageMenu li.active a i::before {
    content: ''; 
    display: inline-block; 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 17px; 
    height: 17px; 
    border: 1px solid rgba(255,255,255,0.5); 
    border-radius: 50%; 
    opacity: 1;
}

/* 페이지 */

#section2 {
    background-image: url(img/profile.jpg);
    background-size: cover;
}

#section3 {
    background-image: url(img/business.jpg);
    background-size: cover;
}

#section4 {
    background-image: url(img/brand.jpg);
    background-size: cover;
}

#section5 {
    background-color: #5f0600
}

#section6 {
    background-color: black;
}

.section .section-inner {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 100%; 
    color: #fff;
}

#section6 .section-inner {
    min-height:300px;
}

/* 애니메이션 */
.section.active .ani-01 {
    animation: fadeUp 0.7s 1.5s both;
}

.section.active .ani-02 {
    animation: fadeUp 1s 1.8s both;
}

.section.active .ani-03 {
    animation: fadeUp 1.7s 2.1s both
}

@keyframes fadeIn {
	0%{ opacity: 0;}
	100%{ opacity: 1;}
}
@keyframes fadeUp {
	0%{transform:translateY(80px); opacity: 0;}
	100%{transform:translateY(0); opacity: 1;}
}
@keyframes fadeLeft {
	0%{transform:translateX(-80px); opacity: 0;}
	100%{transform:translateX(0); opacity: 1;}
}
@keyframes fadeRight {
	0%{transform:translateX(80px); opacity: 0;}
	100%{transform:translateX(0); opacity: 1;}
}
@keyframes up {
	0%{transform:translateY(120%);}
	100%{transform:translateY(0);}
}
@keyframes moveTxt {
	0%{transform:translateX(-20px); opacity: 0;}
	100%{transform:translateX(0); opacity: 1;}
}

.fp-controlArrow.fp-prev {left: 120px;}
.fp-controlArrow.fp-next {right: 120px;}


.logoset{
    margin-top:40px;
}

.logo1{
    position: fixed;
    left: 1px;
    top: 2px;
    text-align: center;
    width: 100%;
    padding: 50px 0 0 0;
    z-index: 50;
    box-sizing: border-box;
}

.logo2{
    position: fixed;
    text-align: center;
    width: 100%;
}

@keyframes rotate_image{
    100%{
        transform:rotate(360deg);
    }
}

.btn_all{
    position: absolute;
    left: 17.5%;
    top:30px;
    width: 78px;
    display: inline-block;
    z-index: 9000;
    margin-top:50px;
}

html.open {
    overflow: hidden;
}

#menu.open {
    left: 0px;
}

.page_cover.open {
    display: block;
}

.btn_menu {
    width: 90px;
    height: 70px;
    position: absolute;
    left: 20%;
    top: 30px;
    margin-top: 45px;
    z-index: 9999;
    background-image: url(img/ic_menu.png);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.close {
    width: 37px;
    height: 37px;
    position: absolute;
    right: 5%;
    top: 65px;
    background-size: 100%;
    background-repeat: no-repeat;
    cursor: pointer;
    background-image: url(img/ic_menu_close.png);
    display: flex;
}

#menu {   
    height: 100%;
    position: fixed;
    top: 0px;
    left: -400%;
    z-index: 15000;
    background-color: #005337;
    text-align: center;
    font-weight: bold;
    transition: All 1s ease;
    -webkit-transition: All 1s ease;
    -moz-transition: All 1s ease;
    -o-transition: All 1s ease;
    padding : 110px 130px 0 130px;
    font-family: 'Inter';
}

#menu a{
    padding:0;
    text-decoration: none;
    font-size: 50px;
    color: white;
    display: block;
    transition: 0.3s;
}

#menu.open {
    left: 0px;
}

.page_cover.open {
    display: block;
}

.page_cover {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    right: 0px;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 4;
    display: none;
}

#menu ul { 
    margin:0; 
    padding:0;
}
    
#menu ul.nav li {
    position:relative; 
    float:left; 
    width:100%; 
    list-style-type:none; 
    font-size:18px;
    padding: 25px 0;
    border-top: 1px #137755 solid;
}

#menu ul.nav li:first-child {
    border-top: none;
}
    
#menu ul.nav li a {
    display:block; 
    width:100%; 
    height:100%; 
    line-height:50px; 
    text-indent:20px;
    text-align: left;
    color:white; 
    font-weight:bold; 
    text-decoration:none;
}

.btn_total {
    display: flex;
}

.btn_det a{
    font-size: 30px !important;
    color: #E1E1E1 !important;
    font-weight: 500 !important;
}

.btn_det a:hover {
    color: #E7CA3E !important;
}

.btn_tail{
    width: 100%;
    font-size: 20px;
    font-family: 'Inter';
    color: white;
    display: flex;
}


.btn_sns{
    display: block;
    text-align: left;
    position: absolute;
    left:70%;
    top:30px;
    z-index: 2;
    margin-top:50px;
    z-index: 9000;
}

.btn_sns a{
    margin-left:10px;
    display: inline-block;
}

.m_btn_sns{
    display: none;
}

.contents{
    display: block;
    position: absolute;
    width: 1180px;
    margin:0 auto;
    top:55%;
    text-align: center;
    margin-top:-300px;
    box-sizing: border-box;
    z-index: 5;
}

.m_contents{
    display: none;
}

.tit_logo{
    font-size: 32px;
    color: #fff;
    font-family: "NanumMyeongjo";
    font-weight: bold;
    margin-bottom: 30px;
}

.title_logo{
    font-size: 72px;
    color: #fff;
    font-weight: bold;
    margin-bottom:25px;
}

.title_section{
    margin: 35px 0 0 0;
    font-size:26px;
    color:#FFFFFF;
    font-family:"Inter";
    font-weight: 400;
}

.video_area{
    overflow:hidden;
    position:relative;
    width:100%;
    height:100%;
    z-index:2;
    background-size:cover;
}

.video_area video{
    position:absolute;
    left:50%;
    top:0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform:translateX(-50%);
    -webkit-transform:translateX(-50%);
    -ms-transform:translateX(-50%);
}

.video_area:after{
    content:'';
    display:block;
    width:100%;
    height:100%;
    z-index:1;
    position:absolute;
    left:0;
    top:0;
    background-color: rgba(0,0,0,.5);
}

.category_list{
    margin-top:30px;
}

.category_list li {
    display:inline-block;
    min-width:55px;
}

.category_list li a{
    display:block;
    font-size:28px;
    color:#FFFFFF;
    font-family:"Inter";
    text-decoration: none;
    font-weight: 400;
}

.category_list li.briels{
    width: 200px;
}

.category_list li.briels a{
    background:url(img/ic_briels.png) no-repeat 50% 0;
    padding-top:180px;
    white-space:nowrap;
}

.category_list li.business{
    width: 200px;
    margin-left:20px;
}

.category_list li.business a{
    background:url(img/ic_business.png) no-repeat 50% 0;
    padding-top:180px;
    white-space:nowrap;
}

.category_list li.brand{
    width: 200px;
    margin-left:20px;
}

.category_list li.brand a{
    background:url(img/ic_brand.png) no-repeat 50% 0;
    padding-top:180px;
    white-space:nowrap;
}

.category_list li.news{
    width: 200px;
    margin-left:20px;
}

.category_list li.news a{
    background:url(img/ic_news.png) no-repeat 50% 0;
    padding-top:180px;
    white-space:nowrap;
}

.category_list li.greeting{
    width: 200px;
}

.category_list li.greeting a{
    background:url(img/ic_greeting.png) no-repeat 50% 0;
    padding-top:180px;
    white-space:nowrap;
}

.category_list li.ci{
    width: 200px;
    margin-left:20px;
}

.category_list li.ci a{
    background:url(img/ic_ci.png) no-repeat 50% 0;
    padding-top:180px;
    white-space:nowrap;
}

.category_list li.history{
    width: 200px;
    margin-left:20px;
}

.category_list li.history a{
    background:url(img/ic_history.png) no-repeat 50% 0;
    padding-top:180px;
    white-space:nowrap;
}

.category_list li.certificate{
    width: 200px;
    margin-left:20px;
}

.category_list li.mission a{
    background:url(img/ic_mission.png) no-repeat 50% 0;
    padding-top:180px;
    white-space:nowrap;
}

.category_list li.mission{
    width: 200px;
    margin-left:20px;
}

.category_list li.mission:first-child{
    margin-left: 0;
}

.category_list li.vision a{
    background:url(img/ic_vision.png) no-repeat 50% 0;
    padding-top:180px;
    white-space:nowrap;
}

.category_list li.vision{
    width: 200px;
    margin-left:20px;
}

.category_list li.slogan a{
    background:url(img/ic_slogan.png) no-repeat 50% 0;
    padding-top:180px;
    white-space:nowrap;
}

.category_list li.slogan{
    width: 200px;
    margin-left:20px;
}

.category_list li.certificate a{
    background:url(img/ic_certificate.png) no-repeat 50% 0;
    padding-top:180px;
    white-space:nowrap;
}

#section1 .tit_section {
    margin-top:35px;
    font-size: 26px;
}

#section2, #section3, #section4, #section5 .tit_section {
    font-size: 26px;
}

.scroll{
    position: absolute;
    bottom: 60px;
    z-index: 5;
}

.scroll img{
    vertical-align: top;
}

.bg{
    background-color:rgba(0, 0, 0, 0.5);
    width:100%;
    height:100%;
    position: absolute;
}

.txt_about{
    position: relative;
    top: 50%;
    height: 350px;
    z-index: 5;
    filter: alpha(opacity = 0);
}

.tab_about{
    text-align: center;
}

.tab_about a{
    text-align: center;
    display: table;
    position: absolute;
    left: 50%;
    top: 37px;
    overflow: hidden;
    width: 180px;
    height: 180px;
    border-radius: 100px;
    font-size: 26px;
    color: #fff;
    background: #333635;
    z-index: 5;
    text-decoration: none;
}

.tab_about a span {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.tab_about:after{
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 100px;
    width: 85%;
    height: 1px;
    background: url(img/line1.png) repeat-x 0 0;
    z-index: 1;
    margin-top: 25px;
    margin-left: 100px;
}

.about01{
    margin-left:-500px;
}

.about02{
    margin-left:-220px;
}

.about03{
    margin-left:60px;
}

.about04{
    margin-left:340px;
}

.circlehover:hover{
    transform:scale(1.3);
    transition: all 1.3s ease-in-out;
    background-color: #005337;
}

.sub_menu_mobile{
    display: none;
}

@media(hover:hover){
    
    #menu ul.nav li a:hover {
        color: #E7CA3E;
    }
}

@media(max-width:479px){
    .logo1{
        padding-top: 47px !important;
    }
    
    .logo1 img{
        width: 44px;
    }

    .logo2 img{
        width: 65px;
    }

    .btn_menu{
        background-image: url(img/m_menu.png);
        width: 50px;
        margin-top: 10px;
        left: 15%;
    }

    .btn_sns{
        display: none;
    }

    .m_btn_sns{
        display: block;
        margin-top: 10px;
        text-align: left;
        position: absolute;
        left:50%;
        margin-left: 22%;
        top:50px;
        z-index: 9000;
    }

    .sub_menu{
        display: none;
    }

    .sub_menu_mobile{
        display: block;
    }

    .sub_menu_mobile #menu{
        width: 100%;
        padding: 0 !important;
        margin: auto;
        background-color: #fff;
        overflow: auto;
    }

    .sub_menu_mobile #menu ul li a{
        font-family: 'Pretendard';
        font-size: 20px;
        font-weight: 500;
        line-height: 30px;
        letter-spacing: -0.5px;
        text-align: left;
        text-decoration-skip-ink: none;
        color: #212121;
    }

    .sub_menu_head{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 40px;
        border-bottom: 1px #EEE solid;
    }

    .sub_head_logo img{
        width: 44px;
        height: 44px;
        padding: 5px;
    }

    .sub_menu_mobile #menu ul.nav li a:hover{
        color: none;
    }

    .sub_menu_mobile #menu .close{
        background-image: url(img/Union.png);
        position: static;
        width: 24px;
        height: 24px;
    }

    .sub_menu_mobile #menu ul.nav li{
        padding: 0 !important;
        border: none;
    }

    .sub_menu_mobile #menu ul.nav li a{
        padding: 15px 0 !important;
    }

    .sub_menu_mobile #menu ul.sub_mobile li a{
        font-family: 'Pretendard0';
        font-size: 16px;
        font-weight: 300;
        line-height: 24px;
        letter-spacing: -0.5px;
        text-align: left;
        text-decoration-skip-ink: none;
    }

    .drop_menu{
        background-color: #005337;
    }

    .drop_menu a{
        color: #ffffff !important;
    }

    .mobile_sub_tail{
        width: 100%;
        position: fixed;
        bottom: 0;
        padding: 20px 25px;
        background: #fff;
    }


    .mobile_btn_tail{
        font-family: 'Pretendard';
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
        letter-spacing: -0.5px;
        text-align: left;
        text-decoration-skip-ink: none;
    }
    .mobile_btn_tail_txt{
        font-family: 'Pretendard';
        font-size: 12px;
        font-weight: 400;
        line-height: 18px;
        letter-spacing: -0.5px;
        text-align: left;
        text-decoration-skip-ink: none;
        color: #616161;
    }
    
    .nav{
        width: 80%;
        height: 100%;
        margin: 0 auto !important;
    }

    .nav_li a, .btn_sub a{
        font-family: 'Pretendard';
        font-size: 20px !important;
        font-weight: 500 !important;
        line-height: 30px !important;
        letter-spacing: -0.5px;
        text-decoration-skip-ink: none;
    }

    .btn_det a{
        font-family: 'Pretendard';
        font-size: 16px !important;
        font-weight: 300 !important;
        line-height: 24px !important;
        letter-spacing: -0.5px;
        text-align: left;
        text-decoration-skip-ink: none;
    }

    .scroll img{
        width: 40px;
    }

    .contents{
        display: none;
    }

    .m_contents{
        display: block;
        position: absolute;
        top: 30%;
        text-align: center;
        z-index: 5;
    }
    .title_logo {
        font-size: 32px;
    }

    #section1 .tit_section{
        font-size: 16px;
    }

    .category_list li{
        width: 0px !important;
    }

    .category_list li a{
        font-size:14px;
    }

    .category_list li.briels a{
        background: url(img/m_ic_briels.png) no-repeat 50% 0;
        padding-top: 70px;
        white-space: nowrap;
    }

    .category_list li.business a{
        background: url(img/m_ic_business.png) no-repeat 50% 0;
        padding-top: 70px;
        white-space: nowrap;
    }

    .category_list li.brand a {
        background: url(img/m_ic_brand.png) no-repeat 50% 0;
        padding-top: 70px;
        white-space: nowrap;
    }

    .category_list li.news a {
        background: url(img/m_ic_news.png) no-repeat 50% 0;
        padding-top: 70px;
        white-space: nowrap;
    }

    .tit_logo {
        font-size: 14px !important;
    }

    .tit_section{
        font-size: 14px !important;
    }

    .category_list li.greeting a{
        background: url(img/m_ic_ceo.png) no-repeat 50% 0;
        padding-top: 70px;
        white-space: nowrap;
    }

    .category_list li.ci a{
        background: url(img/m_ic_ci.png) no-repeat 50% 0;
        padding-top: 70px;
        white-space: nowrap;
    }

    .category_list li.history a{
        background: url(img/m_ic_history.png) no-repeat 50% 0;
        padding-top: 70px;
        white-space: nowrap;
    }

    .category_list li.certificate a{
        background: url(img/m_ic_certificate.png) no-repeat 50% 0;
        padding-top: 70px;
        white-space: nowrap;
    }

    .m_contents a{
        width: 70px;
        height: 70px;
        font-size: 11px;
    }

    .m_contents a.about01{
        margin-left: -155px;
    }

    .m_contents a.about02{
        margin-left: -70px;
    }

    .m_contents a.about03{
        margin-left: 15px;
    }

    .m_contents a.about04{
        margin-left: 100px;
    }

    .m_contents .tab_about:after{
        margin-top: -25px;
        margin-left: 25px;
    }

    .m_contents .txt_about{
        margin-top: 50px;
    }

    .category_list li.mission a{
        background: url(img/m_ic_mission.png) no-repeat 50% 0;
        padding-top: 70px;
        white-space: nowrap;
    }

    .category_list li.vision a{
        background: url(img/m_ic_vision.png) no-repeat 50% 0;
        padding-top: 70px;
        white-space: nowrap;
    }

    .category_list li.slogan a{
        background: url(img/m_ic_slogan.png) no-repeat 50% 0;
        padding-top: 70px;
        white-space: nowrap;
    }
}

@media all and (min-width:480px) and (max-width:1023px){
    .logo1{
        padding-top: 48px !important;
    }
    
    .logo1 img{
        width: 44px;
    }

    .logo2 img{
        width: 65px;
    }

    .btn_menu{
        background-image: url(img/m_menu.png);
        width: 60px;
        margin-top: 10px;
        left: 20%;
    }

    .btn_sns{
        display: none;
    }

    .m_btn_sns{
        display: block;
        margin-top: 10px;
        text-align: left;
        position: absolute;
        left:50%;
        margin-left: 20%;
        top:50px;
        z-index: 9000;
    }

    .sub_menu{
        display: none;
    }

    .sub_menu_mobile{
        display: block;
    }

    .sub_menu_mobile #menu{
        width: 100%;
        padding: 0 !important;
        margin: auto;
        background-color: #fff;
    }

    .sub_menu_mobile #menu ul li a{
        font-family: 'Pretendard';
        font-size: 20px;
        font-weight: 500;
        line-height: 30px;
        letter-spacing: -0.5px;
        text-align: left;
        text-decoration-skip-ink: none;
        color: #212121;
    }

    .sub_menu_head{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 40px;
        border-bottom: 1px #EEE solid;
    }

    .sub_head_logo img{
        width: 44px;
        height: 44px;
        padding: 5px;
    }

    .sub_menu_mobile #menu ul.nav li a:hover{
        color: none;
    }

    .sub_menu_mobile #menu .close{
        background-image: url(img/Union.png);
        position: static;
        width: 24px;
        height: 24px;
    }

    .sub_menu_mobile #menu ul.nav li{
        padding: 0 !important;
        border: none;
    }

    .sub_menu_mobile #menu ul.nav li a{
        padding: 15px 0 !important;
    }

    .sub_menu_mobile #menu ul.sub_mobile li a{
        font-family: 'Pretendard0';
        font-size: 16px;
        font-weight: 300;
        line-height: 24px;
        letter-spacing: -0.5px;
        text-align: left;
        text-decoration-skip-ink: none;
    }

    .drop_menu{
        background-color: #005337;
    }

    .drop_menu a{
        color: #ffffff !important;
    }

    .mobile_sub_tail{
        position: absolute;
        bottom: 0;
        padding: 20px 25px;
    }


    .mobile_btn_tail{
        font-family: 'Pretendard';
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
        letter-spacing: -0.5px;
        text-align: left;
        text-decoration-skip-ink: none;
    }
    .mobile_btn_tail_txt{
        font-family: 'Pretendard';
        font-size: 12px;
        font-weight: 400;
        line-height: 18px;
        letter-spacing: -0.5px;
        text-align: left;
        text-decoration-skip-ink: none;
        color: #616161;
    }
    
    .nav{
        width: 80%;
        margin: 0 auto !important;
    }

    .nav_li a, .btn_sub a{
        font-family: 'Pretendard';
        font-size: 20px !important;
        font-weight: 500 !important;
        line-height: 30px !important;
        letter-spacing: -0.5px;
        text-decoration-skip-ink: none;
    }

    .btn_det a{
        font-family: 'Pretendard';
        font-size: 16px !important;
        font-weight: 300 !important;
        line-height: 24px !important;
        letter-spacing: -0.5px;
        text-align: left;
        text-decoration-skip-ink: none;
    }

    .scroll img{
        width: 40px;
    }

    .contents{
        display: none;
    }

    .m_contents{
        display: block;
        position: absolute;
        top: 30%;
        text-align: center;
        z-index: 5;
    }
    .title_logo {
        font-size: 40px;
    }

    #section1 .tit_section{
        font-size: 16px;
    }

    .category_list{
        margin-top: 80px !important;
    }

    .category_list li a{
        font-size:15px;
    }

    .category_list li.briels{
        width: 100px;
    }

    .category_list li.business{
        width: 100px;
    }

    .category_list li.brand{
        width: 100px;
    }

    .category_list li.news{
        width: 100px;
    }

    .category_list li.greeting{
        width: 100px;
    }

    .category_list li.ci{
        width: 100px;
    }

    .category_list li.history{
        width: 100px;
    }

    .category_list li.certificate{
        width: 100px;
    }

    .category_list li.briels a{
        background: url(img/m_ic_briels.png) no-repeat 50% 0;
        padding-top: 70px;
        white-space: nowrap;
        display: block;
        text-align: center;
    }

    .category_list li.business a{
        background: url(img/m_ic_business.png) no-repeat 50% 0;
        padding-top: 70px;
        white-space: nowrap;
    }

    .category_list li.brand a {
        background: url(img/m_ic_brand.png) no-repeat 50% 0;
        padding-top: 70px;
        white-space: nowrap;
    }

    .category_list li.news a {
        background: url(img/m_ic_news.png) no-repeat 50% 0;
        padding-top: 70px;
        white-space: nowrap;
    }

    .tit_logo {
        font-size: 20px !important;
    }

    .tit_section{
        font-size: 15px !important;
    }

    .category_list li.greeting a{
        background: url(img/m_ic_ceo.png) no-repeat 50% 0;
        padding-top: 70px;
        white-space: nowrap;
    }

    .category_list li.ci a{
        background: url(img/m_ic_ci.png) no-repeat 50% 0;
        padding-top: 70px;
        white-space: nowrap;
    }

    .category_list li.history a{
        background: url(img/m_ic_history.png) no-repeat 50% 0;
        padding-top: 70px;
        white-space: nowrap;
    }

    .category_list li.certificate a{
        background: url(img/m_ic_certificate.png) no-repeat 50% 0;
        padding-top: 70px;
        white-space: nowrap;
    }

    .m_contents a{
        width: 100%;
        height: 120px;
        font-size: 15px;
    }

    .circlehover{
        width: 120px !important;
        height: 120px !important;
    }

    .m_contents a.about01{
        margin-left: -350px;
    }

    .m_contents a.about02{
        margin-left: -150px;
    }

    .m_contents a.about03{
        margin-left:50px;
    }

    .m_contents a.about04{
        margin-left: 250px;
    }

    .m_contents .tab_about:after{
        display: block;
        content: "";
        position: absolute;
        left: -150px;
        top: 29%;
        width: 600px;
        height: 1px;
        background: url(img/line1.png) repeat-x 0 0;
        z-index: 1;
        margin:  0 !important;
    }

    .m_contents .txt_about{
        margin-top: 30px;
    }

    .category_list li.mission a{
        background: url(img/m_ic_mission.png) no-repeat 50% 0;
        padding-top: 70px;
        white-space: nowrap;
    }

    .category_list li.vision a{
        background: url(img/m_ic_vision.png) no-repeat 50% 0;
        padding-top: 70px;
        white-space: nowrap;
    }

    .category_list li.slogan a{
        background: url(img/m_ic_slogan.png) no-repeat 50% 0;
        padding-top: 70px;
        white-space: nowrap;
    }
}
    @media all and (min-width:1024px) and (max-width:1279px){

        .logoset{
        margin-top: 30px !important;
        }

        .logo1{
        margin-top: unset;
        position: unset;
        height: unset;
        left: unset;
        top: unset;
        padding-top: 13px !important;
        }

        .logo1 img{
        width: 70px;
        }

        .logo2{
        position: absolute !important;
        }

        .logo2 img{
        width: 100px;
        }

        .sub_menu{
        display: none;
        }

        .sub_menu_mobile{
        display: block;
        }

        .sub_menu_mobile #menu {
        width: 100%;
        padding: 0 !important;
        margin: auto;
        background-color: #fff;
        }

        .sub_menu_head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 40px;
        border-bottom: 1px #EEE solid;
        }

        .sub_head_logo img {
        width: 44px;
        height: 44px;
        padding: 5px;
        }

        .sub_menu_mobile #menu .close {
        background-image: url(img/Union.png);
        position: static;
        width: 24px;
        height: 24px;
        }

        .btn_menu{
        left:20% !important;
        top: 50px !important;
        left: unset;
        margin-top: unset;    
        }

        .nav {
        width: 80%;
        margin: 0 auto !important;
        }

        .sub_menu_mobile #menu ul.nav li {
        padding: 0 !important;
        border: none;
        }

        .sub_menu_mobile #menu ul.nav li a {
        padding: 15px 0 !important;
        }

        .sub_menu_mobile #menu ul li a {
        font-family: 'Pretendard';
        font-size: 20px;
        font-weight: 500;
        line-height: 30px;
        letter-spacing: -0.5px;
        text-align: left;
        text-decoration-skip-ink: none;
        color: #212121;
        }

        .sub_menu_mobile #menu ul.sub_mobile li a {
        font-family: 'Pretendard0';
        font-size: 16px;
        font-weight: 300;
        line-height: 24px;
        letter-spacing: -0.5px;
        text-align: left;
        text-decoration-skip-ink: none;
        }

        .drop_menu {
        background-color: #005337;
        }

        .drop_menu a {
        color: #ffffff !important;
        }

        .btn_menu {
        background-image: url(img/m_menu.png);
        width: 70px;
        }

        .btn_sns{
        display: none;
        }

        .m_btn_sns {
        display: block;
        text-align: left;
        position: absolute;
        left: 50%;
        margin-left: 22%;
        z-index: 9000;
        margin-top: 35px;
        }

        .tit_logo{
            font-size: 25px !important;
            margin-bottom: 15px !important;
        }

        .title_logo{
            font-size:40px !important;
        }

        .tit_section{
            font-size: 22px !important;
        }

        .contents {
            display: block;
            position: absolute;
            width: 1180px;
            margin: 0 auto;
            top: 60%;
            text-align: center;
            margin-top: -300px;
            box-sizing: border-box;
            z-index: 5;
        }

        .category_list{
            margin-top: 10px !important;
        }

        .category_list li {
            width: 145px !important;
        }

        .category_list li a{
            font-size: 20px !important;
        }

        .tab_about a{
            width: 160px !important;
            height: 160px !important;
            font-size: 24px;
        }

        .about01 {
            margin-left: -380px;
        }

        .about02 {
            margin-left: -180px;
        }

        .about03 {
            margin-left: 30px;
        }

        .about04 {
            margin-left: 240px;
        }

        .tab_about:after{
            left: 20% !important;
            top: 25% !important;
            width: 50% !important;
        }
}