.company-layout{ display:grid; gap:12px; }
.company-table{ width:100%; border-collapse:collapse; }
.company-table th{ text-align:left; width:30%; padding:10px; opacity:.8; }
.company-table td{ padding:10px; }

/* ========== Company Access (Map) Balanced ========== */
.access-card__inner{
    padding: 22px;
  }
  
  /* 見出し＋CTA */
  .access-head{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
  }
  
  .access-title{
    margin: 0;
    font-size: 1.25rem;
    letter-spacing: .02em;
    line-height: 1.2;
  }
  
  .access-actions{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  
  /* ボタンを揃える（btn--sm が無い場合でも整う） */
  .access-actions .btn{
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 700;
    white-space: nowrap;
  }
  
  /* 2カラムの比率を調整（地図：情報＝55:45） */
  .access-grid{
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 18px;
    align-items: center;
  }
  
  /* Map */
  .access-map-embed{
    border-radius: 16px;
    overflow: hidden;
    background: #f5f7fa;
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
  }
  
  /* 地図の“高さ”を出して右と釣り合いを取る */
  .access-map-embed iframe{
    width: 100%;
    height: 380px;  /* ここが効きます */
    display: block;
    border: 0;
  }
  
  .access-note{
    margin: 10px 0 0;
    font-size: 0.9rem;
    color: #666;
  }
  
  /* Info Table（右側を“カードっぽく”） */
  .access-table{
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
  }
  
  .access-table th,
  .access-table td{
    padding: 14px 16px;
    vertical-align: top;
    border-top: 1px solid rgba(0,0,0,.06);
    line-height: 1.7;
  }
  
  .access-table tr:first-child th,
  .access-table tr:first-child td{
    border-top: none;
  }
  
  .access-table th{
    width: 7.2em;         /* 右カラム内で綺麗に */
    color: #222;
    background: rgba(0,0,0,.025);
    font-weight: 800;
    white-space: nowrap;  /* ラベルが崩れにくい */
  }

  .author{
    display: inline-block;
    margin-left: auto;
    text-align: left;
  }
  p{
    display: flex;
    flex-direction: column;
  }
  
  
  /* さらに広い画面での見え方調整 */
  @media (min-width: 1100px){
    .access-map-embed iframe{ height: 420px; }
  }
  
  /* Mobile（縦積み＋CTAは左寄せにして見やすく） */
  @media (max-width: 768px){
    .access-card__inner{ padding: 18px; }
  
    .access-head{
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  
    .access-actions{
      justify-content: flex-start;
      width: 100%;
    }
  
    .access-grid{
      grid-template-columns: 1fr;
      gap: 14px;
    }
  
    .access-map-embed iframe{
      height: 260px; /* スマホで縦長過ぎない */
    }
  
    .access-table th{
      width: 100%;
      display: block;
      border-top: none;
      border-bottom: 1px solid rgba(0,0,0,.06);
      white-space: normal;
    }
    .access-table td{
      display: block;
      border-top: none;
    }
  }
  