@charset "UTF-8";
body {
  margin: 0;
  padding: 0;

  font-size: 16px;
}
body * {
  margin: 0;
  padding: 0;
  font-weight: normal;
  vertical-align: baseline;
  line-height: 1.7;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
  color: inherit;
}
li {
  list-style: none;
}

/* フォームのリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

input {
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

/* input[type="checkbox"], */
/* input[type="radio"] { */
  /* display: none; */
/* } */

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select:disabled {
  opacity: 1;
}

select::-ms-expand {
  display: none;
}

summary {
  &::marker {
    content: none;
  }
}

img {
  vertical-align: middle;
}