.company-info .site-preview-thumb {
  width: 100%;
  aspect-ratio: 16 / 10; /* 16:10 固定 */
  overflow: hidden;
  display: flex;
  align-items: center; /* 縦中央揃え */
  justify-content: center;
}

.company-info .site-preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 上下カットして均一表示 */
}

.company-info .site-preview-credit {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #666;
}
.company-info .site-preview-credit a {
  color: #666;
  text-decoration: none;
}

/* google口コミ関係 */
.google-rating-box {
  position: relative;
  padding: 0.5rem 0;
}

.google-rating-box .stars {
  color: orange; /* 濃い黄色 */
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.google-rating-box .score {
  font-size: 1.3rem;
  font-weight: bold;
  margin-right: 0.5rem;
}

.google-rating-box .count {
  color: #555;
  font-size: 0.95rem;
}

.google-rating-box .credit {
  text-align: right;
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.3rem;
}
.google-rating-box .credit a {
  color: #888;
  text-decoration: none;
}

/* 会社情報テーブルのスタイル調整 */
table.company-info {
  width: 100%;
  border-collapse: collapse;
}

table.company-info th,
table.company-info td {
  border: 1px solid #fff;
  padding: 8px 12px;
  vertical-align: top;
}

/* thの幅を固定（例：25%） */
table.company-info th {
  width: 100px;
  background: #0d2a59;
  text-align: left;

  color: #fff;
  text-align: center; /* 横方向中央 */
  vertical-align: middle; /* 縦方向中央 */
  white-space: nowrap; /* 折り返し防止 */
}

/* td側を広くとる */
table.company-info td {
  background: #e4e9ef;
}

/* ===== スマホ対応 ===== */
@media screen and (max-width: 767px) {
  table.company-info,
  table.company-info tbody,
  table.company-info tr,
  table.company-info th,
  table.company-info td {
    display: block; /* ブロック要素に変換 */
    width: 100% !important;
  }

  table.company-info tr {
    margin-bottom: 5px; /* 行の間に余白 */
    border: 1px solid #fff;
    border-radius: 0%;
    overflow: hidden;
  }

  table.company-info th {
    text-align: left; /* スマホでは左寄せ推奨 */
    padding: 8px 10px;
    border-bottom: 1px solid #ddd;
  }

  table.company-info td {
    padding: 8px 10px;
    border: none;
  }
}
