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

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

/*アコーディオンのブロック*/
body{/*ラベル前の表示非表示のアイコンカラーを指定*/
	--acd-color: #ffffff;
}
input.acd-check + label.acd-label::before{
	display: inline-block;
	text-align: center;
	width: 2.5em;
	margin-right: 0.8em;
	font-weight: bold;
	border: 2px solid;
	border-radius: 5px;
}
input.acd-check:checked + label.acd-label::before{/*閉じている状態のアイコン文言*/
	content: '＋';
	color: #000000;
	background: var(--acd-color);
	border-color: transparent;
}
input.acd-check:not(:checked) + label.acd-label::before{/*開いている状態のアイコン文言*/
	content: 'ー';
	color: #000000;
	background: none;
	border-color: var(--acd-color);
}
input.acd-check,
input.acd-check:checked + label.acd-label + div{
	display: none;
}
input.acd-check + label.acd-label,
input.acd-check:not(:checked) + label.acd-label + div{
	display: block;
}

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

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

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