@charset "utf-8";
.title {
  height: 310px;
  background-image: url(../images/cookingBread_img/bg-main.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}
.title h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: bold;
  text-shadow: 1px 1px 10px #4b2c14;
}
.title p {
  font-size: 14px;
  margin-top: 15px;
  letter-spacing: 0.1em;
  text-shadow: 1px 1px 10px #4b2c14;
}
/*▼親要素グリッドコンテナ.item-list・子要素グリッドアイテム.item-list li ▼*/
.item-list {
  display: grid;
  justify-content: center;
  /*↓↓↓食パン設定*/
  /*grid-template-columns: 1fr 1fr 1fr;*/
  /*↓↓↓菓子パン・調理パン設定*/
  grid-template-columns: repeat(auto-fit, 300px);
  /*grid-template-columns: repeat(auto-fit, 240px);*/
  /*	column-gap: 150px;*/
  column-gap: 95px;
  row-gap: 70px;
  /*width: 930px;*/
  width: 1150px;
  /*max-width: 90%を指定するのは、1150px以下の小さいブラウザで見た時にも左右の余白を5%ずつ確保するため*/
  max-width: 90%;
  /*	width: 1200px;*/
  /*max-width: 100%;*/
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto; /*background-color: #FFC;*/
  /*padding: 10px 10px;*/
}
.item-list dl {
  margin-top: 20px;
}
/*商品名*/
.item-list dt {
  font-weight: bold;
  line-height: 1.5em;
  letter-spacing: 0.2em;
}
.item-list dd {
  /*font-size: 13px;*/
  /*font-weight: bold;*/
  margin-top: 15px;
  letter-spacing: 0.1em;
  line-height: 20px;
  margin-top: 10px;
}
/*値段*/
.item-list .price {
  font-weight: bold;
  margin-top: 10px;
  text-align: right;
  letter-spacing: 0.1em;
}
.item-list li {
  position: relative;
}
.item-list .item-label {
  position: absolute;
  top: 0;
  left: calc(100% + 18px);
  font-size: 10px;
  white-space: nowrap;
  transform-origin: top left;
  transform: rotate(90deg);
}
.footer {
  margin-top: 100px;
}

/*▼モバイル800px▼*/
@media (max-width: 800px) {
  /*▼親要素グリッドコンテナ▼*/
  .item-list {
    letter-spacing: 1em;
    margin-top: 45px;
    grid-template-columns: 1fr;
    /*grid-template-columns: repeat(auto-fit, 360px);*/
    row-gap: 40px;
  }
  .item-list li {
    margin-bottom: 40px;
  }
  .footer {
    margin-top: 0px;
  }
}
