/* 固定バナー本体 */
.fixed-top-message {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 390px;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
  padding: 16px 0 8px 0;
  text-align: center;
  transition: left 0.3s, right 0.3s, width 0.3s, transform 0.3s;
}
.fixed-banner-toggle {
  position: absolute;
  top: 8px;
  right: 12px;
  background: #64b5f6;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 1em;
  cursor: pointer;
  z-index: 10000;
}
.fixed-top-message.collapsed {
  height: 38px;
  min-height: 0;
  overflow: hidden;
  padding: 8px 0 8px 0;
}
.fixed-top-message .fixed-banner-content {
  display: block;
}
.fixed-top-message.collapsed .fixed-banner-content {
  display: none;
}
@media (max-width: 1024px) {
  .fixed-top-message {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 95vw;
    min-width: 0;
    max-width: 100vw;
    font-size: 90%;
    padding: 10px 0 6px 0;
  }
}
/* 固定バナーの高さ分の余白 */
.fixed-banner-space {
  height: 10px;
}
@media (max-width: 600px) {
  .fixed-banner-space {
    height: 600px;
  }
}
.news-fold {
  display: none;
}
.comment {
  display: block;
  min-height: 40px;
}
.news-toggle {
  color: #fff;
  background: #64b5f6;
  border: none;
  border-radius: 6px;
  padding: 6px 22px;
  font-size: 1em;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(100,181,246,0.08);
  transition: background 0.2s, box-shadow 0.2s;
  margin: 12px auto 20px auto;
  display: block;
  letter-spacing: 0.05em;
  text-align: center;
}
.news-toggle:hover, .news-toggle:focus {
  background: #42a5f5;
  box-shadow: 0 2px 6px rgba(100,181,246,0.15);
  outline: none;
}
.fixed-banner-space {
  height: 10px;
}
@media (max-width: 600px) {
  .fixed-banner-space {
    height: 600px;
  }
}
