
/*
 * initialize, font-init, selection-init, header, footer, footer (for toppage) and common css
 * /

/* initialize
------------------------------------------------*/
/* reset */
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;
}
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;
}
a {
  text-decoration none
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* input init */
input, button, textarea, select {
  line-height: normal;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border-radius: 0;
  outline: none;
}
/* range init */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}
input[type=range]::-ms-tooltip {
  display: none;
}
input[type=range]::-moz-range-track {
  height: 0;
}
input[type=range] {
  border: none;
  border-radius: 0px;
  background-color: #eee;
}
input[type=range]::-webkit-slider-thumb {
  background: #eee;
  border: 0px;
}
input[type=range]::-moz-range-thumb {
  background: #eee;
  border: 0px;
}
#wrap {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.container {
  position: relative;
}
h1, h2, h3, h4, h5, h6, p, a, li, figcaption, dt, dd, th, td, input, textarea, label {
  font-family: "YuGothic", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #231815;
  font-size: 0.2rem;
  line-height: 0.5rem;
  letter-spacing: 0.05em;
}

/* font init (used 'rem')
------------------------------------------------*/
@media screen and (min-width: 1080px) {
  html {
    font-size: 625%;
  }
}
@media screen and (max-width: 1080px) {
  html {
    font-size: 600%;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 565%;
  }
}
@media screen and (max-width: 480px) {
  html {
    font-size: 530%;
  }
}
body {
  font-size: 0.16em;
}

/* selection init
------------------------------------------------*/
::-moz-selection {
  color: #231815;
  background: #ef764d;
}
::selection {
  color: #231815;
  background: #ef764d;
}
/* placeholder */
::-webkit-input-placeholder {
  color: #ccc;
}
::-moz-placeholder {
  color: #ccc;
}
::-ms-input-placeholder {
  color: #ccc;
}
::placeholder {
  color: #ccc;
}


