/* ----------------------------------------------

 * header

 ---------------------------------------------- */

#ly_header {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}


/* スマホ */
@media not screen and (min-width:1280px) {
  
  .mob_nav {
    box-shadow: 0 3px 15px 5px rgba(0, 0, 0, 0.2);
    transition: right 300ms cubic-bezier(.58, 1.28, 1, .89);
  }

  header,
  #header_slider,
  main,
  footer {
    position: relative;
    right: 0;
  }
  /* メニューを開いたときのbody */
  body.open_menu header,
  body.open_menu #header_slider,
  body.open_menu main,
  body.open_menu footer {
    right: 25%;

  }

  .bt_close {
    position: relative;
    
    display: flex;
    justify-content: flex-end;
    
    width: 100%;
    height: 56px;
    padding: 16px;
    background-color: var(--main_color);
    
  }
    .bt_close button {
      cursor: pointer;
    }

  .mob_nav ul li a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid var(--link_color_base);
    box-sizing: border-box;
  }



  /* 3本線の部分の設定 */
  #hum_bt {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* width: 27px;
    height: 27px; */
    cursor: pointer;

    z-index: 100;
    
  }


  /* ハンバーガーメニューの中 */
  /* 初期値は非表示 */
  .mob_nav {
    /* display: none; */
    position: fixed;
    top: 0;
    right: -100%;
    width: 25%;
    height: 100%;
    overflow: auto;

    border-left: 1px solid var(--link_color_base);

    z-index: 9999;
  }
    .mob_nav li {
      text-align: center;
      background-color: #fffee9;
    }
      .mob_nav li.tel {
        display: none;
      }


  /* ここで開処理 */
  .mob_nav.open_menu {
    right: 0;
  }

}


/* 1280px以上の場合 */
@media all and (min-width: 1280px) {

  #global_menu,
  .mob_nav {
    display: none;
  }


}