@charset "UTF-8";

.product-menu-wrap {
	position: relative;
	width: calc(90%);
	margin: 0 auto 40px;
	max-width: 1120px;
	top: 0;
	background: #F2F2F2;
	border-top: solid 1px #000;
	border-bottom: solid 1px #000;
	border-right: solid 1px #000;
	transition: all .4s;
}
.product-menu {
	display: flex;
	flex-wrap: wrap;
}
.product-menu > p {
	position: absolute;
	width: 100px;
	height: 100%;
	background: #000;
	left: 0;
	top: 0;
}
.product-menu > p span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #FFF;
	white-space: nowrap;
	font-weight: 600;
	letter-spacing: 0.02em;
}
.product-menu .filter-button-group {
	padding: 15px 15px 15px 280px;
	position: relative;
	width: 100%;
}
.button-group {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin-bottom: 10px;
}
.button-group > p {
	width: 140px;
	text-align: center;
	background: #8F8F8F;
	color: #FFF;
	font-size: 13px;
	margin-right: 20px;
	position: absolute;
	left: 120px;
}
.button-group .button {
	margin-right: 5px;
	border: none;
	background: none;
	font-size: 15px;
	font-weight: 500;
	padding-left: 24px;
	position: relative;
	font-family: "Zen Kaku Gothic New", sans-serif;
	color: #000;
}
.button-group .button:before {
	width: 16px;
	height: 16px;
	background: #FFF;
	border: solid 1px #000;
	left: 0;
	top: 4px;
}
.button-group .button.is-checked:after {
	width: 18px;
	height: 18px;
	background-image: url("../img/common_img/icon-checked.svg");
	left: 2px;
	top: 2px;
}
.button-reset {
	width: calc(100%);
	color: #FFF;
	border: none;
	background: #39992D;
	padding: 5px 0;
	font-size: 16px;
	transition: all .4s;
	font-family: "Zen Kaku Gothic New", sans-serif;
	position: relative;
	left: -160px;
	margin: 10px 0 0;
}
.button-reset:hover {
	background: #5FB854;
}
.product-links {
	padding-bottom: 100px;
}
.product-links ul {
	display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; 
	width: 102%;
	position: relative;
	left: -1%;
}
.product-links ul li {
	width: 23%;
	margin: 0 1% 40px;
	display: flex;
  flex-direction: column;
}
.product-links ul li .image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  flex-grow: 1;
	transition: all .4s;
}
.product-links ul li .image img {
  height: 100%; /* コンテナの高さいっぱいにする */
  width: auto; /* アスペクト比維持 */
  position: absolute; /* 親要素基準で配置 */
  left: 50%; /* 中央寄せ */
  transform: translateX(-50%); /* 画像の中央基準で調整 */
}
.product-links ul li .image p {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(0,0,0,0.50);
	line-height: 1.4em;
	font-size: 11px;
}
.product-links ul li .image p span {
	display: inline-block;
	color: #FFF;
	padding: 3px 4px;
	width: 70px;
	text-align: center;
	background: #000;
}
.product-links ul li .txt {
	height: 80px;
	padding: 5px;
}
.product-links ul li .txt .name {
	font-size: 13px;
	line-height: 1.4em;
	overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.product-links ul li .txt .category {
	font-size: 11px;
	color: var(--main-color);
}
.other-techdev {
	padding-bottom: 100px;
}

@media screen and (max-width: 834px) {
	.product-menu-wrap {
		position: relative;
		width: 100%;
		margin: 20px auto 40px;
		max-width: 1120px;
		top: 0;
		background: #F2F2F2;
		border-top: solid 1px #000;
		border-bottom: solid 1px #000;
		transition: all .4s;
	}
	.product-menu-wrap:before {
		background: #F2F2F2;
		position: absolute;
		width: 100vw;
		left: 0;
		height: 100%;
		border-top: solid 1px #000;
		border-bottom: solid 1px #000;
		top: -1px;
	}
	.product-menu {
		display: flex;
		flex-wrap: wrap;
	}
	.product-menu > p {
		position: relative;
		width: 100%;
		height: 100%;
		background: #000;
		left: 0;
		top: 0;
		text-align: center;
	}
	.product-menu > p span {
		position: relative;
		top: 0;
		left: 0;
		transform: translate(0, 0);
		color: #FFF;
		font-weight: 600;
		text-align: center;
	}
	.product-menu .filter-button-group {
		padding: 15px 15px 15px 15px;
		position: relative;
		width: 100%;
	}
	.button-group {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 100%;
		margin-bottom: 10px;
	}
	.button-group > p {
		width: 100%;
		display: block;
		position: relative;
		text-align: center;
		background: #8F8F8F;
		color: #FFF;
		font-size: 12px;
		margin-right: 0;
		margin-bottom: 5px;
		left: 0;
	}
	.button-group .button {
		margin-right: 0;
		margin-bottom: 5px;
		border: none;
		font-size: 14px;
		font-weight: 500;
		padding-left: 24px;
		position: relative;
		width: 48%;
		text-align: left;
	}
	.button-group .button:before {
		width: 13px;
		height: 13px;
		background: #FFF;
		border: solid 1px #000;
		left: 0;
		top: 4px;
	}
	.button-group .button.is-checked:after {
		width: 18px;
		height: 18px;
		background-image: url("../img/common_img/icon-checked.svg");
		left: 2px;
		top: 2px;
	}
	.button-reset {
		width: 90%;
		position: relative;
		color: #FFF;
		border: none;
		background: #39992D;
		padding: 5px 0;
		font-size: 16px;
		transition: all .4s;
		left: 50%;
		transform: translateX(-50%);
	}
	.button-reset:hover {
		background: #5FB854;
	}
	.product-links {
		padding-bottom: 100px;
	}
	.product-links ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between; 
		width: 102%;
		position: relative;
		left: -1%;
	}
	.product-links ul li {
		width: 48%;
		margin: 0 1% 40px;
		display: flex;
		flex-direction: column;
	}
	.product-links ul li .image {
		width: 100%;
		height: 140px;
		overflow: hidden;
		position: relative;
		flex-grow: 1;
		transition: all .4s;
	}
	.product-links ul li .image img {
		height: 100%; /* コンテナの高さいっぱいにする */
		width: auto; /* アスペクト比維持 */
		position: absolute; /* 親要素基準で配置 */
		left: 50%; /* 中央寄せ */
		transform: translateX(-50%); /* 画像の中央基準で調整 */
	}
	.product-links ul li .image p {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		background: rgba(0,0,0,0.50);
		line-height: 1.4em;
		font-size: 11px;
	}
	.product-links ul li .image p span {
		display: inline-block;
		color: #FFF;
		padding: 3px 4px;
		width: 70px;
		text-align: center;
		background: #000;
	}
	.product-links ul li .txt {
		height: 30px;
		padding: 5px;
	}
	.product-links ul li .txt .name {
		font-size: min(2.7vw,12px);
		line-height: 1.4em;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}
	.product-links ul li .txt .category {
		font-size: min(2.3vw,11px);
		color: var(--main-color);
	}
	.other-techdev {
		padding-bottom: 100px;
	}
}


