@charset "UTF-8";
/* ------------------------------------------
 *  _color.scss
 *  色変数設定
 * ------------------------------------------ */
/* ------------------------------------------
 *  _breakpoint.scss
 *  ブレークポイント設定
 * ------------------------------------------ */
/* ------------------------------------------
 *  _z-index.scss
 *  z-index設定
 * ------------------------------------------ */
/* ------------------------------------------
 *  _func.scss
 *  関数設定
 * ------------------------------------------ */
/**********************************************************/
/**********************************************************/
/* ------------------------------------------
 *  _hover.scss
 *  mixin - ホバー定義
 * ------------------------------------------ */
/**********************************************************/
/**********************************************************/
/**********************************************************/
/**********************************************************/
/**********************************************************/
/**********************************************************/
/**********************************************************/
/**********************************************************/
/**********************************************************/
/**********************************************************/
/* ------------------------------------------
 *  _set.scss
 *  mixin - CSS簡易設定定義
 * ------------------------------------------ */
/* flexセット */
/* ------------------------------------------ */
/* inline-flexセット */
/* ------------------------------------------ */
/* gridセット */
/* ------------------------------------------ */
/* background-imageセット */
/* ------------------------------------------ */
/* 疑似クラスセット */
/* ------------------------------------------ */
/* position:absoluteセット */
/* ------------------------------------------ */
/* ------------------------------------------
*  _parts.scss
 *  mixin - パーツ定義
 * ------------------------------------------ */
/* 三角右矢印 */
/* ------------------------------------------ */
/* 丸ボーダー */
/* ------------------------------------------ */
/* ------------------------------------------
 *  お問い合わせ
 * ------------------------------------------ */
.contact__list {
  margin-bottom: clamp(calc(30 / 10 * 1rem), calc(calc((60 - 1200 * calc((60 - 30) / (1200 - 375))) / 10) * 1rem) + calc(100 * calc((60 - 30) / (1200 - 375)) * 1vw), calc(60 / 10 * 1rem));
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: clamp(calc(20 / 10 * 1rem), calc(calc((30 - 1200 * calc((30 - 20) / (1200 - 375))) / 10) * 1rem) + calc(100 * calc((30 - 20) / (1200 - 375)) * 1vw), calc(30 / 10 * 1rem));
}
.contact__list > li {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  row-gap: 0.5em;
}
.contact__list > li .error__text > .error {
  color: #E60020;
}
.contact__list__head {
  width: 100%;
}
.contact__list__head > .head {
  font-size: clamp(calc(16 / 10 * 1rem), calc(calc((18 - 1200 * calc((18 - 16) / (1200 - 375))) / 10) * 1rem) + calc(100 * calc((18 - 16) / (1200 - 375)) * 1vw), calc(18 / 10 * 1rem));
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  column-gap: 0.5em;
}
.contact__list__head > .head > .required {
  font-size: 0.6em;
  color: #FFFFFF;
  background-color: #E60020;
  padding: 0.15em 0.75em;
}
.contact__list__head > .head > .small {
  font-size: 0.8em;
}
@media screen and (max-width: 767.9px) {
  .contact__list__head > .head {
    flex-wrap: wrap;
  }
  .contact__list__head > .head > .small {
    width: 100%;
  }
}
.contact__list__input {
  width: 100%;
}
.contact__list__input input[type=text], .contact__list__input input[type=email], .contact__list__input textarea {
  background-color: #F0F0F0;
  border-radius: 0.3rem;
  width: 100%;
  padding: 0.5em 1em;
}
.contact__list__input input[type=text]::placeholder, .contact__list__input input[type=email]::placeholder, .contact__list__input textarea::placeholder {
  color: #CCCCCC;
}
.contact__list__input input[type=text].error, .contact__list__input input[type=email].error, .contact__list__input textarea.error {
  border: 1px solid #E60020;
}
.contact__list__input textarea {
  height: 10lh;
}
.contact__list__input .input__radio {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem 4rem;
}
.contact__list__input .input__radio > li > label {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  column-gap: 0.25em;
  cursor: pointer;
}
.contact__list__input .input__radio > li > label > input[type=radio] {
  min-width: 1em;
  height: auto;
  aspect-ratio: 1/1;
  border: 0.1rem solid #333333;
  border-radius: 50%;
  position: relative;
  margin-top: 0.3em;
}
.contact__list__input .input__radio > li > label > input[type=radio]::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0.5em;
  height: auto;
  aspect-ratio: 1/1;
  opacity: 0;
  border-radius: 50%;
  background-color: #57769C;
}
.contact__list__input .input__radio > li > label > input[type=radio]:checked::after {
  opacity: 1;
}
@media screen and (max-width: 767.9px) {
  .contact__list__input .input__radio {
    flex-direction: column;
    align-items: flex-start;
  }
}
.contact .c-button > .btn:disabled {
  background-color: #CCCCCC;
  cursor: not-allowed;
}
.contact form .formTable {
  margin: 5rem 0;
  width: 100%;
}
.contact form .formTable tbody tr {
  border-bottom: 0.1rem solid #F0F0F0;
}
.contact form .formTable tbody tr th, .contact form .formTable tbody tr td {
  padding: 1.5rem;
}
.contact form .formTable tbody tr:first-child th, .contact form .formTable tbody tr:first-child td {
  padding-top: 0;
}
.contact form .formTable tbody tr:last-child th, .contact form .formTable tbody tr:last-child td {
  padding-bottom: 0;
}
@media screen and (max-width: 767.9px) {
  .contact form .c-button {
    flex-direction: column;
  }
}
.contact form .c-button > .btn {
  width: calc((100% - 2rem) / 2);
  padding: 1em;
}
.contact form .c-button > .btn--back {
  background-color: #CCCCCC;
}
@media screen and (max-width: 767.9px) {
  .contact form .c-button > .btn {
    width: 100%;
  }
}

