



/* ---- staff ---- */
.company-staff {
	background: #444;
}
.company-staff ul {
	display: flex;
	flex-wrap: wrap;
}
.company-staff ul li.coming {
	display: flex;
	justify-content: center;
	align-items: center;
  font-weight: bold;
	font-size: 1.8rem;
}
.company-staff ul li {
	width: 25%;
	height: 40rem;
	background-color: #eee;
	border-radius: 3rem;
	color: #000;
	position: relative;
  transition: all .4s;
}
.company-staff ul li:hover {
  background-color: #5ab3c2;
  color: #fff;
}
.company-staff ul li:hover {
	cursor: pointer;
}
.company-staff ul figure img {
	height: 30rem;
  width: 100%;
	object-fit: cover;
	border-radius: 3rem 3rem 0 0;
  object-position: center top;
}
.company-staff ul dl {
	height: 10rem;
	padding: 1.5rem 2rem;
	font-weight: bold;
}
.company-staff ul dl dt {
	font-weight: bold;
}
.company-staff ul dl dd {
	font-size: 2rem;
}
.company-staff ul i {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	width: 3.2rem;
	height: 3.2rem;
	background: #1b3171;
	border-radius: 50%;
	transition: all .3s;
}
.company-staff ul li:hover i {
	background: #fff;
}
.company-staff ul i::before,
.company-staff ul i::after {
	content: "";
	background: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	transition: all .3s;
}
.company-staff ul i::before {
	width: 1.2rem;
	height: 0.1rem;
}
.company-staff ul i::after {
	width: 0.1rem;
	height: 1.2rem;
}
.company-staff ul li:hover i::before,
.company-staff ul li:hover i::after {
	background: #1b3171;
}
@media screen and (max-width: 768px) {
	.company-staff ul li {
		width: 50%;
		height: 24rem;
	}
	.company-staff ul figure img {
		height: 16rem;
	}
	.company-staff ul dl {
		height: 10rem;
		padding: 1.5rem;
	}
	.company-staff ul dl dt {
		font-weight: bold;
	}
	.company-staff ul dl dd {
		font-size: 2rem;
	}
	.company-staff ul i {
		position: absolute;
		right: 1rem;
		bottom: 1rem;
		width: 3.2rem;
		height: 3.2rem;
		border-radius: 50%;
		transition: all .3s;
	}
}
/* -------------------------------------------

modal

------------------------------------------- */
.modal {
	background: rgba(0,0,0,0.8);
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	z-index: 9999999999;
}
/* ---- modal-content ---- */
.modal-content {
	animation-name: modalopen;
	animation-duration: .3s;
	width: 96rem;
	margin: 0 auto;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
@media screen and (max-width: 768px) {
	.modal-content {
		width: calc(100% - 6rem);
		height: auto;
		display: block;
		padding: 6rem 0;
	}
}
@keyframes modalopen {
	from {
		opacity: 0
	}
	to {
		opacity: 1
	}
}
/* ---- modal-body ---- */
.modal-body {
	display: flex;
	background: #fff;
	color: #000;
	height: 60vh;
	overflow-y: scroll;
}
@media screen and (max-width: 768px) {
	.modal-body {
		height: 70vh;
	}
  .modal-body figure img {
    height: 30rem;
    object-fit: cover;
    width: 100%;
  }
}
.modal-body > * {
	width: 50%;
}
.modal-body > div {
	padding: 4rem 4rem 0 4rem;
}
.modal-body > div > dl {
	padding-bottom: 4rem;
}
.modal-body > div > dl > dt {
	font-size: 2.2rem;
	font-weight: bold;
	margin-bottom: 2rem;
	display: flex;
	flex-direction: column;
}
.modal-body > div > dl > dt span {
	font-size: 1.4rem;
}
.modal-body > div > dl > dd dl dt {
  background-color: #5ab3c2;
	color: #fff;
	font-weight: bold;
	padding: 0.2rem 1rem 0.3rem 1rem;margin-bottom: 1rem;
}
.modal-body > div > dl > dd dl dd {
	font-size: 1.2rem;
}
.modal-body > div > dl > dd dl dd:not(:last-of-type) {
	margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
	.modal-body {
		display: block;
	}
	.modal-body > * {
		width: 100%;
	}
	.modal-body > div {
		padding: 2rem 2rem 0 2rem;
	}
	.modal-body > div > dl {
		padding-bottom: 2rem;
	}
}
/* ---- close ---- */
.close {
	position: absolute;
	right: 2rem;
	top: 2rem;
	font-size: 2rem;
	display: block;
	transition: all .3s;
	background: #fff;
	width: 4rem;
	height: 4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: all .3s;
	z-index: 999;
}
.close i::before,
.close i::after {
	content: "";
	background: #000;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);	
	width: 2rem;
	height: 0.2rem;
  transition: all .3s;
}
.close i::before {
	transform: translate(-50%, -50%) rotate(45deg);	
}
.close i::after {
	transform: translate(-50%, -50%) rotate(-45deg);	
}
.close:hover {
	cursor: pointer;
  background: #5ab3c2;
}
.close:hover i::before,
.close:hover i::after {
  background: #fff;

}
@media screen and (max-width: 768px) {
	.close {
		right: auto;
		left: 1.5rem;
		top: 1.5rem;
		width: 3rem;
		height: 3rem;
	}
	.close i::before,
	.close i::after {
		width: 1.5rem;
	}
}