@charset "UTF-8";
.inner-s {
  width: 1200px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.contact__mv {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 0;
  height: 670px;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(217, 230, 243) 62%, rgb(217, 230, 243) 100%);
}

.contact__mv-ttl-en {
  font-family: var(--ak);
  width: -moz-fit-content;
  width: fit-content;
  font-size: 9rem;
  font-weight: 300;
  line-height: 1.4;
  background: linear-gradient(90deg, #83e3f3 0%, #72bddd 40%, #618dc2 80%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
}

.contact__mv-ttl {
  font-size: 2.4rem;
  font-weight: 500;
}

.contact__form-cont {
  border-radius: 30px;
  background-color: #fff;
  margin: -30px 0;
  position: relative;
  z-index: 1;
}

.contact__step-list {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 250px;
  margin: 0 auto 60px;
}
.contact__step-list::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 14px solid var(--blue);
  border-right: 0;
  display: block;
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  content: "";
}
.contact__step-list li .circle {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--blue);
  position: relative;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--ak);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--blue);
  line-height: 1;
}
.contact__step-list li .txt {
  font-size: 1.8rem;
  display: block;
  text-align: center;
}
.contact__step-list li.active .circle {
  background-color: var(--blue);
  color: #fff;
}

.contact__main-txt {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 1em;
}

.contact__caution-list {
  width: 820px;
  max-width: 100%;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}
.contact__caution-list li {
  position: relative;
  padding-left: 1em;
  font-size: 1.5rem;
}
.contact__caution-list li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.caution-txt {
  font-size: 1.5rem;
}

.caution-icon {
  color: var(--blue);
}

.step-sec {
  padding-top: 120px;
}

ol {
  list-style: none;
}

.contact__table {
  margin-top: 30px;
  width: 100%;
}
.contact__table th {
  width: 340px;
  padding-right: 20px;
  height: 100%;
  font-size: 2rem;
  display: flex;
  padding-top: 33px;
  font-weight: 500;
}
.contact__table td {
  width: calc(100% - 340px);
  padding: 18px 0;
  word-break: break-all;
}
.contact__table td input {
  width: 100%;
  height: 60px;
  padding: 10px;
  background-color: #ebf2f3;
  font-size: 2rem;
  border-radius: 5px;
}
.contact__table td input.zip1 {
  width: 120px;
  margin-right: 10px;
  margin-left: 10px;
}
.contact__table td input.zip2 {
  width: 160px;
  margin-right: 15px;
  margin-left: 10px;
}
.contact__table td input.radio__btn {
  width: auto;
  height: auto;
  padding: 10px;
  background-color: transparent;
}

.confirm__table td {
  width: 100%;
}

.table-in {
  font-size: 1.6rem;
  align-items: center;
  display: flex;
  margin-bottom: 20px;
}

#zip-button {
  background: var(--blue);
  width: 170px;
  height: 50px;
  border-radius: 100px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
}

.radio__btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.radio__text {
  padding-left: 32px;
  position: relative;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 500;
}

.radio__text::before {
  content: "";
  display: block;
  border-radius: 50%;
  background-color: #ebf2f3;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.radio__btn:checked + .radio__text::after {
  content: "";
  display: block;
  border-radius: 50%;
  width: 11px;
  height: 11px;
  background-color: var(--blue);
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
}

.radio__bl {
  padding-top: 30px;
}

.wide {
  width: 100%;
  height: 240px;
  resize: none;
  background-color: #ebf2f3;
  padding: 10px;
  font-size: 2rem;
  border-radius: 5px;
}

.contact__privacy-txt {
  text-align: center;
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-bottom: 20px;
}
.contact__privacy-txt a {
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid var(--black);
}
.contact__privacy-txt a .material-symbols-outlined {
  font-size: 20px;
  transform: translateY(-2px);
}

input[type=checkbox] {
  position: relative;
  width: 16px;
  height: 16px;
  transform: translateY(-1px);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.4);
  vertical-align: -5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=checkbox]:checked:before {
  position: absolute;
  top: 0px;
  left: 4px;
  transform: rotate(50deg);
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  content: "";
}

.contact__privacy-check-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 2rem;
  font-weight: 500;
}

.contact__submit-btn {
  width: 310px;
  max-width: 100%;
  height: 60px;
  background: #f0c30f;
  color: #fff;
  font-size: 2rem;
  border-radius: 50px;
  margin: 50px auto 0;
  display: block;
}

