@charset "utf-8";

header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}




/* header */
.nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    z-index: 1000;
    background: linear-gradient(180deg, #0a2d4c, #092844, #061d30);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
    overflow-y: scroll;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav_inner{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}
.nav.active{
    pointer-events: all;
    opacity: 1;
}
.nav_logo{
    width: 300px;
}
.nav ul li:not(:last-child){
    margin-bottom: 25px;
}
.nav ul li{
    font-size: 28px;
    transition: 0.5s;
}
.nav ul li:hover{
    opacity: 0.5;
}
.nav ul li span{
    display: block;
/*    color: #dec393;		/**/
    color: #fff;
}
.nav ul li span.ja{
    font-size: 0.5em;
    margin-top: 0.2em;
}
.hum_btn {
    display: block;
/*
    z-index: 9999;
*/
    z-index: 9999 !important;
    cursor: pointer;
    width: 50px;
    height: 30px;
    position: fixed;
    z-index: 1100;
    right: 20px;
    top: 20px;
    filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.9));
}
.hum_btn span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
/*    background: #dec393;		/**/
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.hum_btn span:nth-child(1) {
    top: 0;
}
.hum_btn span:nth-child(2) {
    top: 50%;
}
.hum_btn span:nth-child(3) {
    top: 100%;
}
.hum_btn.active span:nth-child(1) {
    top: 50%;
/*    background: #dec393;		/**/
    background: #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.hum_btn.active span:nth-child(2){
    opacity: 0;
}
.hum_btn.active span:nth-child(3) {
    top: 50%;
/*    background: #dec393;		/**/
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}



@media screen and (max-width: 1000px) {
    .nav ul li {
        font-size: 24px;
        transition: 0.5s;
    }
    .nav_logo {
        width: 240px;
    }
}


@media screen and (max-width: 650px) {
    .nav_inner{
        display: block;
    }
    .nav_logo {
        width: 150px;
        margin-bottom: 40px;
    }
    .nav ul li {
        font-size: 20px;
    }
    .hum_btn {
        width: 40px;
        height: 20px;
    }
}
@media screen and (max-width: 500px) {
    .nav{
        justify-content: left;
        align-items: flex-end;
    }

}





.footer_gray{
	border-top: 1px #fff solid;
    background: #043143;
	color: #fff;
    padding: 60px 0;
}
.footer_logo{
    max-width: 400px;
    margin: 0 auto;
    width: 80%;
}
.footer_tel{
    max-width: 300px;
    margin: 60px auto 0;
    width: 70%;
}
.footer_white{
    padding: 40px 0;
}
.living_logo{
    max-width: 300px;
    width: 65%;
    margin: 0 auto;
}
.copyright{
    font-size: 10px;
    text-align: center;
    margin-top: 1em;
}
@media screen and (max-width: 500px) {
    .footer_white {
        padding: 20px 0;
    }
    .footer_tel {
        margin: 40px auto 0;
    }
    .footer_gray {
        padding: 40px 0;
    }
}