@charset "utf-8";

/*  製品カタログ  */
h2.catalog_ttl {
	font-size: 2rem;
	background: none;
	color: #181617;
	padding: 100px 0 0;
	letter-spacing: 1.5px;
	text-align: center;
}
.comment{
	text-align: center;
}
.catalogBox {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	margin: 80px 0 50px;
}
.catalogBox .ctgBox {
	box-sizing: border-box;
	border: 1px solid #CCCCCC;
	background-color: #FFF;
	padding: 20px;
	width: calc(33% - 18px);
	margin-bottom: 10px;
	box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
    position: relative;
}
.catalogBox .ctgBox .ctgTitle,
.catalogBox .ctgBox .ctgTitle span{
	margin-bottom: 15px;
	color: #333;
	line-height: 1.4;
  font-size: 1.5rem;
  text-align: center;
}
.catalogBox .ctgBox .ctgIcon{
  display: block;
  max-width: 400px;
  margin: 0 auto 20px;
}
.catalogBox .ctgBox a{
  transition: .2s;
  text-decoration: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.catalogBox .ctgBox a:hover{
  opacity: 0.2;
  filter: alpha(opacity=20);
  -moz-opacity: 0.2;
  background: #bbe4ef;
}
.ctgPlate{
  text-align: center;
  color: #FFFFFF;
  background: #3b444d;
  line-height: 1;
  padding: 10px 20px;
  border-radius: 15px;
  font-size: 0.9rem;
  margin-top: 20px;
}


/*****************************************************
	iPad縦向き
******************************************************/
@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:portrait) {
  h2.catalog_ttl {
    padding: 0 0 0;
    margin-top: 6rem;
  }

}

/*****************************************************
	スマホ
******************************************************/
@media only screen and (max-device-width: 599px) {
  .catalogBox {
      flex-direction: column;
  }
  .catalogBox .ctgBox {
      width: 100%;
  }
}