@charset "UTF-8";
:root {
  --font-base: "Noto Sans JP", sans-serif;
  --font-en: "Lato", sans-serif;
  --font-ubuntu: "Ubuntu", sans-serif;
  --leading-trim: calc((1em - 1lh) / 2);
  --blue: #2635A7;
  --bg-noise: url("../img/common/bg-noise-blue.png") repeat;
  --bg-noise-yel: url("../img/common/bg-noise-yellow.png") repeat;
  --border: #2635A71A;
  --border02: #2635A733;
  --yellow: #FFF100;
  --grey: #F2F3F4;
  --header-height: 71px;
  --sp-fixed-btns-height: 46px;
  --radius: 10px;
  --mask-arrow: url("../img/common/icon-arrow.svg") no-repeat center center/ contain;
  --top-part-height: min(calc(70 / 1280) * 100vw, 70px);
}
@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 60px;
  }
}

.p-entry-sec__header {
  padding-block: 118px calc(78px + var(--top-part-height));
}
@media screen and (max-width: 768px) {
  .p-entry-sec__header {
    padding-block: 80px calc(50px + var(--top-part-height));
  }
}
.p-entry-sec__header-text {
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: calc(var(--leading-trim) + 38px);
}
.p-entry-sec__body {
  position: relative;
  background: #E5E9F2;
  padding-block: 50px 200px;
}
@media screen and (max-width: 768px) {
  .p-entry-sec__body {
    padding-block: 50px 130px;
  }
}
.p-entry-sec__body .c-sec-top-part {
  background: #E5E9F2;
}
.p-entry-sec__body .l-inner {
  container-type: inline-size;
}
.p-entry-sec__form-wrap {
  margin-top: 18px;
  background: #fff;
  border-radius: var(--radius);
  padding-block: 88px 100px;
  padding-inline: 10.2150537634%;
}
@media screen and (max-width: 768px) {
  .p-entry-sec__form-wrap {
    padding-inline: 20px;
  }
}

.entry-form__item {
  display: grid;
  grid-template-columns: 205px 1fr;
  align-items: center;
  gap: 0 15px;
  margin-bottom: 30px;
}
.entry-form__item:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 1023px) {
  .entry-form__item {
    grid-template-columns: 1fr;
    gap: 25px 0;
    margin-bottom: 40px;
  }
}

.entry-form__label {
  display: flex;
  justify-content: space-between;
  align-items: start;
  line-height: 1;
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  .entry-form__label {
    justify-content: flex-start;
    gap: 0 13px;
    font-size: 1.4rem;
  }
}
.entry-form__item.address .entry-form__label {
  margin-top: 18px;
}
@media screen and (max-width: 1023px) {
  .entry-form__item.address .entry-form__label {
    margin-top: 0;
  }
}
.entry-form__label .required {
  font-size: 1.3rem;
  color: #C50707;
  font-weight: 400;
}

.wpcf7-form-control-wrap {
  font-weight: 400;
  font-size: 1.6rem;
  display: block;
}

.wpcf7-form-control-wrap:has(select) {
  position: relative;
}
.wpcf7-form-control-wrap:has(select)::before {
  content: "";
  display: block;
  width: 12px;
  aspect-ratio: 12/7;
  background: url("../img/common/icon-simple-arrow-btm.svg") no-repeat center center/contain;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* 初期非表示 */
.js-cf7-back,
.entry-form__back-btn,
.entry-form__submit-btn,
.contact-form__button {
  display: none;
}

/* 非表示 */
.cf7ms-hidden {
  display: none !important;
}

input, select {
  background: #FAFBFC;
  border-radius: 5px;
  border: 1px solid #DADBDC;
  padding: calc((54px - 1lh) / 2) 20px;
  font-size: 1.6rem;
  line-height: 1.5;
}

.wpcf7-form-control-wrap > input,
.wpcf7-form-control-wrap > select {
  width: 100%;
}

[type=radio], [type=checkbox] {
  background: none;
}

input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #C9C9C9;
  display: grid;
  place-content: center;
  transition: border-color 0.3s;
}
input[type=radio]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4658E1;
  opacity: 0;
  transition: opacity 0.3s;
}

input[type=radio]:checked {
  border-color: #4658E1;
}
input[type=radio]:checked::before {
  opacity: 1;
}

/* チェックボックス */
input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 4px;
  border: 1px solid #C9C9C9;
  display: grid;
  place-content: center;
  transition: border-color 0.3s, background 0.3s;
}
input[type=checkbox]::before {
  content: "";
  width: 14px;
  height: 11px;
  background: #fff;
  opacity: 0;
  -webkit-mask: url("../img/common/icon-check.svg") no-repeat center center/contain;
  mask: url("../img/common/icon-check.svg") no-repeat center center/contain;
  transition: opacity 0.3s;
}

input[type=checkbox]:checked {
  background: #4658E1;
  border-color: transparent;
}
input[type=checkbox]:checked::before {
  opacity: 1;
}

