@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Template:   cocoon-master
Version:    1.1.0
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/


/***************************************************************************
****トップページ及びサイドバーデザイン
*********************************************/

/*インデックスリストページにおける、メインカラム背景の白を消す（.homeはトップ、.archiveはカテゴリページ）。デザイン変更により消去して全体に適用*/
.home .main, .archive .main {
  /*background-color: rgba(0,0,0,0);*/
}

.main {
	position: relative; /*インデックスリスト上部にふせんをデザインするため追加（2020/3/31）*/
	background-image: url("https://earsoku.com/wp-content/uploads/2020/03/beg-back.jpg");
	padding: 60px 20px 30px 20px; /*60pxは上部のふせんデザイン分*/
	margin: 25px 0;
	border-radius: 20px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
}

.content {
	margin-top: 32px; /*メインとRSSの間。もとは24px*/
}

/*おおもとの背景を設定*/
body {
	/*background-image: url("https://earsoku.com/wp-content/uploads/2020/03/beg-back.jpg");*/
	background: #D5D5D4;
}

/*フッターの背景（Cocoon設定のほうでも変えられる）*/
.footer {
	/*background-image: url("http://eartest.local/wp-content/uploads/2020/03/a0fb7d3aea2776da5bdf8506d571065e_s.jpg");*/
}

.footer-left, .footer-center, .footer-right {
}

/*フッターのリストデザイン*/
.rist-menu {
	list-style: none;
	overflow: hidden;
	width: 300px;
	padding: 0;
	/*margin: 50px auto 100px;*/
}
.rist-menu li {
	list-style: none;
	overflow: hidden;
	width: 100%;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #879c18;
}
.rist-menu li:last-child {
	border-bottom: 0px;
}
.rist-menu li a {
	display: block;
	position: relative;
	z-index: 10;
	height: 40px;
	margin: 0;
	padding: 0px 10px 0px 50px;
	background: #a1b91d;
	color: #fff;
	font-size: 14px;
	line-height: 40px;
	font-weight: bold;
	text-decoration: none;
}
.rist-menu li a:hover {
	background: #879c18;
}
/*サンプル7にする：参考（http://weboook.blog22.fc2.com/blog-entry-373.html）*/
#footer-list li a {
	padding: 0px 10px 0px 30px;
	background: #94aa1b;
}
#footer-list li a:before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 300px;
	height: 40px;
	margin-left: -150px;
	background: #a1b91d;
	transition: .2s;
	z-index: -1;
}
#footer-list li a:after {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 8px;
	height: 40px;
	background: #7b8d16;
}
#footer-list li a:hover {
	background: #94aa1b;
}
#footer-list li a:hover:before {
	width: 0;
	margin-left: 0;
}

/*フッターの見出しデザイン*/
h3.footer-title {
  padding: 0.4em 0.5em;/*文字の上下 左右の余白*/
  color: #494949;/*文字色*/
  background: #f4f4f4;/*背景色*/
  border-left: solid 7px #7b8d16;/*左線*/
  border-bottom: solid 3px #d7d7d7;/*下線*/
}



/*********
**Chromeのカードデザイン**
*****/

/*付箋のデザイン*/
.main:before {
	content: '新着記事';
	font-size: 25px;
    font-weight: bold;
    text-align: center;
    color: #fff;

	position: absolute;
	top: -17px;
	left: 30%;

	width: 40%;
	background-color: #9be15d;
	border-left: 15px solid #41ab6e;
	box-shadow: 0 5px 6px rgba(0, 0, 0, .5);
}


/*ブログカードの基礎色を白にする*/
.ect-entry-card .a-wrap {
	background-color: #fff;
	position: relative;
}

