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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/* 固定ページIDの14と20の更新日時を非表示に。でもだめだ！
.post-14.date-tags,
.post-20.date-tags {
display: none;
}

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

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

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
/***************************以下は追加した**************
.top-title01 {
  display: flex;
  align-items: center; /* 垂直中心 */
  justify-content: center; /* 水平中心 */
	font-size: 24px;
	margin-bottom:1em;
}
.top-title01:before, .top-title01:after {
  border-top: 1px solid;
  content: "";
  width: 3em; /* 線の長さ */
}
.top-title01:before {
  margin-right: 1em; /* 文字の右隣 */
}
.top-title01:after {
  margin-left: 1em; /* 文字の左隣 */
}
/* エントリーカード横に並べる */
.widget-entry-cards.card-large-image .a-wrap {
width:32.5%;
height:auto;
display: inline-flex;
}
@media screen and (max-width: 768px) {
.widget-entry-cards.card-large-image .a-wrap {
width:49%;
display: inline-flex;
}
}
@media screen and (max-width: 480px) {
.widget-entry-cards.card-large-image .a-wrap {
width:auto;
display: inline-flex;
}
}
.widget-entry-cards.not-default figure img {
padding: .5em;
}

.widget-entry-cards.card-large-image .a-wrap {
font-size: 95%;
text-align: left;
padding:.5em;
}

/* ************* ContactForm入力欄設定 ****************************** */
.wpcf7 input[name="your-name"] { /* 名前入力欄 */
	background-color: #ECFEFF;
	color: #000000;
	max-width: 400px;
}

.wpcf7 input[name="your-email"] { /* メール入力欄 */
	background-color: #ECFEFF;
	color: #000000;
	max-width: 500px;
}

.wpcf7 input[name="tel-56"] { /* 電話欄 */
	background-color: #ECFEFF;
	color: #000000;
	max-width: 400px;
}

.wpcf7 input[name="text-324"] { /* 〒番号７桁 */
	background-color: #ffffff;
	color: #000000;
	max-width: 100px;
}

input[type="submit"] {
  font-size: 1.1em;
  width: 200px;
  padding: 5px;
  border: dashed red;
  border-radius: 10px;
  background-color: #FEF2E2;
  color: #000000;
  cursor: pointer;
}

.submit-btn-wrapper {
  text-align: center;
}