@charset "utf-8";


/* =========================================================
nav-header-title
========================================================= */
#nav-header-title .page__title__inner{
	padding-bottom: 80px;
}
@media only screen and (max-width: 767px){
	#nav-header-title .page__title__inner{
		padding-bottom: 0;
	}
}

/* =========================================================
products_s
========================================================= */
#products_s{
	position: relative;
}
@media only screen and (max-width: 767px) {
	#products_s{
	}
}
#container .products_inner.inner {
	display:         flex;
	display: -webkit-flex;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
	        flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	        align-items: stretch;
	-webkit-align-items: stretch;
	padding-top: 0;
	padding-bottom: 180px;
}
@media print, screen and (max-width: 1000px) and (min-width: 768px) {
	#container .products_inner.inner {
		        flex-flow: row wrap;
		-webkit-flex-flow: row wrap;
		gap: 60px;
	}
}
@media only screen and (max-width: 767px){
	#container .products_inner.inner {
		        flex-flow: row wrap;
		-webkit-flex-flow: row wrap;
		gap: 60px;
		padding-bottom: 120px;
	}
}


/* =========================================================
products_img
========================================================= */
#products_img {
	position: relative;
	z-index: 1;
  width: 52.7%;
  max-width: 600px;
}
.products_img {
	width: 100%;
  padding: 9px;
  border: 1px solid var(--sub-color--border1);
}
.products_slider_img{
	display: block;
}
@media print, screen and (max-width: 1000px) {
	#products_img {
    width: 100%;
    max-width: 100%;
	}
}


/* =========================================================
products_slider
========================================================= */
#products_slider{
	width: 100%;
}
#products_slider .splide__track .splide__list .splide__slide {
	transition: opacity 1000ms cubic-bezier(0.25, 1, 0.5, 1) 0s;
}

/* =========================================================
products_thumbnails
========================================================= */
#products_thumbnails{
	width: 100%;
	margin-top: 60px;
}
#products_thumbnails .products_thumbnails{
	display:         flex;
	display: -webkit-flex;
	-webkit-justify-content: flex-start;
	        justify-content: flex-start;
	        flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	        align-items: flex-start;
	-webkit-align-items: flex-start;
	gap: 9px;
}
#products_thumbnails .thumbnail{
	width: calc((100% / 4) - ((9px * 3) / 4));
	cursor: pointer;
	-moz-transition: opacity 0.5s ease;
	-ms-transition: opacity 0.5s ease;
	-webkit-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
}
#products_thumbnails .thumbnail:hover{
	opacity: 0.8;
}
@media print, screen and (max-width: 1000px) {
	#products_thumbnails .products_thumbnails{
		gap: 19px;
	}
	#products_thumbnails .thumbnail{
		width: calc((100% / 5) - ((19px * 4) / 5));
	}
}


/* =========================================================
products_info
========================================================= */
#products_info {
  width: 39.5%;
  max-width: 450px;
}
@media print, screen and (max-width: 1000px) {
	#products_info {
    width: 100%;
    max-width: 100%;
	}
}


/* =========================================================
products_info__title
========================================================= */
.products_info__title {
	position: relative;
	z-index: 1;
	letter-spacing: 0;
	margin-top: -6px;
	width: 100%;
}
@media print, screen and (max-width: 1000px) {
	.products_info__title {
		margin-top: 0;
	}
}


/* =========================================================
products_info__text
========================================================= */
.products_info__text  {
	margin-top: 51px;
	width: 100%;
}


/* =========================================================
products_info__table
========================================================= */
.products_info__table {
	margin-top: 25px;
	width: 100%;
}


/* =========================================================
products_info__category
========================================================= */
.products_info__category {
	width: 100%;
	margin-top: 60px;
}
.products_info__category .products_category {
	display:         flex;
	display: -webkit-flex;
	-webkit-justify-content: flex-start;
	        justify-content: flex-start;
	        flex-flow: column nowrap;
	-webkit-flex-flow: column nowrap;
	        align-items: flex-start;
	-webkit-align-items: flex-start;
	width: 100%;
	gap: 10px;
}
.products_info__category .products_category .btn_area {
	width: 100%;
}
.products_info__category .products_category .btn_area .btn_def {
	margin: 0 auto 0 0;
	min-width: 190px;
}
@media print, screen and (max-width: 1000px) {
	.products_info__category .products_category {
		        flex-flow: row wrap;
		-webkit-flex-flow: row wrap;
		gap: 20px;
	}
	.products_info__category .products_category .btn_area {
		width: auto;
	}
	.products_info__category .products_category .btn_area .btn_def {
		margin: 0;
	}
}
@media only screen and (max-width: 767px){
	.products_info__category .products_category .btn_area {
		width: 100%;
	}
	.products_info__category .products_category .btn_area li {
		width: 100%;
	}
	.products_info__category .products_category .btn_area .btn_def {
		width: 100%;
	}
}