/*ブログカード左側を少しめっくたような表現*/
.ect-entry-card .a-wrap:before,.ect-entry-card .a-wrap:after
{
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width:300px;
  background: #777;
  -webkit-box-shadow: 0 15px 10px #777;
  -moz-box-shadow: 0 15px 10px #777;
  box-shadow: 0 15px 10px #777;
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
.ect-entry-card .a-wrap:after
{
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}

/*ホバーを改良する。なぜかセレクタ重複（.ect-entry-cardを追加）するとホバーが消えた*/
.ect-entry-card a{
	cursor: pointer;
	transition: all 0.3s ease 0s;
}
.ect-entry-card a:hover {
	background: #898;
	color: #000;
}

/*サムネイル画像をフェードさせる*/
.entry-card-thumb:after {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	width: 100%;
	height: 100%;
	box-shadow: inset -20px 0 15px #fff;
}

/*少し文字が小さく感じたため、文字を大きくするのと下にオレンジの線（border-bottom: solid 7px #f39800;）を引く*/
.entry-card-title {
	font-size: 24px;
	padding: 5px 5px 8px 5px;
	position: relative;
}
/*オレンジの線をグラデーションさせるために擬似要素を使う*/
.entry-card-title:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px;
    margin: 0 auto;
    text-align: center;
    /*background: #3F7EFA; /*この部分は後にlinear-gradientへ*/ */
}
.entry-card-title:before {
    background-image: -webkit-linear-gradient(left, transparent, #f39800 25%, #f39800 75%, transparent);
    background-image: linear-gradient(to right, transparent, #f39800 25%, #f39800 75%, transparent);
    background-position: center;
    background-repeat: no-repeat;
}



/************************************
** プロフィール-サイドバー
************************************/
.sidebar .author-box {
  background: #fff; /*サイドバーを独自デザインにする際にこちらが優先されてしまうため変更（2020/3/21）*/
  padding: 120px 0 0;
  border: none;
  position: relative;
  margin: 0 0 3em;
  max-width: 100%;
  overflow:hidden;
}
.sidebar .author-content {
  background-image: linear-gradient(-60deg, #16a085 0%, #f4d03f 100%);
  border-radius: 200px 200px 0px 0px / 100px 100px 0px 0px;
  color: #fff;
  padding: 20px;
  width:110%;
  margin-left:-5% !important;
}
.sidebar .author-box .author-name a {
  color: #6ed1ad;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 18px;
}
.sidebar .author-box .author-description {
  padding: 45px 25px 0px;
  text-align: justify;
  text-justify: inter-ideograph;
}
.sidebar .author-box p {
  line-height: 1.8;
  font-size: 16px; /*14から変更*/
}
.sidebar .author-box .author-thumb {
  width: 120px;
  margin: 0 auto;
  position: absolute;
  top: 50px;
  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: 23px;
  bottom: 0;
  right: 0;
  left: 0;
}
.sidebar .author-box .author-widget-name {
  position: absolute;
  top: 3px;
  bottom: 0;
  right: 0;
  left: 0;
  font-size: 0.7em;
  color: #bbb;
}
.sidebar .author-box .sns-follow {
  padding: 15px 10px;
}
.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: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 30px;
  box-shadow: 0 0 10px rgba(66, 172, 231, .5), 0 0 5px -5px rgba(66, 172, 231);
  background:#fff;
}
.sidebar .author-box .sns-follow-buttons a:hover {
  box-shadow: 0 10px 20px -2px rgba(0, 0, 0, .2);
  opacity: 1;
}
.sidebar .author-box .sns-follow-buttons .follow-button span:before {
  color: #46CDFF;
}
.sidebar .icon-instagram-new:before {
  content: "\ea92";
  font-size: 24px;
}
.sidebar .author-box .to-profile {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  color: #46CDFF;
  box-shadow: 0 0 10px rgba(66, 172, 231, .5), 0 0 5px -5px rgba(66, 172, 231);
  top: 105px;
  right: 45px;
  font-size: 0.9em;
  font-weight: bold;
}
.sidebar .author-box .to-profile:hover {
  box-shadow: 0 10px 20px -2px rgba(0, 0, 0, .2);
}
.sidebar .author-box .sns-follow-message {
  margin-bottom: 10px;
  font-size: 13px;
}
.sidebar .author-box .sns-follow-message:before {
  content: "＼";
  margin-right: 5px;
}
.sidebar .author-box .sns-follow-message:after {
  content: "／";
  margin-left: 5px;
}
.sidebar .icon-twitter-logo:before {
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 0;
  left: 0;
}
.sidebar .icon-facebook-logo:before {
  position: absolute;
  top: 6px;
  bottom: 0;
  right: 8px;
  left: 0;
}
.sidebar .icon-hatebu-logo:before {
  position: absolute;
  top: 8px;
  bottom: 0;
  right: 0;
  left: 0;
}
.sidebar .icon-feedly-logo:before {
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 0;
  left: 0;
}
.sidebar .icon-rss-logo:before {
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 0;
  left: 0;
}


/****************************************
**まとめRSS用のデザイン
********/

/*PCヘッドラインの調整[2]*/
.rss-head1 {
   padding: 5px 10px;
   color: #ffffff;
   background-image: linear-gradient(to top, #9be15d 0%, #00e3ae 100%);
   /*background: #01DF01;*/
}
.rss-des1 {
   padding: 0 10px 10px 10px;
   border: 2px solid #9be15d; /*最初の緑は#01DF01*/
   background: #ffffff;
   overflow-y:hidden; 
   overflow-x:hidden;
   height: 300px; /*flex用のデザイン*/
   position: relative;
   z-index: 1;
}
/*背景にキャラを追加するため変更（2020/3/19）*/
.rss-des1:before {
   display: block;
   width: 100%;
   height: 100%;
   left: 0;
   content: " ";
   position: absolute;
   background-image: url("https://earsoku.com/wp-content/uploads/2020/03/profile-trans.png");
   background-repeat: no-repeat;
   background-position: right bottom;
   background-size: 150px;
   opacity: 0.3;
   z-index: -1;
}

.rss-des1 a{
   text-decoration: none;
   color: #333;
   font-weight: bold;
   transition: all .3s;
}
.rss-des1 a:hover {
	color: #fff;
	background-color: #2ecc71;
}
.rss-des1 ul{
   padding-left: 2px;
   list-style: none; /*cocoonでは入っているボックスのマージンなどの差で左に黒丸が出ることがあるため、こちらを変更（2020/3/26）*/
}
.rss-des1 .blogroll-channel .blogroll-list{
   font-size: 17px;
   border-bottom: dotted 1px;
}


/*2段組みRSSの調整*/
.rss-des2 {
   padding: 0 10px 10px 10px;
   border: 3px solid #9be15d;
   border-top: 1px solid #9be15d; /*連結用のデザイン（2020/3/28）*/
   overflow-y:scroll; 
   overflow-x:hidden;
   height: 300px; /*flex用のデザイン*/
   position: relative;
   z-index: 2;
}
.rss-des2wrap {
   width: auto;
   height: auto;
   background: #ffffff;
   position: relative;
   z-index: 0;
}
.rss-des2wrap:before {
   display: block;
   width: 100%;
   height: 100%;
   left: 0;
   content: " ";
   position: absolute;
   background-image: url("https://earsoku.com/wp-content/uploads/2020/03/AndEarGrayTrans.png"), url("https://earsoku.com/wp-content/uploads/2020/03/AndOrigGrayTrans.png");
   background-repeat: 
	no-repeat, no-repeat;
   background-position: 
	left 40% bottom, right bottom;
   background-size: 130px;
   opacity: 0.2;
   z-index: 1;
}

.rss-des2 a{
   text-decoration: none;
   color: #333;
   transition: all .3s;
}
.rss-des2 a:hover {
	color: #fff;
	background-color: #2ecc71;
}
.rss-des2 ul{
   padding-left: 2px;
   list-style: none; /*cocoonではなぜか黒丸があったためこちらを変更（2020/3/19）*/
}
.rss-des2 .blogroll-channel .blogroll-list{
   font-size: 15px;
   border-bottom: dotted 1px;
}
/*2段組みの中に入れるやつ*/
.rss-des2in {
   float: left;
   width: 47%;
   margin: 0 10px 0 10px;
   font-weight: bold;
}

/*rssの横並び表示のために、右側用のデザインを追加*/
.rss-des3 {
   padding: 0 10px 10px 10px;
   border: 2px solid #9be15d; 
   overflow-y:scroll; 
   overflow-x:hidden;
   height: 600px; /*flex用のデザイン*/
   position: relative;
   z-index: 2;
}

.rss-des3wrap {
   width: auto;
   height: auto;
   background: #ffffff;
   position: relative;
   z-index: 0;
}

.rss-des3wrap:before {
   display: block;
   width: 100%;
   height: 100%;
   left: 0;
   content: " ";
   position: absolute;
   background-image: url("https://earsoku.com/wp-content/uploads/2020/03/profile-trans.png");
   background-repeat: no-repeat;
   background-position: right bottom;
   background-size: 150px;
   opacity: 0.3;
   z-index: 1;
}

/*コンテナの設定*/
.rss-flex {
	display: flex;
	height: auto;
	margin-top: 50px;
	background-image: url("https://earsoku.com/wp-content/uploads/2020/03/beg-back.jpg");
	padding: 30px;
	margin-top: 50px;
	border-radius: 20px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
}

.rss-left {
	display: flex;
    flex-direction: column;
	height: auto;
	width: 68.8%; /*rssが広告ブロッカーで表示されない場合widthが設定されていないと崩れるため追加（2020/4/04）*/
}

.rss-right {
	width: 31.2%; /*こっちを500px以上に伸ばすとleftが縮む-----rssが広告ブロッカーで表示されない場合widthが設定されていないと崩れるため追加（2020/4/04）*/
	height: 600px;
}

/*メインカラムの中のRSS-des1にのみ少し変更を加える*/
.main .rss-des1 {
	margin-bottom: 20px;
}

/*細長いやつの背景ドロイド君バージョン。主にスマホの本日オススメ用*/
.rss-des4 {
   padding: 0 10px 10px 10px;
   border: 2px solid #9be15d; 
   overflow-y:scroll; 
   overflow-x:hidden;
   height: auto; /*スマホのランキング4位まで*/
   position: relative;
   z-index: 2;
}

.rss-des4wrap {
   width: auto;
   height: auto;
   background: #ffffff;
   position: relative;
   z-index: 0;
}

.rss-des4wrap:before {
   display: block;
   width: 100%;
   height: 100%;
   left: 0;
   content: " ";
   position: absolute;
   background-image: url("https://earsoku.com/wp-content/uploads/2020/03/AndEarGrayTrans.png");
   background-repeat: no-repeat;
   background-position: right bottom;
   background-size: 150px;
   opacity: 0.3;
   z-index: 1;
}


/*********
***カルーセルのエントリーカード
**********/
.carousel-in {
	border-radius: 20px;
}


/******
***サイドバーのデザイン
***/
/*サイドバー見出し*/
#sidebar h3  {
	position: relative;
	padding: .5em .75em;
	background-image: linear-gradient(to top, #50cc7f 0%, #f5d100 100%); /*元はbackground-color緑6ed1ad*/
	color: #fff;
	border-radius: 6px;
	border-bottom:none;
}
#sidebar h3::after{
	position: absolute;
	top: 100%;
	left: 30px;
	content: '';
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-top: 15px solid #5dcc78; /*元は緑6ed1ad*/
}
#sidebar h3:first-letter {
	margin-right: .1em;
	font-size: 1.5em;
	border-bottom:0px;
}
/*サイドバー背景を透過させたい*/
#sidebar {
    background-color: transparent;
    border: none;
    padding: 5px 5px;
}
.widget-sidebar {
	background-image: url("https://earsoku.com/wp-content/uploads/2020/03/beg-back.jpg");
	padding: 10px 20px 20px 20px;
	margin: 25px 0;
	border-radius: 20px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
}

