@charset "utf-8";

.people {
	max-width: 100rem;
	margin: 8rem auto 5rem;
}
.people .inner {
	max-width: 86rem;
	margin: 0 auto;
}
@media (max-width: 768px) {
	.people {
		max-width: 100%;
		margin-bottom: 0;
	}
	.people .inner {
		max-width: 100%;
	}
}

/* profile */
.people .profile .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 5rem;
}
.people .profile .pic {
	width: 21.1rem;
}
.people .profile .txt {
	line-height: 1.8;
}
.people .profile .txt .name {
	font-weight: bold;
}
.people .profile .txt .dept {
	font-size: 1.4rem;
}
.people .profile .lead {
	margin-top: 7rem;
	line-height: 1.8;
	text-align: center;
}
.people .profile .lead p {
	display: inline-block;
	text-align: left;
}
@media (max-width: 768px) {
	.people .profile .wrap {
		flex-direction: column;
		gap: 4rem 0;
	}
	.people .profile .pic {
		width: 32.5rem;
	}
	.people .profile .txt {
		line-height: 1.6;
	}
	.people .profile .txt .name {
		font-size: 3rem;
	}
	.people .profile .txt .dept {
		font-size: 2.8rem;
	}
	.people .profile .lead {
		margin-top: 11rem;
		padding: 0 3.5rem;
		font-size: 2.9rem;
		line-height: 1.6;
	}
}

/* works */
.people .works {
	margin-top: 8rem;
}
.people .works .worksTtl {
	margin-top: 6.5rem;
	padding: 3rem 0;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	display: flex;
	justify-content: space-between;
	gap: 0 5rem;
}
.people .works .worksTtl div h2 {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.5;
}

.people .works .worksTtl div h2 .h2__small__text {
	font-size: 1.4rem;
}

.people .works .worksTtl p:last-child {
	width: 42rem;
	font-size: 1.4rem;
	line-height: 1.5;
}
.people .works .worksTtl p > a {
	color: blue;
	text-decoration: underline;
	cursor: pointer;
}
.people .works .pic {
	margin-top: 3.5rem;
	text-align: center;
}
.people .works .pic + .pic {
	margin-top: 2rem;
}
@media (max-width: 768px) {
	.people .works {
		margin-top: 10rem;
		position: relative;
	}
	.people .works::before {
		display: block;
		content: '';
		width: calc(100% - 7rem);
		height: 1px;
		background-color: #000;
		position: absolute;
		top: 0;
		left: calc(50% - calc(100% - 7rem) / 2);
	}
	.people .works .worksTtl {
		margin-top: 0;
		padding: 10rem 0 6rem;
		border: none;
		flex-direction: column;
		align-items: center;
		gap: 8rem 0;
		text-align: center;
	}
	.people .works .worksTtl div h2 {
		font-size: 3.4rem;
		line-height: 1.3;
	}

	.people .works .worksTtl div h2 .h2__small__text {
		font-size: 2.6rem;
	}
	.people .works .worksTtl p:last-child {
		width: 100%;
		padding: 0 3.5rem;
		font-size: 2.8rem;
		line-height: 1.6;
		text-align: left;
	}
	.people .works .pic {
		margin-top: 0;
	}
	.people .works .pic + .pic {
		margin-top: 3rem;
	}
}
/*=====movieModal=====*/
.people .modal-video {
	background-color: rgba(0,0,0,0.7);
}
.people .modal-video-close-btn {
	cursor: pointer;
}
/*=====worksModal=====*/
.people .worksModal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	z-index: 1000;
	background-color: rgba(0,0,0,0.7);
	overflow-y: scroll;
}
.people .worksModalBg {
	position: absolute;
	height: 100vh;
	width: 100%;
}
.people .worksModalInnerWrap {
	margin: 8rem auto;
	max-width: 80rem;
	position: relative;
}

.people .worksModalInnerWrap .worksModalBtnClose {
	display: inline-block;
	vertical-align: middle;
	color: #333;
	width: 2em;
	height: 0.2em;
	background: currentColor;
	border-radius: 0.1em;
	transform: rotate(45deg);
	position: absolute;
	top: 2rem;
	right: 1rem;
	cursor: pointer;
  }
  
  .people .worksModalInnerWrap .worksModalBtnClose::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
	border-radius: inherit;
	transform: rotate(90deg);
  }

.people .worksModalInnerWrap .worksModalBox {
	background: #fff;
	padding: 4rem;
}
.people .worksModalInnerWrap .worksModalBox .modalContents + .modalContents {
	margin-top: 5rem;
	padding-top: 6rem;
	border-top: 0.1rem solid #000;
}

.people .worksModalInnerWrap .worksModalBox .modalContents video {
	width: 100%;
	height: auto;
}

.people .worksModalInnerWrap .worksModalBox .video {
	position: relative;
	width: 57.7rem;
	margin: 0 auto;
	padding-top: 50.8%;
}
.people .worksModalInnerWrap .worksModalBox .video iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}
@media (max-width: 768px) {
	.people .worksModalInnerWrap {
		margin: 40rem auto;
		max-width: 65rem;
	}
	.people .worksModalInnerWrap .worksModalBtnClose {
		width: 4rem;
		top: 3rem;
		right: 2rem;
	}
	.people .worksModalInnerWrap .worksModalBox {
		padding: 7rem 2.5rem 6rem;
	}
	.people .worksModalInnerWrap .worksModalBox .modalContents + .modalContents {
		margin-top: 6rem;
		padding-top: 7rem;
	}
	.people .worksModalInnerWrap .worksModalBox .video {
		width: 100%;
		padding-top: 56.25%;
	}
}