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

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

/* 画像のレスポンシブ対応（全般） */
img {
  max-width: 100%;
  height: auto;
}

/* wp:image ブロックのレスポンシブ対応 */
.wp-block-image img {
  max-width: 100%;
  height: auto;
}

/* figure のレスポンシブ対応 */
.wp-block-image.size-full {
  max-width: 100%;
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/

/*1023px以下（タブレット〜PC境界）*/
@media screen and (max-width: 1023px){
  /* コンテンツ幅の調整 */
  .content-in {
    padding: 0 16px;
  }
  
  /* 見出しサイズの調整 */
  .entry-content h2 {
    font-size: 1.4em;
  }
  
  .entry-content h3 {
    font-size: 1.2em;
  }
}

/*834px以下（タブレット）*/
@media screen and (max-width: 834px){
  /* 本文フォントサイズ調整 */
  body {
    font-size: 16px;
  }
  
  /* 見出しサイズの調整 */
  .entry-content h2 {
    font-size: 1.3em;
    padding: 10px 12px;
  }
  
  .entry-content h3 {
    font-size: 1.15em;
  }
  
  /* 目次のレスポンシブ対応 */
  .toc {
    width: 100%;
    box-sizing: border-box;
  }
  
  /* 画像のレスポンシブ対応 */
  .wp-block-image img {
    max-width: 100%;
    height: auto;
  }
  
  /* LINE QRコード画像の中央揃えと最大幅設定 */
  .wp-block-image.size-full {
    text-align: center;
  }
  
  .wp-block-image.size-full img {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  /* リストのインデント調整 */
  .entry-content ul,
  .entry-content ol {
    padding-left: 1.5em;
  }
}

/*480px以下（スマートフォン）*/
@media screen and (max-width: 480px){
  /* 本文フォントサイズ調整 */
  body {
    font-size: 15px;
  }
  
  /* ページタイトル調整 */
  .entry-title {
    font-size: 1.4em;
  }
  
  /* 見出しサイズの調整 */
  .entry-content h2 {
    font-size: 1.2em;
    line-height: 1.5;
  }
  
  .entry-content h3 {
    font-size: 1.1em;
    line-height: 1.5;
  }
  
  /* 本文の行間調整 */
  .entry-content p {
    line-height: 1.8;
    margin-bottom: 1em;
  }
  
  /* リストのインデント調整 */
  .entry-content ul,
  .entry-content ol {
    padding-left: 1.2em;
  }
  
  /* 目次のレスポンシブ対応 */
  .toc {
    width: 100%;
    box-sizing: border-box;
    font-size: 0.9em;
  }
  
  .toc .toc-list {
    padding-left: 1em;
  }
  
  /* 画像のレスポンシブ対応 */
  .wp-block-image img {
    max-width: 100%;
    height: auto;
  }
  
  /* LINE QRコード画像 */
  .wp-block-image.size-full {
    text-align: center;
  }
  
  .wp-block-image.size-full img {
    max-width: 240px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  /* セパレーター（区切り線）の調整 */
  .wp-block-separator {
    margin: 20px 0;
  }
  
  /* SNSシェアボタンのレスポンシブ対応 */
  .sns-share {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
  
  /* コンテンツの左右余白 */
  .article,
  .entry-content {
    padding: 0 4px;
  }
}