/* ログインページ login.php ----------------------------------------------- */
.login_wrapper {
	max-width: 742px;
	width: 100%;
	margin: 0 auto;
    padding: 100px 0;
    box-sizing: border-box;
}
.login_label {
    font-size: 2rem;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 22px;
}
.login_input {
    max-width: 742px;
    width: 100%;
    height: 60px;
    border-radius: 5px;
    border: solid 1px #C2C2C2;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1);
    padding-left: 25px;
    box-sizing: border-box;
    margin-bottom: 35px;
    font-size: 1.6rem;
    font-weight: 500;
}
.login_input::placeholder {
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.2px;
    color: #C2C2C2;
}
.login_btn {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.3px;
    width: 168px;
    height: 53px;
    line-height: 53px;
    text-align: center;
    color: #AA8320;
    border: solid 1px #AA8320;
    margin: 15px auto 30px;
}
.login_btn:hover {
    background: #AA8320;
    color: white;
    cursor: pointer;
}
.login_link,
.login_note {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 28px;
    opacity: 0.5;
}
.login_link {
    text-decoration: underline;
}
/* add css [href] ---------- */
.login_link[href] {
    text-decoration: underline;
}
/* add css [href] ---------- */
.login_link:hover {
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .login_wrapper {
        max-width: initial;
        padding: 50px 20px;
    }
    .login_label {
        font-size: 1.6rem;
        margin-bottom: 3px;
    }
    .login_input {
        max-width: initial;
        height: 47px;
        margin-bottom: 30px;
    }
    .login_input::placeholder {
        font-size: 1.2rem;
    }
    .login_btn {
        font-size: 1.6rem;
        letter-spacing: 1.2px;
        max-width: 335px;
        width: 100%;
        height: 45px;
        line-height: 45px;
        margin: 0 auto 20px;
    }
    .login_link,
    .login_note {
        font-size: 1.4rem;
    }
    .login_link {
        margin-bottom: 15px;
    }
    .login_link:hover {
        text-decoration: underline;
        cursor: pointer;
    }
    .login_note {
        line-height: 25px;
    }
}

/* 本人確認ページ verification_2a1.php ----------------------------------- */
.verification_wrapper {
	max-width: 742px;
	width: 100%;
	margin: 0 auto;
    padding: 100px 0 50px;
    box-sizing: border-box;
}
.verification_label {
    font-size: 2rem;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 22px;
    text-align: left;
}
.verification_input {
    max-width: 742px;
    width: 100%;
    height: 60px;
    border-radius: 5px;
    border: solid 1px #C2C2C2;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1);
    padding-left: 25px;
    box-sizing: border-box;
    text-align: left;
    font-size: 1.6rem;
    font-weight: 500;
}
.verification_input::placeholder {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #C2C2C2;
}
.verification_btn_wrapper {
    text-align: center;
}
.verification_btn {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.3px;
    height: 53px;
    line-height: 53px;
    text-align: center;
    color: #AA8320;
    border: solid 1px #AA8320;
    margin: 50px auto;
    padding: 0 48px;
    box-sizing: border-box;
}
.verification_btn:hover {
    background: #AA8320;
    color: white;
    cursor: pointer;
}
.verification_text {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 28px;
}

@media (max-width: 768px) {
    .verification_wrapper {
        max-width: 335px;
        width: 100%;
        padding: 50px 0 10px;
        box-sizing: border-box;
    }
    .verification_label {
        font-size: 1.6rem;
        margin-bottom: 3px;
    }
    .verification_input {
        max-width: 335px;
        width: 100%;
        height: 45px;
    }
    .verification_btn {
        display: inline-block;
        font-size: 1.6rem;
        font-weight: bold;
        letter-spacing: 1.2px;
        width: 100%;
        height: 45px;
        line-height: 45px;
        margin: 30px auto 50px;
        padding: 0;
    }
    .verification_text {
        font-size: 1.4rem;
    }
    /* add for error message */
    .verification_wrapper .error_label {
    	width: 100%;
    }
}

