@charset "utf-8";
/* CSS Document */

/*--------------------------------------
 レイアウトのID
---------------------------------------*/
body {
	margin: 0;
	margin: 0;
	position: relative;
	text-align: center;
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-size: 16px;
}

#container {
	margin: 0 auto;
	width: 980px;
	background-color: #fff;
}

#content {
	margin: 0 ;
	width: 980px;
}

.clear {
	clear: both;
}

.right_end,
.left_end{
	margin-right: 0 !important;
	margin-left: 0 !important;
}
	
/*--------------------------------------
 文字
---------------------------------------*/
h1, h2, h3, h4, h5, p {
	padding:0;	
	margin:0;
	color: #000000;
	}

a:link,
a:visited {
	color: #000000;
	text-decoration: none;
	display: inline-block;
}

a:hover {
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
/*
iOS8.4.1でhover時にopacityするとクリックしてもリンク先に遷移しない
    -webkit-opacity: .8;
    -moz-opacity: .8;
    -ms-opacity: .8;
    opacity: .8;
    filter: alpha(opacity=70);        /* ie 6 7 */
    -ms-filter: "alpha(opacity=70)";  /* ie 8 */
*/
}

.svg a:hover {
	color: #000000;
	text-decoration: none;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	opacity: 1; /* svgのリンクがopacityをかけるとiPhoneだけリンクが動かないバグ対応 */
}

ol, ul, li, dl, dt, dd {
	list-style:none;
	margin:0;
	padding:0;
}
	

img {
	border:none;
	padding:0;
	margin:0;
	}

