@media (prefers-reduced-motion: no-preference) {
  @view-transition {
    navigation: auto;
  }
}

h3 {
  max-width: 800px;
  margin: 1.5rem auto;
  font-size: 1.5rem;
}

.news-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 1rem auto;
  /* font-family: "Noto Sans JP", sans-serif; */
}

.news-item {
  border-left: 3px solid #d3a98d;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(231, 100, 84, 0.08);
  transition: all 0.2s ease;
}

.news-item:hover {
  /* border-left-color: #ff9a8b; */
  /* box-shadow: 0 3px 10px rgba(255, 154, 139, 0.15); */
}

.news-date {
  display: inline-block;
  background: #ad8b74;
  color: white;
  font-size: 0.8rem;
  padding: 0.2em 0.6em;
  border-radius: 20px;
  margin-bottom: 0.6rem;
  font-weight: normal;
  letter-spacing: 0.05em;
}

.news-content {
  line-height: 1.6;
  color: #5a4a42;
  font-size: 1rem;
}

.news-content b {
  /* display: block; */
  color: #413b36;
  /* padding-bottom: 0.4rem; */
}

.news-content a {
  display: inline-block;
  margin-top: 0.5rem;
  color: #a56833;
  text-decoration: none;
  border-bottom: 1px dashed #a56833;
  font-weight: bold;
  transition: all 0.15s;
  font-size: 0.95rem;
}

.news-content a:hover {
  border-bottom: 1px solid #a56833;
  color: #d35400;
}

.news-highlight {
  border: 1px solid #d3a98d;
  background: #fffcfa;
  border-left-color: #ad8b74;
  border-left-width: 3px;
}

@media (max-width: 600px) {
  h3 {
    text-align: center;
  }

  .news-list {
    margin: 0.8rem;
  }

  .news-item {
    padding: 0.7rem;
  }

  .news-content {
    font-size: 0.9rem;
  }

  .news-content a {
    margin-top: 0;
  }
}

@media (min-width: 1201px) {
  h3 {
    position: relative; /* 追加 */
    left: -50px; /* 追加 */
  }

  .news-list {
    position: relative; /* 追加 */
    left: -50px; /* 追加 */
  }
}
