@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");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");

:root {
  --bk: #111;
  --wh: #fff;
  --text-color-dark: #222;
}

@font-face {
  font-family: "Unbounded";
  /*要素に指定するときに使うフォント名*/
  src: url("../fonts/unbounded.woff2") format("woff2"),
    url("../fonts/unbounded.woff") format("woff");
  font-display: swap;
}

@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc-tb {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

/* 三点リーダー 一行 */
/* 三点リーダー 複数行 */
/* 背景をテキストで切り取る */
@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc-tb {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

/* ====================================================
CONTACT FORM
==================================================== */

.contact-body {
  background: #f7f7f7;
}

.contact {
  line-height: 1.875;
  /* padding: 15rem 0; */
  text-align: left;
}

@media screen and (max-width: 1240px) {
  .contact {
    /* padding: 10rem 0; */
  }
}

@media screen and (max-width: 834px) {
  .contact {
    /* padding: 6rem 0; */
  }
}

@media screen and (max-width: 639px) {
  .contact {
    /* padding: 4rem 0; */
  }
}

.contact__ttl {
  text-align: center;
}

.contact__ttl-heading {
  font-size: 2.8rem;
  line-height: 1.5;
  /* font-weight: 500; */
  margin-bottom: 2.5rem;
}

.contact__ttl-text {
  font-size: 1.6rem;
  text-align: start;
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .contact__ttl-heading {
    font-size: 2.4rem;
  }

  .contact__ttl-text {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 834px) {
  .contact__ttl-heading {
    font-size: 2rem;
  }

  .contact__ttl-text {
    font-size: 1.4rem;
    text-align: left;
  }
}



/* -------------------------
 * フォームのステップ
 * ------------------------- */
.contact__step {
  display: flex;
  position: relative;
  width: 22rem;
  justify-content: space-between;
  margin: 0 auto 6rem;
}

.contact__step::after {
  content: "";
  position: absolute;
  top: 3.5rem;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8rem;
  height: 1px;
  background-color: #dedede;
  z-index: 0;
}

.contact__step li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact__step-num {
  width: 7rem;
  font-size: 2.6rem;
  aspect-ratio: 1;
  background-color: #bababa;
  border-radius: 100vmax;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  line-height: 1;
}

.contact__step li.active .contact__step-num {
  background: linear-gradient(90deg, #9c0000, #e0310c);
  color: #fff;
}

.contact__step-txt {
  color: #bababa;
  text-align: center;
  margin-top: 7px;
}

.contact__step li.active .contact__step-txt {
  color: #000000;
}

@media (max-width: 834px) {
  .contact__step {
    width: 18rem;
    margin-bottom: 4rem;
  }

  .contact__step::after {
    top: 3.5rem;
    width: 6rem;
  }

  .contact__step-num {
    width: 6rem;
    font-size: 2rem;
  }

}


.contact__table {
  /* padding-bottom: 15rem; */
}

@media screen and (max-width: 1024px) {
  .contact__table {
    /* padding-bottom: 10rem; */
  }
}

@media screen and (max-width: 834px) {
  .contact__table {
    /* padding-bottom: 6rem; */
  }
}

@media screen and (max-width: 639px) {
  .contact__table {
    /* padding-bottom: 4rem; */
  }
}

.contact__table-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* justify-content: space-between; */
  gap: 0.8rem 2rem;
  margin: 2rem 0;
  /* width: 270px; */
  font-size: 17px;
  white-space: nowrap;
  font-weight: 500;
}

@media screen and (max-width: 834px) {
  .contact__table-label {
    margin-block: 0;
    justify-content: flex-start;
  }
}

.contact__table-parts {
  /* width: calc(100% - 270px); */
  width: 100%;
  position: relative;
}

.contact__table-parts__radio {
  display: flex;
  gap: 5px 50px;
  height: 100%;
}

@media screen and (max-width: 834px) {
  .contact__table-parts {
    width: 100%;
    margin-top: 1rem;
  }

  .contact__table-parts__radio {
    display: flex;
    flex-direction: column;
  }

}

.contact__table-item {
  display: grid;
  grid-template-columns: 27rem 1fr;
  gap: 0rem 4%;
  justify-content: space-between;
  align-items: flex-start;
}

.contact__table-interndate {
  display: none;
}

.contact__table-interndate.active {
  display: grid;
}

.contact__table-item.hidden {
  display: none;
}

.contact__table-item+.contact__table-item {
  margin-top: 3rem;
}

@media screen and (max-width: 834px) {
  .contact__table-item {
    display: flex;
    flex-direction: column;
  }
  .contact__table-interndate.active {
  display: flex;
}
}

@media screen and (max-width: 639px) {
  .contact__table-item {
    margin-bottom: 3rem;
  }
}

.contact__table .require-txt {
  font-size: 1.3rem;
  line-height: 1.5;
  border-radius: 16px;
  border: 1px solid #e5004f;
  color: #e5004f;
  background-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 11px 2px;
}

.contact__table .option-txt {
  font-size: 1.3rem;
  line-height: 1.5;
  border-radius: 16px;
  border: 1px solid #999;
  color: #999;
  background-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 11px 2px;
}

.contact__table .error {
  color: #af583e;
  display: inline-block;
  margin-top: 5px;
  margin-right: 1rem;
  white-space: nowrap;
}

.contact__table .error-bg {
  background-color: #ffe2e7 !important;
}

.contact__table input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]),
select {
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 8px;
  height: 54px;
  min-height: 5rem;
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
}

.contact__table input[name="tel"] {
  max-width: 600px;
}

.contact__table input[name="birthday_8digits"] {
  max-width: 400px;
}

.contact__table select {
    /* Chrome, Safari用 */
  -webkit-appearance: none;
  /* Firefox用 */
  -moz-appearance: none;
  /* 標準のappearance */
  appearance: none;
}

.contact__table select:hover {
  cursor: pointer;
}

.contact__table-parts:has(> select)::after {
  position: absolute;
  right: 1.6rem;
  top: 2em;
  margin: auto;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #222;
  border-bottom: 1px solid #222;
  transform: rotate(45deg);
  pointer-events: none;
}

@media screen and (max-width: 639px) {
  .contact__table input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]) {
    height: 55px;
  }
}

