@charset "UTF-8";
/*----------------------------------------
	共通
----------------------------------------*/
.u-device-sp {
  display: none;
}
@media screen and (max-width: 699.98px) {
  .u-device-sp {
    display: block;
  }
}

@media screen and (max-width: 699.98px) {
  .u-device-pc {
    display: none;
  }
}

/*----------------------------------------
	c-loading
----------------------------------------*/
.c-loading {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.6s ease;
  /* 最後に白背景が消える */
}
.c-loading.is-hide-bg {
  opacity: 0;
  pointer-events: none;
}
.c-loading__container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.8rem;
  width: 18rem;
  opacity: 0;
  transition: opacity 0.8s ease;
  /* STEP2: ロゴフェードイン */
  /* STEP3: ロゴフェードアウト */
}
.is-show .c-loading__container {
  opacity: 1;
  transition-delay: 0.5s;
}
.is-hide-logo .c-loading__container {
  opacity: 0;
  transition-delay: 0s;
}
.c-loading__container svg {
  fill: #102193;
}
.c-loading__container span {
  font-size: 1.6rem;
  font-weight: 500;
}

/*----------------------------------------
	c-button
----------------------------------------*/
.c-button {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  max-width: 32.5rem;
  width: 100%;
  height: 6rem;
  background: #0F2192;
  border-radius: 1rem;
  transition: 0.4s;
}
@media screen and (max-width: 699.98px) {
  .c-button {
    margin: auto;
  }
}
.c-button:hover {
  opacity: 0.7;
}
.c-button.-white {
  background: #fff;
}
.c-button.-white p {
  color: #2e2e2e;
}
.c-button.-white div {
  border-left: 1px dashed #2e2e2e;
}
.c-button.-white div svg {
  stroke: #2e2e2e;
}
.c-button.-gray {
  background: #EDEDED;
}
.c-button.-gray p {
  color: #2F2E2E;
}
.c-button.-gray div {
  border-left: 1px dashed #2F2E2E;
}
.c-button.-gray div svg {
  stroke: #2F2E2E;
}
.c-button p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  padding: 0 2.4rem;
}
.c-button div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 100%;
  aspect-ratio: 1;
  border-left: 1px dashed #fff;
}
.c-button div svg {
  stroke: #fff;
}

