.slide {
   display: block;
}

@media screen and (max-width: 760px){
.slide2 {
  display: block;
}
.slide {
   display: none;
}
}

/* 見出しの余白 */

.side-h2_title {
margin-top: 4em !important;
}

/* Swiper 人気セット商品 */

.swiperSetProduct {
	padding-bottom: 30px;
	position: relative;
	.swiper-button-next,
	.swiper-button-prev {
		width: 30px;
		height: 30px;
		text-align: center;
		line-height: 30px;
		background-image: none;
		background-color: #666;
		opacity: .75;
		border-radius: 999px;
		&:after {
			font-family: 'FontAwesome';
			font-size: 15px;
			color: #ccc;
		}
	}
	.swiper-button-prev:after {
		content: '\f053';
	}
	.swiper-button-next:after {
		content: '\f054';
	}
	.swiper-slide img {
		border: none;
	}
}

/* インボイスのボックス */

.invoice-box {
  border: 2px solid #a40000;
  padding: 4px 8px;
  color: #a40000;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 599px) {
  .invoice-box {
    font-size: 14px;
  }
}

/* 新着情報ボックス */

.news-box {
  margin: 0 auto 15px;
  .news-box_title {
    background-color: #f90;
    color: #fff;
    font-weight: bold;
    padding: 5px 20px;
    margin-bottom: 10px;
    border-radius: 8px 8px 0 0;
    font-size: 19px;
  }
  dl {
    display: flex;
    flex-wrap: wrap;
    margin: 0 10px;
    dt {
      width: 20%;
      word-break: break-all;
    }
    dd {
      width: 80%;
      margin-left: 0;
      a {
        text-decoration: underline;
      }
    }
    dt,dd {
      border-bottom: 1px dashed #ddd;
      padding: 5px 0;
    }
  }
}
@media screen and (max-width: 599px) {
  .news-box {
    dl {
      dt {
        width: 100%;
        border-bottom: none;
      }
      dd {
        width: 100%;
        padding-left: 10px;
      }
    }
  }
}