/*追従領域のデザイン*/
/*サイドバー固定位置のテキスト装飾*/
.fixman a p {
    position: absolute;
	display:block; /*Cocoonでの横幅変更に対応するため変更（2020/3/21）*/
	width: 320px; /*Cocoonでの横幅変更に対応するため変更（2020/3/21）*/
    bottom: 0;
    left: 0;
    background-color: #23232f;
    font-size: 15px;
    font-weight: bold;
    color: #f7f9ff;
    padding: 3px;
    opacity: 0.7;
    filter: alpha(opacity=80);
    overflow: hidden;
    text-align: left;
    margin: 1px;
}
/*サイドバー固定のaタグ装飾*/
.fixman a {
    display: block;
    height: 170px;
    width: auto; /*Cocoonでの横幅変更に対応するため変更（2020/3/21）*/
    position: relative;
    border: 2px solid #5a5a61;
    overflow: hidden;
    margin-left: 0;
    margin-bottom:-16px;
    padding: 2px;
}
.fixman a:hover {
	opacity: 0.5;
}

/*サイドバー画像カテゴリのホバー*/
.cate-img a:hover {
	opacity: 0.5;
}


/***********************************************************************************
記事ページ関連デザイン（共通）
*****************************************************/

/**************
まとめくすデザイン
*****/
/*まとめくす名前欄*/
.mtmks {
    padding-left: 5px;
    background: linear-gradient(to left,transparent 70%, #F0EBEB);
    border-left: 4px solid #564DFE;
    line-height: 140%;
    border-top: dashed 1px #ddd;
    font-size: 12px;
    margin-left: -5px;
}

/*あにこびんみたいに管理人コメントを作る*/
.earkanri {
    width: 60%; /*ここで黒枠を調整する。Cocoonだとずれていたので変更（2020/3/23）*/
    margin: 0 auto;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
}

/*本文途中RSSを入れるためにh6のマージンとペディングを消す*/
.article h6 {
    margin: 0;
    padding: 0;
}

/*記事の背景を設定*/
.article {
	background: #fff;
	padding: 35px;
	border-radius: 20px 20px;
}

/*関連記事以降の背景を設定*/
.related-entries, .pager-post-navi, .comment-area, .breadcrumb {
	background: #fff;
	padding: 35px;
	border-radius: 20px 20px;
	margin: 20px 0;
}

/*********
twitter関連のデザイン
****/

/*twitterなどを入れる灰色（simplicityから引き継ぎ）*/
.tweest  {
   background-color: #EFEFEF;
   border: #000 1px dotted;
   padding: 10px;
   margin: 0;
}

/*ツイートまとめツールpro用のデザインCSSこれで直接HTMLに記述する必要がなくなる。simplicityから引き継ぎ*/
/*ツイートまとめツールを使用*/
.mtpro-clearfix:after{content: "";display: block;clear: both;}
.mtpro-wrapper {/*中央寄せにする*/
	max-width: 560px;
	margin: auto;
}
.mtpro-wrapper .mtpro-tweet-outer {/*ここを変更*/
	margin-bottom: 20px;
    border: solid 3px #3b5ed4;
    box-shadow: 5px 5px #cfcee4;
    margin: 30px 0;
    border-radius: 10px 10px 20px 40px;
    padding: 7px 10px 5px 3px;
}
.mtpro-wrapper .mtpro-tweet-outer .mtpro-header a {color: #008000 !important;text-decoration: none;}
.mtpro-wrapper .mtpro-tweet-outer .mtpro-header .mtpro-author_picture {float: left;width: 36px;height: 36px;overflow: hidden;}
.mtpro-wrapper .mtpro-tweet-outer .mtpro-header .mtpro-author_picture img {border-radius: 50%;max-width: 100%;max-height: 100%;border-width: 0px;}
.mtpro-wrapper .mtpro-tweet-outer .mtpro-header .mtpro-bird {float: right;width: 1.25em;}
.mtpro-wrapper .mtpro-tweet-outer .mtpro-header .mtpro-bird .mtpro-bird_logo {width: 22px;height: 22px;display: inline-block;color: rgb(43, 123, 185);background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2072%2072%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M0%200h72v72H0z%22%2F%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%231da1f2%22%20d%3D%22M68.812%2015.14c-2.348%201.04-4.87%201.744-7.52%202.06%202.704-1.62%204.78-4.186%205.757-7.243-2.53%201.5-5.33%202.592-8.314%203.176C56.35%2010.59%2052.948%209%2049.182%209c-7.23%200-13.092%205.86-13.092%2013.093%200%201.026.118%202.02.338%202.98C25.543%2024.527%2015.9%2019.318%209.44%2011.396c-1.125%201.936-1.77%204.184-1.77%206.58%200%204.543%202.312%208.552%205.824%2010.9-2.146-.07-4.165-.658-5.93-1.64-.002.056-.002.11-.002.163%200%206.345%204.513%2011.638%2010.504%2012.84-1.1.298-2.256.457-3.45.457-.845%200-1.666-.078-2.464-.23%201.667%205.2%206.5%208.985%2012.23%209.09-4.482%203.51-10.13%205.605-16.26%205.605-1.055%200-2.096-.06-3.122-.184%205.794%203.717%2012.676%205.882%2020.067%205.882%2024.083%200%2037.25-19.95%2037.25-37.25%200-.565-.013-1.133-.038-1.693%202.558-1.847%204.778-4.15%206.532-6.774z%22%2F%3E%3C%2Fsvg%3E);}
.mtpro-wrapper .mtpro-tweet-outer .mtpro-header .mtpro-author_timestamp {overflow: hidden;width: auto;font-size: 15px;padding-top: 6px;padding-left: 10px;}
.mtpro-wrapper .mtpro-tweet-outer .mtpro-content {padding:0 0 10px 30px;font-weight: bold;font-size: 17px;line-height: 1.4;color: #555;word-break: break-all;}
.mtpro-wrapper .mtpro-tweet-outer .mtpro-media {padding-left:30px;}
.mtpro-wrapper .mtpro-tweet-outer .mtpro-media .mtpro-media-image {max-width: 100%;display: inline-block;}
.mtpro-wrapper .mtpro-tweet-outer .mtpro-media .mtpro-media-images {width: 45%;display: inline-block;margin-top: 5px;margin-right:5px;}
.mtpro-wrapper .mtpro-tweet-outer .mtpro-footer {padding-left:30px;margin-top:10px;}
.mtpro-wrapper .mtpro-tweet-outer .mtpro-footer .mtpro-icon-reply{width: 20px;height: 20px;display: inline-block;background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%20style%3D%22width%3A32px%3Bheight%3A32px%22%3E%3Cpath%20d%3D%22M442.539%2073.946C397.7%2036.018%20333.59%2013.863%20255.205%2013.881c-74.398%200-137.905%2020.981-183.337%2058.411-22.692%2018.686-40.758%2041.491-53.06%2067.428C6.498%20165.648-.01%20194.641%200%20225.422c-.018%2037.214%207.777%2071.586%2023.511%20101.577%2015%2028.664%2037.298%2053.04%2065.699%2072.103-6.715%2028.269-16.148%2068.67-16.148%2068.689a23.777%2023.777%200%200%200-.648%205.624c-.019%207.59%203.526%2014.896%209.668%2019.608l.038.028.009.01a24.806%2024.806%200%200%200%2015%205.06c3.987%200%208.031-.969%2011.68-2.934l.367-.188.357-.216c.01-.01%205.069-3.01%2012.856-7.618a29359.666%2029359.666%200%200%201%2045.291-26.745A5571.434%205571.434%200%200%201%20189%20447.912c5.916-3.46%2010.477-6.104%2012.16-7.034l.085-.047.113-.066c22.1-12.526%2039.704-14.633%2053.849-14.708%2058.692-.085%20121.212-11.464%20171.13-42.62%2024.894-15.602%2046.561-36.413%2061.806-63.056%2015.272-26.624%2023.886-58.853%2023.858-96.16.121-58.677-24.584-112.441-69.462-150.275zm12.17%20227.294c-8.812%2015.375-20.37%2028.316-34.232%2039.282-20.774%2016.429-46.862%2028.288-75.479%2035.934-28.598%207.664-59.642%2011.088-89.792%2011.078-18.517-.075-44.379%203.414-72.761%2019.683v-.009c-3.14%201.749-10.128%205.822-19.345%2011.219a16345.917%2016345.917%200%200%200-45.15%2026.614c3.545-15.094%207.655-32.576%2010.73-45.413v-.019c.509-2.144.874-4.468.884-7.11.037-3.724-.922-8.266-3.075-12.046a24.507%2024.507%200%200%200-5.436-6.583c-2.736-2.285-4.796-3.273-5.944-3.903l-1.157-.592-.131-.076C88.665%20353.095%2070.166%20332.97%2057.63%20309.11c-12.517-23.896-19.1-51.78-19.11-83.689.01-25.401%205.295-48.526%2015.085-69.188%2014.718-30.94%2039.668-56.604%2073.786-74.896C161.482%2063.083%20204.789%2052.4%20255.205%2052.4c71.276.019%20125.933%2020.031%20162.45%2050.952%2036.47%2031.025%2055.702%2072.799%2055.824%20120.864-.027%2031.507-7.062%2056.513-18.77%2077.024z%22%20fill%3D%22%234b4b4b%22%2F%3E%3C%2Fsvg%3E);}
.mtpro-wrapper .mtpro-tweet-outer .mtpro-footer .mtpro-icon-retweet{margin: 0 10px;width: 20px;height: 20px;display: inline-block;background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22_x32_%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%20style%3D%22width%3A32px%3Bheight%3A32px%22%3E%3Cstyle%3E.st0%7Bfill%3A%234b4b4b%7D%3C%2Fstyle%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M509.86%20267.434a15.49%2015.49%200%200%200-13.338-7.613h-43.677v-108.21c.014-19.402-7.962-37.293-20.698-49.971-12.678-12.738-30.57-20.721-49.973-20.699l-194.482-.007a17.194%2017.194%200%200%200-14.818%208.472%2017.187%2017.187%200%200%200-.222%2017.062l17.55%2031.65a21.512%2021.512%200%200%200%2018.795%2011.072h173.178c.786.014%201.17.214%201.71.703.49.548.696.933.711%201.718v108.21h-43.678a15.49%2015.49%200%200%200-13.338%207.613%2015.514%2015.514%200%200%200-.199%2015.374l77.802%20140.29c2.726%204.918%207.91%207.969%2013.538%207.969s10.812-3.051%2013.537-7.969l77.802-140.29a15.514%2015.514%200%200%200-.2-15.374zM321.791%20373.873a21.49%2021.49%200%200%200-18.796-11.071h-173.17c-.785-.014-1.17-.214-1.711-.703-.488-.541-.696-.926-.71-1.71v-108.21h43.678a15.496%2015.496%200%200%200%2013.337-7.613%2015.514%2015.514%200%200%200%20.201-15.374l-77.802-140.29a15.484%2015.484%200%200%200-27.075%200L1.94%20229.192a15.517%2015.517%200%200%200%20.2%2015.374%2015.5%2015.5%200%200%200%2013.338%207.613h43.678v108.21c-.015%2019.402%207.961%2037.294%2020.698%2049.972%2012.678%2012.737%2030.57%2020.714%2049.972%2020.69l194.476.008c6.086%200%2011.73-3.222%2014.818-8.472a17.21%2017.21%200%200%200%20.222-17.07l-17.551-31.644z%22%20fill%3D%22%234b4b4b%22%2F%3E%3C%2Fsvg%3E)}
.mtpro-wrapper .mtpro-tweet-outer .mtpro-footer .mtpro-icon-favorite {width: 20px;height: 20px;display: inline-block;background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%20style%3D%22width%3A32px%3Bheight%3A32px%22%3E%3Cpath%20d%3D%22M373.597%2029.736c-.938%200-1.856.009-2.795.03C313.675%2030.864%20276.726%2059.028%20256%2093.182c-20.726-34.154-57.675-62.318-114.802-63.416-.928-.021-1.866-.03-2.796-.03-38.566%200-73.559%2015.465-98.518%2043.538C13.797%20102.626%200%20143.789%200%20192.309c0%2095.273%2076.404%20153.378%20150.284%20209.566%2028.513%2021.684%2057.975%2044.098%2083.483%2068.688l1.138%201.547c5.062%206.24%2012.419%209.904%2020.296%2010.134l.8.02.838-.02c7.847-.24%2015.186-3.894%2020.247-10.114l1.158-1.578c25.498-24.59%2054.97-47.003%2083.473-68.678C435.596%20345.687%20512%20287.583%20512%20192.309c0-95.723-56.917-162.573-138.403-162.573zm-2.206%20328.012c-37.12%2028.952-78.172%2057.866-113.654%2092.099a45.742%2045.742%200%200%200-1.747%201.777c-.519-.549-1.018-1.088-1.726-1.777-47.303-45.615-104.52-81.895-149.116-121.202-22.313-19.618-41.412-39.904-54.79-62.088-13.378-22.204-21.184-46.164-21.215-74.248.02-44.228%2012.81-77.493%2032.528-99.677%2019.757-22.164%2046.573-33.705%2076.733-33.764l2.237.03c33.775.708%2057.835%2012.67%2075.017%2029.681%2017.132%2017.022%2027.165%2039.556%2030.77%2060.99a9.692%209.692%200%200%200%209.574%208.097%209.693%209.693%200%200%200%209.574-8.097c3.604-21.434%2013.638-43.967%2030.77-60.99%2017.181-17.012%2041.242-28.973%2075.017-29.681l2.236-.03c30.161.059%2056.976%2011.6%2076.735%2033.764%2019.717%2022.184%2032.507%2055.449%2032.526%2099.677-.03%2028.084-7.837%2052.044-21.215%2074.248-20.04%2033.276-53.105%2062.258-90.254%2091.191z%22%20fill%3D%22%234b4b4b%22%2F%3E%3C%2Fsvg%3E)}
@media only screen and (max-width: 559px) {
	.mtpro-wrapper .mtpro-tweet-outer .mtpro-header .mtpro-author_timestamp {overflow: hidden;width: auto;font-size: 12px;padding-top: 0;padding-left: 5px;}
	.mtpro-wrapper .mtpro-tweet-outer .mtpro-header .mtpro-author_timestamp .mtpro-username_dispname {display: block;}
	.mtpro-wrapper .mtpro-tweet-outer .mtpro-header .mtpro-author_timestamp .mtpro-timestamp {display: block;}
	.mtpro-wrapper .mtpro-tweet-outer .mtpro-content {padding-left:0;}
	.mtpro-wrapper .mtpro-tweet-outer .mtpro-media {padding-left:10px;}
	.mtpro-wrapper .mtpro-tweet-outer .mtpro-footer {padding-left:10px;}
}


