@charset "utf-8";

.suspende-appeal-form-wrap {
    width: 90vw;
    border: 1px solid black;
    border-radius: 10px;
    padding: 20px;
    margin: 50px auto 80px;
    background-color: rgb(238, 241, 246);
}

h2 {
    text-align: center;
    margin: 20px auto;
    font-weight: 600;
    border: 1px solid black;
    border-radius: 10px;
    padding: 20px;
    background-color: white;
}

.field-label:not(.no-line)::before {
    content: "";
    /* 擬似要素を表示 */
    display: inline-block;
    width: 10px;
    /* 縦線の太さ */
    height: 1.2em;
    /* 縦線の高さ */
    background-color: #db4141;
    margin-right: 7px;
    /* ラベルと縦線の間の余白 */
}

.field-label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 600;
}

.suspended-appeal-field {
    margin: 20px auto;
    display: flex;
    flex-direction: column;
}

.suspended-appeal-field input:not(.radio) {
    width: 100%;
    height: 50px;
    padding: 3px;
}

.radio {
    margin-right: 10px;
}

.radio label {
    font-weight: 600;
}

.suspende-appeal-form-wrap input.radio {
    width: 21px;
    height: 21px;
}

.radio-group-wrap label {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.suspended-appeal-btn-wrap {
    display: flex;
    justify-content: center;
    margin: 50px auto 30px;
    gap: 1rem;
}

textarea {
    padding: 10px;
}

.back-link {
    width: 45%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    border-radius: 10px;
    text-decoration: none;
    background-color: rgb(236, 231, 231);
}

.suspended-appeal-btn {
    width: 45%;
    height: 60px;
    border-radius: 10px;
    border: none;
    background-color: #0d6efd;
    color: white;
}

@media(min-width:768px) {
    .suspende-appeal-form-wrap {
        width: 55vw;
        padding: 40px;
    }

    .suspended-appeal-btn-wrap {
        gap: 1.5rem;
    }
}