.confirm-box {
    width: 92%;
    max-width: 480px;
    background: rgb(255 255 255 / 95%);
    backdrop-filter: blur(6px);
    border: 2px solid rgba(255, 170, 200, 0.3);
    margin: 60px auto;
    padding: 24px 18px;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(255, 120, 160, 0.25);
    text-align: center;
}

.confirm-box h1 {
    font-size: 20px;
    color: #ff6fa5;
    margin-bottom: 12px;
    font-weight: bold;
}

/* ✅ 改行が不自然にならないように */
.confirm-box p {
    color: #555;
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.6;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
}

/* ✅ チェックボックス周り */
.confirm-box label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 15px;
    gap: 10px;
    margin: 12px auto;
    color: #444;
    width: 90%;
    /* ✅ 全て同じ幅で揃える */
    max-width: 300px;
    /* ✅ デザインが崩れない範囲に制限 */
}

.confirm-box input[type="checkbox"] {
    flex-shrink: 0;
    /* ✅ チェックボックスが潰れない */
}

/* ✅ チェックボックスのスタイル */
.confirm-box input[type="checkbox"] {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #ff8fb9;
    border-radius: 6px;
    cursor: pointer;
    background: #fff;
    transition: 0.2s ease;
    outline: none;
    /* ✅ 青い枠を消す */
    position: relative;
}

/* ✅ チェック時の背景 */
.confirm-box input[type="checkbox"]:checked {
    background: #ff7aa9;
    border-color: #ff7aa9;
    box-shadow: 0 0 6px rgba(255, 120, 160, 0.4);
}

/* ✅ Font Awesomeを使用したチェックアイコン */
.confirm-box input[type="checkbox"]:checked::after {
    content: "\f00c";
    /* Font Awesome チェックアイコン */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    position: absolute;
    font-size: 14px;
    top: 2px;
    left: 4px;
}

/* ✅ ふんわりボタン */
.btn-start {
    margin-top: 20px;
    padding: 14px 24px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #ff7aa9, #ff97c0);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(255, 120, 160, 0.3);
}

.btn-start:hover:not(:disabled) {
    background: linear-gradient(135deg, #ff5e9c, #ff8fb9);
    transform: translateY(-2px);
}

.btn-start:disabled {
    background: #ccc;
    box-shadow: none;
    cursor: not-allowed;
}