@charset "UTF-8";
.text-content{
    padding: 20px;
}
.text-styleB{
    color: #666666;
    font-size: 13px;
    font-weight: bold;
    line-height: 180%;
    margin-bottom: 0;
}
.text-styleR{
    color: #942c2c;
}
.img-group{
    position: relative;
    width: 100%;
    height: calc( 205 / 320 * 100vw);
    border-top: 2px solid #7d0000;
    border-bottom: 2px solid #7d0000;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 20px;
}
.img-title{
    position: absolute;
    display: block;
    color: #c5c5c5;
    background: #7d0000;
    font-size: 13px;
    /*font-weight: bold;*/
    line-height: 25px;
    height: 25px;
    bottom: 0;
    z-index: 2;
    padding: 0 10px;
}
.img-title:after {
    position: absolute;
    content: " ";
	width: 40px;
    height: 25px;
    top: 0;
	background: #7d0000;
    border-right: 25px solid transparent;
    z-index: -1;
}
.img-group:nth-child(2n+1) .img-title{
    left: 0;
}
.img-group:nth-child(2n+1) .img-title:after {   
    right: -15px; 
    transform: skew(47deg);
    -webkit-transform: skew(47deg);
    -moz-transform: skew(47deg);
    -o-transform: skew(47deg);
    -ms-transform: skew(47deg);
    -moz-box-shadow: 4px 0px 0px rgba(255,255,255,0.4);
    -webkit-box-shadow: 4px 0px 0px rgba(255,255,255,0.4);
    box-shadow: 4px 0px 0px rgba(255,255,255,0.4); 
}
.img-group:nth-child(2n) .img-title{
    right: 0;
    text-align: right;
}
.img-group:nth-child(2n) .img-title:after{
    left: -15px; 
    transform: skew(-47deg);
    -webkit-transform: skew(-47deg);
    -moz-transform: skew(-47deg);
    -o-transform: skew(-47deg);
    -ms-transform: skew(-47deg);
    -moz-box-shadow: -4px 0px 0px rgba(255,255,255,0.4);
    -webkit-box-shadow: -4px 0px 0px rgba(255,255,255,0.4);
    box-shadow: -4px 0px 0px rgba(255,255,255,0.4); 
}


@media screen and (min-width: 480px) {
    .img-group{
        height: 305px;
    }
}