@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){
  /*必要ならばここにコードを書く*/
}

/************************************
** 見出し初期化
************************************/
.article h1,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6{
  padding: 0;
  margin: 0;
  font-size: medium;
  color:initial;
  display: none;
  background:none;
  border-collapse: separate;
  border-spacing: 0;
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left: none;
  line-height: normal;
  position:relative;
}

/************************************
** 見出しカスタマイズ
************************************/
/*２カスタマイズ*/
.article h2{
	position: relative;
	padding-top: 10px;
	padding-bottom: 16px;
	color: #2f241b;
}

.article h2:before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 100%;
	height: 6px;
	border-radius: 5px;
	background: #b7ccdd;
}

/*３カスタマイズ*/
.article h3{
	position: relative;
	background-color: #ffffff;
	color: #2f241b;
	font-size: 21px;
	border-bottom: solid 5px #e7e5e3;
	margin: 0 auto 0px;
	padding: 8px 0 8px 0;
}

.article h3:after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 5px #b7ccdd;
	bottom: -5px;
	width: 25%;
}

/*４カスタマイズ*/
.article h4{
	position: relative;
	padding-left: 15px;
	padding-top: 12px;
	padding-bottom: 12px;
	font-size: 19px; 
	color: #2f241b;
}

.article h4:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: -7px;
	width: 6px;
	height: 100%;
	border-radius: 5px;
	background: #b7ccdd;
}

/*5カスタマイズ*/
.article h5{
	position: relative;
	background-color: #ffffff;
	color: #2f241b;
	font-size: 19px;
	border-bottom: solid 5px #e7e5e3;
	margin: 0 auto 0px;
	padding: 8px 0 8px 0;
}

.article h5:after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 5px #b7ccdd;
	bottom: -5px;
	width: 25%;
}

/************************************
** アピールエリア
************************************/
/*テキストエリア背景*/
.appeal-content {
 background: none;
}

/*ボタン*/
.appeal-content .appeal-button {
	background-color: rgb(183 204 221 / 0.90);
	color: #fff;
	font-size: 14px;
	border: solid 2px #e7e5e3;
}

/************************************
** 案内ボックス
************************************/
/*セカンダリー（濃い灰色）*/
.secondary-box {
	background-color: #fffdf9;
	padding:2em;/*内側の余白*/
	border: 3px solid #e7e5e3;	
	position: relative;
	z-index: 0;
	color: #5e5654;
}
.secondary-box:before {
	border-top:3px solid #f5b8cc;
	border-left:3px solid #f5b8cc;
	content: '';
	display: block;
	position: absolute;
	top: -3px;
	left: -3px;
	width: 30px;
	height: 30px;
	z-index: 1;
}

/*インフォ（薄い青）*/
.info-box {
	background-color: #fffdf9;
	padding:2em;/*内側の余白*/
	border: 3px solid #e7e5e3;	
	position: relative;
	z-index: 0;
	color: #5e5654;
}
.info-box:before {
	border-top:3px solid #8dccb0;
	border-left:3px solid #8dccb0;
	content: '';
	display: block;
	position: absolute;
	top: -3px;
	left: -3px;
	width: 30px;
	height: 30px;
	z-index: 1;
}