@charset "UTF-8";
/*
使用色
-------------------------------------------------- */
.text-center {
  text-align: center;
}

.c-red {
  color: #c00;
}

.dn {
  display: none !important;
}

.hissu {
  color: #c00;
}

.error-messeage {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fcffe5;
  color: #c00;
}

.success-messeage {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #3b99b6;
  border-radius: 3px;
  background: #ddf6fd;
  color: #3b99b6;
}

.espf-login-title {
  display: flex;
  align-items: center;
  color: #5b3003;
  font-size: 16px;
}

.espf-login-title svg {
  width: 25px;
  height: 25px;
  margin-right: 5px;
}

.anq-text {
  padding: 8px 15px;
  border: 1px solid #ccc;
  background-color: #f6f6f6;
}

.kiyaku-area {
  margin: 30px auto;
  text-align: center;
}

.kiyaku-area a {
  display: inline-block;
  margin-top: 10px;
  color: #91be6c;
  text-decoration: underline;
}

.kiyaku-area a:hover {
  text-decoration: none;
}

.kiyaku-area .error {
  margin-top: 10px;
  margin-bottom: 0;
  color: #c00;
  font-size: 12px;
  line-height: 150%;
}

.espf-btn-area {
  margin: 30px auto 20px;
  text-align: center;
}

.espf-btn-area-login {
  margin: 15px auto 15px;
  text-align: center;
}

.espf-btn-area-bf {
  margin: 20px auto 0;
  text-align: center;
}

p + .espf-btn-area-bf {
  margin-top: 15px;
}

.espf-btn {
  display: inline-block;
  min-width: 100px;
  max-width: 500px;
  padding: 7px 15px;
  transition: background-color .3s, color .3s;
  border-radius: 3px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: white !important;
  text-decoration: none !important;
}

.espf-btn + .espf-btn {
  margin-left: 15px;
}

.btn-submit {
  border: 3px solid #91be6c;
  background-color: #91be6c;
}

.btn-submit:disabled {
  opacity: .5;
  cursor: not-allowed !important;
}

.btn-submit:hover {
  background-color: white !important;
  color: #91be6c !important;
}

.btn-back {
  border: 3px solid #8a8a8a;
  background-color: #8a8a8a;
  color: white;
}

.btn-back:hover {
  border: 3px solid #8a8a8a;
  background-color: white;
  color: #8a8a8a;
}

.loading {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  will-change: inherit;
}

.loading .loading-img {
  position: fixed;
  top: calc(50% - 42px/2);
  left: calc(50% - 180px/2);
  width: 180px !important;
  height: 42px !important;
  -webkit-animation: loading-img .5s infinite alternate;
          animation: loading-img .5s infinite alternate;
  background-image: url("../img/loading.png");
  background-size: 180px 42px;
}

@-webkit-keyframes loading-img {
  0% {
    opacity: .1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes loading-img {
  0% {
    opacity: .1;
  }
  100% {
    opacity: 1;
  }
}

.contents .text .esp-form p {
  margin: 3px 15px 0 !important;
  line-height: normal;
}

.contents .text .esp-form p.error {
  margin: 8px 0 0 2px !important;
}

.esp-form {
  border-radius: 5px;
  background-color: #e5f1dd;
}

.esp-form p {
  margin: 3px 15px 0;
  line-height: normal;
}

.esp-form p.error {
  margin: 8px 0 0 2px !important;
  margin-bottom: 0;
  color: #c00;
  font-size: 12px;
  line-height: 150%;
}

.esp-form .error + .error {
  margin-top: 6px;
}

.esp-form textarea {
  box-sizing: border-box;
  width: 100%;
  height: 300px;
  margin-top: 5px;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: white;
  font-size: 16px;
}

.esp-form .row {
  border-top: 2px solid white;
}

.esp-form .row:first-child {
  border-top: 0;
}

.esp-form .row .title {
  display: flex;
  align-items: center;
  padding: 14px 15px 0 17px;
  color: #101114;
  font-size: 14px;
  font-weight: bold;
}

.esp-form .row .required::before {
  content: "※";
  margin-right: 5px;
  margin-bottom: 5px;
  color: #c00;
}

.esp-form .row .input-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 5px 15px 17px;
}

.esp-form .row .input-area-sub {
  display: flex;
  align-items: center;
}

.esp-form .row .input-area-sub .sub-title {
  display: inline-block;
  padding-right: 15px;
}

.esp-form .row .input-area-sub .sub-title-address {
  display: inline-block;
  width: 100px;
  padding-right: 15px;
  text-align: right;
}

.esp-form .row .input-area-sub .address-info {
  margin-top: -10px;
}

.esp-form .row .input-area-sub + .input-area-sub {
  margin-top: 15px;
}

.esp-form input[type="text"], .esp-form input[type="email"], .esp-form input[type="tel"], .esp-form input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #e5e5e5;
  font-size: 16px;
}

