﻿.pro-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pro-item {
    margin: 0 30px 30px 0;
    width: calc(100%/3 - 20px);
}
.pro-item:nth-child(3n) {
  margin-right: 0;
}
.pro-itm-main {
 
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;

  overflow: hidden;
  margin-bottom: 15px;
}
.pro-itm-img {
  margin: 0;border: 1px solid #ececec;
}
.pro-itm-img img {
  width: 100%;
  max-width: none;
  max-height: 100%;
  transition: all 0.7s;
}
.pro-itm-btn {
  margin: 0;
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  transition: all 0.3s;
  z-index: 5;
}
.pro-itm-btn a {
  display: flex;
  width: 50%;
  background: #94c4d4;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  transition: all 0.5s;
}
.pro-itm-btn a:first-child {
  background: #1e4355;
}
.pro-itm-btn a:hover {
  background: #874925;
}
.pro-itm-ttl {
  text-align: center;
  line-height: 1.5em;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  color: #6f421b;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pro-item:hover .pro-itm-btn {
  bottom: 0;
}
.pro-itm-img a {
  display: block;
}
.pro-item:hover .pro-itm-img img {
  transform: scale(1.1, 1.1);
  opacity: 0.8;
}
.pro-itm-ttl a {
  text-decoration: none;
} 
.filter-ttl{
    text-align:right;
}
.filter-ttl select{
border: 1px solid #cecece;
    padding: 5px 20px;
}
@media screen and (max-width: 768px) {
 .pro-item {
    width: calc(50% - 15px);
}
 .pro-item:nth-child(2n) {
    margin-right: 0;
}
 .pro-itm-main{padding: 0}
 .filter-ttl select{margin-top: 10px;}
 .filter-ttl{text-align:left;}
}
@media screen and (max-width: 480px) {
.pro-list{justify-content:space-between}
.pro-item {
    width: 100%;
    margin: 0 0 30px;
}
.pro-itm-ttl{
   
    overflow: hidden;text-overflow: unset;
    white-space: unset;
}
}