@charset "utf-8";

a:link,
a:visited,
a:hover,
a:active {
	color: inherit;
}

a:hover {
	text-decoration: none;
}

input[type="button"]>*,
button>* {
	position: relative;
}

#contents {
	color: #3a3a3a;
}

.product-archive {
	margin-top: 230px;
	margin-bottom: 90px;
}

/**/

.product-bg {
	background-image: url(../img/top/bg_product_left.png), url(../img/top/bg_product_right.png);
	background-repeat: no-repeat;
	background-position: left 0, right 100%;
	background-size: auto;
	padding-bottom: 150px;
	margin-bottom: -30px;
}

.product-area {
	max-width: 1200px;
	margin: auto auto 0;
}

.product-area .product-list {
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr 1fr 1fr;
	margin-bottom: 90px;
}

.product-area .product-title {
	font-size: 330%;
	max-width: max-content;
	margin: auto auto 50px;
	border-top: 4px solid #358fb5;
	padding-top: 20px;
	letter-spacing: 4px;
	color: #3d5b76;
	font-family: oswald;
	position: relative;
}

.product-area .product-title::before {
	content: "";
	bottom: 0;
	height: 100px;
	background-image: url(../img/top/deco_product.png);
	width: 120px;
	display: block;
	position: absolute;
	left: calc(100% + 20px);
	background-repeat: no-repeat;
}

.product-area .product-title .title-sub {
	display: block;
	color: #2b81a5;
	font-size: 33%;
	margin: 30px 0 0;
	text-align: center;
}

.product-area .product-item {
	background-color: #fff;
	padding: 20px 20px 110px;
	box-sizing: border-box;
	box-shadow: 0 0 26px 8px rgb(73 144 166 / 19%);
	transition: .5s;
	position: relative;
}

.product-area .product-item:hover {
	transform: scale(1.08);
	transition: .5s;
}

.product-area .product-item .photoContainer {
	margin-bottom: 30px;
}

.product-area .product-item h3 {
	font-size: 120%;
	color: #3d5b76;
	margin-bottom: 20px;
	line-height: 1.5em;
	letter-spacing: -1px;
}

.product-item .bottom {
	position: absolute;
	bottom: 30px;
	left: 0;
	width: calc(100% - 40px);
	right: 0;
	margin: auto;
}

.product-area .product-item .date {
	color: #7d7d7d;
	font-family: oswald;
	text-align: right;
}

.product-item .category-list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 5px;
	align-items: stretch;
	margin-bottom: 10px;
}

.product-item .category-item {
	border: 1px solid #c6cad1;
	padding: 5px 8px;
	color: #3e5b76;
	font-size: 15px;
	letter-spacing: 0;
}

.product-area .product-more {
	border-radius: 50px;
	display: block;
	width: 100%;
	max-width: 320px;
	margin: auto auto;
	padding: 13px;
	color: #fff;
	transition: .5s;
	font-size: 124%;
	background-image: url(../img/top/bg_product_btn.png);
	background-repeat: repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	text-align: center;
}

.product-area .product-more::after {
	content: "";
	position: absolute;
	right: 20px;
	left: auto;
	bottom: 0;
	top: 0;
	margin: auto;
	width: 50px;
	height: 40px;
	background-image: url(../img/top/ico_arrow_right.png);
	background-repeat: no-repeat;
	background-position: center;
	transition: .5s;
}

.product-area .product-more:hover::after {
	right: 10px;
	transition: .5s;
}

.product-area .product-more:hover {
	box-shadow: 0 0 26px 8px rgb(73 144 166 / 19%);
}


/* page */

.page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.page-numbers .page-numbers {
	display: block;
	border: 1px solid #3e5b76;
	padding: 10px 20px;
	color: #3e5b76;
}

.page-numbers .page-numbers.current {
	background-color: #3e5b76;
	color: #fff;
}



@media screen and (max-width: 1300px) {

	.product-area .product-list {
		gap: 35px;
	}

	.product-area .product-item h3 {
		font-size: 110%;
	}

	.product-area .product-item .excerpt p {
		font-size: 15px;
	}

	.product-area .product-item {
		padding: 20px 15px 110px;
	}

	.product-item .bottom {
		width: calc(100% - 30px);
	}

	.product-item .category-item {
		font-size: 13px;
	}


}

@media screen and (max-width: 1140px) {

	.product-area .product-item h3 br {
		display: none;
	}

	.page-numbers .page-numbers {
		padding: 5px 10px;
	}

}

@media screen and (max-width: 767px) {
	.product-archive {
		margin-top: 10px;
	}

	.product-area .product-title::before {
		left: 0;
		right: 0;
		bottom: 100%;
		margin: auto;
	}

	.product-area {
		margin-top: 70px;
	}


	.product-area .product-list {
		grid-template-columns: 1fr;
	}

	.product-bg {
		padding: 70px 4vw;
	}

}