@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){
  /*必要ならばここにコードを書く*/
}
/*---------------------------------
Googleフォント
--------------------------------*/
body {
font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, メイリオ, sans-serif !important;
}
/*---------------------------------
目次カスタマイズ
--------------------------------*/
.toc{
display: block;
padding: 0px;
}
.toc-title{
position: relative;
padding: 10px 0px;
background: #067743;/**背景色**/
color: #fff;
font-weight: bold;
}
.toc .toc-content{
padding: 5px 35px;
}
.toc-list > li li a {
font-weight: normal;
font-size: 95%;
color: #708090;
margin-left: -10px;
}
.toc-list > li li ::before {
content: ”;
width: 5px;
height: 5px;
display: inline-block;
left: -7px;/**左の位置**/
border-radius: 100%;
background: #cdcdcd;
position: relative;
margin-bottom: 2px;
}
.article .toc-list > li li {
list-style: none;
}
/* 目次のアイコン設定 */
.toc-title:before {
top: 0;
left: -45px;
width: 50px;
height: 50px;
font-family:“Font Awesome 5 Free”;
content : “\f03a”; /*アイコンを変える場合はここを変更 */
font-size:20px;
margin-right:5px;
color:#FFF; /*アイコンの色を変える場合はここを変更 */
}
/*--------------------------------- 
数字リスト 
--------------------------------*/
 .list-5{
    counter-reset:number; 
    list-style-type: none; 
    padding:0;
    margin:0;
 }
 .list-5 li { 
    position: relative;
    margin:1em auto 1em 10px !important;
    padding-left: 2em;
     padding-top:0.3em
 }
 .list-5 li:before {
    counter-increment: number;
    content: counter(number);
    background-color: #0e7ac4;/* 文字背景色 */
    color: #fff;/*文字色*/
    position: absolute;
    font-weight:bold;
    font-size: 15px;
    border-radius: 50%;
    left: 0;
    top:0.5em;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
 } 
.list-box-3{
    background: #F0FAFF;/* 背景色 */
    border-radius: 0px;
    max-width: 100%;
    padding: 1em 0.5em;
    margin:5 auto;
    margin-left:0.2em;
	margin-right:0.2em;
    border:2px dotted;
    border-color:#0e7ac4;/* 線の色 */
} 
@media screen and (max-width: 768px){
 .article ul, .article ol {
     padding-left: 0px; /* スマホ閲覧時の余白リセット(cocoon) */
	 padding-right: 0px; /* スマホ閲覧時の余白リセット(cocoon) */
}
}
/*--------------------------------- 
トップページ（スマホ用画像） 
--------------------------------*/
@media screen and (max-width:767px) {
.header {
	background-image: url("https://mugen.minibird.jp/wp3/wp-content/uploads/2020/06/top-img2b.jpg");
}
	#header .site-name-text {
    font-size: 25px !important;

}
}
/*---------------------------------
トップページ（タブレット用画像）
---------------------------------*/
@media screen and (min-width: 768px) and (max-device-width: 1024px) {
.header {
	background-image: url("https://mugen.minibird.jp/wp3/wp-content/uploads/2020/06/stockfoto_5645378_S.jpg");
}
#header .site-name-text {
font-size: 28px !important;
}
}
/*--------------------------------- 
スマホ閲覧時、カテゴリーページの文字サイズ変更 
--------------------------------*/
@media screen and (max-width:767px) {
.archive-title {
    font-size: 22px !important;
}
}

/*---------------------------------
スマホ時改行 解除 <BR class="br-sp">
---------------------------------*/
@media only screen and (max-width: 767px){
.br-sp{
display: none;
}
}
/*---------------------------------
スマホ時改行 <BR class="br-sp2">
---------------------------------*/
@media screen and (min-width:768px){
.br-sp2{
display:none;
}
}
/*---------------------------------
記事一覧ぼかしフェードイン
---------------------------------*/
a.entry-card-wrap figure.entry-card-thumb{
  overflow: hidden;
}

