@charset "UTF-8";

/************************************************************************
*	CSS information
*	file name  : default.css
*	style info : Normalize.cssと併用してベーススタイルを調整
************************************************************************/



html {
	overflow: hidden;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%; /* 10px */
}

h1,h2,h3,h4,h5,h6 {
	line-height: 2;
	margin-top: 0;
	margin-bottom: 0;
}


/*ボーダーを余白に含める*/
h1, h2, h3, h4, h5, h6,
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary,
div, span,
p,
ul, ol, li,
dl, dt, dd,
table, tr, th, td,
button, input, select, textarea,
a, img,
*:after, *:before {
	box-sizing: border-box;
}

input {
	vertical-align: middle;
}

figure {
	margin: 0;
	padding: 0;
}

p,
li,
dl,
table {
	line-break: strict;
	word-break: break-strict;
	word-wrap: break-word;
	margin-top: 0px;
	margin-bottom: 0px;
}

/*テーブル中の改行の指定*/
tr {
	word-break: break-all;
}

th, td {
	padding: 0;
}

/*画像と画像のあいだの余白を消す*/
img {
	max-width: 100%;
	vertical-align: middle;
}

a:focus{
	outline:none;
}

ul,ol {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

li {
	margin: 0;
	padding: 0;
}

dd {
	margin-left: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
	resize: vertical;
}

select option {
	padding: 0px 5px;
}

form label {
	cursor: pointer;
}

input::-webkit-input-placeholder,
input:-ms-input-placeholder,
input::-ms-input-placeholder {
	color: #999;
}