@charset "utf-8";

/******************** concept ********************/
.comment {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, "serif";;
	color: #a69056;
	margin-bottom: 10px;
}
#concept {
	padding: 0 10px;
}
#concept ul {
	margin: 0 0 20px;
}
#concept li {
	text-align: left;
	margin-bottom: 15px;
}
#concept li.pic {
	text-align: center;
}
#concept li img {
	border-radius: 50%;
	width: 220px;
	height: 220px;
	margin: 10px 0 0;
	object-fit: cover;
	object-position: top;
}
#concept h3 {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, "serif";;
	letter-spacing: 0.08em;
	text-align: center;
	color: #05c0a4;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 10px;
}

/* よく使いそうなCSS3
----------------------------------------------------*/
#selectors {
/* 角丸 */
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;

/* 角丸個別 */
	-webkit-border-top-right-radius: 15px;
	-moz-border-radius-topright: 15px;
	border-top-right-radius: 15px;

/* ボックスに影 */
	-webkit-box-shadow: 1px 1px 3px #999;
	-moz-box-shadow: 1px 1px 3px #999;
	box-shadow: 1px 1px 3px #999;

/* テキストに影 */
	text-shadow: 1px 1px 0px #999;

/* グラデーション */
    background: -moz-linear-gradient(top, #f5f5f5, #fff);　/* Firefox用 */  
  