.contact__finish-btn {
  width: 310px;
  max-width: 100%;
  height: 60px;
  background: var(--blue);
  color: #fff;
  font-size: 1.8rem;
  border-radius: 50px;
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.contact__finish-btn .material-symbols-outlined {
  position: absolute;
  left: 15px;
  border-radius: 50%;
  border: 1px solid #fff;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
}

#content {
  padding-bottom: 100px;
}

.error {
  color: #f35415;
  font-size: 1.3rem;
  display: inline-block;
  margin-top: 3px;
}

.contact__privacy .error {
  display: block;
  text-align: center;
}

.radio__bl {
  transform: translateX(-20px);
}

.radio-error {
  display: block;
  padding-left: 20px;
}

.confirm__table th {
  padding: 18px 0 !important;
  font-size: 1.6rem !important;
}
.confirm__table td {
  font-size: 1.6rem !important;
}

.confirm__btn-bl {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.contact__submit-btn.gray-btn {
  background-color: var(--gray);
}

.input-btn-bl {
  margin: 40px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}

.step-sec.finish {
  border-bottom: none;
}
.step-sec.finish .contact__main-small-txt {
  text-align: center;
}

.privacy__bl {
  width: 100%;
  height: 800px;
  background-color: #fff;
  border-radius: 30px;
  border: 1px solid var(--blue);
  overflow: hidden;
  margin-bottom: 50px;
}
.privacy__bl a {
  color: var(--black);
}

.privacy__bl-wrapper::-webkit-scrollbar {
  width: 45px;
}

.privacy__bl-wrapper::-webkit-scrollbar-track {
  background-color: #fff;
}

.privacy__bl-wrapper::-webkit-scrollbar-thumb {
  background-color: #9ab4b8;
  border-radius: 100px;
  border: solid 17px #fff;
}

.privacy__bl-wrapper {
  padding: 60px 30px 60px 60px;
  overflow-y: scroll;
  scrollbar-width: 30px;
  scrollbar-color: #fff;
  height: 800px;
}
.privacy__bl-wrapper .txt {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.privacy__ttl-en {
  text-align: center;
  font-family: var(--ak);
  font-size: 3.2rem;
  font-weight: 300;
}

.privacy__ttl {
  font-size: 1.8rem;
  text-align: center;
  color: var(--blue);
  margin-bottom: 50px;
}

.privacy__ttl-middle {
  border-bottom: 1px solid var(--blue);
  font-size: 2.4rem;
  font-weight: 500;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.privacy__ttl-small {
  position: relative;
  padding-left: 20px;
  font-size: 2rem;
  font-weight: 500;
  border-bottom: 1px solid #dedede;
  padding-bottom: 8px;
  margin-bottom: 15px;
}
.privacy__ttl-small::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--blue);
  border-right: 0;
  display: block;
  position: absolute;
  left: 0;
  top: 13px;
  content: "";
}

.contact-footer {
  padding-top: 150px;
}

td:has(.error) input[type=text],
td:has(.error) input[type=tel],
td:has(.error) input[type=email],
td:has(.error) .radio__text::before,
td:has(.error) textarea {
  background-color: #fffae5;
}

.contact__privacy {
  margin-top: 20px;
}

.under-834only {
  display: none;
}

.step-sec.finish .contact__main-small-txt {
  text-align: center;
  font-size: 1.6rem;
}

_::-webkit-full-page-media,
_:future,
:root .privacy__bl-wrapper {
  padding: 60px;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  ::i-block-chrome,
  .privacy__bl-wrapper {
    padding: 60px;
  }
}
@media (max-width: 1349px) {
  .contact__mv {
    height: 490px;
  }
}
@media (max-width: 1199px) {
  .contact__mv-ttl-en {
    font-size: 7rem;
  }
  .contact__mv {
    height: 400px;
  }
}
@media (max-width: 834px) {
  .contact__table th {
    width: 100%;
    padding-right: 0;
    height: 100%;
    font-size: 1.5rem;
    display: flex;
    padding-top: 10px;
    text-align: left;
    display: block;
  }
  .contact__table td {
    width: 100%;
    display: block;
    padding: 5px 0 15px;
  }
  .contact__table td input {
    width: 100%;
    height: 45px;
    padding: 10px;
    font-size: 1.5rem;
  }
  .radio__text {
    font-size: 1.5rem;
    display: block;
  }
  .radio__bl {
    transform: translateX(0);
  }
  .contact__table td input.radio__btn {
    width: 0;
    height: 0;
    padding: 0;
  }
  .radio-error {
    padding-left: 0;
  }
  .table-in {
    font-size: 1.5rem;
  }
  .contact__table td input.zip1 {
    width: 60px;
  }
  .contact__table td input.zip2 {
    width: 80px;
  }
  #zip-button {
    width: 70px;
    height: 40px;
  }
  .contact__privacy-txt {
    font-size: 1.5rem;
  }
  .contact__privacy-txt a {
    display: inline-flex;
    width: -moz-fit-content;
    width: fit-content;
    line-height: 1;
  }
  .contact__privacy-txt {
    display: block;
  }
  .wide {
    height: 180px;
    font-size: 1.5rem;
  }
  .contact__table td input.zip1 {
    width: 60px;
  }
  .contact__table td input.zip2 {
    width: 80px;
  }
  #zip-button {
    width: 70px;
    height: 40px;
  }
  .step-sec {
    padding-top: 50px;
  }
  .contact__step-list {
    margin: 0 auto 30px;
  }
  .contact__main-txt {
    font-size: 1.6rem;
  }
  .contact__caution-list li {
    font-size: 1.3rem;
  }
  .contact__caution-list {
    margin-bottom: 20px;
  }
  #content {
    padding-bottom: 60px;
  }
  .contact__submit-btn {
    width: 180px;
    height: 60px;
    font-size: 1.6rem;
  }
  .confirm__table th {
    padding: 10px 0 2px !important;
    font-size: 1.5rem !important;
  }
  .confirm__table td {
    font-size: 1.5rem !important;
    padding: 0 0 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  }
  .contact__submit-btn {
    font-size: 1.5rem;
    margin: 0;
  }
  .confirm__btn-bl {
    flex-direction: column-reverse;
    margin-top: 40px;
  }
  .confirm__table th {
    padding: 15px 0 2px !important;
  }
  .step-sec.finish .contact__main-small-txt {
    font-size: 1.4rem;
  }
  .contact__finish-btn {
    width: 240px;
    height: 50px;
    font-size: 1.6rem;
    margin: 30px auto 0;
  }
  .contact__finish-btn .material-symbols-outlined {
    left: 10px;
    width: 30px;
    height: 30px;
    font-size: 1.8rem;
  }
  .contact__mv-ttl-en {
    font-size: 5rem;
  }
  .contact__mv-ttl {
    font-size: 2rem;
  }
  .contact__mv {
    padding: 70px 0;
    height: 270px;
  }
  .contact__step-list {
    width: 180px;
  }
  .contact__step-list li .circle {
    width: 60px;
    height: 60px;
    margin-bottom: 5px;
    font-size: 2.1rem;
  }
  .contact__step-list::before {
    top: 23px;
  }
  .contact__step-list li .txt {
    font-size: 1.5rem;
  }
  .contact__table {
    margin-top: 10px;
  }
  .privacy__bl-wrapper {
    padding: 30px 0 30px 20px;
    height: 350px;
  }
  .privacy__bl {
    height: 350px;
    border-radius: 15px;
    margin-bottom: 30px;
  }
  .privacy__bl-wrapper::-webkit-scrollbar {
    width: 25px;
  }
  .privacy__bl-wrapper::-webkit-scrollbar-thumb {
    border-radius: 100px;
    border: solid 10px #fff;
  }
  .privacy__ttl-en {
    font-size: 2.6rem;
  }
  .privacy__ttl {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  .privacy__ttl-middle {
    font-size: 1.7rem;
  }
  .privacy__bl-wrapper .txt {
    font-size: 1.5rem;
  }
  .privacy__ttl-small {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  .privacy__ttl-small::before {
    top: 11px;
  }
  .contact__privacy-check-txt {
    font-size: 1.5rem;
  }
  #zip-button {
    width: 107px;
    font-size: 1.3rem;
  }
  .contact-footer {
    padding-top: 80px;
  }
  .under-834only {
    display: inline-block;
  }
  .step-sec.finish .contact__main-small-txt {
    text-align: left;
    font-size: 1.5rem;
  }
  .under-834none {
    display: none;
  }
  _::-webkit-full-page-media,
  _:future,
  :root .privacy__bl-wrapper {
    padding: 30px;
  }
}
@media screen and (max-width: 834px) and (-webkit-min-device-pixel-ratio: 0) {
  ::i-block-chrome,
  .privacy__bl-wrapper {
    padding: 30px;
  }
}/*# sourceMappingURL=contact.css.map */