a.entry-card-wrap:hover img.entry-card-thumb-image{
  -webkit-filter: blur(2px) brightness(60%);
  filter: blur(2px) brightness(60%);
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  opacity: 1;
  transition: 0.3s;
}
a.entry-card-wrap figure.entry-card-thumb::before{
  z-index: 1;
  font-family: sans-serif;
  font-weight: bold;
  content: "READ MORE";
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: absolute;
  font-size: 100%;
  width: 100%;
  height: 100%;
  color: #fff;
  top: 0;
  left: 0;
  opacity: 0;
  transition: .25s ease;
  -webkit-transition: .4s ease;
  -moz-transition: .4s ease;
  -ms-transition: .4s ease;
}

a.entry-card-wrap:hover figure.entry-card-thumb::before{
  opacity: 0.9;
  font-size: 150%;
}

.entry-card-snippet{
  font-size: 90%;
  line-height: 1.5;
   text-align: justify;
  text-justify: inter-ideograph;
}
/*---------------------------------
見出しのデザイン変更 h4
---------------------------------*/
.article h4,
#comment-area h4,
#related-entries h4{
 border: none; 
 
 position: relative;
 padding-bottom: .5em;
 border-bottom: 4px solid #ccc;
}
.article h4::after {
 position: absolute;
 bottom: -4px;
 left: 0;
 z-index: 2;
 content: '';
 width: 20%;
 height: 4px;
 background-color: #69B560;
}
/*---------------------------------
見出し5 吹き出し
---------------------------------*/
.article h5 {
border: none; 
position: relative;
padding: .7em .75em;
margin-bottom: 1.5em;
background-color: #1baa9a;
color: #fff;
border-radius: 6px;
border-bottom: 0px
}
.article h5::after {
position: absolute;
top: 100%;
left: 30px;
content: '';
width: 0;
height: 0;
border: 10px solid transparent;
border-top: 15px solid #1baa9a;
border-bottom: 0px
}
/*---------------------------------
見出し6
---------------------------------*/
.article h6 {
position: relative;
padding-left: 1.2em;/*アイコン分のスペース*/
line-height: 1.4;
border: none; 
padding:0px 30px 10px;
margin-top: 30px !important;
color: #69B560;/*文字色*/
}

