/* カスタム CSS をここに入力してください */
/*ブログカードのカスタマイズ*/

.st-cardbox {
  border: 3px solid #ff69b4;
  border-radius: 10px 10px 10px 10px;
  box-shadow: none;
	background-color: #ffc0cb;
}

.st-cardbox:hover .st-card-img {
  transform: scale(1.08);
  transition: .3s;
}

.st-cardbox.kanren {
  margin-top:55px;
}

/*ブログカード風 - ラベル*/
.st-cardbox-label {
  position: absolute;
  top: -30px;
  left: -1px;
  width: 300px;
  height: 30px;
  overflow: hidden;
}

.st-cardbox-label-text {
  white-space: nowrap;
  display: inline-block;
  position: absolute;
  padding: 10px 10px 10px 26px;
  left: 0;
  top: -3px;
  width: auto;
  text-align: center;
  font-size: 80%;
  line-height: 1.2;
  font-weight:bold;
  background: #9097f9;
  color: #fff;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  box-shadow: none;
  z-index:9999;
}

.st-cardbox-label .st-cardbox-label-text:before {
  position: absolute;
  top: 10px;
  left: 8px;
  content: "\f15c";
  font-size: 13px;
  font-family: FontAwesome;
  font-weight: normal;
  color: #fff;
}

/*ブログカード風マガジン タイプB*/
  
.st-cardstyleb .st-cardbox {
box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.st-cardstyleb .st-cardbox.kanren {
margin-top: 0px;
}

.st-cardstyleb .st-cardbox:hover .st-card-img {
transform: none;
}
　

/* カッテネカスタマイズ */
.kattene {
	border: none !important;
	border-radius: unset !important;
	box-shadow: 0px 2px 5px 0 rgba(0,0,0,.26);
	background-color: #ffefef; /* 背景カラー */
	font-family: 'Lucida Grande','Hiragino Kaku Gothic ProN',Helvetica, Meiryo, sans-serif;
	font-size: 16px;
	height: auto;
	line-height: 1.5;
	margin: 36px auto !important;
	padding: 12px 8px !important;
	overflow: hidden;
	width: 98% !important;
}
.kattene__imgpart {
	background: #fff;
	box-sizing: border-box;
	min-width: 150px;
	padding: 12px 0;
	vertical-align: middle;
}
.kattene__imgpart img {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	width: 70px;
	height: 100px; 
}
.kattene__title>a {
	display: block;
	padding: 5px;
	color: #4392f1; /* タイトルのテキストカラー */
}
.kattene__description {
	color: rgba(0,0,0,0.54); /* 説明文のテキストカラー */
	font-size:0.7em !important;
	padding: 0 5px;
}
.kattene__btns {
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto !important;
	padding: 12px 5px 12px 5px !important;
	position: initial !important;
}
.kattene__btns > div {
	box-shadow: 0 6px 12px -5px rgba(0,0,0,.3);
	border-radius: 8px;
}
@media screen and (min-width: 901px){
.kattene__btns > div {
	width: 32.333% !important;
}
}
@media screen and (max-width: 900px) {
.kattene__imgpart {
	width: 100%;
}
.kattene__title,
.kattene__description {
	text-align: center;
}
.kattene__btns {
	padding: 10px 10px !important;
}
.kattene__btns > div {
	width: 99% !important;
	margin: 3.5px auto !important;
}
}
/*  全ボタン共通  */
.kattene__btns a {
	margin: 0 !important;
	padding: 10px 0px !important;
	border-radius: 8px !important;
	font-size: .6em !important;
	line-height: 30px !important;
	letter-spacing:0;
	-webkit-box-shadow: none !important;
	box-sizing: border-box;
	box-shadow: none !important;
}
.kattene__btns a:hover {
	background: #ffffff !important;
	opacity: 1;
}
/* ボタンオレンジ */
.kattene__btn.__orange {
	border: 2px solid #ff9901 !important;
}
.kattene__btn.__orange:hover{
	color: #ff9901 !important;
}
/* ボタンブルー */
.kattene__btn.__blue{
	border: 2px solid #007dcd !important; 
	
}
.kattene__btn.__blue:hover{
	color: #007dcd !important;
}
/* ボタンレッド */
.kattene__btn.__red {
	border: 2px solid #c20004 !important; 
}
.kattene__btn.__red:hover{
	color: #c20004 !important;
}
/* ボタングリーン */
.kattene__btn.__green {
	border: 2px solid #0BBD80 !important; 
}
.kattene__btn.__green:hover {
	color: #0BBD80 !important;
}
/* ボタンピンク */
.kattene__btn.__pink {
	border: 2px solid #e1325b !important; 
}
.kattene__btn.__pink:hover {
	color: #e1325b !important;
}
/* WordPressで自動挿入されたPタグの余白を消す */
.kattene p {
	margin: 0;
	padding: 0;
}

/* 引用タグカスタマイズ */

.post blockquote {
    position: relative;
    padding: 10px 15px 10px 50px;
    box-sizing: border-box;
    font-style: italic;
		border: solid 3px #ffb6c1;
    color: #464646;
}

.post blockquote:before{
    display: inline-block;
    position: absolute;
    top: 20px;
    left: 15px;
    content: "\f10d";
    font-family: FontAwesome;
		color: #db7093;
    font-size: 25px;
    line-height: 1;
    font-weight: 900;
}

.post blockquote p {
    padding: 0;
    margin: 10px 0;
    line-height: 1.7;
}

.post blockquote cite {
    display: block;
    text-align: right;
    color: #888888;
    font-size: 0.9em;
}