@charset "utf-8";
/* CSS Document */

/* タイトル（水色・丸ポチ）*/
#contents h3 {
	display: block;
	color: #505050;
	line-height: 1.3;
	background: #dbebf8;
	vertical-align: middle;
	border: none;
	border-radius: 25px 0px 0px 25px;
	padding: 0.5em;
	margin: 2.5em 0 1.5em;
}
#contents h3:before {
	content: '●';
	color: #fff;
	margin-right: 8px;
}

#contents ul {
	padding: 0;
	margin-left: 40px;
}
#contents ul li {
  position: relative;
  margin-bottom: 10px;
}
#contents ul li::after {
  display: block;
  content: '';
  position: absolute;
  top: .5em;
  left: -1em;
  width: 8px;
  height: 3px;
  border-left: 2px solid #3498db;
  border-bottom: 2px solid #3498db;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
