@charset "UTF-8";

/* --------------------------------------------------
 contact
-------------------------------------------------- */

/* required , n-required ------------------------- */

.required, .n-required {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  margin: 0 5px;
  padding: 0;
  text-align: center;
  line-height: 1.8;
  width: 40px;
  border-radius: 3px;
}

.required {
  background-color: #f02424;
}

.n-required {
  background-color: #999999;
}

.error-txt:empty {
  display: none;
}

.error-txt {
  color: #f02323;
  position: relative;
  padding-left: 25px;
  margin-top: 10px;
}

.error-txt:not(:empty)::before {
  font-family: "Font Awesome 5 Free";
  content: '\f06a';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 18px;
}

.focus-animation {
  border: 1px solid #cdcdcd;
  padding: 10px 10px;
  outline: 0;
  color: #363636;
  box-sizing: border-box;
}

.middle-width {
  width: 50%;
}

.focus-animation:focus {
  border: 1px solid rgba(1, 88, 162, 0.7);
  box-shadow: 0 0 5px rgba(1, 88, 162, 0.5), 0 0 10px rgba(1, 88, 162, 0.5);
  outline: medium none;
}

.narrow-width {
  width: 150px;
}

.full-width {
  width: 100%;
}

.small-width {
  width: 35%;
}

input::placeholder {
  color: #969696;
}

@media screen and (max-width:640px) {
  .middle-width {
    width: 80%;
  }

  .small-width {
    width: 50%;
  }
}

@media screen and (max-width:480px) {
  .middle-width {
    width: 100%;
  }

  .small-width {
    width: 100%;
  }
}

/* required-txt ------------------------- */

.required-txt {
  margin-bottom: 3rem;
}

@media screen and (max-width:640px) {
  .required-txt {
    margin-bottom: 1rem;
  }
}

/* privacy ------------------------- */

@media screen and (min-width:1001px) {
  .privacy-txt .link:hover {
    color: #0158a2;
  }
}

.privacy-txt {
  margin-top: 2rem;
  display: block;
  box-sizing: border-box;
}

.privacy-txt .link {
  display: inline-block;
  color: #363636;
}

.privacy-txt p+.link {
  margin-top: 1rem;
}

#privacy .privacy-inner {
  background-image: url(../img/top/contact_bg01.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width:640px) {
  .privacy-txt {
    margin-top: 1rem;
  }
}

/* --------------------------------------------------
 #contact
-------------------------------------------------- */

#contact .contact-inner {
  background-image: url(../img/top/contact_bg01.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* --------------------------------------------------
listStyle01
-------------------------------------------------- */

.listStyle01 {
  counter-reset: section;
}

.listStyle01 li:first-child {
  margin-top: 0;
}

.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;
  }
}