@charset "utf-8";

.flexbox{display: flex;
 flex-direction: row;
justify-content: flex-end;
align-items: flex-end;
}
.flexbox2{display: flex;
 flex-direction: row;
justify-content: center;
align-items: center;
}
.flexbox3{display: flex;
 flex-direction: row;
justify-content: flex-start;
align-items: flex-start;
}

.item{margin: 10px; padding:10px; }
.item70{width:70%;}
.item80{width:75%;}
.item60{width:60%;}
.item40{width:40%;}
.item30{width:25%;}
.item20{width: 20%;}
.item img{width:100%;}

#new dl {
display: flex;
flex-flow: row wrap;
}

.item50{width:50%;}

/*
---------------------------------------------------------------------------*/
/*画像ブロック*/
@media screen and (max-width:600px){
	.flexbox{display: flex;
	 flex-direction: column-reverse;
 justify-content: center;
align-items: center;}

.flexbox3{flex-direction: column;
justify-content: center;
align-items: center;}

   .item70{width:100%;}
   .item80{width:90%;}
   .item40{width:90%;}
   .item60{width:90%;}
   .item20{width: 70%; text-align: center;}

   .item30{width:80%; text-align: center;}

#new dl{flex-flow: column;}
#new dd{flex-basis: 95%;}

}
