img {
  max-width: 100%;
  height: auto;
}
.message {
	  position: relative;
	  display: flex;
	  height: 850px;
	  justify-content: flex-start;
	  overflow: hidden;
}
.message video{
	height: 100%;
  width: 100%;
  object-fit: cover;
}
  .message_ct {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.message_ct .container {
display: flex;
  gap: 40px;
  justify-content: space-between;
  padding: 100px 15px 100px;
}
.message_img {
  width: 80px;
}
.message_content {
  padding-top: 0;
  padding-bottom: 0;
  width: calc(100% - 140px);
}
.message_content h2 {
  color: #000;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}
.message_content h3 {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  margin:0 0 15px;
}
.message_des {
  margin-top: 42px;
  padding-left: 0;
  transform: unset;
  letter-spacing: 2px;
}
.message_des p{
margin-bottom:30px;
}
.recruit_list_item h3{
	color:#fff;
	font-size:15px;
	margin:15px 0;
	text-align: center;
}
.recruit_list_item p{
	color:#fff;
	font-size:14px;
	line-height: 1.5;
}
.landmark_group .group_list_item {
  justify-content: flex-start;
}
@media (min-width:1300px){
	.recruit_list {
	  top: -100px;
	}
}
@media (max-width:1200px){	
	.message {
	  height: 1000px;
	}
	.message_ct .container {
	  display: flex;
	  gap: 20px;
	  justify-content: space-between;
	  padding: 50px 15px 100px;
	}
	.message_img {
	  width: 40px;
	}

	.bg_message {
	  object-fit: cover;
	  height: 100%;
	  width: 100%;
	}
	.message_content {
	  width: calc(100% - 40px);
	}
	.message_content h2 {
	  font-size: 20px;
    margin-bottom: 20px;
	}
		.message_content h3 {
	  font-size: 18px;
	  margin: 0 0 10px;
	}
	.message_des {
	  margin-top: 0;
	  font-size: 12px;
	}
}
@media (max-width: 560px) {
  header .header_btn {
    margin-right: 0;
    text-align: right;
  }
}

/*5/28追加分*/

.company-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.company-detail.open {
  max-height: 1000px;
}

.toggle-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin: 10px 0;
}

.toggle-btn img {
  width: 103px;
  height: auto;
  display: block;
}

.close-btn {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, max-height 0.5s ease;
}

.close-btn.show {
  opacity: 1;
  max-height: 100px; 
}
