.hero.is-main {
  background-image: url('../images/top/main.webp'); /* ←背景画像（任意） */
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero.is-main .hero-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  background-color: rgba(0, 0, 0, 0.4); /* 背景に半透明の黒 */
  text-align: center;
}

.logo-image {
  max-width: 300px;
  width: 80%;
  height: auto;
}

.catch-copy {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  color: white;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .logo-image {
    max-width: 200px;
  }
  .catch-copy {
    font-size: 1.2rem;
  }
}

/* テーブル全体の見た目を整える */
.custom-table {
  border-collapse: collapse;
  width: 100%;
}

/* 通常サイズ（PCなど大きい画面） */
.custom-table th,
.custom-table td {
  font-size: 1rem;
}

/* 左列（<th>）を30%、右列（<td>）を70%に */
.custom-table th {
  width: 30%;
  vertical-align: top; /* 複数行表示でも整列 */
  text-align: left;
  background-color: #f9f9f9; /* 見やすくするため */
  padding: 0.75em;
}

/* 右列（<td>） */
.custom-table td {
  width: 70%;
  padding: 0.75em;
}

@media screen and (max-width: 768px) {
  .custom-table th,
  .custom-table td {
    font-size: 0.9rem;
  }
}
