/* =============================================
   pages/access.css — アクセス
   ---------------------------------------------
   wp-block-columns（左：情報テーブル / 右：地図）の
   2カラム構造に元HTMLデザインを適用。
   ============================================= */


/* -------------------------------------------
   1. is-style-bar 見出し（事務局所在地・営業時間）
   ------------------------------------------- */
.wp-block-heading.is-style-bar {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--c-brand-800);
  margin: 0 0 var(--sp-8);
  padding: 0 0 var(--sp-5);
  position: relative;
  letter-spacing: var(--tr-wide);
  line-height: var(--lh-heading);
  background-image: linear-gradient(to right, var(--c-brand-700), var(--c-brand-700));
  background-size: 80px 3px;
  background-position: 0 100%;
  background-repeat: no-repeat;
}
.wp-block-heading.is-style-bar::before {
  content: none !important;
  display: none !important;
}
.wp-block-heading.is-style-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--c-line);
}


/* -------------------------------------------
   2. 2カラム配置（左テーブル / 右地図）
   ------------------------------------------- */
.wp-block-columns.are-vertically-aligned-top {
  gap: 50px !important;
  margin: 24px 0 0 0 !important;
}
.wp-block-columns.are-vertically-aligned-top > .wp-block-column {
  flex-basis: 0 !important;
  flex-grow: 1 !important;
}


/* -------------------------------------------
   3. 小見出し is-style-square
   ------------------------------------------- */
.wp-block-heading.is-style-square {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-brand-800);
  margin: 0 0 24px 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.55em;
}
.wp-block-heading.is-style-square::before {
  background: var(--c-brand-700) !important;
}


/* -------------------------------------------
   4. info-table（事務局情報・営業時間テーブル）
   ------------------------------------------- */
.wp-block-table.info-table {
  margin: 0;
}
.wp-block-table.info-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  overflow: hidden;
}
.wp-block-table.info-table th,
.wp-block-table.info-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
  line-height: 1.8;
  border: 0;
  border-bottom: 1px solid var(--c-line);
}
.wp-block-table.info-table tr:last-child th,
.wp-block-table.info-table tr:last-child td {
  border-bottom: 0;
}
.wp-block-table.info-table th {
  background: var(--c-bg-alt);
  color: var(--c-text);
  font-weight: 600;
  width: 130px;
  white-space: nowrap;
  vertical-align: top;
}
.wp-block-table.info-table td {
  color: var(--c-text);
}
.wp-block-table.info-table a {
  color: var(--c-brand-700);
  text-decoration: none;
}
.wp-block-table.info-table a:hover {
  text-decoration: underline;
}


/* -------------------------------------------
   5. 地図 access-map
   ------------------------------------------- */
.access-map {
  width: 100%;
  height: 450px;
  background: var(--c-bg-alt);
  border-radius: 8px;
  overflow: hidden;
}
.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


/* -------------------------------------------
   6. 営業時間セクションの注釈 t-small
   ------------------------------------------- */
.t-small {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-top: 16px;
}


/* -------------------------------------------
   7. レスポンシブ
   ------------------------------------------- */
@media (max-width: 768px) {
  .wp-block-columns.are-vertically-aligned-top {
    flex-direction: column;
    gap: 32px !important;
  }
  .access-map {
    height: 320px;
  }
  .wp-block-table.info-table th {
    width: 100px;
  }
  .wp-block-table.info-table th,
  .wp-block-table.info-table td {
    padding: 12px 14px;
    font-size: 14px;
  }
}
