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

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

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

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

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

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

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

.form-control {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control:focus {
  border-color: #d86c7e;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(135, 36, 52, 0.6);
}
.form-control.styleinvalid {
  border: none !important;
  pointer-events: none;
}
.form-control.styleinvalid:focus {
  border: none !important;
  box-shadow: none;
}

@supports (-ms-ime-align: auto) {
  select.form-control {
    padding: 0.375rem 0.75rem 0.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;
}

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

.readonly {
  pointer-events: none;
  border: none;
  padding: 0;
  font-size: 1rem;
  color: #000;
}

.select-wrap {
  position: relative;
}
.select-wrap .form-control {
  padding-right: 30px;
}
.select-wrap:before {
  z-index: 1;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0%, -50%);
  pointer-events: none;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-weight: 900;
}
.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;
          appearance: none;
}

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

.textArea {
  margin-top: 5px;
  font-size: 0.875rem;
  line-height: 1rem;
}
.textArea p {
  margin-top: 5px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
@media screen and (max-width: 768px) {
  .row {
    margin: 0;
  }
}

.input-box {
  margin-top: 10px;
  /*
  &.width-2-wide {
    align-items: center
  }

  &.width-2-wide li {
    max-width: calc(100% / 3);
    display: flex;
    align-items: center;

    &.wide-cell {
      max-width: calc(100% / 1.5);
    }
  }
  */
}
.input-box:first-child {
  margin-top: 0;
}
.input-box ul {
  display: flex;
  margin: 0 -10px;
}
@media screen and (max-width: 768px) {
  .input-box ul {
    flex-wrap: wrap;
    margin: -10px 0 0;
  }
}
.input-box li {
  padding: 0 10px;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .input-box li {
    padding: 0;
    margin-top: 10px;
    max-width: 100% !important;
    width: 100% !important;
  }
}

.input-box.width-1 li {
  max-width: calc(100% / 1);
}

.input-box.width-2 li {
  max-width: calc(100% / 2);
}

.input-box.width-3 li {
  max-width: calc(100% / 3);
}

.input-box.width-4 li {
  max-width: calc(100% / 4);
}

.input-box.width-5 li {
  max-width: calc(100% / 5);
}

.input-box.width-6 li {
  max-width: calc(100% / 6);
}

.input-box.width-7 li {
  max-width: calc(100% / 7);
}

.input-box.width-8 li {
  max-width: calc(100% / 8);
}

.input-box.width-9 li {
  max-width: calc(100% / 9);
}

.input-box.width-10 li {
  max-width: calc(100% / 10);
}

.input-box.width-11 li {
  max-width: calc(100% / 11);
}

.input-box.width-12 li {
  max-width: calc(100% / 12);
}

.row {
  margin-top: 10px;
}
.row:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .row {
    margin: 0;
  }
}

.col-sm-1,
.col-md-1,
.col-lg-1 {
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .col-sm-1,
.col-md-1,
.col-lg-1 {
    padding: 0;
  }
}

.col-lg-1 {
  width: calc(100% * 1 / 12);
}

