@charset "utf-8";
/* CSS Document */

body{
	margin: 0;
}

.sticky-container{
	margin: 0;
}

.sticky-container img{
	display: block;
	line-height: 0;
}

.pc-box{
	display: none;
}

.wrapper{
	width: 100%;
	margin: 0 auto;
}

@media(min-width:750px){
	.sticky-container{
		display: flex;
		justify-content: center;
		column-gap: 0px;
		background-color: #fff;
	}
	
	.pc-box{
		position: sticky;
        left: 0;
        top: 0;
        display: flex;
        width: 50%;
        height: 100vh;
        justify-content: center;
        align-items: center;
	}
	
	.pc-box__bg{
		background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url("../images/bg.jpg");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}
	
	.pc-box__left img{
		width: 60vh;
	}
		
	.wrapper{
		width: 50%;
		margin: 0;
		box-sizing: border-box;
		padding: 0 5%;
	}
}
