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

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

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

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

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

/*リンク文字*/
a {
	text-decoration:none;
}

/*おすすめカード*/
#recommended .navi-entry-card-title {
color: #fff; /*文字色*/
font-size: 15px; /*文字サイズ*/
font-weight:bold; /*太字*/
letter-spacing:0.5px; /*余白*/
text-decoration: none;
line-height: 1.4;
}

.sidebar h3{
	font-size:16px;
  padding:4px 10px;
  margin:0px 0px;
}

/*カード左揃え*/
.ect-3-columns {
  justify-content: flex-start;
}

/*ページ送り*/
.pagination-next {
  display: none;
}
.page-numbers {
  color: #333;
	font-weight:bold;
  border: 1px solid #333;
  border-radius: 50%;
}
.pagination .current {
  background-color: #333;
	font-weight:bold;
  color: #fff;
}
.page-numbers.dots {
  opacity: 1;
  background: none;
}
.pagination a:hover {
  background-color: #333;
  color: #fff;
	font-weight:bold;
}
.prev-post-title:before,
.next-post-title:before {
    color: #999999; /* 文字色 */
    font-size: 12px; /* 文字サイズ */
    margin-bottom: 0.3em;
    display: block;
}
.next-post-title:before {
    content: '次のページ';
}
.prev-post-title:before {
    content: '前のページ';
}

/*特定ページのシェア非表示*/
.page-id-2 .sns-share,
.page-id-3 .sns-share,
.page-id-14 .sns-share{
    display: none;
}

/*特定ページの更新日非表示*/
.page-id-2 .date-tags,
.page-id-3 .date-tags,
.page-id-14 .date-tags{
    display: none;
}

/*サイドバー検索窓*/
.sidebar .search-box, .search-menu-content .search-box {
  width: 100%;
  margin: 0.6em 0 1em;
  position: relative;
  display: flex;
  border-radius: 10px; /*全体を囲むボックスの角丸*/
}
.sidebar .search-edit, .search-menu-content .search-edit {
  width: 80%; /*入力部分の長さ*/
  background: #fff; /*入力部分の背景色*/
  padding: 0 10px;
  border-radius: 3px 0 0 3px; /*左上、左下のみ角丸*/
  font-size: 16px;
}
.search-submit {
  width: 20%; /*ボタン部分の長さ*/
  background: #1f3134; /*ボタン部分の背景色*/
  color: #fff; /*アイコンの色*/
  position: static;
  right: auto;
  top: auto;
  font-size: 20px; /*アイコンの大きさ*/
  cursor: pointer;
  line-height: 32px; /*検索窓の高さ*/
  border-radius: 0 3px 3px 0; /*右上、右下のみ角丸*/
  padding: 0;
}

/* お問い合わせフォーム */	
/* 必須・任意のサイズ調整 */	
.inquiry .haveto,.inquiry .any {	
font-size:10px;
}
/*必須の調整*/
.haveto{
 font-size:6px;
 padding:2px;
 background:#c91e1e;
 color:#fff;
 border-radius:2px;
 margin-right:5px;
 position:relative;
 bottom:3px;
}
/*任意の調整*/
.any{
 font-size:6px;
 padding:2px;
 background:#333;
 color:#fff;
 border-radius:2px;
 margin-right:5px;
 position:relative;
 bottom:3px;
}
/*送信ボタンの調整*/
input.btn-submit,
{
	background: #333;
	color: #FFF;
	font-size: 1em;
	font-weight: bold;
	letter-spacing: 0.2em;
	border: 1px solid #333;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;	
}
input.btn-submit:hover{
	background: #FFF;
	color: #333;  
}
.search-box input:focus, .search-box button:focus {
  outline: 0; /*フォーカス時の枠線を消す*/
}

/*コメント欄調整*/
/*コメントを書きこむボタン*/
.comment-btn {
	background: #333;
	color: #FFF;
	font-size: 1em;
	font-weight: bold;
	letter-spacing: 0.2em;
	border: 1px solid #333;
	border-radius: 5px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;	
}
.comment-btn:hover{
	background: #FFF;
	color: #333;  
	border-radius: 5px;
}
/*フォーム部分の枠*/
#commentform {
  padding: 10px;
}
/*入力スペースの装飾*/
#commentform input[type="text"], #commentform textarea { 
  padding: 8px;
  font-size: 16px;
  width: 100%;
}
/*送信ボタンの装飾*/
#commentform input[type="submit"] { 
	background: #333;
	color: #FFF;
	font-size: 1em;
	font-weight: bold;
	letter-spacing: 0.2em;
	border: 1px solid #333;
	border-radius: 5px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;	
}
#commentform input[type="submit"]:hover {
	background: #FFF;
	color: #333; 
	border-radius: 5px;
}
.comment-form-email,
.st-comment-form-url,
.comment-notes{ 
	display:none; 
}

/*コメントリスト*/
.st-comment-content p { 
  font-size: 15px;
  margin: 1em 0;
  line-height: 1.5em;
}
.st-comment-form-email,
.st-comment-form-url{ 
	display:none;
}

/*テキストリンク設定*/
a{
  text-decoration: none;
}

/*人物紹介*/
.image-character img{
	border: 2px solid #393939;
	border-radius: 8px;
}

/*トップページ*/
.home header .sns-share,
.home footer .sns-share,
.home footer .sns-follow,
.home header .post-date,
.home .post-update,
.home .author-info{
    display: none;
}

/*ショートコード記事横並び*/
.ex-class {
display: flex;
flex-wrap: wrap;
}

