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

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

/*トップページカスマイズ***************************************/

/*背景色を白にする（白くしない場合、body{ }部分は削除してOKです）*/
body {
	background-color:#fff!important;
}

/*ひとつのセクション枠（数値はお好みで調整できます）*/
.section-wrap{
	padding-top:2em;/*内側余白をあける（上）*/
	padding-bottom:2em;/*内側余白をあける（下）*/
}

/* 見出し---------------------------------------------- */
.heading{
	text-align:center; /*中央寄せ*/
	font-size:2.5rem; /*文字の大きさ（お好みで調整）*/
	letter-spacing:4px;/*文字間の余白*/
	line-height:1.6; /*行の高さ*/
	margin:0  0 2.5rem 0; /*外側余白（上下・左右）*/
	font-weight:bold;/*太字にする（不要なら削除）*/
}

.heading span{
	display:block; /*ブロック要素にする*/
	font-size:.9rem; /*サブ見出しを小さめに（お好みで調整）*/
	font-weight:normal;/*通常の太さ（不要なら削除）*/
}


/* リンクボタン---------------------------------------------- */
.link-btn{
	display:block;/*ブロック要素にする*/
	margin:1em auto;/*中央寄せにする*/
	padding: 0.7em 2.5em;/*内側余白*/
	text-align: center;/*中央寄せ*/
	text-decoration: none;/*文字装飾なし*/
	border:1px solid #ccc; /*枠線（太さ、種類、色）*/
	font-size:.9em;/*文字の大きさ*/
	color:#333;/*文字色*/
	max-width: 60%; /*ボタンの幅*/
	letter-spacing:4px;/*文字間の余白*/
}

/* 記事を横並びにする(flex)---------------------------------------------- */
.widget-entry-cards.large-thumb{
	display: flex; /* フレックス配置 */
	flex-wrap: wrap;
	justify-content: center;/*カード中央寄せ*/
}

/*新着記事サムネイル（大）*/
.new-entry-cards.large-thumb a{
	width:calc(100% / 2);/*pcで横2列に並べる*/
}

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

.home .article-header{
     display: none;
}


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

/*834px以下*/
@media screen and (max-width: 834px){
       .new-entry-cards.large-thumb a{
		width:100%;/*モバイルで横１列*/
	}
       .cate .new-entry-cards.large-thumb a,
       .popular-entry-cards.large-thumb a{
	       width:calc(100% / 2);/*モバイルで横２列*/	
	}	
}

/*モバイルで記事タイトル文字サイズを調整*/
/*834px以下*/
@media screen and (max-width: 834px){
	.cate .large-thumb .new-entry-card-title,
	.popular-entry-card-title{
		font-size: 14px!important;/*カテゴリー、人気記事タイトルを少し小さめに*/
	}
}



#header-container,
 #navi-in,
.slicknav_menu{
	display:none;
}

.site-name-text{
	 font-size:14px;
}



.heading {
  font-size: 20px;
  font-size: 2rem;
  position: relative;
  padding: 1.5rem;
  text-align: center;
	font-family:noto serif jp;
}

.heading span {
  font-size: 12px;
  font-size: 1.2rem;
  display: block;
}

.heading:before {
  position: absolute;
  bottom: -3px;
  left: calc(50% - 30px);
  width: 60px;
  height: 4px;
  content: '';
    background-image: linear-gradient(to right, #FFA7D5 0%, #DD74AC 100%);

}



#main {
  background: none;
}

.admin-pv {
  display: none !important;
}

.ect-vertical-card .entry-card-wrap {
  padding: 10px;
}

.ect-vertical-card .entry-card-wrap img {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.widget-entry-cards.card-large-image figure img{
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.entry-card-title, .related-entry-card-title {
  font-size: 16px;
  margin-top: 0.5rem;
}



.post-date {
  margin-right: 10px !Important;
}


.widget-entry-card-post-date::before,
.widget-entry-card-update-date::before{
	font-family: "Font Awesome 5 Free";
	font-weight:800; 
	padding-right: 3px; /*右余白*/
	font-size:10px;
}

/*投稿日アイコン*/
.widget-entry-card-post-date::before{ 
	content: "\f017"; /*fa fa-clock-oアイコン*/
}

/*更新日アイコン*/
.widget-entry-card-update-date::before{ 
	content: "\f1da"; /*fa-historyアイコン*/
}

 .entry-card-thumb .cat-label {
  top: -6px;
  left: 0;
  padding: 5px;
	background-color: rgb(123 123 123);
    border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  font-weight: bold;
}



.link-btn:hover {
  color: #FFF;
  	 background: -webkit-gradient(to right, #FFA7D5 0%, #DD74AC 100%);
  background:  linear-gradient(to right, #FFA7D5 0%, #DD74AC 100%);

}

.widget-entry-card-date {
	display:block;
        text-align: right;/*右寄せ*/
}


.widget-entry-cards:not(.large-thumb-on) .card-title {
    margin-top: 16px;
}

.widget-entry-cards.card-large-image .a-wrap {

    padding: 0.8em;
}

.new-entry-card-date.widget-entry-card-date.display-none {
display: block;
}



.new-entry-cards .cat-label {
  display: inline;
}



h2.wp-block-heading {
  padding: 1rem 2rem;
  color: #fff;
 	 background: -webkit-gradient(to right, #FFA7D5 0%, #DD74AC 100%);
  background:  linear-gradient(to right, #FFA7D5 0%, #DD74AC 100%);
	font-family:noto serif jp;
}

.wp-block-heading{
	font-family:noto serif jp;
}

h3.wp-block-heading{
	position: relative;
  padding: 1rem .5rem;
		font-family:noto serif jp;
}

h3.wp-block-heading:before,
h3.wp-block-heading:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  content: '';
 	 background: -webkit-gradient(to right, #FFA7D5 0%, #DD74AC 100%);
  background:  linear-gradient(to right, #FFA7D5 0%, #DD74AC 100%);
}

h3.wp-block-heading:before {
  top: 0;
}

.article h3{
	border:none;
}

h3.wp-block-heading:after {
  bottom: 0;
}


h3.widget-sidebar-title widget-title{
	
}

.article h4 {

padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: #888;/*文字色*/
  background: transparent;/*背景透明に*/
  border-left: solid 5px #DD74AC;/*左線*/

}


.sidebar h3 {
    	 background: -webkit-gradient(to right, #FFA7D5 0%, #DD74AC 100%);
  background:  linear-gradient(to right, #FFA7D5 0%, #DD74AC 100%);
    padding: 8px 0;
    letter-spacing: .2em;
	display: inline-block;
    position: relative;
    width: 100%;
    text-align: center;
    color: #fff;
		font-family:noto serif jp;
}





.author-box .sns-follow-buttons a.follow-button{
	border:none;
	font-size:24px;
}


a:hover {
    color: #F5B9D8;
}


.widget_categories ul li a{ 
  border-bottom: 1px dashed #CCCCCC; /* 下線の種類 */
}

.widget_categories > ul > li > a:first-child{ 
  border-top: none;
}


.cat-item a{ 
  border-bottom: 1px dashed #CCCCCC; /* 下線の種類 */
}

.cat-item  > a:first-child{ 
  border-top: none;
}


#header-container, #navi-in, .slicknav_menu {
    display: block;
}

.logo-text {
    padding: 0px;
    font-size: 1em;
}

@media screen and (max-width: 480px) {
    #header .site-name-text {
        font-size: 14px;
    }
}

#navi{
	display:none;
}
	