@font-face {
  font-family: 'Gobold';
  src: url('../fonts/Gobold Bold.otf');
}
html {
  scroll-behavior: smooth;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
}
p,
time,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  /* letter-spacing: 0.12em; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
}
p {
  text-justify: inter-ideograph;
}
div{
  font-family: 'Noto Sans JP', sans-serif;
}
ol,
ul,
dl,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}
article,
nav,
section,
figure {
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
}
input,
textarea,
button,
select {
  font-family: inherit;
  outline: none;
  border: none;
}
button {
  margin: 0;
  padding: 0;
}
table {
  border-spacing: 0;
}
html {
  font-size: 62.5%;
}
body {
  background: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: normal;
  -webkit-text-size-adjust: none;
  font-size: min(1.1vw, 1.6rem);
  line-height: min(2.22vw, 3.2rem);
  color: #222222;
  text-align: center;
  font-weight: normal;
  letter-spacing: 0.09rem;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
a {
  color: #ed558a;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.6rem;
    line-height: 3.2rem;
  }
}
.fadein {
  opacity: 0;
  transform: translate(0,0);
  transition: all 1.5s;
}
.fadein.fadein-left{
    transform: translate(-30px,0);
}
.fadein.fadein-right{
    transform: translate(30px,0);
}
.fadein.fadein-up{
    transform: translate(0,-30px);
}
.fadein.fadein-bottom{
    transform: translate(0,30px);
}
.fadein.scrollin{
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}