/*---------------------------------
	sidePhotoLayout start
---------------------------------*/

.sidePhotoLayout{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 1em 3em;
	--photoWidth: 35%;
}

.sidePhotoLayout_photo{
	flex-grow: 0;
	flex-shrink: 0;
	width: var(--photoWidth);
}

@media(min-width: 1025px){
	.sidePhotoLayout--photoLeft .sidePhotoLayout_photo{
		order: 0;
	}
	.sidePhotoLayout--photoRight .sidePhotoLayout_photo{
		order: 1;
	}
}

.sidePhotoLayout_photo--padding0{
	padding: 0;
}

.sidePhotoLayout_content{
	flex-grow: 0;
	flex-shrink: 0;
	width: calc(100% - var(--photoWidth) - 3em);
}

.sidePhotoLayout--photoThin .sidePhotoLayout_content{
	width: 55%;
}

.sidePhotoLayout_content--topMargin1{
	padding-top: 1em;
}

.sidePhotoLayout_content--topMargin2{
	padding-top: 2em;
}

.sidePhotoLayout_content--topMargin3{
	padding-top: 3em;
}

@media(min-width: 1025px){
	.sidePhotoLayout--photoLeft .sidePhotoLayout_content{
		order: 1;
	}
	.sidePhotoLayout--photoRight .sidePhotoLayout_content{
		order: 0;
	}
}

@media(max-width: 1024px){
	.sidePhotoLayout{
		flex-direction: column;
		align-items: center;
		width: 100%;
		margin: 0 auto;
	}
	.sidePhotoLayout_photo,
	.sidePhotoLayout--photoThin .sidePhotoLayout_photo{
		width: 100%;
		max-width: 30em;
		margin: 0;
		padding: 0;
	}
	.sidePhotoLayout_content{
		width: 100%;
		margin: 0;
		padding: 0;
	}
	.sidePhotoLayout--photoThin .sidePhotoLayout_content{
		width: 90%;
		margin: 0;
		padding: 0;
	}
}

@media(max-width: 600px){
	.sidePhotoLayout--photoThin .sidePhotoLayout_content{
		width: 100%;
		margin: 0 0 1.5em;
	}
}

.sidePhotoLayout_photoWrapper{
	position: relative;
	width: 100%;
	padding-top: calc(100% / 4 * 3);
}

.sidePhotoLayout_photoWrapper--ratio4to3{
	padding-top: calc(100% / 4 * 3);
}

.sidePhotoLayout_photoWrapper--ratio5to3{
	padding-top: calc(100% / 5 * 3);
}

.sidePhotoLayout_photoWrapper--ratioOrign{
	padding-top: 0;
}

.sidePhotoLayout_photoImg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sidePhotoLayout_photoWrapper--ratioOrign .sidePhotoLayout_photoImg{
	position: static;
	height: auto;
	object-fit: fill;
}

.sidePhotoLayout_photoImg--fitContain{
	object-fit: contain;
}

.sidePhotoLayout_photoWrapper--border{
	border: 2px solid #CCC;
}

/*---------------------------------
	sidePhotoLayout end
---------------------------------*/