﻿@charset "UTF-8";

/* ------------------------------------------- CSS Information
 File Name:      default.css
 Style Info:     ブラウザスタイルのリセットと基本設定
----------------------------------------------------------- */

/* ----------------------- Firefoxのスクロールバーの有無でセンタリング位置がずれるのを解消 */
html {
	overflow-y: scroll;
	scrollbar-base-color:#aa8055;
	scrollbar-arrow-color:#aa8055;
}
* {
  padding: 0;
  margin: 0;
}


/* ------------------------ 使うであろうhtmlタグのmargin,paddingを０に指定*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td	{
	margin: 0;	padding: 0;
}
address, caption, cite, code, dfn, em, strong, th, var	{
	font-style: normal;
}
q:before ,q:after	{
	content: '';
}
object, embed	{
	vertical-align: top;
}
hr, legend	{
	display: none;
}
/* ------------------------- hタグのフォントを統一*/
h1 {
  font-size: 14px;
}

h2 {
  font-size: 16px;
}

h3 {
  font-size: 15px;
}


h4, h5, h6	{
	font-size: 100%;
}
/* ----------------------- ボーダーの指定を消す */
img, abbr, acronym, fieldset	{
	border: 0;
}
/* ------------------------ li要素の数字や横につく●みたいなのを消す*/
li	{
	list-style-type: none;
}

/* ----------------------- Basic Style */
/* ------------ Font Style */
body {
	font-family: "メイリオ","Meiryo","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",Arial,verdana,Sans-Serif;
    overflow: hidden;
}
/* ------------------------ どのブラウザーでも12px相当に統一。*/
html body {
	font-size: 12px;
}


