@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){
  /*必要ならばここにコードを書く*/
}
/* 吹き出しデザイン */
.fuki-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0;
}
.fuki-wrap.fuki-right {
  flex-direction: row-reverse;
}
.fuki-icon {
  text-align: center;
  flex-shrink: 0;
}
.fuki-icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #2A7FD4;
}
.fuki-icon p {
  font-size: 11px;
  margin: 4px 0 0;
  color: #666;
}
.fuki-text {
  background: #F0F7FF;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 15px;
  line-height: 1.7;
  border: 1px solid #DDEEFF;
  max-width: 80%;
}
.fuki-wrap.fuki-right .fuki-text {
  background: #FFF5F5;
  border-color: #FFE0E0;
}