@charset "UTF-8";

@font-face {
  font-family: 'Neura Display';
  src: url('../fonts//NeuraDisplayVariable[wght].ttf') format('truetype');
  font-weight: 400 700;
  font-display: swap;
}
:root {
   --color-black: #2D2D2D;
   --color-white: #FFFFFF;
   --color-gray: #807E7B;
   --color-navy: #1D4984;
   --color-pink: #DBB7C3;
   --color-gold: #BD9E85;
}

/*============================
全体
============================*/
html {
  font-size: 10px;
}
body {
  font-family: "LINE Seed JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-black);
  letter-spacing: 0;
  width: 100%;
}
main {
  overflow-x: hidden;
}
a {
  color: var(--color-black);
  text-decoration: none;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
li {
  list-style: none;
}
.neura-display {
  font-family: 'Neura Display', sans-serif;
}
.serif {
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 767px) {
  /* コンテンツ幅 */
  .wrapper {
    width: 100%;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
}
/*============================
共通
============================*/
.contact-bg {
  background: linear-gradient(
  0deg,
  rgba(217, 241, 244, 1) 13%,
  rgba(217, 241, 244, 0.3) 77%,
  rgba(217, 241, 244, 0) 99%
  );
  padding-bottom: 16rem;
}
@media screen and (max-width: 1200px) {
  .contact-bg {
    padding-bottom: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-bg {
    padding-bottom: 4rem;
  }
}
/*============================
コンタクト・ファーストビュー
============================*/
#contact-fv {
  position: relative;
  width: 100%;
  height: 40.2rem;
  background: url("../img/contact-fv.webp") center / cover no-repeat;
  margin-top: 14.1rem;
  padding: 11.6rem 0;
}
.contact-fv__inner {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.contact-fv__title-box {
  text-align: center;
}
.contact-fv__title {
  position: relative;
  display: inline-block;
  color: var(--color-navy);
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .05em;
  margin-bottom: 1.1rem;
}
.contact-fv__title::after {
  content: "";
  position: absolute;
  bottom: .5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 21.3rem;
  height: 2px;
  background-color: var(--color-navy);
}
.contact-fv__subtitle {
  color: var(--color-white);
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: .05em;
  text-shadow: 2px 2px 2px #B4B098;
  margin-bottom: .7rem;
}
.contact-fv__txt {
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .05em;
  text-shadow: 2px 2px 2px #B4B098;
}
@media screen and (max-width: 1200px) {
  .contact-fv__inner {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  #contact-fv {
    width: 100%;
    height: 68rem;
    background: url("../img/contact-fv_sp.webp") left / cover no-repeat;
    margin-top: 0;
    padding: 40rem 0 0;
  }
  .contact-fv__title {
    font-size: 6rem;
    margin-bottom: .6rem;
  }
  .contact-fv__title::after {
    bottom: .5rem;
    width: 17rem;
    height: 1px;
  }
  .contact-fv__subtitle {
    font-size: 2.8rem;
    margin-bottom: .4rem;
  }
  .contact-fv__txt {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  
}

/*============================
コンタクト
============================*/
#contact {
  width: 100%;
  padding: 6.4rem 4rem 16rem;
}
.contact-cont {
  background-color: var(--color-white);
  width: 100%;
  max-width: 94rem;
  margin: 0 auto;
  padding: 8rem 0;
  border-radius: 16px;
}
.contact__inner {
  max-width: 63rem;
  margin: 0 auto;
  padding: 0 4rem;
}
.contact__title {
  color: var(--color-navy);
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 1.6rem;
}
.contact__faq-btn {
  background-color: var(--color-navy);
  width: min(100%, 25rem);
  min-height: 4.7rem;
  border-radius: 8px;
  border: 2px solid var(--color-navy);
  margin: 0 auto 3.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.6rem;
  text-decoration: none;
  transition: .3s;
}
.contact__faq-btn-text {
  color: var(--color-white);
  font-size: 1.6rem;
  line-height: 1.2;
  transition: .3s;
}
.contact__faq-btn-arrow {
  width: 2.2rem;
  height: 1.3rem;
  background-image: url("../img/white-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition:
    transform 0.3s,
    background-image 0.3s;
}
.contact-form {
  width: 100%;
}
.contact-form__title {
  color: var(--color-navy);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1.6rem;
}
.contact-form__input-area,
.contact-form__confirm-area {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.contact-form__confirm-area {
  display: none;
}

.contact-form.is-confirm .contact-form__input-area {
  display: none;
}

.contact-form.is-confirm .contact-form__confirm-area {
  display: flex;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 20.5rem 1fr;
  align-items: center;
  gap: .4rem;
}
.contact-form__row--textarea {
  align-items: flex-start;
}
.contact-form__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3rem;
  padding: 0.4rem 0.8rem;
  background-color: #F4FEFF;
  color: var(--color-navy);
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
}
.contact-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.4rem;
  min-height: 1.8rem;
  background-color: var(--color-navy);
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.5;
}
.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  background-color: var(--color-white);
  color: var(--color-black);
  font-size: 1.6rem;
  line-height: 1.5;
}
.contact-form__input,
.contact-form__select {
  height: 3rem;
  padding: .4rem .8rem;
}
textarea.contact-form__textarea {
  min-height: 16.8rem;
  padding: .4rem .8rem;
  resize: none;
  box-sizing: border-box;
}
.contact-form__input::placeholder {
  color: #D9D9D9;
}
.contact-form__select {
  appearance: auto;
}
.contact-form__privacy {
  text-align: center;
  margin-bottom: 4rem;
}
.contact-form__check-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.5;
}
.contact-form__checkbox {
  width: 1.2rem;
  height: 1.2rem;
  cursor: pointer;
}
.contact-form__submit-wrap {
  text-align: center;
  position: relative;
  width: min(100%, 35rem);
  height: 4rem;
  margin: 0 auto;
}
.contact-form__submit-wrap::after {
  content: "";
  position: absolute;
  top: 52%;
  right: 4rem;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 1.7rem;
  background-image: url("../img/white-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  transition:
    transform 0.3s,
    background-image 0.3s;
}
.contact-form__submit {
  width: 100%;
  height: 4rem;
  border-radius: 8px;
  border: 2px solid var(--color-navy);
  background-color: var(--color-navy);
  color: var(--color-white);
  font-size: 2rem;
  line-height: 1.2;
  cursor: pointer;
  transition: .3s;
}
.contact-form__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media screen and (max-width: 1200px) {
  #contact {
    width: 100%;
    padding: 6.4rem 4rem 8rem;
  }
}
@media screen and (max-width: 767px) {
  #contact {
    width: 100%;
    padding: 4rem 2rem 4rem;
  }
  .contact-cont {
    padding: 2.4rem 0;
    border-radius: 12px;
  }
  .contact__inner {
    padding: 0 1.6rem;
  }
  .contact__title {
    font-size: 2.2rem;
  }
  .contact__faq-btn {
    margin: 0 auto 1.6rem;
  }
  .contact__faq-btn-text {
    font-size: 1.4rem;
  }
  .contact__faq-btn-arrow {
    width: 2rem;
    height: 1rem;
  }
  .contact-form__title {
    font-size: 1.8rem;
    margin-bottom: .8rem;
  }
  .contact-form__input-area {
	gap: 1.6rem;
  }
  .contact-form__confirm-area {
	gap: .8rem;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: .8rem;
  }
  .contact-form__row--textarea {
    align-items: flex-start;
  }
  .contact-form__label {
    width: 100%;
  }
  .contact-form__input,
  .contact-form__select {
    height: 4rem;
    padding: .4rem .8rem;
  }
  .contact-form__textarea {
    padding: .4rem .8rem;
  }
  .contact-form__privacy {
    margin-bottom: .8rem;
  }
  .contact-form__submit {
    height: 4rem;
    gap: 2.4rem;
	font-size: 2rem;
  }
  .contact-form__submit-wrap::after {
    width: 2.4rem;
    height: 1.4rem;
  }
  .contact-form__back {
	margin-top: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .contact__faq-btn:hover {
    background-color: var(--color-white);
  }
  .contact__faq-btn:hover .contact__faq-btn-text {
    color: var(--color-navy);
  }
  .contact__faq-btn:hover .contact__faq-btn-arrow {
	background-image: url("../img/navy-arrow.svg");
	transform: translateX(8px);
  }
  .contact-form__submit-wrap:hover .contact-form__submit:not(:disabled) {
	background-color: var(--color-white);
	color: var(--color-navy);
  }
  /* hover時矢印：disabledではない時だけ */
  .contact-form__submit-wrap:hover:has(.contact-form__submit:not(:disabled))::after {
	background-image: url("../img/navy-arrow.svg");
	transform: translateY(-50%) translateX(8px);
  }
}

/*============================
コンタクト・確認ページ
============================*/
.contact-form.is-confirm .contact-form__label {
  background-color: var(--color-white);
}
.contact-form.is-confirm .contact-form__submit-wrap {
  text-align: center;
  position: relative;
  width: min(100%, 35rem);
  height: 4rem;
  margin: 0 auto;
}
.contact-form.is-confirm .contact-form__submit {
  width: 100%;
  height: 4rem;
  border-radius: 8px;
  border: 2px solid var(--color-navy);
  background-color: var(--color-navy);
  color: var(--color-white);
  font-size: 2rem;
  line-height: 1.2;
  cursor: pointer;
  transition: .3s;
	padding: 0;
}
.contact-form__confirm-text {
  width: 100%;
  min-height: 4.8rem;
  padding: .8rem 0;
  font-size: 1.6rem;
  line-height: 1.7;
  white-space: pre-wrap;
}
.contact-form__button-list {
  display: flex;
　flex-flow: column;
  justify-content: center;
  gap: 2.4rem;
}
.contact-form__back {
  color: var(--color-navy);
  font-size: 1.4rem;
  line-height: 1.5;
  text-decoration: underline;
  text-align: center;
  cursor: pointer;
}
/*============================
コンタクト・サンクスページ
============================*/
#contact-thanks {
  margin-top: 14rem;
  padding: 0 4rem;
}
.contact-thanks__cont {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.contact-thanks__title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 2.4rem;
}
.contact-thanks__text {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: .8rem;
}
.contact-thanks__note {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 4rem;
}
.contact-thanks__btn {
  width: min(100%, 28rem);
  min-height: 4.8rem;
  border-radius: 8px;
  border: 2px solid var(--color-navy);
  background-color: var(--color-navy);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2.4rem;
  margin: 0 auto;
  text-decoration: none;
  transition: .3s;
}
.contact-thanks__btn-text {
  color: var(--color-white);
  font-size: 2rem;
  line-height: 1.2;
  transition: .3s; 
}
.contact-thanks__btn-arrow {
  width: 2.4rem;
  height: 1.3rem;
  background-image: url("../img/white-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition:
    transform 0.3s,
    background-image 0.3s;
}
@media screen and (max-width: 767px) {
#contact-thanks {
  margin-top: 6rem;
  padding: 0 2rem;
}
.contact-thanks__title {
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
}
.contact-thanks__text {
  font-size: 1.4rem;
}
.contact-thanks__note {
  font-size: 1rem;
  margin-bottom: 2.4rem;
}
.contact-thanks__btn {
  width: min(100%, 24rem);
  min-height: 4rem;
  gap: 1.6rem;
}
.contact-thanks__btn-text {
  color: var(--color-white);
  font-size: 1.6rem;
}
.contact-thanks__btn-arrow {
  width: 2rem;
  height: 1rem;
}
}
@media screen and (min-width: 768px) {
  .contact-thanks__btn:hover {
    background-color: var(--color-white);
  }
  .contact-thanks__btn:hover .contact-thanks__btn-text {
    color: var(--color-navy);
  }
  .contact-thanks__btn:hover .contact-thanks__btn-arrow {
	background-image: url("../img/navy-arrow.svg");
	transform: translateX(8px);
  }
}
/*============================
コンタクト・エラーメッセージ
============================*/
.wpcf7-not-valid-tip {
  display: block;
  color: #d93025;
  font-size: 1.4rem;
  line-height: 1.5;
}
.contact-form__error {
  display: block;
  color: #d93025;
  font-size: 1.4rem;
  line-height: 1.5;
}
.contact-form__input.is-error {
  border-color: #d93025;
}
