.notice-page {
  max-width: 1180px;
  margin: 0 auto;
}

.notice-head {
  margin-bottom: 36px;
}

.notice-list {
  display: block;
}

.notice-row {
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
}

.notice-row:first-child {
  border-top: 1px solid #e5e5e5;
}

.notice-row__link {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: center;
  padding: 28px 0;
  color: inherit;
  text-decoration: none;
}

.notice-row--text .notice-row__link {
  display: block;
}

.notice-row__content {
  width: 100%;
  max-width: 760px;
}

.notice-row__date {
  display: block;
  margin-bottom: 10px;
  color: #555;
  font-size: 13px;
}

.notice-row__title {
  margin: 0 0 10px;
  color: #111;
  font-size: 22px;
  line-height: 1.5;
}

.notice-row__text {
  margin: 0 0 14px;
  color: #333;
  font-size: 15px;
  line-height: 1.8;
}

.notice-row__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111;
  font-size: 14px;
  font-weight: 700;
}

.notice-row__more::after {
  content: "›";
  font-size: 22px;
  line-height: 1;
}

.notice-row__image {
  width: 320px;
  height: 220px;
  overflow: hidden;
}

.notice-row__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.notice-row__link:hover .notice-row__title,
.notice-row__link:hover .notice-row__more {
  color: #d6001c;
}

.notice-detail-page {
  max-width: 920px;
  margin: 0 auto;
}

.notice-back {
  margin: 0 0 28px;
  font-size: 14px;
}

.notice-back a {
  color: #333;
  text-decoration: none;
}

.notice-back a:hover {
  color: #d6001c;
}

.notice-detail {
  background: #fff;
}

.notice-detail__header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}

.notice-detail__date {
  display: block;
  margin-bottom: 12px;
  color: #666;
  font-size: 14px;
}

.notice-detail__title {
  margin: 0;
  color: #111;
  font-size: 34px;
  line-height: 1.5;
}

.notice-detail__image {
  margin: 28px 0;
  text-align: center;
}

.notice-detail__image img {
  max-width: 300px;
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: zoom-in;
}

.notice-detail__body {
  font-size: 16px;
  line-height: 2;
  color: #222;
}

.news-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.news-modal.is-open {
  display: flex;
}

.news-modal-image {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
}

.news-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 768px) {
  .notice-head {
    margin-bottom: 24px;
  }

  .notice-row__link {
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
    align-items: stretch;
    padding: 22px 0;
  }

  .notice-row--text .notice-row__link {
    display: block;
  }

  .notice-row__image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .notice-row__title {
    font-size: 18px;
  }

  .notice-row__text {
    font-size: 14px;
  }

  .notice-detail__title {
    font-size: 26px;
  }

  .notice-detail__image img {
    max-width: 100%;
  }

  .notice-detail__body {
    font-size: 15px;
    line-height: 1.9;
  }

  .news-modal-close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }
}