@charset "UTF-8";
/* -------------------------
 * 下層MV
 * ------------------------- */
.entry__under-mv {
  background: url(../img/entry/mv.webp) no-repeat center top/cover;
}

/* -------------------------
 * フォームのステップ
 * ------------------------- */
.entry-form__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 23rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto 60px;
}

.entry-form__step::after {
  content: "";
  position: absolute;
  top: 4rem;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  height: 1px;
  background-color: #ddd;
  z-index: 0;
}

.entry-form__step li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.entry-form__step-num {
  width: 8rem;
  aspect-ratio: 1;
  background-color: #dfdfdf;
  border-radius: 50%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3.2rem;
  margin-bottom: 0.8rem;
  z-index: 1;
  padding-top: 0.3rem;
}

.entry-form__step-txt {
  font-size: 1.6rem;
  text-align: center;
  color: #888;
  display: block;
}

.entry-form__step li.active .entry-form__step-num {
  background-color: #dbbead;
}
.entry-form__step li.active .entry-form__step-txt {
  color: #222;
}

/* -------------------------
 * フォームメッセージ
 * ------------------------- */
.entry-form__top-message {
  margin-bottom: 8rem;
}
@media (max-width: 639px) {
  .entry-form__top-message {
    margin-bottom: 3rem;
  }
}

.entry-form__top-message-ttl {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 3rem;
}
@media (max-width: 639px) {
  .entry-form__top-message-ttl {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}

.entry-form__top-message-txt {
  padding-left: 1em;
  text-indent: -1em;
  font-weight: 200;
}
.entry-form__top-message-txt.--center {
  text-align: center;
}

.entry-form__top-link-btn {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 1.4rem;
  max-width: 24rem;
  border-radius: 50px;
  border: 1px solid #222;
  font-size: 1.6rem;
}
.entry-form__top-link-btn:hover {
  color: var(--cream);
  background: #000;
}

/* -------------------------
 * フォーム項目
 * ------------------------- */
/*バリデーションエラー*/
.entry-form .error {
  color: #ab6c5e;
  margin-top: 0.6rem;
  display: block;
}

.contact-form__parts .error-bg {
  background-color: #f3e9e4 !important;
}

/*入力欄*/
input,
select,
textarea {
  width: 100%;
  min-height: 5rem;
  padding: 1rem;
  background-color: #eee;
}

textarea {
  min-height: 26rem;
}

/*必須*/
.require-txt {
  color: #c39586;
  border: 1px solid #c39586;
  padding: 0.2rem 1.2rem;
  font-size: 1.4rem;
  margin-left: 1rem;
}

/*コンテンツ*/
.contact-form__parts {
  width: 100%;
}
.contact-form__parts:has(.form-date) input, .contact-form__parts:has(.form-tel) input {
  max-width: 32rem;
}
.contact-form__parts:has(.form-postal-code) input {
  max-width: 22rem;
}
.contact-form__parts .form-experience:hover {
  cursor: pointer;
}

.contact-form__item + .contact-form__item {
  margin-top: 4rem;
}

.contact-form__label {
  margin-bottom: 1.6rem;
  font-weight: 500;
}

.--down-arrow {
  position: relative;
  display: block;
}
.--down-arrow::after {
  position: absolute;
  right: 1.6rem;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #222;
  border-bottom: 1px solid #222;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none;
}

.placeholder-txt {
  color: #888;
}

.form-date-wrapper {
  width: 200px;
}

.form-select-year {
  width: 100%;
}

/* 日付 */
.entry-form__date {
  position: relative;
  cursor: pointer;
}

.entry-form__date .form-date {
  width: 100%;
  height: 100%;
  cursor: pointer;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
       appearance: textfield;
}

.entry-form__date .form-date::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
  background: transparent;
}

/* プレースホルダー */
.form-select-year:invalid,
.form-name:invalid,
.form-experience:invalid,
.form-inquiry-type:invalid {
  color: #888;
}
.form-select-year option,
.form-name option,
.form-experience option,
.form-inquiry-type option {
  color: #222;
}
.form-select-year option[value=""],
.form-name option[value=""],
.form-experience option[value=""],
.form-inquiry-type option[value=""] {
  color: #888;
}

/* -------------------------
 * プライバシーポリシー
 * ------------------------- */
.privacy-policy {
  margin-top: 6rem;
  padding: 5rem 3rem 5rem;
  border: solid 1px #ddd;
}

.privacy-policy__ttl {
  font-size: 2rem;
  font-weight: normal;
  text-align: center;
  position: relative;
  margin-bottom: 3rem;
}
.privacy-policy__ttl::before {
  content: "PRIVACY POLICY";
  font-size: 5.4rem;
  font-family: "Forum", serif;
  display: inline-block;
  position: absolute;
  width: 100%;
  top: -4.8rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  color: rgba(182, 195, 200, 0.3);
}

.privacy-policy {
  max-height: 27rem;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #ddd transparent;
}
.privacy-policy::-webkit-scrollbar {
  width: 6px;
}
.privacy-policy::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 3px;
}
.privacy-policy::-webkit-scrollbar-track {
  background-color: transparent;
}
.privacy-policy > p:first-of-type {
  margin-bottom: 3rem;
}

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

.privacy-policy__list-ttl {
  font-size: 2.2rem;
  font-weight: normal;
  border-left: 3px solid #b6c3c8;
  padding-left: 1em;
  margin-bottom: 2rem;
}

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

.privacy-policy__detail-list-item {
  padding-left: 16px;
  position: relative;
  line-height: 1.8;
}
.privacy-policy__detail-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 1rem;
  aspect-ratio: 1;
  background-color: #8b9ea4;
  border-radius: 50%;
}

.privacy-policy__controller-checkbox {
  text-align: center;
  margin-block: 2rem 6rem;
}
.privacy-policy__controller-checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.8rem;
}
.privacy-policy__controller-checkbox .agree-check {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 2rem;
  aspect-ratio: 1;
  min-height: auto;
  border-radius: 2px;
  background-color: #eee;
  cursor: pointer;
  position: relative;
}
.privacy-policy__controller-checkbox .agree-check:checked::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 4px;
  width: 13px;
  height: 7px;
  border-bottom: 2px solid #8b9ea4;
  border-left: 2px solid #8b9ea4;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* -------------------------
 * 送信ボタン
 * ------------------------- */
.privacy-policy__controller-submit {
  text-align: center;
}
.privacy-policy__controller-submit input {
  background-color: #8b9ea4;
  font-size: 1.6rem;
  width: 100%;
  max-width: 28rem;
  padding-block: 2rem;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.privacy-policy__controller-submit input:disabled {
  background-color: #dfdfdf;
  color: #fff;
}/*# sourceMappingURL=entry.css.map */