/*フォントサイズ・行間 */ 
p {
    font-size: 17px;
    color: #383838;
    line-height: 1.8;
	  margin-bottom: 1.6em;
}


/*ボタンブルー */ 
.button-blue {
  display: inline-block;
  padding: 1em 2em;
  line-height: 1;
	color: rgb(255,255, 255) !important; 
	background-color: #FC4D00;
  text-decoration: none;
  border-radius: 4px;
  box-shadow:0 4px 0 #862116;
  transition: 0.2s;
  margin: 2px 0 -2px 0;
}
a.button-blue:hover{
  box-shadow:0 6px 0 #C83B0C; /* 影の大きさを伸ばす */
  margin: 0 0 0 0; /* 位置調整 */
}
a.button-blue:active{ /* ボタンを押したときの設定 */
  background-color: #F86331;
  box-shadow:0 3px 0 #B72311;
  margin: 3px 0 -3px 0;
}


/*セリフ風ブルー */ 

.balloon1-left {
 	position: relative;
	display: inline-block;
 	margin: 1.5em 0 1.5em 15px;
	padding: 7px 10px;
	min-width: 120px;
 	max-width: 100%;
 	color: #555;
	font-size: 16px;
	background: #e0edff;
}

.balloon1-left:before{
	content: "";
	position: absolute;
	top: 50%;
	left: -30px;
 	margin-top: -15px;
	border: 15px solid transparent;
	border-right: 15px solid #e0edff;
}

.balloon1-left p {
	margin: 0;
	padding: 0;
}




/*セリフ風ブルー旧 */ 

.thumb {
 	position: relative;
	display: inline-block;
 	margin: 1.5em 0 1.5em 15px;
	padding: 7px 10px;
	min-width: 120px;
 	max-width: 100%;
 	color: #555;
	font-size: 16px;
	background: #e0edff;
}




.text {
 	position: relative;
	display: inline-block;
 	margin: 1.5em 0 1.5em 15px;
	padding: 7px 10px;
	min-width: 120px;
 	max-width: 100%;
 	color: #555;
	font-size: 16px;
	background: #e0edff;
}

.text:before{
	content: "";
	position: absolute;
	top: 50%;
	left: -30px;
 	margin-top: -15px;
	border: 15px solid transparent;
	border-right: 15px solid #e0edff;
}

.text p {
	margin: 0;
	padding: 0;
}







/*リスト */ 


ol.sample1{
  counter-reset:list;
  list-style-type:none;
  font: 16px/1.6 'arial narrow', sans-serif;
  padding:0;
}
ol.sample1 li{
  position:relative;
  padding: 0 0 0 20px;
  margin: 7px 0 7px 0px;
  font-weight: bold;
  font-size:16px;
  line-height: 30px;
  border-bottom: dashed 1px #F6A38B;
}
ol.sample1 li:before{
  counter-increment: list;
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: #F6A38B;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
ol.sample1 li:after{
  content: "";
  display: block;
  position: absolute;
  left: 6px;
  height: 0;
  width: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid #fff;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
