  /* CSS Document */
/**/

.p-lightbox_layer{
	display: none;
	opacity: 0;
	background-color: rgba(0,0,0,0.8);
	transition: opacity 0.3s;
	position: fixed;
	top:0px; left: 0px;
	width: 100%;
	height: 100%;
	z-index: 999;
	justify-content: center;
	align-items: center;
}
.p-lightbox_layer *{
	box-sizing: border-box;
}
.p-lightbox_layer.is-open{
	opacity: 1;
}
.p-lb_content{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	
	flex: 0 0 auto;
	width: calc(100% - 60px);
	/*max-width: 1200px;*/
	max-width: 1360px;
	position: relative;
	background-color: #fff;
	box-sizing: border-box;
	height: auto;
	max-height: calc(100% - 40px);
	padding: 0px;
	overflow: auto;
	box-shadow: 3px 5px 12px -2px rgba(0,0,0,0.8);
	
	font-family:"Roboto","Noto Sans JP","メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "ＭＳ ゴシック", sans-serif;
	font-size: 1rem;
	line-height: 1.875;
	text-align: left;
}

.p-lb_content__title{
	flex: 0 0 auto;
	height: auto;
	min-height: 60px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0.5rem 2.5rem 0.875rem 1.5rem;
}
.p-lb_content__title h2{
	font-size: 1.375rem;
	margin: 0;
	line-height: 1.5;
	font-weight: 600;
}

.p-lb_content__main{
	flex: 1 1 auto;
	overflow-y: auto;
}
.p-lb_content__main .content{
	padding: 1.5rem;
}

@media screen and ( max-width:959px) {
	.p-lb_content{
		width: calc(100% - 30px);
	}
	.p-lb_content__title{
		min-height: 50px;
	}
	.p-lb_content__title h2{
		font-size: 1.0625rem;
	}
}


.p-lightbox_closeBtn{
	position: absolute;
	display: block;
	top:0px; right: 0px;
	width: 62px; height:50px;
	background: url("/sustainability/forest/common/images/icon_close_g.svg") no-repeat 24px 16px;
	background-size: 15px 15px;
	cursor: pointer;
	transition: background-color 0.2s;
	background-color: #fff;
}
.p-lightbox_closeBtn:hover{
	background-color: #edeef0;
}

/*contents*/

/*lb_content col, mb*/

.p-lb_content .col2 .col,
.p-lb_content .col5 .col2 .col,
.p-lb_content .col4 .col2 .col,
.p-lb_content .col3 .col2 .col{ width: calc((100% - 20px)/2); }

.p-lb_content .col3 .col,
.p-lb_content .col2 .col3 .col,
.p-lb_content .col4 .col3 .col,
.p-lb_content .col5 .col3 .col{ width: calc((100% - 40px)/3); }

.p-lb_content .col3 .col.span-2{ width: calc((100% - 40px)*2/3 + 20px); }

.p-lb_content .col4 .col{ width: calc((100% - 60px)/4); }

.p-lb_content .col4 .col.span-2{ width: calc((100% - 60px)*2/4 + 20px); }
.p-lb_content .col4 .col.span-3{ width: calc((100% - 60px)*3/4 + 40px); }

.p-lb_content .col5 .col{ width: calc((100% - 80px)/5); }

.p-lb_content .col5 .col.span-2{ width: calc((100% - 80px)*2/5 + 20px); }
.p-lb_content .col5 .col.span-3{ width: calc((100% - 80px)*3/5 + 40px); }
.p-lb_content .col5 .col.span-4{ width: calc((100% - 80px)*4/5 + 60px); }

.p-lb_content .c-mb--1{
	margin-bottom: 1rem !important;
}

/*==sp===========*/

/*.sp .p-lb_content{
	width: 94%;
}
.sp .p-lb_content .link_icon{
	display: none;
}*/

