/* priceページ */
.price .container {
  width: 100%;
  min-height: 60vh;
  padding: 4rem 0 6rem;
  text-align: center;
  background-color: #ffffff;
  background-image: radial-gradient(#f6f9fa 2px, #ffffff 2px);
  background-size: 20px 20px;
}

.price .container .wrapper {
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 0 3.96px 0.04px rgb(2 6 52 / 10%);
  padding: 0 1rem;
}

.price .container .head {
  padding: 2rem 0;
  width: 100%;
  text-align: left;
  color: #5a5758;
}

.price .container .head .head-title {
  font-family: 'Noto Sans JP', 'serif';
  font-size: 1.8rem;
}

.price .container .head .txt {
  padding: 1rem 0;
  font-family: 'Noto Sans JP', 'serif';
  font-size: 1.2rem;
}

.price .container .content {
  padding: 1.5rem 0;
}

.price .container .content .block {
  width: 100%;
  margin-bottom: 2.5rem;
  border-radius: 5px;
  box-shadow: 0 0 3.96px 0.04px rgb(2 6 52 / 10%);
}

.price .container .content .block .block-head {
  width: 100%;
  position: relative;
  padding: 1.6rem 0;
  border-radius: 5px 5px 0 0;
  background-color: #93cd39;
  font-size: 1.7rem;
  color: #fff;
  font-family: 'Noto Sans JP', 'serif';
}

.price .container .content .block .block-head::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #93cd39;
}

.price .container .content .block .block-body {
  width: 100%;
  padding: 2rem 0;
}

.price .container .content .block .block-body .price-link {
  display: table;
  width: 250px;
  height: 60px;
  border-radius: 10px;
  margin: auto;
  background-color: #5a5758;
}

.price .container .content .block .block-body .price-link a {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  color: #ffffff;
  font-size: 1.5rem;
  font-family: 'Noto Sans JP', 'serif';
}

.price .container .content .block .block-body .price-link a:hover {
  opacity: 0.5;
}

.price .container .content .block .block-body .price-link a::before {
  font-family: 'Font Awesome 5 Free';
  color: #ffffff;
  content: '\f15c';
  font-size: 1.8rem;
  font-weight: 900;
  margin-right: 0.8rem;
  margin-top: 0;
}
.price .container .content .non-store {
  padding: 2rem;
  font-size: 2rem;
  color: #5a5758;
}

/* 1024px以上の場合 */
@media screen and (min-width: 1024px) {
  .price .container .wrapper {
    padding: 0 4rem;
  }

  .price .container .head {
    padding: 4rem 0;
  }

  .price .container .head .head-title {
    font-size: 2.8rem;
  }

  .price .container .head .txt {
    padding-top: 1.5rem;
    font-size: 1.5rem;
  }

  .price .container .content {
    padding: 2rem 0;
  }
}
