@charset "utf-8" ;

html{
    font-size: 100%;
    font-family: "Noto Sans", sans-serif;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
    color: white;
}

a:hover{
    opacity: 0.7;
}

.wrapper{
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 auto;
}

#header{
    padding-top: 20px;
    margin-bottom: 30px;
}

#header .info-area{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#header .info-area .logo-area{
    display: flex;
    justify-content: start;
    align-items: center;
    width: 500px;
}

#header .info-area .logo-area .logo{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100px;
}

#header .info-area .logo-area .logo img{
    width: 100%;
    margin-right: 20px;
}

#header .info-area .logo-area .img{
    width: 250px;
}

#header .info-area .logo-area .img img{
    width: 100%;
}

#header .info-area .number dl{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 0px;
    font-size: 30px;
    margin-top: 15px;
}

#header .info-area .number .fax{
    pointer-events: none;
}

#header .info-area .number dl:first-child{
    margin-top: 0;
}

#header .info-area .number a{
    color: black;    
}

#header .navi{
    background-color: rgb(0, 23, 124);
    max-width: 100vw;
    width: 100%;
    margin-bottom: 20px;
}

#header .navi ul{
    font-size: 26px;
    padding: 0 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1080px;
    padding: 15px 5px;

}

#footer{
    background-color:  rgb(0, 23, 124);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
}

#footer .logo{
    width: 60px;
    margin-right: 30px;
    padding: 10px 0;
}

#footer .logo img{
    width: 100%;
}

#footer .text{
    color: white;
    font-size: 15px;
}

@media screen and (max-width:767px ) {
    
    #header{
        margin-bottom: 15px;
    }

    #header .info-area{
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    #header .info-area .logo-area .logo{
        width: 46px;
    }

    #header .info-area .logo-area .img{
        width: 150px;
        z-index: 20;
    }

    #header .info-area .logo-area{
        width: 100vh;
        background-color: white;
        border-bottom: 2px solid #000000;
        justify-content: start;
        padding: 35px 0 10px 15px;
        margin-bottom: 15px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 20;
    }

    #header .info-area .number{
        font-size: 25px;
        align-self: center;
        padding-top: 75px;
    }

    #footer .logo{
        width: 50px;
        margin-right: 15px;
    }

    #footer .text{
        font-size: 12px;
    }

    
    #header .hamburger{
        width: 50px;
        height: 50px;
        border-radius: 10px;
        cursor: pointer;
        position: fixed;
        top: 30px;
        right: 12px;
        z-index: 21;
        background-color: rgb(0, 23, 124);

    }

    #header .hamburger span{
        width: 30px;
        height: 2px;
        background-color:white;
        border-radius: 1px;
        display: inline-block;
        position: absolute;
        left: 10px;
        transition: all 0.4s;
    }

    #header .hamburger span:nth-last-of-type(1){
        top: 16px;
    }

    #header .hamburger span:nth-last-of-type(2){
        top: 25px;
    }

    #header .hamburger span:nth-last-of-type(3){
        top: 34px;
    }

    #header .navi .menu{
        width: 100%;
        height: 100vh;
        padding: 80px 0;
        overflow: auto;
    }

    #header .navi .active{
        opacity: 1;
        visibility: visible;
        transition: all 0.6s;
    }

    #header .hamburger.active span:nth-of-type(1){
        top: 24px;
        transform: rotate(-45deg);
    }

    #header .hamburger.active span:nth-of-type(2){
        opacity: 0;
    }

    #header .hamburger.active span:nth-of-type(3){
        top: 24px;
        transform: rotate(45deg);
    }

    #header .navi{
        width: 100%;
        height: 100vh;
        background-color: white;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 20;
        transition: all 0.6s;
        margin-top: 90px;
    }

    #header .navi ul{
        width: 100%;
        height: 60vh;
        flex-direction: column;
        justify-content: start;
        padding-top:0px;
        overflow: hidden;
    }

    #header .navi ul li{
        position: relative;
        height: 60px;
        display: block;
        margin-top: 22px;
    }

    #header .navi ul li:first-child{
        margin-top: 0;
    }

    #header .navi ul li::after{
        content: "";
        background-color: black;
        height: 1px;
        width: 100vh;
        transform: translate(-50%,-50%);
        position: absolute;
        bottom: -22px;
        left: 50%;


    }

    #header .navi ul li a{
        color: black;
        padding-top: 22px;
        display: block;
    }

    #header .navi.active{
        right: 0;
    }

    
}