.page_paint {
  padding: 0 0 6rem;
  background-color: #f3f7fa;
}

@media screen and (max-width: 480px) {
  .page_paint {
    padding: 0 0 4rem;
  }
}

.page_paint .title {
  width: 100%;
  font-size: 2.8rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background-color: #255095;
  padding: 1rem 1.5rem;
  margin: 0 auto 6rem;
}

@media screen and (max-width: 480px) {
  .page_paint .title {
    font-size: 2rem;
    line-height: 2.6rem;
    margin: 0 auto 4rem;
  }
}

.page_paint__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}

@media screen and (max-width: 480px) {
  .page_paint__list {
    display: block;
  }
}

.page_paint__list_item {
  background-color: #fff;
  border: solid 1px #298dde;
  padding: 2rem;
  position: relative;
}

@media screen and (max-width: 480px) {
  .page_paint__list_item {
    margin-bottom: 3rem;
  }
}

.page_paint__list_item.popular::before {
  content: "";
  width: 11.3rem;
  height: 9.5rem;
  background: url(../img/label_popular.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -5rem;
  right: -3rem;
}

@media screen and (max-width: 480px) {
  .page_paint__list_item.popular::before {
    width: 25vw;
    top: -4rem;
    right: -1.5rem;
  }
}

.page_paint__list_item_label {
  font-weight: 600;
  text-align: center;
  background-color: #edeced;
  padding: 0.5rem 1rem;
}

.page_paint__list_merchandise {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
}

.page_paint__list_merchandise_image {
  max-width: 12rem;
}

.page_paint__list_merchandise_text {
  font-weight: 600;
}

.page_paint__list_merchandise_name {
  color: #255095;
}

.page_paint__list_merchandise_year {
  font-size: 1.4rem;
}

.page_paint__detail_list {
  margin-top: 2rem;
}

.page_paint__detail_list_item {
  font-size: 1.4rem;
  border-bottom: dashed 1px #222;
  padding: 1rem 2rem;
}

.page_paint__detail_list_item:first-of-type {
  border-top: dashed 1px #222;
}

.page_paint__detail_list_item label {
  color: #255095;
  width: 10rem;
  display: inline-block;
}

.page_paint__btn {
  margin-top: 3rem;
  font-size: 1.5rem;
}

/*==================================================
section page_paint END
===================================*/
