@charset "UTF-8";
/*==========================================================================================
	CSS initialize
	URL: 
	Date: 2013-06-04(+09:00)
	Maintained: Toshiya Shimizu
==========================================================================================*/
/* Table of contents: */
/* ------------------
 *
 * 00:初期化
 * 00:accessibility tweaks
 *
 */
/* プロパティの指定順序 */
/*
 * display
 * list-style
 * position
 * float
 * clear
 * width
 * height
 * margin
 * padding
 * border
 * background
 * color
 * font
 * text-decoration
 * text-align
 * vertical-align
 * white-space
 * other text
 * content
 *
 */
/*==========================================================================================

	//初期化

==========================================================================================*/
html {
  font-size: 62.5%;
}

body {
  font-family: "メイリオ","Meiryo","Hiragino Kaku Gothic Pro W3","ヒラギノ角ゴ Pro W3","Osaka","ＭＳ Ｐゴシック",sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.6;
}

pre, code, kbd, samp, tt {
  font-family: monospace;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
}

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

	// マージン・パディングをリセット

==========================================================================================*/
body, div, h1, h2, h3, h4, h5, h6, form, ul, li, ol, dl, dt, dd, fieldset, pre, code, legend, blockquote {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

/*
h1 {
	font-size: 189%;
}

h2 {
	font-size: 161.6%;
}

h3 {
	font-size: 146.5%;

}

h4 {
	font-size: 123.1%;
}

h5 {
	font-size: 108%;
}

h6 {
	font-size: 108%;
}
*/
/*==========================================================================================

	// リスト

==========================================================================================*/
li {
  list-style: none;
}

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

	// イメージ

==========================================================================================*/
img {
  border: none;
}

a img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
  zoom: 1;
}

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

	// フォーム

==========================================================================================*/
input, textarea, select {
  font-size: 100%;
  font-size: 16px;
}

legend {
  display: none;
}

fieldset {
  border: none;
}

button {
  width: auto;
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  font-size: 0;
  line-height: 0;
  overflow: visible;
  cursor: pointer;
}

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

	// テーブル

==========================================================================================*/
table {
  empty-cells: show;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
  font: 100%;
}

@media (max-width: 977px) {
  table {
    width: 100%;
  }
}

caption {
  text-align: left;
}

th {
  font-weight: normal;
  text-align: left;
}

td {
  text-align: left;
}

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

	// 

==========================================================================================*/
q:before, q:after {
  content: '';
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

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

	// accessibility tweaks

==========================================================================================*/
/* スキップボタン
==========================================================================================*/
.skipNav {
  position: absolute;
  left: -999px;
  width: 999px;
}

/* 区切り線
==========================================================================================*/
hr.divider {
  display: none;
}
/*# sourceMappingURL=init.css.map */