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

/******************************/
/** コンタクトフォームの装飾 **/
/******************************/
/*　見出し　*/
.cf7-heading {
	width: 100%;
	background-color: #00f;
	/*border-left: 1rem solid #6495ed;*/
	border-radius: 2px;
	color: #fff;
	font-weight: bold;
	padding: 1rem 2rem;
	margin: 0 0 2rem;
}
.cf7-heading p {
margin: 0;
}

/* 必須マーク */
.cf7-must {
	background: #ff1a00;
}

/* 任意マーク */
.cf7-free {
	background: #666;
}

.cf7-must,
.cf7-free {
	color: #FFF;
	border-radius: 3px;
	font-size: 0.65rem;
	margin-left: 10px;
	padding: 2px 6px;
	letter-spacing: 0.2rem;
	vertical-align: middle;	
}

/*******************************
* コンタクトフォームのフォームの設定
********************************/
/* フォーム入力項目 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
	 width: 100%;
	 padding: 8px 15px;
	 margin-right: 10px;
	 margin-top: 10px;
	 border: 1px solid #66f;
	 border-radius: 3px;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
	outline: none;
	border: 2px solid #00f;
}
/* 送信ボタン */
input.sub-btn {
	width: 300px;
	height: 60px;
	background: #09f;
	color: #FFF;
	font-size: 1.1rem;
	font-weight: bold;
	letter-spacing: 0.2rem;
	border: 1px solid #66f;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;	
}

/* 送信ボタンホバー */
input.sub-btn:hover{
	background: #00f;
	color: #fff;  
}

/* 送信ボタン中央寄せ */
.cf7-center {
	text-align:center;
}

/* エラー表示を見やすくする */
.wpcf7-not-valid-tip,
.wpcf7-response-output.wpcf7-validation-errors {
	color: #cc0000;
	font-weight: bold;
}

/*******************************
* 目次の表示
********************************/
.toc-list ul{
	display: flex;
} 