/* リセットCSS */
@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}
html {
  font-size: 100%;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Segoe UI,
    Hiragino Kaku Gothic ProN, Hiragino Sans, ヒラギノ角ゴ ProN W3, Arial,
    メイリオ, Meiryo, sans-serif;
  color: #4c4c4c;
  background-color: #ffffff;
  margin: 0 auto;
  padding: 0 !important;
  line-height: 2;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
}

p {
  /* margin-bottom: 1em; */
}

ul {
  list-style: none;
}

ol {
  margin-left: 5vw;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
}
form label {
  cursor: pointer;
}

select {
  font-size: 1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("/assets/img/arrow.svg");
  background-color: #fff;
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 13px 13px;
  padding: 5px 28px 5px 10px;
  color: #4c4c4c;
}

a {
  text-decoration: none;
  color: #4c4c4c;
  cursor: pointer;
}
a:hover,
a:active,
a:focus {
  opacity: 0.7;
}
a img {
  border: none;
}

.cf:after {
  display: block;
  clear: both;
  content: "";
}

img {
  object-fit: fill;
  max-width: 100%;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  color: #4c4c4c;
}

input[type="submit"] {
  -webkit-appearance: none;
}

th,
td {
  padding: 5px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  font-size: 18px;
  color: #4c4c4c;
}

textarea {
  font-size: 18px;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Segoe UI,
    Hiragino Kaku Gothic ProN, Hiragino Sans, ヒラギノ角ゴ ProN W3, Arial,
    メイリオ, Meiryo, sans-serif;
  color: #4c4c4c;
  line-height: 2;
  font-feature-settings: "kern";
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  resize: none;
  outline: none;
}

textarea:focus {
  border: 2px solid darkseagreen;
}
