@charset "utf-8";

/* 要素のデフォルト値の設定 */
/* ---------------------------------------------------------- */

/* 全ての要素のデフォルトをリセット */
*{
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	list-style: none;
}



/* 要素ごとのデフォルト値を設定 */

body {
	font: 12px/1.6em sans-serif;
	background: #FFF;
	font-family: sans-serif;
	font-size:14px;
	color:#333;
	min-width: 320px;
	-webkit-text-size-adjust: none;
	border-top:#B76D00 3px solid;
}


pre, code, tt {
	font: 1em/1.5em monospace;
}

h1, h2, h3, h4, h5, h6, strong {
	/*font-weight: bold;*//*boldはiPhoneのみなので*/
	font-weight:normal;
}

em, i {
	font-style: italic;
}

table {
	width: 100%;
border-collapse: collapse;*/
}

input[type="text"],
input[type="submit"],
select,
textarea {
	background: transparent;
}

input[type="text"],
textarea {
	background: #FFF;
}

input[type="submit"]:hover {
	cursor: pointer;
}

a:link,
a:visited {
	text-decoration: none;
	color:#374876;
}

a:hover,
a:active {
	text-decoration: none;
	color:#374876;
}

img {
     width: 100%;
     height: auto;
	 margin:0px;
	 padding:0px;
	 vertical-align: bottom;
     }


/* clearfix */
.clearfix:after {
  content: ".";  /* 新しい要素を作る */
  display: block;  /* ブロックレベル要素に */
  clear: both;
  height: 0;
  visibility: hidden;
}