
/*開発者ブログ*/
main{
      background-color: #fafafa;
}
#blog_main {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

#detail_main {
    width: 100%;
    padding: 10px;
    background-color: #fff;
    padding: 2rem;
}

.posterarea {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 140px;
}

.blogitem {
    width: calc(23% - 10px);
    margin: 10px;
    text-align: left;
    position: relative;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    background-color: #fefefe;
    min-height: 100px;
    min-width: 180px;
    flex: 1 1 auto;
    border: #fefefe 1px solid;
  box-shadow: 0 3px 3px rgb(0, 0, 0, 0.1);
}

.blogitem:hover {
    top: -2px;
}

.blogtitle {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 24px;
    text-align: left;
    font-size: 16px;
}

.bloglinkarea {
    width: 100%;
    height: 100%;
    z-index: 200;
    position: absolute;
    top: 0;
    left: 0;
}

.blogarea {
    padding: 10px;
    width: 100%;
}


.badge {
    z-index: 299;
    cursor: pointer;
    position: relative;
    display: inline-block;
    margin: 4px;
    margin-right: 0;
    margin-left: 16px;
    padding: .3rem .6rem;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    background-color: #000;
    font-size: .7rem;
    white-space: nowrap;
}

.badge:hover {
    opacity: .8;
}


.navigation.pagination {
    width: 100%;
}

.posterimage_wrap {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.detailtitle {
    font-size: 28px;
    text-align: left;
    margin-bottom: 10px;
    line-height: 32px;
}

p.cat_name {
    text-align: right;
    font-size: .8rem;
    color: #333;
    margin: 6px 0;
    line-height: 24px;
}

.date.blog {
    font-size: .8rem;
    width: 100%;
    text-align: left;
    display: inline-block;

}

.blogcontent {
    margin-top: 24px;
    text-align: left;
}

.wp-block-code {
    background-color: #333;
    color: #fbf8f0;
    line-height: 2rem;
    font-family: Menlo, Consolas, 'DejaVu Sans Mono', monospace;
    padding: 1rem;
    text-align: left;
}

.devblogfooter {
    padding: 24px;
    padding-top: 20px;
}

.devblogheader {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.tagcloud>a {
    line-height: 24px;
    font-size: .8rem;
    margin-right: .7rem;
    background-color: #757575;
    color: #fff;
    border-radius: 100px;
    padding: 2px 16px;
}

.tagcloud>a:hover {
    opacity: .8;
}


/*テーブル*/

table,
td,
th {
    border: auto;
    border-collapse: collapse;
}

td,
th {
    padding: auto;
    width: auto;
    height: auto;
}

th {
    background: #f0e6cc;
}

.even {
    background: #fbf8f0;
}

.odd {
    background: #fefcf9;
}
@media screen and (max-width: 740px) {
    #detail_main{padding: 1rem;}
}