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

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




/* メインカラーコード メモ　#59bcf9　 */





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

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

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
	.navi-footer-in > .menu-footer li.menu-item {
    width: 100%;
	}
	
}



/*メニューバー*/
.navi .item-label, .navi .item-description { 
   /*background-image: url(https://i0.wp.com/air-game.net/wp-content/uploads/2024/01/094c0022fb41d8d0c6152cc2773c754c-1.png?w=1600&ssl=1);*/
}



/*全体背景*/
.container {
    background-color: white;
}



/*グローバルナビメニュー マウスオーバーでアンダーライン*/
#navi .navi-in a:after{
position: absolute;/*線の位置を絶対配置に*/
content: "";/*文字はなし*/
left: 0px;/*線の位置*/
bottom: 8px;/*線の位置*/
height: 1px;/*線の高さ*/
width: 100%;/*幅いっぱいに線を引く*/
background: #efefef;/*線の色*/
transform: scale(0,1);/*マウスオーバーの前は線を消す*/
transition: 0.3s;/*線が0→100%になるまでの秒数*/
}
#navi .navi-in a:hover:after{
transform: scale(1);/*マウスオーバー後、線を100%出す*/
}


/*各ページのタイトルを非表示にする*/
.article h1, .article h2, .article h3, .article h4, .article h5, .article h6 {
line-height: 1.25;
font-weight: bold;
display: none;
	
	
// WordPress本体の更新通知を停止
add_filter('pre_site_transient_update_core', '__return_null');

// プラグインの更新通知を停止
add_filter('pre_site_transient_update_plugins', '__return_null');

// テーマの更新通知を停止
add_filter('pre_site_transient_update_themes', '__return_null');

	
