@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon
Version:    1.1.2
*/

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

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

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

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

/*---SNSボタンを丸くする---*/
#main .button-caption {
	display: none; /*キャプション非表示*/
}

/*SNSシェアボタン*/
.sns-share-message{
	font-weight: bold; /*太字*/
	color: #875d5b; /*文字色*/
}
.sns-share-buttons {
	flex-wrap: nowrap; /*折り返さない*/
	justify-content: center; /*中央寄せ*/
}
.sns-share-buttons a {
	border-radius: 50%; /*丸くする*/
	font-size: 20px; /*アイコンのサイズ*/
	margin: 0 10px; /*ボタン同士の間隔*/
}
#main .sns-share a {
	width: 40px; /*ボタンの横幅*/
	height: 40px; /*ボタンの高さ*/
}

/*SNSフォローボタン*/
.sns-follow-message{
	font-weight: bold; /*太字*/
	color: #875d5b; /*文字色*/
}
.sns-follow-buttons {
	justify-content: center; /*中央寄せ*/
}
.sns-follow-buttons a {
	border-radius: 50%; /*丸くする*/
	font-size: 20px; /*アイコンのサイズ*/
	margin: 0 10px; /*ボタン同士の間隔*/
}
#main .sns-follow a {
	width: 40px; /*ボタンの横幅*/
	height: 40px; /*ボタンの高さ*/
}

/*吹き出しアイコンサイズPC*/
.speech-person{
	width:90px;
}
/*吹き出しアイコンサイズスマホ*/
@media screen and (max-width:480px){
	.speech-person{
		width:80px;
		min-width:80px;
	}
}

.page .sns-share,
.page .sns-follow{
	display:none;
}

/*内部ブログカード抜粋非表示*/
.internal-blogcard-snippet{
    display: none;
}

@media screen and (max-width: 480px){
.internal-blogcard-title{
	font-size: 14px;
}
}

/*続きボタン */
.internal-blogcard-site{
float:none;
}
.internal-blogcard-date{
display:none;
}
.internal-blogcard-site:after{
font-family: "FontAwesome";
content: ">Read more";
font-weight: bold;
font-size: 100%;
color: #1e90ff;
padding: .2em;
border-radius: 4px;
background-color: rgba(0,0,0,0);
border:1px solid #1e90ff;
display: inline;
margin-left: auto;
}
.internal-blogcard-site:hover::after{
opacity: .7;
}

/* 「ホーム」を消す */
#breadcrumb.breadcrumb .breadcrumb-home a span{
   font-size: 0px;
}
/* 「Home」を挿入 */
#breadcrumb.breadcrumb .breadcrumb-home a span::before{
   font-size: 13px;
   content: "Home";
}

/* コードブロックだけ縦スクロールさせる */
.hcb_wrap pre {
  max-height: 500px;
  overflow: auto;
}