/*
Theme Name: Cocoon Child
Theme URI: https://wp-cocoon.com/
Template: cocoon-master
Author: わいひら
Author URI: https://nelog.jp/
Description: Cocoon専用の子テーマ
Version: 1.1.3.1754792695
Updated: 2025-08-10 11:24:55

*/

/* ヘッダー全体のスタイル */
.custom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #ffffff; /* 背景色 */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 下部に影を追加 */
}

/* ロゴのスタイル */
.header-left img {
  max-height: 50px; /* ロゴの高さを制限 */
}

/* ナビゲーションメニューのスタイル */
.header-right nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-right nav ul li {
  font-size: 16px;
}

.header-right nav ul li a {
  text-decoration: none;
  color: #333333; /* リンクの色 */
}

.header-right nav ul li a:hover {
  color: #0073e6; /* ホバー時の色 */
}

/* 検索バーのスタイル */
.header-right .search-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-right .search-form input[type="search"] {
  padding: 5px;
  border: 1px solid #cccccc;
  border-radius: 4px;
}

.header-right .search-form button {
  background-color: #0073e6;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.header-right .search-form button:hover {
  background-color: #005bb5;
}

/* SNSアイコンのスタイル */
.header-right .social-icons {
  display: flex;
  gap: 15px;
}

.header-right .social-icons a {
  font-size: 20px;
  color: #333333;
  text-decoration: none;
}

.header-right .social-icons a:hover {
  color: #0073e6;
}