@charset "UTF-8";
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  background: var(--bg_c);
  color: var(--font_c);
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

@media only screen and (max-width: 959px) {
  body {
    padding: 0;
    -webkit-text-size-adjust: none;
  }
}
@media only screen and (max-width: 767px) {
  body {
    padding: 0;
    -webkit-text-size-adjust: none;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

table {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  empty-cells: show;
}

td,
th {
  empty-cells: show;
}

a,
label {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

button *,
a * {
  transition: inherit;
}

a:focus,
a:hover,
button:focus,
button:hover,
label:focus,
label:hover,
input:focus,
input:hover {
  opacity: 0.7;
  outline: none;
}

img {
  border: none;
}

i,
em {
  font-style: normal;
}

b {
  font-weight: 700;
}

.mt5 {margin-top: 5px !important;}
.mt10 {margin-top: 10px !important;}
.mt20 {margin-top: 20px !important;}

.mb10 {margin-bottom: 10px !important;}
.mb20 {margin-bottom: 20px !important;}