/*--------------------------------------------------------
reset
----------------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*--------------------------------------------------------
fundermental settings
----------------------------------------------------------*/
* {-webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;
}
img{
	max-width: 100%;
	height: auto;
	border: none;
  vertical-align: bottom;
}
body{
	/* できるだけ単語を崩さずに、どうしてもはみ出るときだけ単語の途中で折り返す設定 */
	/* firefoxでurlが折り返せなかったので、下の方でurlというクラスを作ってbreak-allにする */
	word-wrap : break-word;
  overflow-wrap : break-word;
}
p{
	/* テキストを両端ビタにそろえる */
	/* text-align: justify; */

	/* テキストを両端ビタにそろえる */
	/* IE用 */
  /* text-justify: inter-ideograph; */
}
table {
	/* できるだけ単語を崩さずに、どうしてもはみ出るときだけ単語の途中で折り返す設定 */
	/* bodyで同様の設定をしているが、tableには効かないので、改めてここで設定する必要がある */
   width: 100%;
   table-layout: fixed;
   word-break: break-word;
   word-wrap: break-word;
}
/*--------------------------------------------------------
form要素のリセット
----------------------------------------------------------*/
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
textarea {
  resize: vertical;
}
input[type='checkbox'],
input[type='radio'] {
  display: none;
}
input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}
/*--------------------------------------------------------
fundermental functions
----------------------------------------------------------*/
	/* firefoxでurlが折り返せなかったので、urlというクラスを作ってbreak-allにする */
.url{
	word-break: break-all;
}

.cf:after {
  content: "";
  clear: both;
  display: block;
}
.flx{
	display: flex;
}
