@charset "utf-8";
/* CSS Document */

body{
	margin: 0;
}

.wrapper{
	width: 100%;
	margin: 0 auto;
}

.wrapper img{
	display: block;
	line-height: 0;
}

.pcBox{
	display: none;
}

.box{
	margin: 15% auto;
}

.no{
	width: 22%;
	margin: 5% auto;
}

.no_img{
	position: relative;
	overflow: inherit;
	width: 30%;
	margin: 0 auto;
}

.no_slide_img{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	opacity: 0;
	animation :slideshow2 4s;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: steps(1, end);
}

@keyframes slideshow2{
	  0%{
		opacity: 0;
	  }
	  50%{
		opacity: 1;
	  }
	  100%{
		opacity: 0;
	  }
	}

.box h1{
	text-align: center;
	font-size: 20px;
	margin: 0 auto;
}

.box p{
	text-align: center;
	font-size: 13px;
	line-height: 1.8;
	margin: 10% auto;
}

.itemCredit{
	margin: 5% auto;
	text-align: center;
	font-size: 15px;
	line-height: 1.8;
	font-family: montserrat, sans-serif;
	font-weight: 400;
	font-style: normal;
}

.itemCredit span{
	color: #0035BA;
	font-weight: 600;
	display: inline-block;
	font-size: 14px;
}

.itemCredit a{
	display: block;
	width: 30%;
	margin: 1% auto;
	text-align: center;
	background-color: #000;
	color: #fff;
	text-decoration: none;
	font-family: montserrat, sans-serif;
	font-weight: 400;
	font-style: normal;
}


.slide{
	position: relative;
	width: 90%;
	overflow: inherit;
}

.slide img {
	animation-duration: 9s;
    animation-iteration-count: infinite;
    animation-name: slideshow; 
    animation-timing-function: ease; 
    opacity: 0;
}


.slide img:nth-child(2), .slide img:nth-child(3){
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
}

.slide img:nth-child(1){
	animation-delay: 0s;
	}

.slide img:nth-child(2){
	animation-delay: 3s;
}

.slide img:nth-child(3){
	animation-delay: 6s;
}

@keyframes slideshow {
  0% {
    opacity: 0;
  }

  16% {
    opacity: 1;
  }

  33% {
    opacity: 1;
  }

  49% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.w90{
	width: 80%;
	margin: 20% 0 10% 20%;
}

.credit{
	width: 80%;
	margin: 20% auto;
}

.box .title-border {
	width: 100%;
	margin: 0 auto 5%;
	display: flex;
	align-items: center;
	font-size: 22px;
	letter-spacing: 1px;
	font-family: montserrat, sans-serif;
	font-weight: 400;
	font-style: normal;
}

.box .title-border:before,
.box .title-border:after {
	border-top: 1px solid;
	content: "";
	flex-grow: 1;
}

.box .title-border:before {
	margin-right: 1rem;
}

.box .title-border:after {
	margin-left: 1rem;
}

.credit a{
	display: block;
	position: relative;
	text-decoration: none;
    color: #2b2b2b;
	line-height: 1.5;
    border-bottom: solid 1px #ccc;
    margin-bottom: 2%;
	font-family: montserrat, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 13px;
	box-sizing: border-box;
	padding: 0 2%;
}

.credit span{
	font-size: 13px;
    display: block;
    line-height: 1.8;
    margin-bottom: 1%;
	/*float: right;*/
	/*padding-right: 90px;*/
}

.credit a:after{
	content: "BUY";
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translate(0, -50%);
    font-size: 14px;
	background-color: #000;
	color: #fff;
	width: 70px;
	text-align: center;
	line-height: 1.6;
}

.box h2{
	text-align: center;
	font-size: 20px;
	margin: 3% auto;
	font-family: montserrat, sans-serif;
	font-weight: 400;
	font-style: normal;
}

.box ul{
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 15px;
	justify-content: center;
	width: 90%;
	margin: 5% auto;
}

.box ul li{
	width: calc(50% - 10px);
}

.box ul li p{
	font-size: 11px;
	line-height: 1.7;
	margin: 3% 0;
}

.all{
	display: block;
	width: 80%;
	margin: 15% auto 10%;
	/*border: solid 1px #000;*/
	background-color: #000;
	color: #fff;
	text-align: center;
	line-height: 1.4;
	font-size: 14px;
	padding: 3% 0;
	text-decoration: none;
}


@media(min-width:750px){
	.sticky__container{
		display: flex;
		background-color: #deeff4;
	}
	.pcBox{
		width: 33%;
		height: 100vh;
		position: sticky;
		left: 0;
		top: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.wrapper{
		width: 37%;
		box-sizing: border-box;
		margin: 0 auto;
		background-color: #fff;
	}
	
	.leftBox img{
		display: block;
		width: 40vh;
	}	
	
	.rightBox img{
		display: block;
		width: 22vh;
	}
}