.contact__table input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]).p-postal-code {
  max-width: 240px;
  margin-bottom: 1rem;
  margin-left: 1rem;
}

.contact__table textarea {
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 8px;
  width: 100%;
  height: 320px;
  resize: vertical;
  padding: 15px;
}

.contact__table textarea[name="license"] {
  height: 240px;
}

@media screen and (max-width: 639px) {
  .contact__table textarea {
    height: 150px;
  }

  .contact__table textarea[name="license"] {
    height: 100px;
  }
}

.contact__table [type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid #dedede;
  border-radius: 100vmax;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 0.2em;
}

.contact__table [type="radio"]:checked {
  /* border-color: #fff; */
  background-color: #fff;
}

.contact__table [type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #222;
}

.contact__table [type="radio"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fff;
}

.contact__table .item-label {
  display: flex;
  /* align-items: flex-start; */
  align-items: center;
  -moz-column-gap: 13px;
  column-gap: 13px;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 2;
  cursor: pointer;
}

.contact__form {
  margin: 8rem 0;
}

@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-controller {
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .contact__form-controller {
    /* margin-top: 5rem; */
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 834px) {
  .contact__form-controller {
    font-size: 1.6rem;
    /* margin-top: 3rem; */
  }
}

@media screen and (max-width: 639px) {
  .contact__form-controller {
    /* margin-top: 2rem; */
  }
}

.contact__form-controller .agree-check {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 2px;
  border: 1px solid #dedede;
  background-color: #fff;
  cursor: pointer;
}

@media screen and (max-width: 639px) {
  .contact__form-controller .agree-check {
    width: 18px;
    height: 18px;
  }
}

.contact__form-controller .agree-check:checked::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 4px;
  width: 20px;
  height: 10px;
  border-bottom: 3px solid #222;
  border-left: 3px solid #222;
  transform: rotate(-45deg);
}

.contact__form-controller-checkbox label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 1.8rem;
}