/* 本人確認完了ページ verification_2a2.php ----------------------------------- */
.verification_complete {
    text-align: center;
    padding: 100px 0;
    box-sizing: border-box;
}
.verification_complete .vc_text {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 0.3px;
    line-height: 28px;
    margin-bottom: 50px;
}
.verification_complete .vc_btn_wrapper {
    text-align: center;
}
.verification_complete .vc_btn {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.3px;
    height: 53px;
    line-height: 53px;
    text-align: center;
    color: #AA8320;
    border: solid 1px #AA8320;
    margin: 0 auto;
    padding: 0 55px;
    box-sizing: border-box;
}
.verification_complete .vc_btn:hover {
    background: #AA8320;
    color: white;
    cursor: pointer;
}
@media (max-width: 768px) {
    .verification_complete {
        padding: 60px 0;
    }
    .verification_complete .vc_text {
        font-size: 2rem;
        letter-spacing: 0;
        margin: 0 auto 36px;
    }
    .verification_complete .vc_btn_wrapper {
        text-align: center;
    }
    .verification_complete .vc_btn {
        display: inline-block;
        font-size: 1.6rem;
        letter-spacing: 1.2px;
        max-width: 335px;
        width: 100%;
        height: 45px;
        line-height: 45px;
        padding: 0;
    }
}

/* 年１回の本人確認期間中の注意喚起画面 verification_2b.php ----------------------------------- */
.verification2_wrapper {
	max-width: 742px;
	width: 100%;
	margin: 0 auto;
/*     padding: 60px 0;
 */ padding: 100px 0;
    box-sizing: border-box;
}
.verification2_wrapper2 {
	max-width: 575px;
	width: 100%;
	margin: 0 auto;
    padding: 60px 0;
    box-sizing: border-box;
}
.verification_login_btn {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.3px;
    height: 53px;
    line-height: 53px;
    text-align: center;
    background: #AA8320;
    color: white;
    border: solid 1px #AA8320;
    margin: 50px auto;
    padding: 0 48px;
    box-sizing: border-box;
}
.verification_login_btn:hover {
    background: white;
    color: #AA8320;
    cursor: pointer;
}
@media (max-width: 768px) {
    .verification2_wrapper {
        width: 100%;
        padding: 50px 0 10px;
        box-sizing: border-box;
    }
    .verification2_wrapper2,
    .verification2_wrapper3 {
        max-width: 335px;
        width: 100%;
        padding: 50px 0 10px;
        box-sizing: border-box;
    }
    .verification_login_btn {
        display: inline-block;
        font-size: 1.6rem;
        font-weight: bold;
        letter-spacing: 1.2px;
        width: 100%;
        height: 45px;
        line-height: 45px;
        margin: 30px auto 50px;
        padding: 0;
    }
}

/* 本人確認期限切れ画面 verification_2c1.php ----------------------------------- */
.verification2_wrapper3 {
	max-width: 575px;
	width: 100%;
	margin: 0 auto;
    /* padding: 60px 0; */
    padding: 60px 20px;
    box-sizing: border-box;
    text-align: left;
}
.verification2_text {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 28px;
}
.verification2_link {
    color: #AA8320!important;
    text-decoration: underline!important;
}
.verification2_link:hover {
    opacity: 0.5;
    cursor: pointer;
}
@media (max-width: 768px) {
    .verification2_wrapper3 {
        max-width: 335px;
        width: 100%;
        padding: 50px 0;
        box-sizing: border-box;
        text-align: left;
    }
    .verification2_text {
        font-size: 1.4rem;
    }
}