/*----------------------------------------
	c-form
----------------------------------------*/
.c-form__list {
  margin: 0 0 4.8rem;
}
.c-form__list__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  background: #EDEDED;
  padding: 0.8rem 1.2rem;
}
.c-form__list__heading .required {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 2.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  background: #C0D7EB;
}
.c-form__list__content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  font-size: 1.5rem;
  padding: 2.4rem 4rem 4rem;
}
@media screen and (max-width: 699.98px) {
  .c-form__list__content {
    padding: 1.6rem 1.6rem 2.4rem;
  }
}
.c-form__list__content input[type=text],
.c-form__list__content input[type=email],
.c-form__list__content input[type=tel],
.c-form__list__content textarea {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  padding: 0.8rem 1.6rem;
  border: 1px solid #7C7C7C;
}
.c-form__list__content input[type=text]::-moz-placeholder, .c-form__list__content input[type=email]::-moz-placeholder, .c-form__list__content input[type=tel]::-moz-placeholder, .c-form__list__content textarea::-moz-placeholder {
  color: #7C7C7C;
}
.c-form__list__content input[type=text]::placeholder,
.c-form__list__content input[type=email]::placeholder,
.c-form__list__content input[type=tel]::placeholder,
.c-form__list__content textarea::placeholder {
  color: #7C7C7C;
}
.c-form__list__content input[type=text][readonly],
.c-form__list__content input[type=email][readonly],
.c-form__list__content input[type=tel][readonly],
.c-form__list__content textarea[readonly] {
  padding: 0;
  border: none;
}
.c-form__list__content textarea {
  height: 10rem;
}
@media screen and (max-width: 699.98px) {
  .c-form__list__content textarea {
    height: 16rem;
  }
}
.c-form__list__content .wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
@media screen and (max-width: 699.98px) {
  .c-form__list__content .wpcf7-checkbox {
    grid-template-columns: auto;
    gap: 0.8rem;
  }
}
.c-form__list__content .wpcf7-checkbox .wpcf7-list-item {
  display: flex;
  margin: 0;
}
.c-form__list__content .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
}
.c-form__list__content .wpcf7-checkbox .wpcf7-list-item input[type=checkbox] {
  width: 1.6rem;
  height: 1.6rem;
  margin: 0.5rem 0.8rem 0 0;
}
@media screen and (max-width: 699.98px) {
  .c-form__list__content .wpcf7-checkbox .wpcf7-list-item input[type=checkbox] {
    margin: 0.2rem 0.8rem 0 0;
  }
}
.c-form__list__content .wpcf7-checkbox .wpcf7-list-item span {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 699.98px) {
  .c-form__list__content .wpcf7-checkbox .wpcf7-list-item span {
    font-size: 1.3rem;
  }
}
.c-form__list__content .wpcf7-not-valid-tip {
  font-size: 1.2rem;
  margin: 0.8rem 0 0;
}
.c-form__privacy {
  margin: 0 0 5.6rem;
}
@media screen and (max-width: 699.98px) {
  .c-form__privacy {
    margin: 0 0 4rem;
  }
}
.c-form__privacy__heading {
  font-size: 1.7rem;
  font-weight: 500;
  font-family: var(--Jost);
  text-align: center;
  margin: 0 0 2.4rem;
}
.c-form__privacy__txt {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8;
  margin: 0 4rem 4rem;
}
@media screen and (max-width: 699.98px) {
  .c-form__privacy__txt {
    margin: 0 0 2.4rem;
  }
}
.c-form__privacy__content {
  height: 24rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
  background: #EDEDED;
  padding: 4rem;
  margin: 0 0 1.6rem;
  overflow-y: scroll;
}
@media screen and (max-width: 699.98px) {
  .c-form__privacy__content {
    padding: 1.6rem;
  }
}
.c-form__privacy__content p + p {
  margin: 1em 0 0;
}
.c-form__privacy__checkbox .wpcf7-acceptance .wpcf7-list-item {
  display: flex;
  justify-content: center;
  background: #EDEDED;
  padding: 1.6rem;
  margin: 0;
}
.c-form__privacy__checkbox .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
}
.c-form__privacy__checkbox .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] {
  width: 1.6rem;
  height: 1.6rem;
  margin: 0.3rem 0.8rem 0 0;
}
@media screen and (max-width: 699.98px) {
  .c-form__privacy__checkbox .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] {
    margin: 0.2rem 0.8rem 0 0;
  }
}
.c-form__privacy__checkbox .wpcf7-acceptance .wpcf7-list-item span {
  flex: 1;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
}
.c-form__btn {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.c-form__btn input[type=submit],
.c-form__btn input[type=button] {
  display: flex;
  align-items: center;
  width: 32.5rem;
  height: 6rem;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: left;
  color: #fff;
  background: #0F2192 url(../img/_common/icon-arrow-submit01.svg) no-repeat center right/6rem;
  padding: 1.6rem 2.4rem;
  border: none;
  border-radius: 1rem;
  transition: 0.4s;
  cursor: pointer;
}
.c-form__btn input[type=submit]:hover,
.c-form__btn input[type=button]:hover {
  opacity: 0.7;
}
.c-form__btn input[type=submit] {
  background: #0F2192 url(../img/_common/icon-arrow-submit01.svg) no-repeat center right/6rem;
}
.c-form__btn input[type=button] {
  background: #2e2e2e url(../img/_common/icon-arrow-submit01.svg) no-repeat center right/6rem;
}
.c-form__complete__heading {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 2.4rem;
}
.c-form__complete__content {
  margin: 0 0 4rem;
}
.c-form__complete__content p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
.c-form__complete__content p + p {
  margin: 1em 0 0;
}

/*----------------------------------------
	l-container
----------------------------------------*/
.l-container__title {
  position: fixed;
  top: 0;
  left: 0;
  width: 58rem;
  height: 100vh;
  z-index: 1;
}
@media screen and (max-width: 699.98px) {
  .l-container__title {
    position: static;
    width: 100%;
    height: 24rem;
  }
}
.l-container__main {
  width: 70rem;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 699.98px) {
  .l-container__main {
    width: 100%;
  }
}

/*----------------------------------------
	和歌山店 追加CSS
----------------------------------------*/
/*----------------------------------------
	和歌山店 追加CSS
----------------------------------------*//*# sourceMappingURL=custom.css.map */