@charset "UTF=8";

/*=======================================
common 
 ========================================*/
 
 html {
     font-size: 62.5%;
     scroll-behavior: smooth;
    }
    
body {
    background-color: #FFFFFF;
    font-family: 'Zen Kaku Gothic New' ,
    'Outfit', 
    sans-serif;
    font-style: normal;
    color: #000000;
    font-size: 1.6rem;
    font-weight: 350;
    font-weight: 400;
    line-height: 1;
}



.English-Title {
    font-family: 'Outfit';
}

/*=======================================
FadeIn 
========================================*/

.fadeIn {
    transform: translate(0, 50px);
    opacity: 0;
    transition: 0.8s;
}

.fadeIn.animated {
    transform: translate(0, 0);
    opacity: 1;
}


/*=======================================
Header 
========================================*/

.container {
    margin: 0 auto;
}

.header {
    padding: 44px 5.5% 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.SP-main-icon,
.nav-item-SP,
.nav-icon,
.close-btn,
.humbarger,
.nav-branch {
    display: none;
}

.main-icon {
    max-width: 133px;
    height: 54px;
}

.Sp-insta,
.Pc-insta {
    width: 20px;
    height: 20px;
}

.nav::after {
    content: '';
    display: block;
    width: 450px;
    height: 6px;
    background-image: url(../images/PC-nav-deco.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 7px;
}

.nav-list {
    display: flex;
    margin-left: auto;
    gap: 27px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-item,
.nav-item-PC,
.nav-item-SP {
    font-family: 'Outfit';
    font-size: 1.4rem;
    font-weight: 200;
}

/* Header sp */
@media screen and (max-width: 769px) {
    .header {
        padding: 15px 4% 0;
    }

    .SP-main-icon,
    .Sp-insta,
    .nav-icon,
    .nav-item-SP,
    .close-btn,
    .humbarger,
    .nav-branch {
        display: block;
    }

    .Sp-insta {
        width: 20px;
        height: 20px;
    }

    .main-icon,
    .nav-item-PC,
    .nav::after {
        display: none;
    }

    .SP-main-icon {
        width: 60px;
        height: 24px;
    }

    .nav-icon {
        width: 133px;
        height: 54px;
    }

    .nav {
        padding: 22px;
        width: 100%;
        height: 100vh;
        background-color: #67859A;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 100;
        display: flex;
        flex-direction: column;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.5s, opacity 1s;
        opacity: 0;
    }
    
    .nav.active {
        transform: translateX(0);
        opacity: 1;
    }

    .nav-icon {
        width: 133px;
        height: 54px;
        margin: 36px auto 0;
    }

    .nav-list {
        display: flex;
        flex-wrap: wrap;
        margin: 60px 20%;
        row-gap: 49px;
        column-gap: 34px;
        justify-content: center;
    }

    .nav-item, .nav-item-SP {
        color: #FFFFFF;
        display: flex;
        align-items: center;
        gap: 10px;
        width: 70px;
        flex-shrink: 0;
        flex-grow: 0;
    }

    .nav-item::before {
        content: '';
        display: block;
        background-color: #FFFFFF;
        width: 10px;
        height: 1px;
    }

    .nav-branch {
        position: absolute;
        width: 363px;
        height: 203px;
        transform: rotate(-197deg);
        top: 364px;
        right: -25px;
    }

    .close-btn {
        display: block;
        width: 21px;
        height: 20px;
        margin: 0 1% 0 auto;
    }

}


/*=======================================
Footer
========================================*/

footer {
    padding: 86px 7.2%;
    background-image: url(../images/footer-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.Footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

 .footer-icon {
    width: 133px;
    height: 54px;
}

.footer-nav-list {
    display: flex;
    gap: 27px;
}

.footer-nav-item, small {
    color: #FFFFFF;
}

.footer-nav-item {
    font-family: 'Outfit';
    font-weight: 200;
}

small {
    font-family: 'Outfit';
    font-size: 1.2rem;
    font-weight: 100;
}
/* Footer sp */
@media screen and (max-width: 769px) {
    .Footer {
        flex-direction: column;
        padding: 25px 0 30px;
    }

    .footer-icon {
        width: 133px;
        height: 54px;
    }

    .footer-nav-list {
        display: flex;
        flex-wrap: wrap;
        margin: 60px 20%;
        row-gap: 49px;
        column-gap: 34px;
        justify-content: center;
    }

    .footer-nav-item {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 70px;
        flex-shrink: 0;
        flex-grow: 0;
    }

    small {
        font-family: 'Outfit';
        font-size: 1rem;
    }
}

