@charset "UTF-8";
/*
  /asset/css/layout/l-header-simple.css
  ヘッダー（シンプル）用CSS
*/

.l-header-simple {
  width: 100%;
  /* position: fixed;
  top: 0; */
  z-index: var(--z-index-front);
  background-color: var(--white);
  transition: 100ms ease all;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
  @media screen and (max-width: 840px) {
    padding: 0 11px;
    z-index: var(--z-index-humberger);
  }
}
.l-header-simple__inner {
  width: 95%;
  height: 82px;
  max-width: 1200px;
  margin: 0px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  @media screen and (max-width: 1024px) {
    max-width: 100%;
    width: 1024px;
    padding: 0 20px 0;
    align-items: center;
  }
  @media screen and (max-width: 840px) {
    width: 100%;
    height: 50px;
    padding: 0;
  }
}
.l-header-simple__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header-simple-sub {
  background-color: var(--rcloud-primary);
  color: var(--white);
  height: 23px;
  padding: 2px 0 0;
  @media screen and (max-width: 840px) {
    display: none;
  }
}
.l-header-simple-logo {
  display: flex;
  align-items: center;
}
.l-header-simple-logo__link {
  padding: 20px 0;
  @media screen and (max-width: 1024px) {
    padding: 12px 0;
  }
}
.l-header-simple-logo__image {
  width: 190px;
  @media screen and (max-width: 840px) {
    width: 125px;
  }
}
.l-header-simple-rakuslogo {
  width: 40px;
  box-sizing: border-box;
  margin: 0 0 0 30px;
  @media screen and (max-width: 1200px) {
    width: 30px;
    margin: 0 0 0 20px;
  }
}
.l-header-simple + .l-common-main{
  padding-top: 0;
}