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

/************************************
** 子テーマ用のスタイルを書く
************************************/

/* 見出し */
.top-page h2 {
    border-left: none;
    background: none;
}

/* 新着記事表示 */
.top-page .new-entry-cards {
display: flex;
flex-wrap: wrap;
}

.top-page .new-entry-cards a {
width: 33.333%;
}

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

/*834px以下*/
/* 新着記事表示 */
@media screen and (max-width: 834px){
	.top-page .new-entry-cards a {
		width: 50%;
	}
}

/*480px以下*/
/* 新着記事表示 */
@media screen and (max-width: 480px){
	.top-page .new-entry-cards a {
		width: 100%;
	}
}