@charset "utf-8";
/* 
 * RSSリーダー調整CSS
 */

/*	block rss field
-------------------------------------------*/
.block_rss_field {
    background-color: #fff;
    padding: 25px 20px !important;
    /* box-shadow: 0 0 7px rgba(0, 0, 0, .11); */
    border-radius: 5px;
    margin-bottom: 20px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

/*	rss title
-------------------------------------------*/
h2.blog_title {
    position: relative;
    font-size: 24px;
    font-weight: 400;
    color: #454daa;
    line-height: 1.25;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothicM, YuGothicB, "Yu Gothic", YuGothic, sans-serif;
    text-align: center;
    margin: 0 0 20px;
}
h2.blog_title a {color: #454daa;text-decoration: none;}
h2.blog_title a:hover {text-decoration: underline;}

/*	rss field
-------------------------------------------*/
.rss_field {
    border: 1px solid #fff;
    /* height: 300px; */
    /* overflow-x: hidden;
    overflow-y: scroll; */
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothicM, YuGothicB, "Yu Gothic", YuGothic, sans-serif;
}

/*	post box
-------------------------------------------*/
.entry_post_box {
    display: block;
    float: left;
    font-size: 13px;
    line-height: 1.7;
    margin: 0 0 10px;
    padding: 0;
    width: calc(100% - 100px);
}

/*	post title
-------------------------------------------*/
h4.post_title {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    text-decoration: none;
    width: 100%;
    text-align: left;
}
h4.post_title a {
    color: #454daa;
    text-decoration: none;
}
h4.post_title a:hover {
    text-decoration: underline;
}

/*  post content
-------------------------------------------*/
.post_content a {
    color: #454daa;
}

/*	post image
-------------------------------------------*/
.post_image {
    height: 80px;
    overflow: hidden;
    width: 100px;
}
.post_image img {
    height: 80px;
    width: 100px;
    object-fit: cover;
}


/*	clear_fix
-------------------------------------------*/
.rss_field .clear_fix {
    border-bottom: 1px dotted #ccc;
    clear: both;
    display: block;
    margin: 0 0 10px;
    padding: 0;
    width: 100%;
}


/*	not image width max
-------------------------------------------*/

.width_max {
    width:100%;
}


@media screen and (max-width:736px), screen and (orientation:landscape) and (max-width:736px), screen and (orientation:portrait) and (max-width:736px) {
  .block_rss_field {padding: 0 15px 20px !important;}
  h2.blog_title {font-size: 18px;padding: 12px 0;margin: 0 0 5px;}
  h2.blog_title::after {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 28px;
    right: 28px;
    bottom: auto;
    background: #454daa;
    height: 2px;
    width: auto;
  }
  .entry_post_box {
    display: block;
    float: left;
    font-size: 13px;
    line-height: 1.7;
    margin: 0 0 10px;
    padding: 10px 10px 0 0;
    width: calc(100% - 40%);
}
}