@charset "UTF-8";

.el_input_outer {
    background: rgba(0, 0, 0, 0.7);
    padding: 60px 45px 100px;
    min-height: 100vh;
}

.el_input {
    /* margin: 60px 0 30px; */
    text-align: left;
}

.el_input_head {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

/* フォーム */
.el_inputTxt {
    text-align: center;
    font-size: 16px;
    margin-bottom: 50px;
}

.el_itemTtl_s {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

.el_input_item {
    margin-bottom: 30px;
}

.el_inputMain_ttl {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

.el_input_caution {
    color: #fff;
    font-size: 12.5px;
    font-weight: bold;
    padding: 2px 10px;
    background: #434343;
    border-radius: 3px;
    vertical-align: bottom;
    display: inline-block;
    margin-left: 5px;
    border: 1px solid #535353;
}

/* テキスト入力欄 */
input,
textarea {
    font-size: 15px;
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px;
    background: #fff;
    border: 2px solid #ffffff;
    border-image: linear-gradient(to right, #ff0082 0%, #6e00ff 50%, #45c7d8 98%);
    border-image-slice: 1;
}

textarea {
    height: 150px;
}

input.el_inputScaled {
    width: 100px;
}

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

input.el_border_rd,
.el_select.el_border_rd,
textarea.el_border_rd {
    outline: 1px solid #ff53b0;
    box-shadow: 0px 0px 5px #ff53b0;
}

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

.el_select::after {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #535353;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    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: 2px solid #ffffff;
    border-image: linear-gradient(to right, #ff0082 0%, #6e00ff 50%, #45c7d8 98%);
    border-image-slice: 1;
    font-size: 15px;
    color: #3e3a39;
    appearance: none;
    padding: 10px;
    outline: 0;
    background: #fff;
    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_selectBtn:hover {
    opacity: .8;
}

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

input[type="radio"] {
    width: auto;
  }
  
  .el_radio_wrap {
    /* display: flex;
    flex-wrap: wrap; */
    font-size: 14px;
  }
  
  .el_radio_wrap label {
    display: inline-block;
    cursor: pointer;
  }
  
  .el_radio_wrap label input[type="radio"] {
    opacity: 0;
    appearance: none;
    position: absolute;
  }
  
  .el_radio_wrap .text {
    display: inline-block;
    position: relative;
    padding-left: 26px;
    line-height: 2;
    font-size: 15px;
  }
  
  .el_radio_wrap .text::before {
    position: absolute;
    top: 6px;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #999;
    background: #fff;
    content: "";
    border-radius: 50%;
  }
  
  .el_radio_wrap .text::after {
    position: absolute;
    top: 10px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ed1e79;
    content: "";
    opacity: 0;
    transition: all 0.3s;
  }
  
  .el_radio_wrap input:focus+span::before {
    box-shadow: 0 0 4px #999;
  }
  
  .el_radio_wrap input:checked+span::after {
    opacity: 1;
  }


/*---------------
    checkbox
  -----------------*/
.el_input_checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

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

.el_checkbox.el_border_rd+.check_parts {
    border: 2px solid #ff0000;
    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_input_checkboxTxt {
    margin: 0 12px;
    display: block;
    font-size: 15px;
}

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

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

.el_inputBtnWrap {
    text-align: center;
}

.el_inputBtn {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    padding: 15px 35px;
    letter-spacing: 0.04em;
    display: inline-block;
    background-image: linear-gradient(to left, #00d2ff 0%, #006eff 100%);
    border: 1px solid #ffffff;
    border-image: linear-gradient(to right, #00d2ff 0%, #006eff 100%);
    border-image-slice: 1;
    transition: 0.3s ease-in-out;
    max-width: 300px;
}

.el_inputBtn:hover {
    opacity: .8;
}

.error_parts {
    font-size: 13px;
    padding-top: 4px;
    display: block;
    color: #ff53b0;
    font-weight: bold;
}

.el_input_supplement {
    margin-bottom: 60px;
}

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

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

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

@media screen and (max-width: 500px) {

    .el_input_outer {
        background: rgba(0, 0, 0, 0.8);
        padding: 60px min(8rem, 45px) 100px;
    }

    .el_input {
        /* margin: 60px 0 30px; */
        text-align: left;
    }

    .el_input_head {
        font-size: min(10rem, 26px);
    }
}