﻿@charset "utf-8";

/*========================================index
/* various blank resets
/* list-style resets
/* border resets
/* font resets
/* various-align resets
/* cursor resets
========================================index*/

/*====================
 various blank resets
====================*/
body,
div,
dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,
pre,
form,fieldset,
p,blockquote {
	margin: 0;
	padding: 0;
	}
div,
dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,p { box-sizing: border-box;}

/*====================
 list-style resets
====================*/
ol,ul {
	list-style: none;
	}

/*====================
 border resets
====================*/

fieldset,
img{
	border: 0 none;
	color: #006;
	}
abbr,acronym {
	border-bottom: 1px dashed;
	}

/*====================
 font resets
====================*/
h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
	}
h1,h2,h3,h4,h5,h6,
em,strong {
	font-weight: bold;
	}
em {
	font-style: normal;
	}
address,
caption,
cite,
code,
dfn,
th,
var {
	font-style: normal;
	font-weight: normal;
	}
table {
	font-size: 100%;
	}
select,
input,
textarea {
	font-size: 100%;
	color:#444;
}

var,code,samp,kbd {
	font-family: monospace;
	}

/*====================
 overflow
====================*/
textarea {
	overflow: auto;
	}

/*====================
 various-align resets
====================*/
caption,
th {
	text-align: left;
	}

/*====================
 cursor resets
====================*/
a,
input[type="submit"] {
	cursor: pointer;
	}
	
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="reset"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="reset"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