/*********
コメントのデザイン
****/
.comment-list { /*全体の枠*/
  border: 4px solid #1de3a6;
  padding: 0;
  border-radius: 10px 10px 0 0;
}
.comment-title { /*タイトルの装飾*/
  margin: 0;
  font-size: 24px;
  background-image: linear-gradient(to top, #9be15d 0%, #00e3ae 100%);
  color: #fff;
  padding-left: 20px;
  font-weight: normal;
}
.comment-title:before { /*タイトルにアイコンを付ける*/
  font-family: FontAwesome;
  content: '\f27b';
  color: #fff;
  margin-right: 4px;
}
.commets-list {
  padding: 20px 20px 0 20px;
}
.commets-list > li {
  border-top: 2px dashed #5fe283; /*スレッドを区切る点線*/
  margin: 30px 0;
  padding-top: 20px;
}
.commets-list > li:first-child {
  border: none;
  margin-top: 0;
  padding-top: 0;
}
.commets-list .children {
  border-left: 2px solid #ccc; /*返信コメントの左側のボーダー*/
  margin: 0;
}
.commets-list .avatar { /*アバターの位置調整*/
  float: left;
  border-radius: 50%;
  margin-right: 10px;
}
.comment-content { /*コメントの吹き出し*/
  background: #e2e2e2;
  padding: 2px 10px;
  margin: 10px 0 6px 0;
  border-radius: 10px;
  position: relative;
}
.comment-content::before { /*吹き出しの三角部分*/
  content: "";
  position: absolute;
  top: -14px;
  left: 50px;
  border-style: solid;
  border-color: transparent transparent #e2e2e2 transparent;
  border-width: 0 20px 20px 0;
}
.comment-content p { /*吹き出し内の文字を調整*/
  font-size: 14px;
  margin: 1em 0;
  line-height: 1.5em;
}
.comment-reply-link { /*返信ボタンの装飾*/
  color: #fff;
  border: none;
  border-radius: 20px;
  background: #5fe283;
  padding: 1px 12px;
  transition: 0.5s;
}
.comment-reply-link:hover { /*返信ボタンのマウスホバー時*/
  color: #fff;
  background: #2a9675;
  transition: 0.5s;
}
.commets-list .comment-body {
  margin-bottom: 0;
}

/*コメントボタンのデザイン*/
.comment-btn {
  background-color: #5fe283;
  color: #fff;
  border: none;
  font-size: 20px;
  transition: 0.5s;
}
.comment-btn:hover {
  background-color: #2a9675;
  color: #fff;
  transition: 0.5s;
}

/*コメントの文言を消す。参考（https://ponhiro.com/customize-comment/）*/
.comment-form-email,.comment-form-url,.comment-notes{ display:none; }


/*******************
話題のイヤホンをピックアップ記事スタイル
*****/
/*ランキング記事（ピックアップ記事）のリスト（最初）*/
ul.ranklist, ol.ranklist{
  padding: 0;
}

ul.ranklist li.ranklist {
  position: relative;
  list-style-type: none!important;/*ポチ消す*/
  padding: 0.5em 0.5em 0.5em 0.5em;
  margin-bottom: 5px;
  line-height: 1.5;
  background: #dbebf8;
  vertical-align: middle;
  color: #505050;
  font-weight: bold;
  border-radius: 15px 0px 0px 15px;/*左側の角丸く*/
}

ul.ranklist li.ranklist:before{ /*疑似要素*/
  display:inline-block; 
  vertical-align: middle;
  /*以下白丸つくる*/
  content:'';
  width:1em;
  height: 1em;
  background: #fff;
  border-radius: 50%;
  margin-right: 8px;
}

/*画像のホバー*/
a.lefter {
  padding: 0 .3em;
  background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(46,204,113,1) 50%);
  background-position: 0 0;
  background-size: 200% auto;
  transition: .3s;
  text-decoration: none;
}
a.lefter:hover {
  background-position: -100% 0;
  color: #fff;
}


