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

/*リンクの下線を消す・ホバー時は下線を表示*/
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
#main{
	border:none;
}

/************************************
** ●インデックス　サムネイル画像のサイズを変更
************************************/
.entry-card-thumb {
width: 32%;
}

.entry-card-content {
margin-left: 23%;
}

/*インデックスフォントサイズ*/
.entry-card-title {
	font-size: 20px;
} 

/*カテゴリーラベル*/
.cat-label {
    top: 0;
    left: 2px;
    border: none;
    font-size: 12px;
    color: #fff;
    background-color: ;
    padding: 1px 5px;
    margin: -6px 0 0 0;
    overflow: visible;
}
.cat-label::after { /*右上に小さな三角を作る*/
    position: absolute;
    content: '';
    top: 0;
    right: -6px;
    border: none;
    border-bottom: solid 6px #948779; /*小さな三角の色*/
    border-right: solid 6px transparent;
}
