@charset "UTF-8";
/* CSS Document */


/*tablet*/
@media screen and (max-width: 1024px) and (orientation: portrait){
  
}
/*smartphon*/
@media screen and (max-width: 768px) {
  
/*header/nav  
===============================================================*/
  #hum-btn{
    width: 50px;
    height: 50px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    display: block;
  }
  #hum-btn button{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  display: block;
    background: #000;
    width: 32px;
    height: 2px;
    padding: 0;
    margin: 0;
    border: none;
    box-sizing: border-box;
  }
  #hum-btn button::before
  ,#hum-btn button::after{
    content: "";
    position: absolute;
    left: 0;
    display: block;
    width: 32px;
    height: 2px;
    background: #000;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
  }
  #hum-btn button::before{
    top: -10px;
  }
  #hum-btn button::after{
    top: 10px;
  }
  #hum-btn.open button{
    height: 0;
  }
  #hum-btn.open button::before{
    top: 0;
    transform: rotate(45deg);
  }
  #hum-btn.open button::after{
    top: 0;
    transform: rotate(-45deg);
  }
  
  
  .screen-reader-text {
    clip: rect(1px,1px,1px,1px);
    position: absolute!important;
    height: 1px;
    width: 1px;
    overflow: hidden;
  }
  #l-nav{
    width: 75vw;
    height: 100vh;
    position: fixed;
    right: -100%;
    top: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 15;
    background: rgba(255,255,255,1);
    display: block;
  }
  #l-nav.slide{
    right: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
  }
  #l-nav #g-nav{
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
  .l-nav_bg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.75);
    -webkit-transition: all .3s;
    -o-transition:  all .3s;
    transition:  all .3s;
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    visibility: hidden;
    opacity: 0;
  }
  .l-nav_bg.openbk{
    z-index: 10;
    visibility: visible;
    opacity: 1;
  }
  
  header .g-nav{
    display: none;
  }
  
}