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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*ヘッダーモバイルボタンの文字と背景の色を変える（背景白）add260725*/
.search-menu-button.menu-button,
.navi-menu-button.menu-button{
	color: #1e73be;
}

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

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

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

/************************************
** フォームの追加CSS
************************************/
.form_border2px_gray {
  border: solid 1px #ccc;
}

.padding1em {
  padding: 1em;
}

.margintop1em {
  margin-top: 1em;
}

.margintop2em {
  margin-top: 2em;
}

.lineheight3em {
  line-height: 3em;
}

.marginbottom2em {
  margin-bottom: 2em;
}

#datepicker {
  width:20em;
}

/* Contact Form 7 の送信ボタン調整 */
.wpcf7 input[type="submit"] {
  display: block;       /* ブロック要素化 */
  width: 50%;           /* 幅を50%に指定 */
  margin-top: 3em;      /* 上部の間隔調整 */
  margin-left: auto;    /* 左の余白を自動（中央揃え） */
  margin-right: auto;   /* 右の余白を自動（中央揃え） */
  box-sizing: border-box; /* パディングを含めて50%にする設定 */
}

/* スマホ表示での調整（幅が狭くなりすぎるのを防ぐ） */
@media screen and (max-width: 768px) {
  .wpcf7 input[type="submit"] {
    width: 80%; /* スマホでは少し広めの80%にするのがおすすめです */
  }
}