@charset "UTF-8";
/*!
*******************************************

このCSSはSassで記述されています。
修正する場合は「.scss」を修正してください。

*******************************************
*/
/* Scss Document */
input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* text */
input::-ms-clear {
  visibility: hidden;
}

/* password */
input::-ms-reveal {
  visibility: hidden;
}

textarea {
  resize: vertical;
  min-height: 10em;
}

.form-control {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
}

.form-control:focus {
  border-color: rgba(0, 130, 88, 0.2) !important;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 130, 88, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 130, 88, 0.6);
}

@supports (-ms-ime-align: auto) {
  select.form-control {
    padding: .375rem .75rem .075rem;
  }
}

/* Chrome */
::-webkit-input-placeholder {
  color: #aaa;
}

/* Firefox */
::-moz-placeholder {
  color: #aaa;
}

/* IE */
:-ms-input-placeholder {
  color: #aaa;
}

.error .form-control,
.error .radioArea label input[type="radio"] + span::before,
.error .checkboxArea label input[type="checkbox"] + span::before,
.error textarea {
  border-color: #ff0000;
}

.error .format_error {
  color: #ff0000;
  margin-top: 5px;
}

.error p {
  color: #ff0000;
}

.disabled .form-control,
.disabled button:disabled {
  background-color: #eee;
  cursor: no-drop;
}

.disabled .radioArea label,
.disabled .checkboxArea label {
  cursor: no-drop;
}

.disabled .radioArea label:hover:before, .disabled .radioArea label:before,
.disabled .checkboxArea label:hover:before,
.disabled .checkboxArea label:before {
  background-color: #dedede;
  cursor: no-drop;
}

.select-wrap {
  position: relative;
}

.select-wrap .form-control {
  padding-right: 30px;
}

.select-wrap:before {
  z-index: 1;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  content: "\f0d7";
  font-family: FontAwesome;
  pointer-events: none;
}

.select-wrap .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.radioArea .label_list_item label,
.checkboxArea .label_list_item label {
  position: relative;
  display: block;
  word-break: break-all;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.radioArea .label_list_item label span,
.checkboxArea .label_list_item label span {
  display: inline-block;
  padding-left: 30px;
  cursor: pointer;
}

.radioArea label input[type="checkbox"],
.radioArea label input[type="radio"],
.checkboxArea label input[type="checkbox"],
.checkboxArea label input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.radioArea input[type="checkbox"] + span,
.checkboxArea input[type="radio"] + span {
  position: relative;
}

.radioArea label input[type="radio"] + span::before {
  position: absolute;
  display: inline-block;
  content: '';
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 22px;
  z-index: 0;
  top: 0;
  left: 0;
  background-color: transparent;
  width: 22px;
  height: 22px;
  border: 1px solid #2f4e9d;
  -webkit-transition: border 0.2s linear;
  -o-transition: border 0.2s linear;
  transition: border 0.2s linear;
}

.radioArea label input[type="radio"]:checked + span {
  color: #2f4e9d;
}

.radioArea label input[type="radio"]:checked + span::before {
  border-color: #2f4e9d !important;
  border-width: 6px;
}

.checkboxArea label input[type="checkbox"] + span::before, .checkboxArea label input[type="checkbox"] + span::after {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  content: '';
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}

.checkboxArea label input[type="checkbox"] + span::before {
  z-index: 0;
  background-color: transparent;
  width: 22px;
  height: 22px;
  border: 1px solid #999999;
  border-radius: 5px;
}

.checkboxArea label input[type="checkbox"] + span::after {
  z-index: 1;
  margin: 5px 8px;
  width: 6px;
  height: 9px;
}

.checkboxArea label input[type="checkbox"]:checked + span {
  color: #2f4e9d;
}

.checkboxArea label input[type="checkbox"]:checked + span::before {
  background-color: #2f4e9d;
  border-color: #2f4e9d;
}

.checkboxArea label input[type="checkbox"]:checked + span:after {
  border: 2px solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
