<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

/*--------------------------------------
 レイアウトのID
---------------------------------------*/

/**{border:solid 1px red;}*/

html,body {
	margin: 0;
	padding: 0;	
	position: relative;
	text-align: center;
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-size: 16px;
	display: block;
	
	}

#wrapper {
	width:100%;
	position: absolute;/*トップの余白クリア*/
    top:0px;	
	}

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

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

.clear {
	clear: both;
}


.clearfix {zoom:1;}
.clearfix:after {
	content: ""; 
	display: block; 
	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 {
	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;
	}

/*--------------------------------------
 フォーム
---------------------------------------*/
form {
	margin: 0px;
	text-align: left;
}

input {
	vertical-align: middle;
}


/*--------------------------------------
 TOPへ戻る
---------------------------------------*/

.pagetop {
    display: none;
    position: fixed;
    bottom: 120px;
    right: 20px;
}
.pagetop a {
      width: 60px;
	height: 38px;
	background: #FFF;
	border: 1px solid #990000;
	border-radius: 70px;
	-moz-border-radius: 70px;
	-webkit-border-radius: 70px;
	color: #990000;
	padding: 32px 20px 30px;
	display: block;
	text-align:center;	
	font-weight: bold;
	font-size: 80%;
	transition: background-color 0.5s ease-in;
	-webkit-transition: background-color 0.5s ease-in;
}
 
.pagetop a:hover {
     background: #990000;
	color: #FFF;
	border: 1px solid #FFF;
}</pre></body></html>