.related-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
  gap: 2%;
}
.related-links li {
	width: 32%;
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: solid 1px #000;
	position: relative;
	padding: 18px 5px;
	text-align: center;
	line-height: 1.4em;
	background: #FFF;
	transition: all .4s;
}
.related-links li:after {
	right: 10px;
	bottom: 10px;
	width: 10px;
	height: 10px;
	background-image: url("../img/common_img/window-green.svg");
}
.related-links li p {
	line-height: 1.4em;
	font-size: 13px;
}
.related-links li p span {
	font-size: 11px;
	color: var(--main-color);
	display: block;
}
@media (hover: hover) {
	.product-links ul li:hover .image {
		opacity: .6;
	}
	.related-links li:hover {
		background: #F5FFF4;
		border: solid 1px #39992D;
	}
}

@media screen and (max-width: 834px) {
	.related-links {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 0;
		max-width: 360px;
		margin: 0 auto;
	}
	.related-links li {
		width: 100%;
		margin-bottom: 10px;
		display: flex;
		justify-content: center;
		align-items: center;
		border: solid 1px #000;
		position: relative;
		padding: 18px 5px;
		text-align: center;
		line-height: 1.4em;
		background: #FFF;
		transition: all .5s;
	}
}


.page-basic.product .page-ttl {
	padding: 30px 5%;
}
.page-basic.product .page-ttl p {
	font-family: var(--en-font);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4em;
}
.page-basic.product .page-ttl h1 {
	font-size: 20px;
	line-height: 1.4em;
}
.product .content h2 {
	font-size: 32px;
	line-height: 1.4em;
}
.product-main_copy {
	font-size: 24px;
	color: var(--main-color);
	line-height: 1.4em;
	padding: 20px 0 15px;
}
.product-main .keywords {
	margin-bottom: 15px;
}
.product-main .keywords li {
	margin-bottom: 3px;
	line-height: 1.4em;
}
.product-main .keywords li span {
	display: inline-block;
	background: #8F8F8F;
	color: #FFF;
	font-size: 11px;
	line-height: 1.4em;
	padding: 3px 10px;
}
.product-main .category {
	color: var(--main-color);
}
.product-main {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.product-main .txt {
	width: calc(100% - 530px);
}
.product-gallery {
	width: 500px;
}
 /* メインスライダー */
.swiper-main {
	width: 100%;
	height: 360px!important;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.swiper-main .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%!important;
	height: 360px!important;
	overflow: hidden;
}
.swiper-main img {
	height: 100%; /* 画像の高さを親divに合わせる */
  width: 100%; /* 横幅を自動調整 */
  object-fit: contain; 
}

/* サムネイルスライダー */
.swiper-thumbs {
	width: 100%;
	height: 100px;
}
.swiper-thumbs .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25%;
	height: 60px;
	background-color: #f0f0f0; /* 背景色を薄いグレーに */
	cursor: pointer;
	overflow: hidden;
	opacity: 1;
}
.swiper-thumbs .swiper-slide:before {
	width: 100%;
	height: 100%;
	z-index: 2;
	background: #000;
	opacity: .2;
}
.swiper-thumbs .swiper-slide-thumb-active:before {
	background: #39992D;
}
.swiper-thumbs .swiper-slide img {
	height: 100%; /* 画像の高さを親divに合わせる */
  width: auto; /* 横幅を自動調整 */
  object-fit: cover; 
}


