.manager_loop_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}
.manager_card {
   width: 540px;
   height: 600px;
   position: relative;
}
.manager_card:hover .managerCard {
	opacity: 1;
}
.manager_card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.manager_wrapper_card {
   width: 100%;
   height: 100%;
   max-height: 100%;
   overflow-y: auto;
   box-sizing: border-box;
   opacity: 0;
   padding-right: 5px;
   top: 0;
   left: 0;
   position: absolute;
   transition: 0.7s;
   cursor: pointer;
	background: #6244bb;
	color: white;
	padding: 25px;
}
.manager_wrapper_card p {
	color: white;
}
.managerCardTtl {
	font-size: 28px;
	color: white;
	margin-bottom: 15px;
}
.manager_card_ttl {
    font-size: 28px;
    color: #fed040;
    margin-bottom: 15px;
    position: absolute;
    font-weight: bold;
    top: 15px;
    left: 15px;
    line-height: 32px;
    text-shadow: 1px 1px 1px black;
}
.manager_card_ttl span {
	font-size: 20px;
	font-weight: 300;
}
@media screen and (max-width: 767px) {
  .manager_card {
	   width: 295px;
	   height: 320px;
   }
	.manager_card_ttl {
	font-size: 20px;
	line-height: 16px;
}
.manager_card_ttl span {
	font-size: 16px;
}
}
@media screen and (max-width: 600px) {
	.manager_loop_container {
		justify-content: center;
	}
}