@charset "UTF-8";
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
/* ------------------------
  Search
------------------------ */
.p_formWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 0 0;
}

/* 1つのフォームの型 セット */
.p_formBox {
  padding-top: 16px;
  padding-right: 16px;
  position: relative;
  /* ラベル */
  /* 入力エリア */
  /* 共通部分 */
}
.p_formBox .c_inputLabel {
  font-weight: normal;
  text-align: left;
}
.p_formBox .c_inputBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.p_formBox .c_inputBox .c_input {
  border: 1px solid #c0c0c0;
  border-radius: 3px;
  font-size: 1.6rem;
  padding: 2px 8px;
  width: 100%;
}
.p_formBox .c_inputBox .c_input::-webkit-input-placeholder {
  color: #c0c0c0;
}
.p_formBox .c_inputBox .c_input::-moz-placeholder {
  color: #c0c0c0;
}
.p_formBox .c_inputBox .c_input:-ms-input-placeholder {
  color: #c0c0c0;
}
.p_formBox .c_inputBox .c_input::-ms-input-placeholder {
  color: #c0c0c0;
}
.p_formBox .c_inputBox .c_input::placeholder {
  color: #c0c0c0;
}
.p_formBox .c_inputBox .c_input.c_password {
  padding: 2px 30px 2px 8px;
}
.p_formBox .c_inputBox .c_label {
  display: inline-block;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  margin-right: 0;
  min-width: auto;
  max-width: 100%;
  width: 100%;
}
.p_formBox .c_label {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: left;
}
.p_formBox .c_inputWrap {
  position: relative;
  width: 100%;
}

/* overwrite */
.form-select {
  display: inline-block;
  background-image: none;
}

/* select box */
.c_inputSelectWrap {
  margin-top: 8px;
  position: relative;
  width: 100%;
}
.c_inputSelectWrap::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 6px;
  pointer-events: none;
  border-style: solid;
  border-width: 6px 4px 0 4px;
  border-color: #333333 transparent transparent transparent;
  display: inline-block;
  width: 0;
  height: 0;
}
.c_inputSelectWrap .c_selectBox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  padding: 5px 4px;
  border: 1px solid #c0c0c0;
  border-radius: 3px;
  color: #333333;
  font-size: 1.6rem;
  cursor: pointer;
  width: 100%;
  min-width: 174px;
}

/* checkbox */
.c_formCheckBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c_formCheckBox .p_formBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: auto;
  max-width: 100%;
}
.c_formCheckBox .c_inputCheckBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  min-width: auto;
  max-width: 100%;
  width: auto;
}
.c_formCheckBox .c_checkbox {
  font-size: 1.4rem;
  display: inline-block;
  min-width: 18px;
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-right: 8px;
}
.c_formCheckBox .c_inputCheckBoxLabel {
  width: auto;
  margin-right: 16px;
  text-align: left;
}
.c_formCheckBox .c_inputWrap {
  margin-top: 0;
}

/* radioBtn */
.c_formRadioBox .p_formBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: auto;
  max-width: 100%;
}
.c_formRadioBox .c_inputBox {
  width: auto;
}
.c_formRadioBox .c_inputLabel {
  min-width: auto;
  max-width: 100%;
}
.c_formRadioBox .c_radiobox {
  font-size: 1.4rem;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  display: inline-block;
  min-width: 18px;
  width: 18px;
  margin-right: 8px;
  min-height: 18px;
  height: 18px;
  position: relative;
  border: 1px solid #333333;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.c_formRadioBox .c_radiobox:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000;
}
.c_formRadioBox .c_label {
  min-width: auto;
  max-width: 100%;
  text-align: left;
  width: 100%;
  -ms-flex-preferred-size: 95%;
      flex-basis: 95%;
  margin-right: 0;
}

/******** カレンダー入力 ********/
.c_calendar .c_input {
  position: relative;
}
.c_calendar .i_calendar {
  position: absolute;
  right: 8px;
  top: 6px;
}

.c_label {
  display: inline-block;
  font-size: 1.4rem;
}

.c_inputWrap {
  display: block;
  margin-top: 5px;
  position: relative;
}

/********  パスワード表示　/　非表示 ********/
.c_inputWrap._pass .i_eye {
  position: absolute;
  top: 0;
  right: 0;
}
.c_inputWrap._pass .i_eye::before {
  content: "\e8f4";
  font-family: "Material Icons";
  font-style: normal;
  display: inline-block;
  position: absolute;
  right: 0;
  font-size: 2.2rem;
  background-color: #c0c0c0;
  width: 32px;
  height: 30px;
  border-radius: 0 2px 2px 0;
  top: 0;
  color: #ffffff;
  font-weight: 200;
  line-height: 1.3;
  padding-left: 6px;
}
.c_inputWrap._pass .i_closeEye {
  position: absolute;
  top: 0;
  right: 0;
}
.c_inputWrap._pass .i_closeEye::before {
  content: "\e8f5";
  font-family: "Material Icons";
  font-style: normal;
  display: inline-block;
  position: absolute;
  right: 0;
  font-size: 2.2rem;
  background-color: #c0c0c0;
  width: 32px;
  height: 30px;
  border-radius: 0 2px 2px 0;
  top: 0;
  color: #ffffff;
  font-weight: 200;
  line-height: 1.3;
  padding-left: 6px;
}