/* company.css */

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

.history-table td {
  border: 1px solid #ccc;
  padding: 12px;
  vertical-align: top;
}

.year-cell {
  background-color: #dbe0f1;
  font-weight: bold;
  text-align: left;
  white-space: nowrap;
}

.image-cell {
  width: 150px;
  text-align: center;
  vertical-align: middle;
}

.company-title-image {
    display: block;
    margin: 0 auto 50px auto;
}



/* SP用　css */
@media (max-width: 767px) {
	
    .company-title-image {
     margin: 0 auto 50px auto;
     width: 100%;
     max-width: 100%;
    }	
  .history-image {
    display: none;
  }
  .history-table .image-cell {
    display: none;
  }
}