/* 本人確認再送信画面 verification_2c2.php ----------------------------------- */
.vc_text ,
.vc_text2 {
	font-size: 2rem;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 50px;
}
.vc_form_row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.vc_form_row .vc_label {
    font-size: 2rem;
    font-weight: 400;
    line-height: 28px;
    margin-right: 20px;
}
.password_wrapper {
    position: relative;
    max-width: 500px;
    width: 100%;
}
.password_toggle {
    position: absolute;
    right: 19.7px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
}
.vc_input {
    max-width: 500px;
    width: 100%;
    height: 60px;
    border-radius: 5px;
    border: solid 1px #C2C2C2;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1);
    padding-left: 27px;
    box-sizing: border-box;
    font-size: 1.6rem;
}
.vc_input::placeholder {
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.2px;
    color: #C2C2C2;
}
.password_toggle img {
    width: 33.8px;
}
.verification2_wrapper .vc_btn,
.verification2_wrapper2 .vc_btn {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.3px;
    height: 53px;
    line-height: 53px;
    text-align: center;
    background: white;
    color: #AA8320;
    border: solid 1px #AA8320;
    margin: 50px auto;
    padding: 0 48px;
    box-sizing: border-box;
}
.verification2_wrapper .vc_btn:hover,
.verification2_wrapper2 .vc_btn:hover {
    background: #AA8320;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    .vc_text {
        max-width: 335px;
        width: 100%;
        font-size: 1.8rem;
        line-height: 26px;
        margin-bottom: 30px;
    }
    .vc_text2 {
        max-width: 335px;
        width: 100%;
        font-size: 1.8rem;
        line-height: 26px;
        margin: 0 auto 30px;
    }

    .vc_form_row {
        display: block;
        max-width: 335px;
        width: 100%;
        margin: 0 auto 30px;
    }
    .vc_form_row .vc_label {
        max-width: initial;
        font-size: 1.6rem;
        margin-bottom: 3px;
    }
    .password_wrapper {
        position: relative;
        max-width: 335px;
        width: 100%;
    }
    .password_toggle {
        right: 11.7px;
    }
    .vc_input {
        max-width: 335px;
        width: 100%;
        height: 47px;
        padding-left: 25px;
        font-size: 1.2rem;
    }
    .vc_input::placeholder {
        font-size: 1.2rem;
    }
    .password_toggle img {
        width: 22.79px;
    }
    .verification2_wrapper .vc_btn,
    .verification2_wrapper2 .vc_btn {
        display: inline-block;
        font-size: 1.6rem;
        font-weight: bold;
        letter-spacing: 1.2px;
        width: 100%;
        max-width: 335px;
		height: 45px;
        line-height: 45px;
        margin: 30px auto 50px;
        padding: 0;
    }
}

/* 本人確認再送信確認画面 verification_2c3.php ---------------------------------*/
.vc2_wrapper {
    max-width: 742px;
    width: 100%;
    margin: 0 auto;
    padding: 45px 0 100px;
    box-sizing: border-box;
}
.vc2_intro {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 35px;
    margin-bottom: 30px;
}
.confirm_row {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 570px;
    width: 100%;
    height: 42px;
    margin: 0 auto;
    border-top: 1px solid #C2C2C2;
}
.confirm_row:last-child {
    border-bottom: 1px solid #C2C2C2;
}
.confirm_label {
    max-width: 170px;
    width: 100%;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 42px;
    background: #F2F2EF;
    text-align: center;
}
.confirm_value {
    max-width: 400px;
    width: 100%;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 42px;
    padding-left: 20px;
    box-sizing: border-box;
}
.vc2_btn_wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px auto 0;
}
.vc2_vc_btn {
    display: flex;
    background-color: #fff;
    border: 1px solid #AA8320;
    font-size: 18px;
    font-weight: 600;
    color: #AA8320;
    padding: 15px 0;
    text-align: center;
    align-items: center;
    justify-content: center;
    max-width: 155px;
    width: 100%;
}
.vc2_back_btn {
    display: flex;
    background-color: #F2F2F2;
    border: 1px solid #6A6A6A;
    font-size: 18px;
    font-weight: 600;
    color: #8E8E8E;
    padding: 15px 0;
    text-align: center;
    align-items: center;
    justify-content: center;
    max-width: 155px;
    width: 100%;
}
.vc2_vc_btn:hover {
    background-color: #AA8320;
    color: #fff;
    cursor: pointer;
}
.vc2_back_btn:hover {
    background-color: #D3D3D3;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .vc2_wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 768px) {
    .vc2_wrapper {
        max-width: initial;
        padding: 33px 20px 60px;
    }
    .vc2_intro {
        max-width: 335px;
        width: 100%;
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 28px;
        margin: 0 auto 30px;
    }
    .confirm_row {
        max-width: 335px;
    }
    .confirm_label {
        max-width: 110px;
        font-size: 1.3rem;
    }
    .confirm_value {
        max-width: 225px;
        font-size: 1.4rem;
        padding-left: 15px;
    }
    .confirm_row:last-child {
        border-bottom: 1px solid #C2C2C2;
    }
    .vc2_btn_wrapper {
        justify-content: center;
        gap: 20px;
        margin: 40px auto 0;
        position: relative;
    }
    .vc2_vc_btn {
        height: 45px;
        font-size: 1.4rem;
        padding: 0;
    }
    .vc2_back_btn {
        height: 45px;
        font-size: 1.4rem;
        padding: 0;
    }
}

