html:has(.amsm-modal-background),
body:has(.amsm-modal-background) {
    overflow: hidden;
    overscroll-behavior: none;
}

.amsm-modal-background {
    position: fixed;
    inset: 0;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.38);
    z-index: calc(infinity);
    overflow: hidden;
    touch-action: none;
}

.amsm-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(343px, 100vw - 32px);
    background-color: #fff;
    border-radius: 8px;
    padding: 32px;
    box-sizing: border-box;
    font: "Noto Sans JP", sans-serif;
    line-height: 1.57;
    touch-action: auto;
}

.amsm-modal-content div {
    margin-bottom: 16px;
}

.amsm-modal-header p {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.amsm-modal-body p {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.amsm-modal-button {
    display: block;
    width: 149px;
    height: 32px;
    border-radius: 16px;
    background-color: #00754A;
    color: #fff;
    text-align: center;
    line-height: 32px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    margin: 24px 0 0 auto;
}