@charset "utf-8";

/* CSS Document */

/*apply common css : 
* link, box-sizing, text-decoration, video, img...
* 
* サイト製作時に使用する共通スタイル管理用cssファイル
* 
*/


/*------------------------------------------------------

--- core settings ---

-------------------------------------------------------*/
html * {
	max-height: 1000000px;
}

html {
	box-sizing: border-box;
	font-size: 16px;
}

body {
	background-color: #fff;
	line-height: inherit;
	-webkit-font-smoothing: antialiased;
}

*,::after,::before {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
	background-repeat: no-repeat;
}

::before,::after {
	vertical-align: inherit;
	text-decoration: inherit;
}

h1 {
	margin: 0;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ol,ul {
	list-style: none;
}

table {
	border-collapse: collapse;
}

iframe,img,textarea {
	vertical-align: bottom;
}

textarea {
	resize: vertical;
}

address {
	font-style: normal;
}

button,input,optgroup,select,textarea {
	font-family: inherit;
}

input[type="text"],input[type="email"],input[type="serach"],input[type="password"],textarea {
	padding: 8px 8px 7px;
	border: solid 1px #bfbfbf;
	border-radius: 0;
	background: #fff;
	box-shadow: inset 1px 2px 1px rgba(191, 191, 191, 0.6);
	-webkit-appearance: none;
}
