@charset "UTF-8";
/* key */
/* font */
/* grey */
/* background */
/* Information */
/* pink */
/* Font */
/* 
 ----------------------------------------------------------------------
# Base 各要素のスタイルを初期化します
 ----------------------------------------------------------------------
*/
/* 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:focus {
  outline: none;
}

input,
select {
  outline: none;
}

ul {
  padding-left: 0px;
  margin-bottom: 0px;
}

/* base style */
body {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  font-family: -apple-system,"メイリオ","Meiryo,Osaka","ＭＳ Ｐゴシック","MS PGothic","MS Gothic","ＭＳ ゴシック","Helvetica Neue",Helvetica,Arial,sans-serif;
}

/* サイズ算出からPaddingを抜く */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* 画像のinlineの下余白を消す */
img {
  vertical-align: middle;
}

/* 画像がタッチエリアになってしまうのを防ぐ */
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