/*大見出しの変更*/
.article h2.ranktitle{
position: relative;
padding: 0.5em;
background: #a6d3c8;
color: white;
border-left: 0;
}

.article h2.ranktitle::before{
position: absolute;
content: '';
top: 100%;
left: 0;
border: none;
border-bottom: solid 15px transparent;
border-right: solid 20px rgb(149, 158, 155);
}

/*画像の背景を緑にする*/
.rank_pic {
   display: inline-block;
   margin: 20px 0 0 0;
   padding: 5px 5px 0 5px;
   border: 1px solid #ccc;
   background-color: rgba(83, 210, 85, 0.21);
   float:left;
}

.rank_rev {
   float:left;
   margin:10px 10px 10px 20px;
}

.rank_box {
  box-shadow: 0 0 8px gray;
  width:auto;
  height:auto;
  padding: 15px;
  margin: 20px 0 40px 0;
}

.rank_box h3 {
  color: #364e96;/*文字色*/
  padding: 0.5em 0;/*上下の余白*/
  border-top: solid 3px #364e96;/*上線*/
  border-bottom: solid 3px #364e96;/*下線*/
  border-right: none; /*cocoonの場合article.h3でこの項目が上書きされてしまうため変更（2020/3/29）*/
  border-left: none; /*同上*/
}

