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

/* ==========================================
   比較記事ページ（投稿）レイアウト改善
========================================== */

/* サイドバー非表示 */
.post .sidebar,
.single-post .sidebar,
.single .sidebar{
    display:none!important;
}

/* 本文を全幅 */
.post .content,
.single-post .content,
.single .content{
    width:100%!important;
    max-width:none!important;
}

.post .main,
.single-post .main,
.single .main{
    width:100%!important;
    max-width:900px;
    margin:0 auto;
}

/* 記事本文 */
.post .entry-content,
.single-post .entry-content,
.single .entry-content{
    font-size:18px;
    line-height:2;
}

/* タイトル */
.post .entry-title,
.single-post .entry-title,
.single .entry-title{
    font-size:42px;
    line-height:1.35;
    margin-bottom:28px;
}

/* タブレット */
@media(max-width:1024px){

.post .main,
.single-post .main,
.single .main{

max-width:760px;

}

}

/* スマホ */
@media(max-width:768px){

.post .entry-title,
.single-post .entry-title,
.single .entry-title{

font-size:30px;

}

.post .entry-content,
.single-post .entry-content,
.single .entry-content{

font-size:16px;

}

}