@media screen and (min-width: 1040px) {
  .super-notice .pc-hidden {
    display: none;
  }
}
@media screen and (max-width: 1039px) {
  .super-notice .sp-hidden {
    display: none;
  }
}
.super-notice {
  color: #fff;
  background: #006241;
  font-size: 13px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* z-index: 999999; z-indexがあるとKVにかぶる */
  position: relative;
}
.super-notice-inner {
  max-width: calc(100% - 80px);
  width: calc(100% - 80px);
  display: flex;
  height: inherit;
  justify-content: space-between;
}
.super-notice-content {
  width: calc(100% - 96px);
  position: relative;
  text-overflow: unset;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  transition: transform 0.5s;
  transition-duration: 1s ease-out;
  height: min-content;
  flex-direction: column;
  /* align-items: center; */
}
.super-notice-item {
  height: 40px;
  display: flex;
  visibility: hidden;
  width: 100%;
  flex-direction: column;
  justify-content: center;
}

.super-notice-item.active {
  visibility: visible;
}

.super-notice-content {
  display: flex;
  /* align-items: center; */
}
/* .super-notice-content::after {
  content: "";
  height: 40px;
  width: 40px;
  background: #f00;
  display: block;
  position: absolute;
  right: 0;
  background: linear-gradient(90deg, #00624100 0, #006241 100%);
  z-index: 9999;
} */
/* new styles 3.10.2022 */
.super-notice-item::after {
  content: "";
  height: 40px;
  width: 40px;
  background: #f00;
  display: block;
  position: absolute;
  right: 0;
  background: linear-gradient(90deg, #00624100 0, #006241 100%);
  /* z-index: 9999; */
}
.super-notice-paging {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80px;
}
.super-notice-paging-prev {
  content: "";
  display: inline-block;
  height: 10px;
  width: 10px;
  border: 2px solid #fff;
  border-left-width: 0;
  border-top-width: 0;
  transform: translate(0, 0) rotate(135deg);
  cursor: pointer;
}
.super-notice-paging-next {
  content: "";
  display: inline-block;
  height: 10px;
  width: 10px;
  border: 2px solid #fff;
  border-left-width: 0;
  border-top-width: 0;
  transform: translate(0, 0) rotate(-45deg);
  cursor: pointer;
}
@media screen and (max-width: 1039px) {
  .super-notice {
    font-size: 11px;
  }
  .super-notice-inner {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
  }
  .super-notice-content {
    width: calc(100% - 32px);
  }
  .super-notice-paging {
    justify-content: end;
    width: 32px;
  }
  .super-notice-paging-prev,
  .super-notice-paging-next {
    display: none;
  }
}
