@charset "Shift_JIS";

@media screen and (min-width: 800px) {
   /* 表示領域が800px以上の場合に適用するスタイル */
   div.column{
	width: 240px; float: left;
}
}
@media screen and (max-width: 799px) {
   /* 表示領域が800px未満の場合に適用するスタイル */
   div.column{
	width: 100%;
}
}