.infomation {
  padding:25px 0;
  margin:0;
  overflow: hidden;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 95%;
  margin: 0 auto;
}

.infoText {
  color: #fff;
  padding-left: 100%;
  white-space: nowrap;
  display: inline-block;
  animation: infoAnimation 30s linear infinite;
}

.infoText p {
  display:inline-block;
  margin:0 1rem 0 0;
  color:var(--color-000);
  font-size: var(--font-size-14);
}
.infoText span {
   font-size: var(--font-size-24);
   font-weight: bold;
}


/* 横に流れていくアニメーション */
@keyframes infoAnimation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

  /* ========================================================== */
/* ==============  2023タプレット 1025px   ==================== */
/* ========================================================== */
@media screen and (max-width:1024px){
  .infomation {
    padding: 15px 0;
  }
  }

/* ========================================================== */
/* ==============  2023スマホ     600px   ==================== */
/* ========================================================== */
@media screen and (max-width:600px){
  .infomation {
    padding: 10px 0;
  }
  }
  