@charset "UTF-8";
* {
  box-sizing: border-box;
}
/* font-sizeの単位をremにするためhtmlだけ抜き出す */
html {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 10px;
  font-weight: normal;
  font-style: normal;
  font-family: "游ゴシック","Yu Gothic","游ゴシック体","YuGothic","Lucida Grande","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3","Meiryo","メイリオ","sans-serif";
  vertical-align: baseline;
  background: transparent;
  line-height: 1.8;
}
/* 継承させるためにbodyのみにフォント関係は指定する */
body {
  background: transparent;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  /* ▽▽▽これ以下は継承された方が良いもの▽▽▽ */
  font-family: "游ゴシック","Yu Gothic","游ゴシック体","YuGothic","Lucida Grande","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3","Meiryo","メイリオ","sans-serif";
  font-size: 1.2rem;
  font-weight: normal;
  font-style: normal;
  line-height: 1.8;
  /* ▲▲▲▲▲▲ */
}
div,
span,
article,
header,
footer,
main,
section,
menu,
nav,
h1,
h2,
h3,
h4,
h5,
h6,
hgroup,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
img,
del,
dfn,
ins,
kbd,
q,
samp,
strong,
em,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
aside,
dialog,
figure,
time,
mark,
audio,
video,
object,
iframe {
  background: transparent;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  /* ▽▽▽これ以下は継承された方が良いもの▽▽▽ */
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  /* ▲▲▲▲▲▲ */
}
ul,
ol {
  list-style: none;
}
img {
  vertical-align: baseline;
  display: block;
  max-width: 100%;
}
a img {
  border: none;
}
button {
  cursor: pointer;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  border: none;
}
th,
td {
  text-align: left;
  vertical-align: top;
}
input,
select {
  vertical-align: middle;
}