@charset "UTF-8";

.el_form {
    /* max-width: 900px;
    margin: 100px auto;
    padding: 80px 130px 100px;
    box-shadow: 1px 1px 20px #ccc;
    border-radius: 7px;
    background: #fdfdfd; */
}

.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: #E91E63;
    font-size: 12.5px;
    font-weight: bold;
    padding: 3px 10px;
    background: #fff1fd;
    border-radius: 3px;
    vertical-align: bottom;
    display: inline-block;
    margin-left: 5px; */
    color: #F1416C;
    font-weight: normal;
    font-size: 17px;
}

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

/* テキスト入力欄 */
input,
textarea {
    font-size: 15px;
    width: 100%;
    /* border: 1px solid #ccc; */
    border-radius: 5px;
    padding: 10px 10px;
    background: #45475d;
    /* box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15); */
    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;
}


/* input[type=datetime-local]::-webkit-calendar-picker-indicator,
input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
} */

/* 
input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type="datetime-local"]::-webkit-clear-button,
input[type="date"]::-webkit-clear-button {
    -webkit-appearance: none;
} */


input.el_inputScaled {
    width: 100px;
}

.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 {
    /* outline: 1px solid #F1416C; */
    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 {
    /* display: flex;
    flex-wrap: 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 .text {
    display: block;
    position: relative;
    /* padding-left: 26px; */
    padding: 10px 15px 10px 55px;
    line-height: 2;
    font-size: 16px;
    border-radius: 5px;
    background: #fff;
    /* border: 1px #d6e2ec dashed; */
    box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15);
}

.el_radio_wrap .text::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_wrap .text::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 23px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #727cf5;
    content: "";
    opacity: 0;
    transition: all 0.3s;
}

.el_radio_wrap input:checked+span {
    /* 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 input:checked+span::after {
    opacity: 1;
}

.el_radio_item {
    /* width: calc((100% - 30px) / 2); */
}

.el_radio_item:not(:last-child) {
    /* margin-right: 30px; */
    margin-bottom: 20px;
}

/* セレクトボックス */
.el_selectBox {
    /* display: inline-block; */
    /* position: relative; */
    vertical-align: middle;
}

.el_select::after {
    position: absolute;
    right: 15px;
    width: 10px;
    /* height: 7px; */
    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%;
    /* box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15); */
}

.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 {
    /* padding: 10px 18px; */
    /* margin-bottom: 12px; */
    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: #ed1e79;
    color: #fff;
    transition: all 0.25s ease-in-out;
    font-weight: bold;
    font-size: 16px;
    padding: 15px 35px;
    letter-spacing: 0.04em;
    border-radius: 5px;
    display: inline-block; */
    background: #dd2e51;
    display: inline-block;
    color: #fff;
    padding: 10px 17px;
    font-size: 13px;
    /* box-shadow: 0px 2px 6px 0px rgba(250,92,124.3); */
    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;
}

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

.el_formMain_ttl_file {
    position: absolute;
    top: -16px;
    right: -16px;
    /* padding: 13px 40px; */
    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_formMain_ttl_file.el_border_rd {
    border: 2px solid #F1416C;
}

.el_file_txt {
    font-size: 15px;
    margin: 5px 0;
}

.el_file_coution {
    font-size: 13px;
}

.el_form_imgCaution {
    color: #333;
    display: block;
    font-size: 12px;
    font-weight: bold;
    margin: 5px 0;
}



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

/* a[target=”_blank”]::after {
    content: url(../img/window-restore-regular.svg);
    width: 10px;
    height: 10px;
    display: inline-block;
    margin: 0 5px 0 3px;
  } */

.el_limitWrap {
    display: none;
    margin-top: 30px;
}

.el_limitWrap.active {
    display: block;
}

.limit:not(:last-child) {
    margin-bottom: 30px;
}

.el_input_orderWrap {
    display: flex; 
    align-items: center;
    margin-bottom: 15px;
}

.el_input_order_txt {
    width: calc(100% - 100px); 
    margin-right: 12px;
}

.el_input_order_num {
    width: 50px;
}

.el_input_order_btn {
    width: 35px;
    font-size: 14px;
    border-radius: 5px;
    padding: 6px 6px;
    background: #45475d;
    color: #fdfdfd;
    text-align: center;
    cursor: pointer;
    margin-right: 8px;
}

.el_input_order_trash {
    color: #c7c7d9;
}

.el_order_display {
    font-size: 15px;
    width: 100%;
    border-radius: 5px;
    padding: 10px 10px;
    background: #45475d;
    color: #fdfdfd;
}