* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: #f5ebe9;
  color: #333;
}
.kingtop {
  text-align: center;
  background: #fff;
}
.kingtop img {
  width: 50%;

}
.time-section {
  background: #fff;
  padding: 20px 5%;
}
.time-box {
  width: 100%;
  background: white;
  border: 2px dashed #aaa;
  border-radius: 10px;
  padding: 1% 5%;
}
.time-box li {
list-style:none
}
.map-section {
  padding: 40px 5%;
  background: #fff;
}
 h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* ---------- 会場案内 ---------- */
.map-img {
  max-width: 100%;
  margin-top: 20px;
}

/* ---------- 出展タイトル ---------- */
.exhibit-section {
  padding: 40px 5%;
}
.exhibit-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* PCで5列 */
  gap: 20px;
  color: #665930;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: relative;
}

.card img {
  width: 100%;
  border-radius: 8px;
}

.badge {
  position: absolute;
  top: -15px;              /* 少し上に浮かせる */
  left: 50%;               /* 横位置の中央へ */
  transform: translateX(-50%); /* 左位置を中央寄せ */
  background: #d37c7c;
  color: #fff;
  padding: 10px;
  width: 50px;             /* 円形用の幅 */
  height: 50px;            /* 円形用の高さ */
  border-radius: 50%;      /* ← これで丸型になります */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.card h3 {
  margin-top: 15px;
  font-size: 1rem;
  height: 50px;
border-bottom: 2px dotted #333;
}

.desc {
  font-size: 0.85rem;
  padding-bottom: 15px;
  margin: 20px 0 30px 0;
  text-align: left;
	vertical-align: text-top;
}
.author {
  width:85%;
	border-top: 3px solid #665930;
  font-size: 0.8rem;
  color: #666;
  padding: 15px 0;
position: absolute;
bottom: 0;
}

/* ---------- 企業ブース ---------- */
.company-section {
  padding: 20px 5%;
}
.company-box {
  width: 100%;
  background: white;
  border: 2px dashed #aaa;
  border-radius: 10px;
  padding: 1% 5%;
}

/* ---------- レスポンシブ（スマホ・タブレット） ---------- */
@media (max-width: 1024px) {
  .card-container {
    grid-template-columns: repeat(2, 1fr); /* 横2列表示 */
  }
  .card h3 {
  margin-top: 15px;
  font-size: 1rem;
  height: 90px;
border-bottom: 2px dotted #333;
}
.company-box {
  font-size: 0.85rem;
  padding: 1% 10%;
}
}
