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

/*ページタイトル非表示*/
.entry-title {
display: none;
}

/************************************
** アコーディオンの見出しを左詰めにする
************************************/
.toggle-button {
	text-align: left;
}

/************************************
** トグルボタンの左端に記号を表示
************************************/
.toggle-button::before {
  content: "\25BC";  /* ▼ */
  margin-right: 0.5em;
}

.toggle-checkbox:checked + .toggle-button::before {
  content: "\25B2";  /* ▲ */
}

/************************************
** スライダーの矢印
************************************/
.flex-prev::after {
  content: "\2190";  /* ← U+2190 */
  font-size: 20px;
  color: white;
  position: absolute;
  top: 4px;
  left: 0px;
}

.flex-next::after {
  content: "\2192";  /* → U+2192 */
  font-size: 20px;
  color: white;
  position: absolute;
  top: 4px;
  right: 0px;
}
