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

/* =======================================================================

   共通リセット
   
======================================================================= */

html, body, div, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, address,
ul, ol, li, dl, dt, dd,
table, th, td, form, fieldset,figure {
 	margin: 0;
 	padding: 0;
}
table {
 	border-collapse: collapse;
 	border-spacing: 0;
}

ul li, ol li {
 	list-style-type: none;
}
a {
 	text-decoration: none;
	color:inherit;
}
img {
 	border: 0;
}
img, input, select, textarea {
 	vertical-align: middle;
}
/* For vertical-scrollbar issue */
html {
 	/*overflow: scroll;*/
 	/*overflow: -moz-scrollbars-vertical;*/ /* Firefoxの先行実装 */
 	/*overflow-x: scroll;*/ /* Firefoxで横スクロールバーが表示されない問題を回避 */
}
*:first-child+html * {
 	letter-spacing: 0; /* hasLayout問題を回避 	*/
}

/* :::::::::: clearfix :::::::::: */
.clearfix {
 	display: block;
}

.clearfix:after {
 	content: ".";
 	display: block;
 	clear: both;
 	height: 0;
 	visibility: hidden;
}
	
/* :::::::::: 回り込み、解除 :::::::::: */
.left {
 	float:left;
}
.right {
 	float:right;
}
.center {
	text-align:center;
}
.clear {
 	clear:both;
}

/* :::::::::: フォント :::::::::: */
.icon {
 	margin:0;
 	padding:0 5px 0 0;
 	vertical-align:baseline;
}

address {font-style:normal;}

/* :::::::::: テキスト非表示 :::::::::: */
.hidden{
 	font-size:0;
 	text-indent:-999999px;
	height:0;
}

</pre></body></html>