@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 .site-name-text {
	font-size: 48px;
	font-weight: bold;
}

/* 囲い線を消して背景を透明に */
.keizoku-days {
    font-size: 1.5em;  /* 少し大きめ（1.3emより少し強調） */
    font-weight: bold;
}

/* 日数部分だけ赤文字 */
.keizoku-days .day-count {
    color: #d32f2f;  /* 濃い赤 */
}

.category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* ボタン同士の隙間 */
    margin: 15px 0;
}

.category-links a {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.category-links a:hover {
    background-color: #e0e0e0; /* ホバー時に少し暗く */
}
/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

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

/*480px以下*/
@media screen and (max-width: 480px){
	#header .site-name-text {
		white-space: nowrap;
		font-size: calc(100vw / 10);
	}
}
/* Contact Form 7 クールダウンのスタイルがあればここに書く */
