@charset "utf-8";
body {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
 }
 header {
    position: relative;
    top: 20px;
    height: 25px;
    margin: 0%;
    display: flex;
    align-items: center;
    padding: 0 0px;
 } 

 /* ここから下がハンバーガーメニューに関するCSS */
    
  /* チェックボックスを非表示にする */
.drawer_hidden {
    display: none;
  }
  
  /* ハンバーガーアイコンの設置スペース */
  .drawer_open {
    display: flex;
    height: 10px;
    width: 60px;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 0px;
    left: 290px;
    z-index: 100;/* 重なり順を一番上にする */
    cursor: pointer;
  }
  
  /* ハンバーガーメニューのアイコン */
  .drawer_open span,
  .drawer_open span:before,
  .drawer_open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 30px;
    border-radius: 15px;
    background: hwb(50 0% 23%);
    transition: 0.5s;
    position: absolute;
    right: 0px;
  }
  
  /* 三本線の一番上の棒の位置調整 */
  .drawer_open span:before {
    bottom: 7px;
  }
  
  /* 三本線の一番下の棒の位置調整 */
  .drawer_open span:after {
    top: 7px;
  }
  
  /* アイコンがクリックされたら真ん中の線を透明にする */
  #drawer_input:checked ~ .drawer_open span {
    background: rgba(248, 247, 247, 0);
  }
  
  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #drawer_input:checked ~ .drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  
  #drawer_input:checked ~ .drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
  }
    
  /* メニューのデザイン*/
.nav_content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%; /* メニューを画面の外に飛ばす */
    z-index: 99;
    background: #ffffff;
    transition: .5s;
  }
  
  /* メニュー黒ポチを消す */
   .nav_list {
    list-style: none;
  }
  
  /* アイコンがクリックされたらメニューを表示 */
  #drawer_input:checked ~ .nav_content {
    left: 0;/* メニューを画面に入れる */
  }
.nav_item{
    position: relative;
    left: 110px;
    top: 250px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.yohaku{
    height: 30px;
}

.aikon{
    align-items: center;
    display: flex;
    position: relative;
    left: 57px;
}

.kuuhaku{
    height: 100px;
}
  
.footer{
   height: 300px;
   background-color: #c39b19;
   margin: 0%;
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: center;
   margin: 0 auto;
   background-image: url(image2/footer.png); width: 100%;
   


   
   bottom: 0%;
}

.footermozi{
   color: #ffffff;
   
   
   
   display: flex;
   bottom: 0%;
}

a {
    text-decoration: none;
  }
