/* セミナー表示用のスタイル */
.seminar__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 75%;
  margin: 0 auto;
}

.seminar__item {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  padding: 15px;
  transition: all 0.3s ease;
}

.seminar__item:hover {
  background-color: #f5f9ff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.seminar__item-link {
  display: flex;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.seminar__date {
  font-size: 16px;
  color: #333;
  font-weight: normal;
  min-width: 100px;
  margin-right: 15px;
}

.seminar__place {
  font-size: 14px;
  color: #fff;
  background-color: #007efd;
  padding: 4px 15px;
  border-radius: 4px;
  display: inline-block;
  margin-right: 20px;
  white-space: nowrap;
}

.seminar__text {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .seminar__list {
    width: 90%;
  }

  .seminar__item {
    flex-direction: column;
    padding: 12px;
    align-items: center;
  }
  
  .seminar__item-link {
    flex-direction: column;
    align-items: center;
  }
  
  .seminar__date {
    font-size: 14px;
    min-width: auto;
    margin-right: 0;
    margin-bottom: 8px;
    text-align: center;
    width: 100%;
  }
  
  .seminar__place {
    font-size: 12px;
    padding: 3px 10px;
    margin-right: 0;
    margin-bottom: 8px;
    text-align: center;
  }
  
  .seminar__text {
    width: 100%;
    margin-top: 0;
    font-size: 14px;
    text-align: center;
  }
}

/* さらに小さい画面用 */
@media (max-width: 480px) {
  .seminar__list {
    width: 95%;
  }
  
  .seminar__item {
    padding: 15px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .seminar__item-link {
    flex-direction: column;
    align-items: center;
  }
  
  .seminar__date {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .seminar__place {
    margin-right: 0;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .seminar__text {
    text-align: center;
    width: 100%;
    margin-top: 0;
  }
}