.ex-class a {
width: 33.333%;
border:1;

}

/*おすすめカード*/



/*ボックスメニュー*/
.box-menu{
	background: #797979;
	border-radius: 10px;
}
.box-menu-icon{
    color: #fbfaf5; /* アイコンの色 */
}
.box-menu:hover{
    background: #333333; /* 背景色 */
}
.box-menu-label{
	color: #fbfaf5;
	font-size: 15px;
}
.box-menu {
    width: calc(100%/6); /* メニューの数 */
}
/* ページ送りナビの左右を入れ替える(Cocoon ver.2～) */
.pager-post-navi a.prev-post {
    flex-direction: row-reverse;
    padding:10px 5px 10px 10px;
}
.pager-post-navi a.next-post {
    flex-direction: row;
    padding:10px 10px 10px 5px;
}
.pager-post-navi a.next-post .iconfont:before {
	content: '\f053';
}
.pager-post-navi a.prev-post .iconfont:before {
	content: '\f054';
}
.pager-post-navi a.next-post .next-post-title {
	margin: 0 0 0 10px;
}
.pager-post-navi a.prev-post .prev-post-title {
	margin: 0 10px 0 0;
}
@media screen and (min-width: 481px) {
    .pager-post-navi.post-navi-square {
        flex-direction: row-reverse;
    }
    .post-navi-square.post-navi-border a:last-child {
        border-left-width: 1px;
    }
    .post-navi-square.post-navi-border a:first-child {
        border-left-width: 0;
    }
}
.sidebar .sns-follow-buttons a {
  width: 30%; /*ボタンの幅*/
}
.sidebar .sns-follow {
  margin: 0 0 24px 0;
}
.sidebar .sns-follow-buttons a {
  background: none !important;
  border: 1px solid #444d53;
  color: #444d53;
  border-radius: 50px;
}
.sidebar .twitter-button:hover {
  background-color: #1da1f2 !important;
  color: #fff;
  border-color: #1da1f2;
}
.sidebar .feedly-button:hover {
  background-color: #2bb24c !important;
  color: #fff;
  border-color: #2bb24c;
}
.sidebar .rss-button:hover {
  background-color: #f26522 !important;
  color: #fff;
  border-color: #f26522;
}
/************************************
** プロフィール-サイドバー
************************************/
.sidebar .widget_author_box {
  background: #1f3134;
  padding-top: 0.6em;
  border-radius: 3px 3px 0px 0px;
  margin: 0 auto;
}
.sidebar .author-box {
  padding: 42px 0px 14px;
  border: none;
  position: relative;
  margin: 0 0 0em;
  max-width: 100%;
  overflow:hidden;
}
.sidebar .author-content {
  background: #fff;
  border-radius: 80px 80px 60px 60px / 40px 40px 40px 40px;
  padding: 10px; 
  width:110%;
  margin-left:-5% !important;
}
.sidebar .author-box .author-name a {
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 18px;
}
.sidebar .author-box .author-description {
  padding: 6px 6px 0px;
  text-align: justify;
  text-justify: inter-ideograph;
}
.sidebar .author-box p {
  line-height: 1.2;
  font-size: 14px;
  text-align: center;
  margin-top: 2px;
}
.sidebar .author-box .author-thumb {
  width: 120px;
  margin: 0 auto;
  position: absolute;
  top: 20px;
  right: 0;
  left: 0;
  bottom: 0;
}
.sidebar .author-box .author-name {
  font-size: 1.1em;
  font-weight: bold;
  position: absolute;
  margin-bottom: 0.4em;
  top: 14px;
  bottom: 0;
  right: 0;
  left: 0;
}
.sidebar .author-box .author-widget-name {
  position: absolute;
  top: 0px;
  bottom: 6px;
  right: 0;
  left: 0;
  font-size: 0.7em;
  color: #80989b;
  font-weight: bold;
  margin-top: 0px;
  margin-bottom: 2px;
}
.sidebar .author-box .sns-follow {
  padding: 6px 10px 0px;
}
.sidebar .author-box .sns-follow-buttons {
  display: flex;
  justify-content: space-evenly;
}
.sidebar .author-box .sns-follow-buttons a {
  border-radius: 50%;
  border: none;
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 30px;
  background:#1f3134;
  color: #fff;
}
.sidebar .author-box .sns-follow-buttons .follow-button span:before {
  color: #fff;
}
.sidebar .author-box .to-profile {
  position: absolute;
  background: #1f3134;
  border-radius: 50%;
  width:48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  top: 105px;
  right: 45px;
  font-size: 0.9em;
  font-weight: bold;
}
.sidebar .author-box .sns-follow-message {
  margin-bottom: 0px;
  font-size: 13px;
}
.sidebar .icon-twitter-logo:before {
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 0;
  left: 0;
  color: #1f3134;
}
.sidebar .icon-youtube-logo:before {
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 0;
  left: 0;
  color: #1f3134;
}
.sidebar .icon-line-logo:before {
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 0;
  left: 0;
  color: #1f3134;
}
.sidebar .icon-feedly-logo:before {
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 0;
  left: 0;
  color: #1f3134;
}
.sidebar .icon-rss-logo:before {
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 0;
  left: 0;
  color: #1f3134;
}
#sidebar .author-box .sns-follow-message {
  display:block;
}
.sidebar .author-box .sns-follow-message:before {
  content: "＼";
  margin-right: 5px;
}
.sidebar .author-box .sns-follow-message:after {
  content: "／";
  margin-left: 5px;
}
