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

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

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

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

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

/*ヘッダーの文字と背景の色を変える*/
.search-menu-button.menu-button,
.navi-menu-button.menu-button{
	background-color: #1f395e;
	color: #FFFFFF;
	padding: 6px;
}

.logo-menu-button.menu-button{
	background-color: #1f395e;
}

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

/*流れリスト*/
.flow ol {
  counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
  padding-left:10px;
  margin:20px 0 70px 0;
}
.flow li {
  position: relative;
  padding: 20px 20px 20px 35px; 
  background: #d1ecf1;
  border:1px solid #bee5eb;	
  border-radius: 15px;
  line-height: 26px;
}
.flow ol li:before{
/* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
/*以下数字のデザイン変える*/
  color: #e60033;
  font-size: 16px;
  font-weight: bold;
  left: 18px;
  text-align: center;
}
.if-box {
  color: #0c5460;
  line-height: 1.8em;
  font-size: 16px;
}
