@charset "utf-8";



/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*画面幅599px以下(スマホ)の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*全体の設定
---------------------------------------------------------------------------*/



/*画面幅600px以上1024pxまで(タブレット)の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*
@media screen and (min-width:600px){

}
*/



/*画面幅1025px以上(PC)の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:600px){

/*全体の設定
---------------------------------------------------------------------------*/
.ourworks {
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
}
.ourworks li {
	width: calc(100%/2);/*←画像を横に2つ並べる場合*/
}
.ourworks img{
	transition: 1.0s;
}
.ourworks img:hover{
	/* transformは変形プロパティ。値にscaleを指定すると拡大縮小することができる。 */
	transform: scale(1.03);
}


}
/*PC*/