@charset "utf-8";


#privacy{

}

#privacy .content{
	text-align:left;
	line-height:1.8;
}
#privacy .content h4{
	font-size:24px;
}

#privacy .content dl{
	margin-top:30px;
}
#privacy dt{
	font-weight:bold;
	font-size:20px;
	margin-bottom:10px;
}

#privacy .content dd {
	font-size:16px;
	margin-bottom:40px;
}
#privacy .content ol {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
  margin: 0;
}
#privacy .content li {
  font-size: 16px;
 	margin-bottom:10px;
  padding-left: 30px;
  position: relative;
	
}
#privacy .content li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #fff;
  border: 1px solid;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height:20px;
  width: 20px;
  color: #333;
  font-size: 85%;
  line-height: 1;
  position: absolute;
  top:5px;
  left: 0;
}

