@charset "UTF-8";

body{
	color: #5e5957;
	font-size:14px;
	}
main{
//	background-color:grey;
	margin: 0 auto;
	width: 810px;
	}
a:link	{
	text-decoration:none;
	color:#5e5957;
	}
a:visited{
	text-decoration:none;
	color:#f08080;
	}
a:active{
	text-decoration:none;
	color:#5e5957;
	}
a:hover	{
	text-decoration:underline overline;
	background-color:#fed0e0;
	color:#5e5957;
	}


/*テキストの位置*/
.t_left{
	text-align: left;
	}
.t_right{
	text-align: right;
	}
.t_center{
	text-align: center;
	}

/*各ページタイトル*/
.title_call {/*親div*/
  position: relative;/*相対配置*/
  }

.title_call p {
  position: absolute;/*絶対配置*/
  color: #ffffff;/*文字は白に*/
  top: 0;
  left: 10px;
  font-size: 35px;
  }

.title_call img {
  width: 800px;
  height:45px;
  }


/*文章が画像の右側に回り込むようになる*/
figure {
	float: left;
	margin: 0 15px 15px 0;
	width: 30%;
}
.float_none {
	clear: both;
}

/*取り消し線*/
.l_torikeshi {
	text-decoration: line-through;
}