@charset "UTF-8";



/*  ----------------------------------------------------------

talent

----------------------------------------------------------  */
.talent h3 {
	display: flex;
	align-items: center;
	line-height: 1;
	margin-bottom: 3rem;
}
.talent h3 > span:nth-child(1) {
	font-size: 3.2rem;	
}
.talent h3 > span:nth-child(1)::first-letter {
	color: var(--green);
}
.talent h3 > span:nth-child(2) {
	font-size: 1.4rem;
	font-weight: 500;
	margin-left: 2rem;	
	margin-top: 0.4rem;
}
.talent-list {
	display: flex;
	flex-wrap: wrap;
}
.talent-list .item {
    width: calc((100% - 12rem) / 4);
    margin-right: 4rem;
}
.talent-list .item:nth-child(7n) {
    margin-right: 0;
}
.talent-list .item:nth-child(n + 10) {
    margin-top: 6rem;
}

.talent-list .item figure {
	width: 100%;
	padding-top: calc(100% / 5 * 4);
	box-shadow: 0.4rem 0.4rem 1rem rgba(0,0,0,0.06);
	position: relative;
}

.talent .mb-80:nth-child(2) .talent-list .item figure {
	padding-top: calc(100% / 5 * 7);
}

.talent-list .item:hover figure {
	box-shadow: 0 0 0 rgba(0,0,0,0.06);
}
.talent-list .item figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .3s;
}

.prof-name .jp {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.5;
	margin: 1.5rem 0 0.5rem 0;
	display: block;
}
.prof-name .en {
	color: var(--green);
	font-size: 1.2rem;
	line-height: 1;
}
@media screen and (max-width: 768px) {
	.talent-list {
		justify-content: space-between;
	}
	.talent-list .item {
		width: 47%;
		margin-right: 0;
		margin-bottom: 7%;
	}
	.prof-name .jp {
		font-size: 2rem;
	}
	
	.talent-list .modal-contents > div > figure > img {
		height: 30rem;
	}
}




/*  ----------------------------------------------------------

modal

----------------------------------------------------------  */
.modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: .6s;
}
.modal.is-show,
.modal.is-show-1,
.modal.is-show-2,
.modal.is-show-3,
.modal.is-show-4,
.modal.is-show-5,
.modal.is-show-5,
.modal.is-show-6,
.modal.is-show-7,
.modal.is-show-8,
.modal.is-show-9 {
	opacity: 1;
	visibility: visible;
}
.modal-open {
	transition: all .3s;
}
.modal-open:hover {
	opacity: 0.4;
	cursor: pointer;
}
.modal-inner {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 80%;
	height: 60%;
	padding: 5rem 6rem;
	background-color: #fff;
	z-index: 2;
	overflow-y: scroll;
}
.close-btn {
	position: absolute;
	right: 0;
	top: 0;
	text-align: center;
	cursor: pointer;
	width: 5rem;
	height: 5rem;
	transition: all .3s;
}
.close-btn span {
	width: 3rem;
	height: 0.12rem;
	background: #aaa;
	position: absolute;
	left: 1.2rem;
}
.close-btn span:nth-of-type(1) {
	transform: translateY(2.5rem) rotate(45deg);	
}
.close-btn span:nth-of-type(2) {
	transform: translateY(2.5rem) rotate(-45deg);	
}
.close-btn:hover {
	opacity: 0.4;
}
.modal-contents .jp {
	font-size: 2.4rem;
}
.modal-contents {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.modal-contents > div {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.modal-contents > div > figure {
	width: 40%;
}
.modal-contents > div > div {
	width: 55%;
}
.modal-contents dl {
	margin-top: 3rem;
}
.modal-contents dl dt {
	border-left: solid 0.2rem var(--green);
	font-size: 1.6rem;
	font-weight: bold;
	padding-left: 1.2rem;
	line-height: 1.2;
	padding-bottom: 0.15rem;
	margin-bottom: 0.8rem;
}
.modal-contents dl dd:not(:last-of-type) {
	margin-bottom: 3rem;
}
.modal-contents .sns_link li:not(:last-of-type) {
	margin-bottom: 0.5em;
}
.modal-contents .sns_link li a {
	display: flex;
	align-items: center;
}
.modal-contents .sns_link li img {
	width: 1.5em;
	height: auto;
	margin-right: 0.5em;
	display: inline-block;
}
.modal-mask {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.7);
	z-index: 1;
	cursor: pointer;
}	
@media screen and (max-width: 768px) {
	.modal-inner {
		width: 90%;
		height: 80%;
		padding: 5rem 2.5rem 4rem 2.5rem;
		overflow-y: scroll;		
	}
	.close-btn {
		padding: 0.4rem 2rem 0.6rem 2rem;
		font-size: 1.4rem;
	}	
	.modal-contents > div {
		flex-direction: column;
		justify-content: space-between;
	}
	.modal-contents > div > figure {
		width: 100%;	}
	.modal-contents > div > div {
		width: 100%;
	}
	.modal-contents img {
		height: 20rem;
		object-fit: cover;
	}
	.close-btn span:nth-of-type(1) {
		transform: translateY(2rem) rotate(45deg);	
	}
	.close-btn span:nth-of-type(2) {
		transform: translateY(2rem) rotate(-45deg);	
	}
}