@charset "utf-8";

/*============================================================
	PAGE
*/
.page {
	padding: 0 0 120px 0;
	background-color: #CCC;
	background-repeat: repeat;
	background-image: url(../img/common/pattern01.png);
	background-size: 3rem 3rem;
	font-size: 14px;
}
.page h1,
.page h2,
.page h3,
.page h4 {
	margin: 0;
	padding: 0;
	font-weight: 700;
}
.page a {
	text-decoration: none;
	color: inherit;
}
.page .container {
	margin: 0 auto;
	padding: 0 50px;
	max-width: 1100px;
}

/**/
@media (max-width: 781px) {
	.page {
		padding: 0 0 50px 0;
	}
	.page .container {
		padding: 0 20px;
	}
}

/*============================================================
	SHOP
*/
.page .main {
	padding: 60px 0;
}
.page .main h2 {
	text-align: center;
	font-size: 48px;
	line-height: 1.1;
}
.page .list {
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.page .list::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #ccc;
}
.page .list .item {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 30px 20px 40px 20px;
	transition: box-shadow 0.3s ease 0s;
	flex-basis: 50%;
	border: 1px solid #ccc;
	border-left: 0;
	border-top: 0;
}
.page .list .item:nth-child(2n) {
	border-right: 0;
}
.page .list .item:hover {
	z-index: 100;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
}
.page .list .item h3 {
	margin: 0 0 20px 0;
	text-align: center;
	font-weight: 700;
	font-size: 30px;
}
.page .list .item .image {
	margin: 0 0 20px 0;
}
.page .list .item .detail {
	flex: 1;
}
.page .list .item .detail table th,
.page .list .item .detail table td {
	text-align: left;
	vertical-align: top;
}
.page .list .item .detail table th {
	white-space: nowrap;
}
.page .foot {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}
.page .foot .u-button-w {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 2rem;
	width: 30rem;
	height: 5.6rem;
	background-color: #000;
	color: #FFF;
}
.page .foot .u-button-w i {
	position: absolute;
	top: 50%;
	right: 2rem;
	margin-top: -1rem;
	font-size: 2rem;
	color: #C00;
}
/**/
@media (max-width: 781px) {
	.page .main {
		padding: 30px 0;
	}
	.page .main h2 {
		font-size: 28px;
	}
	.page .list {
		display: block;
	}
	.page .list .item {
		padding: 25px 0 30px 0;
		border-right: 0;
	}
	.page .list .item h3 {
		font-size: 20px;
	}
	.page .list .item h4 {
		margin: 5px 0 20px 0;
		font-size: 12px;
	}
	.page .list .item .image {
		margin: 0 0 15px 0;
	}
	.page .list .item .link {
		margin: 10px 0 0 0;
	}
}