@media screen and (min-width: 768px) and (max-width:992px) {
  .col-md-1 {
    width: calc(100% * 1 / 12);
  }
}
@media screen and (max-width: 768px) {
  .col-sm-1 {
    width: calc(100% * 1 / 12);
  }
}
@media screen and (min-width: 768px) and (max-width:992px) {
  .col-md-1,
.col-lg-1 {
    margin-top: 10px;
  }
  .col-md-1:nth-child(1), .col-md-1:nth-child(2),
.col-lg-1:nth-child(1),
.col-lg-1:nth-child(2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .col-md-1,
.col-lg-1 {
    width: 100%;
    margin-top: 10px;
  }
  .col-md-1:first-child,
.col-lg-1:first-child {
    margin-top: 0;
  }
}
.col-sm-2,
.col-md-2,
.col-lg-2 {
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .col-sm-2,
.col-md-2,
.col-lg-2 {
    padding: 0;
  }
}

.col-lg-2 {
  width: calc(100% * 2 / 12);
}

@media screen and (min-width: 768px) and (max-width:992px) {
  .col-md-2 {
    width: calc(100% * 2 / 12);
  }
}
@media screen and (max-width: 768px) {
  .col-sm-2 {
    width: calc(100% * 2 / 12);
  }
}
@media screen and (min-width: 768px) and (max-width:992px) {
  .col-md-2,
.col-lg-2 {
    margin-top: 10px;
  }
  .col-md-2:nth-child(1), .col-md-2:nth-child(2),
.col-lg-2:nth-child(1),
.col-lg-2:nth-child(2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .col-md-2,
.col-lg-2 {
    width: 100%;
    margin-top: 10px;
  }
  .col-md-2:first-child,
.col-lg-2:first-child {
    margin-top: 0;
  }
}
.col-sm-3,
.col-md-3,
.col-lg-3 {
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .col-sm-3,
.col-md-3,
.col-lg-3 {
    padding: 0;
  }
}

.col-lg-3 {
  width: calc(100% * 3 / 12);
}

@media screen and (min-width: 768px) and (max-width:992px) {
  .col-md-3 {
    width: calc(100% * 3 / 12);
  }
}
@media screen and (max-width: 768px) {
  .col-sm-3 {
    width: calc(100% * 3 / 12);
  }
}
@media screen and (min-width: 768px) and (max-width:992px) {
  .col-md-3,
.col-lg-3 {
    margin-top: 10px;
  }
  .col-md-3:nth-child(1), .col-md-3:nth-child(2),
.col-lg-3:nth-child(1),
.col-lg-3:nth-child(2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .col-md-3,
.col-lg-3 {
    width: 100%;
    margin-top: 10px;
  }
  .col-md-3:first-child,
.col-lg-3:first-child {
    margin-top: 0;
  }
}
.col-sm-4,
.col-md-4,
.col-lg-4 {
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .col-sm-4,
.col-md-4,
.col-lg-4 {
    padding: 0;
  }
}

.col-lg-4 {
  width: calc(100% * 4 / 12);
}

@media screen and (min-width: 768px) and (max-width:992px) {
  .col-md-4 {
    width: calc(100% * 4 / 12);
  }
}
@media screen and (max-width: 768px) {
  .col-sm-4 {
    width: calc(100% * 4 / 12);
  }
}
@media screen and (min-width: 768px) and (max-width:992px) {
  .col-md-4,
.col-lg-4 {
    margin-top: 10px;
  }
  .col-md-4:nth-child(1), .col-md-4:nth-child(2),
.col-lg-4:nth-child(1),
.col-lg-4:nth-child(2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .col-md-4,
.col-lg-4 {
    width: 100%;
    margin-top: 10px;
  }
  .col-md-4:first-child,
.col-lg-4:first-child {
    margin-top: 0;
  }
}
.col-sm-5,
.col-md-5,
.col-lg-5 {
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .col-sm-5,
.col-md-5,
.col-lg-5 {
    padding: 0;
  }
}

.col-lg-5 {
  width: calc(100% * 5 / 12);
}

@media screen and (min-width: 768px) and (max-width:992px) {
  .col-md-5 {
    width: calc(100% * 5 / 12);
  }
}
@media screen and (max-width: 768px) {
  .col-sm-5 {
    width: calc(100% * 5 / 12);
  }
}
@media screen and (min-width: 768px) and (max-width:992px) {
  .col-md-5,
.col-lg-5 {
    margin-top: 10px;
  }
  .col-md-5:nth-child(1), .col-md-5:nth-child(2),
.col-lg-5:nth-child(1),
.col-lg-5:nth-child(2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .col-md-5,
.col-lg-5 {
    width: 100%;
    margin-top: 10px;
  }
  .col-md-5:first-child,
.col-lg-5:first-child {
    margin-top: 0;
  }
}
.col-sm-6,
.col-md-6,
.col-lg-6 {
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .col-sm-6,
.col-md-6,
.col-lg-6 {
    padding: 0;
  }
}

.col-lg-6 {
  width: calc(100% * 6 / 12);
}

@media screen and (min-width: 768px) and (max-width:992px) {
  .col-md-6 {
    width: calc(100% * 6 / 12);
  }
}
@media screen and (max-width: 768px) {
  .col-sm-6 {
    width: calc(100% * 6 / 12);
  }
}
@media screen and (min-width: 768px) and (max-width:992px) {
  .col-md-6,
.col-lg-6 {
    margin-top: 10px;
  }
  .col-md-6:nth-child(1), .col-md-6:nth-child(2),
.col-lg-6:nth-child(1),
.col-lg-6:nth-child(2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .col-md-6,
.col-lg-6 {
    width: 100%;
    margin-top: 10px;
  }
  .col-md-6:first-child,
.col-lg-6:first-child {
    margin-top: 0;
  }
}
.col-sm-7,
.col-md-7,
.col-lg-7 {
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .col-sm-7,
.col-md-7,
.col-lg-7 {
    padding: 0;
  }
}

.col-lg-7 {
  width: calc(100% * 7 / 12);
}

@media screen and (min-width: 768px) and (max-width:992px) {
  .col-md-7 {
    width: calc(100% * 7 / 12);
  }
}
@media screen and (max-width: 768px) {
  .col-sm-7 {
    width: calc(100% * 7 / 12);
  }
}
@media screen and (min-width: 768px) and (max-width:992px) {
  .col-md-7,
.col-lg-7 {
    margin-top: 10px;
  }
  .col-md-7:nth-child(1), .col-md-7:nth-child(2),
.col-lg-7:nth-child(1),
.col-lg-7:nth-child(2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .col-md-7,
.col-lg-7 {
    width: 100%;
    margin-top: 10px;
  }
  .col-md-7:first-child,
.col-lg-7:first-child {
    margin-top: 0;
  }
}
.col-sm-8,
.col-md-8,
.col-lg-8 {
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .col-sm-8,
.col-md-8,
.col-lg-8 {
    padding: 0;
  }
}

.col-lg-8 {
  width: calc(100% * 8 / 12);
}

@media screen and (min-width: 768px) and (max-width:992px) {
  .col-md-8 {
    width: calc(100% * 8 / 12);
  }
}
@media screen and (max-width: 768px) {
  .col-sm-8 {
    width: calc(100% * 8 / 12);
  }
}
@media screen and (min-width: 768px) and (max-width:992px) {
  .col-md-8,
.col-lg-8 {
    margin-top: 10px;
  }
  .col-md-8:nth-child(1), .col-md-8:nth-child(2),
.col-lg-8:nth-child(1),
.col-lg-8:nth-child(2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .col-md-8,
.col-lg-8 {
    width: 100%;
    margin-top: 10px;
  }
  .col-md-8:first-child,
.col-lg-8:first-child {
    margin-top: 0;
  }
}
.col-sm-9,
.col-md-9,
.col-lg-9 {
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .col-sm-9,
.col-md-9,
.col-lg-9 {
    padding: 0;
  }
}

.col-lg-9 {
  width: calc(100% * 9 / 12);
}

@media screen and (min-width: 768px) and (max-width:992px) {
  .col-md-9 {
    width: calc(100% * 9 / 12);
  }
}
@media screen and (max-width: 768px) {
  .col-sm-9 {
    width: calc(100% * 9 / 12);
  }
}
@media screen and (min-width: 768px) and (max-width:992px) {
  .col-md-9,
.col-lg-9 {
    margin-top: 10px;
  }
  .col-md-9:nth-child(1), .col-md-9:nth-child(2),
.col-lg-9:nth-child(1),
.col-lg-9:nth-child(2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .col-md-9,
.col-lg-9 {
    width: 100%;
    margin-top: 10px;
  }
  .col-md-9:first-child,
.col-lg-9:first-child {
    margin-top: 0;
  }
}
.col-sm-10,
.col-md-10,
.col-lg-10 {
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .col-sm-10,
.col-md-10,
.col-lg-10 {
    padding: 0;
  }
}

.col-lg-10 {
  width: calc(100% * 10 / 12);
}

@media screen and (min-width: 768px) and (max-width:992px) {
  .col-md-10 {
    width: calc(100% * 10 / 12);
  }
}
@media screen and (max-width: 768px) {
  .col-sm-10 {
    width: calc(100% * 10 / 12);
  }
}
@media screen and (min-width: 768px) and (max-width:992px) {
  .col-md-10,
.col-lg-10 {
    margin-top: 10px;
  }
  .col-md-10:nth-child(1), .col-md-10:nth-child(2),
.col-lg-10:nth-child(1),
.col-lg-10:nth-child(2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .col-md-10,
.col-lg-10 {
    width: 100%;
    margin-top: 10px;
  }
  .col-md-10:first-child,
.col-lg-10:first-child {
    margin-top: 0;
  }
}
.col-sm-11,
.col-md-11,
.col-lg-11 {
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .col-sm-11,
.col-md-11,
.col-lg-11 {
    padding: 0;
  }
}

.col-lg-11 {
  width: calc(100% * 11 / 12);
}

@media screen and (min-width: 768px) and (max-width:992px) {
  .col-md-11 {
    width: calc(100% * 11 / 12);
  }
}
@media screen and (max-width: 768px) {
  .col-sm-11 {
    width: calc(100% * 11 / 12);
  }
}
@media screen and (min-width: 768px) and (max-width:992px) {
  .col-md-11,
.col-lg-11 {
    margin-top: 10px;
  }
  .col-md-11:nth-child(1), .col-md-11:nth-child(2),
.col-lg-11:nth-child(1),
.col-lg-11:nth-child(2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .col-md-11,
.col-lg-11 {
    width: 100%;
    margin-top: 10px;
  }
  .col-md-11:first-child,
.col-lg-11:first-child {
    margin-top: 0;
  }
}
.col-sm-12,
.col-md-12,
.col-lg-12 {
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .col-sm-12,
.col-md-12,
.col-lg-12 {
    padding: 0;
  }
}

.col-lg-12 {
  width: calc(100% * 12 / 12);
}

@media screen and (min-width: 768px) and (max-width:992px) {
  .col-md-12 {
    width: calc(100% * 12 / 12);
  }
}
@media screen and (max-width: 768px) {
  .col-sm-12 {
    width: calc(100% * 12 / 12);
  }
}
@media screen and (min-width: 768px) and (max-width:992px) {
  .col-md-12,
.col-lg-12 {
    margin-top: 10px;
  }
  .col-md-12:nth-child(1), .col-md-12:nth-child(2),
.col-lg-12:nth-child(1),
.col-lg-12:nth-child(2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .col-md-12,
.col-lg-12 {
    width: 100%;
    margin-top: 10px;
  }
  .col-md-12:first-child,
.col-lg-12:first-child {
    margin-top: 0;
  }
}
.addon {
  display: flex;
}
.addon .select-wrap {
  display: inline-block;
  flex: 1 1 auto;
  width: 1% !important;
}
.addon input.form-control {
  flex: 1 1 auto;
  width: 1%;
}
@media screen and (max-width: 768px) {
  .addon input.form-control {
    width: 100%;
  }
}
.addon label {
  background-color: #ddd;
  border-radius: 0 0.25rem 0.25rem 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-top: 1px solid #ced4da;
  border-bottom: 1px solid #ced4da;
}
.addon label span {
  display: block;
  min-width: 80px;
  text-align: center;
  padding: 0 15px;
}
.addon.addon-btn-right .form-control {
  border-radius: 0.25rem 0 0 0.25rem;
}
.addon.addon-btn-right label {
  border-radius: 0 0.25rem 0.25rem 0;
  border-right: 1px solid #ced4da;
}
.addon.addon-btn-left .form-control {
  border-radius: 0 0.25rem 0.25rem 0;
}
.addon.addon-btn-left label {
  border-radius: 0.25rem 0 0 0.25rem;
  border-left: 1px solid #ced4da;
}
.addon.addon-text {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .addon.addon-text {
    flex-direction: column;
  }
  .addon.addon-text .textArea {
    order: 0;
    margin-bottom: 10px;
  }
  .addon.addon-text input,
.addon.addon-text .select-wrap {
    order: 1;
  }
}
.addon.addon-text-right .textArea {
  margin-left: 0.5em;
}
@media screen and (max-width: 768px) {
  .addon.addon-text-right .textArea {
    width: 100%;
    margin-left: 0;
  }
}
.addon.addon-text-left .textArea {
  margin-right: 0.5em;
}
@media screen and (max-width: 768px) {
  .addon.addon-text-left .textArea {
    width: 100%;
    margin-right: 0;
  }
}
.addon.input-smail {
  flex-direction: row;
}
.addon.input-smail input {
  max-width: 60px;
}
.addon.input-smail p {
  margin-left: 1em;
  order: 2;
}
@media screen and (max-width: 768px) {
  .addon .select-wrap {
    width: 100%;
  }
}
.addon.addon-text-inline {
  align-items: center;
}
.addon.addon-inline-left span {
  margin-right: 0.5em;
}
.addon.addon-inline-right span {
  margin-left: 0.5em;
}
@media screen and (max-width: 768px) {
  .addon.long-text {
    flex-wrap: wrap;
  }
  .addon.long-text span {
    width: 100%;
  }
}

.underbarArea ul {
  align-items: center;
}
.underbarArea ul li {
  max-width: 80px !important;
}
.underbarArea ul li.nm-icon {
  margin: 0 -10px;
  max-width: 24px !important;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .underbarArea ul li.nm-icon {
    margin: 10px 0 0;
  }
}
.underbarArea ul li.first-icon {
  margin: 0;
  max-width: 1.2em !important;
  text-align: center;
}

.radioArea .label_list_item,
.checkboxArea .label_list_item {
  margin-top: 5px;
}
.radioArea .label_list_item:first-child,
.checkboxArea .label_list_item:first-child {
  margin-top: 0;
}
.radioArea .label_list_item label,
.checkboxArea .label_list_item label {
  position: relative;
  display: inline-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: "";
  box-sizing: border-box;
  border-radius: 22px;
  z-index: 0;
  top: 0;
  left: 0;
  background-color: transparent;
  width: 22px;
  height: 22px;
  border: 1px solid #cd445a;
  transition: border 0.2s linear;
}
.radioArea label input[type=radio]:checked + span {
  color: #cd445a;
}
.radioArea label input[type=radio]:checked + span::before {
  border-color: #cd445a !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: "";
  box-sizing: border-box;
  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 #cd445a;
  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: #cd445a;
}
.checkboxArea label input[type=checkbox]:checked + span::before {
  background-color: #cd445a;
  border-color: #cd445a;
}
.checkboxArea label input[type=checkbox]:checked + span:after {
  border: 2px solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.pass-eye {
  position: relative;
  width: 100%;
}
.pass-eye input {
  padding-right: 50px;
}
.pass-eye .field-icon {
  position: absolute;
  top: 2px;
  height: 34px;
  line-height: 34px;
  right: 15px;
  cursor: pointer;
}
.pass-eye .fa-eye-slash::before {
  margin-right: -1px;
  color: #aaa;
}

.pagination {
  display: flex;
  justify-content: center;
  text-align: center;
}
.pagination a {
  display: block;
  padding: 5px 15px;
}
@media screen and (min-width: 993px) {
  .pagination a:hover {
    background-color: #e00000;
    color: #fff;
  }
}
.pagination a.active {
  background-color: #872434;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .pagination a {
    padding: 5px 10px;
  }
}
.pagination .arrows-box {
  border: 1px solid #ced4da;
}
.pagination .arrows-box.left-arrow {
  border-radius: 0.25rem 0 0 0.25rem;
}
.pagination .arrows-box.right-arrow {
  border-radius: 0 0.25rem 0.25rem 0;
}
.pagination ul {
  display: inline-flex;
  border-top: 1px solid #ced4da;
  border-bottom: 1px solid #ced4da;
}
@media screen and (max-width: 768px) {
  .pagination ul {
    overflow-y: hidden;
    overflow-x: scroll;
  }
}
.pagination ul li {
  border-left: 1px solid #ced4da;
}
.pagination ul li:first-child {
  border-left: none;
}

.btnArea.btn-right ul {
  justify-content: flex-start;
}
.btnArea.btn-left ul {
  justify-content: flex-end;
}
.btnArea.btn-center ul {
  justify-content: center;
}
.btnArea.btn-mt {
  margin-top: 30px;
}
.btnArea ul {
  display: flex;
  align-items: center;
  margin: 0 -10px;
}
@media screen and (max-width: 768px) {
  .btnArea ul {
    justify-content: center !important;
    flex-wrap: wrap;
  }
}
.btnArea ul li {
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .btnArea ul li {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
  .btnArea ul li:last-child {
    margin-bottom: 0;
  }
}
.btnArea ul li a {
  display: inline-block;
  padding: 8px 25px;
  border: 1px solid #872434;
  border-radius: 0.25rem;
}
@media screen and (max-width: 768px) {
  .btnArea ul li a {
    text-align: center;
    max-width: 400px;
    width: 100%;
    margin: auto;
  }
}
@media screen and (min-width: 993px) {
  .btnArea ul li a:hover {
    background-color: #e00000;
    border: 1px solid #e00000;
    color: #fff;
  }
}
.btnArea ul li a.next {
  background-color: #872434;
  color: #fff;
}
.btnArea ul li a.next:hover {
  background-color: #e00000;
  border: 1px solid #e00000;
  color: #fff;
}
.btnArea ul li a.back {
  color: #872434;
}
@media screen and (min-width: 993px) {
  .btnArea ul li a.back:hover {
    background-color: #e00000;
    border: 1px solid #e00000;
    color: #fff;
  }
}
.btnArea ul li a.delete {
  background-color: #666666;
  color: #fff;
  border: 1px solid #666666;
}
@media screen and (min-width: 993px) {
  .btnArea ul li a.delete:hover {
    background-color: #e00000;
    border: 1px solid #e00000;
    color: #fff;
  }
}

.req span::after {
  content: "※";
  margin-left: 0.3em;
  color: #ff0000;
  font-weight: bold;
}

.req-text {
  color: #ff0000;
  font-weight: bold;
}

.icon-inline {
  display: inline-block;
}

.iconArea > ul {
  display: flex;
  align-items: center;
  margin: 10px -3px 0;
}
.iconArea > ul li {
  padding: 0 3px;
}
.iconArea > ul li a {
  display: block;
  background-color: #dddddd;
  border: 1px solid #dddddd;
  color: #000;
  padding: 4px 10px;
  border-radius: 0.25rem;
}
@media screen and (max-width: 768px) {
  .iconArea > ul li a {
    font-size: 0.875rem;
    padding: 3px 8px;
  }
}
@media screen and (min-width: 993px) {
  .iconArea > ul li a:hover {
    background-color: #e00000;
    border: 1px solid #e00000;
    color: #fff;
  }
}
.iconArea > ul li a.disabled-icon {
  background-color: #eee;
  border: 1px solid #eee;
  color: #ddd;
  cursor: auto;
}

.labelBox {
  display: inline;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  font-size: 0.75rem;
  padding: 2px 5px;
  vertical-align: bottom;
  border-radius: 0.25rem;
}
.labelBox.labelright {
  margin-left: 0.3em;
}
.labelBox.labelleft {
  margin-right: 0.3em;
}
.labelBox.labelcolor01 {
  background-color: #872434;
}

.progress-tracker {
  margin: 30px auto;
}
.progress-tracker ul {
  display: flex;
  margin: 0px -10px;
  counter-reset: number;
  width: 100%;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .progress-tracker ul {
    margin: 30px 0px;
    justify-content: center;
  }
}
.progress-tracker ul li {
  padding: 0 10px;
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  .progress-tracker ul li {
    display: none;
  }
}
.progress-tracker ul li.active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .progress-tracker ul li.active {
    display: block !important;
  }
}
.progress-tracker ul li span {
  position: relative;
  padding: 0 20px 0 50px;
  display: inline-block;
}
.progress-tracker ul li span::before {
  counter-increment: number;
  content: counter(number);
  background-color: #872434;
  color: #fff;
  padding: 8px 16px;
  border-radius: 50%;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0%, -50%);
}
.progress-tracker ul li span::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0%, -50%);
}
.progress-tracker ul li:last-child span::after {
  content: none;
}

.progress-tracker ul li:nth-child(1) span::before {
  content: "1";
}

.progress-tracker ul li:nth-child(2) span::before {
  content: "2";
}

.progress-tracker ul li:nth-child(3) span::before {
  content: "3";
}

.progress-tracker ul li:nth-child(4) span::before {
  content: "4";
}

.progress-tracker ul li:nth-child(5) span::before {
  content: "5";
}

.progressArea ul {
  display: flex;
  align-items: center;
  margin: 5px -5px 0;
  font-size: 0.875rem;
}
.progressArea ul li {
  padding: 0 5px;
}
.progressArea ul li.barArea {
  width: 100%;
  max-width: 150px;
}
.progressArea .text-bold {
  display: inline-block;
  font-weight: bold;
  color: darkcyan;
  transition: color 0.3s;
}
.progressArea .text-red {
  color: red;
}
.progressArea .text-orange {
  color: orange;
}
.progressArea .progress {
  overflow: hidden;
  width: 100%;
  height: 1em;
  border-radius: 5px;
  border: 1px solid #cdcdcd;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
}
.progressArea #progressbar {
  height: 100%;
  background: darkcyan;
  border-radius: 5px;
  transition: width 0.3s, background-color 0.3s, border-color 0.3s;
}
.progressArea #progressbar.bar-red {
  background: red;
}
.progressArea #progressbar.bar-orange {
  background: orange;
}

@media screen and (max-width: 768px) {
  .birthdayArea.all-item ul {
    margin-top: -10px;
  }
  .birthdayArea.all-item ul li {
    margin-top: 10px;
  }
}
.birthdayArea ul {
  display: flex;
  margin: 0 -5px;
  flex-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .birthdayArea ul {
    flex-wrap: wrap;
  }
}
.birthdayArea li {
  flex-grow: inherit;
  display: flex;
  align-items: center;
  padding: 0 5px;
  width: inherit !important;
}
.birthdayArea li::after {
  margin-left: 5px;
}
.birthdayArea li.year::after {
  content: "年";
}
.birthdayArea li.year .select-wrap {
  width: 80px;
}
.birthdayArea li.moon::after {
  content: "月";
}
.birthdayArea li.moon .select-wrap {
  width: 65px;
}
.birthdayArea li.day::after {
  content: "日";
}
.birthdayArea li.day .select-wrap {
  width: 65px;
}
.birthdayArea li.time::after {
  content: "時";
}
.birthdayArea li.time .select-wrap {
  width: 65px;
}
.birthdayArea li.minutes::after {
  content: "分";
}
.birthdayArea li.minutes .select-wrap {
  width: 65px;
}