.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.title {
  font-size: 28px;
  margin-bottom: 20px;
}

/* 上部 */
.top {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.top-text {
  flex: 1;
}

.top-image {
  flex: 1;
}

.top-image img {
  width: 100%;
  height: auto;
}

/* セクション */
.section {
  margin-bottom: 40px;
}

.section h2 {
  font-size: 20px;
  margin-bottom: 15px;
  border-left: 4px solid #333;
  padding-left: 10px;
}

.center {
  text-align: center;
}

/* リンク */
.link {
  text-decoration: underline;
}

.btn-small{
  display: block;
  text-align: right;
  margin: 0;
}

/* スマホ */
@media (max-width: 768px) {
  .top {
    flex-direction: column;
  }

}

/*
展示会一覧
*/

.exhi-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.exhi-card {
  border: 1px solid #ddd;
}

.exhi-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.exhi-card h2 {
  font-size: 18px;
  margin: 10px 10px;
}

.date {
  font-size: 14px;
  color: #666;
  margin: 0px 10px;
}

.date p{
  margin-bottom: 0.2em;
}

@media (max-width:768px){
  .exhi-list {
    grid-template-columns: 1fr;
  }
}

.exhi-status{
  text-align: center;
  font-weight: bold;
  color: #fff;
}

.exhi-open {
  background-color: #0a7f2e;
}

.exhi-coming {
  background-color: #0073aa;
}

.exhi-end {
  background-color: #999;
}