@charset "UTF-8";
/* Title */
.camp-sec-title-wrap {
  text-align: center;
  margin-bottom: 80px;
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  .camp-sec-title-wrap {
    margin-bottom: 50px;
  }
}
.camp-sec-title-wrap:after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  margin: 20px auto 0;
  background: #333;
}
.camp-sec-title-wrap .camp-sub-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #d21c24;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .camp-sec-title-wrap .camp-sub-title {
    font-size: 16px;
  }
}
.camp-sec-title-wrap .camp-sub-title:before, .camp-sec-title-wrap .camp-sub-title:after {
  background-color: #d21c24;
  content: "";
  height: 1px;
  width: 26px;
}
.camp-sec-title-wrap .camp-sub-title:before {
  margin-right: 2px;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}
.camp-sec-title-wrap .camp-sub-title:after {
  margin-left: 2px;
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
}
.camp-sec-title-wrap .camp-title {
  font-size: 28px;
  padding-top: 5px;
}
@media screen and (max-width: 480px) {
  .camp-sec-title-wrap .camp-title {
    font-size: 25px;
  }
}

/*フレーム*/
.sec-campaign .campaign-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sec-campaign .campaign-list > li:not(:last-of-type) {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #a4acad;
}
@media screen and (max-width: 480px) {
  .sec-campaign .campaign-list > li:not(:last-of-type) {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
.sec-campaign .campaign-list > li:last-of-type {
  margin-bottom: 50px;
}
.sec-campaign .campaign-list > li .campaign-slide {
  overflow: hidden;
  width: 50%;
}
@media screen and (max-width: 840px) {
  .sec-campaign .campaign-list > li .campaign-slide {
    width: 45%;
  }
}
@media screen and (max-width: 480px) {
  .sec-campaign .campaign-list > li .campaign-slide {
    width: 100%;
    margin-bottom: 30px;
  }
}
.sec-campaign .campaign-list > li .campaign-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-campaign .campaign-list > li .campaign-txt {
  width: 40%;
}
@media screen and (max-width: 840px) {
  .sec-campaign .campaign-list > li .campaign-txt {
    width: 45%;
  }
}
@media screen and (max-width: 480px) {
  .sec-campaign .campaign-list > li .campaign-txt {
    width: 100%;
  }
}

/*テキスト*/
.sec-campaign .campaign-txt .camp-price {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  margin-bottom: 5px;
}
.sec-campaign .campaign-txt .camp-price:before, .sec-campaign .campaign-txt .camp-price:after {
  background-color: #d21c24;
  content: "";
  height: 1px;
  width: 26px;
}
.sec-campaign .campaign-txt .camp-price:before {
  margin-right: 2px;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}
.sec-campaign .campaign-txt .camp-price:after {
  margin-left: 0px;
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
}
.sec-campaign .campaign-txt .camp-price small {
  font-size: 14px;
  font-weight: 400;
}
.sec-campaign .campaign-txt .camp-txt-box {
  margin-top: 15px;
  margin-bottom: 15px;
}
.sec-campaign .campaign-txt .camp-txt-box .camp-txt-list > li {
  text-align: center;
}
.sec-campaign .campaign-txt .camp-txt-box .camp-txt-list > li span {
  background-color: #feefc3;
  padding: 2px 4px;
}
.sec-campaign .campaign-txt .camp-txt-box .camp-txt-list > li {
  padding: 0 5px;
}
.sec-campaign .campaign-txt .camp-txt-box .camp-txt-list > li:not(:last-of-type) {
  margin-bottom: 8px;
}

/* 仕様 */
.campaign-spec .spec-title {
  border-bottom: 1px solid #808080;
  margin-bottom: 15px;
}
.campaign-spec .spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 15px;
}
@media screen and (max-width: 480px) {
  .campaign-spec .spec-list {
    grid-template-columns: 1fr;
  }
}
.campaign-spec .spec-box {
  background-color: #e6ebea;
  padding: 10px;
}

/* 注意事項テキストBOX */
.campaign-caution {
  margin-top: 50px;
}
.campaign-caution .caution-title {
  border-bottom: 1px solid #808080;
  margin-bottom: 15px;
}
.campaign-caution > ul {
  padding: 0;
}
.campaign-caution > ul > li {
  position: relative;
  padding-left: 1.2rem;
  line-height: 1.5;
}
.campaign-caution > ul > li:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.campaign-caution > ul > li:not(:last-of-type) {
  margin-bottom: 7px;
}