@charset "utf-8";

h2 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
}

h3 {
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 1px solid black;
    padding-bottom: 5px;
}

.support-wrap ul {
    padding-left: 0;
}

.support-wrap li {
    list-style-type: none;
}

.support-wrap a {
    color: #0000EE;
    text-decoration: none;
    font-size: 1rem;
}

.support-wrap {
    margin: 60px auto;
}

.customer-support-wrap {
    width: 90vw;
    margin: 30px auto;
}

.customer-support-form {
    border: 1px solid black;
    border-radius: 10px;
    padding: 20px;
    background-color: rgba(250, 232, 186, 0.25);
    margin-bottom: 60px;
}

.support-field {
    margin: 15px auto;
    display: flex;
    flex-direction: column;
}

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

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

#id_category {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#id_email {
    width: 100%;
    height: 50px;
    padding: 3px;
}

#id_category input.radio {
    width: 21px;
    height: 21px;
    margin-right: 10px;
}

#id_category label {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.message-label {
    margin-bottom: 5px;
}

.message-help {
    margin-bottom: 10px;
}

textarea {
    padding: 10px;
}

.support-btn-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto 20px;
}

.support-btn-wrap>button {
    width: 50%;
    height: 60px;
    border: none;
    border-radius: 10px;
    background-color: #0d6efd;
    color: white;
}

@media(min-width:768px) {
    .customer-support-wrap {
        width: 55vw;
    }

    .customer-support-form {
        padding: 40px;
    }
}