@charset "UTF-8";

.contents {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #562B19;
}

.contents h2 {
  margin: 0 0 30px;
  font-size: 25px;
  line-height: 1.3;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 600;
}

.contents h2::before {
  width: 0;
  height: 0;
  background-image: none;
}

.read {
  margin-bottom: 25px;
}

/* .inner-wrap {
  margin-bottom: 30px;
}

.item-section p {
  margin: 5px 0;
  font-size: 13px;
} */

/* イトーヨーカドー限定商品 */
.limited-section {
  text-align: center;
  background: #FCD0CF;
  position: relative;
}

.limited-section li a {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  color: #562B19;
}

.item-grid-column li {
  background: #fff;
  border-radius: 4px;
  box-sizing: border-box;
  border-radius: 8px;
  overflow: hidden;
  filter: drop-shadow(0px 3px 10px rgb(211, 68, 95, 0.2));
}

.item-grid-column li:nth-last-child(n + 2) {
  margin-bottom: 20px;
}

.item-grid-column li p {
  margin: 0;
  padding: 15px 0 18px;
  font-size: 16px;
}

/* 商品ラインナップ */
.lineup-section {
  background: #FFF5F5;
}

.lineup-section h2 {
  color: #562B19;
}

.lineup-section .inner-wrap {
  margin-bottom: 20px;
}

.item-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.item-grid li img {
  border-radius: 8px;
}

.contents .text-link-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 30px;
}

.text-link-grid li {
  width: calc((100% - 8px) / 2);
  position: relative;
}

.text-link-grid li:after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -4px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
}

.contents .text-link-grid a {
  background: #EB7672;
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 100%; */
  /* height: 100%; */
  padding: 15px 20px 17px 10px;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  border-radius: 8px;
}

/* ボタン */
.cmn-link-btn {
  width: 100%;
  font-size: 17px;
  background: #CC514D;
}

.cmn-link-btn:nth-last-child(n + 2) {
  margin-bottom: 25px;
}

.bg_br {
  background: #562B19;
}

.bottom-section .cmn-link-btn:not(:last-child) {
  margin-bottom: 20px;
}

/* 下エリア */
.bottom-section {
  background: #fff;
}

/* PC表示 -----------------------------------*/
@media only screen and (min-width: 780px) {
  .contents h2 {
    font-size: 30px;
    margin: 10px 0 35px;
  }

  .item-grid-column li p {
    padding: 20px 0 23 px;
    font-size: 20px;
  }

  /* 商品ラインナップ */
  .item-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .text-link-grid li {
    width: calc((100% - 24px) / 4);
  }

  .contents .text-link-grid a {
    font-size: 15px;
  }

  /* ボタン */
  .cmn-link-btn {
    width: 380px;
  }
}