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

/* 「新着記事」を非表示にするCSS */
div#list-wrap .list-new-entries {
  display: none;
}

/* タブ検索フォーム全体の枠と背景 */
.tag-search_form {
  margin: 30px 0;
  padding: 20px;
  background-color: #f5f9ff; /* お好みで変更可能 */
  border: 2px solid #0073aa;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

/* タブ検索フォームのタイトル */
.tag-search_form .tag-search_title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

/* 各フォーム要素のラップ */
.tag-search_form .form-group {
  margin-bottom: 15px;
  width: 100%;
}

/* タブ検索フォームのセレクトボックス */
.tag-search_form select {
  appearance: none;
  width: 100%;
  padding: 16px;
  font-size: 20px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  text-align: center;         /* Firefox用 */
  text-align-last: center;    /* Chrome・Edge・Safari用 */
}

/* タブ検索フォームの検索ボタン */
.tag-search_form button {
  width: 100%;
  padding: 16px;
  font-size: 20px;
  background-color: #0073aa;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-sizing: border-box;
}
.tag-search_form button:hover {
  background-color: #005f8d;
}
