@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
@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){
  /*必要ならばここにコードを書く*/

}

/*画像中央寄せ*/
.entry-content img {
  margin: auto;
  display: block;
}

/*834px以下*/
@media screen and (max-width: 834px){

}		
	
	/*768px以下*/
@media screen and (max-width: 768px){

}

/*画面幅600px以上で記事幅、サムネサイズを狭める*/
@media screen and (min-width:600px) {
#main {
  padding: 5%;
}
	
.eye-catch-image{
width: 95%;
}
}

/*480px以下*/
@media screen and (max-width: 480px){
  .column-wrap{
    flex-direction: column;
  }
}

.go-to-toc-button {
    flex-direction: column;
}
.go-to-toc-button:after {
    content:'目次';
    font-size: 12px; /* 文字サイズ */
    margin-top: 2px;
}

/*リンク色変更*/
a{
  transition: color 0.3s;
}

a:hover{
  color : #8d8682;
}

