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


@charset "UTF-8";

/*--------------------------------------
  HIBICORE デザインカスタマイズ
--------------------------------------*/

/* 1. Google Fontsの読み込み */
@import url('https://fonts.googleapis.com/css2?family=League+Script&family=Noto+Serif+JP:wght@300;400&family=Cormorant+Garamond:ital,wght@0,300;1,300&family=M+PLUS+Rounded+1c:wght@100;300;400;700&display=swap');

:root {
  --bg-color: #FFFFFF;
  --base-bg: #F9F8F6;
  --text-color: #333333;
  --accent-color: #C28E75; 
  --accent-light: #D4B2A0; 
}

/* 2. 全体フォント設定 */
body {
  font-family: 'Noto Serif JP', serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.8;
}

/* 便利なユーティリティクラス（記事内などでお使いください） */
.font-en { font-family: 'Cormorant Garamond', serif; }
.font-logo { font-family: 'M PLUS Rounded 1c', sans-serif; }
.font-script { font-family: 'League Script', cursive; }
.accent-text { color: var(--accent-color); }

/* 3. 見出しのカスタマイズ（Cocoonデフォルトのデザインをリセット） */
.article h2 {
  background: transparent;
  border: none;
  padding: 0;
  text-align: center;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 300;
  font-size: 1.6rem; 
  letter-spacing: 0.15em;
  color: #333;
  text-transform: uppercase;
  margin-top: 4em;
  margin-bottom: 2em;
}

/* 4. ブログカード（エントリーカード）のホバーアニメーション */
.entry-card-wrap .card-thumb img {
  filter: grayscale(100%) brightness(1.05);
  transform: scale(1.1);
  transition: filter 1.2s cubic-bezier(0.2, 0, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0, 0.2, 1), opacity 0.8s ease;
  opacity: 0.9;
}

.entry-card-wrap:hover .card-thumb img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1);
  opacity: 1;
}

/* 5. ヘッダーナビゲーションの調整 */
.navi-in a {
  font-family: 'M PLUS Rounded 1c', sans-serif; 
  font-weight: 400; 
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 11px;
  position: relative;
}

.navi-in a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  transition: width 0.4s ease;
}

.navi-in a:hover::after {
  width: 100%;
}

/* 6. ボタンのデザイン */
.btn, .submit-button {
  background-color: var(--accent-light);
  color: white !important;
  padding: 1rem 3.5rem;
  border-radius: 9999px;
  font-size: 11px;
  letter-spacing: 0.3em;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  transition: all 0.3s;
  border: none;
}
.btn:hover, .submit-button:hover {
  background-color: var(--accent-color);
  opacity: 0.9;
}