@charset "UTF-8";

.el_form {
    height: 100%;
}

.el_formHead {
    text-align: center;
    font-size: 16px;
    margin-bottom: 50px;
}

.el_form_item {
    margin-bottom: 30px;
}

.el_formMain_ttl {
    font-size: 14px;
    font-weight: bold;
    color: #505d6f;
    margin-bottom: 15px;
    display: block;
}

.el_formMain_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.el_form_caution_subTtl {
    font-size: 11.5px;
    font-weight: normal;
    color: #505d6f;
    margin-bottom: 20px;
    display: block;
    margin-top: 5px;
}

.el_formMain_link {
    display: inline-block;
    font-size: 13px;
    line-height: 1;
    margin-bottom: 15px;
    text-decoration: underline;
    transition: all ease .25s;
}

.el_formMain_link:hover {
    opacity: .8;
}

.el_formMain_link_icon {
    padding: 0 10px;
}

.el_form_caution {
    color: #F1416C;
    font-weight: normal;
    font-size: 17px;
}

/* デフォルトのプレースホルダー */
::placeholder {
    color: #bababa;
}

/* テキスト入力欄 */
input,
textarea {
    font-size: 14px;
    width: 100%;
    border-radius: 5px;
    padding: 10px 10px;
    background: #fff;
    box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15);
    color: #505d6f;
    border: 1px solid #cfd8e5;
}

input:focus,
textarea:focus {
    outline: #d6e2ec 1px solid;
}

textarea {
    min-height: 140px;
}

input[type="datetime-local"],
input[type="date"] {
    position: relative;
    cursor: pointer;
}

input[type="date"].date_search {
    font-size: 13px;
    min-width: 150px;
    padding: 7px 10px;
    background: #fff;
    color: #505d6f;
}

input[type="date"].date_search:focus {
    outline: 1px #50526a solid;
}

/* inputの幅500px */
.el_form_input_w_500 {
    width: 500px;
}

/* inputの幅250px */
.el_form_input_w_250 {
    width: 250px;
}

/* 検索用input */
.el_input_text_s {
    padding: 6px 10px;
}

.el_input_text_search {
    border: 1px solid #b8c0cb;
    border-radius: 3px;
}

/* バリデーションエラー表示 */
.el_border_rd,
input.el_border_rd,
.el_select.el_border_rd,
textarea.el_border_rd {
    border: 2px solid #ff3868 !important;
}

input.el_border_bl,
.el_select.el_border_bl,
textarea.el_border_bl {
    border: 1px solid #00c2b5;
}

/* スピンボックスを非表示に */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    -moz-appearance: textfield;
}

/*---------------
    ラジオボタン
-----------------*/

.el_radio_wrap {
    font-size: 14px;
}

.el_radio_wrap label {
    display: block;
    cursor: pointer;
    color: #6c757d;
}

.el_radio_wrap label input[type="radio"] {
    opacity: 0;
    appearance: none;
    position: absolute;
    max-width: 100px;
}

.el_radio_wrap input:hover {
    background-color: #F1FAFF;
}

.el_radio_wrap input:focus+span::before {
    box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15);
}

/* 縦並び */
.el_radio_wrap {
    position: relative;
    font-size: 14px;
    background: #fff;
    padding: 8px 0;
    border-radius: 5px;
    border: 1px solid #cfd8e5;
    box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.1);
    max-height: 200px;
    overflow-y: scroll;
}

.el_reflesh {
    position: absolute;
    top: 70px;
    right: 42px;
    cursor: pointer;
    padding: 0 10px;
    font-size: 14px;
    color: #505d6f;
    z-index: 1;
}

.el_reflesh:hover {
    opacity: .8;
}

.el_radio_item {
    width: 60%;
}

.el_radio_item label {
    display: block;
    cursor: pointer;
    color: #505d6f;
}

.el_radio_item label input[type="radio"] {
    opacity: 0;
    appearance: none;
    position: absolute;
    max-width: 100px;
    padding: 0;
}

.el_radio_item .el_radio_item_txt {
    display: block;
    position: relative;
    padding: 8px 10px 8px 55px;
    line-height: 2;
    font-size: 14px;
    border-radius: 5px;
}

.el_radio_item .el_radio_item_txt::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 19px;
    width: 18px;
    height: 18px;
    border: 1px solid #a9b6c0;
    background: #fff;
    content: "";
    border-radius: 50%;
}

.el_radio_item input:checked+span::after {
    opacity: 1;
}

.el_radio_item_txt::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 23px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #f74570;
    content: "";
    opacity: 0;
    transition: all 0.3s;
}

/* 横並び */
.el_radio_wrap_flex {
    font-size: 14px;
    display: flex;
    align-items: center;
}

