.header {
  position: static;
  background: var(--Surface-Container-Brand);
  box-shadow: none;
  height: 56px;
}
@media (min-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 64px;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--Stroke-Divider);
    background: var(--Surface-Container-White);
  }
}

.header.header--sp-white {
  background-color: var(--Surface-Container-White);
}

.header__inner {
  display: flex;
  justify-content: center;
  height: 100%;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .header__inner {
    justify-content: space-between;
    width: 100%;
    max-width: 980px;
    margin-inline: auto;
    padding: 0 24px;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  height: 100%;

}
.header__logo img {
  width: 190px;
}
