.top-summary {
  font-size: 16px;
  line-height: 1.6;
  padding: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.top-summary > h1,
.top-summary > h2,
.top-summary > h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 1.2em;
  font-weight: bold;
  color: #222;
  background-color: #f0f0f0;
  padding: 8px 12px;
  border-radius: 6px;
}

.top-summary > p,
.top-summary > .lead {
  margin-bottom: 10px;
  font-size: 1em;
  color: #444;
}

.top-summary > select {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 16px;
  background-color: #fff;
  color: #333;
}

.special-list {
  list-style: none;
  padding-left: 0;
}

.special-list li {
  margin-bottom: 8px;
}

.special-list a {
  display: block;
  padding: 8px 12px;
  background: #f5f5f5;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: background 0.2s ease;
}

.special-list a:hover {
  background: #e0e0e0;
}

.select-group {
  margin-bottom: 20px;
}

.select-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  font-size: 1em;
  color: #333;
}

.select-group select {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #333;
}



/* ショートコード部分の継承リセット */
.shortcode-wrapper {
  all: unset;
  display: block;
}

/* レスポンシブ対応 */
@media screen and (max-width: 600px) {
  .top-summary {
    padding: 12px;
  }

  .top-summary > h1,
  .top-summary > h2,
  .top-summary > h3 {
    font-size: 1.1em;
    padding: 6px 10px;
  }

  .top-summary > select {
    font-size: 0.95em;
  }

  .special-list a {
    font-size: 0.95em;
  }
}

