@media only screen and (max-width:1024px) {
    #simple-menu{
      display: none !important;
    }
    #header{
      height:80px;
      padding-top: 10px;
    }
    .header-wrap{
      display: block;
      padding-left: 50px;
    }
    .header-wrap.no-account{
      padding-left: 10px;
    }
    #header h1 {
      font-size: 1.1rem;
      width: 100%;
      margin: 0;
      padding: 8px 0 0 0;
    }
    #headerRight {
      width: unset;
      margin: 10px 5px 0;
      float: right;
      display: flex;
      align-items:center;
    }
    #headerRight div{
      margin-right: 10px;
      font-size: 1rem;
    }
    #headerRight #name {
      width: unset;
      margin-top: unset;
    }
    #headerRight .human-icon {
      width: 30px;
      height: 30px;
      background-image: url(../../img/human.png);
      -webkit-background-size: 30px 30px;
      background-size: 30px 30px;
    }
    #headerRight .logout-icon {
      width: 30px;
      height: 30px;
      background-image: url(../../img/logout.png);
      -webkit-background-size: 30px 30px;
      background-size: 30px 30px;
    }
    #breadcrumb{
      margin-top:90px;
      font-size: 1rem;
      z-index: 39;
    }
    #breadcrumb .inBox{
      height:20px;
    }
    /*　ハンバーガーボタン　*/
    #hamburger {
      position: fixed;
      z-index : 50;
      left : 5px;
      top   : 8px;
      width : 32px;
      height: 32px;
      cursor: pointer;
      text-align: center;
    }
    #hamburger span {
      display : block;
      position: absolute;
      width   : 25px;
      height  : 2px ;
      left    : 6px;
      background : #fff;
      -webkit-transition: 0.3s ease-in-out;
      -moz-transition   : 0.3s ease-in-out;
      transition        : 0.3s ease-in-out;
    }
    #hamburger span:nth-child(1) {
      top: 10px;
    }
    #hamburger span:nth-child(2) {
      top: 20px;
    }
    #hamburger span:nth-child(3) {
      top: 30px;
    }
    /* ナビ開いてる時のボタン */
    #hamburger.active span:nth-child(1) {
      top : 20px;
      left: 6px;
      background :#fff;
      -webkit-transform: rotate(-45deg);
      -moz-transform   : rotate(-45deg);
      transform        : rotate(-45deg);
    }
    #hamburger.active span:nth-child(2),
    #hamburger.active span:nth-child(3) {
      top: 20px;
      background :#fff;
      -webkit-transform: rotate(45deg);
      -moz-transform   : rotate(45deg);
      transform        : rotate(45deg);
    }
    nav.globalMenuSp {
      position: fixed;
      z-index : 49;
      top  : 0;
      left : 0;
      color: #fff;
      background: rgba(113,113,113);
      text-align: center;
      opacity: 0;
      display: none;
      transition: opacity .6s ease, visibility .6s ease;
    }
    nav.globalMenuSp ul {
      margin: 0 auto;
      padding: 0;
      width: 100%;
    }
    nav.globalMenuSp ul li {
      list-style-type: none;
      padding: 0;
      width: 100%;
      transition: .4s all;
    }
    /* このクラスを、jQueryで付与・削除する */
    nav.globalMenuSp.active {
      opacity: 100;
      display: block;
    }
    nav #navi{
      width: 100%;
      overflow-y: scroll;
      max-height: 90vh;
    }
    nav #navi li a, #navi li p {
      font-size: 1rem !important;
    }
    nav #navi li span {
      margin-left: 35px;
    }
    /* 吹き出し */
    .baloon-child {
      opacity: 0;
      z-index: 40;
      display: none;
    }
    .baloon-child.active {
      opacity: 100;
      position: absolute;
      display: inline-block;
      margin: 28px -60px 0;
      padding: 15px;
      width: 120px;
      max-width: 100%;
      color: #555;
      font-size: 16px;
      background: #fff;
      z-index: 49;
      border-radius: 15px;
      font-size: 1rem;
    }
    .baloon-child.active:before {
      content: "";
      position: absolute;
      top: -28px;
      left: 50%;
      margin-left: -15px;
      border: 15px solid transparent;
      border-bottom: 15px solid #fff;
    }
  }
  