@charset "UTF-8";

#content ul, ol {
  padding: 0;
  position: relative;
}

#content ul li, ol li {
  color: black;
  border-left: solid 8px #cc0000;/*左側の線*/
  background: whitesmoke;/*背景色*/
  margin-bottom: 5px;/*下のバーとの余白*/
  line-height: 1.5;
  border-radius: 0 15px 15px 0;/*右側の角だけ丸く*/
  padding: 0.5em;
  list-style-type: none!important;
	width:70%;
}

@media screen and (max-width: 767px){
	#content ul li, ol li{
		width: 90%;
		margin: 0 auto 5px auto;
	}
}