.pc {
  display: block;
}

.sp {
  display: none;
}

main {
  width: 100%;
  background: url(/wp-content/themes/businesspress/images/bg.webp) no-repeat;
  background-size: cover;
}

.contents {
  display: block;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  position: relative;
}
.contents__inner {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  width: 100%;
  padding-bottom: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
}
.contents__inner h2 {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 60px;
  width: 100%;
  text-align: center;
  margin-bottom: 80px;
  -ms-filter: blur(20px);
  filter: blur(20px);
  opacity: 0;
  animation: blur-anime 1s ease-out both;
  transform: scale(1.1);
}
.contents__inner > p {
  font-size: 18px;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  text-align: center;
  margin-bottom: 100px;
  animation: blur-anime 2s ease-out both;
  transform: scale(1.1);
}
.contents__inner .link__main {
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.contents__inner .link__main li {
  list-style-type: none;
  width: 150px;
}
.contents__inner .link__main li img {
  width: 100%;
}
.contents__inner .link__sub {
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.contents__inner .link__sub li {
  list-style-type: none;
  width: 150px;
}
.contents__inner .link__sub li img {
  width: 100%;
}

footer {
  display: block;
  width: 100%;
}

@media screen and (max-width: 960px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .contents__inner {
    padding-bottom: 100px;
  }
  .contents__inner h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }
  .contents__inner > p {
    font-size: 14px;
    margin-bottom: 50px;
    padding: 0 20px;
  }
  .contents__inner .link__main,
  .contents__inner .link__sub {
    padding: 0 10px;
    gap: 10px;
  }
  main {
    width: 100%;
    background: url(/wp-content/themes/businesspress/images/bg.webp) no-repeat center;
    background-size: cover;
  }
}
@keyframes blur-anime {
  0% {
    -ms-filter: blur(20px);
    filter: blur(20px);
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    -ms-filter: blur(0);
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
  }
}/*# sourceMappingURL=new.css.map */