/*
Template: jin
Theme Name: jin-child
Author: CrossPiece
Version: 1.00
*/
/* PCレスポンシブ広告横並び */
.adwrap {
    text-align: center;
    margin: 30px 0;
}

.adtitle {
    font-size: 12px;
    margin-bottom:10px;
}

.ads-line {
     display: flex;
    display: -webkit-flex; /* Safari用 */
    justify-content: space-around;
    -webkit-justify-content: space-around; /* Safari用 */
}
/* PCレスポンシブ広告横並び ここまで */

/* 余白を小さくする */
.cps-post-main p {
  padding-bottom: 1rem;
}

/* 記事下のウィジェットの影が重なるのを回避 */
#text-25 {
  box-shadow: none !important;
}

/* アイキャッチ画像の大きさを揃える */
.pickup-image,
.new-entry-item .eyecatch,
.post-list-thumb {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.pickup-image:before,
.new-entry-item .eyecatch:before,
.post-list-thumb:before {
    content:"";
    display: block;
    padding-top: 56.25%; /* 16:9 */
}
.pickup-image img,
.new-entry-item .eyecatch img,
.post-list-thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
   -webkit-transform: translate(-50%, -50%) !important;
   transform: translate(-50%, -50%) !important;
}