/* ティッカー ------------------------------------------- */
.ticker {
  margin: 0 auto;
  padding: 10px;
  width: 90%!important;
  height: 70px!important;
  text-align: left;
  border: none!important;
  position: relative;
  overflow: hidden;
  background-color: inherit;
  position: absolute!important;
  top: calc(var(--mainvisual_height) - 30%);
  left: 50%;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
}
.ticker .p-postList__meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  line-height: 1.25;
  position: relative;
  justify-content: center;
  margin: 0 0 5px;
}
.ticker .p-postList .p-postList__title {
  background: none;
  border: none;
  color: inherit;
  display: block;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: .9em!important;
}
.ticker .p-postList.-type-simple {
  border-top: none;
}
.ticker .-type-simple .p-postList__link {
  border-bottom: none;
  display: block;
  padding: 0;
  transition: opacity .25s;
  width: fit-content;
  margin: 0 auto;
}
.ticker .-type-simple .p-postList__link:hover {
  background-color:transparent;
  opacity: .5;
}
.ticker .-type-simple .u-thin {
  opacity: 1;
  border: none!important;
}

/* 追加 ---------------------------------------------- */
.ticker .p-postList__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-right: 0;
  opacity: 0;
}
.fadeInUp {
  opacity: 0;
}
.fadeInUp.run {
  animation: fadeInUp 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}
.fadeOutDown {
  opacity: 1;
}
.fadeOutDown.run {
  animation: fadeOutDown 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-30px);
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}