.container {
    max-width: 1176px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

/*-------------------
	header
-------------------*/
.header {
    position: sticky;
    left: 0;
    width: 100%;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 100;
    top: 0;
    background-color: #fff;
}

.admin-bar .header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .header {
        top: 46px;
    }
}

.header .container {
    padding-block: 12px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.archive .header,
.page-template-blog .header,
.single .header {
    position: -webkit-sticky;
    position: sticky;
}

.header ul {
    list-style: none;
}

.header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header_group {
    display: flex;
    align-items: center;
}

.header-logo {
    display: block;
    width: 36%;
}


.legend_walker_logo {
    width: 13%;
    padding-inline: 15px;
}

@media only screen and (max-width: 768px) {
    .legend_walker_logo {
        width: 50px;
        padding-inline: 7px;
    }
}

.header_txt {
    font-size: 13px;
    white-space: nowrap;
}

@media only screen and (max-width: 768px) {
    .header_txt {
        font-size: 9px;
    }
}

@media only screen and (max-width: 768px) {
    .header-menu {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 69px;
        left: 100%;
        /* メニューを画面の外に飛ばす */
        z-index: 99;
        background: #F7FCFF;
        transition: .5s;
        padding: 40px;
    }
}

@media only screen and (min-width: 769px) {
    .header-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.header-menu.active {
    left: 0;
}

.header-menu .menu-item {
    margin-bottom: 30px;
    display: block;
}

@media only screen and (min-width: 769px) {
    .header-menu .menu-item {
        margin-bottom: 0;
        padding-inline: 15px;
    }
}

.header-menu .menu-item a {
    color: #000;
    -webkit-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
    white-space: nowrap;
}

.header-menu .menu-item a:hover {
    color: #b4003c;
}

.header-menu .menu-item .cart_icon {
    width: 21px;
    margin-left: 5px;
}


/* ハンバーガーメニュー */
/* ハンバーガーアイコンの設置スペース */
.drawer .drawer-open {
    display: flex;
    height: 45px;
    width: 25px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    /* 重なり順を一番上に */
    cursor: pointer;
}

/* チェックボックスは非表示に */
.drawer .drawer-hidden {
    display: none;
}

/* ハンバーガーメニューのアイコン */
.drawer .drawer-open span,
.drawer .drawer-open span:before,
.drawer .drawer-open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    background: #b4003c;
    transition: 0.5s;
    position: absolute;
}

/* 三本線のうち一番上の棒の位置調整 */
.drawer .drawer-open span:before {
    bottom: 6px;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer .drawer-open span:after {
    top: 6px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
.drawer #drawer-check.active~.drawer-open span {
    background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
.drawer #drawer-check.active~.drawer-open span::before {
    bottom: 0;
    transform: rotate(45deg);
}

.drawer #drawer-check.active~.drawer-open span::after {
    top: 0;
    transform: rotate(-45deg);
}


