.info-archive,
.single-info {
  /* max-width: 1200px; */
  margin: 0 auto;
  background: #f7efe3;
}

.support {
  text-align: center;
  background: #f7efe3;
  padding-bottom: 50px;
}

.infomation {
  background: #f7efe3;
}

.support h3 {
  font-size: 24px;
}

.info-body h2 {
  margin: 5px 0;
}

.info-excerpt {
  font-size: 14px;
  color: #555;
}

.wave-bg-1::before {
  top: -7%;
}

.wave-bg-1::after {
  bottom: -7%;
}

.link-section {
  background: #f7efe3;
  padding: 10px 65px 30px;
}
/* =========================
   メインINFOMATION
========================= */
.info-main-block {
  max-width: 900px;
  margin: 0 auto 40px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-align: center;
}

/* =========================
   お知らせINFOMATION
========================= */
.info-list-block {
  max-width: 900px;
  margin: 90px auto 40px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-align: center;
}

.info-list {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

/* カード全体 */
.info-list-item {
  background: #f7efe3;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

.info-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.info-card {
  background: #f4f4f4;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  background: #e3e3e3;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.info-card time {
  flex-shrink: 0;
  width: 110px;
  font-size: 14px;
  color: #7fa0c0;
}

.info-card h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.info-item {
  text-align: center;
}

/* 関連リンク */
/* タイトル */
.section-title {
    text-align: center;
    font-size: 2.0rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.link {
  display: flex;
  flex-wrap: wrap; /* 横幅に応じて折り返す */
  gap: 20px 40px;
  list-style: none;
  padding: 0;
  margin: 40px auto 0;

  max-width: 1200px;
}

.link li {
  display: flex;
  width: calc(25% - 30px);
}

.link li p {
  position: relative;
  padding-left: 30px;
  margin: 0;                   
  line-height: 1.4;  
}

.link li p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  
  width: 18px;
  height: 18px;
  background: #6c8ebf;
  border-radius: 50%;
}

.link li p::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);

  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

@media (max-width: 768px) {
  .link {
    flex-direction: column;
    gap: 15px;
  }

  .link li {
    width: 100%;
  }

  .lint a {
    font-size: 16px;
  }

  .info-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .info-card time {
    width: auto;
  }

  .wave-bg-1::before {
    top: -5%;
  }

  .wave-bg-1::after {
    bottom: -5%;
  }
}