.contact .text {
  line-height: 1.8em;
  text-align: center;
  margin: 0 auto 4rem;
  padding-bottom: 3rem;
  border-bottom: 0.2rem solid #57769C;
}
@media screen and (max-width: 767.9px) {
  .contact .text {
    margin-bottom: 2rem;
  }
}
.contact__block {
  position: relative;
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  gap: 2rem 7rem;
}
@media screen and (max-width: 767.9px) {
  .contact__block {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto;
    align-items: center;
    gap: 2rem 4rem;
  }
}
.contact__block::before, .contact__block::after {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: auto;
}
.contact__block::before {
  width: 8rem;
  aspect-ratio: 75/89;
  background-image: url(../../img/contact/icon_contact_01.svg);
}
@media screen and (max-width: 767.9px) {
  .contact__block::before {
    grid-row: 2/3;
    grid-column: 1/2;
    justify-self: flex-end;
  }
}
.contact__block::after {
  width: 8rem;
  aspect-ratio: 34/43;
  background-image: url(../../img/contact/icon_contact_02.svg);
}
@media screen and (max-width: 767.9px) {
  .contact__block::after {
    grid-row: 2/3;
    grid-column: 2/3;
  }
}
.contact__content {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767.9px) {
  .contact__content {
    grid-row: 1/2;
    grid-column: 1/3;
  }
}
.contact__content .contact__lead {
  font-size: clamp(calc(13 / 10 * 1rem), calc(calc((15 - 1200 * calc((15 - 13) / (1200 - 375))) / 10) * 1rem) + calc(100 * calc((15 - 13) / (1200 - 375)) * 1vw), calc(15 / 10 * 1rem));
}
.contact__content .contact__tel {
  color: #333333;
  transition: color 0.3s;
}
.contact__content .contact__tel:hover {
  color: #57769C;
}
.contact__content .contact__mail {
  transition: opacity 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-top: 2rem;
  gap: 0 1.5rem;
}
.contact__content .contact__mail:hover {
  opacity: 0.5;
}
.contact__content .contact__mail > img {
  width: 16em;
}
.contact__content .contact__mail::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: auto;
  width: 2.4rem;
  aspect-ratio: 24/19;
  background-image: url(../../img/contact/icon_mail.svg);
}
