@charset "UTF-8";
.back-btn {
  margin: 80px auto 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 255px;
  height: 50px;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.25px;
  white-space: nowrap;
  background: #444;
  border: 1px solid #999;
  border-radius: 0;
  transition: 0.3s;
  -webkit-appearance: none;
}
.back-btn i {
  -webkit-transform: translateX(-8px) translateY(1px);
          transform: translateX(-8px) translateY(1px);
}
.back-btn svg {
  -webkit-transform: translateX(8px) translateY(-1px);
          transform: translateX(8px) translateY(-1px);
}
.back-btn i,
.back-btn svg {
  font-size: 12px;
  color: #999;
  fill: #999;
  transition: 0.3s;
}
.back-btn .btn-arw {
  width: 8px;
}
.back-btn .btn-arw svg {
  -webkit-transform: translateX(-10px) translateY(-1px) rotate(180deg);
          transform: translateX(-10px) translateY(-1px) rotate(180deg);
}

.dot-list > li {
  position: relative;
  padding-left: 15px;
}
.dot-list > li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.modal__content {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 101;
  display: none;
  width: 90%;
  height: 90%;
  padding: 30px 20px;
  overflow-y: scroll;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.modal__content__text {
  padding-bottom: 12px;
  margin-bottom: 12px;
  font-size: 17px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.modal__content__text--02 {
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 2.154;
}
.modal__content .close__btn a {
  width: calc(100% - 20px);
  cursor: pointer;
}

.foot__content {
  padding: 50px 20px 0;
}
.foot__content__text {
  padding-bottom: 15px;
  margin-bottom: 15px;
  font-size: 17px;
  border-bottom: 1px solid #ddd;
}
.foot__content__text--02 {
  font-size: 14px;
  line-height: 2;
}

.modal__content.is-active {
  display: block;
}

.modal__cover {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
}

.l-header__cover {
  transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1), visibility 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.modal_cover.is-active {
  z-index: 101;
  background-color: rgba(0, 0, 0, 0.7);
  transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1), visibility 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-modal-cover] {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
}
[data-modal-cover].is-active {
  visibility: visible;
  opacity: 1;
}

.close__btn .submit-btn.back svg {
  width: 9px;
  height: 9px;
  color: #8a8a8a;
  fill: #8a8a8a;
  transition: 0.3s;
}

.close__btn:hover .submit-btn.back svg {
  color: #fff;
  fill: #fff;
}

.terms {
  padding: 20px;
  margin: 0 20px 40px;
  font-size: 14px;
  text-align: left;
  background: #f3f6f6;
  border: 1px solid #ddd;
}
.terms__txt {
  margin-bottom: 15px;
  font-size: 14px;
}
.terms .txt-wrap {
  font-size: 14px;
}
.terms .checkbox__item {
  font-weight: 600;
}
.terms .checkbox input[type=checkbox] + .checkbox-label {
  background: #fff;
}

.terms.input_area.error .error-txt {
  padding-right: 0;
  padding-left: 0;
}

.terms a {
  text-decoration: underline;
  cursor: pointer;
}
.terms a:hover {
  text-decoration: none;
}

.terms.input_area.error {
  background: #f8e2e5;
  border: 1px solid #f76363;
}

.terms.input_area .error-txt {
  display: none;
}

.terms.input_area.error .error-txt {
  display: block;
  margin-bottom: 20px;
  font-size: 15px;
  color: #f76363;
  background: none;
}

.terms.input_area {
  display: block;
  width: auto;
}

/* 以下パーツへ */
.checkbox__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.checkbox__item--center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox__item .form-item {
  width: 40px;
}

.checkbox input[type=checkbox] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.checkbox input[type=checkbox] + .checkbox-label {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  margin-top: 0;
  font-weight: 400;
  cursor: pointer;
  background: #f6f6f6;
  border: 1px solid #999;
}
.checkbox input[type=checkbox] + .checkbox-label .check-icon {
  position: absolute;
  top: 42%;
  left: 50%;
  transition: 0.3s ease;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.checkbox input[type=checkbox] + .checkbox-label .check-icon svg {
  width: 14px;
  height: 14px;
  fill: #dfdfdf;
}
.checkbox input[type=checkbox] + .checkbox-label .check-txt {
  padding-left: 30px;
  font-weight: 700;
}
.checkbox input[type=checkbox]:checked + .checkbox-label {
  background: #444;
}
.checkbox input[type=checkbox]:checked + .checkbox-label .check-icon svg {
  fill: #fff;
}
.lead__txt {
  margin-bottom: 10px;
  font-size: 17px;
}

.lead__txt--02 {
  margin-bottom: 25px;
}

.modal__text {
  display: inline-block;
  margin-bottom: 25px;
  color: #44b2b2;
  text-decoration: underline;
  cursor: pointer;
}
.modal__text:hover {
  text-decoration: none;
}

.idpw-table {
  margin: 0 auto;
}

.idpw-table::after {
  display: none;
}

.form-content .wid180 {
  width: calc(33% - 2.5em);
}
.form-content .wid250 {
  width: 100%;
}
.form-content .wid360 {
  width: 100%;
}
.form-content .wid420 {
  width: 100%;
}
.form-content .re_enter__txt {
  margin: 20px 0 5px;
  font-weight: 300;
}
.form-content .re_enter__txt--02 {
  display: block;
  margin-right: 0;
  margin-bottom: 5px;
}
.form-content .two-btns--no-wrap {
  margin-top: 40px;
}
.form-content .form-complete-box {
  margin: 0;
}

.form-content-fr0202 {
  margin-top: 0;
}

.form-complete {
  display: flex;
  justify-content: center;
  width: calc(100% - 40px);
  padding: 30px 20px;
  margin: 0 auto 30px;
  border: 1px solid #ddd;
}
.form-complete-box {
  margin: 0 25px;
  text-align: left;
}
.form-complete__title {
  padding-bottom: 30px;
  margin-bottom: 20px;
  font-size: 20px;
  color: #44b2b2;
  border-bottom: 1px solid #ddd;
}
.form-complete__images {
  padding: 0 20px 25px;
  margin-bottom: 20px;
  font-size: 20px;
}
.form-complete__title--02 {
  padding-bottom: 0;
  margin-bottom: 0;
  font-size: 17px;
  border: none;
}
.form-complete__text {
  padding-bottom: 25px;
  font-size: 14px;
  line-height: 2;
}

.num-list {
  margin-left: 18px;
  list-style: number;
}

.terms-header h2 {
  text-align: left;
}

.terms-body a {
  word-break: break-all;
}
.terms-body p,
.terms-body li,
.terms-body th,
.terms-body td {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.047em;
}
.terms-body h3.title {
  margin: 0;
  font-size: 15px;
}
.terms-body h4.title {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}
.terms-body .terms-section {
  margin-top: 24px;
}
.terms-body .terms-article {
  padding: 27px 0 0;
  margin-top: 25px;
  border-top: 1px solid #e8e8e8;
}
.terms-body .terms-article-body {
  margin-top: 20px;
}
.terms-body ol,
.terms-body ul {
  margin-top: 10px;
}

.terms-inner-table {
  margin: 10px 0;
}
.terms-inner-table caption {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}
.terms-inner-table th {
  padding-right: 10px;
  font-weight: 400;
  text-align: left;
}
.terms-inner-table ol,
.terms-inner-table ul {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .back-btn {
    width: 300px;
    height: 55px;
    line-height: 55px;
  }
  .back-btn:hover {
    color: #444;
    background: #fff;
  }
  .back-btn:hover i,
.back-btn:hover svg {
    color: #fff;
    fill: #fff;
  }
  .modal__content {
    max-width: 900px;
    padding: 60px 50px;
  }
  .modal__content__text {
    padding-bottom: 18px;
    margin-bottom: 24px;
    font-size: 18px;
  }
  .modal__content__text--02 {
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 2;
  }
  .modal__content .close__btn a {
    width: 255px;
  }
  .foot__content {
    padding: 50px 0 0;
  }
  .foot__content__text {
    padding-bottom: 18px;
    margin-bottom: 24px;
    font-size: 18px;
  }
  .terms {
    padding: 50px 0;
    margin: -30px 0 60px;
    text-align: center;
  }
  .terms__txt {
    margin-bottom: 20px;
    font-size: 15px;
  }
  .terms .txt-wrap {
    font-size: 16px;
  }
  .lead__txt {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .lead__txt--02 {
    margin-bottom: 45px;
  }
  .modal__text {
    margin-bottom: 45px;
  }
  .form-content .wid180 {
    width: 180px;
  }
  .form-content .wid250 {
    width: 250px;
  }
  .form-content .wid360 {
    width: 360px;
  }
  .form-content .wid420 {
    width: 420px;
  }
  .form-content .re_enter__txt--02 {
    display: inline;
    margin-right: 10px;
    margin-bottom: 0;
  }
  .form-content .two-btns--no-wrap {
    width: 700px;
    margin: 10px auto 20px;
  }
  .form-complete {
    display: block;
    width: 900px;
    padding: 100px 80px 65px;
    margin: 0 auto 46px;
  }
  .form-complete-box {
    text-align: center;
  }
  .form-complete__title {
    padding-bottom: 100px;
    margin-bottom: 42px;
    font-size: 26px;
  }
  .form-complete__title--02 {
    padding-bottom: 35px;
    margin-bottom: 0;
  }
  .form-complete__text {
    padding-bottom: 0;
    margin-bottom: 0;
    font-size: 15px;
    text-align: left;
    border-bottom: none;
  }
  .terms-inner-table td {
    padding-left: 10px;
  }
}
@media (max-width: 768.98px) {
  .back-btn {
    margin: 25px auto 0;
  }
  .checkbox input[type=checkbox] + .checkbox-label .check-txt {
    font-size: 12px;
  }
  .terms-inner-table th,
.terms-inner-table td {
    display: block;
    width: 100%;
  }
}