@charset "utf-8";
/* CSS Document */
button.jisseki-link{
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-weight: bold;
  font-size: 18px;
  margin: 12px 0;
}
button.jisseki-link:hover{
  background-color: #888;
  color: #FFF;
}
button.bg-green{
  background-color: #49c66f;
  color: #FFF;
  border-radius: 6px;
  border: 1px solid #49c66f;
  margin-bottom: 1em;
}
button.bg-green:hover, button.bg-green:active{
  color: #49c66f;
  background-color: #FFF;
}
.btn h4{
  position: relative;
  padding-left: 30px;
}
.btn h4::before{
  content: "▼";
  position: absolute;
  left: 0;
}
.gjb{
display: none;
}

/* リスト */
ol.jisseki-ollist {
	counter-reset: li;
    padding-inline-start: 0px;
}

ol.jisseki-ollist > li {
	list-style: none;
	position: relative;
	padding-left: 2.5em;
	margin-bottom: 15px;
	line-height: 200%;
}

ol.jisseki-ollist > li:before {
	counter-increment: li;
	content: counter(li);
	margin-right: 1em;
	background: #9de7b4;
	border-radius: 50%;
	text-align: center;
	width: 2em;
	height: 2em;
	position: absolute;
	left: 0em;
	top: 2px;
	line-height: 200%;
}

ol.jisseki-ollist p{
	margin: 0 !important;
}