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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/* ▼ ヘッダーのサイト名背景画像 ▼ */
#header-container {
  position: relative;
  background-image: url("http://kogatakotsu.com/wp-content/uploads/2025/11/33761086_m.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ▼ ヘッダーの高さ調整 ▼ */
.logo {
  padding: 120px 0; /* ← 今が40pxなので倍の高さに */
}

/* ▼ ヘッダー上に表示するタイトル帯（画像とは別） ▼ */
.header-title-bar {
  position: static;        /* ← absolute を外すことで画像の外側になる */
  width: 100%;
  padding: 5px 20px;      /* 高さと左右余白 */
  background: #ffffff;     /* 白背景 */
  text-align: right;       /* テキスト右寄せ */
  border-bottom: 1px solid #ddd; /* 画像との区切り（任意） */
  z-index: 1;
}

.header-title-bar .header-title-text {
  font-size: 13px;   /* ← 指定通り 15px */
  font-weight: normal;
  color: #000;        /* 黒文字 */
}

.header-title-bar .header-title-text a {
  color: #000;
  text-decoration: none;
}

/* ▼ ロゴテキストのリンクのマウスオーバー効果 ▼ */
.header-title-text a:hover {
  color: #666;             /* 文字をグレーに */
  background-color: #f2f2f2; /* ごく薄いグレー背景 */
  padding: 2px 6px;        /* 少し余白をつけてボックス感を出す */
  border-radius: 4px;      /* 角を丸めて柔らかい印象に */
  transition: 0.2s ease;   /* 鼻息でアニメーション指定 */
}

/* ▲ ここまで ▲ */

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

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

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