::-moz-placeholder {
  color: #C9C9C9;
}

::placeholder {
  color: #C9C9C9;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}

/* ラジオボタン */
.wpcf7-radio {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 0 50px;
}
@media screen and (max-width: 768px) {
  .wpcf7-radio {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
}

.entry-form__inputs-birthday {
  display: flex;
  align-items: start;
  gap: 12px;
}
@media screen and (max-width: 600px) {
  .entry-form__inputs-birthday {
    flex-direction: column;
    gap: 10px 0;
  }
}

.entry-form__input-wrap {
  display: flex;
  align-items: center;
  gap: 0 5px;
}

.entry-form__item.birthday .entry-form__input-wrap {
  display: grid;
  grid-template-columns: auto auto;
}

.entry-form__item.birthday .wpcf7-form-control-wrap {
  display: contents;
}

.entry-form__item.birthday input {
  width: 145px;
}

.entry-form__item.birthday .text {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.4rem;
}

.entry-form__item.birthday .wpcf7-not-valid-tip {
  grid-row: 2;
  grid-column: 1;
}

.entry-form__item.address {
  align-items: start;
}

.entry-form__item.address .entry-form__input-wrap {
  margin-bottom: 12px;
}

.entry-form__item.address .entry-form__input-wrap input {
  width: 170px;
}

.entry-form__acceptance {
  margin-top: 64px;
  padding-top: 60px;
  position: relative;
}
.entry-form__acceptance::before {
  content: "";
  display: block;
  /*.p-entry-sec__body .l-inner.--sのコンテンツボックス基準で幅を指定*/
  width: 91.8279569892cqw;
  height: 1px;
  background: rgba(0, 0, 0, 0.1019607843);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.wpcf7-form-control.wpcf7-acceptance {
  display: flex;
  justify-content: center;
}

.entry-form__acceptance .wpcf7-list-item label {
  gap: 13px;
  font-weight: 600;
}

.entry-form__acceptance .underline {
  text-decoration: underline;
  text-underline-offset: 2.5px;
  text-decoration-thickness: 1px;
}

.entry-form__acceptance-desc {
  margin-top: calc(var(--leading-trim) + 20px);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.75;
  text-align: center;
}
.entry-form.is-confirm .entry-form__acceptance-desc {
  display: none;
}

.entry-form__submit {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .entry-form__submit {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}

.entry-form.is-confirm .entry-form__submit {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  order: 1;
}

@media screen and (max-width: 768px) {
  .entry-form__submit .c-btn {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}

.entry-form__submit .c-btn__btn {
  width: 260px;
}
@media screen and (max-width: 768px) {
  .entry-form__submit .c-btn__btn {
    width: min(100% - 55px, 260px);
  }
}

.entry-form.is-confirm .entry-form__back-btn {
  display: inline-flex !important;
  order: 2;
  margin-top: 60px;
}

.entry-form.is-confirm .entry-form__submit-btn {
  display: block !important;
  width: 100%;
}

.entry-form.is-confirm .entry-form__submit-btn .c-btn__btn {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
}

.entry-form.is-confirm .entry-form__submit-btn .c-btn-text {
  font-size: 2rem;
  font-weight: bold;
}

/* 確認画面 */
.entry-form__confirm-heading {
  margin-bottom: 70px;
}

.cf7ms-confirm__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 0;
  padding: 25px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
}
.cf7ms-confirm__item:first-of-type {
  padding-top: 0;
}
@media screen and (max-width: 1023px) {
  .cf7ms-confirm__item {
    flex-direction: column;
  }
}

.cf7ms-confirm__label {
  flex: 0 0 160px;
}
@media screen and (max-width: 1023px) {
  .cf7ms-confirm__label {
    flex: 0 0 auto;
  }
}

.cf7ms-confirm__value {
  flex: 1;
  word-break: break-all;
  font-weight: 400;
}

.p-entry__thanks-text {
  margin-top: 80px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}

.recaptcha__note {
  margin-top: 40px;
  font-size: 1.3rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .recaptcha__note {
    text-align: left;
  }
}

.entry-form.is-confirm .recaptcha__note {
  order: 3;
}

.recaptcha__link {
  text-decoration: underline;
}

.recaptcha__link::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url('data:image/svg+xml, <svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 7L13 0M7.44 0.5H13V5.51M5.98 2.5H0.5V12.5H10.5V6.77" stroke="%232635A7" stroke-miterlimit="10" stroke-width="1.5"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: -1px;
  margin-inline: 2px 4px;
}

.recaptcha__link:hover::after {
  background-image: url('data:image/svg+xml, <svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 7L13 0M7.44 0.5H13V5.51M5.98 2.5H0.5V12.5H10.5V6.77" stroke="%232635A7" stroke-opacity="0.4" stroke-miterlimit="10" stroke-width="1.5"/></svg>');
}