@charset "UTF-8";

/*ページタイトル*/
.blog-list .title{
    margin-bottom: 30px !important;
}
.blog-list .subtitle{
    text-align: center;
}
@media screen and (max-width: 960px) {
    .blog-list .subtitle{
        text-align: center;
        padding-top: 20px !important;
        font-size: 18px !important;
    }
    .blog-list .title {
        margin-bottom: 0 !important;
    }
}

/*投稿記事コラム*/
.blog-list .blog-col{
	width: 100%;
	display: flex;
	display: -ms-flexbox;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
}
.blog-list .blog-col > div{
	width: 33.33333%;
    padding: 10px;
    margin-bottom: 20px;
    min-height: 400px;
}
.blog-list .blog-col > div > div {
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 960px) {
	.blog-list .blog-col > div{
		width: 50%;
    }
}
@media screen and (max-width: 480px) {
	.blog-list .blog-col > div{
		width: 100%;
    }
}

/*投稿記事：ショップ名*/
.blog-list .shop-name{
    display: inline-block;
    font-size: 10px;
    padding: .4em 1.6em .3em .8em;
    position: relative;
    color: #fff;
    z-index: 1;
}
.blog-list .shop-name::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #da0011;
    transform: scaleY(1.3) perspective(.9em) rotateX(5deg);
    transform-origin: bottom left;
}

/*投稿記事：画像*/
.blog-list img{
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/*投稿記事：記事内容*/
.blog-list .blog-txt{
    border: 1px solid #eee;
    padding: 10px;
}
.blog-list .blog-txt p.blog-ttl{
    font-size: 16px;
    font-weight: bold;
    color: #0d0d0f;
    padding-bottom: 5px;
    height: 84px;
}
.blog-list .blog-txt p.blog-content{
    height: 120px;
}
@media screen and (max-width: 960px) {
    .blog-list .blog-txt p.blog-ttl{
        height: auto;
    }
    .blog-list .blog-txt p.blog-content{
        height: auto;
    }
}
.blog-list .blog-txt .next{
    display: block;
    color: #fff;
    font-weight: bold;
    background: #0d0d0f;
    padding: 4px 6px;
    vertical-align: 2px;
    text-align: center;
    margin-top: 10px;
}

/*サイドバー*/
.blog-sidebar{
    position: relative;
    width: 24.38%;
    padding-left: 3%;
}

@media screen and (max-width: 960px) {
    .blog-sidebar{
        width: 100%;
        background-color: #f4f5f7;
        padding-left: 0;
    }
}
.blog-menu{
    background-color: #f4f5f7;
    margin-bottom: 30px;
    padding: 30px 20px 20px;
}
.blog-menu .searchbox {
    vertical-align: top;
    border-bottom: none;
}
.blog-menu .title {
    padding-bottom: 15px;
    font-size: 15px;
}
.blog-menu .title em {
    font-size: 17px;
    color: #0d0d0f;
}
@media screen and (max-width: 960px) {
    .blog-menu{
        margin-bottom: 0;
        padding: 30px 20px 20px;
        border-bottom:1px solid #e4e6ec;
    }
    .blog-menu .title {
        padding-bottom: 0;
        padding-left: 1em;
        border-left: 2px solid #dd4044;
        margin-bottom: 5px;
    }
}
.blog-menu ul{
    margin-top: 5px;
}
.blog-menu li a{
    display: block;
	background: url(../images/arrow_before.png) no-repeat 0 center;
	padding: 10px 15px;
	vertical-align: 2px;
}

.blog-menu .link-area,
.blog-menu .tag-area{
    margin-top: 10px;
}
.blog-menu .link-area a{
    margin: 5px;
    display: inline-block;
    background: url(../images/arrow_before.png) no-repeat 0 center;
    padding: 5px 15px;
}
.blog-menu .tag-area a{
    margin: 5px;
    display: inline-block;
    background-color: #dddee4;
    border-radius: 15px;
    padding: 5px 10px;
}