.el_radio_item.el_radio_item_flex {
    width: 100%;
    max-width: 110px;

}

.el_radio_item_txt.el_radio_item_txt_flex {
    padding: 0 10px 0 30px;
    font-size: 12px;
}

.el_radio_item_txt.el_radio_item_txt_flex::before {
    left: 0px;
}

.el_radio_item_txt.el_radio_item_txt_flex::after {
    left: 4px;
}


/* セレクトボックス */
.el_selectBox {
    vertical-align: middle;
}

.el_select::after {
    position: absolute;
    right: 15px;
    width: 10px;
    color: #4e5e8f;
    font-family: "Font Awesome 5 Free";
    content: '\f078';
    font-weight: 900;
    pointer-events: none;
}

.el_select {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 100%;
}

.el_select select {
    -webkit-appearance: none;
    /*--各ブラウザのCSSを解除--*/
    -moz-appearance: none;
    /*--各ブラウザのCSSを解除--*/
    appearance: none;
    border: 1px solid #cfd8e5;
    border-radius: 5px;
    font-size: 14px;
    color: #6c757d;
    appearance: none;
    padding: 10px;
    outline: 0;
    background: #fff;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    /* 文字の省略 */
    cursor: pointer;
    width: 100%;
    box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15);
}

/* 検索用セレクトボックス */
.el_select.el_select_s select {
    padding: 6px 10px;
    font-size: 13px;
    width: 110px;
    border: 1px solid #d3dae4;
    border-radius: 3px;
}

/*---------------
    チェックボックス
-----------------*/
.el_form_checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.el_form_checkbox_wrap {
    font-size: 14px;
    background: #45475d;
    padding: 6px 0;
    border-radius: 5px;
}

.el_form_checkbox_multi {
    margin: 20px 18px;
}

input[type="checkbox"] {
    opacity: 0;
    appearance: none;
    position: absolute;
    width: 0;
}

.el_checkbox.el_border_rd+.check_parts {
    border: 2px solid #f1416c;
    box-shadow: 0px 0px 5px #ff3b3b;
}

.el_checkbox:checked+.check_parts::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40%;
    height: 3px;
    border-radius: 2px;
    transform: translate(-4px, 1px) rotateZ(-135deg);
    transform-origin: 2px 2px;
    background: #ed1e79;
}

.el_checkbox:checked+.check_parts::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 76%;
    height: 3px;
    border-radius: 2px;
    transform: translate(-2px, 1px) rotateZ(-45deg);
    transform-origin: 2px 2px;
    background: #ed1e79;
}

.check_parts {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    width: 18px;
    height: 18px;
    border: solid 2px #96a1af;
    background: #fff;
    border-radius: 2px;
}

.el_form_checkboxTxt {
    margin: 0 15px;
    display: block;
    font-size: 14px;
    line-height: 1;
}

/* チェックボックスここまで */

.el_notice {
    font-size: 12px;
    line-height: 1.8;
}

.el_formBtnWrap {
    margin-top: 35px;
    text-align: right;
}

.error_parts {
    font-size: 11px;
    padding-top: 8px;
    display: block;
    color: #F1416C;
}

/*---------------
    ファイル
-----------------*/
input[type="file"] {
    display: none;
}

.el_file {
    position: absolute;
    top: -10px;
    right: -10px;
    color: #ffffff;
    background-color: #0d1380;
    cursor: pointer;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 13.5px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.el_file.el_border_rd {
    border: 2px solid #F1416C;
}

.el_fileBox {
    position: relative;
    width: unset;
    height: 180px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cfd8e5;
}

.el_fileBox.el_border_rd {
    border: 2px solid #ff3868;
}

.el_file_saved {
    max-width: 290px;
    max-height: 170px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.el_file_saved img {
    max-height: 100%;
}

.el_file_dummy,
.el_file_dummy_multi {
    color: #a3afbf;
    text-align: center;
}

.el_file_dummy_icon {
    font-size: 60px;
    padding-bottom: 5px;
    color: #a3b0bf;
}

.el_file_dummy_txt {
    font-size: 14px;
}

.el_file_detailTxt {
    font-size: 11.5px;
    text-align: center;
    color: #566374;
}

.el_file_preview {
    /* max-width: 290px; */
    max-height: 185px;
    padding: 10px;
    display: block;
}

/* 画像のマルチアップロード */

/* 動画 */
.el_file_video_preview {
    max-width: 290px;
    max-height: 185px;
    border: 1px solid #e9eef5;
}

/* js変更用 */
#beforeImg {
    display: block;
}


.el_scaled {
    padding: 0 10px;
    font-size: 15px;
    vertical-align: middle;
}
