/*----------------------*/
/*共通エリア             */
/*----------------------*/

.content_title .h2_headding {
  font-weight: 700;
  font-size: 3.0rem;
  color: #333333;
  text-align: center;
  padding: 50px 0px;
  margin-bottom: 80px;
}

.headding_ja {
  font-size: 3.2rem;
  font-weight: 700;
  display: block;
}

.area_ad{
  padding-bottom: 3%;
}

@media screen and (max-width: 768px) {
  
  .area_ad{
  padding-bottom: 15%;
  }

}

/*----------------------*/
/*こんな症状ありませんか？*/
/*----------------------*/

.bk_symptoms { 
  background-color: bisque; 
  display: flex; 
  gap: 32px; 
  justify-content: center; /* 横方向中央 */ 
  text-align: center; padding: 24px; 
  }

.symptoms_1,
.symptoms_2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;       /* 中身を中央揃え */
}

.symptom_item {
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  width: 100%;
  max-width: 300px;

  display: flex;
  align-items: center;      /* 縦中央 */
  gap: 14px;                /* アイコンと文字の間 */
  text-align: left;         /* 文字は左揃え */
}

.symptom_item i {
  font-size: 26px;
  color: #e67e22;
  flex-shrink: 0;           /* アイコンが潰れない */
}

.symptom_item p {
  margin: 0;
  font-size: 17px;          /* ← 文字を大きく */
  line-height: 1.5;
  font-weight: 500;
}

/* 強調メッセージ */
.symptom_item.highlight {
  background: #ffe8cc;
  font-weight: bold;
}

/* CTA強調ブロック */
.symptom_item.highlight {
  background: #fff3e0;
  border: 2px solid #f5c16c;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  justify-content: center;
}

/* アイコン */
.symptom_item.highlight i {
  font-size: 30px;
  color: #f39c12;
}

/* テキスト全体 */
.symptom_item.highlight p {
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
  margin: 0;
}

/* 「まずはご相談下さい」を太く・大きく */
.symptom_item.highlight .cta_text {
  display: inline-block;
  margin-top: 6px;
  font-size: 20px;
  font-weight: 800;      /* ← しっかり太字 */
  color: #e67e22;
}

