/* ハンバーガーメニューボタン */

.hamburger-menu {
    display: flex;
    width: 60px;
    height: 55px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
}
.header-menu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}
.header-menu-btn span,
.header-menu-btn span:before,
.header-menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #222;
    position: absolute;
}
.header-menu-btn span:before {
    bottom: 8px;
}
.header-menu-btn span:after {
    top: 8px;
}
#header-menu-btn-check:checked ~ .header-menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
    position: fixed;
    top: 25px;
    right: 5px;
    z-index: 90;
}
#header-menu-btn-check:checked ~ .header-menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    transition: all 0.5s;/*アニメーション設定*/
}
#header-menu-btn-check:checked ~ .header-menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
    transition: all 0.5s;/*アニメーション設定*/
}
#header-menu-btn-check {
    display: none;
}
.menu-content-layer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 100%;/*値を変更してメニューを画面外へ*/
    z-index: 78;
    background-color: #f5f5f5;
opacity: 0.5;
    transition: opacity 0.5s;/*アニメーション設定*/
}
#header-menu-btn-check:checked ~ .menu-content-layer {
    right: 0;/*メニューを画面内へ*/
}
#header-menu-btn-check:checked ~ .menu-content {
    right: 10%;/*メニューを画面内へ*/
    filter: drop-shadow(10px 0px 30px rgba(34,34,34,0.5));
}




/* ヘッダーメニューレイアウト */
.menu-content {
    width: 90%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 100%;/*値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #f5f5f5;
    transition: all 0.5s;/*アニメーション設定*/
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 100px;
    display: inline-flex;
    flex-direction: column;
}

/* 会員登録・ログインボタン */
.login-menu {
    display: flex;
    flex-direction: column;
    padding: 20px;    
}
.menu-content .btn {
    margin-top: 10px;
}


/* アイコン */
.menu-icon {
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: center; 
    margin-bottom: 20px;   
}
.menu-icon a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 80px;
    color: #222;
    text-decoration: none;
    font-size: 40px;/*アイコンサイズ設定*/
    width: 90px;
    text-align: center;
}
.menu-icon .top-text {
    height: fit-content;
}
.menu-icon .block-headernav--cart-count {
    position: relative;
    top: 15px;
    right: 0px;
    left: 15px;
    color: #222;
    font-weight: bold;
}



/* メニューリスト */
.menu-content ul {
    padding: 0 10px;
}
.menu-content ul li {
    border-bottom: solid 1px #222;
    list-style: none;
}
.menu-content ul li:last-child {
    border-bottom: none;
}
.menu-content .block-category-style-g--items-2 li,
.menu-content .block-category-style-g--items-1 li,
.menu-content .yomimono-menu-list li {
    border-bottom: solid 1px #eee;
}
.menu-content  .block-category-style-g--items-0 {
    border-top: solid 2px #222;
}
.menu-content .yomimono-menu-list ul,
.menu-content ul.block-category-style-g--items-1 {
    border-top: solid 1px #222;
}
.menu-content ul li a,
.menu-content .tips label {
    display: inline-flex;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
    background-color: #f5f5f5;
}
.menu-content .block-category-style-g--expand-icon,
.menu-content .block-category-style-g--item {
    background-color: #f5f5f5;
}
.menu-content .block-category-style-g--items-1,
.menu-content .block-category-style-g--items-2 {
    padding: 0 0 0 10px;
    background-color: #f5f5f5;
}
.menu-content .block-category-style-g--items-1 > li {
    padding: 0;
}
.menu-content .block-icon-image--plus::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #222;
    border-right: solid 2px #222;
    transform: rotate(135deg);
    position: absolute;
    right: 21px;
    top: 21px;
}
.menu-content .block-category-style-g--items-1 .block-icon-image--plus::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 1px #222;
    border-right: solid 1px #222;
    transform: rotate(135deg) skew(-10deg, -10deg);
    position: absolute;
    right: 21px;
    top: 21px;
}
.block-icon-image--plus {
    background-image: none;
}
.menu-content .block-category-style-g--items-2 li a::after,
.menu-content .block-category-style-g--items-1 li a::after  {
    content: none;
}
.menu-content .tips {
    border-top: solid 2px #222;
    border-bottom: solid 2px #222;
}
.menu-content .tips li {
    position: relative; 
}
.menu-content .tips a,
.menu-content .tips label {
    vertical-align: middle;
    text-align: left;
    padding-left: 10px;
    width: 100%;
}
.menu-content #block_of_category {
    margin-bottom: 0;
}

/* よみものアコーディオン設定 */

input[name="yomimono-menu"] {
    display: none;
}
.yomimono-menu-list {
    max-height: 0;
    transition: max-height 0.5s;
    overflow: hidden;
}
#yomimono-menu-input:checked ~ .yomimono-menu-list {
    max-height: 100vh;
}
input[type="checkbox"]:checked + label {
    color: #222;
}
.menu-content .company-info a::before {
    content: "-";
    margin: 0 3px;
}


/* 会社概要メニュー */
.menu-content .company-info {
    display:inline-block;
    margin: 10px 0;
}
.menu-content .company-info a {
    text-decoration: none;
    display: block;
    padding: 2px 10px;
}



/* ヘッダーイベント */
#head750bnr {
    background-color:#d63284;
    display: block;
    text-align: center;
  }
  #head750bnr a {
    font-weight: 900;
    font-size: 18px;
    color: #fff;
    align: center;
    text-decoration: none;
  }



/* ヘッダーニュース */
#header-news {
    background: #dbdbdb;
    color: #222;
}
#header-news p {
    color: #222;
}
.pane-topic-path,
.block-topic-path {
    background-color: #fff;
}
.block-search-box--form {
    background: #f5f5f5;
}