/*
Theme Name: 通所支援ベルテール
Theme URI: 
Author: Toshimi Nishihara
Author URI: お問合せ
Memo: 2025/09｜全4ページ構成にリニューアルする段階で新規作成したCSS。
Note: お問合せページで使うスタイルを記述。
*/

/* ------------------------------------------------------------------- */
/* 電話・フォームボタン                                                  */
/* ------------------------------------------------------------------- */
.contact_list .btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.contact_list .btn .btn_form img {
  width: 320px;
  height: auto;
}


/* ------------------------------------------------------------------- */
/* 現場スタッフより                                                     */
/* ------------------------------------------------------------------- */
.staff_message {
    width: 100%;;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding-bottom: 50px;
    border-bottom: dotted 1px #999999;
}

.staff_message div {
  width: 80%;
  position: relative;
  background: #e9f1f4; /* 吹き出しの背景色 */
  border-radius: 10px;
  padding: 20px;
}

/* 人物アイコン */
.staff_message img {
  width: 102px;
  height: auto;
  flex-shrink: 0;
  flex-grow: 0;
  align-self: flex-start;
}

/* 現場スタッフよりの見出し */
.staff_message div h3 {
    color: #4ea0e6;
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: bold;
}

/* 吹き出しの三角部分 */
.staff_message div::before {
  content: "";
  position: absolute;
  top: 25px;         /* アイコンの口元に合わせて調整 */
  left: -20px;       /* 吹き出しの左外側に出す */
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-right-color: #e9f1f4; /* 吹き出し背景と同じ色にする */
}

/* テーブル見出し背景色変更 */
.tbl01 th {
  background: #ffffff;
}