@charset "utf-8";
  /* iOSでのデフォルトスタイルをリセット */
  input[type="submit"],
  input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
  }
  input[type="submit"]::-webkit-search-decoration,
  input[type="button"]::-webkit-search-decoration {
    display: none;
  }
  input[type="submit"]::focus,
  input[type="button"]::focus {
    outline-offset: -2px;
  }
    /* Avoid Chrome to see Safari hack */
    /*supports (-webkit-touch-callout: none) {
      .global-nav {
        /* The hack for Safari */
        /*height: -webkit-fill-available;
      }
    }*/
  @media screen and (min-width: 769px){
    .entry-content {
      display:none;
    }
  }
  @media screen and (max-width: 768px){
  body {
    margin: 0;
    padding: 0;
  }
  * {
    box-sizing: border-box;
  }
  .box {
    background-color: #eee;
    height: 500px;
  }
  .header {
       /*ヘッダー固定*/
    /*position: fixed;*/
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    /*background-color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.16);*/
  }
  .global-nav {
    position: fixed;
    right: -100vw; /* これで隠れる */
    top: 0;
    width: 100vw; /* スマホに収まるくらい */
    height: 100vh;
    /*padding-top: 40px;*/
    /*background-color: #fff;*/
    height: -webkit-fill-available;
    transition: all .6s;
    z-index: 200;
    overflow: hidden;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    position: absolute;
    right: 10px;
    top: 0;
    width: 40px; /* クリックしやすいようにちゃんと幅を指定する */
    height: 40px; /* クリックしやすいようにちゃんと高さを指定する */
    cursor: pointer;
    z-index: 300;
    color: #000;
  }
  .global-nav__list {
    margin: 0;
    padding: 50px 0;
    list-style: none;
    width:100%;
  }
  .global-nav__item {
    text-align: center;
    padding: 15px 14px;
    float: left;
    width:50%;
  }  
  .global-nav__item a {
    display: block;
    padding: 8px 0;
    /*border-bottom: 1px solid #eee;*/
    /*text-decoration: none;*/
    color: #eee;
  }
  .global-nav__item a:hover {
    /*background-color: #eee;*/
    color: gray;
  }
  .global-nav__item_b {
    background-color: #eee;
    text-align: center;
    padding: 20px;
    width:70%;
    margin-left:15%;
    margin-right:15%;
    margin-top:5%;
    margin-bottom:5%;
  }  
  .global-nav__item_b a:hover {
    color: gray;
  }
  
  .global-nav__item_b a:hover {
    color: gray;
  }

  .global-nav_item {
    text-align: center;
    padding-top: 5%;
  }
  .global-nav_item a {
    display: block;
    /*border-bottom: 1px solid #eee;*/
    /*text-decoration: none;*/
    color: #eee;
  }
  .global-nav_item a:hover {
    /*background-color: #eee;*/
    color: gray;
  }
  .global-nav__btn a {
    background-color: rgba(0,0,0,0.6); /* 背景色 */
    color: #fff; /* 文字色 */
    padding: 19px 100px; /* 上下の余白、左右の余白 */
    text-decoration: none; /* デフォルトで入るリンクの下線を消す */
    border-radius: 30px; /* 角を丸くする */
    border-color: #fff;
    border-style: solid;
    margin-top:30px;
    
  }
  .global-nav__btn {
    margin-top:80px;
    text-align:center;
    font-family: 'Kozuka Gothic Pr6N';
  }
  .allshop {
    padding-top:220px;
  }
  .item_c {
    padding-right: 0px;
  }
  .item_d {
    padding-left: 0px;
  }
  .hamburger__line {
    position: absolute;
    left: 1px;
    width: 30px;
    height: 1.5px;
    background-color:gray;
    transition: all .6s;
  }
  .hamburger__line--1 {
    top: 21px;
  }
  .hamburger__line--2 {
    top: 31px;
  }
  .hamburger__line--3 {
    top: 41px;
  }
  .black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #000;
    opacity: 80;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }
  /* 表示された時用のCSS */
  .nav-open .global-nav {
    right: 0;
  }
  .nav-open .black-bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 30px;
  }
  .nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 30px;
  }
  } 