.article h6:before {
font-family: FontAwesome;/*アイコンフォント*/
content: "\f138";/*アイコンのユニコード*/
position: absolute;/*絶対配置*/
font-size: 1em;/*サイズ*/
left: 0;/*アイコンの位置*/
top: 0;/*アイコンの位置*/
color: #69B560; /*アイコン色*/
}
/*---------------------------------
サイドバーの見出し色変更
---------------------------------*/
.sidebar h3 {
background-color: #f3f3f3 !important;
padding-left : 0.7em;
}
/*---------------------------------
オシャレなボックスデザイン
---------------------------------*/
.box29 {
    margin: 2em 0;
    background: #dcefff;
}
.box29 .box-title {
    font-size: 1.2em;
    background: #5fb3f5;
    padding: 4px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.box29 p {
    padding: 15px 20px;
    margin: 0;
}

.box30 {
    margin: 2em 0;
    background: #f1f1f1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
}
.box30 .box-title {
    font-size: 1.2em;
    background: #69b560;
    padding: 4px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.box30 p {
    padding: 15px 20px;
    margin: 0;
}

/*---------------------------------
プロフィール（サイドバー）
---------------------------------*/
.nwa .author-box {
    text-align: center;
    max-width: 100%;
}
.sidebar .author-box {
    border: none;
    border-radius: 4px;
    margin: 1em 0;
    line-height: 1.4;
    position: relative;
    padding: 1.4% 2% 1.8%;
}
.nwa .author-box .author-thumb {
    float: none;
    width: 100%;
    margin: 9px auto 0;
    background: url(https://mugen.minibird.jp/wp3/wp-content/uploads/2020/06/3209806_m.jpg) center no-repeat;
    background-size: cover;
    height: 0;
    padding-top: calc(100%*392/700);
    position: relative;
}
.sidebar .author-thumb img {
    border: 3px solid #fff;
    width: 30%;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -25%;
}
.nwa .author-box .author-content {
    margin-top: 16%;
    font-size: 0.9em;
}
.author-name {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 10px;
}
.author-box .author-name a {
    text-decoration: none;
    color: #333;
}
.author-box p {
    margin-top: 0.3em;
    line-height: 1.6;
}
.author-box p a {
    text-decoration: none;
    color: #008cee;
}
.author-box p a:hover {
    text-decoration: underline;
    color: #008cee;
}
.author-box .sns-follow-buttons a.follow-button {
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    margin-bottom: 4px;
    margin-right: 8px;
    background: none;
    color: #fff;
}
.author-box a.follow-button span {
    line-height: 40px;
}
.author-box a.follow-button span::before {
    font-size: 22px;
}
.author-box .icon-twitter-logo::before {
    font-family: FontAwesome;
    content: "\f099"
}
.author-box .icon-facebook-logo::before {
    font-family: FontAwesome;
    content: "\f09a";
}
.author-box .icon-instagram-new::before {
    font-family: FontAwesome;
    content: "\f16d";
}
.author-box .icon-hatebu-logo::before {
    font-family: Verdana;
    content: 'B!';
    font-weight: bold;
}
.author-box .icon-google-plus-logo::before {
    font-family: FontAwesome;
    content: "\f0d5";
}
.author-box .icon-youtube-logo::before {
    font-family: FontAwesome;
    content: "\f167";
}
.author-box .icon-pinterest-logo::before {
    font-family: FontAwesome;
    content: "\f231";
}
.author-box .icon-amazon-logo::before {
    font-family: FontAwesome;
    content: "\f270";
}
.author-box .icon-github-logo::before {
    font-family: FontAwesome;
    content: "\f09b";
}
.author-box .website-button { background-color: #47555c !important; }
.author-box .twitter-button { background-color: #1da1f2 !important; }
.author-box .facebook-button { background-color: #3b5998 !important; }
.author-box .hatebu-button { background-color: #2c6ebd !important; }
.author-box .google-plus-button { background-color: #dd4b39 !important; }
.author-box .instagram-button { background: #e1306c !important; }
.author-box .youtube-button { background-color: #ef1515 !important; }
.author-box .flickr-button { background-color: #0063dc !important; }
.author-box .pinterest-button { background-color: #bd081c !important; }
.author-box .line-button { background-color: #00c300 !important; }
.author-box .amazon-button { background-color: #ff9900 !important; }
.author-box .rakuten-room-button { background-color: #c42e7f !important; }
.author-box .github-button { background-color: #333 !important; }
.author-box .feedly-button { background-color: #2bb24c !important; }
.author-box .rss-button { background-color: #f26522 !important; }
.author-box .soundcloud-button { background-color: #ff7700 !important; }
.author-box .feedly-button, .author-box .rss-button {
    display: none!important;
}
/*-----------------------------
スマホ時のみダイヤル可能
-----------------------------*/
@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
		text-decoration: none;
    color:#2a2a2a;
  }
}
/*-----------------------------
サイトタイトルとキャッチフレーズの文字の大きさ（PC）
-----------------------------*/
/*サイトタイトル*/
.site-name-text{
font-weight: 500;
font-family: ‘Josefin Sans’sans-serif;
font-size: 32px!important;
color:#ffff;
}
/*キャッチフレーズ*/
.tagline {
font-size: 18px;
}
/*-----------------------------
サイトタイトルとキャッチフレーズの文字の大きさ（スマホ）
-----------------------------*/
@media screen and (max-width: 480px){
/*サイトタイトル*/
.site-name-text {
font-size: 28px;
}
/*キャッチフレーズ*/
.tagline {
font-size: 15px;
}
} 
/*-----------------------------
指定した固定ページのみヘッダー画像を変更する
https://hirako50.com/header-logo-img/
-----------------------------*/
