/* ベースのスタイル */
body.menu-open {
    overflow: hidden;
    height: 100vh;
  }
.toggle-nav-area {
    position: relative;
    width: 40px;
    height: 20px;
    display: block;
  }
  @media screen and (min-width: 769px) {
    .toggle-nav-area {
       display: none;
      }
  }
  #menuToggle {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1001;
    width: 20px;
    height: 13px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  
  #menuToggle span {
    display: block;
    height: 1px;
    width: 100%;
    background-color: #333;
    border-radius: 2px;
    transition: 0.4s;
  }
  
  /* メニューアイコンがアクティブになった時のアニメーション */
  #menuToggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  
  #menuToggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  #menuToggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
  
  /* トグルメニュー */
  .toggle-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 1000;
    transition: right 0.4s ease;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    background-image: url(../images/footer-bg.png);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: contain;
  }
  .toggle-nav-menu {
    .nav-header-area{
        .container{
            padding: 2em 1em 0.5em;
        }   
    }
    .nav-contents-area{
        .container{
            padding: 0.5em 1em 1em
        }   
    }
    .reserved-area{
        padding: 1em;
        .container{
            display: flex;
            flex-direction: column;
        }
        .contents-area{
          text-align: left;
          max-width: 700px;
          margin-right: auto;
          margin-left: auto;
          margin-bottom: clamp(15px,3vw,30px);
        }
        .message{
          text-align: left;
          line-height: 1.5;
          font-size: clamp(12px,1.4vw,14px);
        }
        .line-qr-area{
            background-color: #00B900;
            padding: clamp(10px,2vw,20px) clamp(20px,2vw,30px);
            padding-bottom: clamp(20px,2vw,30px);
            border-radius: clamp(10px,2vw,20px);
            h3{
                color: var(--base-white-color);
                text-align: center;
                padding-top: 0;
                margin-top: 0;
            }
            img{
                max-width: 150px;
            }
        }
        
    }
  }
  .toggle-nav-menu.active {
    right: 0;
  }
  
  .toggle-nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .toggle-nav-menu li {
    margin: clamp(5px,1vw,10px) 0;
  }
  
  .toggle-nav-menu a {
    text-decoration: none;
    font-size: 18px;
    color: #333;
  }