/* ═══ お知らせセクション CSS ═══ */
.notices-hero {
    position: relative;
    height: 30vh;
    min-height: 220px;
    display: flex
;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: url(../images/1.jpg) center 30% / cover no-repeat !important;
}

.notices-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,26,30,0.3) 0%, rgba(74,61,110,0.65) 100%);
}
.notices-hero-content {
  position: relative; z-index: 1;
  padding: 2rem;
}
.notices-hero-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: .85rem;
  letter-spacing: .55em;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
  display: block;
}
.notices-hero-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: .1em;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.notices-hero-badge {
  display: inline-block;
  padding: .4rem 1.4rem;
  border: 1px solid rgba(255,255,255,.4);
  font-size: .72rem;
  letter-spacing: .3em;
  color: rgba(255,255,255,.75);
  border-radius: 2px;
}

#notices {
  padding-top: 3rem;
  padding-bottom: 0;
}

#concept {
  padding-top: 2rem !important;
}

.notices-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.notice-item {
  border-left: 1px solid #c8c8be;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.notice-body {
  flex: 1;
  min-width: 0;
}

.notice-date {
  font-size: 0.75rem;
  color: #aaa;
  display: block;
  margin-bottom: 0.25rem;
}

.notice-text {
  margin: 0;
  font-size: .92rem;
  line-height: 2.3;
  color: rgba(28, 26, 30, .9);
}

.notice-img {
  width: 140px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.notices-loading,
.notices-empty {
  color: #999;
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem 0;
}

.notice-item {
  position: relative;
  padding-bottom: 32px; /* リンクの分スペース確保 */
}

.notices-archive {
  text-align: right;
  margin-top: 8px;
  font-size: .8rem;
}

/* スマホでは写真を下に */
@media (max-width: 600px) {
  .notice-item {
    flex-direction: column;
  }
  .notice-img {
    width: 100%;
    height: 180px;
  }
}
