html {/*ズレ対策**/
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body{
  margin: 0;
  padding: 0;
}

img {/*ズレ対策**/
  max-width: 100%;
  height: auto;
  display: block;
}
body  p{
    margin: 0 ;
   font-family: 'osaka', 'Zen Kaku Gothic Antique', 'ヒラギノ角ゴ ProN', 'メイリオ', sans-serif;
   font-size: 14px;
   line-height: 30px;

  }
@media (max-width: 767px) {
  body{
  width: 100%;
  height: 100%;
}
}

  
  
   /*----------------------------------------
                     header
   /*-----------------------------------*/
  header {
    /*position: relative;*/
    position: fixed;
     top: 0;
     left: 0;
     width: 100%;
    display: flex;	
    background-color: #f5f5f5;
    justify-content: space-between;	/* ← 左右に分かれる */
    padding: 40px 40px;
    align-items: center;
    z-index: 100;
  }
  
  .logo img{
    width: 120px;
  }
  
  /* ハンバーガーメニュー */
  .menu-toggle {
  /*border: 1px solid blue; test*/
  width: 28px;
  height: 25px;
  flex-direction: column;
  justify-content: space-between;
  cursor:pointer;
  position: relative;
  z-index:110;
}
 
  
  .menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #707070; /* テスト用 */
    margin: 6px 0;
    transition: all 0.3s ease;
  }
   /* チェックボックス非表示 */
   #menu-checkbox {
    display: none;
  }

 /* メニュー本体 */
.menu {
  position: fixed;
  top: 0;
  left: -120%;/*SP：画面の外左120%にある*/
  width: 240px;
  height: 100%;
  background: #fff;
  padding: 80px 20px;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
  transition: left 0.3s ease;
  z-index: 105;
}

.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu li {
  margin-bottom: 20px;
}

.menu a {
  letter-spacing:3px;
  color:#3E3E3E;
  text-decoration: none;
  font-size: 15px;
}
/* オーバーレイ */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 90;
}

/* メニューが開いたとき */
#menu-checkbox:checked ~ .menu {
  left: 0;
}

/* ハンバーガーアニメーション */
#menu-checkbox:checked ~ .menu-toggle span:nth-of-type(1) {
  transform: translateY(9px) rotate(45deg);
}
#menu-checkbox:checked ~ .menu-toggle span:nth-of-type(2) {
  opacity: 0;
}
#menu-checkbox:checked ~ .menu-toggle span:nth-of-type(3) {
  transform: translateY(-9px) rotate(-45deg);
}

#menu-checkbox:checked ~ .overlay {
  opacity: 1;
  pointer-events: auto;
}
li:hover{
  color: #fff;
  opacity: 0.6;
}


/*----------------------------------------
  main　コンテンツ
/*---------------------------------------*/

main {
  margin:0;
}
@media (max-width: 767px) {
  main{
    margin: 0px;
  }
  
}












  /*---------------------------
              footer
  ---------------------------*/
  footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
    background-color: #100300;
    flex-wrap: wrap;
    color: #fff;
  }
  
  .footer-left {
    max-width: 300px;
  }
  
  .footer_logo img {
    width: 90px;
    padding-top: 20px;
  }
  @media (max-width: 767px) {
    .footer_logo img {
    width: 50% !important;
    }
  }
  
  footer p {
    margin: 20px 0;
    color: #fff;
  }
  
  .footer-links {
    display: flex;
    margin-left: 0;  
    gap: 20px;
  }
  
  .footer-links-left,
  .footer-links-right {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-links li {
    padding-bottom: 20px;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
  }
  
  
    /*footer PC----
    レスポンシブ調整 */
     /* PC用フッターレイアウト */
     @media (min-width: 1024px) {
      footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 60px 40px;
      }
    
      .footer-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* ←ここで左揃え */
        gap: 20px;
      }
    
      .footer_logo img {
        padding: 0;
        width: 120px;
      }
    
      footer p {
        margin: 0;
        color: #fff;
        font-size: 16px;
        line-height: 2;
        padding-top: 0px;
        white-space: nowrap;
      }
    
      footer ul {
        display: flex;
        max-width: 300px;
        flex-direction: column;
        gap: 10px;
        margin: 0;
        padding: 0;
        list-style: none;
      }
    
      footer li {
        padding: 0;
        margin-right: 600px;
      }
    
      .contact-link {
        padding-bottom: 0;
      }
    }

    .copylight{
      display: block;
      font-size: 12px;
      text-align: center;
    }
    @media (max-width: 767px) {
      .copylight{
       width: 100%;}
    }