@charset "utf-8";
@import url(cmn.css);
@import url(base.css);

.page::before {
  background-image: url("../images/products-images/page-bg.jpg");
}
.main {
	background-color: var(--color01);
	padding-top: 80px;
}
body {
	background-color: var(--color01);
}
#topic-path {
	color: #fff;
  border-left: none;
}
#topic-path a {
	color: #fff;
}

/* ==========================================================================
	CONTENTS
	========================================================================== */

.link-list-wrapper {
	max-width: 1900px;
	box-sizing: border-box;
	padding: 0 30px;
	margin-bottom: 80px;
}
.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.link-list__item {
  box-sizing: border-box;
  width: calc((100% - 50px) / 6); /* gap 10px × (6 - 1) = 50px */
  text-align: center;
}
.link-list__item a {
	display: block;
		color: #fff;
	text-align: center;
	background-color: rgba(255,255,255,0.2);
	border-radius: 3px;
	padding: 15px 0;
}
.link-list__item a:hover {
	background-color: var(--color02);
}

.product-tit {
	color: #fff;
	font-size: clamp(2rem,3.5vw,3rem);
}
.product-tit::after {
	display: flex;
	content: "";
	display: block;
	width: 1px;
	height: 80px;
	background-color: #fff;
	margin: 30px auto 0 auto;
}
.product__inner {
	max-width: 1900px;
	box-sizing: border-box;
	padding: 0 30px;
	margin: 0 auto;
}
.products-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.products-list__item {
  box-sizing: border-box;
  width: calc((100% - 40px) / 3); /* 3列：gapが20px × 2つ */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
	text-align: left;
	background-color: #fff;
	border-radius: 3px;
	padding: 30px;
}
.products-list__item img {
  display: block;
  width: 70%;
  margin: 0 auto 40px auto;
}
.products-list__tit {
  color: var(--color01);
  font-size: clamp(1.8rem,2.375vw,2rem);
  margin-bottom: 20px;
}
.products-list__tit span {
	display: block!important;
  font-size: 70%;
}
.products-list__item p {
  font-size: 1.4rem;
  margin-bottom: 0;
}

/* ==========================================================================
	PC 1025px -
	========================================================================== */

@media screen and (min-width: 1025px){


}
@media screen and (max-width: 1200px){/*1200以下*/

}


/* ==========================================================================
	TABLET - 1024px
	========================================================================== */

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

.link-list-wrapper {
	padding: 0 10px;
	margin-bottom: 60px;
}
.link-list__item {
	font-size: 1.1rem;
	letter-spacing: 0;
}

.products-list__item {
	width: calc((100% - 20px) / 2);
}
}

/* ==========================================================================
	SP - 640px
	========================================================================== */

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

.main {
	padding-top: 40px!important;
}
.link-list-wrapper {
	margin-bottom: 40px;
}
.link-list {
  gap: 5px;
}
.link-list__item {
	width: calc((100% - 10px) / 3); /* 10px × (3 - 1) = 20px */
}
.link-list__item a {
	padding: 12px 0;
}
.products-list__item {
	width: 100%;
}
.products-list__item img {
  margin: 0 auto 25px auto;
}
.product-tit::after {
	height: 50px;
	margin: 20px auto 0 auto;
}

}

