@charset "utf-8";
.photogallery .title_area {
	background-image: url(/recruit/newgrads/img/common/h1_photogallery.jpg);
}
p{text-align: center;}
/* --------------------
	フォトギャラリー
----------------------*/
.photo_gallery {
	display: grid;
	padding: 0;
	margin: 50px 0 0;
}
.photo_gallery li{
	list-style: none;
	margin-bottom: 0;
	overflow: hidden;
	position: relative;
}
.photo_gallery li a::before{
	position: absolute;
	content: '';
	right: 15px;
	bottom: 13px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: url(/recruit/newgrads/img/photogallery/icon_expansion.svg) no-repeat center / contain;
	z-index: 1;
	transition: background 0.3s;
}
.photo_gallery li a:hover::before{background-image: url(/recruit/newgrads/img/photogallery/icon_expansion_hover.svg);}
.photo_gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* --------------------
	ポップアップ
----------------------*/
.mfp-container{
	max-width: 1010px;
	right: 0;
	margin: auto;
	padding: 0 55px;
}

/* 閉じるボタン */
.mfp-close{
	font-size: 0;
	position: relative;
	height: 52px;
	right: 2px !important;
}
.mfp-close::before,.mfp-close::after{
	position: absolute;
	content: '';
	display: inline;
	background: #fff;
	width: 43px;
	height: 2px;
	right: 0;
	top: 12px;
	margin: auto;
}
.mfp-close::before{transform: rotate(135deg);}
.mfp-close::after{transform: rotate(-135deg);}

/* 次・前へボタン */
.mfp-arrow{
	top: calc(50% + 55px);
	width: 55px;
	height: 55px;
}
.mfp-arrow-left{left: 0;}
.mfp-arrow-right{right: 0;}
.mfp-arrow::before{display: none;}
.mfp-arrow:after{
	top: 0;
	bottom: 0;
	margin: auto;
	width: 17px;
	height: 17px;
	border: none;
	border-bottom: 2px solid #fff;
	border-top-width: 0;
}
.mfp-arrow-left::after{
	border-right: 2px solid #fff;
	transform: rotate(135deg);
	left: 27px;
}
.mfp-arrow-right::after{
	border-left: 2px solid #fff;
	transform: rotate(-135deg);
	left: 13px;
}
/* 画像 */
.mfp-img{
	max-height: none !important;
	padding: 10px !important;
	background: #fff;
}
.mfp-figure:after{top: 50px;}

/* 他 */
.mfp-counter{font-size: 0;}

/* キャプション（画像右下） */
.mfp-figure{
	position: relative;
}
.mfp-bottom-bar{
	position: absolute;
	bottom: 20px;
	right: 0;
	width: auto;
	max-width: 100%;
	margin: 0;
	padding: 0;
}
.mfp-title{
	color: #fff;
	font-size: 1.3rem;
	line-height: 1.5;
	padding: 4px 10px;
	white-space: pre-line;
}

@media screen and (min-width:768px){
/* --------------------
	フォトギャラリー
----------------------*/
.photo_gallery {
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: clamp(180px, 22vw, 296px);
	grid-auto-flow: dense;
}
.photo_gallery li:nth-child(6n+1) {
	grid-column: span 2;
	grid-row: span 2;
}

.photo_gallery li:nth-child(6n+2),.photo_gallery li:nth-child(6n+3) {
	grid-column: 3;
}

.photo_gallery li:nth-child(6n+4),.photo_gallery li:nth-child(6n+5) {
	grid-column: 1;
}

.photo_gallery li:nth-child(6n+6) {
	grid-column: span 2;
	grid-row: span 2;
}

.photo_gallery li a{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

}

@media screen and (max-width:767px){
p{text-align: left;}
/* --------------------
	フォトギャラリー
----------------------*/
.photo_gallery{margin-top: 30px;}
.photo_gallery{
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 126px;
}

.photo_gallery li:nth-child(3n+1) {
	grid-column: 1 / -1;
	grid-row: span 2;
	min-height: 252px;
}
.photo_gallery li:nth-child(3n+2),.photo_gallery li:nth-child(3n+3){min-height: 126px;}
.photo_gallery li a::before{
	right: 10px;
	bottom: 10px;
	width: 20px;
	height: 20px;
}

/* キャプション（画像右下） */
.mfp-title{
	font-size: 1.2rem;
}
}