@charset "utf-8";

/* =============================================
   Base
============================================= */
.page-wrapper {
  max-width: 1123px;
  width: 90%;
  margin: auto;
  padding: 80px 0 160px;
}

/* =============================================
   Section Title
============================================= */
.sec-ttl {
  margin-bottom: 40px;
}

.sec-ttl .sub {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #000;
  margin-bottom: 16px;
}

.sec-ttl .main {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 26px;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
}

.sec-ttl .desc {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  color: #000;
}

/* =============================================
   Form Wrap
============================================= */
.box {
  background: #f4f4f4;
  padding: 64px 0 80px;
}

.formWrap {
  max-width: 643px;
  width: 100%;
  margin: auto;
}

.formWrap .formRow {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.formWrap .formRow:last-child {
  margin-bottom: 0;
}

.formTh label {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 18px;
  color: #000;
}

.formTh .requiredText {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 18px;
  color: #a83232;
}

.formTd input,
.formTd select,
.formTd textarea {
  width: 100%;
  height: 59px;
  font-size: 18px;
  padding: 15px;
}

.formTd textarea {
  line-height: 23px;
}

.formTd.column {
  display: flex;
  gap: 21px;
}

/* placeholder */
.formTd input::placeholder {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 18px;
  color: #7c7b7b;
  opacity: 1;
}

/* 古いブラウザ対応 */
.formTd input::-webkit-input-placeholder {
  color: #7c7b7b;
}
.formTd input:-ms-input-placeholder {
  color: #7c7b7b;
}
.formTd input::-ms-input-placeholder {
  color: #7c7b7b;
}

/* =============================================
   Privacy
============================================= */
.formColumn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.formColumn input {
  width: 24px;
  height: 24px;
}

.formColumn .privacyLabel {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 18px;
  color: #000;
}

.privacyBox {
  width: 100%;
  height: 180px;
  margin: 0 auto;
  padding: 20px 5%;
  border: 1px solid #898989;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: #fff;
}

.privacyBox {
  font-size: 18px;
  line-height: 23px;
}

/* =============================================
   Submit Button
============================================= */
.formBtnTd {
  position: relative;
  width: fit-content;
  margin: 64px auto 0;
}

.formBtnTd .formBtn {
  font-family: var(--font-en);
  position: relative;
  overflow: hidden;
  padding: 16px 83px 16px 70px;
  font-size: 20px;
  font-weight: 800;
  color: #000;
  cursor: pointer;
  background: #fff;
  border: 1px solid #000;
  z-index: 1;
  transition: color 0.3s;
}

.formBtnTd:hover .formBtn {
  color: #fff;
}

/* 擬似要素で黒背景（hoverで残る） */
.formBtnTd .formBtn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  z-index: -1;
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.formBtnTd:hover .formBtn::before {
  transform: translateX(0);
}

/* ダイヤ装飾 */
.formBtnTd .btn__diamond {
  width: 46px;
  height: 46px;
  background: #000;
  border: 2px solid #fff;
  left: calc(100% - 24px);
  transition: all 0.4s ease;
}

.formBtnTd .btn__diamond .btn__icon {
  right: -5px;
}

.formBtnTd:hover .btn__diamond {
  background: #fff;
  transition: all 0.4s ease;
}

.formError {
  z-index: 10;
}

/* =============================================
   SP Responsive
============================================= */
@media screen and (max-width: 767px) {
  .page-wrapper {
    max-width: 350rem;
    padding: 33px 0 80px;
  }

  .sec-ttl .main {
    font-size: 24px;
  }

  .sec-ttl .desc {
    font-size: 14px;
    line-height: 20px;
  }

  .box {
    padding: 40px 0 72px;
  }

  .formWrap {
    max-width: 312rem;
  }

  .formTd input,
  .formTd select,
  .formTd textarea {
    height: 44px;
    font-size: 14px;
    padding: 12px;
  }

  .formTd input::placeholder {
    font-size: 14px;
  }

  .formTd textarea {
    line-height: 20px;
  }

  .formTd.column {
    gap: 18px;
  }

  .formTh label,
  .formTh .requiredText {
    font-size: 14px;
  }

  .formWrap .formRow {
    gap: 8px;
    margin-bottom: 32px;
  }

  .privacyBox p {
    font-size: 14px;
    line-height: 20px;
  }

  .formColumn input {
    width: 18px;
    height: 18px;
  }

  .formColumn .privacyLabel {
    font-size: 12px;
  }

  .formBtnTd {
    margin: 40px auto 0;
  }

  .formBtnTd .formBtn {
    padding: 17px 75px 16px 61px;
    font-size: 17px;
  }

  .formBtnTd .btn__diamond {
    width: 40px;
    height: 40px;
    left: calc(100% - 20px);
  }

  .formBtnTd .btn__diamond .btn__icon {
    right: -5px;
  }

  .privacyBox {
  font-size: 14px;
  line-height: 20px;
}
}

/* =============================================
   完了ページ
============================================= */
.breadlist.complete {
  margin-bottom: 20px;
}

.page-wrapper.complete {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: none;
  width: 100%;
  padding: 80px 0 120px;
  background: url(/system_panel/uploads/images/20250924020224189038.jpg) no-repeat center/cover;
}

.page-wrapper.complete .sec-ttl .sub,
.page-wrapper.complete .sec-ttl .main,
.page-wrapper.complete .sec-ttl .desc {
  color: #FFF;
}

.page-wrapper.complete .sec-ttl .desc {
  font-size: 20px;
  line-height: 40px;
}

.page-wrapper.complete .cont-tel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}

.page-wrapper.complete .cont-tel a {
  font-family: var(--font-en);
  font-weight: 600;
  line-height: 57px;
  font-size: 40px;
  text-align: left;
  color: #fff;
  transition: all .4s ease;
}

.page-wrapper.complete .cont-tel a:hover {
  filter: opacity(80%);
   transition: all .4s ease;
}

.page-wrapper.complete .cont-tel .time {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  text-align: right;
  color: #fff;
}

.page-wrapper.complete .btn {
  max-width: 293px;
  height: 67px;
}

.page-wrapper.complete .btn p {
  font-size: 20px;
}

.page-wrapper.complete .btn__diamond {
  width: 46px;
  height: 46px;
  left: 92%;
}
@media screen and (max-width: 767px) {
.page-wrapper.complete .sec-ttl .desc {
  font-size: 14px;
line-height: 34px;
}

.page-wrapper.complete .sec-ttl {
  margin-bottom: 20px;
}
.page-wrapper.complete .cont-tel {
  margin-bottom: 30px;
}
.page-wrapper.complete .cont-tel a {
  font-size: 34px;
}
.page-wrapper.complete .cont-tel .time {
  font-size: 15px;
}
.page-wrapper.complete .btn {
  max-width: 254px;
  height: 58px;
}
.page-wrapper.complete .btn__diamond {
  width: 40px;
height: 40px;
}
.page-wrapper.complete .btn p {
  font-size: 17px;
}
}