@media screen and (max-width: 1200px){

    .icon-menu {
        position: absolute;
        left: 20px;
        top: 20px;
        width: 30px;
        height: 30px;
    }

    body {
        padding-top: 110px;
    }

    .header {
        width: 100vw;
        padding: 20px 0;
        height: 69px;
    }

    .more-btn {
        display: none!important;
    }

    .w {
        width: 100vw;
    }

    #header-area {
        width: 100vw;
        min-width: inherit;
        height: 109px;
        position: fixed;
        top: 0;
        z-index: 999;
    }

    /** change Logo **/
    .pc-logo {
        display: none;
    }

    .m-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 69px;
    }

    .m-logo img {
        width: 192px;
    }

    .m-show {
        display: block;
    }

    /** Navi List **/
    .nav {
        position: fixed;
        left: -100%;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 999;
        transition: left .5s;
        background-image: url(../assets/Banner_Background.png);
        background-size: cover;
    }

    .nav.active {
        display: flex;
        left: 0;
    }

    .m-nav-close {
        margin: 24px;
        width: 24px;
        height: 24px;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        width: 100vw;
        overflow: scroll;
        height: calc(100% - 100px);
    }

    .nav-item {
        text-align: left;
    }

    .nav-item-name {
        display: flex;
        align-items: center;
    }

    .nav-item-name a {
        flex: 1;
    }

    .arrow-down-btn {
        width: 24px;
        height: 24px;
        display: block;
        margin-left: 20px;
    }

    .sub-menu-list {
        position: unset;
        height: 0;
        overflow: hidden;
        background-image: none;
    }
    .nav-item:hover .sub-menu-list,
    .sub-menu-list.active {
        height: inherit;
    }

    .sub-menu-item {
        text-align: left;
    }

    /** FOOTER **/
    #footer-area {
        width: 100vw;
        padding: 0;
    }

    .footer-div {
        display: none;
    }

    .footer-info {
        display: block;
    }

    .footer-logo {
        display: none;
    }

    .footer-contact {
        float: none;
        /*margin: 20px;*/
        padding: 20px 10px;
        font-size: 10px;
    }

    .friendly-link {
        float: none;
        margin: 20px;
        padding: 0;
    }

    .friendly-link-name {
        font-size: 14px;
        padding-left: 15px;
    }

    .friendly-link-list {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-evenly;
    }

    .friendly-link-item {
        float: none;
        width: 30%;
        margin: 10px 1%;
    }

    .friendly-link-item img {
        width: 100%;
    }

    .copyright {
        font-size: 10px;
        padding-bottom: 20px;
    }


    .m-show {
        display: block!important;
    }
}

@media screen and (orientation: landscape){
    #header-area {
        position: unset;
    }

    body {
        padding-top: 0;
    }
}