<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*main-header*/
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 90px;
    /* background:  rgba(255, 255, 255, 0.6); */
    position: fixed;
    z-index: 500;
    padding: 0 20px;
    box-sizing: border-box;
    transition-duration: 0.3s;
}

.main-header .header-logo {
    width: 130px;
}

.main-header .header-logo img {
    width: 100%;
}

.main-header .center {
    height:80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.main-header .center img{
    height:100%;
}

/*hambergermenu*/
.main-header .ham-menu {
    padding: 13px;
    border: 1px solid #222222;
    position: relative;
    z-index: 550;
    cursor: pointer;
}

.main-header .ham-menu::before {
    content: 'MENU';
    position: absolute;
    right: 122%;
    top: 50%;
    transform: translate(0, -50%);
    font-size: .75rem;
    letter-spacing: 2px;
}

.main-header .ham-menu .button_container {
    position: relative;
    height: 27px;
    width: 32px;
    /* cursor: pointer; */
    z-index: 100;
    transition: opacity 0.25s ease;
}

.main-header .ham-menu .button_container:hover {
    opacity: 0.7;
}

.main-header .ham-menu .button_container.active .top {
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #222222;
}

.main-header .ham-menu .button_container.active .middle {
    opacity: 0;
    background: #222222;
}

.main-header .ham-menu .button_container.active .bottom {
    transform: translateY(-12px) translateX(0) rotate(-45deg);
    background: #222222;
}

.main-header .ham-menu .button_container span {
    background: #222222;
    border: none;
    height: 4px;
    width: 100%;
    position: absolute;
    left: 0;
    transition: all 0.35s ease;
    cursor: pointer;
}

.main-header .ham-menu .button_container span:nth-child(2) {
    top: 50%;
    transform: translate(0, -50%);
}

.main-header .ham-menu .button_container span:nth-child(3) {
    bottom: 0;
}

/*main-header.active*/
.main-header.active{
    height: 70px;
    background:rgba(255, 255, 255, 0.3);
}

.main-header.active .header-logo{
    width:120px;
}

.main-header.active .center{
    display: none;
}

.main-header.active .ham-menu{
    padding:10px;
}

.main-header.active .ham-menu .button_container{
    width:27px;
    height:22px;
}

.main-header.active .ham-menu .button_container.active .top{
    transform: translateY(9px) translateX(0) rotate(45deg);
}

.main-header.active .ham-menu .button_container.active .bottom{
    transform: translateY(-9px) translateX(0) rotate(-45deg);
}


/*slidemenu*/
.slide-menu-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgb(0, 0, 0, 0.2);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-out;
}

.slide-menu-container.show {
    visibility: visible;
    opacity: 1;
    transition: 0.3s ease-out;
}

.slide-menu {
    box-sizing: border-box;
    position: fixed;
    right: -500px;
    top: 0;
    width: 500px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 1);
    z-index: 550;
    transition: all 0.6s ease-in-out;
    display: flex;
    box-sizing: border-box;
    padding: 55px;
    flex-wrap: wrap;
    align-items: center;
}

.slide-menu.open {
    right: 0px;
    transition: all 0.6s ease-in-out;
}

.slide-menu .menu-container {
    width: 100%;
}

.slide-menu .menu-container .list-item {
    width: 100%;
}

.slide-menu .menu-container .list-item h1 {
    font-size: 30px;
    font-weight: 700;
    padding: 0.8rem 0;
    cursor: pointer;
}

.slide-menu .menu-container .list-item h1:hover {
    color: #2e2f54;
    transition-duration: 0.3s;
}

.slide-menu .menu-container .list-item ul {
    /* display: none; */
}

.slide-menu .menu-container .list-item ul li {
    font-size: 19px;
    font-weight: 500;
    padding: 2px 0;
    color: #808080;
}

.slide-menu .sns {
    /* display: flex;
    align-items: center; */
}

.slide-menu .sns a {
    font-size: 34px;
    color: #808080;
    margin-right: 20px;
    fill:#808080;
}

.slide-menu .sns a svg{
    width: 30px;
}

.list_load {
    width: 100%;
    height: 100%;
    display: none;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.list_item {
    width: 100%;
    text-align: center;
    margin-left: -20px;
    opacity: 0;
    -webkit-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    font-size: 1.8rem;
    color: #fff;
    border-bottom: 1px solid #fff;
}

.list_item h1 {
    padding: 20px 10px;
    cursor: pointer;
}

.list_item:last-child {
    border: 0;
}

.list_item:hover h1 {
    background: #fff;
    color: #222222;
}

.list_item ul {
    display: block;
}

.list_item li {
    font-size: 1.6rem;
    padding: 10px 0;
}

.list_item li a {
    display: block;
}


/* 반응형 1600px 이하 */
@media all and (max-width: 1600px) {
    .main-header {
        width: 100%;
    }
}

/* 반응형 1400px 이하 */
@media all and (max-width: 1400px) {
    .main-header {
        height: 70px;
    }
    .main-header.active {
        height: 55px;
    }
    .main-header .ham-menu::before {
        font-size: 0.5rem
    }
}

@media all and (max-width: 767px) {
    .main-header {
        height: 65px;
        padding: 0 10px;
      }
      .main-header .header-logo {
        width: 100px;
      }
      .main-header .center {
        display: none;
      }
      .main-header .ham-menu {
        padding: 7px;
      }
      .main-header .ham-menu .button_container {
        width: 25px;
        height: 25px;
      }
      .main-header.active .header-logo{
        width:80px;
      }
      .main-header.active .ham-menu{
        padding:7px;
      }
      .main-header .ham-menu .button_container.active .bottom {
        transform: translateY(-10px) translateX(0) rotate(-45deg);
      }
      .side-button {
        display: none;
      }
      .sub-top img{
        width:90%;
      }
      .sub-top p{
        width:100%;
      }


      .slide-menu {
        box-sizing: border-box;
        position: fixed;
        right: -500px;
        top: 0;
        width: 500px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 1);
        z-index: 550;
        transition: all 0.6s ease-in-out;
        display: flex;
        justify-content: center;
        box-sizing: border-box;
        padding: 55px;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .slide-menu.open {
        right: 0px;
        transition: all 0.6s ease-in-out;
    }
      .slide-menu .menu-container .list-item h1 {
        font-size: 1.5rem;
        font-weight: 800;
        cursor: pointer;
    }
    .slide-menu .menu-container .list-item ul li {
        font-size: 1rem;
        font-weight: 500;
        padding: 0.1rem 0;
        color: #808080;
    }
}

/* 반응형 1400px 이하 */
@media all and (max-width: 550px) {
    .slide-menu {
        width: 100%;
    }
    .slide-menu .menu-container .list-item ul li {
        padding: 0 0 10px;
    }
}</pre></body></html>