.highPricePurchase {

}

.highPricePurchase__list {
  margin-top: 48px;
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.highPricePurchase__item {
  max-width: 341px;
  width: 30%;
  margin-bottom: 40px;
  position: relative;
}

.highPricePurchase__item_imgs {
  width: 100%;
  position: relative;
  margin-bottom: 16px;
}

.highPricePurchase__item_img {
  width: 100%;
  height: 192px;
  object-fit: cover;
  border-radius: 8px;
}

.highPricePurchase__item_arrowRight {
  position: absolute;
  top: 50%;
  right: -12%;
  transform: translateY(-50%);
}

.highPricePurchase__item_imgs-num {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--base-color);
  background-color: var(--white);
  color: var(--base-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.highPricePurchase__item_title,
.highPricePurchase__item_content {
  color: var(--text-color);
  font-family: var(--font-zen-kaku-new-type);
  font-style: normal;
  line-height: 160%;
}

.highPricePurchase__item_title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.highPricePurchase__item_content {
  font-size: 16px;
  font-weight: 500;
}

.highPricePurchase__contact {
  max-width: 1104px;
  margin: 48px auto 0 auto;
}

.highPricePurchase__contact_container {
  max-width: 600px;
  margin: 0 auto 96px auto;
}

.highPricePurchase__contact_note {
  color: var(--text-color);
  font-family: var(--font-zen-kaku-new-type);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.28px;
}

/* contact form */
.wpcf7-checkbox input {
  display: none;
}

.wpcf7-checkbox input + span {
  padding-left: 28px;
  display: inline-block;
  position: relative;
}

.wpcf7-checkbox input + span::after,
.wpcf7-checkbox input + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
}

/* ・チェックボックスの枠 */
.wpcf7-checkbox input + span::before {
  border: 1px solid var(--border-color);
  background-color: #ffffff;
  height: 20px;
  width: 20px;
  border-radius: 2px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* チェックマークにチェックが付いていない時 */
.wpcf7-checkbox input + span::after {
  position: absolute;
  top: 4px;
  left: 8px;
  transform: rotate(50deg);
  width: 6px;
  height: 14px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  content: '';
  display: none;
}

/* チェックマークにチェックが付いた時 */
.wpcf7-checkbox input:checked + span::after {
  display: block;
}

@media screen and (max-width: 767px) {
  .highPricePurchase__contact_container {
    margin-bottom: 32px;
  }
}