/* ニュースセクション */
.company-section {
  padding: 80px 0;
  background-color: var(--light-background);
  position: relative;
  overflow: hidden;
}

.company-section::before,
.company-section::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.company-section::before {
  background: url("../assets/images/company-bg-01.png") no-repeat;
  background-size: contain;
  width: 500px;
  height: 500px;
  bottom: -200px;
  left: 100px;
}

.company-section::after {
  background: url("../assets/images/company-bg-02.png") no-repeat;
  background-size: contain;
  width: 300px;
  height: 300px;
  top: 90px;
  right: 80px;
}

.company-section .container {
  position: relative;
  z-index: 2;
  padding-bottom: 100px;
}

.company-card {
  background-color: var(--light-background);
  border-radius: 10px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
  padding: 30px;
  margin-bottom: 30px;
  max-width: 775px;
  margin-left: auto;
  margin-right: auto;
}

.company-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.company-item:last-child {
  border-bottom: none;
}

.company-date {
  font-size: 16px;
  color: var(--text-color);
  margin-right: 30px;
  min-width: 120px;
}

.company-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  flex-grow: 1;
}

.company-arrow {
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.company-arrow:hover {
  transform: translateX(5px);
}

.company-more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.company-title-with-icon {
  display: flex;
  align-items: center;
}

.company-icon {
  margin-left: 15px;
  width: 130px;
  position: relative;
  top: -25px;
  height: auto;
}

/* 会社概要テーブル */
.company-info {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}

.company-table {
  width: 676px;
  border-collapse: collapse;
  background-color: #fff;
  border: 1px solid #d9d9d9;
}

.company-table th,
.company-table td {
  padding: 20px;
  border-bottom: 1px solid #d9d9d9;
  line-height: 1.5;
}

.company-table th {
  width: 140px;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}

.company-table td {
  font-weight: 400;
}
