:root{
    --news-item-bgclor: var(--color-main-light);
    --news-item-category-image-width: 60px;
    --news-item-category-image-height: 15px;
}
.news_list_title {
  border-bottom: solid 2px var(--color-black);
}

.news_list {
  margin-top: 16px;
  margin-bottom: 80px;
}

.news_list .news_item {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  background-color: #fff;
  border: solid 1px #000;
  margin: 16px 0;
  padding: 0.6rem 1.6rem;
  border-radius: 4px;
  cursor: pointer;
  color: var(--color-black);
}

.news_list .news_item{
    background-color: var(--news-item-bgclor, #fffcee)
}

.news_list .info{
    position: relative;
}

.news_list .info .date{
    display: inline-block;
    margin-left: calc(var(--news-item-category-image-width) + 4px);
}

.news_list .news_item .category::after{
    content: '';
    display: inline-block;
    width: var(--news-item-category-image-width);
    height: var(--news-item-category-image-height);
    position: absolute;
    background-size: cover;
    top: 50%;
    transform: translate(0, -50%);
}

.news_detail{
  margin: 20px 0;
}

.news_detail h2{
  font-size: 2.0rem;
  padding-left: 14px;
  margin: 10px 0 12px;
  border-left: 5px solid var(--color-black);
}

.news_detail .info{
  position: relative;
  padding-left: 18px;
  font-size: 1.4rem;
}

.news_detail .info .date{
  display: inline-block;
  margin-left: calc(var(--news-item-category-image-width) + 4px);  
}

.news_detail .category::after{
  content: '';
  display: inline-block;
  width: var(--news-item-category-image-width);
  height: var(--news-item-category-image-height);
  position: absolute;
  background-size: cover;
  top: 50%;
  transform: translate(0, -50%);
}

.news_detail .news_detail_contents{
  padding: 18px;
  border: 1px solid var(--color-gray-medium, #efefef);
  border-radius: 4px;
}

.news-category-item .category::after{
    background-image: url("../images/icons/icon_newsItem.jpg");
}

.news-category-campaign .category::after{
    background-image: url("../images/icons/icon_newsCampaign.jpg");
}

.news-category-shop .category::after{
    background-image: url("../images/icons/icon_newsShop.jpg");
}

.news_list .news_item {
  border: solid 2px #000;
  border-radius: 10px;
  padding: 16px 56px 16px 16px;
}

.news_list .news_item::after{
  content: "";
  position: absolute;
  background-image: url("../images/icons/icon_black_arrow_right.png");
  background-size: cover;
  width: 24px;
  height: 24px;
  top: 50%;
  transform: translate(0, -50%);
  right: 1.6rem;
}

.news_list .news_item::after {
  width: 30px;
  height: 30px;
}

.news_item h5 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.news_empty {
    font-size: 2.4rem;
    padding: 1.8rem 0;
}

.news_return {
  margin-bottom: 40px;
}

.news_detail_image {
  padding-top: 18px;
}

.news_detail_noexistent {
  padding: 20px;
  font-size: 2.4rem;
}

@media screen and (max-width: 960px) {
    .news_list h5 {
        font-size: calc(1.4rem + 8 * (100vw - 520px)/440);
    }
    .news_list .info {
        font-size: calc(1.2rem + 4 * (100vw - 520px)/440);
    }

    .news_detail .info{
      font-size: calc(1.2rem + 4 * (100vw - 520px)/440);
      padding-left: 14px;
    }

    .news_detail h2{
      font-size: calc(1.8rem + 4 * (100vw - 520px)/440);
      margin: 8px 0 10px;
      padding-left: 8px;
    }

    .news_detail .news_detail_contents{
      padding: 14px;
    }

    .news_detail_image {
      padding-top: 14px;
    }
    

    
}

@media screen and (max-width: 520px) {
    .news_list .news_item::after {
      width: 20px;
      height: 20px;
    }
    
    .news_list .news_item {
      border-radius: 10px;
      padding: 1rem 50px 1rem 1.2rem;
    }
    .news_list h5 {
      font-size: 1.6rem;
    }
    .news_list .info {
      font-size: 1.2rem;
    }

    .news_detail .info{
      font-size: 1.2rem;
      padding-left: 12px;
    }

    .news_detail h2{
      font-size: calc(1.8rem + 4 * (100vw - 520px)/440);
      margin: 6px 0 8px;
      padding-left: 6px;
    }

    .news_detail .news_detail_contents{
      padding: 10px;
    }

    .news_detail_image {
      padding-top: 10px;
    }
    

}

/*----------------------------------------*/
/* shopdata */
/*----------------------------------------*/
.shopdata-area {
  order: 3;
  width: 230px;
  margin-top: 30px;
  padding: 0 7px;
  border: 1px solid var(--color-gray-medium);
}
.shopdata-main {
  padding: 7px 0;
}
.shopdata-main:last-child {
  border: none;
}
p.shopdata-title {
  margin-bottom: 3px;
  font-size: 1.6rem;
  font-weight: var(--font-bold);
}
.shopdata-detail {
  font-size: 1.4rem;
}
p.shopdata-subtitle,
p.shopdata-text {
  margin-bottom: 0;
}
p.shopdata-subtitle::before {
  content: '●';
}

@media screen and (max-width: 960px){
  .shopdata-area {
    order: 5;
    width: 100%;
    padding: 8px 15px;
    border: none;
    background: var(--color-gray-light);
  }
  .shopdata-main {
    padding: 7px 0;
  }
}

