@charset "utf-8";

.bold {
	font-weight: bold;
}
.underbar {
	text-decoration:underline;
}
.redcolor {
	color: red;
}
.bluecolor {
	color: blue;
}

} /*-----769px以上-----*/
.personal_computer {
	display: block;
}
.smart_phone {
	display: none;
}
/*-----768px以下-----*/
@media screen and (max-width:768px) {
	.personal_computer {
		display: none;
	}
	.smart_phone {
		display: block;
	}
} /*-----768px以下-----*/
