@charset "utf-8";
/* CSS Document */

body{
	margin: 0;
}

.wrapper{
	width: 100%;
	margin: 0 auto;
	font-family: "Times New Roman", Times, "serif";
}

.wrapper img{
	display: block;
	line-height: 0;
}

.pc-box{
	display: none;
}

.top{
	margin: 0 auto;
}

.logo{
	width: 30%;
	margin: 10% auto 0;
}

.top h1{
	text-align: center;
	font-weight: normal;
	font-size: 22px;
	letter-spacing: 2px;
	margin: 4% auto;
}

.top p{
	text-align: center;
	font-size: 15px;
	letter-spacing: 1px;
	line-height: 2.2;
	margin: 15% auto;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-weight: 600;
}

.all{
	display: block;
	text-align: center;
	color: #000;
	text-decoration: none;
	font-size: 20px;
	border: solid 1px #000;
	width: 70%;
	margin: 0 auto;
	line-height: 3;
}

.content{
	margin: 15% auto 5%;
}

.box{
	margin: 0 auto 20%;
}

.flex{
	display: flex;
	column-gap: 10px;
	grid-row-gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.flex img{
	width: calc(50% - 5px);
}

.img100{
	margin-bottom: 10px;
}

.glid{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	column-gap: 10px;
	grid-row-gap: 10px;
}

.glid img:nth-child(1){
	grid-row: 1 / 3;
	grid-column: 1 / 3;
	box-sizing: border-box;
	padding: 1px;
}

.glid2{
	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-template-rows: 1fr 1fr;
	column-gap: 10px;
	grid-row-gap: 10px;
}

.glid2 img:nth-child(3){
	grid-row: 1 / 3;
	grid-column: 2 / 4;
	box-sizing: border-box;
	padding: 1px;
}

.box ul::-webkit-scrollbar {
	display: none;
}

.box ul{
	position: relative;
	width: 100%;
	margin: 5% auto;
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	box-sizing: border-box;
	padding: 0 5%;
	list-style: none;
}

.box ul li{
	flex: 0 0 auto;
	width: 40%;
	margin-right: 2%;
	position: relative;
}

.style img{
	width: 48%;
}

.style img:last-child{
	margin-left: 52%;
	margin-top: -35%;
}

.margin-10{
	margin-top: -8%;
}

.box_last{
	margin-bottom: 15%;
}

.credit{
	width: 80%;
	margin: 10% auto;
}

.credit a{
	display: block;
	font-size: 16px;
	position: relative;
	text-decoration: none;
    color: #2b2b2b;
	line-height: 1.4;
    margin-bottom: 4%;
}

.credit span{
	font-size: 16px;
	float: right;
	padding-right: 90px;
}

.credit span:after{
	content: "tax in";
	margin-left: 5px;
}

.credit a:before{
	content: "BUY";
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(0, -50%);
    font-size: 16px;
	background-color: #000;
	color: #fff;
	width: 70px;
	text-align: center;
}


.shop{
	margin: 15% auto 5%;
}

.shop h1{
	text-align: center;
	font-size: 22px;
	font-weight: normal;
	margin: 2% auto 8%;
}

.shop ul{
	padding: 0;
	list-style: none;
	/*width: fit-content;*/
	margin: 0 auto;
	width: 65%;
}

.shop ul li{
	display: block;
	text-align: left;
	margin-bottom: 5%;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-size: 12px;
}

.shop ul li a{
	display: block;
	text-decoration: none;
	color: #000;
	line-height: 1.7;
	width: 100%;
}

.shop ul li a:after{
	content: "SHOP CHECK";
	float: right;
	border: solid 1px #8B8B8B;
	padding: 0 2%;
	color: #555555;
}

.insta{
	width: 8%;
	margin: 15% auto 10%;
}


@media(min-width:750px){
	.sticky-contener{
		display: flex;
	}
		
	.pc-box{
		width: 50%;
		height: 100vh;
		position: sticky;
		left: 0;
		top: 0;
		display: flex;
        justify-content: center;
        align-items: center;
		background-image: url("../images/bg.jpg");
		background-size: cover;
		background-repeat: no-repeat;
	}
		
	
	.inner{
		background-color:rgba(255,255,255,0.7);
		height: 100vh;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.logo{
		width: 36%;
	}
	
	.logo img{
		display: block;
		width: 60%;
		margin: 0 auto 10%;
	}
	
	.logo p{
		text-align: center;
		font-family: "Times New Roman", Times, "serif";
		font-size: 24px;
		letter-spacing: 1px;
		margin: 3% 0 0;
	}
	
	.wrapper{
		width: 50%;
	}
	
	.box ul{
		position: relative;
		width: 100%;
		margin: 1% auto;
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		box-sizing: border-box;
		padding: 0;
		column-gap: 10px;
		justify-content: center;
	}

	.box ul li{
		flex: auto;
		width: 40%;
		margin-right: 0;
		position: relative;
	}

	.shop ul{
		width: 55%;
	}
	
	.all{
		font-size: 18px;
		width: 50%;
		line-height: 2.5;
	}
	
	.credit{
		width: 50%;
	}
}

