.matenro-button {
  margin: 0 auto;
  width: 100%;
  max-width: 350px;
  height: max-content;
  & .button {
    background: none;
    padding: 0;
  }
  & .matenro-button__inner {
    width: 100%;
    color: rgb(var(--color-white));
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 1.3em 1.3em;
    text-transform: uppercase;
    background: rgb(var(--color-black));
    border-radius: 7.75em;
    display: flex;
    flex-direction: column;
    & .matenro-button__text {
      height: 1.2em;
      display: flex;
      flex-direction: column;
      align-items: center;
      overflow: hidden;
      font-weight: 700;
      & > span {
        display: block;
        & div {
          padding-bottom: 1em;
        }
      }
    }
    & img {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      display: block;
      width: 1.2em;
      height: auto;
      right: 1.4em;
    }
    &.product-form__submit {
      background: rgb(var(--color-red));
      &[disabled] {
        background: rgb(var(--color-black));
        pointer-events: none;
        & img {
          display: none;
        }
      }
    }
  }
  @media screen and (min-width: 750px) {
    &.pc-small {
      max-width: max-content;
      min-width: max-content;
      & .matenro-button__inner {
        padding: 1.3em 3.5em 1.3em 1.8em;
      }
    }
  }
  @media screen and (min-width: 1200px) {
    max-width: 24vw;
    & .matenro-button__inner {
      font-size: calc(1.2vw + 0.5rem);
      padding: 1.3em 1.3em;
    }
  }
  &.is-left {
    margin: 0;
  }
}
