.content {
  width: 333px;
  height: 250px;
}
/* スライドレールの枠 */
.wrap {
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 250px;
  margin-bottom: 10px;
}
/* content4つをまとめたスライドブロック */
.slideshow {
  display: flex;
  -webkit-animation: loop-slide 20s infinite linear 1s both;
  animation: loop-slide 20s infinite linear 1s both;
}
@-webkit-keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}


p {
	font-size: 13px;
	line-height: 140%;
	letter-spacing: 1px;
	padding-left: 5px;
	padding-right: 0px;
	margin-top: 0px;

}

ol {
	color: #000000;
	font-size: 13px;
	padding: 0px 0px 0px 30px;
	margin: 0px 0px 0px 0px;

}

h1 {
	color: #ffffff;
	font-size: 18px;
}
h2 {
	color: #000000;
	font-size: 15px;
	text-align: center;

	background: #ffcc66;
	padding-top: 2px;
	padding-bottom: 2px;
	margin-left: -15px;
	margin-right: -15px;

}
h3 {
	color: #006633;
	font-size: 15px;
	margin-top: 10px;

	border-bottom: dotted #006633 2px;

}
h4 {
	color: #ffffff;
	font-size: 12px;
	margin-top: 0px;
	margin-bottom: 0px;
}
