@charset "UTF-8";

a:hover {
	opacity: 1;
}
main {
	box-shadow: none;
}
.products-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1040px;
}
.inner {
  padding: 0;
}
@media screen and (max-width: 1024px) {
	.products-inner {
    display: block;
  }
}
@media screen and (max-width: 480px) {
}

/*----------------------------------
/sidebar
/----------------------------------*/
.sidebar {
  margin: 50px 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 255px;
          flex: 0 0 255px;
  position: relative;
}
.sidebar p {
  font-size: 2.2rem;
  padding: 20px 0;
  font-weight: bold;
}
.sidebar-contentsHead {
  font-size: 2.2rem;
  padding: 20px 0;
  font-weight: bold;
}
.sidebar p:after {
  font-family: hero-new, sans-serif;
  font-size:1.8rem;
  font-weight: 300;
  font-style: italic;
  content: 'Products';
  display: inline;
  margin-left: 20px; 
}
.sidebar-item {
  border-bottom: 1px solid gray;
}
.sidebar-item:first-of-type {
  border-top: 1px solid gray;
}
.sidebar-item a {
  display: block;
  padding: 20px 10px 20px 23px;
  position: relative;
}
.sidebar-item a:after {
  content: '';
  display: block;
  background-image: url(..../../../img/arrow-blue.svg);
  width: 20px;
  height: 10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
}
.sidebar-item a:hover::after {
  transition: .8s;
  right: 0;
}
@media screen and (max-width: 1024px) {
	.accordion .accordion_header {
		position: relative;
		z-index: +1;
		cursor: pointer;
		transition-duration: 0.2s;
	}
	.accordion .accordion_header:hover {
		opacity: .8;
	}
	.accordion .accordion_header b {
		position: absolute;
		top: 22px;
		right: 10px;
		width: 20px;
		height: 20px;
		box-sizing: border-box;
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		transform-origin: center center;
		transition-duration: 0.2s;
	}
	.accordion .accordion_header .icon {
		display: block;
		width: 18px;
		height: 18px;
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		transform-origin: center center;
		transition-duration: 0.2s;
		position: relative;
	}
	.accordion .accordion_header.open .icon {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
	.accordion .accordion_header .icon:before,
	.accordion .accordion_header .icon:after {
		display: flex;
		content: '';
		background-color: #00A9EB;
		border-radius: 10px;
		width: 18px;
		height: 2px;
		position: absolute;
		top: 8px;
		left: 0;
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		transform-origin: center center;
	}
	.accordion .accordion_header .icon:before {
		width: 2px;
		height: 18px;
		top: 0;
		left: 8px;
	}
	.accordion .accordion_header.open .icon:before {
		content: none;
	}
	.accordion .accordion_header.open .icon:after {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	.accordion .accordion_inner {
		display: none;
	}
}

/*----------------------------------
/main
/----------------------------------*/
.main {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  margin-top: 70px;
  margin-left: 40px;
  margin-bottom: 27px;
}
.main ul {
  max-width: 880px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.main p {
	position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
	line-height: 38px;
}
.main p img {
  display: inline-block;
	margin-right: 10px;
	width: 38px;
	height: auto;
}
.products-img {
	position: relative;
	height: auto;
	display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.16);
  transition: all .3s;
}
.products-img:hover {
  transform:scale(1.03);
  -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.16);
}
.main li:nth-child(1) .products-img img {
	display: block;
	margin: 0 auto;
	width: 100%;
}
.products-img img {
	display: block;
	margin: 0 auto;
	width: 100%;
}
@media screen and (min-width: 1025px) {
  .main li {
    width: calc(50% - 30px * 1/2);
    margin-bottom: 50px;
  }
  .main li:nth-child(2n+3) {
    margin-left: 30px;
  }
  .main li:nth-child(1) {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
	.sidebar {
    position: static;
    margin: 60px auto 30px;
		width: 860px;
  }
  .main {
		margin: 0 auto 100px;
		padding: 0;
		width: 860px;
	}
  .main ul {
		width: 100%;
  }	
  .main li {
		margin-left: 30px;
    width: calc(50% - 30px * 1/2);
    margin-bottom: 60px;
  }
	.main li + .main li {
    margin-left: 30px;
  }
	.main li:nth-child(1) {
		margin-left: 0;
    width: 100%;
  }
	.main li:nth-child(2n+2) {
    margin-left: 0;
  }
	.products-img {
		height: auto;
	}
}
@media screen and (max-width: 896px) {
	.sidebar {
		width: 90%;
  }
	.main {
		width: 90%;
	}
	.products-img {
		margin-bottom: 30px;
		height: auto;
	}
}
@media screen and (max-width: 480px) {
	.main li {
		margin-left: 20px;
    width: calc(50% - 20px * 1/2);
		margin-bottom: 40px;
  }
  .main li + .main li {
    margin-left: 20px;
  }
	.products-img {
		height: 150px;
	}
	.main p {
		font-size: 14px;
		line-height: 1.5;
		margin: 10px 0;
	}
	.main p img {
		float: left;
		margin: 2px 2px 0 0;
		width: 24px;
		height: auto;
	}
}