@charset "UTF-8";

@import url(./common.css);



/*ブレイクポイント分類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;}}