/* 本人確認再送信完了画面 verification_2c4.php ---------------------------------*/
.vc2_last_wrapper {
    max-width: 742px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 0 100px;
    box-sizing: border-box;
}
.vc2_last_text {
    font-size: 2rem;
    font-weight: 500;
    line-height: 35px;
    text-align: center;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .vc2_last_wrapper {
        max-width: 335px;
        /* padding: 100px 0 100px; */
    }
    .vc2_last_text {
        max-width: 335px;
        width: 100%;
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 28px;
        text-align: left;
    }
}

/* 文書確認画面 verification_2d1.php ---------------------------------*/
.unconfirmed_wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 0 100px;
    box-sizing: border-box;
}
.uc_intro {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 35px;
    margin-bottom: 20px;
    color: red;
}
.unconfirmed_wrapper table {
    border-collapse: collapse; /* 枠線を重ねてスッキリ */
    width: 100%;
    max-width: 1200px;
}
.unconfirmed_wrapper th,
.unconfirmed_wrapper td {
    border-top: 1px solid #C2C2C2;   /* 上の線 */
    border-bottom: 1px solid #C2C2C2;/* 下の線 */
    border-left: 1px solid #C2C2C2;  /* 左の線 */
    border-right: 1px solid #C2C2C2; /* 右の線 */
    text-align: center;
}
.unconfirmed_wrapper th {
    height: 30px;
    background: #F2F2EF;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 30px;
}
.unconfirmed_wrapper th:nth-child(1) {
    width: 15%;
}
.unconfirmed_wrapper th:nth-child(2) {
    width: 15%;
}
.unconfirmed_wrapper th:nth-child(3) {
    width: 70%;
}
.unconfirmed_wrapper td {
    height: 50px;
    font-size: 1.6rem;
    font-weight: 400;
    /* padding: 8px 0; */
    box-sizing: border-box;
}
.unconfirmed_wrapper td:nth-child(2) .unconfirmed {
    max-width: 90px;
    width: 100%;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 30px;
    color: #AA8320;
    background: #F2F2EF;
    margin: 0 auto;
}
.unconfirmed_wrapper td:nth-child(2) .confirmed {
    font-size: 1.4rem;
}
.unconfirmed_wrapper td:nth-child(3) {
    padding: 0 0 0 43.5px;
    line-height: 25px;
    text-align: left;
    box-sizing: border-box;
}
.unconfirmed_wrapper td:nth-child(3) .document {
    display: inline-block;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.unconfirmed_wrapper td:nth-child(3) .document:hover {
    text-decoration: none;
    cursor: pointer;
}
/* .unconfirmed_wrapper td:nth-child(4) {
    padding-left: 30px;
} */
/* 左端の縦線を消す */
.unconfirmed_wrapper th:first-child,
.unconfirmed_wrapper td:first-child {
    border-left: none;
}
/* 右端の縦線を消す */
.unconfirmed_wrapper th:last-child,
.unconfirmed_wrapper td:last-child {
    border-right: none;
}
.unconfirmed_wrapper td span {
    color: red;
}
.next_btn {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.3px;
    width: 153px;
    height: 53px;
    line-height: 53px;
    text-align: center;
    color: #AA8320;
    border: solid 1px #AA8320;
    margin: 50px auto 0;
}
.next_btn:hover {
    background: #AA8320;
    color: white;
    cursor: pointer;
}
@media (max-width: 1000px) {
    .unconfirmed_wrapper td {
        font-size: 1.4rem;
    }
}
@media (max-width: 870px) {
    .unconfirmed_wrapper {
        padding: 25px 0 50px;
    }
    .uc_intro {
        max-width: 335px;
        width: 100%;
        font-size: 1.6rem;
        line-height: 28px;
        margin: 0 auto 20px;
    }
    .uc_card {
        max-width: 335px;
        width: 100%;
        border: solid 1px #C2C2C2;
        padding: 10px 25px;
        box-sizing: border-box;
        margin: 0 auto 20px;
        text-align: center;
    }
    .uc_box {
        display: flex;
        justify-content: center;
    }
    .uc_box2 {
        display: flex;
        justify-content: space-between;
        border-top: solid 1px #C2C2C2;
    }
    .uc_box3 {
        display: flex;
        justify-content: center;
        border-top: solid 1px #C2C2C2;
    }
    .uc_row {
        width: 100%;
        min-height: 50px;
        padding: 5px 0;
        box-sizing: border-box;
    }
    .uc_row2 {
        width: 50%;
        min-height: 50px;
        padding: 5px 0;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .uc_row3 {
        min-height: 50px;
        padding: 5px 0;
        box-sizing: border-box;
        margin: 0 auto;
    }
    .uc_label {
        font-size: 1.2rem;
        font-weight: 400;
        letter-spacing: 0.4px;
        line-height: 18px;
        opacity: 0.5;
    }
    .uc_value {
        /* font-size: 1.3rem;
        font-weight: 400; */
        font-size: 1.5rem;
        font-weight: bold;
        line-height: 20px;
    }
    .uc_red,
    .uc_value span {
        color: red;
        font-weight: bold;
    }
    .uc_red {
        font-size: 1.5rem;
    }
    .uc_row2 .uc_btn {
        font-size: 1.4rem;
        font-weight: bold;
        letter-spacing: 0.3px;
        width: 70%;
        height: 30px;
        line-height: 30px;
        text-align: center;
        color: #AA8320;
        background: #F2F2EF;
        border: solid 1px #F2F2EF;
    }
    .uc_row2 .uc_btn2 {
        font-size: 1.4rem;
        font-weight: 500;
        letter-spacing: 0.3px;
        width: 70%;
        height: 30px;
        line-height: 30px;
        text-align: center;
        background: #F2F2EF;
        border: solid 1px #F2F2EF;
    }
    .uc_box2:has(.uc_row2.center) {
        justify-content: center;
    }
    .f_bold {
        font-size: 1.8rem;
        font-weight: 500;
    }
}

/* 文書内容画面 verification_2d2.php ---------------------------------*/
.vc_login_wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 0;
    box-sizing: border-box;
}
.vc_login_title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 28px;
    letter-spacing: 0.03em;
    margin-bottom: 14px;
}
.vc_login_box {
    width: 100%;
    max-height: 400px;
    border: solid 1px #C2C2C2;
    border-radius: 5px;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.16);
    padding: 40px 80px;
    box-sizing: border-box;
    margin-bottom: 100px;
    overflow-y: auto;
}
.vc_login_box:last-of-type {
    margin-bottom: 72px;
}
.vc_login_box::-webkit-scrollbar {
    width: 7px;
}
.vc_login_box::-webkit-scrollbar-track {
    background: transparent;
}
.vc_login_box::-webkit-scrollbar-thumb {
    background-color: #C2C2C2;
    border-radius: 5px;
}
.vc_login_checkbox_item {
    display: flex;
    align-items: flex-start;
    max-width: 405px;
    width: 100%;
    margin: 0 auto 35px;
}
.vc_login_checkbox_item:last-child {
    margin-bottom: 10px;
}
.vc_login_checkbox_item .vc_login_checkbox {
    margin-top: 1px;
}
.vc_login_checkbox {
  appearance: none !important;/* 標準の見た目を消す */
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  min-width: 30px !important;
  width: 30px !important;/* 横幅 */
  height: 30px !important;/* 高さ */
  border: 1px solid #323232 !important;/* 枠線 */
  background: white !important;/* 背景色を明示 */
  cursor: pointer;
  position: relative;
  flex-shrink: 0;/* チェックボックスが縮まないように */
  display: block !important;/* 確実に表示 */
  opacity: 1 !important;/* 透明化されないように */
  visibility: visible !important;/* 非表示にされないように */
}
input[type="checkbox"]:checked:before {
    position: absolute;
    top: 3px;
    left: 9px;
    transform: rotate(50deg);
    width: 9px;
    height: 13px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    content: '';
}
.vc_login_checkbox_label {
    font-size: 2rem;
    font-weight: 400;
    line-height: 31px;
    margin-left: 15px;
}
.vc_login_note {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 50px;
    text-align: center;
}
.vc_login_btn {
    max-width: 153px;
    width: 100%;
    height: 53px;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 53px;
    color: #AA8320;
    border: solid 1px #AA8320;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}
.vc_login_btn:hover {
    background: #AA8320;
    color: white;
    cursor: pointer;
}
.vc_login_btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
/* add-------------------------------------*/
.vc_next_btn {
    max-width: 153px;
    width: 100%;
    height: 53px;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 53px;
    color: #AA8320;
    border: solid 1px #AA8320;
    display: flex;
    justify-content: center;
    margin: 15px auto;
}
.vc_next_btn:hover {
    background: #AA8320;
    color: white;
    cursor: pointer;
}
.vc_next_btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
/* add-------------------------------------*/

@media (max-width: 1200px) {
    .vc_login_wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 768px) {
    .vc_login_wrapper {
        max-width: initial;
        padding: 33px 20px 60px;
    }
    .vc_login_title {
        font-size: 1.6rem;
        font-weight: 500;
        letter-spacing: 0;
        margin-bottom: 10px;
    }
    .vc_login_box {
        width: 100%;
        max-height: 453px;
        padding: 14px 25px;
        margin-bottom: 50px;
    }
    .vc_login_box:last-of-type {
        margin-bottom: 30px;
    }
    .vc_login_checkbox_item {
        max-width: 317px;
        margin: 0 auto 15px;
    }
    .vc_login_checkbox_item:last-child {
        margin-bottom: 50px;
    }
    .vc_login_checkbox_item .vc_login_checkbox {
        margin-top: 4px;
    }
    .vc_login_checkbox {
        min-width: 18px !important;
        width: 18px !important;/* 横幅 */
        height: 18px !important;/* 高さ */
        background: white !important;/* 背景色を明示 */
        flex-shrink: 0;/* チェックボックスが縮まないように */
        display: block !important;/* 確実に表示 */
        opacity: 1 !important;/* 透明化されないように */
        visibility: visible !important;/* 非表示にされないように */
    }
    input[type="checkbox"]:checked:before {
        position: absolute;
        top: 1px;
        left: 4.5px;
        transform: rotate(50deg);
        width: 5px;
        height: 9px;
        border-right: 2px solid #000;
        border-bottom: 2px solid #000;
        content: '';
    }
    .vc_login_checkbox_label {
        font-size: 1.4rem;
        line-height: 25px;
        margin-left: 6px;
    }
    .vc_login_note {
        font-size: 1.4rem;
        line-height: 25px;
        margin-bottom: 30px;
        padding-left: 1em;
        text-indent: -1em;
        text-align: left;
    }
    .vc_login_btn {
        max-width: 335px;
        height: 45px;
        font-size: 1.6rem;
        letter-spacing: 0.12em;
        line-height: 45px;
    }
    .vc_next_btn {
        max-width: 335px;
        height: 45px;
        font-size: 1.6rem;
        letter-spacing: 0.12em;
        line-height: 45px;
    }
}




.space_50pc {
    margin-top: 50px;
}
.space_20 {
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .space_50pc {
        margin-top: 0;
    }
}