.product-sub-block {
	margin-bottom: 80px;
}
.product-sub-block h3 {
	position: relative;
	margin-bottom: 15px;
}
.product-sub-block h3:after {
	width: 100%;
	height: 1px;
	background: #39992D;
	left: 0;
	top: 50%;
	z-index: -1;
}
.product-sub-block h3 span {
	display: inline-block;
	padding: 4px 15px;
	background: #39992D;
	color: #FFF;
}
.product-point-list {
	position: relative;
}
.product-point-list li {
  list-style-type: none;
  counter-increment: cnt;
	padding-left: 15px;
	position: relative;
	line-height: 1.4em;
	margin: 4px 0 15px;
}
.product-point-list li::before {
	width: 8px;
	height: 8px;
	background: #39992D;
	left: 0;
	top: 8px;
}

.link-block {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 102%;
	left: -1%;
}
.link-block a {
	line-height: 1.4em;
	margin: 0 1% 2%;
}
.link-block a span {
	display: block;
	font-size: 10px;
	line-height: 1.4em;
}
.link-pdf,
.link-movie {
	display: block;
	width: 31.33%;
	height: 100px;
	padding: 35px 0 0 60px;
	border: solid 1px #000;
	box-sizing: border-box;
	position: relative;
	transition: all .4s;
}
.link-cart {
	display: block;
	width: 31.33%;
	height: 100px;;
	padding: 30px 5px 0 55px;
	border: solid 1px #000;
	box-sizing: border-box;
	position: relative;
	transition: all .4s;
}
.link-pdf:before {
	width: 30px;
	height: 40px;
	background-image: url("../img/common_img/icon-pdf.svg");
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
}
.link-movie:before {
	width: 40px;
	height: 30px;
	background-image: url("../img/products_img/icon-movie.svg");
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
}
.link-cart:before {
	width: 40px;
	height: 30px;
	background-image: url("../img/products_img/icon-cart.svg");
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
}
.link-pdf:after,
.link-movie:after {
	width: 12px;
	height: 8px;
	background-image: url("../img/common_img/arrow-black.svg");
	right: 10px;
	bottom: 10px;
	transition: all .4s;
}
.link-cart:after {
	width: 12px;
	height: 8px;
	background-image: url("../img/common_img/window-green.svg");
	right: 10px;
	bottom: 10px;
	transition: all .4s;
}
@media (hover: hover) {
	.link-pdf:hover,
	.link-movie:hover,
	.link-cart:hover{
		background: #FBFBFB;
	}
	.link-pdf:hover:after,
	.link-movie:hover:after{
		animation: moveRight .4s ease-in-out;
	}
}

@keyframes moveRight {
  from {
		opacity: 0;
    right: 15px;
  }
  to {
		opacity: 1;
    right: 10px;
  }
}

