@charset "UTF-8";
/*!
*******************************************

このCSSはSassで記述されています。
修正する場合は「.scss」を修正してください。

*******************************************
*/
/* Scss Document */
html {
  font-size: 16px;
  line-height: 1.5rem;
}

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%;
  padding: 6px 12px;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -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: #82a6dc;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

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

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

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

.error .form-control,
.error .radioArea label:before,
.error .checkboxArea label:before,
.error textarea {
  border: 1px solid #ff0000;
}

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

.disabled .form-control {
  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: 10px;
  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;
}

.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 #82a6dc;
  -webkit-transition: border 0.2s linear;
  -o-transition: border 0.2s linear;
  transition: border 0.2s linear;
}

.radioArea label input[type="radio"]:checked + span::before {
  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: #ff9751;
}

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

.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);
}
