@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
.main_contents {
  padding: 0 0 100px;
}

.main_contents .lineup_list {
  font-size: 0;
  margin-bottom: 20px;
}

.main_contents .lineup_list li {
  opacity: 0;
  filter: alpha(opacity=0);
  position: relative;
  display: inline-block;
  width: 180px;
  margin-right: 30px;
  margin-bottom: 30px;
  vertical-align: top;
}

.main_contents .lineup_list li:nth-child(5n) {
  margin-right: 0;
}

.main_contents .lineup_list li a {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.main_contents .lineup_list li:hover .lineup_thumb {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.main_contents .lineup_list li:hover .lineup_thumb:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 76, 172, 0.75);
  opacity: 1;
  filter: alpha(opacity=100);
}

.main_contents .lineup_list li:hover .lineup_thumb:after {
  opacity: 1;
  filter: alpha(opacity=100);
  content: 'DETAIL';
  position: absolute;
  width: 100%;
  height: 100%;
  color: #FFF;
  text-align: center;
  line-height: 254px;
  letter-spacing: 0.2em;
  font-family: 'Noto Sans Japanese', sans-serif;
  background: url("../img/item_arrow_hover.png") no-repeat 45px center;
  font-size: 11px;
}

.main_contents .lineup_list li:hover .goods_thumb {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.main_contents .lineup_list li:hover .goods_thumb:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 76, 172, 0.75);
  opacity: 1;
  filter: alpha(opacity=100);
}

.main_contents .lineup_list li:hover .goods_thumb:after {
  opacity: 1;
  filter: alpha(opacity=100);
  content: 'DETAIL';
  width: 100%;
  height: 100%;
  position: absolute;
  width: 100%;
  height: 100%;
  color: #FFF;
  text-align: center;
  line-height: 180px;
  letter-spacing: 0.1em;
  font-family: 'Noto Sans Japanese', sans-serif;
  background: url("../img/item_arrow_hover.png") no-repeat 50px center;
  font-size: 11px;
}

.main_contents .lineup_list li .lineup_thumb_wrap {
  width: 180px;
  height: 254px;
  margin-bottom: 14px;
  overflow: hidden;
  background: #FFF;
}

.main_contents .lineup_list li .lineup_thumb {
  position: relative;
  width: 180px;
  height: 254px;
  background-color: #FFF;
  -webkit-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-position: center center;
  -webkit-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
}

.main_contents .lineup_list li .lineup_thumb:before {
  content: '';
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  background: rgba(0, 76, 172, 0.75);
  opacity: 0;
  filter: alpha(opacity=0);
}

.main_contents .lineup_list li .lineup_thumb:after {
  opacity: 0;
  filter: alpha(opacity=0);
  content: 'DETAIL';
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
  letter-spacing: 0.2em;
  color: #FFF;
  text-align: center;
  line-height: 230px;
  font-family: 'Noto Sans Japanese', sans-serif;
  background: url("../img/item_arrow_hover.png") no-repeat 45px 114px;
  font-size: 11px;
}

.main_contents .lineup_list li .goods_thumb_wrap {
  width: 180px;
  height: 180px;
  margin-bottom: 14px;
  overflow: hidden;
  background: #FFF;
}

.main_contents .lineup_list li .goods_thumb {
  position: relative;
  width: 180px;
  height: 180px;
  border: 1px solid #e6e6e6;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  background-size: contain;
  -webkit-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.main_contents .lineup_list li .goods_thumb:before {
  content: '';
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  background: rgba(0, 76, 172, 0.75);
  opacity: 0;
  filter: alpha(opacity=0);
}

.main_contents .lineup_list li .goods_thumb:after {
  opacity: 0;
  filter: alpha(opacity=0);
  content: 'DETAIL';
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
  letter-spacing: 0.1em;
  color: #FFF;
  text-align: center;
  line-height: 160px;
  font-family: 'Noto Sans Japanese', sans-serif;
  background: url("../img/item_arrow_hover.png") no-repeat 50px 80px;
  font-size: 11px;
}

.main_contents .lineup_list .lineup_title {
  font-size: 12px;
  line-height: 1.4;
}

.main_contents .paging {
  text-align: center;
}

.main_contents .paging .pager_prev {
  display: inline-block;
  width: 18px;
  height: 14px;
  background: url("../img/item_prev.png") no-repeat center center;
  -webkit-background-size: contain;
  background-size: contain;
  margin-right: 48px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.main_contents .paging .pager_prev:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.main_contents .paging .pager_prev a {
  display: block;
  width: 18px;
  height: 14px;
}

.main_contents .paging ul {
  display: inline-block;
}

.main_contents .paging ul li {
  display: inline-block;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  margin-left: 10px;
}

.main_contents .paging ul li:first-child {
  margin-left: 0;
}

.main_contents .paging ul li.active {
  background: #004CAD;
  color: #FFF;
}

.main_contents .paging ul li a {
  display: block;
  width: 35px;
  height: 35px;
  color: #000;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.main_contents .paging ul li a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.main_contents .paging .pager_next {
  display: inline-block;
  width: 18px;
  height: 14px;
  background: url("../img/item_next.png") no-repeat center center;
  -webkit-background-size: contain;
  background-size: contain;
  margin-left: 48px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.main_contents .paging .pager_next:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.main_contents .paging .pager_next a {
  display: block;
  width: 18px;
  height: 14px;
}
