/* headerとfooter */
/* header */
html.fixed,
body.fixed {
  overflow: hidden;
}
body.fixed{
  &:before{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
  }
}
.header {
  position: fixed;
  top: 0;
  height: 80px;
  width: 100%;
  /* background: url(../../img/bg_lifit.jpg) repeat; */
  z-index: 1;
  .header_inner{
    .header_inner-Logo{
      a{
        display: block;
        width: 121px;
        position: relative;
        top: 26px;
        left: 23px;
      }
    }
    nav.nav {
      position: fixed;
      top: 0px;
      width: 100%;
      z-index: 10;
      background: url(../../img/bg_dark.png) repeat;      
    }
    nav.nav:has(ul.header_inner-Menu.open)::before {
      /* content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100dvh;
      background: rgba(0, 0, 0, 0.4);
      z-index: 0; */
    }

    ul.header_inner-Menu {
      height: 0;
      overflow: hidden;
      transition: .3s;
      list-style:none;
      position: relative;
      /* &.open{
        .nav01:before{
          content: '';
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100dvh;
          background: rgba(0, 0, 0, 0.4);
          z-index: -1;
        }
      } */
      .nav01{
        padding: 121px 0 55px;
        picture{
          display: block;
          width: 205px;
        }
      }
      .nav02{
        picture{
          display: block;
          width: 60px;
        }
      }
      .nav03{
        picture{
          display: block;
          width: 195px;
        }
      }
      .nav04{
        picture{
          display: block;
          width: 139px;
        }
      }
      .nav05{
        picture{
          display: block;
          width: 209px;
        }
      }
      .nav06{
        picture{
          display: block;
          width: 142px;
        }
      }
      .nav07{
        margin: 40px auto 95px auto;
        picture{
          display: block;
          width: 27px;
        }
      }      
    }
    li a{
        padding: 8px;
        font-size: 16px;
        color: #464646;
        display: block;
        text-align: center;
        text-decoration: none;
        margin: 0 auto 5px;
        width: fit-content;
    }
    .hamburger {
        position: absolute;
        top: 29px;
        right:32px;
        cursor: pointer;
        width: 32px;
        height: 24px;
        z-index: 10;
    }
    .hamburger span {
        /*3本の線を作る*/
        transition: all .3s;
        position: absolute;
        height: 2px;
        background-color: #333;
        width:100%;
        z-index: 9;
    }
    .hamburger span:nth-of-type(1) {
        /*上の線の位置*/
        top: 4px;
    }
    .hamburger span:nth-of-type(2) {
        /*真ん中の線の位置*/
        top: 12px;
    }
    .hamburger span:nth-of-type(3) {
        /*下の線の位置*/
        top: 20px;
    }
    #header-menu.open{
    }    
    .hamburger.open span:nth-of-type(1) {
      /*openのとき、上の線を右斜めにする*/
      top: 10px;
      transform: translateY(6px) rotate(-45deg);
      background: #fff !important;
    }
    .hamburger.open span:nth-of-type(2) {
        /*真ん中の線を消す*/
        opacity: 0;
    }
    .hamburger.open span:nth-of-type(3) {
      /*下の線を左斜めにする*/
      top: 22px;
      transform: translateY(-6px) rotate(45deg);
      background: #fff !important;
    }
  }
}
@media (width >= 769px) {
  .header {    
    .header_inner{
      .header_inner-Logo{
        a{
        }
      }
      nav.nav {
        
      }
      ul.header_inner-Menu {
        .nav01{
          padding: 94px 0 65px;
          picture{
            width: 374px;
          }
        }
        .nav02{
          picture{
            width: 80px;
          }
        }
        .nav03{
          picture{
            width: 261px;
          }
        }
        .nav04{
          picture{
            width: 188px;
          }
        }
        .nav05{
          picture{
            width: 279px;
          }
        }
        .nav06{
          picture{
            width: 192px;
          }
        }
        .nav07{
          picture{
            width: 27px;
          }
        }
      }
      li a{
        margin: 0 auto 12px;
      }
      .hamburger {
      }
      .hamburger span {
      }
      .hamburger span:nth-of-type(1) {
      }
      .hamburger span:nth-of-type(2) {
      }
      .hamburger span:nth-of-type(3) {
        height: 2px;
      }
      #header-menu.open{
      }    
      .hamburger.open span:nth-of-type(1) {
      }
      .hamburger.open span:nth-of-type(2) {
      .hamburger.open span:nth-of-type(3) {
      }
    }
  }
}
}


.footer{
  background: url(../../img/bg_dark.png) repeat;
  padding: 126px 0 99px;
  .footer_inner{
    .footer_inner-Ttl{
      margin: 0 0 60px 0;
      display: block;
      width: 124px;
    }
    .tableBox{
      table{
        width: 100%;
        tr{
          border-bottom: 1px solid #fff;
          padding: 15px 0;
          display: flex;
          align-items: center;
          th{
            width: 20%;
            font-size: 14px;
            color: #fff;
            font-weight: 400;
          }
          td{
            width: 80%;
            font-size: 14px;
            color: #fff;
            font-weight: 400;
          }
        }
      }
    }
  }
}
@media (width >= 769px) {  
.footer{
  padding: 150px 0 292px;
  .footer_inner{
    max-width: 1047px;
    margin: 0 auto;
    .footer_inner-Ttl{
      width: 200px;
    }
    .tableBox{
      table{
        width: 100%;
        tr{
          padding: 20px 0;
          th{
            font-size: 20px;
          }
          td{
            font-size: 20px;
          }
        }
      }
    }
  }
}
}