
header{
    position: relative;
    top: 0;
    width: 100%;
    z-index: 2;
}
.header_nav_main{
    position: fixed;
    top: 50%;
    right: 2.3%;
    z-index: 1;
    transform: translateY(-50%);
    color: #FFF;
    display: flex;
    flex-direction: column;
/*    gap: 8vh;*/
    justify-content: space-between;
    height: calc(100% - 60px);
}
.header_other{
    position: fixed;
    top: 50%;
    left: 2.3%;
    z-index: 1;
    transform: translateY(-50%);
    color: #FFF;
    display: flex;
    flex-direction: column;
/*    gap: 8vh;*/
    justify-content: space-between;
    height: calc(100% - 60px);
}


.header_nav_main li:first-of-type{
    width: 2.47vh;
}
.header_nav_main li:not(:first-of-type){
    width: 2.6vh;
}
.header_other li:first-of-type{
    width: 2.6vh;
}
.header_other li:nth-of-type(2){
    width: 2.34vh;
}
.header_other li:last-of-type{
    width: 3vh;
    margin-left: -20%;
}

.header_nav_main li{
    position: relative;
    overflow: hidden;
}
.header_nav_main li a img:first-of-type{
    transition: 0.2s;
    opacity: 0;
}
.header_nav_main li:hover a img:first-of-type{
    opacity: 1;
}
.header_nav_main li a img:last-of-type{
    top: 0;
    left: 0;
    position: absolute;
    cursor: pointer;
    transition: 0.2s;
}
.header_nav_main li:hover a img:last-of-type{
    opacity: 0;
}
.header_other li{
    position: relative;
    overflow: hidden;
}
.header_other li a img:first-of-type{
    transition: 0.2s;
    opacity: 0;
}
.header_other li:hover a img:first-of-type{
    opacity: 1;
}
.header_other li a img:last-of-type{
    top: 0;
    left: 0;
    position: absolute;
    cursor: pointer;
    transition: 0.2s;

}
.header_other li:hover a img:last-of-type{
    opacity: 0;
}
@media (max-width: 1100px){
    header{
        z-index: 9998;
    }
    .sp_header_nav{
        background-color: rgba(0, 0, 0, 0);
        width: 100%;
        height: 75px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10000;
    }
    .hamb{
        position: absolute;
        width: 30px;
        height: 26px;
        right: 25px;
        top: 25px;
        z-index: 10002;
    }
    .hamb span{
        width: 100%;
        height: 2px;
        background-color: #5C5C5C;
        position: relative;
        transition: ease 0.3s;
        display: block;
    }
    .hamb span:nth-child(1){
        top: 0;
    }
    .hamb span:nth-child(2){
        margin: 10px 0;
    }   
    .hamb span:nth-child(3){
        bottom: 0;
    }
    .hamb.active span:nth-child(1){
        top: 5px;
        transform: rotate(45deg);
        background-color: #fff;
    }
    .hamb.active span:nth-child(2){
        opacity: 0;
    }   
    .hamb.active span:nth-child(3){
        top: -19px;
        transform: rotate(-45deg);
        background-color: #fff;
    }
    .sp_menu{
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        overscroll-behavior-y: none;
        background-color: rgba(0, 0, 0, 0.3);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        transition: ease 0.3s;
        transform: translateX(100%);
        z-index: 9999;
    }
    .sp_menu.active{
        transform: translateX(0);
    }
    .sp_menu_wrap{
        display: flex;
        justify-content: center;
    }
    .sp_menu ul{
        padding-top: 75px;
    }
    .sp_menu ul li:not(:last-of-type) {
        margin-bottom: 35px;
        height: 30px;
    }
    .sp_menu ul li:last-of-type{
        height: 72px;
    }
    .sp_menu ul li a{
        display: block;
        width: 100%;
        height: 100%;
    }
    .sp_menu ul li a img{
        max-height: 100%;
    }
    .sp_nav_logo{
        margin-top: 40px;
    }
    .sp_nav_logo > .img_box{
        width: 25%;
        min-width: 98px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .sp_nav_logo .sp_nav_insta{
        margin-top: 40px;
        margin-bottom: 25px;
    }
    .sp_nav_insta{
        text-align: center;
    }
    .sp_nav_insta p{
        font-size: 18px;
        color: #FFF;
    }
    .sp_nav_insta p.comment {
        font-size: 14px;
    }
    .sp_nav_insta .img_box{
        margin-top: 12px;
        max-width: 7.6%;
        width: 7.6%;
        max-width: 30px;
        aspect-ratio: 1/1;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}


footer{
    position: relative;
    width: 100%;
    height: 100%;
    height: -webkit-fill-available;
    min-height: 100dvh;
    text-align: center;
}
footer .container_1{
    position: relative;
    height: calc(100vh - 20vh);
}
footer .container_2{
    position: relative;
    height: 20vh;
}
footer .footer_wrap{
    position: absolute;
    height: 71%;
    aspect-ratio: 2/3;
    left: 50%;
    top: calc(47% - -10vh);
    transform: translate(-50%, -50%);
}
footer .footer_logo{
    position: absolute;
} 
footer .footer_address_wrap{
    position: absolute;
    left: 50%;
    bottom: 2vh;
    width: 100%;
    transform: translateX(-50%);
}
footer .footer_address_wrap .address{
    margin-top: 0%;
    font-size: .9vw;
}
footer .footer_address_wrap .instagram_btn{
    margin-top: 2%;
}
footer .footer_address_wrap .instagram_btn p{
    font-size: .9vw;
}
footer .footer_address_wrap .instagram_btn p.comment {
    font-size: .8vw;
}
footer .footer_address_wrap .instagram_btn .insta_icon{
    width: 1.9vw;
    min-width: 22px;
    display: block;
    margin: 1% auto 0;
}
footer .footer_address_wrap .instagram_btn .insta_icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
footer .footer_address_wrap .instagram_btn .insta_icon a{
    transition: 0.2s;
}
footer .footer_address_wrap .instagram_btn .insta_icon a:hover{
    opacity: 0.7;
}
footer .footer_copy{
    margin-top: 2vh;
    font-size: .8vw;
}

@media (max-width: 1365px) {
    footer .footer_address_wrap .address,
    footer .footer_address_wrap .instagram_btn p {
        font-size: 14px;
    }
    footer .footer_address_wrap .instagram_btn p.comment {
        font-size: 12px;
    }
    footer .footer_copy {
        font-size: 12px;
    }
}
@media (max-width: 768px) {
    footer .container_1 {
        height: calc(100vh - 30vh);
    }
    footer .footer_wrap {
        top: auto;
        bottom: 1em;
        transform: translate(-50%, 0);
    }
    footer .container_2 {
        height: 30vh;
    }
    footer .footer_address_wrap {
        top: 0;
    }
    footer .footer_address_wrap .instagram_btn {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        height: fit-content;
    }
    footer .footer_address_wrap .instagram_btn p {
        padding-bottom: .4em;
    }
    footer .footer_address_wrap .instagram_btn .insta_icon {
        margin: .5em auto 0;
    }
    footer .footer_copy {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }
}

