@charset "UTF-8";
/* ==============================
   2025-09-22 コントラスト改善
   ============================== */
body {
    font-family: Arial, sans-serif; 
    background-color: #fafafa; /* より明るい薄グレー */
    color: #111111;            /* 濃い黒でコントラストUP */
    font-weight: 500;          /* 少し太めで視認性UP */
}

/* ==============================
   2025-09-22 リンク色の統一（訪問済みも同じ色）
   ============================== */
a {
  color: #0066cc;
  text-decoration: underline;
}
a:hover,
a:focus {
  color: #004080;
  text-decoration: none;
}
/* ==============================
   2025-09-22 追加ここまで
   ============================== */

/* <p>要素の下に余白を追加 */
p {
    margin-bottom: 2px; /* 例として、下側に3pxの余白を設定 */
}

/* カスタム下線付き見出しスタイル */
.bsagt-underlined {
    position: relative;
    display: inline-block;
    margin-bottom: 20px; /* 下部のマージン */
}

.bsagt-underlined::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px; /* 下線の位置調整 */
    height: 5px; /* 下線の太さ */
    background-color: #ff69b4; /* 下線の色 */
}

/* ⏏️ ボタンの共通スタイル（形・サイズ統一 & 白文字固定） */
.btn-style {
  display: inline-block;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #fff !important; /* 🔹 白色を強制適用 */
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

/* 🎀 ピンクボタン（白文字固定） */
.btn-pink {
  background-color: #ff69b4;
}

.btn-pink:hover {
  background-color: #ff4081;
}

.btn-pink:active {
  transform: translateY(3px);
}

/* 🔥 目立つグラデーションボタン（白文字固定） */
.btn-attractive {
  background: linear-gradient(45deg, #ff5722, #ff9800);
}

.btn-attractive:hover {
  background: linear-gradient(45deg, #e64a19, #ff5722);
}

.btn-attractive:active {
  transform: translateY(3px);
}

/* 🛠️ 念のため、aタグの色指定が影響しないようにする */
.btn-style a {
  color: #fff !important; /* 🔹 ボタン内のリンクも白色固定 */
  text-decoration: none;
}
/* ⏏️ シンプルなボタン（ここまで） */

/* 地域の町名を囲ってる線 */
.bsagt-box-container {
    border: 1px solid #ccc;
    padding: 15px;
 ? ?margin-bottom: 20px; /* 下部のマージンを追加 */
}
/* 🔵キャンペーン価格のフォントサイズと影 */
.bsagt-price-shadow {
    font-size: 22px; /* フォントサイズの調整 */
    color: #4A90E2; /* フォントの色 */
    text-shadow: 2px 2px 2px #888; /* テキストに影をつける */
}

/* 特大キャンペーンのタイトル装飾 */
.bsagt-campaign-title {
    font-size: 26px;
    font-weight: bold;
    background: linear-gradient(to right, #ffcc00, #ff9900, #ff6600); /* ゴールド～オレンジ */
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* 軽い影で立体感 */
}

/* 初回消火器点検無料キャンペーン */
.bsagt-campaign-1 {
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(to right, red, orange, yellow); /* 赤からオレンジ、イエローへ */
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
    display: inline-block;
}

/* 10回割 半年毎の保守点検契約キャンペーン */
.bsagt-campaign-2 {
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(to right, #007bff, #66ccff, #0099cc); /* 青から薄い青へ */
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
    display: inline-block;
}

/* 感知器100個以上交換で10個無料プレゼント */
.bsagt-campaign-3 {
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(to right, #c6426e, #ff7e5f, #ffb238); /* ピンクからオレンジ、イエローへ */
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
    display: inline-block;
}

/* お友達紹介キャンペーン */
.bsagt-campaign-4 {
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(to right, #32a852, #a8eb12, #f4d03f); /* 緑からイエローへ */
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
    display: inline-block;
}
/* 🔵追加したキャンペーン */

.bsagt-box-title {
    position: absolute; /* タイトルの絶対位置指定 */
    top: -40px; /* 上からの位置調整 */
    left: 50%; /* 中央揃えのために左端から50%の位置に設定 */
    transform: translateX(-50%); /* 要素の幅の半分だけ左に移動して完全に中央揃えに */
    background-color: #d7d5c5; /* タイトルの背景色 */
    padding: 10px 20px; /* タイトル内の余白 */
    border: 2px dashed #A7A297; /* タイトルのボーダースタイル */
    border-radius: 5px; /* タイトルの角丸設定 */
    z-index: 1; /* 前面に表示。他の要素とのz-index値に注意 */
    font-family: 'Arial', sans-serif; /* タイトルのフォント設定 */
    font-size: 20px; /* タイトルのフォントサイズを調整 */
    font-weight: bold; /* タイトルのフォントの太さ */
    text-align: center; /* タイトルテキストを中央揃えに */
    width: 90%; /* タイトルの幅をコンテナの90%に設定 */
    max-width: 600px; /* タイトルの最大幅を設定 */
}

/* 空白スペースを空ける */
.bsagt-space {
    height: 20px; /* 例として20pxの高さを設定 */
}

/* セクションとボックスのスタイリング */
.bsagt-box3-3 {
    margin: 2em auto; /* ボックスの外側余白設定を中央揃えで指定 */
    padding: 2em; /* ボックス内の余白設定 */
    position: relative; /* ポジショニング基点の設定 */
    background-color: #efede9; /* ボックスの背景色を設定 */
    border-radius: 10px; /* ボックスの角丸設定 */
}

.bsagt-box3-3-inner {
    border: 2px dashed #A7A297; /* 内部ボックスのボーダースタイル */
    padding: 10px 20px; /* 内部ボックスのパディング */
    margin-top: 20px; /* タイトルとの間隔 */
    margin-bottom: 20px; /* 次のコンテンツとの間隔 */
    border-radius: 10px; /* 内部ボックスの角丸設定 */
}

/* テキストのフォントサイズを調整 */
.bsagt-section p, .bsagt-section span {
    font-size: 16px; /* 段落とスパンのフォントサイズの調整 */
}

/* 空白スペースを空ける */
.bsagt-space {
    height: 20px; /* 例として20pxの高さを設定 */
}

/* 表のスタイリング */
.bsagt-table {
    width: 100%; /* 表の幅を100%に設定 */
    border-collapse: collapse; /* 表のボーダーを重ねる */
}

.bsagt-table th {
    background-color: #b3e0ff; /* テーブルヘッダーの背景色を少し濃い水色に設定 */
    border: 1px solid #ddd; /* ヘッダーのボーダー設定 */
    padding: 8px; /* ヘッダー内の余白設定 */
    text-align: left; /* ヘッダーテキストを左揃えに設定 */
}

.bsagt-table td {
    background-color: #e6f7ff; /* テーブルデータの背景色を薄い水色に設定 */
    border: 1px solid #ddd; /* データセルのボーダー設定 */
    padding: 8px; /* データセル内の余白設定 */
    text-align: left; /* データテキストを左揃えに設定 */
}

/* ステップセクションのスタイリング */
.bsagt-steps .bsagt-step {
    display: flex; /* フレックスボックスモデルを使用 */
    align-items: center; /* アイテムを中央揃え */
    margin-bottom: 10px; /* 下の余白 */
}

.bsagt-circle {
    display: inline-block; /* インラインブロック要素として表示 */
    border: 2px solid #4B8B3B; /* ボーダースタイル */
    border-radius: 50%; /* 円形に設定 */
    width: 30px; /* 幅の設定 */
    height: 30px; /* 高さの設定 */
    text-align: center; /* テキストを中央揃え */
    line-height: 26px; /* 行の高さを設定 */
    margin-right: 10px; /* 右の余白 */
    color: #4B8B3B; /* テキストの色 */
    font-weight: bold; /* テキストの太さ */
}

/* テキストのフォントサイズを調整 */
.bsagt-section p, .bsagt-section span {
    font-size: 16px; /* フォントサイズの調整 */
}

/* 会社紹介セクションのスタイリング */
.bsagt-company-info {
    border: 2px solid #A7A297; /* 枠のスタイル */
    padding: 20px; /* 内側の余白 */
    margin: 20px 0; /* 上下の余白 */
    border-radius: 10px; /* 角丸のスタイル */
    background-color: #f9f9f9; /* 背景色 */
}

.bsagt-company-info dt {
    font-weight: bold; /* 見出しのフォントを太字に */
}

.bsagt-company-info dd + dt {
    margin-top: 15px; /* 各項目の上の余白 */
}

.bsagt-company-info dd {
    margin-left: 20px; /* 説明文の左のインデント */
}

.bsagt-divider {
    border-bottom: 1px solid #ccc; /* 横線のスタイル */
    margin: 10px 0; /* 横線の上下の余白 */
}

/* テキスト選択禁止スタイル */
.bsagt-noselect {
  -webkit-user-select: none; /* Chrome/Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Internet Explorer/Edge */
  user-select: none;         /* 標準構文 */
}

/* ★🟨ベージュ背景の目立たせるポイント */
.bsagt-important-point {
    background-color: #ffe0cc;
    border-left: 5px solid #ff6a00;
    padding: 15px;
}

/*表のテーブル*/
.bsagt-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.bsagt-table th, .bsagt-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.bsagt-table th {
    background-color: #f2f2f2;
}

/* 行のホバーエフェクト */
.bsagt-table tr:hover {
    background-color: #f5f5f5;
}
.bsagt-twotone-header {
    display: flex;
    width: 100%; /* 枠いっぱいの幅 */
    height: 50px; /* 見出しの高さ */
}

.bsagt-header-black {
    background-color: #000;
    width: 15%; /* 左側の黒い部分の幅 */
    height: 100%; /* 親コンテナと同じ高さ */
}

.bsagt-header-pink {
    background-color: #ff69b4;
    width: 85%; /* 右側のピンクの部分の幅 */
    height: 100%; /* 親コンテナと同じ高さ */
    color: #fff; /* 文字色を白に */
    display: flex;
    align-items: center; /* 中央揃え（垂直方向） */
    justify-content: center; /* 中央揃え（水平方向） */
    padding: 0 20px; /* テキストの左右の余白 */
}

/* パソコン表示用スタイル */
@media (min-width: 769px) {
  .bsagt-header-phone {
    max-width: 300px; /* PC表示時に幅を大きくする */
    padding: 8px 12px; /* 内側余白を拡大 */
  }

  .bsagt-header-phone h2 {
    font-size: 1.4rem; /* 会社名のフォントサイズを大きく */
  }

  .bsagt-header-phone .bsagt-phone-number {
    font-size: 1.6rem; /* 電話番号のフォントサイズを大きく */
  }

  .bsagt-header-phone .bsagt-phone-hours {
    font-size: 1.2rem; /* 受付時間のフォントサイズを大きく */
  }

  .bsagt-header-phone .bsagt-phone-message {
    font-size: 1.2rem; /* メッセージのフォントサイズを大きく */
  }
}

/* スマホ用レスポンシブ（さらに小さく） */
@media (max-width: 768px) {
  .bsagt-header-phone {
    top: 55%; /* スマホ用に縦方向を調整 */
    right: 1%; /* 横方向を右端に */
    max-width: 180px; /* 幅をさらに縮小 */
    padding: 4px 6px; /* 内側余白をさらに減らす */
    transform: translateY(-55%);
  }

  .bsagt-header-phone h2 {
    font-size: 0.9rem; /* 会社名のフォントサイズを少し小さく */
    margin: 0;
  }

  .bsagt-header-phone .bsagt-phone-number {
    font-size: 1.1rem; /* 電話番号を少し小さく */
    margin: 1px 0; /* 上下余白を調整 */
  }

  .bsagt-header-phone .bsagt-phone-hours {
    font-size: 0.8rem; /* 受付時間を少し小さく */
    margin: 0; /* 隙間を完全に詰める */
  }

  .bsagt-header-phone .bsagt-phone-message {
    font-size: 0.8rem; /* メッセージを少し小さく */
    margin-top: 0; /* 下部余白を削減 */
  }
}
/* 🟥 丸アイコン消すやつ */
/* 🎯 `\ea57` の丸アイコンを削除（ファビコンは影響なし） */
li::before {
    font-family: inherit !important; /* アイコンフォントを解除 */
}

li::before {
    content: "" !important;
    display: none !important;
    visibility: hidden !important;
}

/* 📞【「お問い合わせ先：」＋電話番号を青色に & 大きく】 */
.strong-contact, .tel-link {
    font-size: 20px !important; /* 🔹 大きく統一（画像と同じサイズ感） */
    font-weight: bold !important; /* 🔹 太字 */
    color: #0066cc !important; /* 🔹 青色 */
    text-decoration: none !important; /* 🔹 下線なし */
}

/* 📞【ホバー時に下線を追加】 */
.tel-link:hover {
    text-decoration: underline !important; /* 🔹 ホバー時に下線 */
}

/* 📢【「プロに無料相談」ボタンの赤色強調】 */
.bold-red {
    color: #ff3333 !important; /* 🔹 明るい赤 */
    font-weight: bold !important; /* 🔹 太字 */
}

/* 🟥 地域リンク残すフッターの見開き地域用 */
/* ▼ 外枠（シンプルな白枠） ▼ */
.outer-region-container {
    background-color: transparent; /* 背景色なし */
    border: 2px solid #ccc; /* シンプルな白枠（少しグレー寄り） */
    border-radius: 10px;
    padding: 20px;
    margin: 5px 0;
}

/* ▼ 地域リンクボタン ▼ */
.region-link-list .region-button a {
    text-decoration: none;
    color: #333;
    background-color: #f5f5f5;
    border: 1px solid #aaa;
    padding: 10px 15px;
    border-radius: 6px;
    transition: 0.3s;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    min-height: 40px;
    box-sizing: border-box;
    font-size: 14px;
}

/* ▼ ホバー時の色変化 ▼ */
.region-link-list .region-button a:hover {
    background-color: #FFA500;
    color: #fff;
}

/* 🟥 一番下追加はこの下に入れる */

/* 🟩 デフォルトフッターを消してる　 */
.bottomFooter__copyright {
    display: none !important;
}

.bottomFooter {
    display: none !important;
}
/*  🟩元のヘッダーを非表示 */
.l-header {
    display: none !important;
}

/* 🟥 コメントを非表示設定　 */
.comment-area,
#comments,
.comments-section {
    display: none !important;
}

/* 🎨 strongタグのデザイン（ピンク 下線） */
strong {
    font-size: 1.05em; /* 📏 ほぼ気づかないレベルで 5% 大きく */
    border-bottom: 1px solid rgba(255, 105, 180, 0.5); /* 🎀 ピンクの細い下線（H2より細い） */
    font-weight: normal; /* 🏢 企業サイトらしくしつつ、見た目の変化を抑える */
}
/* 🔵 カスタムHTML内に画像入れる（元のままに戻す） */
.bsagt-cta-container {
    text-align: center;
    margin: 40px 0;  /* 上下に余白をつけて目立たせる */
}

.bsagt-cta-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;  /* 画像を中央配置 */
}
