/*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;
}

* {
  box-sizing: border-box;
}



/*初期タグ
-------------------*/


img {
  max-height: 100%;
  max-width: 100%;
  vertical-align: bottom;
}
.object-fit-img {
	width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

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;
}


