.about-message {
  padding: 120px 0;
}

.message-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.message-text {
  flex: 1;
}

.message-text span {
  display: inline-block;
}
.sub-title {
  color: var(--primary-color);
  font-weight: bold;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 15px;
}

.message-text h2 {
  font-size: 2.5rem;
  line-height: 1.4;
  margin-bottom: 30px;
  color: var(--dark-color);
}

.message-text p {
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.ceo-name {
  margin-top: 40px;
  font-weight: bold;
  font-size: 1.1rem;
}

.ceo-name span {
  font-size: 1.4rem;
  margin-left: 10px;
}

.message-image {
  flex: 1;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #94a3b8;
  font-weight: bold;
}

.company-info {
  background-color: var(--light-color);
  padding: 120px 0;
}

.info-card {
  max-width: 900px;
  margin: 40px auto 0;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  padding: 25px 40px;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: middle;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.info-table th {
  width: 35%;
  text-align: left;
  color: var(--dark-color);
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  padding-left: 55px;
}

.info-table th::before {
  content: "";
  display: block;
  width: 4px;
  height: 1.7em;
  background: var(--primary-color);
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 2px;
}

.info-table td {
  color: var(--secondary-color);
  font-size: 1rem;
  line-height: 1.8;
}

.en {
  display: block;
  font-size: 0.8rem;
  color: var(--primary-color);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .about-message {
    padding: 50px 30px;
  }
  .message-content {
    display: block;
  }

  .message-text h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    word-break: break-all;
  }

  .message-image {
    width: 100%;
    margin-top: 30px;
  }

  .image-placeholder {
    aspect-ratio: 16 / 9;
  }

  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
    padding: 15px 20px;
  }

  .info-table th {
    padding-left: 30px;
    border-bottom: none;
    padding-bottom: 5px;
  }

  .info-table th::before {
    left: 20px;
    height: 1.2em;
    top: 25px;
    transform: none;
  }

  .en {
    margin-bottom: 2px;
    font-size: 0.7rem;
    position: static;
  }

  .info-table td {
    padding-top: 0;
    color: var(--dark-color);
    font-weight: 500;
  }

  .info-card {
    margin: 20px 15px;
    border-radius: 8px;
  }
}
