@charset "utf-8";

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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


a {
  display: block;
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
}

input,
button,
textarea,
select {
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  color: inherit;
  font: inherit;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
  /* 必要に応じてサイズ変更を許可 */
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th,
td {
  border: none;
  font-weight: normal;
}