@charset "UTF-8";

/*========= base ===========*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video{
  margin: 0;
  padding:0;
  font-size: 62.5%;
  border:0;
  outline:0;
  vertical-align:baseline;
  background:transparent;
}

/*行の高さをフォントサイズと同じに*/
body {
  line-height: 1;
  width: 100%;
  font-variant-numeric: tabular-nums;
}

/*画像余白削除*/
img {
  width: 100%;
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素に変更*/
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
  display:block;
}

/*nav要素内ulのマーカー（行頭記号）を非表示*/
ul,li,dl,dt,dd {
  margin:0;
  padding:0;
  list-style: none;
}

/*radiobutton・checkbox・selectが文字と並べた際にわずかにズレる現象の修正*/
input, select {
  vertical-align:middle;
}

/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃える*/
a { 
  margin:0;
  padding:0;
  vertical-align:baseline;
  text-decoration: none;
  color: inherit;
  transition: all .6s ease;
  font-size: 100%;
}

a:hover { 
  transition: all .6s ease;
}

/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定*/
table {
  border-collapse:collapse;
  border-spacing:0;
}

button {
  line-height: 1.0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくように＋マウスオーバー時にヘルプカーソルの表示*/
abbr[title], dfn[title] {
  border-bottom:1px dotted;
  cursor:help;
}

/*テキストに打ち消し線*/
del {
  text-decoration: line-through;
}

/*box-sizingを全ブラウザに対応*/
*, *: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;
}






































