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

@media screen and (max-width: 600px) {
	.entry-card-thumb{
    width: 38%;
	}
}



/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
	.ect-entry-card .card-content, .rect-entry-card .card-content, .ect-big-card-first .card-content {
    margin: 0;
	}
}


.comment-form .comment-notes{
  display:none;
}



/*カスタマイズより引っ越し*/


/*サムネイルサイズ*/
.entry-card-thumb{
width:150px;
}


.entry-card-content {
    margin-left: 150px;
}


/*投稿日時*/
/*
.post-date{
	display: inline-block;
}

.post-update{
  display: inline-block;
}
*/

.no-post-date .post-date, .no-post-update .post-update, .no-post-author .author-info{
	display: inline-block;
}

/*btn*/
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

.btn,
a.btn,
button.btn {
	width:80%;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #793070;
}

.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #973c8c;
}

.article h2 {font-size: 24px;}
.article h3{font-size: 22px;}
.article h4, .article h5, .article h6{
	    font-size: 20px;
}

@media screen and (max-width: 480px){
.article h4, .article h5, .article h6 {
    font-size: 16px;
}
	.article h3 {font-size: 18px;}
	.article h2 {font-size: 20px;}
}


/*アフィリエイト用のボタン*/
.af_button>a{
    display: inline-block; 
    padding: 0.5em 2em; 
    text-decoration: none; 
    color: #ee827c;/*文字の色*/
    border: solid 2px #ee827c;/*枠の色*/
    border-radius: 3px; 
    transition: .4s;
    font-weight: bold;
}
.af_button>a:hover{
    background: #ee827c;/*ボタンの色*/
    color: white;
}
.af_button{
text-align:center;/*中央寄せ*/
}


/************************
フッターで読み込む
*************************/
function enqueue_footer_css(){
  wp_enqueue_style('bfb_fontawesome_stylesheet-css');

}
add_action('wp_footer', 'enqueue_footer_css');
/************************
CSSをフッターに移動ここまで
*************************/