.esp-form .check-box {
  margin-top: 3px;
}

.esp-form .check-box + .check-box {
  margin-top: 10px;
}

.esp-form input[type="checkbox"] {
  display: none !important;
}

.esp-form input[type="checkbox"] + label {
  display: block;
  position: relative;
  margin-bottom: 20px;
  padding-left: 32px;
  font-size: 15px;
  cursor: pointer;
}

.esp-form input[type="checkbox"] + label:last-child {
  margin-bottom: 0;
}

.esp-form input[type="checkbox"] + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  transition: all .12s, border .08s;
  border: 2px solid #51a30d;
  background-color: white;
}

.esp-form input[type="checkbox"]:checked + label:before {
  top: -4px;
  left: 4px;
  width: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border: 3px solid #51a30d;
  border-radius: 0;
  border-top-color: transparent;
  border-left-color: transparent;
  background-color: transparent;
}

.esp-form .radio-box {
  margin-top: 5px;
}

.esp-form .radio-box + .radio-box {
  margin-top: 10px;
}

.esp-form .radio-box label {
  cursor: pointer;
}

.esp-form .radio-box input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.esp-form .radio-box input[type="radio"] + .radio-label:empty:before {
  margin-right: 0;
}

.esp-form .radio-box input[type="radio"] + .radio-label:before {
  content: "";
  display: inline-block;
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  transition: all 250ms;
  border: 2px solid #51a30d;
  border-radius: 100%;
  background: white;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
}

.esp-form .radio-box input[type="radio"]:checked + .radio-label:before {
  background-color: #51a30d;
  box-shadow: inset 0 0 0 4px white;
}

.esp-form .radio-box input[type="radio"]:focus + .radio-label:before {
  border-color: #51a30d;
  outline: none;
}

.esp-form .radio-box input[type="radio"]:disabled + .radio-label:before {
  border-color: #bfbfbf;
  background: #bfbfbf;
  box-shadow: inset 0 0 0 4px white;
}

.esp-form .espf-select {
  width: 100%;
  margin: 3px 0 0 0;
  overflow: hidden;
  text-align: center;
}

.esp-form .espf-select + .espf-select {
  margin-top: 10px;
}

.esp-form .espf-select select {
  width: 100%;
  padding-right: 1em;
  border: 0;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  text-indent: .01px;
  text-overflow: ellipsis;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.esp-form .espf-select select::-ms-expand {
  display: none;
}

.esp-form .espf-select.sl01 {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 2px;
  background: white;
}

.esp-form .espf-select.sl01::before {
  content: "";
  position: absolute;
  top: .8em;
  right: .9em;
  width: 0;
  height: 0;
  padding: 0;
  border-top: 6px solid #51a30d;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  pointer-events: none;
}

.esp-form .espf-select.sl01 select {
  padding: 8px 38px 8px 8px;
}

.espf-confirm .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

/* ブレイクポイント
-------------------------------------------------- */
@media all and (max-width: 767px) {
  .pc {
    display: none;
  }
  .error-messeage, .success-messeage {
    text-align: left;
  }
  .espf-login-title {
    margin-bottom: 7px !important;
  }
  .esp-form .row .title {
    align-items: baseline;
    line-height: 125%;
  }
  .esp-form .row .input-area {
    padding-top: 0;
  }
  .slideout-panel {
    will-change: contents;
  }
  .esp-form * {
    box-sizing: border-box;
  }
  .post form {
    padding: 0;
    background-color: transparent;
  }
  .post form input[type=password] {
    width: 100%;
  }
  .espf-btn-area {
    margin-bottom: 0;
  }
}

@media all and (min-width: 768px) {
  .sp {
    display: none;
  }
  .register-info {
    text-align: center;
  }
  .espf-login-title {
    margin-bottom: 10px;
  }
}
/*# sourceMappingURL=style.css.map */