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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/* 見出しカスタマイズ */
/* H2 */
.article h2 {
    background: none;
    padding: 0;
}

/* H3 */
.article h3 {
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: none;
    padding: 0;
}

/* H4 */
.article h4 {
    border-top: none;
    border-bottom: none;
    padding: 0;
}

/* H5 */
.article h5 {
    border-bottom: none;
    padding: 0;
}

/* H6 */
.article h6 {
    border-bottom: none;
    padding: 0;
}

/* パソコン、モバイル表示 */
.pc_on {
    display: block;
}

.sp_on {
    display: none;
}

.wrap {
    width: 900px;
}

.eye-catch-wrap {
    display: block;
    text-align: center;
}

.main,
.sidebar {
    background: #fff;
}

.logo-text {
    padding: 20px 10px 30px;
}

.entry-title {
    display: none;
}

.entry-title,
.archive-title {
    font-weight: 900;
}

/* h1 */
.article h1 {
    margin: 20px auto 20px;
}

.article h2 {
    padding: 10px 20px;
    border-left: 6px double #fff;
    background: #a49592;
    color: #333;
}

.article h3 {
    border-bottom: 2px solid;
    background: #fff;
    color: #333;
    padding: 5px 0;
}

.article h3:first-letter {
    font-size: 150%;
    color: #a49592;
}

table th {
    padding: 10px;
    font-weight: bold;
    border-bottom: none;
    background: #fbcdc4;
    font-size: 16px;
    text-align: center;
}

table td {
    font-size: 16px;
    padding: 10px;
    text-align: center;
}

table tr:nth-of-type(2n+1) {
    background-color: #fff;
}

.author-info {
    display: none;
}

@media screen and (max-width: 767px) {

    .pc_on {
        display: none;
    }

    .sp_on {
        display: block;
    }
}

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

/*834px以下*/
@media screen and (max-width: 834px) {
    /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px) {
    /*必要ならばここにコードを書く*/
}