/* 左：画像 */
.symptoms_image{
  flex: 0 0 260px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.symptoms_image img{
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
}

.symptoms_content {
  flex: 1;
  display: flex;
  gap: 32px;
}

/* スマホではボタン感を強める */
@media screen and (max-width: 768px) {
  .symptom_item.highlight {
    border-radius: 16px;
    padding: 22px;
  }

  .bk_symptoms{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

    /* いったん箱（symptoms_1 / symptoms_2）はレイアウト用に無効化 */
  .symptoms_1,
  .symptoms_2{
    display: contents;   /* ←中身だけ親直下扱いにする */
  }

  .s-old   { order: 1; }
  .s-water { order: 2; }
  .s-noise { order: 3; }
  .s-temp  { order: 4; }
  .s-error { order: 5; }
  .s-cta   { order: 6; }

  .symptoms_content {
    flex-direction: column;
    align-items: center;
  }

  .symptoms_image {
    margin-bottom: 24px;
  }

}


/*----------------------*/
/*選ばれる3つの理由      */
/*----------------------*/

/* 3カラム全体 */
.chosen_1 {
  display: flex;
  gap: 24px;
}

/* 各カード */
.chosen_item_1,
.chosen_item_2,
.chosen_item_3 {
  flex: 1;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  text-align: center;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* タイトル（即日対応・自社施工・安心価格） */
.chosen_item_1 > div:first-child,
.chosen_item_2 > div:first-child,
.chosen_item_3 > div:first-child {
  font-size: 18px;
  font-weight: 700;
}

/* 画像 */
.chosen_item_1 img,
.chosen_item_2 img,
.chosen_item_3 img {
  max-width: 160px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* 説明文（←ここが一番重要） */
.chosen_item_1 > div:last-child,
.chosen_item_2 > div:last-child,
.chosen_item_3 > div:last-child {
  font-size: 14px;
  line-height: 1.7;          /* 行間をしっかり */
  color: #555;
  text-align: left;          /* 説明文は左揃えが読みやすい */
  word-break: break-word;    /* はみ出し防止 */
}



@media screen and (max-width: 768px) {
  .chosen_1 {
    flex-direction: column;
  }

  .chosen_item_1,
  .chosen_item_2,
  .chosen_item_3 {
    padding: 20px;
  }

  .chosen_item_1 > div:last-child,
  .chosen_item_2 > div:last-child,
  .chosen_item_3 > div:last-child {
    font-size: 15px;
  }
}


/*----------------------*/
/*価格                  */
/*----------------------*/

.price_section {
  margin-top: 60px;
}

.price_table_wrap {
  overflow-x: auto; /* スマホ横スクロール対策 */
}

.price_table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  background: #fff;
}

.price_table th,
.price_table td {
  border: 1px solid #ddd;
  padding: 14px 10px;
  font-size: 14px;
}

.price_table thead th {
  background: #f7f7f7;
  font-weight: 700;
}

.price_table thead span {
  font-size: 12px;
  font-weight: normal;
  color: #666;
}

.price_table tbody th {
  background: #fafafa;
  font-weight: 700;
}

.price_table td {
  font-size: 16px;
}

.price_note {
  margin-top: 12px;
  font-size: 13px;
  color: #666;
}

/*----------------------*/
/*1ポイントアドバイス     */
/*----------------------*/
/* セクション全体 */
.advice_section {
  margin-top: 60px;
}

/* タイトル */
.advice_title {
  margin-bottom: 24px;
}

/* 横並びラッパー */
.advice_wrap {
  display: flex;
  gap: 32px;
  align-items: center;
}

/* 左：文章 */
.translation_1 {
  flex: 1;
}

/* 質問文 */
.translation_question {
  font-weight: 700;
  margin-bottom: 16px;
}

/* 各行 */
.translation_item {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

/* 年数側 */
.translation_term {
  width: 120px;
  font-weight: 700;
}

/* 説明側 */
.translation_desc {
  flex: 1;
  color: #555;
}

/* 右：画像 */
.translation_2 {
  flex: 0 0 320px;
  text-align: center;
}


@media screen and (max-width: 768px) {
  .advice_wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .translation_2 {
    margin-top: 20px;
  }

  .translation_item {
    flex-direction: column;
    gap: 6px;
  }

  .translation_term {
    width: auto;
  }
}

/*----------------------*/
/*工事までのステップ      */
/*----------------------*/

/* セクション全体 */
.flow_section {
  margin-top: 60px;
}

/* 見出し */
.flow_heading {
  text-align: center;
  margin-bottom: 40px;
}

.flow_heading_en {
  display: block;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.flow_heading_ja {
  font-size: 26px;
  font-weight: 700;
}

/* ---------- PC版 ---------- */
.flow_list_pc {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.flow_item {
  flex: 1;
  max-width: 220px; /* innerboxからはみ出さない */
  text-align: center;
}

.flow_step_no {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.flow_box {
  background: #fff6e9;
  border-radius: 14px;
  padding: 16px;
}

.flow_title {
  background: #ff9736;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 8px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.flow_text {
  font-size: 14px;
  line-height: 1.6;
}

/* 矢印 */
.flow_arrow {
  flex: 0 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 110px; /* STEPタイトル＋BOX中央に合わせる */
}

.flow_arrow_img {
  width: 24px;
  height: auto;
  display: block;
}

/* ---------- SP版 ---------- */
.flow_list_sp {
  display: none;
  list-style: none;
  padding: 0;
}

@media screen and (max-width: 890px) {
  .flow_list_pc {
    display: none;
  }

  .flow_list_sp {
    display: block;
  }

  .flow_item {
    max-width: 100%;
    margin-bottom: 16px;
  }
}

/*----------------------*/
/*最短見積もり           */
/*----------------------*/
/* セクション全体 */
.estimate_section {
  margin-top: 60px;
}

/* 見出し */
.estimate_head {
  text-align: center;
  margin-bottom: 32px;
}

.estimate_title {
  font-size: 26px;
  font-weight: 700;
}

.estimate_sub {
  font-size: 16px;
  color: #666;
}

/* 横並びラッパー */
.estimate_wrap {
  display: flex;
  gap: 24px;
  justify-content: center;
}

/* 各アイテム */
.estimate_item {
  flex: 1;
  max-width: 260px;
  background: #fff6e9;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}

/* タイトル */
.estimate_item_title {
  font-weight: 700;
  margin-bottom: 12px;
}

/* 画像エリア（仮） */
.estimate_item_img {
  height: 140px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #999;
}

@media screen and (max-width: 768px) {
  .estimate_wrap {
    flex-direction: column;
    align-items: center;
  }

  .estimate_item {
    max-width: 100%;
  }
}
