@charset "utf-8";


/* 基本的な要素のmarginとpaddingを0にする */
body,
/* ボックス */
div,
/* 見出し要素 */
h1,
h2,
h3,
h4,
h5,
h6,
/* リスト */
dl,
dt,
dd,
ul,
ol,
li,
/* テキストエリア等 */
p,
blockquote,
pre,
cite,
code,
caption,
hr,
/* 入力フォームやラベル等 */
form,
fieldset,
legend,
input,
textarea,
select,
option,
label
	{
	margin: 0;
	padding: 0;
}

img {
	/* 画像のボーダー、余白を消す */
	border: 0px;
	margin: 0;
	padding: 0;
	/* インライン要素の画像の下の隙間を消す */
	vertical-align: bottom;
	line-height: 0;
}


html {
	overflow-y: scroll;
	margin-bottom: 1px;
	height: 100%;
}

html * {
	box-sizing: border-box;
	font-feature-settings: "palt";
	font-style: normal;
	text-align: left;
}

div {
	text-align: left;
}
/* 見出しは左寄せデフォに */
h1,
h2,
h3,
h4,
h5,
h6 {
	text-align: left;
	font-weight: normal;
}


ul,
ol {
	list-style: none;
}

li {
	list-style-position: outside;
}


li {
	list-style-position: outside;
}

table {
	border-collapse: collapse;
}

/* テーブルのボーダーと余白を完全に消す */
/* テーブルの書式を上詰め左寄せデフォに */
th,
td {
	padding: 0;
	text-align: left;
	vertical-align: top;
	font-weight: normal;
}

/* 主にswf等が、微妙にずれるのを防ぐ */
object,
embed {
	vertical-align: top;
}

img {
	width: 100%;
	/* google chrome 画像縮小時のぼやけ対策 */
	-webkit-backface-visibility: hidden;
}

/* formのデフォルト装飾削除 */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="submit"],
input[type="password"],
select,
textarea {
	-webkit-appearance: none;
}
textarea {
	resize: vertical;
}

/* 電話番号のリンクをPCで無効に */
a[href*="tel:"] {
	cursor: default;
	pointer-events: none;
	text-decoration: none;
}

@media only screen and (max-width:640px) {
	a[href*="tel:"] {
		pointer-events: auto;
	}
}

/* clearfix */
.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html .clearfix {
	zoom: 1;
}

/* IE6 */
*:first-child + html .clearfix {
	zoom: 1;
}

/* IE7 */

article,
main,
aside,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}

body {
	-webkit-text-size-adjust: none;
	/* フォントを指定したサイズのままで表示 */
}