@charset 'utf-8';

/* -----------------------------------------------------------
CSS Information

File name:      mod_default.css
Update:         2021/07/27
Author:         H.I
Style Info:     デフォルトのスタイルのリセット及び基本設定
----------------------------------------------------------- */



/* Reset
------------------------------------------- */
* {  
	 margin: 0;  
	 padding: 0;  
	 /*zoom: 1;*/
 }

html {
	overflow-y: scroll;
}


/* Basic font style
------------------------------------------- */
body {
	color: #4D5156;
	font-family:'Meiryo', 'メイリオ', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3',  'Osaka', 'MS PGothic', arial, helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.5;
	margin: 0;
	padding: 0;
	font-weight: normal;
}


/* Headings style
------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6{
	margin: 0;
	font-size: 12px;
}


/* Paragraph style
------------------------------------------- */
p {
	margin: 0;
}

p.attention{
}

p.supplement{
}


/* List style
------------------------------------------- */
ol,
ul,
li {
	list-style: none;
	margin: 0;
	padding: 0;
}

dl,
dt,
dd {
	margin: 0;
	padding: 0;
}



/* Image style
------------------------------------------- */
img {
	border: 0;
}

a img {
	vertical-align: bottom;
}


/* Link style
------------------------------------------- */
a:link {
	color: #4D5156;
	text-decoration: none;
}

a:visited {
	color: #4D5156;
	text-decoration: none;
}

a:hover, a:active, a:focus {
	color: #4D5156;
	text-decoration: underline;
}


/* Form style
------------------------------------------- */
form {
	margin: 0;
	padding: 0;
}

label {
	cursor: pointer;
}




/* IE6で背景画像にマウスが乗るとリクエストが発生する問題解決
-------------------------------------------------------------------------------------- */
html {
  filter: expression(document.execCommand("BackgroundImageCache", false, true));
}
