@charset "UTF-8";

/******************************************************

fonts

******************************************************/
:placeholder-shown {
    color: #4d4d4d;
}

/*******************************************

PC SP form

*******************************************/
@media screen and (max-width: 740px) {

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    /*↓追加 */
    input[type="number"]
     {
        width: 100%;
    }
}

input[type="text"],
input[type="email"],
input[type="tel"],
/*↓追加 */
input[type="password"],
input[type="number"] {
    width: 100%;
    padding: 0 6px;
    height: 34px;
    box-sizing: border-box;
    font-size: 1.6rem;
    -webkit-appearance: none;
    border: #cacaca solid 1px;
    border-radius: 0px;
    background: #fff;
}

input[type="text"].narrow,
input[type="email"].narrow,
input[type="tel"].narrow,
/*↓追加 */
input[type="number"].narrow {
    width: 20%;
}

input[type="text"].middle,
input[type="email"].middle,
input[type="tel"].middle,
/*↓追加 */
input[type="number"].middle
 {
    width: 40%;
}

input[type="text"].wide,
input[type="email"].wide,
input[type="tel"].wide,
/*↓追加 */
input[type="number"].wide {
    width: 60%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
/*↓追加 */
input[type="number"]:focus {
    background: #fff;
}

textarea {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    width: 100%;
    height: 140px;
    padding: 6px;
    box-sizing: border-box;
    border: #cacaca solid 1px;
    font-size: 1.6rem;
    border-radius: 0px;
    background: #fff;
}

.submit .btn {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    cursor: pointer;
    width: 220px;
    height: 60px;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: #f40000;
    margin: 0 auto;
    transition: all 0.4s ease;
    backface-visibility: hidden;
}

.submit .btn.black {
    background: #4d4d4d;
}

.submit .btn:hover {
    filter: brightness(120%);
    opacity: 0.8;
}

.submit.flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.submit.flex .btn {
    margin: 0;
}

.submit.flex .btn+.btn {
    margin-left: 20px;
}

.selectBox {
    display: inline-block;
    overflow: hidden;
    position: relative;
    vertical-align: top;
}

.selectBox select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: medium none;
    border-radius: 0px;
    box-sizing: border-box;
    font-size: 1.6rem;
    height: 34px;
    margin: 0;
    padding: 0 6px;
    box-sizing: border-box;
    background: #fff;
    border: #cacaca solid 1px;
    padding-right: 50px;
    color: #0068b7;
    width: 125%;
    max-width: none;
    box-shadow: none;
    border-radius: 0px;
    background: #fff;
}

.selectBox select option,
.selectBox select optgroup {
    color: #4d4d4d;
    font-style: normal;
}

.selectBox:after {
    background: #4d4d4d;
    color: #fff;
    content: "▼";
    font-size: 1rem;
    height: 100%;
    line-height: 34px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    width: 34px;
    box-sizing: border-box;
    border: #cacaca solid 1px;
    border-left: 0;
    display: inline-block;
}

.checkBox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.checkBox .check {
    margin-right: 20px;
    margin-bottom: 20px;
}

.checkBox .check input[type="checkbox"] {
    display: none;
}

.checkBox .check input[type="checkbox"]:checked~label:after {
    transform: scale(1);
}

.checkBox .check label {
    display: block;
    width: 100%;
    padding-left: 24px;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
    color: #4d4d4d;
    font-size: 1.6rem;
    line-height: 1;
}

.checkBox .check label:before {
    display: inline-block;
    content: "";
    width: 15px;
    height: 15px;
    border: #cacaca solid 1px;
    position: relative;
    box-sizing: border-box;
    border-radius: 0px;
    position: absolute;
    left: 0px;
    top: 0px;
    background: #fff;
}

.checkBox .check label:after {
    transition: all 0.2s ease;
    backface-visibility: hidden;
    transform: scale(0);
    content: "\e900";
    font-family: "icomoon";
    font-size: 1.2rem;
    color: #f40000;
    position: absolute;
    left: 1px;
    top: 1px;
}

.radioBox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.radioBox .radio {
    margin-right: 20px;
    margin-bottom: 20px;
}

.radioBox .radio input[type="radio"] {
    display: none;
}

.radioBox .radio input[type="radio"]:checked~label:after {
    transform: scale(1);
}

.radioBox .radio label {
    display: block;
    width: 100%;
    padding-left: 24px;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
    color: #4d4d4d;
    font-size: 1.6rem;
    line-height: 1;
}

.radioBox .radio label:before {
    display: inline-block;
    content: "";
    width: 15px;
    height: 15px;
    border: #cacaca solid 1px;
    border-radius: 50%;
    box-sizing: border-box;
    position: absolute;
    left: 0px;
    top: 0px;
    background: #fff;
}

.radioBox .radio label:after {
    transform: scale(0);
    transition: all 0.2s ease;
    backface-visibility: hidden;
    content: "";
    display: inline-block;
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    position: absolute;
    left: 3px;
    top: 3px;
    background: #4d4d4d;
}