@charset "utf-8";
/* CSS Document */

* {
  box-sizing: border-box;
}



/* 問い合わせ画面
--------------------------------------------------------------------------- */

body {
  margin: 0;
  color: #1a1a1a;
  background: #f5f5f5;
	font-family: "Inter" , "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-style: normal;
}

a {
  color: inherit;
}

.contact-page {
  background: #fff;
}

.contact {
  position: relative;
  max-width: 1500px;
  min-height: calc(100vh - 80px);
  margin: 0 auto;
  padding: 36px 80px 120px;
}

.contact__side {
  position: absolute;
  top: 28px;
  left: 24px;
  color: #961414;
}

.contact__en {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
	font-family: "Inter" , sans-serif;
	font-style: normal;
	font-weight: 500;
}

.contact__ja {
  position: absolute;
  top: 4px;
  left: 48px;
  width: 120px;
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  writing-mode: horizontal-tb;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 600px;
  gap: 80px;
  padding-top: 140px;
}

.contact__intro {
  padding-left: 20px;
}

.contact__title {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
	font-weight: 500;
	font-family: "Zen Old Mincho", serif;
}

.form__field {
  margin-bottom: 28px;
}

.form__label {
  display: block;
  margin: 0 0 12px;
  font-size: 0.9375rem;
  font-weight: 500;
}

.form__required {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 8px;
  background: #111;
  color: #fff;
  font-size: 0.625rem;
  line-height: 1.3;
	font-weight: 500;
}

.form__input,
.form__textarea {
  width: 100%;
  border: 0;
  background: #f2f2f2;
  font-size: 1rem;
  font-family: inherit;
}

.form__input {
  height: 42px;
  padding: 8px 12px;
}

.form__textarea {
  min-height: 120px;
  padding: 12px;
  resize: vertical;
}

.radio-list {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 20px;
}

.radio-list label {
  font-size: 0.9375rem;
  font-weight: 500;
}

.radio-list input {
  margin-right: 10px;
}

.form__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-top: 38px;
}

.checkbox {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 500;
}

.checkbox input {
  width: 14px;
  height: 14px;
}

.checkbox a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 256px;
  height: 66px;
  padding: 0 28px;
  border: 0;
  background: #961414;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
	transition: opacity .3s ease;
}
.btn-submit:hover {
	opacity: 0.7;
}

.error-box {
  margin-bottom: 24px;
  padding: 16px 20px;
  background: #fff0f0;
  color: #961414;
  font-weight: bold;
}

.error {
  margin: 8px 0 0;
  color: #961414;
  font-size: 0.8125rem;
}

.error-box p {
  margin: 0;
}

.privacy-area {
  display: block;
}

.privacy-area .error {
  margin-top: 8px;
}


@media screen and (max-width: 1024px) {
  .contact {
    padding: 32px 24px 72px;
  }

  .contact__side {
    position: static;
    margin-bottom: 48px;
  }

  .contact__en {
    writing-mode: horizontal-tb;
  }

  .contact__ja {
    position: static;
    width: auto;
    margin-top: 12px;
  }
.contact__title {
	text-align: center;
}

  .contact__inner {
    display: block;
    padding-top: 0;
  }

  .contact__intro {
    padding-left: 0;
    margin-bottom: 40px;
  }

  .radio-list {
    display: block;
  }

  .radio-list label {
    display: block;
    margin-bottom: 14px;
  }

  .form__footer {
    display: block;
  }

  .checkbox {
    margin-bottom: 28px;
  }

  .btn-submit {
    width: 100%;
  }
}





/* 確認画面
--------------------------------------------------------------------------- */
.form-wrap .lead {
  margin: 0 0 32px;
  line-height: 1.9;
}

.confirm-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #e5e5e5;
}

.confirm-table th,
.confirm-table td {
  padding: 18px 0;
  border-bottom: 1px solid #e5e5e5;
  line-height: 1.8;
  vertical-align: top;
}

.confirm-table th {
  width: 170px;
  padding-right: 24px;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}

.confirm-table td {
  word-break: break-word;
}

.btn-area {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 44px;
}

.btn-area form {
  margin: 0;
}

.btn-area button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 50px;
  border: 0;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: opacity .3s ease;
}

.btn-area button:hover {
  opacity: 0.7;
}

.btn-area .btn-sub {
  background: #d9d9d9;
  color: #1a1a1a;
}

.btn-area form:last-child button {
  width: 200px;
  background: #961414;
}


@media screen and (max-width: 1024px) {
  .confirm-table,
  .confirm-table tbody,
  .confirm-table tr,
  .confirm-table th,
  .confirm-table td {
    display: block;
    width: 100%;
  }

  .confirm-table th {
    padding: 18px 0 4px;
    border-bottom: 0;
    color: #961414;
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .confirm-table td {
    padding: 0 0 18px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 1rem;
    line-height: 1.8;
  }

  .btn-area {
    display: block;
  }

  .btn-area form:first-child {
    text-align: center;
  }

  .btn-area .btn-sub {
    width: 160px;
    margin: 0 auto;
  }

  .btn-area form + form {
    margin-top: 16px;
  }

  .btn-area form:last-child button {
    width: 100%;
  }
}




/* 完了画面
--------------------------------------------------------------------------- */
.thanks-wrap {
  line-height: 1.9;
}

.thanks-en {
  margin: 0 0 28px;
  color: #961414;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.thanks-wrap p {
  margin: 0 0 18px;
}

.thanks-link {
  margin-top: 56px !important;
}

.thanks-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 56px;
  padding: 0 28px;
  background: #961414;
  color: #fff;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: opacity .3s ease;
}

.thanks-link a:hover {
  opacity: 0.7;
}


@media screen and (max-width: 1024px) {
  .confirm-list > div {
    display: block;
    padding: 16px 0;
  }

  .confirm-list dt {
    margin-bottom: 8px;
  }

  .confirm-btns {
    display: block;
  }

  .btn-back,
  .confirm-btns .btn-submit {
    width: 100%;
  }

  .btn-back {
    margin-bottom: 16px;
  }

  .thanks-en {
    font-size: 2rem;
    text-align: center;
  }

  .thanks-link a {
    width: 100%;
  }
}