.modal-wrapper-top-limited-error {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.3s;
    cursor: pointer;
  }
  .modal-wrapper-top-limited-error .modal-top-limited-error {
    width: 280px;
    position: fixed;
    z-index: 1000;
    top: 50vh;
    left: 50vw;
    background: #fff;
    border-radius: 8px;
    transform: translate(calc(-50% - 4px), calc(-50% - 4px)) scale(0);
    cursor: default;
  }
  .modal-wrapper-top-limited-error .modal-close {
    position: absolute;
    top: -24px;
    right: -24px;
    z-index: 10000;
    width: 48px;
    height: 48px;
    background: #000;
    border-radius: 24px;
    cursor: pointer;
  }
  .modal-wrapper-top-limited-error .modal-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 32px;
    height: 4px;
    background: #fff;
    border-radius: 2px;
  }
  .modal-wrapper-top-limited-error .modal-close span:last-of-type {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .modal-wrapper-top-limited-error .modal-contents {
    padding: 16px;
  }
  .modal-wrapper-top-limited-error .modal-contents .title {
    color: rgba(0, 0, 0, 0.8);
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin: 8px 0 0;
  }
  .modal-wrapper-top-limited-error .modal-contents .step-list {
    margin: 16px 0 0;
  }
  .modal-wrapper-top-limited-error .modal-contents .step-list-title {
    position: relative;
    display: inline-block;
    font-size: 2rem;
    font-weight: bold;
    padding: 0 4px;
  }
  .modal-wrapper-top-limited-error .modal-contents .step-list-title::before {
    content: url(../images/cable.svg);
    background: #000;
    padding: 2px 4px;
    border-radius: 12px;
    margin: 0 12px 0 0;
  }
  .modal-wrapper-top-limited-error .modal-contents .step-list-title:nth-of-type(2)::before {
    content: url(../images/credit_card.svg);
  }
  .modal-wrapper-top-limited-error .modal-contents .step-list-title:last-of-type(3)::before {
    content: url(../images/phone_android.svg);
  }
  .modal-wrapper-top-limited-error .modal-contents .step-list-title::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    z-index: -1;
    display: block;
    content: "";
    width: 88px;
    height: 8px;
    background: #ffdb32;
  }
  .modal-wrapper-top-limited-error .modal-contents .step-list-title:not(:first-of-type) {
    margin: 16px 0 0;
  }
  .modal-wrapper-top-limited-error .modal-contents .step-list-description {
    font-size: 1.6rem;
    margin: 4px 0 0;
  }
  .modal-wrapper-top-limited-error .modal-contents .top-limited-error-description {
    font-size: 1.8rem;
    margin: 0px 0px 16px;
    color: rgba(0, 0, 0, 0.8);
  }
  .modal-wrapper-top-limited-error .modal-contents .top-limited-error-supplement {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: rgba(0, 0, 0, 0.6);
  }
  .modal-wrapper-top-limited-error .modal-top-limited-error-is-shown {
    transform: translate(calc(-50% - 4px), calc(-50% - 4px)) scale(1) !important;
  }
  
  .modal-wrapper-top-limited-error-is-shown {
    z-index: 100;
    opacity: 1;
  }
  
  @media screen and (min-width: 600px) {
    .landscape {
      display: none;
    }
    .modal-wrapper-top-limited-error .modal-wrapper-top-limited-error {
      width: 367px;
    }
  }
  @media screen and (min-width: 960px) {
    .sp-only {
      display: none;
    }
    .mainvisual .wrapper {
      max-width: 100%;
      text-align: center;
    }
    .container {
      margin: 0 0 40px;
    }
    .container .wrapper {
      max-width: 800px;
    }
    .container .wrapper .card-list {
      grid-template-columns: 2fr 2fr;
    }
  }

  .modal-wrapper-top-limited-error .modal-contents .modal-top-limited-error-wrapper .modal-button-wrapper li button {
    display: block;
    width: 100%;
    height: 48px;
    border-radius: 4px;
}

  .modal-wrapper-top-limited-error .modal-contents .modal-top-limited-error-wrapper .modal-button-wrapper li button.cancellation {
    background: #FF9933;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    border: none;
}

.modal-wrapper-top-limited-error .modal-contents .modal-top-limited-error-wrapper .modal-button-wrapper li button.top-limited-error-modal-close {
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: #fff;
    font-size: 1.4rem;
    color: rgba(0, 0, 0, 0.6);
}

.modal-wrapper-top-limited-error .modal-contents .modal-top-limited-error-wrapper .modal-button-wrapper {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.modal-wrapper-top-limited-error .modal-contents .modal-top-limited-error-wrapper {
    padding: 16px 8px 8px;
}

.modal-wrapper-top-limited-error .modal-contents .modal-top-limited-error-wrapper .modal-button-wrapper li {
    width: 100%;
    list-style: none;
}