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

/*ブログカードURL非表示*/
.internal-blogcard-footer{
	display: none
}

/******まとめて余白設定（固定ページ上・固定ページ下・フッター上・コンテンツ上）******/
#main {
	padding-top: 0;
	padding-bottom: 0;
}
.entry-content {
  margin-top: 0;
  margin-bottom: 0;
}
.footer {
	margin-top: 0;
	padding-top: 0;
}
.content {
margin-top: 0;
margin-bottom: 0;
}

/******固定ページ上余白更に消す（トップのみ）******/
.home .entry-categories-tags.ctdt-one-row,
.home .article-header.entry-header {
	display: none;
}

/*グローバルメニューのフォントサイズ等変更*/
.navi-in .menu-header .item-label{
font-size: 14px;
}

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

/*インデックス背景を透過*/
#main {
    background:transparent;
}

/*モバイルメニューを透過*/
.mobile-menu-buttons {
background: rgba(0,0,0,0.7);
color: #a9a9a9;
}
.mobile-menu-buttons .menu-button > a {
color: #a9a9a9;
}

/*h2*/
.entry-content h2 {
    font-size: 1.25em;
    padding: 1em 1.1em;
    margin-bottom: 1em;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #333;
    color: #fff;
}

/*h3*/
.entry-content h3 {
  border: none !important; /* 上下の線を消す */
  padding: 0.8em;
  margin: 1.8em 0 1.4em;
  background-color: #f5f5f5; /* グレー背景を残す */
  border-radius: 4px;
  font-size: 1.15em;
}