/* pushy.css
   サイドから出るメニュー用
*/

.pushy {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100%;
    background-color: #000;
    border-right: 1px solid #222;
    overflow-y: auto;
    z-index: 2000;
    transition: left 0.3s ease;
    padding-top: 2rem;
  }
  
  .pushy-open .pushy {
    left: 0;
  }
  
  .site-overlay {
    display: none;
    position: fixed;
    z-index: 1500;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
    transition: all 0.3s ease;
  }
  
  .pushy-open .site-overlay {
    display: block;
  }
  
  /* メニュー内リンク (common.css側とも整合) */
  .pushy ul {
    list-style: none;
    margin: 0;
    padding: 0 1rem 3rem 1rem;
  }
  .pushy li {
    margin-bottom: 1rem;
  }
  .pushy a {
    display: block;
    background-color: #111;
    border: 1px solid #222;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.4;
    color: #fff;
  }
  .pushy a:hover {
    background-color: #1a1a1a;
    color: #4caf50;
  }
  
  /* スクロールバーちょい細く(一部ブラウザ) */
  .pushy::-webkit-scrollbar {
    width: 6px;
  }
  .pushy::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 3px;
  }
  