.local-home-notice-box {
  display: flex;
  align-items: center;
  width: min(1200px, calc(100% - 32px));
  min-height: 48px;
  margin: 0 auto 14px;
  padding: 0 16px;
  color: #a4a8b0;
  background: #252831;
  border: 1px solid #30343d;
  border-radius: 2px;
  box-sizing: border-box;
}

.local-home-notice-box .notice-icon {
  display: flex;
  width: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: flex-start;
}

.local-home-notice-box .ico-louder {
  display: block;
  width: 21px;
  height: 21px;
  background: url("/cdn/344a78FW2/assets/img/icon_louder.4b6e4e67.png") center / contain no-repeat;
}

.local-home-notice-box .ico-louder::before {
  content: "🔊";
  display: block;
  font-size: 17px;
  line-height: 21px;
  filter: grayscale(1);
}

.local-home-notice-box .notice-content {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.local-home-notice-box #activity-marquee {
  width: 100%;
  overflow: hidden;
}

.local-home-notice-box .marquee-wrapper {
  display: inline-flex;
  min-width: max-content;
  animation: local-notice-marquee 34s linear infinite;
}

.local-home-notice-box .marquee-text {
  display: inline-block;
  padding-right: 64px;
  color: #a4a8b0;
  font-size: 13px;
  line-height: 46px;
}

.local-home-notice-box .notice-more {
  display: block;
  margin-left: 16px;
  color: #d0d2d7;
  font-size: 13px;
  line-height: 46px;
  text-decoration: none;
  white-space: nowrap;
}

.local-home-notice-box .notice-more:hover {
  color: #ff7620;
}

@keyframes local-notice-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 700px) {
  .local-home-notice-box {
    width: calc(100% - 20px);
    min-height: 42px;
    margin-bottom: 10px;
    padding: 0 10px;
  }

  .local-home-notice-box .marquee-text {
    line-height: 40px;
  }

  .local-home-notice-box .notice-more {
    margin-left: 8px;
    line-height: 40px;
  }
}
