@charset "utf-8";
.l_header{
  display: flex;
  align-items: center;
  width: 100%;
  height: 101px;
  padding: 0 20px;
  background-color: rgba(255, 255, 255, 0.8);
}
.l_header__inner{
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
.l_header-logo__image{
  width: 160px;
  height: auto;
}
@media screen and (max-width:1024px){
  .l_header{
    height: 70px;
  }
  .l_header__inner{
    width: 100%;
  }
}
@media screen and (max-width:430px){
  .l_header{
    padding-left: 12px;
  }
  .l_header-logo__image{
    width: 120px;
  }
}