@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
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
.article h2{
  padding: 0.5em;
  color: slategray  ;
  background: skyblue ;
  border-left: solid 7px violet ;
}
.netabare {
  position: relative;
  display: flex;
  align-items: center;
  padding: 24px 60px;
  border: 2px solid #ffffff;
  border-radius: 9999px;
  background-color: #eea8de;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  text-align: left;
	text-decoration:none
}

.netabare img{
	width:30%;
	height:30%;
	margin-right: 16px; 
}
/******************************************************/
.my-fukidashi {
  display: flex;
  align-items: flex-start;
  margin: 20px 0;
}

.my-fukidashi.left {
  flex-direction: row;
}

.my-fukidashi.right {
  flex-direction: row-reverse;
}

.my-fukidashi .icon img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.my-fukidashi .content {
  max-width: 70%;
  margin: 0 10px;
}

.my-fukidashi .name {
  font-weight: bold;
  margin-bottom: 5px;
}

.my-fukidashi .text {
  background: #f0f0f0;
  border-radius: 10px;
  padding: 10px;
  position: relative;
}

.my-fukidashi.left .text::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 10px;
  border: 10px solid transparent;
  border-right-color: #f0f0f0;
}

.my-fukidashi.right .text::before {
  content: "";
  position: absolute;
  right: -10px;
  top: 10px;
  border: 10px solid transparent;
  border-left-color: #f0f0f0;
}


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

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

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