@charset "utf-8";
/* CSS Document */

body{
	margin: 0;
}

.wrapper{
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

.wrapper img{
	display: block;
	line-height: 0;
}

.wrapper .top{
	margin-bottom: 10%;
}

.top h1{
	text-align: center;
	font-size: 20px;
	margin: 8% auto;
	color: #940641;
}

.top p{
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	line-height: 2;
	margin: 0 auto 8%;
}

.box{
	margin: 10% auto 20%;
}

.box-title{
	display: flex;
	column-gap: 20px;
	align-items: center;
	width: 90%;
	margin: 3% auto;
}

.box-title div{
	max-width: 20%;
}

.box-title p{
	font-size: 17px;
	line-height: 1.6;
}

.box-title p span{
	font-size: 13px;
	display: inline-block;
	margin-left: 5px;
}

.box-main{
	position: relative;
}

.box-main-icon{
	position: absolute;
	top: 10%;
	left: 8%;
	width: 20%;
}

.box-model{
	display: flex;
	column-gap: 10%;
	align-items: center;
	width: 80%;
	margin: 5% auto;
}

.slide{
	position: relative;
	width: 100%;
	overflow: inherit;
}

.slide img {
	animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-name: slideshow; 
    animation-timing-function: ease; 
    opacity: 0;
}


.slide img:nth-child(2){
	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;
}


@keyframes slideshow {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  70% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.yazhirushi{
	width: 50%;
}

.box-lead{
	text-align: center;
	font-size: 13px;
	line-height: 1.8;
	font-weight: 600;
}

.box-lead span{
	font-size: 16px;
	font-weight: 600;
}

.common{
	margin: 10% auto 20%;
}

.box-style{
	position:relative;
	width: 90%;
	margin: 10% auto 5%;
}

.box-style-inner{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(1, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}

.style-first{
	grid-area: 1 / 1 / 2 / 3;
}

.box-style p{
	position: absolute;
	top: 1%;
	left: 2%;
	font-size: 60px;
	color: #940641;
	writing-mode: vertical-rl;
	margin: 0;
	line-height: 1.4;
}

.box-style p span{
	background-color: #fff;
	padding: 10% 0;
}

.box-credit{
	width: 80%;
	margin: 10% auto;
}

.credit{
	position: relative;
    border-bottom: solid 1px #808080;
    margin-bottom: 1%;
    letter-spacing: .8px;
    font-family: aktiv-grotesk, sans-serif;
}

.credit a{
	display: block;
	text-decoration: none;
	color: #000;
	font-size: 14px;
	line-height: 1.5;
}

.credit a::after {
	content: "BUY";
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translate(0, -50%);
    font-size: 14px;
}

.credit .cms::after {
	content: "COMING SOON";
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translate(0, -50%);
    font-size: 10px;
	color: #656565;
}

.credit span{
	font-size: 11px;
    display: block;
    line-height: 1.8;
    margin-bottom: 1%;
}

.all{	
	display: block;	
	width: 80%;	
	margin: 10% auto;
	text-align: center;
	background-color: #000;	
	color: #fff;	
	font-size: 18px;	
	font-weight: 600;	
	line-height: 4;
	text-decoration: none;
	position: relative;
}
.all:after{	
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 15px;
	width: 5px;
	height: 5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	content: "";
	transform: translateY(-50%) rotate(45deg);
}




