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

input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 20px;
  font-weight: bold;
  width: 200px;
  padding: 10px;
  border-radius: 10px;
  background-color: #ffa500; /* 元の色を#ffa500に変更 */
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

input[type="submit"]:active {
  background-color: #cc8400; /* クリック時の色 */
}

span.wpcf7-spinner {
  display: none;
}

/* アイコン枠の余白を消す */
.box-menu-icon {
  margin: 0 !important;
  padding: 0 !important;
}

/* 画像の余白と下の隙間対策 */
.box-menu-icon img {
  display: block;
  margin: 0 !important;
  padding: 0 !important;
}

/* ラベル文字の上下余白を詰める */
.box-menu-label {
  margin: 0 !important;
  padding: 4px 0 0 0 !important; /* 文字と画像を少しだけ離したい場合 */
  line-height: 1.2;
}

/* 説明文（空だけど保険） */
.box-menu-description {
  margin: 0 !important;
  padding: 0 !important;
}

