body {
  background: #f5f5f5;
}

main {
  background: url("../../img/campaign/202508_campaign-toc/shimakouhan.svg") repeat;
  background-size: 30px 30px;
}

.p-hero__sec .p-hero__inner {
  font-size: 0;
}
.p-hero__sec .p-hero__inner .p-title--img {
  width: 100%;
  height: auto;
}

.p-campaign-list {
  padding: 20px 0;
}
@media (min-width: 768px) {
  .p-campaign-list {
    padding: 20px 0;
  }
}
.p-campaign-list__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-campaign-list__inner {
    padding: 0 40px;
  }
}
.p-campaign-list__title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  color: #ff0000;
  margin-bottom: 40px;
  position: relative;
  text-shadow: 2px 2px 3px rgba(51, 51, 51, 0.4);
}
@media (min-width: 768px) {
  .p-campaign-list__title {
    font-size: 3.6rem;
    margin-bottom: 60px;
  }
}
.p-campaign-list__title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
  margin: 10px auto 0;
  border-radius: 3px;
}

.p-campaign-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .p-campaign-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
}

.p-campaign-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.p-campaign-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}
.p-campaign-card--urgent {
  border: 2px solid #ff6b35;
}
.p-campaign-card--urgent::before {
  content: "URGENT!";
  position: absolute;
  top: 15px;
  right: -30px;
  background: #ff6b35;
  color: white;
  padding: 5px 40px;
  font-size: 12px;
  font-weight: bold;
  transform: rotate(45deg);
  z-index: 10;
}
.p-campaign-card__header {
  position: relative;
  overflow: hidden;
}
.p-campaign-card__category {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 8px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .p-campaign-card__category {
    font-size: 2.4rem;
    padding: 8px;
  }
}
.p-campaign-card__category img {
  width: 54px;
  height: 54px;
  filter: brightness(0) invert(1);
}
.p-campaign-card__category--semi-auto {
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
}
.p-campaign-card__category--tig {
  background: linear-gradient(135deg, #ffa500, #ff8c00);
}
.p-campaign-card__category--stick {
  background: linear-gradient(135deg, #ff9447, #ff7931);
}
.p-campaign-card__content {
  padding: 8px;
}
@media (min-width: 768px) {
  .p-campaign-card__content {
    padding: 25px;
  }
}
.p-campaign-card__products {
  margin-bottom: 25px;
}
.p-campaign-card__btn {
  display: block;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 16px;
}
.p-campaign-card__btn:hover {
  background: linear-gradient(135deg, #e55a2b, #e8831a);
  transform: translateY(-2px);
}
.p-campaign-card__btn--urgent {
  background: linear-gradient(135deg, #ff4757, #ff3838);
  animation: buttonPulse 3s infinite;
}
.p-campaign-card__btn--urgent:hover {
  background: linear-gradient(135deg, #ff3742, #ff2929);
}

.p-campaign-product {
  padding: 0;
  margin-bottom: 80px;
}
.p-campaign-product:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.p-campaign-product--single {
  border-bottom: none;
  text-align: center;
}
.p-campaign-product--urgent {
  text-align: center;
  border-bottom: none;
}
.p-campaign-product__name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-campaign-product__name {
    font-size: 20px;
  }
}
.p-campaign-product__price {
  margin-bottom: 15px;
}
.p-campaign-product__description {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}
.p-campaign-product__image {
  max-width: 100%;
  height: auto;
}

.p-campaign-product__name--single {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-campaign-product__name--single p {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 1.4;
  background: #E95513;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
}
.p-campaign-product__name--single h4 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #333;
  margin: 0;
  margin-bottom: 10px;
  line-height: 1.4;
}

.p-price-tag {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
@media (min-width: 768px) {
  .p-price-tag {
    gap: 15px;
  }
}
.p-price-tag img {
  height: auto;
  max-width: 100%;
}
.p-price-tag img:first-child {
  width: 80px;
}
@media (min-width: 768px) {
  .p-price-tag img:first-child {
    width: 100px;
  }
}
.p-price-tag img:last-child {
  width: calc(100% - 100px);
}
@media (min-width: 768px) {
  .p-price-tag img:last-child {
    width: calc(100% - 120px);
  }
}

@keyframes pulse {
  0%, 100% {
    background: linear-gradient(135deg, #ff4757, #ff3838);
  }
  50% {
    background: linear-gradient(135deg, #ff6b47, #ff5252);
  }
}
@keyframes buttonPulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
  }
  50% {
    box-shadow: 0 8px 20px rgba(255, 71, 87, 0.5);
  }
}
@keyframes priceGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.5;
  }
}/*# sourceMappingURL=202508_campaign-toc.css.map */