.scroll-logos {
  width: 100vw;
  height: 90px;
  background: #fff;
  overflow: hidden;
}

.scroll-parent {
  position: relative;
  width: 100vw;
  height: 90px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.scroll-element {
  display: flex;
  animation: logo-scroll 40s linear infinite;
}

.scroll-element ul {
  display: flex;
  width: max-content;
  padding: 0;
  margin: 0;
}

.scroll-element li {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0 20px;
  height: 100%;
}

.scroll-element img {
  max-height: 30px;
  height: auto;
  width: auto;
  display: block;
}

@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.primary_line1 {
  animation: primary_line1 30s linear infinite;
}

.secondary_line1 {
  animation: secondary_line1 30s linear infinite;
}

@keyframes primary_line1 {
  from {
    left: 0;
  }
  to {
    transform: translateX(calc(-180px * 10.8));
  }
}

@keyframes secondary_line1 {
  from {
    transform: translateX(calc(180px * 10.8));
  }
  to {
    left: 0;
  }
}

.primary_line2 {
  animation: primary_line2 70s linear infinite;
}

.secondary_line2 {
  animation: secondary_line2 70s linear infinite;
}
@keyframes primary_line2 {
  from {
    left: 0;
  }
  to {
    transform: translateX(calc(-205px * 14));
  }
}

@keyframes secondary_line2 {
  from {
    transform: translateX(calc(205px * 14));
  }
  to {
    left: 0;
  }
}

@keyframes animate {
  0%{
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100%{
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .particles {
    height: 675px;
  }
}

.particles li {
  position: absolute;
  display: block;
  list-style: none;
}

@media (max-width: 767px) {
  .particles > .left-hand {
    left: 15%;
    width: 524px;
    height: 300px;
  }
  .particles > .right-hand {
    left: 55%;
    top: 55%;
    width: 441px;
    height: 365px;
  }
}
@keyframes typing {
  from {
    width: 0;
  }
}
@keyframes caret {
  50% {
    border-right-color: currentColor;
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes particle-blink {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes gradation {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

@keyframes particle-move-left {
  0% {
    top: 15%;
    left: -25%;
  }
  100% {
    top: 25%;
    left: 10%;
  }
}

@keyframes particle-move-right {
  0% {
    left: 90%;
    top: 30%;
  }
  100% {
    left: 55%;
    top: 20%;
  }
}

@media (max-width: 767px) {
  @keyframes particle-move-left {
    0% {
      top: 20%;
      left: -18%;
    }
    100% {
      top: 25%;
      left: 15%;
    }
  }

  @keyframes particle-move-right {
    0% {
      left: 85%;
      top: 60%;
    }
    100% {
      left: 55%;
      top: 55%;
    }
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.splash {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 1);
  transition: ease-in-out 1000ms;
  z-index: 1000;
}
.splash > div {
  width: 20ch;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  color: black;
  font-size: 4.0rem;
  line-height:1.4;
  font-weight:700;
  animation: fade-out linear 2000ms forwards, caret 100ms step-end infinite
}

@media (max-width: 767px) {
  .splash > div {
    font-size: 1.8rem;
  }
}
.hidden {
  display: none!important;
}

@keyframes move {
  100% {
    transform: translate3d(0, 0, 2px) rotate(360deg);
  }
}
@keyframes scale {
  to {
    transform:scale(0.5);
  }
  from {
    transform:scale(1);
  }
}

/* @keyframes blur {
  0%{
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.5);
  }
  100%{
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    background-color: rgba(0, 0, 0, 0);
  }
} */

.bg {
  z-index: 0;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  background-image: url("../images/background-texture.jpg");
  background-size: cover;
  background-position: left bottom;
  background-blend-mode: lighten;
}

@media (max-width: 767px) {
  .bg {
    background-position-y: -50px;
  }
  .bg span:nth-child(3) {
    width: 120px;
    height: 129px;
    top: 10%;
  }
  .bg span:nth-child(4) {
    width: 120px;
    height: 129px;
    left: 70%;
    top: 80%;
  }
}

.application-form iframe {
  min-height: 1200px;
  width: 100%;
  border: none;
}

.pc-br {
  display: inline;
}

@media (max-width: 767px) {
  .pc-br {
    display: none;
  }
}

.sp-br {
  display: none;
}

@media (max-width: 767px) {
  .sp-br {
    display: inline;
  }
}

.privacy {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #000;
}

.privacy-heading {
  font-size: 18px;
  margin-bottom: 0.5em;
  display: block;
  padding-top: 40px;
}

.privacy-content {
  padding-left: 1.5em;
}

.privacy-list {
  list-style-type: disc;
  padding-left: 1.5em;
  margin: 1em 0 0 0;
}

.privacy-list li {
  list-style: disc;
  display: list-item;
  position: static;
  font-size: 14px;
  margin-bottom: 6px;
}

.privacy-sublist {
  list-style-type: disc;
  padding-left: 1.5em;
  margin-top: 6px;
}
