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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

@import url('https://fonts.googleapis.com/css2?family=Zen+Myocho&display=swap');

body {
    font-family: "Zen Myocho", serif !important;
	letter-spacing: 0.03em;
}

/* 文字サイズ */
p {
	font-size: 15px;
}

a {
	font-size: 15px;
}

/* アイキャッチのカテゴリ除去設定 */
.cat-label {
	display:none
}

/* SNSシェアボタンのカスタマイズ */
.sns-share-buttons a {
    background-color: transparent !important; /* 背景色を透明に */
    color: #7096BB !important;              /* 先ほど提案したブルー（またはグレー）に */
    border: 1px solid #7096BB !important;   /* 細い枠線をつける */
    border-radius: 4px;                      /* 角を少し丸める */
    box-shadow: none !important;             /* 影を消す */
    transition: all 0.3s;
}

/* ホバーした時（マウスを乗せた時）の動き */
.sns-share-buttons a:hover {
    background-color: #f0f4f8 !important;    /* ほんのり色付く */
    opacity: 0.8;
}

/* ボタン内のブランドロゴ（XやFacebook）の色も統一 */
.sns-share-buttons a .button-caption,
.sns-share-buttons a [class^="icon-"] {
    color: #7096BB !important;
}

/* サイドバーの目次にスクロール表示 */
.toc-widget-box .toc-content {
	overflow-y: scroll;
	max-height: 80vh;
}

/* MetaSlider余白設定 */
.alignnormal {
	margin-bottom: 0px;
}

.ms-theme-architekt.metaslider-flex {
	padding-bottom: 0px !important;
}

.ms-theme-architekt {
	padding-bottom: 0px;
}

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

/*834px以下*/
@media screen and (max-width: 834px){
  /* 文字サイズ */
  p {
	  font-size: 15px;
  }
  a {
	  font-size: 15px;
  }
}

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