@charset "UTF-8";
/* CSS Document */

/*============================================================================================
↓サムネール一覧 =============================================================================
============================================================================================*/
/*基本設定------------------------*/
.works-thumb {
    overflow: hidden;
    margin-right: -2%;
}

.works-thumb li {
    width: 31.3%;
    margin: 0 2% 2em 0;
    float: left;
    text-align: center;
}

.works-thumb li .img-box {
    width: 100%;
    /*height:138px;*/
    overflow: hidden;
    position: relative;
}

.works-thumb li .img-box img {
    width: 100%;
    height: 100%;
}

.works-thumb .post-meta {
    margin: 0.5em auto;
    line-height: 1.8em;
    overflow: hidden;
}

.works-thumb .post-ttl {
    font-size: 1.2em;
}

.works-thumb li a:link,
.works-thumb li a:visited {
    text-decoration: none;
}

.works-thumb li a:hover {
    text-decoration: underline;
}

/*サムネール マウスオーバーエフェクトの指定------------------------*/
.img-box img {
    transition: 0.5s;
}

.img-box:hover img {
    -moz-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    opacity: 0.7;
}

@media screen and (max-width: 480px) {
    .works-thumb li {
        width: 48%;
    }
	
	
	
	
}

/*============================================================================================
↓記事ページ==================================================================================
============================================================================================*/
#works-single .post-img {
    width: 100%;
    margin-bottom: 2em;
}

#works-single .post-img img {
    max-width: 740px;
    height: auto;
    margin: 0 auto;
}

@media screen and (max-width: 480px) {
	.post-img {
    max-width: 340px;
    margin-bottom: 2em;
}
    #works-single .post-img img {
        width: 100%;
        height: auto;
    }
}

#works-single .post-meta {
    margin: 0.5em auto;
    line-height: 1.8em;
}

#works-single .post-date {
    font-size: 1.2em;
    text-align: right;
}

#works-single .post-ttl {
    font-size: 1.2em;
    border-top: dotted 1px #ccc;
    border-bottom: dotted 1px #ccc;
    padding: 1em 0;
    margin: 0.5em auto 2em;
    text-align: center;
}

#works-single .post-body {
    font-size: 1.2em;
    line-height: 1.8em;
    overflow: hidden;
}

/*============================================================================================
↓ページネーション============================================================================
============================================================================================*/
#pagenavi {
    border-top: solid 1px #666;
    border-bottom: solid 1px #666;
    margin: 2em auto;
    text-align: center;
    overflow: hidden;
}

#pagenavi-single {
    border-top: solid 1px #666;
    border-bottom: solid 1px #666;
    padding: 1em 0;
    margin: 2em auto;
    text-align: center;
    overflow: hidden;
}

/*============================================================================================
↓Like buttun=================================================================================
============================================================================================*/
.fb-share-button {
    float: right;
}


