@charset "utf-8";
/* CSS Document */

body{
	margin: 0;
	background-color: #DBE9EC;
}

.wrapper{
	background-color: #DBE9EC;
	padding-bottom: 5%;
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	font-family: "orpheuspro", serif;
	font-weight: 400;
	font-style: normal;
	color: #0c284d;
}

.wrapper img{
	display: block;
	line-height: 0;
}

.slide{
	position: relative;
	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;
  }
}


.lead{
	text-align: center;
	font-size: 15px;
	line-height: 2;
	margin: 10% auto;
}

.wrapper ul{
	padding: 0;
	list-style: none;
	width: 94%;
	margin: 5% auto;
	display: flex;
	flex-wrap: wrap;
	justify-content:center;
	border-top: solid 1px #6b737d;
	border-bottom: solid 1px #6b737d;
	padding: 4% 0;
	grid-row-gap: 20px;
}

.wrapper ul li{
	width:33%;
}

.wrapper ul li a{
	display: block;
	text-align: center;
	color: #0c284d;
	text-decoration: none;
	font-size: 15px;
	padding-bottom: 8%;
	position: relative;
}

.wrapper ul li a:after{
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 50%;
	right: 15px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	content: "";
	transform: translateX(-50%)  rotate(135deg);
}

.wrapper ul li:first-child{
	border-right: 1px solid #6b737d;
}

.wrapper ul li:last-child{
	border-left: 1px solid #6b737d;
}

.wrapper ul li:nth-child(3){
	border-left: 1px solid #ccc;
}


.contentBox{
	margin: 10% auto;
	padding-top: 9%;
}

.contentBox h1{
	text-align: center;
	margin: 1% auto;
	line-height: 1.2;
	font-size: 50px;
	font-weight: normal;
}

.contentBox h1 span{
	font-size: 40px;
}

.contentBox h2{
	text-align: center;
	font-weight: normal;
	font-size: 15px;
	margin: 2% 0;
}

.item{
	margin: 5% auto;
}

.box{
	width: 90%;
	margin: 0 auto 20%;
}

.box_last{
	margin-bottom: 10%;
}

.credit{
	width: 95%;
	position: relative;
    margin: 5% auto;
}

.credit a{
	display: block;
	text-decoration: none;
	color: #000;
	font-size: 14px;
	line-height: 1.5;
}

.credit a::after {
	content: "BUY";
	display: inline-block;
	text-align: center;
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translate(0, -50%);
    font-size: 14px;
	background-color: #0c284d;
	color: #fff;
	width: 55px;
}

.credit span{
	float: right;
	margin-right: 70px;
}

.credit span:after{
	content: '(税込)';
	display: inline-block;
	font-size: 11px;
	margin-left: 3px;
}

.all{
	display: block;
	width: 60%;
	margin: 10% auto;
	text-align: center;
	background-color: #767D7F;
	color: #fff;
	text-decoration: none;
	line-height: 3;
	position: relative;
	font-size: 16px;
}

.all: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);
}

.kw-all{
	display: block;
	width: 90%;
	margin: 15% auto;
	text-align: center;
	color: #767D7F;
	border: solid 1px #767D7F;
	text-decoration: none;
	line-height: 2.5;
	position: relative;
	font-size: 20px;
}

.kw-all:after{
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 15px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #767D7F;
	border-right: 2px solid #767D7F;
	content: "";
	transform: translateY(-50%) rotate(45deg);
}

@media(min-width:750px){
.bnr{
	width: 50%;
	margin: 5% auto
}

.wrapper ul{
	flex-wrap: nowrap;
	padding: 3% 0;
	justify-content:space-around;
}
	
.wrapper ul li a{
	display: block;
	text-align: center;
	color: #000;
	text-decoration: none;
	font-size: 26px;
	padding-bottom: 4%;
	position: relative;
}

.wrapper ul li:nth-child(3){
	border-right: 1px solid #ccc;
	border-left: 1px solid #ccc;
}

.contentBox{
	margin: 10% auto;
	padding-top: 3%;
}

.contentBox h1{
	font-size: 80px;
}

.contentBox h1 span{
	font-size: 40px;
}

.item{
	margin: 5% auto;
	display: flex;
	column-gap: 15px;
}
	
.item_last {
	justify-content: center;
	width: 90%;
	margin: 0 auto;
}
	
.item_last .box{
	width: 50%;
	justify-content: center;
	margin: 0;
}

.box{
	width: 100%;
	margin: 0 auto;
}
	
.credit{
	width: 80%;
}
	
.credit a{
	font-size: 15px;
}

.credit a::after {
    font-size: 16px;
	width: 65px;
}

.credit span{
	float: right;
	margin-right: 80px;
}

.all{
	width: 40%;
}
}









