* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: 500;

}
img {
  display: block;
  width: 100%;
  object-fit: cover;
}
li {
  list-style-type: none;
}
a {
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}
body{
  background: #FBFAF6;
  font-family: "Noto Sans JP", sans-serif;
  color: #594529;
  line-height: 1;
  animation: fadeIn 1s ease 0s 1 normal;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
}
@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
button{
  background-color: transparent;
  border: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th {
    text-align: left;
}
input{
  border: 0;  
}
input[type=number], input[type=password], input[type=text], input[type=email], input[type=tel], textarea, select{
  width: 100%;
  appearance: none;
  border: 0;
}
input[type=checkbox] {
    appearance: none;
    background: none;
    border: none;
    border-radius: 0;
    margin: 0;
    outline: none;
    padding: 0;
}
.l-wrapper-none{
   line-height: 1;    
}
.alert-success,
.alert-danger{
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 20px;
  font-size: 16px;
}
.alert-success {
  background-color: #eeebe8;
}
.alert-danger {
  background-color: #fbefef;
}
.alert-success .u-color__text--alert {
  background-color: transparent;
}
.alert-danger .u-color__text--alert {
  color: #E21E1E;
}
.formErrorContent {
  color: #D5603F;
  font-size: 12px;
}