@charset "utf-8";
/* 
サイト固有の記述
*/

/* 全体（色系）*/
body {
    
}

/* モニター以上*/
@media screen and (min-width: 1560px){
    body {
        
    }
}

/* パソコン以上*/
@media screen and (min-width: 1281px) {
    body {
        
    }
}

/* タブレット*/
@media screen and (max-width: 1024px) {
    body {
        
    }
}

/* 携帯*/
@media screen and (max-width: 767px) {
    body {
		&.single-cheating_area_post {
			.sec03 {
				.teleco_ul .li {
					display: block;
				}
				
				.teleco_ul .li .imgbox {
					width: 100%;
				}
				
				.teleco_ul .li:nth-child(odd) .txtbox {
					margin-left: 0;
					margin-top: 20px;
				}
				
				.teleco_ul .li:nth-child(even) .txtbox {
					margin-right: 0;
					margin-top: 20px;
				}
			}
		}
        
    }
}