@charset "UTF-8";
/* ==================================================
 page-contact.css
================================================== */
/* ==================================================
 カラー変数
-------------------------------------------------- */
/* ==================================================
 ブレイクポイント
-------------------------------------------------- */
/* ==================================================
 Animation 関連
-------------------------------------------------- */
/* ==================================================
 フォント
-------------------------------------------------- */
/* --------------------------------------------------
 clamp() フォントサイズ計算関数
	@param $min    - 最小フォントサイズ（px単位の数値）
	@param $max    - 最大フォントサイズ（px単位の数値）
	@param $vp-min - 最小ビューポート幅（デフォルト: 375）
	@param $vp-max - 最大ビューポート幅（デフォルト: 1200）
	@param $root   - ルートフォントサイズ（デフォルト: 16）
-------------------------------------------------- */
/* ==================================================
 体裁
-------------------------------------------------- */
/* ==================================================
 ミックスイン
-------------------------------------------------- */
/* --------------------------------------------------
 メディアクエリ ミックスイン
-------------------------------------------------- */
/* --------------------------------------------------
 コンテナ ミックスイン
-------------------------------------------------- */
/* --------------------------------------------------
 透明度 ミックスイン
-------------------------------------------------- */
/* --------------------------------------------------
 ボックスシャドウ ミックスイン
-------------------------------------------------- */
/* --------------------------------------------------
 その他 ミックスイン
-------------------------------------------------- */
@layer page {
  /* ==================================================
   1.0 - お問い合わせ
  -------------------------------------------------- */
  .contact__header {
    margin-bottom: 30px;
  }
  .contact__header .section-title {
    width: 100%;
    padding-bottom: 0.75em;
    border-bottom: 1px solid #E3DACC;
  }
  .contact__header .section-title__jp {
    font-size: clamp(1.125rem, 0.8977272727rem + 0.9696969697vw, 1.625rem);
  }
  /* ------------------------------------------------
   1.1 - お電話でのお問い合わせ
  ------------------------------------------------ */
  .contact-phone__list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  @media (min-width: 1025px) {
    .contact-phone__list {
      gap: 50px;
    }
  }
  .contact-phone__item {
    flex: 1;
    min-width: 200px;
  }
  .contact-phone__item .btn {
    justify-content: flex-start;
    height: 56px;
    border-radius: clamp(0.9375rem, 0.5113636364rem + 1.8181818182vw, 1.875rem);
  }
  @media (min-width: 600px) {
    .contact-phone__item .btn {
      height: 72px;
    }
  }
  @media (min-width: 1025px) {
    .contact-phone__item .btn {
      height: 90px;
    }
  }
  .contact-phone__item .ico--tel {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 5px;
  }
  /* ------------------------------------------------
   1.2 - メールでのお問い合わせ
  ------------------------------------------------ */
  /* 1.2.1 - フォーム（基本）
  ------------------------------------------------ */
  .form {
    padding-block: 35px;
  }
  @media (min-width: 600px) {
    .form {
      padding-block: 50px;
    }
  }
  .form label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .form label span {
    white-space: nowrap;
  }
  .form input,
  .form textarea,
  .form select {
    width: 100%;
    margin: 1px;
    border: 1px solid #E3DACC;
    border-radius: 7px;
    background-color: #FFFFFF;
    appearance: none;
  }
  .form input:focus,
  .form textarea:focus,
  .form select:focus {
    outline: 2px solid #EA932A;
    outline-offset: 0;
  }
  .form input::placeholder,
  .form textarea::placeholder {
    color: #777777;
    opacity: 1;
  }
  .form select:invalid {
    color: #777777;
  }
  .form input[type=text],
  .form input[type=tel],
  .form input[type=email],
  .form textarea {
    padding: 10px 15px;
  }
  .form input[type=radio],
  .form input[type=checkbox] {
    position: relative;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
  }
  .form input[type=radio]::after,
  .form input[type=checkbox]::after {
    position: absolute;
    inset: 0;
    content: "";
  }
  .form input[type=radio] {
    border-radius: 100px;
  }
  .form input[type=radio]:checked::after {
    width: 12px;
    height: 12px;
    margin: auto;
    border-radius: 100px;
    background-color: #EA932A;
  }
  .form input[type=checkbox] {
    border-radius: 2px;
  }
  .form input[type=checkbox]:checked::after {
    height: 8px;
    width: 14px;
    margin: 2px auto 0;
    border-bottom: 3px solid #EA932A;
    border-left: 3px solid #EA932A;
    transform: rotate(-45deg);
  }
  .form textarea {
    min-height: 100px;
    resize: vertical;
  }
  /* 1.2.2 - 要素の調整
  ------------------------------------------------ */
  input.form-input--short {
    width: 15%;
    min-width: 80px;
  }
  input.form-input--veryshort {
    width: 10%;
    min-width: 50px;
  }
  input.form-input--postalcode-1 {
    width: 15%;
    min-width: 80px;
  }
  input.form-input--postalcode-2 {
    width: 20%;
    min-width: 100px;
  }
  .btn--address {
    height: auto;
    margin-left: 20px;
    padding: 10px 15px;
    border-color: #3A3123;
    border-radius: 7px;
    line-height: 1.42857143;
  }
  .select-wrapper {
    position: relative;
    width: 50%;
    min-width: 280px;
    height: 50px;
    margin: 1px;
    border: 1px solid #E3DACC;
    border-radius: 7px;
    background-color: #FFFFFF;
  }
  .select-wrapper::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    background-color: #EA932A;
    content: "";
  }
  .select-wrapper::after {
    position: absolute;
    top: 22px;
    right: 12px;
    width: 4px;
    height: 4px;
    border: solid #FFFFFF;
    border-width: 1px 1px 0 0;
    transform: rotate(135deg);
    content: "";
  }
  @media (min-width: 600px) {
    .select-wrapper::after {
      top: 20px;
      right: 12px;
      width: 7px;
      height: 7px;
    }
  }
  .select-wrapper select {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 40px 0 15px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    appearance: none;
  }
  .choice-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px 25px;
  }
  .choice-list__item {
    flex-basis: 100%;
  }
  @media (min-width: 600px) {
    .choice-list__item {
      flex: 1;
      min-width: 45%;
    }
  }
  .choice-list__item--full {
    flex-basis: 100%;
  }
  /* 1.2.3 - フィールドセット
  ------------------------------------------------ */
  .form__fieldset {
    margin-bottom: 20px;
  }
  @media (min-width: 600px) {
    .form__fieldset {
      margin-bottom: 30px;
    }
  }
  .form__fieldset--block {
    margin-block: 30px;
  }
  @media (min-width: 600px) {
    .form__fieldset--block {
      margin-block: 50px;
    }
  }
  .form__fieldset-hl {
    padding: 10px 20px;
    border-radius: 100px;
    background-color: #EA932A;
    color: #FFFFFF;
    font-weight: 500;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-block: 15px;
    border-top: 1px solid #E3DACC;
  }
  @media (min-width: 600px) {
    .form-group:not(.form-group.form-group__verification) {
      flex-direction: row;
      gap: 20px;
      padding-block: 20px;
    }
  }
  legend.form-group__label,
  label.form-group__label {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    font-weight: 500;
    line-height: 1.64;
  }
  @media (min-width: 600px) {
    legend.form-group__label,
    label.form-group__label {
      flex-shrink: 0;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px;
      width: 36%;
      padding: 0;
    }
  }
  @media (min-width: 1025px) {
    legend.form-group__label,
    label.form-group__label {
      width: 33%;
    }
  }
  @media (max-width: 599px) {
    legend.form-group__label .non-br,
    label.form-group__label .non-br {
      display: none;
    }
  }
  .form-group__verification {
    padding-block: 60px 30px;
    gap: 20px;
  }
  @media (min-width: 1025px) {
    .form-group__verification {
      flex-direction: row;
      padding-block: 80px 50px;
    }
  }
  @media (min-width: 600px) {
    .form-group__verification label.form-group__label {
      align-items: center;
    }
  }
  .form-group__verification .form-group__control--verification {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .form-group__label--required {
    display: inline-block;
    margin-top: 0.25em;
    padding: 6px 8px;
    background-color: #B70000;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }
  .form-group__label--note {
    position: relative;
    display: inline-grid;
    padding-left: 1em;
    white-space: wrap;
  }
  .form-group__label--note::before {
    position: absolute;
    content: "※";
  }
  .form-group__fieldset {
    display: contents;
  }
  .form-group__control {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  .form-group__control.form-group__control--column {
    flex-direction: column;
    align-items: flex-start;
  }
  .confirm .form-group__control {
    font-weight: 600;
  }
  .form__notes {
    max-width: 800px;
    margin: 0 auto;
    font-size: clamp(0.875rem, 0.8181818182rem + 0.2424242424vw, 1rem);
    text-align: left;
  }
  @media (min-width: 600px) {
    .form__notes {
      padding-top: 60px;
    }
  }
  .form__notes p {
    margin-bottom: 1em;
  }
  /* 1.2.4 - ボックス
  ------------------------------------------------ */
  .contact__box {
    overflow-y: auto;
    height: 200px;
    margin-bottom: 20px;
    padding: 20px 30px;
    border: 1px solid #E3DACC;
    background-color: #FFFFFF;
  }
  @media (min-width: 600px) {
    .contact__box {
      padding: 30px 40px;
    }
  }
}

/*# sourceMappingURL=page-contact.css.map */
