@charset "UTF-8";
.camCol {
  margin-top: 40px;
}

.camCol .txtCol {
  margin-top: 0;
  padding: 20px;
  background: #f2f2f2;
}

.camCol + .note {
  margin-top: 40px;
}

.camcardList {
  margin-top: 40px;
  text-align: center;
}

.camcardList li {
  position: relative;
  display: inline-block;
  width: 33.3%;
  vertical-align: top;
  text-align: left;
}

.camcardList li.card-red {
  background: #f5aaaa;
}

.camcardList li.card-purple {
  background: #e4c7ff;
}

.camcardList li.card-green {
  background: #8ae3ba;
}

.camcardList li.card-white {
  background: #d5dce6;
}

.camcardList li.card-yellow {
  background: #ffe68a;
}

.camcardList li.card-blue {
  background: #c8e3ff;
}

.camcardList li p {
  padding: 15px;
}

.camcardList li div {
  display: block;
  z-index: 0;
  overflow: hidden;
  position: relative;
  text-align: center;
  padding: 10px;
}

.camcardList li div img {
  width: 80%;
  height: 80%;
}

.camcardList li div::before {
  content: '';
  opacity: 0.5;
  /*半透明カラーの透明度*/
  -webkit-filter: blur(2px);
  filter: blur(2px);
  /*ぼかし度*/
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  background-position: 50% 8%;
  background-size: 160%;
}

.camcardList li div.cardbs47-1::before {
  background-image: url("../../images/campaign/bs47/card-1.png");
}

.camcardList li div.cardbs47-2::before {
  background-image: url("../../images/campaign/bs47/card-2.png");
}

.camcardList li div.cardbs47-3::before {
  background-image: url("../../images/campaign/bs47/card-3.png");
}

.camcardList li div.cardbs47-4::before {
  background-image: url("../../images/campaign/bs47/card-4.png");
}

.camcardList li div.cardbs47-5::before {
  background-image: url("../../images/campaign/bs47/card-5.png");
}

.camcardList li div.cardbs47-6::before {
  background-image: url("../../images/campaign/bs47/card-6.png");
}

.campainInfoCol {
  padding: 20px;
}

.campainInfo {
  width: 100%;
}

.campainInfo th, .campainInfo td {
  padding: 10px;
}

.campainInfo th {
  width: 20%;
  background: #CCC;
  color: #333;
  text-align: center;
}

.campainInfo td {
  background: #EEE;
}

.campainInfo tr + tr {
  border-top: 1px #FFF solid;
}

.decktableCol table {
  width: 100%;
  margin-top: 20px;
  font-size: 13px;
  border: 1px #666 solid;
}

.decktableCol table th, .decktableCol table td {
  padding: 8px;
}

.decktableCol table th {
  text-align: center;
  background: #666;
  color: #FFF;
  font-weight: bold;
}

.decktableCol table tr {
  border-bottom: 1px #666 dotted;
}

.decktableCol table td {
  position: relative;
}

.decktableCol table td:nth-of-type(1) {
  width: 20%;
  background: #888;
  color: #FFF;
  text-align: center;
}

.decktableCol table td:nth-of-type(1).cms {
  background: #FFF;
  color: #202020;
  padding: 12px 8px;
}

.decktableCol table td:nth-of-type(2) {
  width: 55%;
  background: #FFF;
}

.decktableCol table td:nth-of-type(3) {
  width: 15%;
  background: #CCC;
  text-align: center;
}

.decktableCol table td:nth-of-type(4) {
  width: 10%;
  background: #EEE;
  text-align: center;
}

.decktableCol table td span {
  position: absolute;
  display: inline-block;
  padding: 3px 5px;
  background: #c1111d;
  text-align: center;
  color: #FFF;
  font-size: 80%;
  top: 5px;
  left: -6px;
}

.decktableCol table td span::before {
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 0;
  content: ' ';
  border: 3px solid transparent;
  border-top: 3px solid #63090f;
  border-right: 3px solid #63090f;
}

@media screen and (max-width: 999px) {
  .decktableCol table {
    margin: 0 auto;
    font-size: pxVw(12px);
  }
  .decktableCol table th {
    font-size: x-small;
  }
  .decktableCol table td span {
    position: static;
    margin-bottom: 3px;
    padding: 2px 5px;
    font-size: x-small;
  }
  .decktableCol table td span::before {
    border: none;
  }
}

.popcardList {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 20px;
}

.popcardList li {
  width: 186px;
  padding: 0 10px 10px 0;
  position: relative;
}

.popcardList li img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.popcardList li:before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: url(../../images/common/ico_zoom.png) center no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.popcardList li:hover {
  opacity: 0.8;
}

.cardImg {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 20px;
}

.cardImg li {
  width: 186px;
  padding: 0 10px 10px 0;
  position: relative;
}

.cardImg li img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

/* ===============================================
   SP
=============================================== */
@media screen and (max-width: 999px) {
  .colorCol img {
    width: 100%;
  }
  .camcardList {
    margin-top: 20px;
  }
  .camcardList li {
    width: 46%;
    font-size: x-small;
    margin: 4px 2px;
  }
  .campainInfo {
    font-size: 3.5vw;
  }
  .popcardList {
    gap: 3% 3%;
  }
  .popcardList li {
    width: 25%;
    padding: 0 2vw 2vw 0;
  }
  .popcardList li:before {
    width: 10vw;
    height: 10vw;
  }
}
