@charset "UTF-8";

:root {
    color-scheme: light only;
  }

/* header */
header {
    width: 100%;
    height: 75px;
    background-color: #fff;

    z-index: 9996;
}

.header_inner {
    display: flex;
    justify-content: space-around;
    align-items: center;

    margin: 0 auto;
    height: 100%;
}

.header_inner #logo {
    height: 75%;
}

.header_inner #logo a {
    display: inline-block;
    height: 100%;
}

.header_inner #logo a img {
    height: 100%;
    object-fit: contain;
}

/* gnb */
#gnb_wrap {
    width: 80%;
}

#gnb.gnb_main .gnb_2dul {
    display: none;
}

#gnb_1dul {
    display: flex;
    justify-content: space-between;

    width: 100%;
}

#gnb_1dul li.gnb_1dli {
    width: 20%;
    text-align: center;
}

#gnb.gnb_main #gnb_1dul li.gnb_1dli a {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-weight: 700;
    font-size: 1.25rem;
}

#gnb.gnb_sub {
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: all 0.3s;

    background-color: #fff;
}

#gnb.gnb_sub #gnb_1dul li.gnb_1dli a {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 1.05rem;
}

#gnb.gnb_sub #gnb_1dul li.gnb_1dli a:hover {
    color: #f96f08;
}

.mobile_gnb_btn {
    aspect-ratio: 1/1;

    display: none;
}

.mobile_gnb_btn svg {
    width: 100%;
    aspect-ratio: 1/1;
}

/* tail */
footer {
    background-color: #111;
    color: #eee;
    padding: 15px 0;
	margin-top: 30px;
}

.footer_inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_inner #logo {
    width: 12%;
    filter: grayscale(100%) invert(100%);
    margin-right: 30px;
}

.footer_inner #logo a {
    display: inline-block;
}

.footer_inner #logo a img {
    width: 100%;
}

.footer_text {
    width: 65%;
}

.footer_text ul {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer_text ul li::after {
    content: "｜";
}

.footer_text ul li:last-of-type:after {
    content: "";
}

.footer_text ul li br {
    display: none;
}

.footer_text .copyright {
    margin-top: 5px;
    text-align: center;
}

.div_header_check {
	height: 75px;
}

/* @media */
  /* 테블릿 가로, 테블릿 세로 (해상도 768px ~ 1023px)*/ 
  @media all and (max-width:1023px) {
    #gnb_wrap {
        display: none;
    }

    .mobile_gnb_btn {
        width: 5%;
        display: block;
        cursor: pointer;
    }

    .header_inner {
        justify-content: space-between;
        padding: 0 30px;
    }   
  } 
  
  /* 모바일 가로, 모바일 세로 (해상도 480px ~ 767px)*/ 
  @media all and (max-width:720px) {
    .mobile_gnb_btn {
        width: 10%;
    }
  }

  @media all and (max-width:970px) {
    .footer_inner {
        display: block;
        margin: 0 auto;
        padding: 0 30px;
    }

    .footer_inner #logo {
        width: 35%;
        margin-bottom: 15px;
    }

    .footer_text {
        width: 100%;
    }
    
    .footer_text ul {
        width: 100%;
        display: block;
    }

    .footer_text ul li {
        margin-bottom: 5px;
    }

    .footer_text ul li br {
        display: inline;
    }

    .footer_text ul li::after {
        content: "";
    }

    .footer_text .copyright {
        text-align: left;
    }
  }