/* Font Color */
.w_color_blue {
    color: #3838ED !important;
}

/* Input */
.w_input_div {
    position: relative;
    margin-bottom: 15px;
    width: 100%;
    height: 52px;
    border-radius: 8px;
    border: 1px solid #DEDEDE;
    background: #fff;
    overflow: hidden;
    box-sizing: border-box;
}
.w_input_div:last-of-type {
    margin-bottom: 0;
}
.w_chk_input {
    display: none;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 24px;
}
.w_chk_input img {
    width: 100%;
}
.w_chk_input.w_on {
    display: block;
}
.w_input_default {
    width: 100%;
    height: 100%;
    border: none;
    padding-left: 17px;
    outline: none;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    box-sizing: border-box;
}
.w_input_default::placeholder {
    color: #717070;
}
.w_input_default_login {
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    height: 51px;
    border: none;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    outline: none;
}
.w_input_default_login::placeholder {
    color: #717070;
}

/* CheckBox */
.w_chkbox_default {
    appearance: none;
    margin: 0;
    width: 24px;
    height: 24px;
    background: url("../image/glan/chkbox_off.png") no-repeat center;
    background-size: cover;
}
.w_chkbox_default:checked {
    background: url("../image/glan/chkbox_on.png") no-repeat center;
    background-size: cover;
}
.w_chkbox_circle {
    appearance: none;
    margin: 0;
    width: 24px;
    height: 24px;
    background: url("../image/glan/icon_choice_off.png") no-repeat center;
    background-size: cover;
}
.w_chkbox_circle:checked {
    background: url("../image/glan/icon_choice_on.png") no-repeat center;
    background-size: cover;
}

/* Button */
.w_btn_default {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 300px;
    height: 50px;
    border-radius: 8px;
    border: 1px solid #969696;
    background: #3838ED;
    box-sizing: border-box;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}
.w_btn_input {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 103px;
    height: 34px;
    border-radius: 4px;
    background: #3838ED;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}
.w_btn_link_ebook {
    margin-top: 60px;
    width: 264px;
    height: 60px;
    font-weight: 600;
}
/* Radio Button */
.w_radio_btn_wrap {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    border-radius: 8px;
    border: 1px solid #DEDEDE;
    overflow-y: hidden;
}
.w_radio_btn {
    display: block;
    height: 50px;
    border-right: 1px solid #DEDEDE;
}
.w_radio_btn:last-of-type {
    border-right: none;
}
.w_radio_btn input[type=radio] {
    position: absolute;
    left: -9999999999999px;
}
.w_radio_btn label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.w_radio_btn input[type=radio]:checked + label {
    background-color: #3838ED;
    color: #fff;
    font-weight: 700;
}

@media screen and (max-width: 690px) {
    .w_btn_link_ebook {
        width: 100%;
    }

    .w_input_default {
        font-size: 14px;
    }
}
