@charset "utf-8";
/* CSS Document */

body{
	margin: 0;
	background-color: #EFEFEF;
}

.wrapper{
	background-color: #EFEFEF;
	padding-bottom: 5%;
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

.wrapper img{
	display: block;
	line-height: 0;
}

.wrapper h1{
	text-align: center;
	font-family: "Times New Roman", Times, "serif";
	font-style: italic;
	font-weight: normal;
	font-size: 38px;
	margin: 10% auto 0;
}

.sub{
	font-size: 15px;
	margin: 1% auto;
	text-align: center;
}

.lead{
	text-align: center;
	font-size: 15px;
	line-height: 2;
	margin: 10% auto;
}

.item{
	margin: 10% auto;
}

.box{
	width: 90%;
	margin: 10% auto;
}

.box__title{
	display: flex;
	column-gap: 10px;
	align-items: center;
	margin: 0 auto 3%;
}

.box__title img{
	width: 17%;
}

.box__title p{
	font-size: 14px;
	line-height: 1.8;
	margin: 0;
}

.slide{
	position: relative;
	overflow: inherit;
}

.slide__img{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	opacity: 0;
	animation :slideshow 12s;
	animation-duration: 6s;
	animation-iteration-count: infinite;
}

@keyframes slideshow{
	  0%{
		opacity: 0;
	  }
	  25%{
		opacity: 1;
	  }
	  50%{
		opacity: 1;
	  }
	  75%{
		opacity: 0;
	  }
	  100%{
		opacity: 0;
	  }
	}

.name{
	margin: 5% 0;
	border-bottom: solid 1px #ccc;
}

.name p{
	margin: 2% 0;
	font-size: 17px;
	line-height: 1.6;
}

.name p:after{
	content: '(税込)';
	display: inline-block;
	font-size: 13px;
	margin-left: 5px;
}

.thm{
	margin: 5% 0;
}

.thm p{
	margin: 2% 0;
	font-size: 17px;
	line-height: 1.6;
}

.buy{
	display: block;
	width: 80%;
	margin: 10% auto;
	text-align: center;
	background-color: #333333;
	color: #fff;
	text-decoration: none;
	line-height: 3;
	position: relative;
}

.buy:after{
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 15px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	content: "";
	transform: translateY(-50%) rotate(45deg);
}

@media(min-width:750px){
.bnr{
	width: 50%;
	margin: 5% auto
}
	
.wrapper h1{
	font-size: 40px;
}

.sub{
	font-size: 16px;
}

.item{
	margin: 10% auto;
	display: flex;
	column-gap: 40px;
}

.box{
	width: 100%;
	margin: 0 auto;
}

.box__title{
	display: flex;
	column-gap: 10px;
	align-items: center;
	margin: 0 auto 3%;
}


}