.product-bnr-links {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.product-bnr-links li {
	width: 48%;
	position: relative;
	text-align: center;
}
.product-bnr-links li > p {
	text-align: center;
	color: var(--main-color);
	padding-bottom: 10px;
}
.product-bnr-links li .bnr {
	width: 100%;
	display: flex;
  align-items: center;
  justify-content: center;
	height: 180px;
}
.product-bnr-links li .bnr p {
	position: relative;
	z-index: 2;
	font-size: 18px;
	line-height: 1.4em;
}
.product-bnr-links li.bnr-contact .bnr {
	background: #F4F4F4;
	border: solid 1px #000;
	position: relative;
		transition: all .4s;
}
.product-bnr-links li.bnr-contact .bnr:before {
	width: 90px;
	height: 100px;
	background-image: url("../img/products_img/icon-mail.svg");
	left: 30px;
	top: 50%;
	transform: translateY(-50%);
}
.product-bnr-links li.bnr-service .bnr {
	background: url("../img/products_img/group-bnr-bg.jpg") no-repeat center center;
	background-size: cover;
	background-position: center center;
	position: relative;
}
.product-bnr-links li.bnr-service .bnr:before {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg,#84c261 0%, #39992d 37.93%, #003400 100%);
	opacity: .7;
	top: 0;
	left: 0;
	transition: all .4s;
}
.product-bnr-links li.bnr-service .bnr p {
	color: #FFF;
}

.product-bnr-links li.bnr-contact .bnr:after {
	width: 12px;
	height: 8px;
	background-image: url("../img/common_img/arrow-black.svg");
	right: 10px;
	bottom: 10px;
	transition: all .4s;
}
.product-bnr-links li.bnr-service .bnr:after {
	width: 12px;
	height: 8px;
	background-image: url("../img/common_img/window-green.svg");
	right: 10px;
	bottom: 10px;
	transition: all .4s;
}
@media (hover: hover) {
	.product-bnr-links li.bnr-contact .bnr:hover {
		background: #E8E8E8;
	}
	.product-bnr-links li.bnr-contact.bnr:hover:after{
		animation: moveRight .4s ease-in-out;
	}
	.product-bnr-links li.bnr-service .bnr:hover:before {
		opacity: .9;
	}
}

@media screen and (max-width: 990px) {
	.link-block a {
		font-size: 13px;
	}
}
@media screen and (max-width: 834px) {
	.page-basic.product .page-ttl {
		padding: 20px 5%;
	}
	.page-basic.product .page-ttl p {
		font-family: var(--en-font);
		font-size: 13px;
		font-weight: 500;
		line-height: 1.4em;
	}
	.page-basic.product .page-ttl h1 {
		font-size: 16px;
		line-height: 1.4em;
	}
	.product .content h2 {
		font-size: 22px;
		line-height: 1.4em;
	}
	.product-main_copy {
		font-size: 18px;
		color: var(--main-color);
		line-height: 1.4em;
		padding: 20px 0 15px;
	}
	.product-main .keywords {
		margin-bottom: 15px;
	}
	.product-main .keywords li {
		margin-bottom: 3px;
		line-height: 1.4em;
	}
	.product-main .keywords li span {
		display: inline-block;
		background: #8F8F8F;
		color: #FFF;
		font-size: 11px;
		line-height: 1.4em;
		padding: 3px 10px;
	}
	.product-main .category {
		color: var(--main-color);
	}
	.product-main {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 30px 0 0;
	}
	.product-main .txt {
		width: calc(100%);
		order: 2;
		padding: 0 0 20px;
	}
	.product-gallery {
		width: 100%;
		order: 1;
	}
	 /* メインスライダー */
	.swiper-main {
		width: 100%;
		height: 220px!important;
		margin-bottom: 10px;
		background-color: #f0f0f0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.swiper-main .swiper-slide {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%!important;
		height: 220px!important;
		background-color: #f0f0f0;
		overflow: hidden;
	}
	.swiper-main img {
		height: 100%; /* 画像の高さを親divに合わせる */
		width: auto; /* 横幅を自動調整 */
		object-fit: cover; 
	}

	/* サムネイルスライダー */
	.swiper-thumbs {
		width: 100%;
		height: 80px;
	}
	.swiper-thumbs .swiper-slide {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 25%;
		height: 60px;
		background-color: #f0f0f0; /* 背景色を薄いグレーに */
		cursor: pointer;
		overflow: hidden;
		opacity: 1;
	}
	.swiper-thumbs .swiper-slide:before {
		width: 100%;
		height: 100%;
		z-index: 2;
		background: #000;
		opacity: .2;
	}
	.swiper-thumbs .swiper-slide-thumb-active:before {
		background: #39992D;
	}
	.swiper-thumbs .swiper-slide img {
		height: 100%; /* 画像の高さを親divに合わせる */
		width: auto; /* 横幅を自動調整 */
		object-fit: cover; 
	}
	.product-sub-block {
		margin-bottom: 50px;
	}
	.product-sub-block h3 {
		position: relative;
		margin-bottom: 15px;
	}
	.product-sub-block h3:after {
		width: 100%;
		height: 1px;
		background: #39992D;
		left: 0;
		top: 50%;
		z-index: -1;
	}
	.product-sub-block h3 span {
		display: inline-block;
		padding: 2px 10px;
		background: #39992D;
		color: #FFF;
	}
	.product-point-list {
		position: relative;
	}
	.product-point-list li {
		list-style-type: none;
		counter-increment: cnt;
		padding-left: 15px;
		position: relative;
		line-height: 1.4em;
		margin: 4px 0 10px;
	}
	.product-point-list li::before {
		width: 8px;
		height: 8px;
		background: #39992D;
		left: 0;
		top: 5px;
	}

	.link-block {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		width: 102%;
		left: -1%;
	}
	.link-block a {
		line-height: 1.4em;
	}
	.link-block a span {
		display: block;
		font-size: 11px;
	}
	.link-pdf,
	.link-movie {
		display: block;
		width: 100%;
		height: 60px;
		margin: 0 auto 10px;
		padding: 20px 0 0 70px;
		border: solid 1px #000;
		box-sizing: border-box;
		position: relative;
		transition: all .4s;
	}
	.link-cart {
		display: block;
		width: 100%;
		height: 60px;
		margin: 0 auto 10px;
		padding: 13px 0 0 60px;
		border: solid 1px #000;
		box-sizing: border-box;
		position: relative;
		transition: all .4s;
	}
	.link-pdf:before {
		width: 30px;
		height: 40px;
		background-image: url("../img/common_img/icon-pdf.svg");
		left: 20px;
		top: 50%;
		transform: translateY(-50%);
	}
	.link-movie:before {
		width: 40px;
		height: 30px;
		background-image: url("../img/products_img/icon-movie.svg");
		left: 15px;
		top: 50%;
		transform: translateY(-50%);
	}
	.link-cart:before {
		width: 40px;
		height: 30px;
		background-image: url("../img/products_img/icon-cart.svg");
		left: 10px;
		top: 50%;
		transform: translateY(-50%);
	}
	.link-pdf:after,
	.link-movie:after {
		width: 12px;
		height: 8px;
		background-image: url("../img/common_img/arrow-black.svg");
		right: 10px;
		bottom: 10px;
		transition: all .4s;
	}
	.link-cart:after {
		width: 12px;
		height: 8px;
		background-image: url("../img/common_img/window-green.svg");
		right: 10px;
		bottom: 10px;
	}
	.product-bnr-links {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.product-bnr-links li {
		width: 100%;
		position: relative;
		text-align: center;
		margin-bottom: 30px;
	}
	.product-bnr-links li > p {
		text-align: center;
		color: var(--main-color);
		padding-bottom: 5px;
	}
	.product-bnr-links li .bnr {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 120px;
	}
	.product-bnr-links li .bnr p {
		position: relative;
		z-index: 2;
		font-size: 14px;
		line-height: 1.4em;
	}
	.product-bnr-links li.bnr-contact .bnr {
		background: #F4F4F4;
		border: solid 1px #000;
		position: relative;
			transition: all .4s;
	}
	.product-bnr-links li.bnr-contact .bnr:before {
		width: 70px;
		height: 80px;
		background-image: url("../img/products_img/icon-mail.svg");
		left: 20px;
		top: 50%;
		transform: translateY(-50%);
	}
	.product-bnr-links li.bnr-service .bnr {
		background: url("../img/products_img/group-bnr-bg.jpg") no-repeat center center;
		background-size: cover;
		background-position: center center;
		position: relative;
	}
	.product-bnr-links li.bnr-service .bnr:before {
		width: 100%;
		height: 100%;
		background: linear-gradient(135deg,#84c261 0%, #39992d 37.93%, #003400 100%);
		opacity: .7;
		top: 0;
		left: 0;
		transition: all .4s;
	}
	.product-bnr-links li.bnr-service .bnr p {
		color: #FFF;
	}

	.product-bnr-links li.bnr-contact .bnr:after {
		width: 12px;
		height: 8px;
		background-image: url("../img/common_img/arrow-black.svg");
		right: 10px;
		bottom: 10px;
		transition: all .4s;
	}
	.product-bnr-links li.bnr-service .bnr:after {
		width: 12px;
		height: 8px;
		background-image: url("../img/common_img/window-green.svg");
		right: 10px;
		bottom: 10px;
		transition: all .4s;
	}
}