.consent-preview-wrapper {
    padding: 20px;
}

.consent-screen {
    max-width: 800px;
    margin: 0 auto;
}

.consent-background {
    background-color: #e8e8e8;
    background-image: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.3) 10px,
            rgba(255, 255, 255, 0.3) 20px);
    padding: 30px 20px;
    border-radius: 4px;
}

.consent-title {
    text-align: center;
    font-size: 42px; /* 28px → 1.5倍 */
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.consent-title-red {
    color: #db2828;
}

.consent-title-black {
    color: #1b1c1d;
}

.consent-content-box {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 720px; /* 文字拡大に合わせて増やす */
}

.consent-content-header {
    background: #4a4a4a;
    color: #fff;
    padding: 12px 18px;
    font-size: 21px; /* 14px → 1.5倍 */
    font-weight: bold;
    flex-shrink: 0;
}

.consent-content-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 18px 20px;
    font-size: 24px; /* 13px → 1.5倍 */
    line-height: 1.8;
    color: #333;
}

.consent-content-footer {
    background: #f0f0f0;
    padding: 9px 18px;
    font-size: 18px; /* 12px → 1.5倍 */
    font-weight: bold;
    color: #555;
    border-top: 1px solid #ddd;
    flex-shrink: 0;
}

.consent-checkbox-area {
    text-align: center;
    margin: 20px 0 16px;
}

.consent-checkbox-label {
    font-size: 21px; /* 14px → 1.5倍 */
    color: #333;
    cursor: pointer;
    line-height: 1.6;
}

.consent-checkbox-label input[type="checkbox"] {
    margin-right: 6px;
    vertical-align: middle;
    transform: scale(1.3);
}

.consent-button-area {
    text-align: center;
}

.consent-cta-button {
    background-color: #21ba45;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 16px 56px;
    font-size: 24px; /* 16px → 1.5倍 */
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 1px;
    transition: opacity 0.2s;
}

.consent-cta-button:hover:not(:disabled) {
    opacity: 0.9;
}

.consent-cta-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* タブレット以下 */
@media (max-width: 64rem) { /* 1024px */
    .consent-content-box {
        height: 520px;
    }
}