@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;
	overflow: hidden;
}

.mv{
	margin: 0 auto 10%;
}

.mv p{
	text-align: center;
	font-size: .9rem;
	margin: 10% auto;
	line-height: 1.8;
}

.slide {
    display: flex;
	gap: 10px;
    width: max-content;
    animation: loop-slide 20s linear infinite;
}

.slide img {
    width: 250px;
    height: auto;
}

@keyframes loop-slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


@media(min-width:750px){
	.sticky-container{
		display: flex;
		justify-content: center;
		column-gap: 30px;
		background-color: #d4dde8;
	}
	
	.pc-box{
		position: sticky;
        left: 0;
        top: 0;
        display: flex;
        width: 33%;
        height: 100vh;
        justify-content: center;
        align-items: center;
	}
	
	.pc-box__left{
		font-family: "Arial Narrow", Gadget, "sans-serif";
		font-weight: 600;
		font-size: 2.9rem;
		letter-spacing: 1px;
		line-height: 1.2;
	}
	
	.pc-box__left span{
		font-size: 2.0rem;
	}
	
	.pc-box__left img{
		width: 50vh;
	}
	
	.pc-box__right{
		width: 90%;
		margin: 0 auto;
	}
	
	.pc-box__right a{
		display: block;
		width: 60%;
		margin: 0 auto;
		border: solid 1px #000;
		background-color: #fff;
		color: #000;
		text-decoration: none;
		font-size: 1.5rem;
		text-align: center;
		letter-spacing: 1px;
		line-height: 2;
		position: relative;
		font-family: "Arial Narrow", Gadget, "sans-serif";
		font-weight: 600;
	}

		.pc-box__right a:after{
			display: inline-block;
			position: absolute;
			top: 50%;
			right: 5%;
			right: 15px;
			width: 6px;
			height: 6px;
			border-top: 1px solid #282828;
			border-right: 1px solid #282828;
			content: "";
			transform: translateY(-50%) rotate(135deg);
		}

	
	.wrapper{
		width: 36%;
		margin: 0;
		background-color: #fff;
	}
}