@media screen and (max-width: 1024px) {
  .contact__form-controller-checkbox label {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 834px) {
  .contact__form-controller-checkbox label {
    font-size: 1.6rem;
  }
}

/* 添付ファイル ↓ */
.file-item-list-wrap {
  width: 100%;
}

.file-item-list .item-label {
  width: 100%;
}

.contact__table .file-item-list input[type="file"] {
  background-color: transparent !important;
  border: none !important;
  border-radius: 0px !important;
  height: fit-content !important;
  padding: 0rem !important;
  margin-top: 3rem;
}

.contact__table .file-item-list:nth-of-type(1) input[type="file"] {
  margin-top: 0rem;
}

input[type="file" i]::-webkit-file-upload-button {
  background: #000;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  width: 200px;
  height: 60px;
  border-radius: 40px;
  display: inline-block;
  cursor: pointer;
  margin-right: 17px;
  transition: all .3s ease-in-out;
}

input#file-upload-button:hover,
input[type="file" i]::-webkit-file-upload-button:hover {
  opacity: .7;
  cursor: pointer;
}

.contact__table-item.contact__table-comment {
  margin-top: 4.5rem;
}

@media screen and (max-width: 834px) {
  .contact__table .file-item-list input[type="file"] {
    margin-top: 0.2rem !important;
  }

  .contact__table .file-item-list:nth-of-type(1) input[type="file"] {
    margin-top: 0.5rem !important;
  }

  input[type="file" i]::-webkit-file-upload-button {
    font-size: 1.4rem;
    width: 140px;
    height: 52px;
    border-radius: 40px;
    margin-right: 14px;
  }
}

/* 添付ファイル ↑ */

.contact__form-controller-submit a {
  text-decoration: none;
}

.contact__form-controller-submit .contact-form-submit-btn {
  background: linear-gradient(90deg, #9c0000, #e0310c);
  border: none;
  color: #fff;
  font-size: clamp(1.4rem, 1vw + 0.5rem, 1.8rem);
  width: 300px;
  height: 80px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6rem auto 0;
  cursor: pointer;
}

@media screen and (max-width: 834px) {
  .contact__form-controller-submit .contact-form-submit-btn {
    margin: 4rem auto 0;
  }
}

@media screen and (max-width: 639px) {
  .contact__form-controller-submit .contact-form-submit-btn {
    width: 200px;
    height: 55px;
    margin: 4rem auto 0;
  }
}

.contact__form-controller-submit .contact-form-submit-btn:disabled {
  background-color: #bbb;
}

.contact__form-controller-submit .contact-form-submit-btn.--back {
  background-color: #ffe33f;
  color: #000;
}

/*** Privacy POLICY ***/
.privacy-policy {
  line-height: 1.875;
  /* border-top: 1px solid #eee;
  padding-top: 10rem; */
}

@media screen and (max-width: 1024px) {
  .privacy-policy {
    /* padding-top: 7rem; */
  }
}

@media screen and (max-width: 834px) {
  .privacy-policy {
    /* padding-top: 5rem; */
  }
}

.privacy-policy-wrapper {
  background-color: #eeeeee;
  max-width: 1200px;
  max-height: 400px;
  padding: 4rem 5%;
  margin: 4rem auto 2rem;
  overflow-y: scroll;
}

@media screen and (max-width: 1024px) {
  .privacy-policy-wrapper {
    /* padding: 6rem 4rem; */
  }
}

@media screen and (max-width: 834px) {
  .privacy-policy-wrapper {
    /* padding: 4rem 3rem; */
    /* margin: 4rem auto 2rem; */
  }
}

@media screen and (max-width: 639px) {
  .privacy-policy-wrapper {
    /* padding: 3rem 2rem; */
    /* margin: 3rem auto 1rem; */
  }
}

.privacy-policy-ttl {
  font-size: 2.8rem;
  /* font-weight: 500; */
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;

  /* margin-top: -30px; */
  margin-bottom: 30px;
}

@media screen and (max-width: 1024px) {
  .privacy-policy-ttl {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 834px) {
  .privacy-policy-ttl {
    font-size: 2rem;
  }
}

.privacy-policy-subttl {

  font-size: 2.2rem;
  font-weight: 500;
  /* background-color: #f3eef2; */

  margin-top: 40px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  .privacy-policy-subttl {
    font-size: 2rem;
    margin-bottom: 5rem;
  }
}

@media screen and (max-width: 834px) {
  .privacy-policy-subttl {
    font-size: 1.7rem;
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 499px) {
  .privacy-policy-subttl {
    margin-bottom: 2rem;
  }
}

.privacy-policy-item {
  position: relative;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0.3em 0 0.3em 1.4em;
}

.privacy-policy-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: #de0300;
}

.privacy-policy-item:not(:first-child) {
  margin-top: 4.5rem;
}

@media screen and (max-width: 1024px) {
  .privacy-policy-item {
    font-size: 2rem;
  }
}

@media screen and (max-width: 834px) {
  .privacy-policy-item {
    font-size: 1.7rem;
  }

  .privacy-policy-item:not(:first-child) {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 639px) {
  .privacy-policy-item:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.privacy-policy-text {
  font-size: 1.6rem;
  margin-top: 2rem;
}

@media screen and (max-width: 1024px) {
  .privacy-policy-text {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

@media screen and (max-width: 834px) {
  .privacy-policy-text {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}

.privacy-policy-signature {
  font-size: 1.6rem;
  margin-top: 2rem;
}

.privacy-policy-signature-company {
  font-size: 1.8rem;
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  .privacy-policy-signature {
    font-size: 1.5rem;
  }

  .privacy-policy-signature-company {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 834px) {
  .privacy-policy-signature {
    font-size: 1.4rem;
  }

  .privacy-policy-signature-company {
    font-size: 1.6rem;
  }
}

.privacy-policy-detail-list {
  margin-top: 0.5rem;
}

.privacy-policy-detail-list li {
  padding-left: 1.1em;
  position: relative;
}

.privacy-policy-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.6em;
  height: 2px;
  background: #de0300;
}

@media screen and (max-width: 1024px) {
  .privacy-policy-detail-list {
    /* padding-left: 1.5em; */
  }
}

@media screen and (max-width: 834px) {
  .privacy-policy-detail-list {
    /* padding-left: 1.4em; */
  }
}

/* ====================================================
THANKS
==================================================== */
/* body {
  overflow-y: hidden;
} */

/* .contact {
  padding: 16rem 0;
}
@media screen and (max-width: 1024px) {
  .contact {
    padding: 10rem 0;
  }
}
@media screen and (max-width: 834px) {
  .contact {
    padding: 6rem 0;
  }
} */
.contact.thanks .contact__form-controller-submit {
  margin: 12rem 0;
}

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



.contact-controller a {
  margin: 10rem auto 0;
}

@media screen and (max-width: 834px) {
  .contact-controller a {
    margin: 5rem auto 0;
  }
}

.contact__form-controller-checkbox label {
  width: fit-content;
  margin-inline: auto;
}

.contact__form-controller-checkbox label:hover {
  cursor: pointer;
}

/* 生年月日の入力欄スタイル */
.contact__birthday {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.contact__table .contact__birthday input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]) {
  width: 9rem;
  padding: 0.5em 1em;
}

.contact__birthday-group {
  display: flex;
  align-items: flex-end;
  gap: 1.4rem;
}

.contact__table-item input,
.contact__table-item textarea {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}

.contact__table-item input::placeholder,
.contact__table-item textarea::placeholder {
  font-size: 1.6rem;
  font-weight: 300;
  color: #bababa;
}

.contact__table-item textarea::-webkit-textarea-placeholder {
  font-weight: 300;
}

@media screen and (max-width: 1024px) {

  .contact__table-item input,
  .contact__table-item textarea {
    font-size: 1.5rem;
  }

  .contact__table-item input::placeholder,
  .contact__table-item textarea::placeholder {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 834px) {

  .contact__table-item input,
  .contact__table-item textarea {
    font-size: 1.4rem;
  }

  .contact__table-item input::placeholder,
  .contact__table-item textarea::placeholder {
    font-size: 1.4rem;
  }
}


/* ====================================================
CONFIRM
==================================================== */
/*# sourceMappingURL=contact.css.map */


.contact__underline,
a.contact__underline:hover {
  text-decoration: underline;
}


.thanks__link {
  margin: 70px auto 0;
}

@media screen and (max-width: 834px) {
  .thanks__link {
    margin: 50px auto 0;
  }
}