@charset "utf-8";

.campaignList {
  display: flex;
  flex-wrap: wrap;
  /*justify-content: space-between;  二つ並べるとき用*/
  justify-content: space-around;
	gap: 60px 1.5%;
	margin: 0 0 40px;
	padding: 0;
}
.campaignList > li {
  width: 49.25%;
	list-style-type: none;
}
.campaignList a img {
	transition: opacity 0.2s;
}
.campaignList a:hover img {
	opacity: 0.5;
}
.campaignList .img {
  margin-bottom: 10px;
}
.campaignList .period {
  margin-bottom: 10px;
  min-height: 24px;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
}
.campaignList .cmnLinkBtn {
  font-size: 17px;
}
.campaignList .sp {
  display: none;
}
@media screen and (max-width:768px) {
  .campaignList {
    display: block;
  }
  .campaignList > li {
    margin-bottom: 40px;
    width: auto;
  }
  .campaignList .period {
    min-height: 0;
  }
}
@media screen and (max-width:480px) {
  .campaignList {
    margin-bottom: 30px;
  }
  .campaignList > li {
    margin-bottom: 30px;
	}
  .campaignList .period {
    font-size: 14px;
  }
  .campaignList .cmnLinkBtn {
    font-size: 15px;
  }
  .campaignList .sp {
    display: inline;
  }
}

.dib {
  display: inline-block;
}

.lead_att {
	width: 620px;
	margin: 1.5em auto 3em;
	font-size: 14px;
}
@media screen and (max-width:480px) {
	.lead_att {
		width: 100%;
	}
}