@charset "utf-8";
/* =========================================================================
   info-custom.css  ― お知らせ（情報公開）
   ========================================================================= */

.shine-sec-info {
  padding-top: 66px;
  padding-bottom: 90px;
}
.shine-doc-list {
  margin-top: 40px;
}
.shine-doc {
  margin-bottom: 26px;
  padding: 28px 30px;
  background: #fff;
  border: 3px solid #7FB8C1;
  border-radius: 26px;
}
.shine-doc:last-child {
  margin-bottom: 0;
}
.shine-doc__year {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-size: 2.1rem;
  font-weight: 400;
  color: #3E7F8B;
}
.shine-doc__dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #F7D64A;
}
.shine-doc__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 件数にかかわらず2カラム */
  gap: 14px;
}
.shine-doc__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1.5px solid #BFDCE1;
  border-radius: 18px;
  background: #E7F2F4;
  font-size: 1.5rem;
  color: #3E7F8B;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.shine-doc__link:hover {
  background: #7FB8C1;
  border-color: #7FB8C1;
  color: #fff;
  opacity: 1;
}
.shine-doc__icon {
  font-size: 2rem;
  color: #C9962E;
  transition: color 0.3s ease;
}
.shine-doc__link:hover .shine-doc__icon {
  color: #fff;
}
.shine-doc__name {
  flex: 1;
}
.shine-doc__ext {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.2rem;
  color: #B9A469;
  transition: color 0.3s ease;
}
.shine-doc__link:hover .shine-doc__ext {
  color: rgba(255, 255, 255, 0.85);
}

@media screen and (max-width: 639px) {
  .shine-sec-info { padding-top: 44px; padding-bottom: 50px; }
  .shine-doc { padding: 22px 20px; border-radius: 22px; }
  .shine-doc__year { font-size: 1.8rem; }
  .shine-doc__grid { grid-template-columns: 1fr; }
}
