@charset "utf-8";

/* default.css  */
/* ------------------------------------------------------------ Initialization of the browser style */
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
address,
code,
em,
span.strong,
img,
q,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
hr {
	font-style: normal;
	font-weight: normal;
	line-height: 100%;
	margin: 0;
	padding: 0;
	word-break: break-all;
}

/* ------------------------------------------------------------ body reset */
body {
	background-color: #fff;
	color: #3a3a3a;
	font-family: "ヒラギノ角ゴ Pro w3", "Hiragino Kaku Gothic Pro", "Meiryo", "メイリオ", "Osaka", "ＭＳ Ｐゴシック", "MS P Gothic", "Arial", sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

table {
	font-size: 100%;
}

strong {
	font-weight: normal;
}

/* ------------------------------------------------------------ Table Elements */
table,
th,
td {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ------------------------------------------------------------ Form Elements */
input,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}

button {
	border: 0;
}

button:hover {
	cursor: pointer;
}

label {
	cursor: pointer;
}

/* ------------------------------------------------------------ etc */
a,
fieldset,
img {
	border: 0;
}

ol li,
ul li {
	list-style-type: none;
}

/* ------------------------------------------------------------ img */
*:first-child+html img {
	vertical-align: bottom;
}

* html img {
	vertical-align: bottom;
}

img {
	border: none;
	font-size: 0;
	line-height: 0;
	margin-bottom: 0;
	vertical-align: middle;
}

/* ------------------------------------------------------------ input */
input {
	display: inline;
	vertical-align: middle;
}

*:first-child+html input {
	vertical-align: middle;
}

* html input {
	vertical-align: middle;
}

/* ------------------------------------------------------------ select */
select {
	vertical-align: middle;
}

*:first-child+html select {
	vertical-align: middle;
}

* html select {
	vertical-align: middle;
}

/* ------------------------------------------------------------ clear Fix */

.cfx:after {
	clear: both;
	content: "";
	display: block;
	height: 0;
	visibility: hidden;
}

.cfx {
	min-height: 1px;
}

* html .cfx {
	height: 1px;
}

/* ------------------------------------------------------------ iphone */
@media screen and (max-device-width: 480px) {
	body {
		-webkit-text-size-adjust: none;
		/* iPhone */
	}
}