@charset "utf-8";

/*=== メインレイアウト ===*/
.main-section > *:first-child {
  margin-top: 0;
}
.main-cont {
  margin-top: 0;
}

/*=== メインビジュアル ===*/
.mainvisual {
  margin: 20px auto;
}
.mainvisual-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/*=== 一覧 ===*/
.cardList.pattern-contact {
  padding-top: 60px;
}
.cardList .cardList-ttl {
  font-size: 36px;
  border-bottom: 2px solid #232b35;
  font-weight: bold;
}
.cardList .cardList-txt {
  font-size: 20px;
  font-weight: bold;
  margin-top: 16px;
}
.cardList .cardList-txt span {
  color: #c71b00;
}
.shopList {
  margin-top: 40px;
  background-color: #fff08f;
}
.shopList-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 -10px;
  padding: 0 0 70px;
  filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.2));
}
@media print, screen and (max-width: 980px) {
  .shopList-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.shopList-item {
  margin: 40px 10px 0;
}
.shopList-item:last-child {
  padding-right: 0;
}
a.shopList-link {
  width: 100%;
  padding: 20px 20px 30px;
}
.shopList-thumb {
  max-width: 300px;
  height: 250px;
  margin: 0 auto;
}
.shopList-name {
  margin-top: 25px;
  font-size: 18px;
}
.shopList-price {
  margin: 10px -20px 0;
  color: #ea0808;
  font-size: 24px;
}
.shopList-price .type-em {
  font-size: 34px;
}
.shopList-category {
  justify-content: flex-start;
  margin: 0 -8px;
}
.shopList-label {
  margin: 10px 8px 0;
  padding: 8px 15px 10px;
  border-color: #666;
  color: #666;
  font-weight: normal;
  font-size: 14px;
  border-radius: 50px;
}
.shopList-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 50px;
  margin-top: 30px;
  padding: 5px 40px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
  background-color: #ac2330;
  border-radius: 50px;
}
.shopList-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 12px;
  background-color: #fff;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  transform: translateY(-50%);
}

/*=== おすすめポイント ===*/
.shopPoint {
  margin-top: 25px;
  font-size: 16px;
  background-color: #f7f7f7;
  border-radius: 10px;
  overflow: hidden;
}
.shopPoint-ttl {
  position: relative;
  padding: 12px 50px;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  background-color: #1f8278;
}
.shopPoint-ttl::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  width: 23px;
  height: 27px;
  background: url(images/shopPoint_ic_001.png) no-repeat top center / 100% auto;
  transform: translateY(-50%);
}
.shopPoint-list {
  padding: 15px 20px 20px;
}
.shopPoint-item {
  position: relative;
  padding-left: 1em;
}
.shopPoint-item:not(:first-child) {
  margin-top: 10px;
}
.shopPoint-item::before {
  content: "・";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: #1f8278;
}

/*=== 他ページ遷移ボタンエリア ===*/
.page {
  margin-top: 60px;
}
.page-transition {
  margin: 0 auto;
  max-width: 640px;
}
a.page-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 96px;
  padding: 10px 45px;
  color: #232b35;
  font-size: 32px;
  text-align: center;
  line-height: 1.2;
  text-decoration: none;
  background-color: #f2f2f2;
  border-radius: 50px;
}
a.page-btn.pattern-main {
  color: #fff;
  font-weight: bold;
  background-color: #c4141c;
  box-shadow: 4px 8px 8px rgba(0, 0, 0, 0.2);
}
a.page-btn:visited {
  color: #232b35;
}
a.page-btn.pattern-main:visited {
  color: #fff;
}
a.page-btn:hover {
  text-decoration: none;
  opacity: 0.7;
}
a.page-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 15px;
  height: 20px;
  background-color: #232b35;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  transform: translateY(-50%);
}
a.page-btn.pattern-main::after {
  background-color: #fff;
}

@media print, screen and (max-width: 768px) {
  /*=== メインビジュアル ===*/
  .mainvisual {
    margin-top: 0;
  }
  .mainvisual-main {
    max-width: 550px;
    padding: 0 10px;
  }
  /*=== 一覧 ===*/
  .cardList.pattern-contact {
    padding-top: 30px;
  }
  .cardList .cardList-ttl {
    font-size: 28px;
    border-bottom: 1px solid #232b35;
  }
  .cardList .cardList-txt {
    font-size: 16px;
    margin-top: 12px;
  }
  .shopList {
    margin-top: 0;
  }
  .shopList-list {
    display: block;
    margin: 0;
    padding: 0 0 40px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.2));
  }
  .shopList-item {
    margin: 20px 0 0;
  }
  a.shopList-link {
    padding: 20px 10px 30px;
  }
  .shopList-thumb {
    max-width: 270px;
    height: 225px;
  }
  .shopList-price {
    margin: 15px -10px 0;
    font-size: 20px;
  }
  .shopList-price .type-em {
    font-size: 32px;
  }
  .shopList-btn {
    width: 100%;
    max-width: 500px;
    margin: 30px auto 0;
    min-height: 42px;
    padding: 5px 35px;
    font-size: 16px;
  }
  .shopList-btn::after {
    right: 15px;
  }
  /*=== おすすめポイント ===*/
  .shopPoint-ttl {
    padding: 12px 40px;
  }
  .shopPoint-ttl::before {
    left: 15px;
  }
  .shopPoint-list {
    padding: 15px 10px 20px;
  }
  /*=== 他ページ遷移ボタンエリア ===*/
  .page {
    margin-top: 40px;
  }
  a.page-btn {
    min-height: 54px;
    padding: 10px 35px;
    font-size: 20px;
  }
  a.page-btn.pattern-main {
    box-shadow: 2px 4px 3px rgba(0, 0, 0, 0.2);
  }
  a.page-btn::after {
    right: 15px;
    width: 10px;
    height: 15px;
  }
}