/** Shopify CDN: Minification failed

Line 63:0 Unexpected "}"

**/
/* --- 基本調整 --- */
.contact img {
  max-width: 100%;
}

.contact .form__message {
  align-items: flex-start;
}

.contact .icon-success {
  margin-top: 0.2rem;
}

.contact .field {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 750px) {
  .contact .field {
    margin-bottom: 2rem;
  }
}

/* --- ボタン --- */
.contact__button {
  margin-top: 3rem;
}
@media screen and (min-width: 750px) {
  .contact__button {
    margin-top: 4rem;
  }
}

/* --- フィールドレイアウト（2カラム用） --- */
@media screen and (min-width: 750px) {
  .contact__fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* --- フォームコンテナの幅指定 --- */
.contact--wide {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding-left: 5vw;
  padding-right: 5vw;
}

/* --- フォーム本体の幅解除 --- */
.contact-form {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
}

/* --- 横並びフィールド --- */
.field-horizontal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

/* ラベル */
.field-horizontal label {
  width: 100%;
  font-weight: bold;
  margin-bottom: 6px;
  text-align: left;
}

/* 入力欄・セレクトボックス・テキストエリア */
.field-horizontal input,
.field-horizontal select,
.field-horizontal textarea {
  width: 100%;
  max-width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* テキストエリア拡張 */
.field-horizontal textarea {
  min-height: 200px;
}

/* お問い合わせ内容用 */
.field.field-full textarea {
  width: 100%;
  min-height: 400px;
  font-size: 1.1rem;
  padding: 1rem;
}

/* --- ラジオボタン横並び --- */
.radio-options {
  display: flex;
  gap: 32px; /* ラジオボタン間の余白 */
  align-items: center;
  flex-wrap: wrap;
}
/* ラジオボタン用ラベルを通常表示に戻す */
.radio-options label {
  width: auto !important;
  text-align: left !important;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
    white-space: nowrap; /* テキストの折り返し防止 */
}
.radio-options input[type="radio"] {
  accent-color: #000; /* モダンブラウザで色変更（黒） */
  transform: scale(1.2); /* ボタンサイズ少し拡大 */
}

/* --- モバイル対応 --- */
@media screen and (max-width: 749px) {
  .field-horizontal {
    flex-direction: column;
    align-items: stretch;
  }

  .field-horizontal label {
    width: 100%;
    text-align: left;
    margin-bottom: 5px;
  }

  .radio-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* テキストエリアの下に余白を追加 */
#ContactForm-body {
  margin-bottom: 30px;
}


/* === 完了メッセージコンテナ === */
.contact-form__success {
  background-color: #f0f4f8; /* 背景色（淡いブルー） */
  border: 1px solid #cce5ff; /* 枠線（薄いブルー） */
  padding: 20px; /* 内側の余白 */
  margin-bottom: 20px; /* 下の余白 */
  border-radius: 10px; /* 角丸 */
  text-align: center; /* 中央揃え */
}

/* === 見出しスタイル（アイコンとメッセージ） === */
.contact-form__success-heading {
  font-size: 1.8em; /* 大きめの文字サイズ */
  color: #007bff; /* 明るいブルー */
  margin-bottom: 10px; /* 下の余白 */
  display: flex; /* アイコンとテキストを横並びに */
  align-items: center; /* 垂直中央揃え */
  justify-content: center; /* 水平方向中央揃え */
}

/* === SVGアイコンの余白調整 === */
.contact-form__success-heading svg {
  margin-right: 10px; /* アイコンとテキストの間に余白 */
}

/* === 本文メッセージのスタイル === */
.contact-form__success-message {
  font-size: 1.2em; /* やや大きめの文字サイズ */
  color: #555; /* ダークグレー（読みやすさ重視） */
}

/* --- 20250519追加送信完了メッセージの表示を強制維持 --- */
.contact-form__success {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transition: none !important; /* フェードアウト防止 */
}
