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

/* リンクアイコンのデザインを変更する */
.author-box .sns-follow .sns-follow-buttons a.follow-button {
  font-size: 36px;
  width: 100px;
  height: 46px;
  margin-bottom: 10px;
  margin-right: 10px;
  color: #fff;
  border: none;
  border-radius: 6px;
  box-shadow: 0 0 5px 0 rgba(0,0,0,.1),0 3px 5px 0 rgba(0,0,0,.2);
}

/* アイコンをセンタリングする */
.author-box .sns-follow-buttons a.follow-button span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}

/* リンクの背景色にSNSのブランドカラーを設定する */
.author-box .sns-follow-buttons a.twitter-button {
  background-color: #1da1f2 !important;
}

.author-box .sns-follow-buttons a.github-button {
  background-color: #0e0c0d !important;
}

.author-box .sns-follow-buttons a.website-button {
  background-color: #6cc655 !important;
}

.author-box .sns-follow-buttons a.rss-button {
  background-color: #f26522 !important;
}

/* WebsiteとRSSを消去 */
a.follow-button.website-button.website-follow-button-sq{
  display:none;
}
a.follow-button.rss-button.rss-follow-button-sq{
  display:none;
}

/* プロフィールボックス 文字サイズ */
.author-box .author-description {
    font-size: 14px; /* .9em; */
}
/* プロフィールボックス 余白 */
.nwa .author-box .author-content {
  padding: 0; /* 1em */
}

.widget_toc{
	overflow-y:scroll;/*縦方向スクロールを設置*/
	max-height: calc(100vh - 350px); /* 目次の高さ上限*/
}

/* 表のヘッダ色を緑に固定 */
table th {
	background: rgba(50, 155, 45, 0.75) !important;
}

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

/** プロフィール開始 */
.pro {
    text-align: center;
    line-height: 50px;
}
.pro a {
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    width:100%;
    border-radius:5px;
    color:#FFF;
    font-weight:bold;
    background-color:#333;
    transition:all 0.3s;
    position:relative;
    font-family: 'Open Sans', sans-serif;
    z-index:2;
}
.pro a:hover,
.pro a:active {
    color:#333;
}
.pro a:after {
    width:0%;
    height:100%;
    border-radius:5px;
    background-color:#FFF;
    content:"";
    position:absolute;
    top:0;
    left:0;
    transition:all 0.3s;
    z-index:-1;
}
.pro a:hover:after,
.pro a:active:after {
    border:2px solid #333;
    width:100%;
}
/** プロフィール終了 */

.ss-top .button-caption {
  display: none !important;
}
.ss-bottom .button-caption {
  display: none;
}

/************************************
** ■コメントを書き込むの強調
************************************/
.comment-btn.key-btn {
  border: solid 2px #fe619a; /*枠線*/
  border-radius: 6px; /*角丸コーナー*/
  font-weight:bold; /*文字強調*/
  font-size: 18px; /*フォントサイズ*/
}