@charset "UTF-8";
.el_formHead {
    text-align: center;
    font-size: 16px;
    margin-bottom: 50px;
}

.el_form_item {
    margin-bottom: 30px;
}

.el_formMain_ttl {
    font-size: 16px;
    font-weight: bold;
    color: #dfe4f7;
    margin-bottom: 20px;
    display: block;
}

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

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

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

/* テキスト入力欄 */
input,
textarea {
    font-size: 15px;
    width: 100%;
    border-radius: 5px;
    padding: 10px 10px;
    background: #45475d;
    color: #fdfdfd;
}

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

.bl_add_description textarea {
    height: 200px;
}

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

input[type="datetime-local"]::after,
input[type="date"]::after {
    position: absolute;
    content: "\f073";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #8391a2;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    pointer-events: none;
}

.el_border_rd,
input.el_border_rd,
.el_select.el_border_rd,
textarea.el_border_rd {
    border: 1px solid #ff86a4;
}

.el_border_rd,
input.el_border_rd,
.el_select.el_border_rd,
textarea.el_border_rd {
    box-shadow: 0px 0px 4px #ff3b3b;
}

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;
}

/* ラジオボタン */
/*---------------
    radio
  -----------------*/
.el_radio_wrap {
    font-size: 14px;
    background: #45475d;
    padding: 8px 0;
    border-radius: 5px;
}

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

.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: 12px 15px 12px 55px;
    line-height: 2;
    font-size: 16px;
    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 .el_radio_item_txt::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 23px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ee1f79;
    content: "";
    opacity: 0;
    transition: all 0.3s;
}

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

.el_select::after {
    position: absolute;
    right: 15px;
    width: 10px;
    color: #fdfdfd;
    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 #E1E3EA; */
    border-radius: 5px;
    font-size: 15px;
    color: #fdfdfd;
    appearance: none;
    padding: 15px 10px;
    outline: 0;
    background: #45475d;
    box-shadow: none;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    /* 文字の省略 */
    cursor: pointer;
    width: 100%;
}

.el_select.el_select-m {
    width: 365px;
}

.el_select.el_select-s {
    width: 264px;
}

.el_select.el_select-date_search select {
    font-size: 14.5px;
    padding: 7px 10px;
    width: 160px;
    background: #0e1d67;
    border: 1px solid #b6bac7;
}

.el_select.el_select-date_search:after {
    right: 10px;
}

.el_selectBtn:hover {
    opacity: .8;
}

/*---------------
    checkbox
  -----------------*/
.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(-5px, 2px) 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(-3px, 2px) rotateZ(-45deg);
    transform-origin: 2px 2px;
    background: #ed1e79;
}

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

.el_form_checkboxTxt {
    margin: 0 12px;
    display: block;
    font-size: 15px;
}

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

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

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

.el_formBtn {
    background: #dd2e51;
    display: inline-block;
    color: #fff;
    padding: 10px 17px;
    font-size: 13px;
    cursor: pointer;
    min-width: 150px;
    border-radius: 2px;
    transition: all .25s ease;
}

.el_formBtn:hover {
    background: #cb2345;
}

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

.has_error .help_block {
    color: #F1416C;
}

.has_error input[type=text] {
    border: 1px solid #F1416C;
}

.has_success .help_block {
    color: #00b722;
}

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

.el_file {
    position: absolute;
    top: -10px;
    right: -10px;
    color: #ffffff;
    background-color: #ee1f79;
    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: #45475d;
    box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.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: #cdcdcd;
}

.el_file_preview {
    max-height: 185px;
    padding: 10px;
    display: block;
}
.el_scaled {
    padding: 0 10px;
    font-size: 15px;
    vertical-align: middle;
}

.el_form_supplement {
    margin-bottom: 60px;
}

.el_form_supplement_txt {
    font-size: 13px;
    line-height: 1.8;
}

.el_form_item_info {
    font-size: 15px;
    margin-bottom: 20px;
}

.el_form_link {
    color: #ed1e79;
    text-decoration: underline;
}