.company-name{
	font-size:2em;
	font-weight:bold;
	color: #333;
}
.company-overview-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  font-family: sans-serif;
  color: #333;
}
@media (max-width: 768px) {
  .company-overview-container {
    grid-template-columns: 1fr;
  }
}
.company-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.company-card .card-title-bar{
    background-color: #f2f2f2; /* 薄いグレーの背景 */
}
.company-card h3 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1a2a3a;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 8px;
}
.card-title-bar {
  border-left: 4px solid #3b82f6;
  padding-left: 10px;
  margin-bottom: 16px;
}
.card-title-bar .sub-label {
  font-size: 12px;
  color: #666;
}
.card-title-bar h2 {
  font-size: 20px;
  margin: 0;
  color: #1a2a3a;
}
.company-address, .contact-section p, .info-list li, .executive, .company-card p {
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.6;
}
.contact-header {
  font-weight: bold;
  margin-top: 12px;
}
.info-list, .bank-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.info-list .label {
  font-weight: bold;
  min-width: 60px;
}
.bank-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dotted #eee;
  font-size: 14px;
}
.bank-list li:last-child {
  border-bottom: none;
}
.company-card i {
  color: #4a5568;
  width: 16px;
  text-align: center;
}