/* =================================
	stamp CSS
================================= */

/* line_text */
.line_text{
  font-weight: 800;
}
.line_green{
  background-color: #01b901;
  color: #fff;
  padding:0 2px;
}
@media all and (min-width: 768px) {
.line_text{
  text-align: center;
  font-size: 110%;
}
}
@media all and (max-width: 767px) {
.line_text{
  text-align: left;
  font-size: 110%;
}
}
/* memlist */
ul.memlist {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

ul.memlist li .lazy, ul.memlist li .lazy img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
  margin: 0 auto 0px;
  position: relative;
  height: 0;
  padding-top: 100%;
}

ul.memlist li a {
  display: block;
  /*background-color: #fff500;*/
  border: 1px solid #fff500;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
}
  .d_btn{
    background-color: #fff500;
    text-align: center;
    font-weight: 800;
    position: relative;
  }
  .d_btn::after{
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -4px;
	transition: all 0.2s;
}
ul.memlist li a .d_btn{
  color: #000;
}

@media all and (min-width: 768px) {
  ul.memlist{
    margin: 10px 0 0;
  }
  ul.memlist li {
    width: 20%;
    float: left;
    margin: 10px 10px 20px;
    width: -webkit-calc(100% / 4 - 20px);
    width: calc(100% / 4 - 20px);
  }
  ul.memlist li a {
    transition: 0.2s ease-in-out;
  }
  ul.memlist li a:hover {
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
  }
  .d_btn{
    /*margin-top: 10px;*/
    font-size: 95%;
    padding-right: 5px;
  }
}

@media all and (max-width: 767px) {
  ul.memlist{
    margin: 10px 0px;
  }
  ul.memlist li {
    width: 20%;
    float: left;
    margin: 9px;
    width: -webkit-calc(100% / 2 - 18px);
    width: calc(100% / 2 - 18px);
  }
  .d_btn{
    /*margin-top: 5px;*/
    font-size: 80%;
    padding-right: 3px;
  }
}
