.product-brand-header {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 20px 20px;
  background: var(--color-cream);
}

.product-brand-header__inner {
  display: grid;
  justify-items: center;
  gap: 6px;
  width: min(197px, 100%);
  text-align: center;
}

.product-brand-header__copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4.5px 12px;
  border-radius: 20.25px;
  color: var(--color-gray-600);
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.product-brand-header__mark {
  position: relative;
  width: min(175.5px, 100%);
  aspect-ratio: 175.5 / 60.75;
}

.product-brand-header__mark-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 62.02%;
  object-fit: contain;
}

.product-brand-header__mark-bottom {
  position: absolute;
  bottom: 0;
  left: 22.29%;
  width: 57.45%;
  height: 19.71%;
  object-fit: contain;
}

@media (max-width: 720px) {
  .product-brand-header {
    padding: 16px;
  }

  .product-brand-header__inner {
    gap: 5px;
    width: min(175.5px, 100%);
  }

  .product-brand-header__copy {
    padding-inline: 10px;
    font-size: 11px;
    letter-spacing: 1.2px;
  }
}
