/* ------------------------------
   Reset CSS
   by Toshiko Shiina ver (NurseUP用)
   ------------------------------ */

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,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* body 基本設定 */
body {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  background: #fff;
  color: #333;
}

/* リストのデフォルトマーカー削除 */
ol, ul {
  list-style: none;
}

/* 引用符削除 */
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before, q::after {
  content: '';
}

/* テーブル統一 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* リンク */
a {
  text-decoration: none;
  color: inherit;
}

/* 画像のリサイズ防止とブロック化 */
img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

/* ボタン・フォーム統一 */
button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

/* strongやbの太字 */
b, strong {
  font-weight: bold;
}

/* box-sizingを統一 */
*, *::before, *::after {
  box-sizing: border-box;
}