@charset "utf-8";

.table-wrap { overflow-x: auto; }

/* 外枠 */
.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* 2カラム（左：基本、右：地図） */
.info-left,
.info-right {
  vertical-align: top;
  width: 50%;
  padding: 12px;
  border-left: 1px solid #eee;
}
.info-left { border-left: none; }

/* 左カラム内の入れ子表 */
.inner-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: .9rem;
}
.inner-table th,
.inner-table td {
  border: 1px solid #ddd;
  padding: 8px 10px;
  vertical-align: middle;
  text-align: left;
}
.inner-table th {
  width: 34%;
  background: #eef5ff;
  white-space: nowrap;
  text-align: center;
}

/* 右カラム：Google Map */
.map-embed {
  border: 1px solid #ddd;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: min(48vh, 380px);
  border: 0;
}

/* 「Googleマップで開く」 */
.map-link { margin: 8px 0 0; }
.button-link.same-as-table {
  display: inline-block;
  font-size: .9rem;
  background: #eef5ff;
  border: 1px solid #cfd9ff;
  color: #0056b3;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
}

/* 外観写真 */
.photo-row {
  padding: 0;
  border-bottom: 1px solid #ddd;
  line-height: 0;
  font-size: 0;
}
.photo-row img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border: 0;
}

/* レスポンシブ */
@media (max-width: 860px) {
  .info-left, .info-right {
    width: 100%;
    display: block;
    border-left: none;
  }
}