@charset 'UTF-8';

/*

    Reset default

*/

/*  basic  */
body, div,
h1, h2, h3, h4, h5, h6,
p,li,dt,dd,th,td,
form,fieldset,input,textarea,
pre,blockquote {
	margin: 0px;
	padding: 0px;
	line-height: 1.5;
}
body, div,
h1, h2, h3, h4, h5, h6,
p,li,dt,dd,th,td,
form,fieldset,
pre,blockquote,
img {
	border-width: 1px;
	border-style: none;
}
body * {
	background-repeat: no-repeat;
}

/*  smartphone  */
body {
  -webkit-text-size-adjust: 100%;
}
img {
	-webkit-touch-callout: none;
}
input[type=password], input[type=text], input[type=email], input[type=submit], button, textarea {
	max-width: 100%;
	-webkit-user-select: auto;
	-webkit-appearance: none;
}





/*

    Basic Elements

*/

/*  Paragraph  */
p {
	margin: 1em 0;
}

/*  inline text  */
a      { text-decoration: none; outline: none;}
strong { font-weight: bold;}
em     { font-style: italic;}


/*  Hr  */
hr {
	border: none;
	border-bottom: 1px #000000 solid;
}

/*  Table  */
table {
	margin: 1em 0;
	border-collapse: collapse;
}
th, td {
	padding: 0.5em;
	border: 1px #cccccc solid;
}
th {
	text-align: left;
	background-color: #f2f2f2;
}
table p,
table ul,
table ol,
table dl {
	padding: 0px;
	margin: 0px;
}

/*  Form  */
input[type=text], input[type=password], input[type=email], input[type=date], input[type=datetime-local], input[type=number], select, textarea {
	min-height: 30px;
	padding: 0 5px;
	font-family: Osaka, sans-serif;
	line-height: 30px;
	vertical-align: middle;
	border: 1px #cccccc solid;
	font-size: 1.7rem;
	box-sizing: border-box;
}
textarea {
	line-height: 1.5;
}
input[type=file] {
	min-height: none;
	line-height: 1;
	border: none;
}
form select {
	border: 1px #cccccc solid;
	font-size: 1.7rem;
	box-sizing: border-box;
}

/*  Lists  */
ul, ol, dl {
	margin: 1em 0;
	padding: 0;
}
ul li, ol li {
	margin-left: 1.25em;
	list-style-position: outside;
}
dl dt {
	font-weight: bold;
}
dl dd {
	margin-left: 1em;
}

/*  Blockquote  */
blockquote {
	position: relative;
	background-color: #eeeeee;
	margin: 1em 0;
	padding: 1em 1.5em;
	font-style: italic;
	z-index: 1;
}
blockquote:before {
	content: "“";
	position: absolute;
	left: 0;
	top: 5px;
	font-size: 500%;
	line-height: 1em;
	color: #dddddd;
	z-index: -1;
}

/*  image and iframe  */
body img,
body iframe {
	max-width: 100%;
}