.rank_box h5 {
   padding: 0.25em 0.5em;/*上下 左右の余白*/
   color: #494949;/*文字色*/
   background: transparent;/*背景透明に*/
   border-left: solid 5px #7db4e6;/*左線*/
}

/*商品と評価を囲む*/
.box26 {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #95ccff;
    border-radius: 8px;
}
.box26 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #95ccff;
    font-weight: bold;
}

/*ピックアップ文字のデザイン*/
.pickup{
position: relative;
display: inline-block;
padding: 0 55px;
font-size: 20px;
font-weight:bold;
}

.pickup:before, .pickup:after{
content: '';
position: absolute;
top: 50%;
display: inline-block;
width: 45px;
height: 2px;
border-top: solid 1px black;
border-bottom: solid 1px black;
}

.pickup:before {left:0;}
.pickup:after {right: 0;}

/*価格サイトみたいな星を出したい   2018/3/26、@importできないのでコメントアウト*/
/*@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,600,700);*/
.star-ratings-css {
  unicode-bidi: bidi-override;
  color: #c5c5c5;
  font-size: 25px;
  height: 25px;
  width: 100px;
  margin: 0 auto;
  position: relative;
  padding: 0;
  text-shadow: 0px 1px 0 #a2a2a2;
}
.star-ratings-css-top {
  color: #e7711b;
  padding: 0;
  position: absolute;
  z-index: 1;
  display: block;
  top: 0;
  left: 0;
  overflow: hidden;
}
.star-ratings-css-bottom {
  padding: 0;
  display: block;
  z-index: 0;
}
.star-ratings-sprite {
  background: url("http://earsoku.com/wp-content/uploads/2017/09/star.png") repeat-x;
  font-size: 0;
  height: 21px;
  line-height: 0;
  overflow: hidden;
  text-indent: -999em;
  width: 110px;
  margin: 0 auto;
}
.star-ratings-sprite-rating {
  background: url("http://earsoku.com/wp-content/uploads/2017/09/star.png") repeat-x;
  background-position: 0 100%;
  float: left;
  height: 21px;
  display: block;
}


