@charset "UTF-8";

/************************************
form
*************************************/

/*
reset
***********************/

button,
option,
select,
textarea,
input[type="button"],
input[type="submit"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="text"],
input[type="select"],
input[type="option"],
input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    border: none;
    outline: 0;
    margin: 0;
    background: #fff;
}
input[type="radio"],
input[type="checkbox"] {
    /*display: none;*/
    position: fixed;
    opacity: 0;
    position: absolute;
    z-index: -1;
}
select {
    text-indent: 0.01px;
    text-overflow: "";
}
select::-ms-expand {
    display: none;
}
textarea,
input[type="number"],
input[type="email"],
input[type="text"] {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    background: #f7f7f7;
}
textarea {
    height: 200px; /* お好みの高さに */
}
/* フォーカス時の色変更 */
textarea:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="text"]:focus {
    border: 1px solid #e5007f;
}

/* ラジオボタン */

.form-radio input[type="radio"] + label {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 9px 5px 8px 28px;
    margin-right: 0px;
}
.form-radio input[type="radio"] + label::before,
.form-radio input[type="radio"] + label::after {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}
.form-radio input[type="radio"] + label::before {
    width: 22px;
    height: 22px;
    margin-top: -12px;
    background: #fff;
    border: 1px solid #ccc;
}
.form-radio input[type="radio"] + label::after {
    left: 6px;
    width: 10px;
    height: 10px;
    margin-top: -6px;
    background: #f4f4f4;
}
.form-radio input[type="radio"]:checked + label::after {
    background: #333;
}
.form-radio input[type="radio"]:disabled + label::after,
.form-radio input[type="radio"]:disabled + label {
    filter: alpha(opacity=20);
    -moz-opacity: 0.2;
    opacity: 0.2;
    -ms-filter: "alpha(opacity=20)";
    -moz-opacity: 0.2;
    -khtml-opacity: 0.2;
    zoom: 1;
}
/* チェックボックス */
.form-checkbox label {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 6px 5px 8px 30px;
}
.form-checkbox label::before,
.form-checkbox label::after {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.form-checkbox label::before {
    width: 22px;
    height: 22px;
    margin-top: -12px;
    background: #fff;
    border: 2px solid #ccc;
}
.form-checkbox input[type="checkbox"] + label::after {
    width: 24px;
    height: 24px;
    top: 2px;
}
.form-checkbox input[type="checkbox"]:checked + label::after {
    position: absolute;
    display: block;
    content: "";
    background: url(/common/images/icon_check.svg) 0 0 no-repeat;
    background-size: 24px 24px;
    left: -1px;
    top: 6px;
}
input::placeholder {
    color: #ccc;
}
input:-ms-input-placeholder {
    color: #ccc;
}
input::-ms-input-placeholder {
    color: #ccc;
}
