@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, 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, dialog, figure, footer, header,
hgroup, menu, nav, section, menu,
time, mark, audio, video, source, picture {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

html, body {
  height: 100%;
}

html {
  overflow-y: scroll;
  font-size: 62.5%; /* 10px */
  min-height: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  color: #000;
}
body * {
  box-sizing: border-box;
}
body.fixed {
  position: fixed;
  width: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 15px;
    font-size: calc(15px + (1vw - 3.75px) * -0.25);
  }
}

main, section {
  display: block;
}

h1, h2, h3, h4, h5 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.7;
}

p, td, li, dt, dd {
  line-height: 1.7;
}

img {
  border: 0px;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  text-align: left;
}

#wrapper td.center, #wrapper th.center {
  text-align: center;
}
#wrapper td.left, #wrapper th.left {
  text-align: left;
}
#wrapper td.right, #wrapper th.right {
  text-align: right;
}

li {
  list-style: none;
}

a {
  outline: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border: none;
  border-radius: 0;
  font: inherit;
}

input[type=checkbox] {
  display: none;
}

select {
  margin: 0;
}

select::-ms-expand {
  display: none; /* デフォルトのスタイルを無効(IE用) */
}

::placeholder {
  color: #a0a0a0;
}

.clear {
  clear: both;
}

.cf::after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}
