* {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
		 -o-box-sizing: border-box;
		-ms-box-sizing: border-box;
			box-sizing: border-box;
}
body{
	color:#333;
	font-size:17px;
	background:#eee;
	font-family:"メイリオ", Meiryo, Osaka, 'Roboto', sans-serif;
	-webkit-text-size-adjust: 100%;
}
#container{
	margin:0 auto;
	padding:20px;
	background:#fff;
	max-width:1000px;
	box-shadow: 0 0 10px #ccc;
}
h1,h2,h3{
	border-radius:5px;
	text-align:center;
	line-height:1.4;
	font-weight:normal;
}
h1{
	font-size:20px;
	padding:20px;
	border:2px solid #333;
	text-align:center;
	font-weight:bold;
	margin-bottom:20px;
}
h2{
	clear:both;
	color:#fff;
	padding:15px;
	background:#333;
	font-size:17.5px;
	margin:20px 0 30px;
}
h3{
	clear:both;
	color:#fff;
	padding:10px;
	background:#999;
	font-size:15px;
	margin:20px 0;
}
h4{
	font-weight:bold;
	margin:0 0 15px 0;
}
p{
	line-height:1.6;
	margin-bottom:1em;
}
li{ list-style:none; }
small{font-size:.7em; opacity:.5;}

/*ユニコード形式での出力*/
.directCode {overflow:hidden;}
.directCode li{
	float:left;
	width:25%;
	text-align:center;
	margin-bottom:3px;
}
.directCode li input{
	width:60px;
}
.directCode li i{
	width:30px;
	display:inline-block;
	text-align:center;
}
@media only screen and (min-width: 769px) {
	.directCode li{
		width:15%;
	}
}

/*擬似要素での出力*/
.fontList {overflow:hidden;}
.fontList li{
	padding:3px;
	border:1px solid #ddd;
	margin-bottom:3px;
}
.fontList li i{
	width:30px;
	display:inline-block;
	text-align:center;
}
@media only screen and (min-width: 769px) {
	.fontList li{
		width:30%;
		display:inline-block;
	}
}

/*行頭揃えのサンプル*/
.listmenu{margin:15px;}
.listmenu li{
	font-size:15px;
	line-height:1.4;
	margin-bottom:5px;
}

/*contentプロパティでの出力サンプル*/
.list-with-arrow {
	margin:0 20px;
	border:1px solid #ddd;
	border-radius:3px;
	margin-bottom:20px;
}
.list-with-arrow li{
	border-bottom:1px solid #ddd;
}
.list-with-arrow li:last-child{border-bottom:none;}
.list-with-arrow li a{
	display:block;
	padding:10px;
	text-decoration:none;
	color:#999;
}
.list-with-arrow li a:hover{
	background:#f0f0f0;
}
.list-with-arrow li a:before{
	display:block;
	float:right;
	font-family: 'FontAwesome';
	content: "\f105"; /*このアイコン用のコードをfont.cssの中から探す*/
	color:#ccc;
}