@charset "UTF-8";
/*
 Theme Name: SANGO Child
 Theme URI: https://saruwakakun.design
 Author: SARUWAKA
 Author URI: https://saruwakakun.com
 Template: sango-theme
 Version: 4.0
*/
/*こちらはSANGOの子テーマ用CSSです。以下にCSSを記入していきましょう。*/

.balloon5 {
  width: 100%;
  margin: 1.5em 0;
  overflow: hidden;
}

.balloon5 .faceicon {
  float: left;
  margin-right: -90px;
  width: 80px;
}

.balloon5 .faceicon img{
  width: 100%;
  height: auto;
  border: solid 3px #d7ebfe;
  border-radius: 50%;
}

.balloon5 .chatting {
  width: 100%;
}

.says {
  display: inline-block;
  position: relative; 
  margin: 5px 0 0 105px;
  padding: 17px 13px;
  border-radius: 12px;
  background: #d7ebfe;
}

.says:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px; 
  left: -24px;
  border: 12px solid transparent;
  border-right: 12px solid #d7ebfe;
}

.says p {
  margin: 0;
  padding: 0;
}

.entry-header .updated:before { content: "\f021 最終更新日:"; opacity: 1;
}

/********************************
 * パンくずリスト（SANGO上書き）
 ********************************/

/* パンくず全体：縦幅・背景・下余白 */
#breadcrumb {
  margin: 0 0 6px;        /* 下だけ少し余白を残す */
  padding: 3px 8px;       /* 上下3pxで薄く、左右8px */
  background: #f4f4f4;    /* 必要なければ transparent に */
}

/* アーカイブページ用：SANGOの .archive .breadcrumb の上書き */
.archive #breadcrumb {
  padding-top: 3px;
  padding-bottom: 3px;
  background: transparent;  /* アーカイブだけ背景なしにしたい場合 */
}

/* ul の余白リセット（親の影響を消す用） */
#breadcrumb ul {
  margin: 0;
  padding: 0;
}

/* 各パンくず項目の文字サイズ・行の高さ */
#breadcrumb li {
  display: inline;
  list-style: none;
  color: gray;
  font-size: 0.6em;   /* 文字サイズ（今の小さめ） */
  line-height: 1.3;   /* 行間を詰めて縦幅を削る */
}

/* 区切りの矢印「>」アイコンを小さく＆間隔も詰める */
#breadcrumb li:after {
  padding: 0 4px;   /* 左右の余白。もっと詰めたければ 2px とかに */
  color: rgba(0, 0, 0, 0.2);
  font-family: FontAwesome;
  content: "\f0da"; /* 矢印アイコン */
  font-size: 4px;   /* ← 矢印自体の大きさ */
  line-height: 1;
}

/* ホームの前についているアイコンを完全に消す */
#breadcrumb li:first-child a:before {
  content: none !important;
  display: none !important;
}

/* リンクの共通スタイル */
#breadcrumb li a {
  text-decoration: none;
}

#breadcrumb li a:hover {
  color: gray;
  text-decoration: none;
}

/* spanに個別サイズ指定は不要なのでナシ
   （#breadcrumb span { font-size: 8px; } は削ってOK） */
