/*
  /asset/css/layout/l-header-simple.css
  ヘッダーシンプル
*/

.l-header-simple {
  width: 100%;
  position: relative;
  top: 0;
  z-index: var(--z-index-front);
  background-color: var(--white);
  transition: 100ms ease all;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  @media screen and (max-width: 840px) {
  }
}
.l-header-simple__inner {
  position: relative;
  width: 100%;
  margin: 0px auto;
  max-width: 1240px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  @media screen and (max-width: 840px) {
    padding: 0 11px;
    width: 100%;
    height: 55px;
  }
}
.l-header-simple-logo {
  width: 200px;
  padding: 23px 0;
  @media screen and (max-width: 840px) {
    width: 136px;
    padding: 0;
  }
}
.l-header-simple-tagline {
  display: block;
  font-size: 14px;
  color: var(--brack);
  font-weight: 700;
  padding: 0 0 0 22px;
  @media screen and (max-width: 840px) {
    font-size: 10px;
    padding: 0 0 0 12px;
  }
}
