<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

a img {
  transition: opacity 0.2s;
  max-width: 100%;
}
a:hover img {
  opacity: 0.5;
}

.lineTitle {
  margin: 35px 0 40px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
  text-align: center;
  font-size: 27px;
}
@media screen and (max-width:480px) {
  .lineTitle {
    margin: 35px 0 20px;
    font-size: 20px;
  }
}

.campaignList {
  display: flex;
  flex-wrap: wrap;
  /*justify-content: space-between; 二つ並べるとき用*/
  justify-content: space-around;
  margin: 0;
  padding: 0;
}
.campaignList &gt; li {
  /*margin-top: 60px;
  margin-bottom: 40px;*/
  width: 49.25%;
  list-style-type: none;
}
.campaignList .img {
  margin-bottom: 10px;
}
.campaignList .img img {
  vertical-align: top;
}
.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 &gt; li {
    margin-top: 40px;
    width: auto;
  }
  .campaignList .period {
    min-height: 0;
  }
}
@media screen and (max-width:480px) {
  .campaignList &gt; li {
    margin-bottom: 30px;
  }
  .campaignList .period {
    font-size: 14px;
  }
  .campaignList .cmnLinkBtn {
    font-size: 15px;
  }
  .campaignList .sp {
    display: inline;
  }
}

.dib {
  display: inline-block;
}

.finishTitle {
  margin: 75px 0 20px;
  text-align: center;
  font-size: 27px;
  font-weight: bold;
}
.finishSubTitle {
  margin: 25px 0 0;
  border-bottom: 2px solid #ccc;
  font-size: 25px;
  font-weight: bold;
}
.finishList {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.finishList li {
  border-bottom: 1px dotted #ccc;
  padding: 20px 0 10px;
  font-size: 14px;
}
.finishList p + p {
  margin-top: 3px;
}
@media screen and (max-width:480px) {
  .finishTitle {
    margin: 50px 0 20px;
    font-size: 20px;
  }
  .finishSubTitle {
    font-size: 18px;
  }
  .finishList li {
    padding: 15px 0 10px;
  }
  .finishList p {
    font-size: 13px;
  }
}
</pre></body></html>