body {
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #333;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  body {
    width: 100vw;
    overflow-x: hidden;
  }
}

@media screen and (min-width: 769px) {
  .pc {
    display: block !important;
  }
  .pc.inline {
    display: inline-block !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
  .sp.inline {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .sp.inline {
    display: inline-block !important;
  }
}

a {
  color: initial;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
  transition: 400ms ease;
}

.fadein:not(.c-heading, .c-numbers) {
  transform: translateY(100px);
  opacity: 0;
  transition: 1s;
}
.fadein:not(.c-heading, .c-numbers).show {
  transform: translateY(0px);
  opacity: 1;
}

.c-heading.is-center {
  text-align: center;
}
.c-heading.fadein strong i, .c-heading.fadein span i {
  transform: translateX(-100%);
  opacity: 0;
}
.c-heading.fadein.show i:nth-child(1) {
  animation: fadeInText 1s ease 0.1s forwards;
}
.c-heading.fadein.show i:nth-child(2) {
  animation: fadeInText 1s ease 0.2s forwards;
}
.c-heading.fadein.show i:nth-child(3) {
  animation: fadeInText 1s ease 0.3s forwards;
}
.c-heading.fadein.show i:nth-child(4) {
  animation: fadeInText 1s ease 0.4s forwards;
}
.c-heading.fadein.show i:nth-child(5) {
  animation: fadeInText 1s ease 0.5s forwards;
}
.c-heading.fadein.show i:nth-child(6) {
  animation: fadeInText 1s ease 0.6s forwards;
}
.c-heading.fadein.show i:nth-child(7) {
  animation: fadeInText 1s ease 0.7s forwards;
}
.c-heading.fadein.show i:nth-child(8) {
  animation: fadeInText 1s ease 0.8s forwards;
}
.c-heading.fadein.show i:nth-child(9) {
  animation: fadeInText 1s ease 0.9s forwards;
}
.c-heading i, .c-heading label {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  display: inline-block;
}
.c-heading label {
  display: inline-block;
  overflow: hidden;
  padding-right: 5px;
  position: relative;
  margin-right: -5px;
}
.c-heading strong {
  font-size: 60px;
  letter-spacing: 0em;
  line-height: 91px;
  font-weight: 600;
  color: #333333;
  font-style: italic;
  display: block;
}
@media screen and (max-width: 768px) {
  .c-heading strong {
    font-size: 40px;
    letter-spacing: 0em;
    line-height: 61px;
    font-weight: 600;
    color: #333333;
  }
}
.c-heading span {
  font-size: 25px;
  letter-spacing: 0em;
  line-height: 37px;
  font-weight: 400;
  color: #333333;
  display: block;
}
@media screen and (max-width: 768px) {
  .c-heading span {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 20px;
    font-weight: 600;
    color: #333333;
  }
}
@keyframes fadeInText {
  0% {
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.c-heading.is-white strong {
  color: #fff;
  font-style: italic;
}
.c-heading.is-white span {
  color: #fff;
}
.c-heading.is-medium strong {
  font-size: 50px;
  line-height: 60px;
}

.flex {
  display: flex;
}

button {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: unset;
}