@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;
	background-color: #fff;
}

.mv{
	margin: 0 auto 10%;
}


.mv p{
	text-align: center;
	font-size: .8rem;
	line-height: 1.8;
	margin: 10% auto;
}

@media(min-width:750px){
	.sticky-container{
		display: flex;
		justify-content: center;
		column-gap: 20px;
		background-color: #f9f9f9;
	}
	
	.pc-box{
		position: sticky;
        left: 0;
        top: 0;
        display: flex;
        width: 33%;
        height: 100vh;
        justify-content: center;
        align-items: center;
	}
	
	.pc-box__left img{
		width: 40vh;
	}
	
	.pc-box__right{
		width: 60%;
	}
	
	.pc-box__right a{
		display: block;
		color: #fff;
		text-decoration: none;
		line-height: 3;
		font-size: 1.3rem;
		position: relative;
		box-sizing: border-box;
		background-color: #000;
		text-align: center;
		font-family: "helvetica-lt-pro", sans-serif;
		font-weight: 700;
		letter-spacing: 1px;
	}

	.pc-box__right a:after{
		display: inline-block;
		position: absolute;
		top: 50%;
		right: 5%;
		right: 15px;
		width: 6px;
		height: 6px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		content: "";
		transform: translateY(-50%)  rotate(135deg);
	}
		
	.wrapper{
		width: 36%;
		margin: 0;
	}
	
	.mv p{
		font-size: .9rem;
		line-height: 2;
	}
}


/*======================================

			main-contents

======================================*/

.main-contents{
	margin: 10% auto 10%;
}

.contents-inner{
	margin: 0 auto 20%;
}


.inner-title{
	margin: 5% auto;
}

.title{
	display: flex;
	font-family: "helvetica-lt-pro", sans-serif;
	font-weight: 700;
	font-style: normal;
	column-gap: 30px;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.title p{
	margin: 2% 0;
	font-size: 1.8rem;
	line-height: 1.2;
}

.title p:nth-child(2){
	font-size: 1.5rem;
}

.title p:last-child{
	border-bottom: 3px double #333;
}

.lead{
	text-align: center;
	font-size: .8rem;
	margin: 3% auto 10%;
}

.inner-style{
	margin: 5% auto;
}

.style-left{
	width: 60%;
	margin-bottom: 5%;
	margin-top: 5%;
}

.style-right{
	width: 60%;
	margin-left: 40%;
}

.inner-style p{
	text-align: center;
	margin: 10% auto;
	font-size: .8rem;
	line-height: 1.8;
}

.credit{
	width: 85%;
	margin: 10% auto 15%;
}

.credit-inner{
	margin: 0 auto;
	position: relative;
    margin-bottom: 2%;
    letter-spacing: .3px;
	font-family: "helvetica-lt-pro", sans-serif;
	font-weight: 700;
	font-style: normal;
}

.credit-inner a{
	display: block;
	text-decoration: none;
	color: #000;
	line-height: 2;
}

.credit-inner a::after {
	content: "BUY";
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translate(0, -50%);
    font-size: 13px;
	border: solid 1px #000;
	padding: 0 5%;
	line-height: 1.5;
	border-radius: 30px;
}

.credit-inner .cms::after {
	content: "COMING SOON";
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translate(0, -50%);
    font-size: 10px;
	color: #656565;
}

.credit-inner span{
	font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1%;
}

.credit-inner .line{
	background-color: #eae9e4;
}


.all{
	display: block;
	width: 90%;
	margin: 5% auto 15%;
	text-align: center;
	font-size: .9rem;
	/*border: solid 1px #000;*/
	border-radius: 5px;
	color: #000;
	background-color: #eae9e4;
	text-decoration: none;
	position: relative;
	line-height: 1.5;
	font-family: "Noto Serif Display", serif;
	font-variation-settings:"wdth" 100;
	font-weight: 600;
	padding: 3% 0;
}

.all:after{
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 15px;
	width: 5px;
	height: 5px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	content: "";
	transform: translateY(-50%) rotate(45deg);
}


