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

/* 全体の余白を少しだけ整える */
.site {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 記事タイトルを少しだけ柔らかく */
.entry-title {
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* 本文を読みやすく */
.entry-content {
  line-height: 1.9;
  font-size: 16px;
}

/* 見出しにほんの少し余白 */
.entry-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-weight: 600;
}

/* リンクをやわらかい青に */
a {
  color: #3f6fa8;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

/* ヘッダーに少しだけ余白 */
.site-header {
  padding: 40px 0;
}