/* 経営概要 */

#company_about {
  padding: 60px 0;
}

#company_about table th,
#company_about table td{
  padding: 10px 5px;
}

.company_about_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.company_about_wrap table {
  width: 60%;
}

.company_about_wrap img {
  width: 40%;
}

/* 沿革 */

#company_history {
  padding: 60px 0;
  background-color: #ECF9E9;
}

.history_list  li {
  margin-bottom: 10px;
}

.history_img {
  display: flex;
  justify-content: space-between;
  gap: 2%;
  margin-top: 60px;
}

.history_img img{
  width: 49%;
}

.history_wrap {
  position: relative;
  margin: 50px auto 0;
  padding: 0 0 75px;
}

.history_wrap label {
  position: absolute;
  display: table;
  left: 50%;
  bottom: 0;
  margin: 0 auto;
  width: 280px;
  padding: 15px 0;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-color: #595757;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 1;
  border: 1px solid #595757;
  transition: 0.3s all;
}

.history_wrap label:hover {
  background-color: #fff;
  color: #595757;
}

.history_wrap label::before{
  content: '続きを見る';
}

.history_wrap input[type="checkbox"]:checked ~ label::before {
  content: '元に戻す';
}

.history_wrap input[type="checkbox"]{
  display: none;
}

.history_list {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.history_wrap input[type="checkbox"]:checked ~ .history_list{
  height: auto;
}

.history_list::before {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background: linear-gradient( rgba(236,249,233,0) 0%, rgba(236,249,233,0.8) 50%, #ecf9e9 100%);
}

.history_wrap input[type="checkbox"]:checked ~ .history_list::before {
  display: none;
}