@charset "UTF-8";

/* 最上部ヘッダー */

.hEcBtn:nth-of-type(n + 2) {
    margin: 0 0 0 1.5em;
}

.hEcBtn a {
    color: #FFF;
    display: flex;
    align-items: center;
    transition: .3s;
}

.hEcBtn a span {
    color: #FFF;
    transition: .3s;
}

.hEcBtn a:hover span {
    color: #FFF;
    transition: .3s;
}

.hEcBtn a i {
    font-size: 18px;
    line-height: 1em;
    color: #fff;
}

.hEcBtn a span {
    margin: 3px 0 0 0.5em;
    font-size: 12px;
    line-height: 1em;
}

.hEcWr {
    width: 100%;
    background: #ED1C24;
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.hEcAr {
    margin: 0 auto;
    padding: 10px 15px;
    width: 100%;
}

.hEcBtn a:hover span {
    text-decoration: underline;
}

.hEcBtn-cart a .fa-shopping-cart:before {
    color: #fff;
}

.hEcBtnBx {
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");

#global-header {
    position: relative;
    z-index: 100;
}

/* @media screen and (min-width: 767px) {
    #global-header .gnav_logo {
        position: sticky;
        top: 0;
        z-index: 1000;
        width: var(--gnav-w);
        padding: 30px 20px 20px 30px;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        flex-direction: column;
    }

    #global-header .gnav_logo a {
        margin-bottom: 40px;
    }

    #global-header .gnav_logo a img {
        width: 100px;
        margin-left: 15px;
    }

    #global-header .pc_menu_list ul {
        list-style: none;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-flow: row;
        direction: rtl;
    }

    #global-header .pc_menu_list ul li {
        line-height: 1.6;
        margin: 0;
        padding: 0;
        writing-mode: vertical-rl;
        letter-spacing: 1px;
    }

    #global-header .pc_menu_list ul li a {
        color: #1a1a1a;
        text-decoration: none;
        font-weight: 700;
        font-size: 15px;
    }
} */


#global-header .gnav_logo {
    position: absolute;
    top: 38px;
    left: 0;
    z-index: 99;
    background-color: #FFF;
    width: 40%;
    max-width: 170px;
    padding: 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* #global-header .gnav_logo img {
    width: 40px;
    margin-left: 10px;
} */

.nav {
    position: fixed;
    right: -100%;
    /* 右から出てくる */
    top: 0;
    width: 100%;
    height: 100vh;
    padding: 10px 0;
    background-color: #fff;
    transition: all 0.6s;
    z-index: 200;
    overflow-y: auto;
    /* メニューが多くなったらスクロールできるように */
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.nav .nav_logo {
    width: 150px;
    padding-left: 10px;
}

.nav .sp_menu_list ul {
    list-style: none;
    margin-top: 40px;
    text-align: center;
}

.nav .sp_menu_list ul li {
    line-height: 2.2;
}

.nav .sp_menu_list ul li a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    font-size: 4.8vw;
}

.nav .sns_btn {
    width: 40px;
    margin-top: 20px;
    justify-self: center;
    align-self: center;
}

.hamburger {
    background-color: #FFF;
    position: fixed;
    right: 0;
    top: 38px;
    width: 45px;
    /* クリックしやすい幅 */
    height: 45px;
    /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
}

.nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav_item {
    text-align: center;
    padding: 0 14px;
}

.nav_item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
}

.nav_item a:hover {
    background-color: #eee;
}

.hamburger_border {
    position: absolute;
    left: 11px;
    width: 23px;
    height: 2px;
    background-color: #333;
    transition: all 0.6s;
}

.hamburger_border_top {
    top: 14px;
}

.hamburger_border_center {
    top: 20px;
}

.hamburger_border_bottom {
    top: 26px;
}

.black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
    cursor: pointer;
}

/* 表示された時用のCSS */
.nav-open .nav {
    right: 0;
}

.nav-open .black_bg {
    opacity: 0.8;
    visibility: visible;
}

.nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
}

.nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
}

.nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
}

@media screen and (min-width: 767px) {
    .nav .sp_menu_list ul li a{
        font-size: 3vw;
    }
}

@media screen and (min-width: 1024px) {
    .nav .sp_menu_list ul li a{
        font-size: 2vw;
    }
}

@media screen and (min-width: 1440px) {
    .nav .sp_menu_list ul li a{
        font-size: 1.4vw;
    }
}

/* sp */
/*# sourceMappingURL=header.css.map */