/*Style Setting
=======================================*/
@charset "utf-8";

/*基本情報
--------------------*/
html, body,
h1, h2, h3, h4, h5, h6
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

* {
  box-sizing: border-box;
}
*:focus {
  outline:none;
}

/*初期タグ
-------------------*/
.front-h0 {
  font-size: 0;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

img {
  max-height: 100%;
  max-width: 100%;
  vertical-align: bottom;
}

ul,ol,li {
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}
td,th {
  padding: 0;
}

video,iframe {
  max-width: 100%;
  border: none;
}

/*フォーム
-------------------*/
input,button,select,textarea {
  padding: 0;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  border-radius: 0;
  -webkit-appearance: none;
  cursor: pointer;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="password"] {
  background: none;
  border: none;
  outline: none;
}
input[type="number"] {
  -moz-appearance:textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="radio"] {
  display: none;
}
input[type="radio"]:checked + label {
  background: #ff0000;
}
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"]:checked + label {
  background: #ff0000;
}
select {
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
textarea {
  background: transparent;
  padding: 0;
  border: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
}
button,
input[type="submit"] {
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*レスポンシブ
-------------------*/
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/*内部スクロール
-------------------*/
.scorll-target {
  padding-top: 64px;
  margin-top: -64px;
  pointer-events: none;
}

/*GoogleFonts
-------------------*/
.lexend-deca-<uniquifier> {
  font-family: "Lexend Deca", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}