@charset "UTF-8";

input, button, textarea, select {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  font-family: "Noto Sans Japanese","ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
  font-weight: 300;

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*placeholder*/
input:placeholder-shown {color: #C7C7C7;}
input::-webkit-input-placeholder {color: #C7C7C7;}
input:-moz-placeholder {color: #C7C7C7; opacity: 1;}
input::-moz-placeholder {color: #C7C7C7; opacity: 1;}
input:-ms-input-placeholder {color: #C7C7C7;}

/*focus*/
select:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: #f2c47a !important;
  -webkit-box-shadow: 0 0 6px 0 rgba(242, 196, 122, 1.0), inset 2px 2px 2px 0 rgba(0,0,0,0.1);
  box-shadow: 0 0 6px 0 rgba(242, 196, 122, 1.0), inset 2px 2px 2px 0 rgba(0,0,0,0.1);
}

/*important*/
input.impt, button.impt, textarea.impt, select.impt{
  background-color: #FFEAEA !important;
}

/*error*/
input.err, button.err, textarea.err, select.err,
.err input, .err button, .err textarea, .err select{
  border: #D63D5A 2px solid !important;
  background-color: #FFEAEA !important;
}

/*-----------------------------------------*/
/*input text*/
/*-----------------------------------------*/

/*cap*/
.ipt_cap{
  line-height: 56px;
}

/*inner*/
input[type=text],
input[type=tel]{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 20px 14px 19px;
  border: #C7C7C7 1px solid;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: #FFF;
  -webkit-box-shadow: inset 2px 2px 2px 0 rgba(100,100,100,0.1);
  box-shadow: inset 2px 2px 2px 0 rgba(100,100,100,0.1);
  font-size: 16px;
  line-height: 1.286;
  height: 55px;
}
input::-webkit-input-placeholder{
  line-height: 1.5;
}

/*-----------------------------------------*/
/*select*/
/*-----------------------------------------*/

select{
  position: relative;
  z-index: 10;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 19px 2.4em 18px 14px;
  border: #C7C7C7 1px solid;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1;
}

label.select{position: relative;}
label.select:before{
  position: absolute;
  z-index: 1;
  top: 0;
  right: 20px;
  display: block;
  width: 15px;
  height: 100%;
  content:'';
  background: url("../images/icon/select_arw.png") no-repeat left center;
  -webkit-background-size: 15px;
  -o-background-size: 15px;
  background-size: 15px;
}

label.select.mid{display: inline-block;width: 78%;margin-right: 5px;}

/*-----------------------------------------*/
/*radio*/
/*-----------------------------------------*/

input[type=radio]{display: none;}

.ipt_radio{
  position: relative;
  display: block;
  width: 100%;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 1px 2px rgba(255,255,255,1.0) inset;
  box-shadow: 0px 0px 1px 2px rgba(255,255,255,1.0) inset;
}
.ipt_radio.bd_none{border: none;}

.ipt_radio .radio_txt{
  position:relative;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 15px 10px 14px 50px;
  border: #d6d6d6 solid 1px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: -moz-linear-gradient(bottom, #fefefe 0%, #fefefe 50%, #eeeeee 100%);
  background: -webkit-linear-gradient(bottom, #fefefe 0%,#fefefe 50%,#eeeeee 100%);
  background: linear-gradient(to bottom, #fefefe 0%,#fefefe 50%,#eeeeee 100%);
  background-color: #fefefe;
  line-height: 1.3;
}

.ipt_radio .radio_txt .min{
  display: block;
  margin-top: 5px;
  font-size: 85%;
  line-height: 1.4;
}
.ipt_radio .radio_txt .dtl{
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 55%;
  height: 100%;
  margin-top: -0.7em;
  vertical-align: middle;
  font-size: 85%;
  line-height: 1.4;
}
.ipt_radio .radio_txt .dtl.lh2{
  margin-top: -1.4em;
}

.ipt_radio .radio_txt::before{
  position: absolute;
  top: 50%;
  left: 13px;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 26px;
  height: 26px;
  margin-top: -13px;
  content: "";
  border: 1px solid #d6d6d6;
  border-radius: 50%;
  background: #FFF;
  -webkit-box-shadow: inset 3px 3px 3px 0 rgba(100,100,100,0.1);
  box-shadow: inset 3px 3px 3px 0 rgba(100,100,100,0.1);
}
.ipt_radio input:checked + .radio_txt{}
.ipt_radio input:checked + .radio_txt::after{
  position: absolute;
  top: 50%;
  left: 19px;
  display: block;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  content: "";
  border-radius: 50%;
  background: #993f4f;
}
.ipt_radio input:disabled + .radio_txt::after,
.ipt_radio input.disabled + .radio_txt::after{/*20171128*/
  position: absolute;
  top: 50%;
  left: 13px;
  display: block;
  width: 26px;
  height: 26px;
  margin-top: -13px;
  content: "";
  border: 1px solid #d6d6d6;
  border-radius: 50%;
  background: #d6d6d6;
}

/*simple*/
.ipt_radio.smpl{
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ipt_radio.smpl .radio_txt{
  padding-left: 36px;
  border: none;
  background: transparent;
}
.ipt_radio.smpl .radio_txt::before{
  left: 0;
  background: #fff;
}
.ipt_radio.smpl input:checked + .radio_txt::after{left: 6px;}

/*-----------------------------------------*/
/*checkbox*/
/*-----------------------------------------*/

input[type=checkbox]{display: none;}

.ipt_check{
  display: block;
  width: 100%;
}

.ipt_check .check_txt{
  position:relative;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 15px 10px 14px 52px;
  border: #d6d6d6 solid 1px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: -moz-linear-gradient(bottom, #fefefe 0%, #fefefe 50%, #eeeeee 100%);
  background: -webkit-linear-gradient(bottom, #fefefe 0%,#fefefe 50%,#eeeeee 100%);
  background: linear-gradient(to bottom, #fefefe 0%,#fefefe 50%,#eeeeee 100%);
  background-color: #fefefe;
  -webkit-box-shadow: 0px 0px 1px 1px rgba(255,255,255,1.0) inset;
  box-shadow: 0px 0px 1px 1px rgba(255,255,255,1.0) inset;
  line-height: 1.3;
}
.ipt_check .check_txt .min{
  display: block;
  margin-top: 5px;
  font-size: 85%;
  line-height: 1.4;
}

.ipt_check .check_txt::before{
  position: absolute;
  top: 50%;
  left: 12px;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  content: "";
  border: 1px solid #d6d6d6;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: #FFF;
  -webkit-box-shadow: inset 3px 3px 3px 0 rgba(100,100,100,0.1);
  box-shadow: inset 3px 3px 3px 0 rgba(100,100,100,0.1);
}
.ipt_check input:checked + .check_txt{}
.ipt_check input:checked + .check_txt::after{
  position: absolute;
  top: 50%;
  left: 12px;
  display: block;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  content: "";
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: #993f4f url("../images/icon/checkbox.png") no-repeat center center;
  -webkit-background-size: 14px auto;
  -o-background-size: 14px auto;
  background-size: 14px auto;
}
.ipt_check input:disabled + .check_txt::after{
  position: absolute;
  top: 50%;
  left: 13px;
  display: block;
  width: 26px;
  height: 26px;
  margin-top: -13px;
  content: "";
  border: 1px solid #d6d6d6;
  border-radius: 50%;
  background: #d6d6d6;
}

/*simple*/
.ipt_check.smpl{
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ipt_check.smpl .check_txt{
  padding-left: 40px;
  border: none;
  background: transparent;
}
.ipt_check.smpl .check_txt::before{
  left: 0;
  background: #fff;
}
.ipt_check.smpl input:checked + .check_txt::after{left: 0;}

/*-----------------------------------------*/
/*textarea*/
/*-----------------------------------------*/

textarea{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 14px 14px 14px;
  border: #C7C7C7 1px solid;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: #FFF;
  -webkit-box-shadow: inset 2px 2px 2px 0 rgba(100,100,100,0.1);
  box-shadow: inset 2px 2px 2px 0 rgba(100,100,100,0.1);
  font-size: 16px;
  line-height: 1;
}

.err textarea,
textarea.err{
  padding-top: 18px;
  padding-bottom: 17px;
  padding-left: 13px;
}