@media (max-width: 600px) {
/* ハンバーガーメニュー */
.burger-btn{
    display: block;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
    right: 10px;
    top: 30px;
    margin-bottom: 30px;
  }
  .bar{
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 1px;
    background-color: #333;
    position: absolute;
    z-index: 9; /*メニューの下に隠れないようにz-indexを指定する*/
    transition: .3s;
  }
  .bar_top{
    top: 0;
  }
  .bar_middle{
    top: 11px;
  }
  .bar_bottom{
    bottom: 0;
  }
  .burger-menu{
    text-transform: uppercase;
  }
  .nav-btn {
    position: absolute;
    top: 100%; /* ハンバーガーメニューの下に配置 */
    bottom: 3px;
    width: 100%;
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
    margin: 4px 0; /* 間隔を調整 */
  }
  /* ハンバーガーボタンをクリックしたときのボタンの見た目 */
  .burger-btn.cross .bar_top{
      transform: rotate(45deg);
      top:11px;
      transition: .3s;
   }
   .burger-btn.cross .bar_middle{
     opacity: 0;
     transition: .3s;
   }
   .burger-btn.cross .nav-btn{
    opacity: 0;
    transition: .3s;
  }
   .burger-btn.cross .bar_bottom{
     transform: rotate(-45deg);
     bottom: 11px;
     transition: .3s;
   }
  /* ハンバーガーメニューが開いたときのスタイル */
  .top-border1 {
    margin-top:15px;
  }
  nav{
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 85vh;
    background-color: #F7F9FC;
    z-index: 9; 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  .nav-header{
    display: flex;
    align-items: flex-end;
    margin-left: 8%;
  }
  .nav-list{
    display: block;
    width: 80%;
    margin: 20px auto 0 auto;
  }
  .burgerlogo{
    display: block;
  }
  .nav-item{
    margin: 0 0 10px;
    border-bottom: 1.5px solid #dfdede;
  }
  nav ul li a{
    padding: 5px;
  }
  .dropdown-toggle{
    color: #333;
    padding: 5px;
  }
  .toggle-icon{
    position:absolute;
    right:5px;
    font-size: 2.0rem;
    transition: transform 0.3s;
    padding-bottom: 1%;
  }
    /* ドロップダウンが開いたとき */
    .dropdown-sp.open {
      display: block;
      max-height: 200px;
      transition: max-height 0.3s ease-in;
    }
  
    .toggle-icon.open {
      transform: rotate(180deg);
    }
  body.noscroll, html.noscroll {
    overflow: hidden;
    height: 100%;
    touch-action: none; /* スマホのスクロールを防ぐ */
    position: fixed;
    width: 100%;
  }
  .dropdown-sp {
    display: none;
    overflow: hidden;
    background-color: #EAF6E9;
    padding-left: 10px;
    border-radius: 5px;
  }
  .dropdown-sp li{
    border-bottom: 1.5px solid #dfdede;
  }
  .dropdown-sp li:last-child{
    border-bottom: none;
  }
  .contact-box{
    width: 80%;
    text-align: center;
    margin: 20px auto 0 auto;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
}