/************************************************************************************************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1240px以下*/
@media screen and (max-width: 1240px){
  /*必要ならばここにコードを書く*/
}

/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/

/***************************************************************************
トップページ及びサイドバーのデザイン（モバイル）
********************************************/

/*モバイル表示ではオレンジ線が画像を通過してしまうため、縮小する*/
.entry-card-title {
	font-size: 16px;
}
.entry-card-title:before {
	left: auto;
	width: 60%;
}

/*スマホのインデックスリストの間隔を広げる*/
.a-wrap {
	margin-bottom: 5%;
}

/***********
モバイルRSS
****/
.rss-des1 {
	height: 550px;
}
.rss-mobile-margin {
	margin: 15px 10px;
}

/************
モバイルカルーセル
****/
.carousel {
	margin: 30px 10px 10px 10px;
}

/****************************************************************************************************
記事ページのデザイン（モバイル）
*****************************************************************/

/*あにこびんみたいに管理人コメントを作る。モバイル表示では独自の幅設定をしないと黒枠がずれる*/
.earkanri {
	width: 98%;
}

/*記事背景をすべて画像で統一*/
.article {
	padding: 10px 7px 9px 7px;
}
.related-entries, .pager-post-navi, .comment-area, .breadcrumb {
	padding: 10px 7px 9px 7px;
}
main.main {
	padding: 40px 12px 20px 12px;
}


/*******
スマホPICKUPの装飾
************/
/*上の装飾のタイトル*/
.toponK {
   background-color: #fff;
   border-top: solid;
   border-bottom: solid;
   border-width: 5px;
   border-color: #01DF01;
   margin-bottom: 10px;
   font-weight: bold;
   color: #01DF01;
}

/*試しにリストのスタイルを遊ぶ*/
.topon {
   list-style-type: none;
   margin:0;
   margin-bottom: 40px; /*cocoonだとこれがないとしたとくっついてしまうため変更（2020/3/20）*/
   padding:0;
}

ul.topon{
   padding-left:0;
   background-color: #fff;
   border-top: solid;
   border-color: #f39800;
}

.topon li{
   overflow:hidden;
   margin:1px 0 1px 0;
   border-bottom: solid;
   border-color: #f39800;
}

.topon .thumb {
   float:left;
   width:65px;
   height:65px;
}

.topon .summary {
   margin:0 0 0 70px;
}

.topon a {
   text-decoration: none;
}

.topon p {
   margin:0;
}


}
