@charset "UTF-8";

/******************************
  bg
******************************/
.bg_news {
  width: 100%;
  height: 100vh;
  height: 100lvh;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  background: url("../../assets/img/bg_news.jpg") no-repeat bottom center;
  background-size: cover;
  pointer-events: none;
  background-blend-mode: lighten;
  opacity: 1; /* 最初から表示したいならこのままでOK */
  background-color: transparent;
  transition: opacity 1.5s ease 0.5s, background-color 1.5s ease;
}


/* ニュースを包むエリア */
.info {
    background-color: transparent; 
    position: relative;
}

/* ニュース本体 */
#news-all {
    opacity: 0;
    /* transitionを少し遅らせて、読み込み完了から一呼吸置いて開始 */
    transition: opacity 0.8s ease-in-out; 
    will-change: opacity; /* ブラウザにアニメーションを予告して滑らかにする */
}

#news-all.is-loaded {
    opacity: 1;
}

/******************************
  News - brand_protection
******************************/
.brand_protection {
  margin: 0 auto;
  padding: 0;
  width: 800px;
}

.brand_protection dl{
  display: grid;
  grid-template-columns: 110px 1fr;
  column-gap: 0;
  font-size: 14px;
  line-height: 2em;
  margin-top: -1.5em!important;
}

.brand_protection dt,
.brand_protection dd {
  display: flex;
  align-items: flex-start;
  text-align: left;
  padding: 1.5em 0 1.4em;
  position: relative;
  color: #000;
  border-bottom: 1px solid #B3B3B3;
}

.brand_protection dt {
  padding-right: 20px;
}

/* レスポンシブ調整 */
@media (max-width: 940px) {
  .brand_protection {
    width: 100%;
    padding: 0 7.5vw;
  }
  .brand_protection dl {
    font-size: 1.4vw;
  }
}

@media (max-width: 750px) {
  .brand_protection dl {
    grid-template-columns: 110px 1fr;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .brand_protection dl {
    grid-template-columns: 100px 1fr;
    font-size: max(12px, 3vw);
  }
}

/* ニュースページ内のアンカー要素すべてに適用 */
#news_info, #news_bp {
  scroll-margin-top: 20px; /* 固定ヘッダーの高さ + 余裕分 */
}