.information_wrapper {
  width: 45%;
}

.information_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.information_table th {
  border-right: 2px solid #333333;
  padding: 5px;
  font-size: 0.8rem;
  color: #333333;
  text-align: center;
  vertical-align: middle;
}

.information_table td {
  line-height: 1.5;
  padding: 10px;
  vertical-align: middle;
  font-size: 0.8rem;
  color: #333333;
}

.map_wrapper {
  width: 50%;
}

/* Google Map 埋め込みを比率固定でレスポンシブに */
.map_responsive {
  position: relative;
  width: 100%;
  padding-top: 75%;  /* 16:9 (高さ÷幅×100) */
  overflow: hidden;
}

.map_responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* 768px以下：縦並び */
@media screen and (max-width: 768px) {
  .information_wrapper,
  .map_wrapper {
    width: 100%;
    margin-bottom: 30px;
  }
}