@charset "UTF-8";
/* CSS Document */

.picasso h1{
	font-size: 21px;
	font-weight: 600;
	text-align: center;
}

.picasso .par-box{
	display: flex;
	flex-wrap: wrap;
}

.picasso .box01 {  
  display: block;
  position: relative;
  margin: 15px auto;
  padding: 0 6px;
  width: calc(100% / 3);
  box-sizing: border-box;
  }
  
.picasso .box01 img{
	width: 100%;
}

.picasso .ribbon {  
  display: inline-block;
  position: absolute;
  top: 0;
  left: 10px;
  margin: 0;
  padding: 4px 0;
  z-index: 2;
  width: 40px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #673925;
}

.picasso .ribbon:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 20px solid #673925;
  border-right: 20px solid #673925;
  border-bottom: 10px solid transparent;
}

.picasso .title{
	margin: 2% 0;
	text-align: center;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.48;
	
}

.picasso .text{
	margin: 0;
	line-height: 1.68;
}

@media screen and (max-width: 767px){

	.picasso{
		width: 100%;
	}

	.picasso h1{
		font-size: 18px;
	}

	
	.picasso .box01{
		width: 100%;
		margin-bottom: 6%;
	}
	
	.picasso .par-box{
		display: block;
	}

	.picasso .h1{
		font-size: 18px;
	}

	.picasso .title{
		font-size: 15px;
		margin: 3% 0;
	}
	
	.picasso .text{
		font-size: 14px;
		line-height: 1.72;
	}

}


