@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){
/*必要ならばここにコードを書く*/
.speech-icon {
width: 55px ;
height: 55px ;
object-fit: cover;
}
.attachment-1200x630 {
width: 343px ;
height: 180px ;
}
}
/**********************************************
** 固定ページの新着記事一覧(new_list)を
** 2カラム表示にする

** ショートコードに　class="fp-new-entry-cards"　追記
**********************************************/
.new-entry-cards.fp-new-entry-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
}

.fp-new-entry-cards .new-entry-card-link.a-wrap {
    display: inline-block;
    width: 49.5%;
}


/* メイン部分とサイドバーの枠を消す */
#main,#sidebar{
 border:none;
}

.box-menu-icon img {
  filter: none;
}

/* 内部ブログカードのURLを非表示 */
.internal-blogcard-site {
    display: none;
}

/* 内部ブログカード　続きを読む */
.internal-blogcard::after {
	position: absolute; 
	content: "続きを読む..."; /*表示文字＆アイコン*/
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #fff; /*文字の色*/
	background-color: #f8b500; /*背景色*/
	padding: 2px 1em;
	bottom: 8px;
	right: 24px;
	font-size: 14px; /*文字のサイズ*/

}
.internal-blogcard{
	padding-bottom: 40px; /*説明文下の余白*/
}

/************************************
** サイドバー追尾目次
************************************/
.sidebar-scroll{
  top:15px !important;
}
.sidebar h3{
  font-size:0.9em;
  padding: 7px 12px;
}
.sidebar .widget_toc{
   box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}
.sidebar .toc-widget-box{
  margin-top: -0.9em;
}
.sidebar .toc{
  padding: 0;
  width:100%;
}
.sidebar .toc-content {
  overflow-y: scroll;
  max-height: 390px;
  background: #fff;
  padding: 0.5em 1.5em;
}
.sidebar .toc li{
  line-height:1.6;
  margin-bottom: 1em;
  font-size:0.85rem;
  color:#f8b500;
}
.sidebar .toc-content > ol  > li,.sidebar .toc-content > ul  > li{
  font-weight:600;
  padding-left: 0.5em;
}
.sidebar .toc-content a{
  letter-spacing:0.5px;
}
.sidebar .toc .toc-list ul, .sidebar .toc .toc-list ol {
  margin: 1em 0;
  list-style-type:none;
  font-weight:500;
}
@media screen and (max-width: 768px){
  .sidebar-menu-button .widget_toc{
    display:none;
  }
}

/* ハイライト機能を利用 */
table mark {
	display: inline-block; /* インラインブロック要素に設定 */
	padding: 8px 14px; /* 内側の余白を指定 */
	border-radius: 99px; /* 角を丸くする（99px でほぼ楕円形） */
	color: var(--cocoon-white-color); /* 文字色をカスタムプロパティで指定 */
	transition: all 0.3s ease-in-out; /* すべてのプロパティを0.3秒でスムーズに変化 */
	font-weight: bold; /* フォントを太字に設定 */
}

/* ホバー時の透明度を調整 */
table mark:hover {
	opacity: 0.8;
}

/* 「絶品バイクめし」カテゴリーページ内の目次h3を非表示 */
.category-17 .toc li li  {
  display: none !important;
}
