@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
@font-face {
  font-family: "Unbounded";
  /*要素に指定するときに使うフォント名*/
  src: url("../fonts/unbounded.woff2") format("woff2"), url("../fonts/unbounded.woff") format("woff");
  font-display: swap;
}
:root {
  --quick: "Quicksand", sans-serif;
  --ibm: "IBM Plex Sans JP", sans-serif;
  --dela: "Dela Gothic One", serif;
  --pink: #ff5885;
  font-size: 10px;
  color: var(--pink);
  line-height: 1.8;
  font-family: var(--ibm);
}

/* ====================================================
CONTACT FORM
==================================================== */
.contact {
  background-color: #fff;
  border-radius: 20px;
  padding: 12rem 0;
  width: 90%;
  max-width: 1580px;
  margin: auto;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1240px) {
  .contact {
    padding: 8rem 0;
  }
}
@media screen and (max-width: 834px) {
  .contact {
    padding: 6rem 0;
  }
}
@media screen and (max-width: 639px) {
  .contact {
    padding: 4rem 0;
    font-size: 14px;
  }
}
@media screen and (max-width: 499px) {
  .contact {
    padding: 3rem 0;
  }
}
.contact__ttl {
  width: 100%;
  max-width: 600px;
  margin: auto;
  text-align: center;
  line-height: 1.3;
}
.contact__ttl-heading {
  font-size: 42px;
  margin-bottom: 4rem;
  font-weight: bold;
}
@media screen and (max-width: 1240px) {
  .contact__ttl-heading {
    font-size: 36px;
  }
}
@media screen and (max-width: 834px) {
  .contact__ttl-heading {
    margin-bottom: 2rem;
    font-size: 30px;
  }
}
@media screen and (max-width: 639px) {
  .contact__ttl-heading {
    font-size: 24px;
  }
}
.contact__ttl-heading span {
  display: block;
  font-size: 36px;
}
.contact__ttl-heading + p {
  line-height: 2;
}
.contact__step {
  margin-top: 10rem;
}
@media screen and (max-width: 1240px) {
  .contact__step {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 834px) {
  .contact__step {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 639px) {
  .contact__step {
    margin-top: 3rem;
  }
}
.contact__step-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
}
@media screen and (max-width: 834px) {
  .contact__step-list {
    gap: 6rem;
  }
}
@media screen and (max-width: 639px) {
  .contact__step-list {
    gap: 4rem;
  }
}
.contact__step-list-item-number {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-family: "Unbounded", sans-serif;
  border: 1px solid var(--pink);
  color: var(--pink);
}
@media screen and (max-width: 834px) {
  .contact__step-list-item-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}
@media screen and (max-width: 639px) {
  .contact__step-list-item-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
.contact__step-list-item-text {
  display: block;
  color: var(--pink);
  margin-top: 2rem;
  font-size: 15px;
}
@media screen and (max-width: 639px) {
  .contact__step-list-item-text {
    font-size: 14px;
    margin-top: 1rem;
  }
}
.contact__step-list-item.active .contact__step-list-item-number {
  background-color: var(--pink);
  color: #fff;
}
.contact__step-list-item:first-of-type {
  position: relative;
}
.contact__step-list-item:first-of-type::after {
  display: block;
  content: "";
  width: 6rem;
  height: 2px;
  background-color: var(--pink);
  position: absolute;
  top: calc(50% - 2rem);
  left: calc(100% + 1rem);
}
@media screen and (max-width: 834px) {
  .contact__step-list-item:first-of-type::after {
    width: 4rem;
  }
}
@media screen and (max-width: 639px) {
  .contact__step-list-item:first-of-type::after {
    width: 2rem;
  }
}
.contact__table {
  font-size: clamp(1.3rem, 1vw + 0.25rem, 1.6rem);
}
.contact__table-label {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
}
@media screen and (max-width: 639px) {
  .contact__table-label {
    margin: 1rem 0;
  }
}
.contact__table-item {
  margin-bottom: 5rem;
}
@media screen and (max-width: 639px) {
  .contact__table-item {
    margin-bottom: 3rem;
  }
}
.contact__table .require-txt {
  border-radius: 2px;
  background-color: var(--pink);
  color: #fff;
  width: -moz-fit-content;
  width: 38px;
  height: 18px;
  text-align: center;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-top: 1px;
}
.contact__table .option-txt {
  border-radius: 2px;
  background-color: #f3f3f3;
  width: -moz-fit-content;
  width: 38px;
  height: 18px;
  text-align: center;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-top: 1px;
}
.contact__table .error {
  color: var(--pink);
  display: inline-block;
  margin-top: 5px;
  margin-right: 1rem;
  white-space: nowrap;
}
.contact__table .error-bg {
  background-color: #fff3f6 !important;
}
.contact__table .zip-txt {
  color: var(--pink);
  border: 1px solid var(--pink);
  width: 118px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100vmax;
  line-height: 1;
  font-size: 15px;
  margin-left: 3rem;
  padding-top: 1px;
}
@media screen and (max-width: 639px) {
  .contact__table .zip-txt {
    width: 100px;
    height: 22px;
    font-size: 14px;
    margin-left: 1rem;
  }
}
@media screen and (max-width: 499px) {
  .contact__table .zip-txt {
    width: 80px;
    height: 20px;
    font-size: 12px;
  }
}
.contact__table input:not([type=submit]):not([type=radio]):not([type=checkbox]) {
  background-color: #F5F5F5;
  border: 1px solid transparent;
  border-radius: 10px;
  height: 64px;
  width: 100%;
  padding: 15px;
  font-size: 16px;
}
@media screen and (max-width: 639px) {
  .contact__table input:not([type=submit]):not([type=radio]):not([type=checkbox]) {
    height: 55px;
    font-size: 14px;
  }
}
@media screen and (max-width: 499px) {
  .contact__table input:not([type=submit]):not([type=radio]):not([type=checkbox]) {
    height: 50px;
  }
}
.contact__table input:not([type=submit]):not([type=radio]):not([type=checkbox]).p-postal-code {
  max-width: 160px;
  margin-bottom: 1rem;
  margin-left: 1rem;
}
.contact__table textarea {
  background-color: #F5F5F5;
  border: 1px solid transparent;
  border-radius: 5px;
  width: 100%;
  height: 300px;
  resize: vertical;
  padding: 15px;
  font-size: 16px;
}
@media screen and (max-width: 639px) {
  .contact__table textarea {
    height: 150px;
    font-size: 14px;
  }
}
.contact__table [type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid var(--pink);
  border-radius: 9999px;
  cursor: pointer;
}
.contact__table [type=radio]:checked {
  border: none;
  background-color: var(--pink);
}
.contact__table [type=radio]:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-radius: 9999px;
  background-color: #ffffff;
}
.contact__table .item-label {
  display: flex;
  align-items: center;
  -moz-column-gap: 13px;
       column-gap: 13px;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
}
.contact__form {
  background-color: #fff;
  border-radius: 20px;
  margin: 8rem 0;
  /*** Privacy POLICY ***/
}
@media screen and (max-width: 1024px) {
  .contact__form {
    margin: 4rem 0;
  }
}
.contact__form-caution {
  border-bottom: 3px dotted #e0ddc0;
  font-weight: bold;
  font-size: clamp(1.3rem, 1vw + 0.25rem, 1.6rem);
  padding-bottom: 1rem;
  margin-bottom: 5rem;
}
.contact__form-privacy {
  font-weight: 500;
  max-width: 100%;
  border: 1px solid transparent;
  border-radius: 20px;
  background-color: #FFF3F6;
  padding: 8rem 0 4rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .contact__form-privacy {
    margin: 4rem auto 2rem;
  }
}
@media screen and (max-width: 834px) {
  .contact__form-privacy {
    margin: 2rem 0 1.5rem;
    padding: 5rem 0 2rem;
  }
}
@media screen and (max-width: 639px) {
  .contact__form-privacy {
    padding: 4rem 0 2rem;
  }
}
.contact__form-privacy-inner {
  width: 90%;
  max-width: 1020px;
  max-height: 484px;
  margin: 0 auto;
  background-color: #fff;
  overflow-y: scroll;
  border-radius: 20px;
  padding: 9rem;
}
@media screen and (max-width: 1024px) {
  .contact__form-privacy-inner {
    padding: 4rem;
    max-height: 400px;
  }
}
@media screen and (max-width: 834px) {
  .contact__form-privacy-inner {
    padding: 2rem;
    max-height: 300px;
  }
}
.contact__form-privacy p,
.contact__form-privacy ol,
.contact__form-privacy ul {
  font-size: 15px;
}
.contact__form-privacy ol,
.contact__form-privacy ul {
  padding-left: 3rem;
}
.contact__form-privacy ol li,
.contact__form-privacy ul li {
  list-style-type: disc;
}
.contact__form-privacy-ttl {
  font-size: 26px;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 5rem;
}
@media screen and (max-width: 1024px) {
  .contact__form-privacy-ttl {
    font-size: 22px;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .contact__form-privacy-ttl {
    font-size: 20px;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 639px) {
  .contact__form-privacy-ttl {
    font-size: 18px;
    margin-bottom: 1.5rem;
  }
}
.contact__form-privacy .privacy-item {
  font-size: 18px;
  border-bottom: 1px solid var(--pink);
  line-height: 1;
  color: var(--pink);
  margin-top: 4rem;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .contact__form-privacy .privacy-item {
    font-size: 16px;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .contact__form-privacy .privacy-item {
    font-size: 15px;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
}
.contact__form-privacy .privacy-btn {
  border: none;
  border-radius: 10px;
  background-color: #01b301;
  color: #fff;
  width: 300px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 1024px) {
  .contact__form-privacy .privacy-btn {
    width: 200px;
    height: 55px;
  }
}
@media screen and (max-width: 834px) {
  .contact__form-privacy .privacy-btn {
    margin-top: 1.5rem;
  }
}
.contact__form-privacy .privacy-btn span {
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .contact__form-privacy .privacy-btn span {
    font-size: 14px;
  }
}
@media screen and (max-width: 834px) {
  .contact__form-privacy .privacy-btn span {
    font-size: 13px;
  }
}
.contact__form-privacy .privacy-btn p {
  font-size: 19px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .contact__form-privacy .privacy-btn p {
    font-size: 16px;
  }
}
@media screen and (max-width: 834px) {
  .contact__form-privacy .privacy-btn p {
    font-size: 15px;
  }
}
.contact__form-privacy .privacy-btn:hover {
  opacity: 0.8;
  transition: all 0.3s ease-out;
}
.contact__form-privacy::after {
  content: "";
  display: block;
  position: absolute;
  top: 4rem;
  right: 2rem;
  width: 39px;
  height: 553px;
  background: url(../../assets/img/contact/praivacy-p.svg) no-repeat center center;
  background-size: contain;
  z-index: 5;
}
@media screen and (max-width: 1599px) {
  .contact__form-privacy::after {
    top: 3rem;
    right: 2rem;
    width: 30px;
    height: 400px;
  }
}
@media screen and (max-width: 1399px) {
  .contact__form-privacy::after {
    transform: rotate(270deg);
    top: 6rem;
    transform-origin: left top;
    right: auto;
    left: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .contact__form-privacy::after {
    top: 3.5rem;
    left: 2rem;
    width: 20px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  .contact__form-privacy::after {
    top: 3rem;
    left: 1.5rem;
  }
}
@media screen and (max-width: 499px) {
  .contact__form-privacy::after {
    top: 3rem;
    left: 2rem;
    width: 15px;
    height: 200px;
  }
}
.contact__form .agree-check {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 2px;
  background-color: #fff;
  border: 1px solid #C9C8C7;
  cursor: pointer;
}
@media screen and (max-width: 639px) {
  .contact__form .agree-check {
    width: 18px;
    height: 18px;
  }
}
.contact__form .agree-check:checked::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 4px;
  width: 20px;
  height: 10px;
  border-bottom: 3px solid var(--pink);
  border-left: 3px solid var(--pink);
  transform: rotate(-45deg);
}
@media screen and (max-width: 639px) {
  .contact__form .agree-check:checked::after {
    width: 15px;
    height: 6px;
    left: 2px;
  }
}
.contact__form-controller {
  font-size: clamp(1.3rem, 1vw + 0.25rem, 1.6rem);
  font-weight: bold;
  text-align: center;
}
.contact__form-controller-checkbox {
  margin-top: 4rem;
  font-size: 15px;
}
@media screen and (max-width: 639px) {
  .contact__form-controller-checkbox {
    margin-top: 2rem;
    font-size: 14px;
  }
}
.contact__form-controller-checkbox label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.contact__form-controller-submit a {
  text-decoration: none;
}
.contact__form-controller-submit .contact-form-submit-btn {
  background-color: var(--pink);
  border: none;
  color: #fff;
  font-size: 18px;
  width: 300px;
  height: 80px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem auto;
  cursor: pointer;
}
@media screen and (max-width: 639px) {
  .contact__form-controller-submit .contact-form-submit-btn {
    width: 200px;
    height: 55px;
    font-size: 16px;
  }
}
@media screen and (max-width: 499px) {
  .contact__form-controller-submit .contact-form-submit-btn {
    width: 150px;
    height: 45px;
    font-size: 15px;
  }
}
.contact__form-controller-submit .contact-form-submit-btn:disabled {
  background-color: #C1C1C1;
}
.contact__form-controller-submit .contact-form-submit-btn.--back {
  background-color: #ffe33f;
  color: var(--pink);
}
.contact .under499 {
  display: none;
}
@media screen and (max-width: 499px) {
  .contact .under499 {
    display: block;
  }
}

/* ====================================================
THANKS
==================================================== */
.contact.thanks .contact__form-controller-submit {
  margin: 12rem 0;
}
@media screen and (max-width: 1024px) {
  .contact.thanks .contact__form-controller-submit {
    margin: 8rem 0;
  }
}

.go-top {
  color: var(--pink);
  font-size: 18px;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  margin-top: 10rem;
}
.go-top .circle {
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease;
  border: 1px solid #FF5885;
}
.go-top:hover .circle {
  transition: 0.5s ease;
  transform: translateX(7px);
}

/* ====================================================
CONFIRM
==================================================== */
.confirm__content {
  text-align: left;
  font-size: clamp(1.3rem, 1vw + 0.25rem, 1.6rem);
  font-weight: 500;
}
.confirm__content-group {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px dotted var(--pink);
  padding: 2rem 0;
}
.confirm__content-head {
  width: 100%;
  max-width: 270px;
}
.confirm__content-txt {
  width: 100%;
}/*# sourceMappingURL=contact.css.map */