@charset "utf-8";

/* インポート
-----------------------------------------------------*/
@import url(layout.css);
@import url(top.css);
@import url(ttl.css);


/* 初期化
-----------------------------------------------------*/
html,body {
	width:	100%;
	margin:	0;
	padding: 0;
	font-size:	10px;
	color: #444444;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

h1,h2,h3,h4,h5,h6,p,ul,ol,li,dl,dt,dd,table,th,td,div,span,
form,input,select,button {
	margin:	0;
	padding:	0;
	font-size:	10px;
	line-height:	1.5;
}

a {
	outline:	0;
	text-decoration:	none;
	color:	#926646;
}

a:hover {
	text-decoration:	underline;
}

img {
	vertical-align:	bottom;
	border:	none;
}

/* 全ページ共通CSS
-----------------------------------------------------*/

/* Media
----------------------------------------------------------*/
@media screen and (min-width:768px) and (max-width:1920px) {
  .for_PC {
    display: inherit;
  }
  .for_Phone {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .for_PC {
    display: none;
  }
  .for_Phone {
    display: inherit;
  }
}