* {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0 auto;
  }

  .header {
    position: fixed; 
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #FCB55D;
    width: 100%;
    height: 170px;
  }

  @media screen and (max-width: 960px) {
    .header{
    display: flex;
    height: 80px;
    }
  }
  
  /* モバイル向けレイアウト */
  @media screen and (max-width: 520px) {
    .header{
      height: 70px;
    }
  } 

  .logo {
    text-align: center;
  }

  /* タブレット向けレイアウト */
  @media screen and (max-width: 960px) {
    .logo{
      padding-left: 10px;
      text-align: left;
    }
  }

    /* モバイル向けレイアウト */
    @media screen and (max-width: 520px) {
      .logo{
        padding-left: 10px;
        text-align: left;
      }
    }

  img.logopic{
    width: 25%;
    text-align: center;
  }

   /* タブレット向けレイアウト */
 @media screen and (max-width: 960px) {
  img.logopic{
    width: 50%;
    height: auto;
  }
}

  /* モバイル向けレイアウト */
  @media screen and (max-width: 520px) {
    img.logopic{
      width: 80%;
      height: auto;
    }
  } 

  .menu{
    position: sticky; 
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FCB55D;
    color: #ffffff;
    vertical-align: bottom;
    font-size: 20px;
    font-weight: bold;
  }

   /* タブレット向けレイアウト */
  @media screen and (max-width: 960px) {
    .menu{
     display: none;
    }
  }
  
  /* モバイル向けレイアウト */
  @media screen and (max-width: 520px) {
    .menu{
      display: none;
    }
  } 

  .menu ul {
    display: flex;
    list-style: none;
    width: 100%;
  }

  .menu li{
    padding: 10px 20px;
    text-align: center;
  }

  .soon{
    color: rgba(128, 128, 128, 0.742);
  }

  .menu-title-eng{
    font-size: 14px;
    font-weight: lighter;
    font: 0.8rem "Lato", sans-serif;
  }

      /* header下の重なり調整 */
  .space{
    height: 165px;
  }

  /* タブレット向けレイアウト */
  @media screen and (max-width: 1020px) {
    .space{
      height: 80px;
    }
  }
    
    /* モバイル向けレイアウト */
    @media screen and (max-width: 520px) {
      .space{
        height: 70px;
      }
    } 

/*NAVmenuの装飾*/
    .menu a {
      position: relative;
      display: inline-block;
      text-decoration: none;
    }
  
    .menu a::after {
      position: absolute;
      bottom: -4px;
      left: 0;
      content: '';
      width: 100%;
      height: 2px;
      background: #fff;
      transform: scale(0, 1);
      transform-origin: center top;
      transition: transform .3s;
    }
  
    .menu a:hover::after {
      transform: scale(1, 1);
    }
    
    #nav-drawer {
      position: relative;
    }

    @media screen and (min-width:960px) {
      #nav-drawer {
        display:none;
      }
    }
    
    /*チェックボックス等は非表示に*/
    .nav-unshown {
      display: none;
    }
    
    /*アイコンのスペース*/
    #nav-open {
      display: inline-block;
      width: 30px;
      height: 22px;
      vertical-align: middle;
    }

/* ハンバーガーメニュー */

    /*ハンバーガーの形*/
    #nav-open span, #nav-open span:before, #nav-open span:after {
      position: absolute;
      height: 4.2px;/*線の太さ*/
      width: 30px;/*長さ*/
      border-radius: 3px;
      background: #ffffff;
      display: block;
      content: '';
      cursor: pointer;
      z-index: 9999;
      transition: 0.5s;
    }

    #nav-open span:before {
      bottom: -8px;
    }

    #nav-open span:after {
      bottom: -16px;
    }
  
  /* アイコンがクリックされたら真ん中の線を透明にする */
  #nav-input:checked ~ #nav-open span {
    background: rgba(255, 255, 255, 0);
  }
  
  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #nav-input:checked ~ #nav-open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  
  #nav-input:checked ~ #nav-open span::after {
    top: 0;
    transform: rotate(-45deg);
  }

   /* アイコンがクリックされたらメニューを表示 */
   #nav-input:checked ~ #nav-content {
    left: 0;
  }
    
    /*メニューの中身*/
    #nav-content {
      overflow: auto;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1;
      width: 100%;
      max-width: 960px;/*最大幅*/
      height: 100%;
      color: #ffffff;
      font-weight: bold;
      font-size: 22px;
      text-align: center;
      background: rgba(252,167,93, 0.95);
      transition: .3s ease-in-out;
      -webkit-transform: translateX(-105%);
      transform: translateX(-105%);
    }
    
    /*チェックがついたら表示させる*/
    #nav-input:checked ~ #nav-close {
      display: block;
      opacity: .5;
    }
    
    #nav-input:checked ~ #nav-content {
      -webkit-transform: translateX(0%);
      transform: translateX(0%);
      box-shadow: 6px 0 25px rgba(0,0,0,.15);
    }

    .nav_list{
      margin-top: 80px;
    }

    .nav_item{
      margin-bottom: 30px;
    }
    
    .header-logo-menu{
     margin-top: 30px;
     margin-right: 30px;
     display: flex;
     display: -moz-flex;
     display: -o-flex;
     display: -webkit-flex;
     display: -ms-flex;
     flex-direction: row;
     -moz-flex-direction: row;
     -o-flex-direction: row;
     -webkit-flex-direction: row;
     -ms-flex-direction: row;
    }

      /* モバイル向けレイアウト */
      @media screen and (max-width: 520px) {
        .header-logo-menu{
          margin-top: 25px;        
        }
      }