form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    color: #1C1C1C;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
}

input {
    width: 100%;
    padding: 7px 12px;
    border-radius: 4px;
    border: 1px solid var(--Components-Forms-Input-border, #CED4DA);
    background: var(--global-09-white, #FFF);
}

input[type="checkbox"] {
    width: 15px;
    height: 15px;
}

input[disabled] {
    background-color: #f2f2f2; 
    color: #ccc;
}

a {
    color: #3986EE;
}

.co_flex-5 {
    flex: 6%;
}

.co_flex-95 {
    flex: 94%;
    width: 100%;
}

.co_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 16px;
}

.co_heading-group {
    text-align: center;
    margin-top: 60px;
}

.co_img-logo {
    width: 240px;
    height: 96px;
}

.co_heading {
    color: #064CAA;
    font-family: "Noto Sans JP";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 85.714% */
}

.co_page-title {
    font-size: 28px;
    text-align: center;
    color: #196EE2;
    font-weight: 700;
}

.co_form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.co_form-group-lable {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.co_lable {
    padding: 5px;
    border-radius: 4px;
    font-family: "Noto Sans JP";
    /* background: #F82626; */
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px;
    color: #FFF;
}

.co_lable.co_lable--warning {
    background: #F82626;
}

.co_lable.co_lable--default {
    background: #C1C1C1;
}

.co_form-group-input {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

.co_form {
    display: flex;
    width: 600px;
    margin: 40px auto;
    padding: 57px 80px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    border-radius: 16px;
    background: #F3F6FC;
}

.co_form-group-recapcha {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.g-recaptcha {
    margin: 0 auto;
}

.co_form-group-term {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    margin: 0 40px;
}


.co_submit {
    display: inline-flex;
    padding: 16px 80px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 2px solid #196EE2;
    background: #196EE2;
    margin: 46px 0 88px 0;
    cursor: pointer;
    color: #FFF;
    font-family: "Noto Sans JP";
    pointer-events: auto;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
}

.co_submit.co_submit--disabled {
    pointer-events: none;
    opacity: 0.5;
}

@media screen and (max-width: 768px) {
    .co_form {
        width: 350px;
        padding: 57px 20px;
        gap: 30px;
    }
    input[type="checkbox"] {
        width: 13px;
    }
}