@charset "UTF-8";

/* ==================================================================================
# header
================================================================================== */
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 88px;
    z-index: 777;
}

@media (max-width: 767px) {
    header.is-fixed {
        position: fixed;
        width: 100%;
    }
}

body:not(#home) .header {
    background: #fff;
}

.header-left {
    margin-top: 33px;
}

body:not(#home) .header-left {
    margin-top: 36px;
}

.header-right {
    /* width: 394px; */
    width: 415px;
    max-width: 100%;
    margin-top: 31px;
}

body:not(#home) .header-right {
    margin-top: 35px;
}

.header-menu:last-child {
    border: 1px solid #fff;
    /* padding: 10px 41px 11px; */
    padding: 0;
    margin-top: -11px;
    border-radius: 5px;
    margin-left: 4px;
}

.header-menu:last-child a {
    display: block;
    padding: 10px 41px 11px;
}

body:not(#home) .header-menu:last-child {
    border: 1px solid #3B4043;
}

.header-menu a {
    font-size: 12px;
    color: #fff;
    transition: opacity 0.3s ease;
}

.header-menu a:hover {
    opacity: 0.7;
}

body:not(#home) .header-menu a {
    color: #3B4043;
}

.sp-hamburger {
    display: none;
}

@media screen and (max-width: 767px) {

    .header-right {
        /* width: 55%; */
        display: none;
    }

    .header-menu:last-child {
        padding: 4px 16px 6px;
        margin-top: -6px;
        margin-left: 0;
    }

    .sp-hamburger {
        display: block;
    }

}

@media screen and (max-width: 480px) {

    .header-left {
        margin-top: 31px;
        margin-left: 27px;
    }

    body:not(#home) .header-left {
        margin-top: 31px;
    }

}









.sp-hamburger {
    display: none;
}

.drawer-icon {
    position: absolute;
    top: 16px;
    right: 37px;
    z-index: 300;
    transition: transform 0.5s ease 0s;
}

.drawer-icon.is-active {
    position: fixed;
}

.drawer-icon.is-active .drawer-icon__bar1 {
    top: 23px;
    background: #333;
    transform: translate(-50%) rotate(-45deg);
}

.drawer-icon.is-active .drawer-icon__bar2 {
    display: none;
}

.drawer-icon.is-active .drawer-icon__bar3 {
    top: 23px;
    background: #333;
    transform: translate(-50%) rotate(45deg);
}

.drawer-icon__bars {
    width: 22px;
    height: 20px;
    display: block;
    position: relative;
    border: 1px solid #686769;
    border-radius: 6px;
    padding: 23px;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
    position: absolute;
    width: 16px;
    height: 2px;
    background: #fff;
    top: 0;
    left: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: .2s;
}

body:not(#home) .drawer-icon__bar1,
body:not(#home) .drawer-icon__bar2,
body:not(#home) .drawer-icon__bar3 {
    background: #333;
}

.drawer-icon__bar1 {
    top: 16px;
}

.drawer-icon__bar2 {
    top: 22px;
}

.drawer-icon__bar3 {
    top: 28px;
}

.drawer-content {
    width: 100%;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    background: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
    z-index: 299;
    transform: translateX(105%);
    transition: transform 0.5s ease 0s;
    padding-top: 80px;
}

.drawer-content-inner {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.drawer-content.is-active {
    transform: translateX(0);
}

.drawer-content-items {
    padding: 0 5% 10px 5%;
}

.drawer-content-item {
    border-bottom: 1px solid #707070;
}

.drawer-content-item a {
    display: block;
    color: #333333;
    text-decoration: none;
    padding: 18px 20px;
    position: relative;
}

.drawer-background {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 298;
    display: none;
}

.drawer-background.is-active {
    display: block;
}

@media (max-width: 767px) {
    .sp-hamburger {
        display: block;
    }
}


/* スマホメニュー
--------------------------- */