/* top-お知らせ４件 --- 
.news-section {
  width: 90vw;
  max-width: 1100px;
  margin: 0 auto 80px auto;
  padding-top: 48px;
}
.news-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  letter-spacing: 0.1em;
}
.news-title .news-sub {
  color: #29b6f6;
  font-size: 1.2rem;
  margin-left: 12px;
  position: relative;
  font-weight: 400;
  display: inline-block;
  border-bottom: 2px solid #29b6f6;
}
.news-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.news-card {
  display: flex;
  background: #fff9d0;
  border-radius: 12px;
  overflow: hidden;
  width: 44%;
  min-width: 320px;
  max-width: 520px;
  box-shadow: 0 3px 16px #0001;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
.news-card:hover {
  box-shadow: 0 10px 24px #29b6f660;
  transform: translateY(-4px) scale(1.03);
}
.news-thumb {
  min-width: 160px;
  max-width: 180px;
  height: 120px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-meta {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-date {
  color: #888;
  font-size: 0.99rem;
  margin-bottom: 8px;
}
.news-title-txt {
  font-weight: 500;
  font-size: 1.09rem;
  line-height: 1.3;
}
.news-more {
  margin: 32px auto 0 auto;
  text-align: center;
}
.news-more-link {
  display: inline-block;
  border: 2px solid #29b6f6;
  color: #29b6f6;
  padding: 12px 46px;
  border-radius: 7px;
  font-size: 1.08rem;
  background: #fff;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 2px 8px #29b6f615;
}
.news-more-link:hover {
  background: #29b6f6;
  color: #fff;
}
@media (max-width: 800px) {
  .news-cards { flex-direction: column; gap: 18px; }
  .news-card { width: 96%; min-width: unset; max-width: unset; }
}*/
/* --お知らせ詳細ページ------------   */
.news-detail-main {
  background: #f6f7fa;
  min-height: 70vh;
  padding: 56px 0 80px 0;
  padding-top:5rem;
}
.news-detail-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
.news-detail-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 32px #29b6f622;
  padding: 36px 36px 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news-detail-thumb {
  width: 100%;
  max-width: 460px;
  max-height: 340px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 12px;
  background: #eaf0f6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-detail-thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.news-detail-meta {
  width: 100%;
  text-align: left;
}
.news-detail-date {
  color: #29b6f6;
  font-size: 1.08em;
  font-weight: bold;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}
.news-detail-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 22px;
}
.news-detail-content {
  font-size: 1.08em;
  line-height: 1.75;
  color: #222;
}
.news-detail-back {
  margin-top: 40px;
  text-align: center;
}
.news-detail-back-link {
  color: #29b6f6;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid #29b6f6;
  transition: color 0.2s;
}
.news-detail-back-link:hover {
  color: #0077b6;
  border-bottom-color: #0077b6;
}
@media (max-width: 600px) {
  .news-detail-card { padding: 18px 6px; }
  .news-detail-title { font-size: 1.3rem; }
  .news-detail-thumb { max-height: 190px; }
}
/*--------お知らせ一覧ーーーーーーー*/
.news-archive-main {
  background: #f8fafb;
  min-height: 85vh;
  padding: 50px 0;
  padding-top:5rem;
}
.news-archive-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.news-archive-title {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 36px;
  position: relative;
}
.news-archive-title span {
  color: #29b6f6;
  font-size: 1.15rem;
  font-weight: normal;
  margin-left: 14px;
  border-bottom: 2px solid #29b6f6;
  display: inline-block;
}
.news-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: center;
}
.news-card {
  background: #f9e1453d;
  border-radius: 15px;
  box-shadow: 0 4px 20px #29b6f60d;
  overflow: hidden;
  width: 46%;
  min-width: 300px;
  max-width: 480px;
  display: flex;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.18s;
  position: relative;
}
.news-card:hover {
  box-shadow: 0 10px 32px #29b6f644;
  transform: translateY(-3px) scale(1.03);
}
.news-thumb {
  width: 130px;
  min-width: 120px;
  height: 120px;
  background: #d1e6ef;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-right: 1px solid #f0f0f0;
}
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-meta {
  padding: 22px 16px 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.news-date {
  color: #0099cc;
  font-size: 0.98em;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.news-title-txt {
  font-weight: 600;
  font-size: 1.15em;
  line-height: 1.4;
  color: #222;
}*/
@media (max-width: 850px) {
  .news-card { width: 97%; min-width: unset; max-width: unset; }
  .news-cards { gap: 16px; }
  .news-thumb { height: 80px; min-width: 80px; }
}
