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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

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

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

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

.home.page .entry-title{
  display: none;
}

.content {
margin-top: 0;
margin-bottom: 0;
}

.main {
margin-top: 0;
margin-bottom: 0;
}

.article-footer.entry-footer {
	display: none;
}

#main {
	padding-top: 0;
	padding-bottom: 0;
}

.entry-content,
#pl-36 {
	margin-top: 0;
	margin-bottom: 0;
}

.cat-label {
 display: none;
}

.entry-card-title{
 font-family: "ヒラギノ角ゴ W2 JIS2004";
 font-weight: 100;
}

/**** タグクラウド****/


/*固定ページで投稿日・更新日を非表示*/
.page .date-tags {
 display: none;
}

/*ナビメニュー下線*/
.caption-wrap:hover {
    font-weight: bold;
    color: #000000;
}

/*ヘッダーの色と高さ、アイコンの位置を調整*/
.search-menu-button.menu-button,
.navi-menu-button.menu-button{
	height: 55px;
	padding-top: 8px;
}

/*スライドインメニューをカスタマイズ*/
.navi-menu-content{
	left: 70%;
	right: 0;
	background-color: rgba(136,136,136,0.5);
	transform: translateX(101%);
}

.menu-drawer {
	width: 130px;
}

.menu-drawer a{
	font-size: 14px;/*文字の大きさ*/
	color: #fff;/*文字の色*/
	height: 3em;/*行の高さ*/
}

.menu-drawer a:hover{
	color: rgba(136,136,136,0.7);
	background-color: rgba(136,136,136,0.5);
}

/* ヘッダー全体の下に余白を作る */
#header-container {
  margin-bottom: 30px; /* 数字を変えて間隔を調整してください */
}

/* 投稿ページのタグをWORKSページのスタイルに統一 */
.entry-tag a {
    display: inline-block;
    /* 1. 枠線の設定（細い黒のライン） */
    border: 1px solid #333 !important; 
    background-color: transparent !important;
    border-radius: 0 !important;      /* 角を完全に四角にする */
    
    /* 2. タグ内の余白（文字と枠の間隔） */
    /* WORKSページに近いバランス：上下 4px、左右 15px */
    padding: 4px 15px !important; 
    
    /* 3. タグ同士の間隔（四角と四角の隙間） */
    margin-right: 20px !important;
    margin-bottom: 10px !important;

    /* 4. 文字の設定 */
    font-size: 13px !important;
    color: #333 !important;
    text-decoration: none !important;
    line-height: 1.2 !important;
}

/* 5. 前のアイコン（#）を非表示にする */
.entry-tag a::before {
    display: none !important;
}

/* マウスを乗せた時の動作（WORKSの挙動に合わせる） */
.entry-tag a:hover {
    background-color: #333 !important; /* 背景を黒に */
    color: #fff !important;           /* 文字を白に */
    opacity: 1;
}