/* =======================================　お知らせ（クリティカル） =======================================　*/
/* ファーストビュー用: hero は header.css、news はここのみ。front-page.css は遅延読込。 */
.news {
  background-color: #fefdfb;
  padding: 40px 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.news__inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.news__header-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.news__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news__label {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.12px;
  color: #b2a581;
  margin: 0;
}

.news__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 2.56px;
  color: #42220f;
  margin: 0;
}

.news__body {
  flex: 1;
  display: flex;
  gap: 40px;
  align-items: center;
  min-width: 0;
}

.news__item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 24px 16px;
  border-top: 1px solid #e9e9e2;
  border-bottom: 1px solid #e9e9e2;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.25s ease;
}

.news__item:hover {
  opacity: 0.8;
}

.news__date {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.64px;
  line-height: 1.7;
  color: #b2a581;
  width: 120px;
  flex-shrink: 0;
  display: block;
}

.news__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.64px;
  line-height: 1.7;
  color: #42220f;
  flex: 1;
  min-width: 0;
}

.news__more {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #b2a581;
  text-decoration: none;
  color: #42220f;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.64px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.25s ease;
}

.news__more:hover {
  opacity: 0.8;
}

.news__more img {
  display: block;
  object-fit: contain;
}

.news__more--sp {
  display: none;
}

.news__more--pc {
  display: flex;
}

/* SP（1250px以下: KVバッジ・六角形重なり回避のため padding-top 増量） */
@media (max-width: 768px) {
  .news {
    padding: 118px 24px 24px; /* 70px + 32px + 16px（六角形との余白） */
  }

  .news__inner {
    flex-direction: column;
    gap: 20px;
  }

  .news__header-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
  }

  .news__label {
    font-size: 15px;
    letter-spacing: 1.04px;
  }

  .news__title {
    font-size: 18px;
    letter-spacing: 1.28px;
  }

  .news__more--sp {
    display: flex;
    font-size: 16px;
    letter-spacing: 0.56px;
  }

  .news__more--sp img {
    width: 5px;
    height: 8px;
  }

  .news__more--pc {
    display: none;
  }

  .news__body {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .news__item {
    flex-direction: column;
    gap: 4px;
    padding: 20px 0;
  }

  .news__date {
    font-size: 14px;
    letter-spacing: 0.48px;
    width: auto;
  }

  .news__text {
    font-size: 16px;
    letter-spacing: 0.56px;
  }
}
