@charset "UTF-8";

/* --------------------------------------------------
 required
-------------------------------------------------- */

.required,
.n_required {
  background-color: #f02323;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  margin: 0 5px;
  padding: 0;
  text-align: center;
  line-height: 23px;
  width: 40px;
  border-radius: 3px;
}

.n_required {
  background-color: #999;
}

/* --------------------------------------------------
 error-txt
-------------------------------------------------- */

.error-txt {
  color: #f02323;
}

.error-txt {
  color: #f02323;
  position: relative;
  padding-left: 25px;
  margin-top: 10px;
}

.error-txt:empty {
  display: none;
}

.error-txt:not(:empty)::before {
  font-family: "Font Awesome 5 Free";
  content: '\f06a';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}

/* --------------------------------------------------
 focusAnimation
-------------------------------------------------- */

.focus-animation {
  border: 1px solid #d9d9d9;
  padding: 10px 10px;
  outline: 0;
  color: #333;
  box-sizing: border-box;
  transition: all ease-in 0.3s;
}

/* --------------------------------------------------
 input width
-------------------------------------------------- */

.full-width {
  width: 100%;
  box-sizing: border-box;
}

.middle-width {
  width: 70%;
  box-sizing: border-box;
}

.small-width {
  width: 30%;
  box-sizing: border-box;
}

.narrow-width {
  width: 250px;
  box-sizing: border-box;
}

/* --------------------------------------------------
 tbl-form
-------------------------------------------------- */

.tbl-form th {
  width: 30%;
  font-weight: bold;
}

.tbl-form td {
  width: 70%;
}

.tbl-form th,
.tbl-form td {
  padding: 40px 20px;
  border-bottom: 1px solid #d9d9d9;
  box-sizing: border-box;
}

.tbl-form td label {
  margin-right: 1rem;
}

.tbl-form td label:last-child {
  margin-right: 0;
}

@media screen and (max-width:640px) {

  .tbl-form th,
  .tbl-form td {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .tbl-form th {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .tbl-form td {
    padding-top: 20px;
  }

  .tbl-form tr:first-child th {
    padding-top: 20px;
  }
}
/* --------------------------------------------------
listStyle01
-------------------------------------------------- */

.listStyle01 {
  counter-reset: section;
}

.listStyle01 li:first-child {
  margin-top: 5%;
}

.listStyle01 li:last-child {
  margin-bottom: 0;
}

.listStyle01 li {
  padding-left: 20px;
  margin-bottom: 2rem;
  position: relative;
}

.listStyle01 li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2px;
  width: 15px;
  height: 100%;
  counter-increment: section;
  content: " "counter(section) ". ";
}

@media screen and (max-width:640px) {
  .listStyle01 li {
    margin-bottom: 1rem;
  }
}