@charset "UTF-8";

/*ブレイクポイント分類2020年6月*/
@import url(./bp1.css) screen and (min-width:1280px);/*PCモニター 固定レイアウト*/
@import url(./bp2.css) screen and (min-width:1024px) and (max-width:1279px);/*新世代iPadと小さめPCモニター 固定レイアウト*/
@import url(./bp3.css) screen and (min-width:768px) and (max-width:1023px);/*スマートフォン横から旧世代iPadまで 可変レイアウト*/
@import url(./bp4.css) screen and (min-width:360px) and (max-width:767px);/*Galaxy S5からiPhone 11 Pro Maxまで 可変レイアウト*/
@import url(./bp5.css) screen and (max-width:359px);/*旧世代スマートフォン 可変レイアウト*/

/*ブレイクポイントごとの非表示*/
@media screen and (min-width:1280px) {.dn1 {display:none !important;}}
@media screen and (min-width:1024px) and (max-width:1279px) {.dn2 {display:none !important;}}
@media screen and (min-width:768px) and (max-width:1023px) {.dn3 {display:none !important;}}
@media screen and (min-width:360px) and (max-width:767px) {.dn4 {display:none !important;}}
@media screen and (max-width:359px) {.dn5 {display:none !important;}}


/*あとで消す*/

img {
	display:block;
}
.ichan {

	display:block;
	margin:50px auto;
	width:500px;
	height:300px;
	box-shadow:1px 1px 3px rgba(0,0,0,0.5);
	border-radius:10px;

}