@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
/* 全体の丸み・優しい雰囲気 */
body, .widget, .post, .entry-content {
  border-radius: 18px;
  background: #fff9fa;
  box-shadow: 0 2px 8px rgba(255,168,203,0.09);
}
.site-title, h1, h2 {
  font-family: 'Yomogi', 'Rounded M+ 1c', 'Noto Sans JP', sans-serif;
  color: #ff90b3;
}

/* サイドバー用キャラアイコン */
.sidebar .character-profile img {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 8px;
}

/* キャラの吹き出し用 */
.balloon-left {
  background: #fff0f5;
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #b465a0;
  position: relative;
}
.balloon-left::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 14px;
  border: 8px solid transparent;
  border-right: 12px solid #fff0f5;
}