/* 251118 */

.p-create-pc__sub-title {
  font-size: clamp(16px, 0.8214rem + 0.8929vw, 20px);
}
.h2__has-eng-campaign::before,
.h2__has-eng-feature::before,
.h2__has-eng-lineup::before,
.h2__has-eng-recommend::before {
  content: none;
}

@media screen and (max-width: 767px){
  .p-creator-pc__recommend .pc-reccomend__card-list {
    overflow-x: scroll;
    width: 100%;
    max-height: unset;
  }
  .p-creator-pc__recommend .pc-reccomend__card-list > ul {
    grid-template-columns: repeat(4, 1fr);
    width: 600px;
  }
  .p-creator-pc__recommend .pc-reccomend__card-list > ul >li {
    width: 227px;
  }
}

.p-create-pc__award-list-wrap{
  background:#fff;
  border-radius:var(--box-radius);
  padding:20px 40px;
}
.p-create-pc__award-list,
.p-create-pc__award-list li{
  width:100%;
}
.p-create-pc__award-list li:not(:first-child){
  border-top:1px dotted #ccc;
}
.p-create-pc__award-list .award-item{
  padding:20px 0;
  width:100%;
  display:flex;
  gap:30px;
  align-items: center;
}
.p-create-pc__award-list a:hover{ 
  background:var(--color-blue);
  cursor:pointer;
  -webkit-animation-duration: 0.6s;
  -webkit-animation-name: flash;
  animation-name: hover-flash;
  animation-duration: 0.6s;
  opacity: 1;
}
.p-create-pc__award-list .award-item img{
  width:20%;
}
.p-create-pc__award-list .award-item p{
  line-height:1.6;
}
@media screen and (max-width: 767px){
  .p-create-pc__award-list-wrap{
    padding:10px 20px;
  }
  .p-create-pc__award-list .award-item{
    padding:10px 0;
    gap:20px;
  }
  .p-create-pc__award-list .award-item img{
    width:30%;
  }
}

.p-create-pc__product-list{
  display:grid;
  gap:30px;
  grid-template-columns: repeat(3, 1fr);
}
.p-create-pc__product-list .c-button--primary-white{
  width:100%;
}
@media screen and (max-width: 767px){
  .p-create-pc__product-list{
    gap:10px;
    grid-template-columns: repeat(1, 1fr);
  }
}