@charset "UTF-8";
/* CSS Document */
/**************************基本**************************/

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
}

header .header_logo{
    background: #fff;
}
header .header_nav {
    background: var(--black);
}

header .header_logo {
    height: 110px;
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    padding: 20px 20px 20px 30px;
    margin-left: -10px;
}

header .header_nav {
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 10px 20px;
    height: 80px;
    flex: none;
}

header .header_nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* ハンバーガーメニューボタン */
.header_nav_btn {
    display: none;
    margin: 0;
    padding: 0 20px;
}

.header_nav_btn a {
    background: none;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 8px;
}

.header_nav_btn a span {
    display: block;
    width: 40px;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
    transition: 0.3s;
}

.header_nav_btn a:hover span {
    background: var(--red);
}

html.uk-offcanvas-page .header_nav_btn a span:nth-child(1) {
    transform: rotate(35deg) translate(4px, 4px);
}

html.uk-offcanvas-page .header_nav_btn a span:nth-child(2) {
    transform: rotate(-35deg) translate(4px, -4px);
}


footer{
    padding: 40px 0;
    background: #fff;
    border-top: 1px solid var(--gray02);
}

footer .foot_nav ul li a{
    color: var(--black);
    text-decoration: none;
    font-weight: bold;
}

/*---------------screen and (min-width:1200px) - START ---------------*/
@media screen and (min-width:1200px) {
    header {
        padding-right: 2%;
    }

}

/*---------------screen and (min-width:1200px) - END ---------------*/



/*---------------screen and (max-width:1199px) - START ---------------*/
@media screen and (max-width:1199px) {
    header .header_logo {
        padding: 10px 10px 10px 20px;
    }

    header .header_nav ul li a {
        font-size: 14px;
    }
}

/*---------------screen and (max-width:959px) - END ---------------*/



/*---------------screen and (max-width:959px) - START ---------------*/
@media screen and (max-width:959px) {
    body {
        padding-top: 80px;
    }

    header .header_nav ul {
        display: none;
    }

    .header_nav_btn {
        display: block;
    }



    header .header_logo,
    header .header_nav {
        border-radius: 0;
        margin: 0;
        height: 80px;
        background: #fff;
    }

    .header_inner {
        background: #fff;
    }

    header .header_nav {
        padding: 0;
    }

    .uk-offcanvas {
        top: 80px;
    }

    .uk-offcanvas-bar {
        background: var(--black);
    }


    .uk-offcanvas-bar ul li:not(.common_live_btn) a{
        color: #fff;
        text-decoration: none;
        display: block;
        padding: 15px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }

}

/*---------------screen and (max-width:959px) - END ---------------*/



/*---------------screen and (max-width:640px) - START ---------------*/
@media screen and (max-width:640px) {
    .header_nav_btn{
        padding: 0 10px;
    }
    header .header_logo, header .header_nav{
        height: 60px;
    }
    body{
        padding-top: 60px;
    }
    .uk-offcanvas{
        top: 60px;
    }

    header .header_logo{
        padding: 10px;
    }

    header .header_logo img{
        width: 100%;
        max-width: 240px;
    }

    header .header_nav .common_live_btn a{
        font-size: 14px;
    }
}

/*---------------screen and (max-width:640px) - END ---------------*/