.tcqr-question-wrap {
    text-align: center;
    margin: 30px 0;
}

.tcqr-question-index {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.tcqr-question {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.tcqr-choices {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.tcqr-choice {
    width: 260px;        /* ← 横幅アップ */
    height: 200px;       /* ← 縦幅アップ */
    border-radius: 24px; /* ← 角丸四角（好みで調整） */
    background-size: cover;
    background-position: center;
    border: none;
    cursor: pointer;
    padding: 0;
    outline: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}


.tcqr-choice:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

.tcqr-choice-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.4rem;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

/* スマホで少し小さく */
@media (max-width: 480px) {
    .tcqr-choice {
        width: 150px;
        height: 120px;
        border-radius: 20px; /* 同じように調整 */
    }
}
