.header-with-button {
  position: static;
  background: var(--Surface-Container-Brand);
  box-shadow: none;
  height: 64px;
}
@media (min-width: 768px) {
  .header-with-button {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    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-with-button.header-with-button--sp-white {
  background: var(--Surface-Container-White);
}

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

.header-with-button__logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.header-with-button__logo img {
  width: 113px;
}

@media (min-width: 768px) {
  .header-with-button__logo img {
    width: 190px;
  }
}

.header-with-button__button.button {
  max-width: 208px;
  padding: 0 16px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .header-with-button__button.button {
    max-width: 221px;
  }
}

.header-with-button__button span {
  display: inline-block;
  line-height: 1;
}
