/* mail.html 専用スタイル */

/* blog.html の section-title スタイルを参考に調整 */
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #3b434c;
}
.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #ffc107; /* accent color */
  bottom: 0;
  left: calc(50% - 20px);
}
.section-title h3 {
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #6c757d;
}

/* 新しい2カラムレイアウト用スタイル */

/* 左カラムのテキストとリストのスタイル */
.text-orange {
  color: #ff8c00 !important; /* DarkOrange - ユーザー指定のオレンジ色 */
}

.list-unstyled li i {
  /* ここでは色を指定しない。HTML側でtext-orangeクラスを適用する */
}

.lead.text-primary.fw-bold {
  color: #1b85fb !important;
}

/* フォームカードの白い背景を確保 */
.card.unified-form,
.unified-form {
  background-color: #ffffff !important;
}

.card.unified-form:hover,
.unified-form:hover {
  background-color: #ffffff !important;
}

/* フォームカードのホバーアニメーションを完全に無効化 */
.card.unified-form,
.unified-form,
div.card.unified-form,
div.unified-form {
  transform: none !important;
  transition: none !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
}

.card.unified-form:hover,
.unified-form:hover,
div.card.unified-form:hover,
div.unified-form:hover {
  transform: none !important;
  transition: none !important;
  animation: none !important;
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .col-lg-6.mb-5 {
    margin-bottom: 3rem !important; /* スマホ表示時の下マージン */
  }

  .card.unified-form {
    padding: 1rem;
    background-color: #ffffff !important;
  }

  .card.unified-form .card-body {
    padding: 0.5rem;
  }
}

@media (max-width: 576px) {
  /* .card-title の定義はsection-title h2と競合するため削除 */
}
