/*==================================================
page price 
===================================*/
.p_price_message {
  padding: 6rem 0;
}

@media screen and (max-width: 767px) {
  .p_price_message {
    padding: 4rem 0;
  }
}

.p_price_message__inner {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .p_price_message__inner {
    flex-direction: column;
  }
}

.p_price_message__block {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .p_price_message__block {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.p_price_message__img {
  width: 50%;
  border-radius: 3rem;
  margin-left: 8rem;
  flex-shrink: 0;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p_price_message__img {
    width: 100%;
    margin-left: 0;
  }
}

.p_price_message__img::after {
  content: "";
  display: block;
  background-image: url(../img/p_price_dog.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 16rem;
  height: 10rem;
  position: absolute;
  bottom: -1rem;
  right: -7rem;
}

@media screen and (max-width: 767px) {
  .p_price_message__img::after {
    width: 12rem;
    bottom: -5rem;
    right: -2rem;
  }
}

.p_price_message__img img {
  border-radius: 3rem;
}

.p_price_content {
  background-color: #fcfbf7;
  padding: 6rem 0;
}

@media screen and (max-width: 767px) {
  .p_price_content {
    padding: 4rem 0;
  }
}

.p_price_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 767px) {
  .p_price_list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p_price_list__box {
  padding: 3rem 3rem 2rem;
}

@media screen and (max-width: 767px) {
  .p_price_list__box {
    padding: 2rem 1rem 1rem;
  }
}

.p_price_list__box.full_width {
  grid-column: 1 / 3;
}

@media screen and (max-width: 767px) {
  .p_price_list__box.full_width {
    grid-column: inherit;
  }
}

.p_price_list__box_label {
  color: #ffb61e;
  font-size: 2.6rem;
  letter-spacing: 0.14rem;
  font-weight: 500;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
  .p_price_list__box_label {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

.p_price_list__box_label::before {
  content: "";
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  border: solid 4px #ffb61e;
  background-color: #fff;
  border-radius: 2rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.p_price_list__box_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.8rem;
  letter-spacing: 0.18rem;
  font-weight: 500;
  border-bottom: dashed 1px #bcbcbc;
  padding: 2rem 0;
}

.p_price_list__box_item:first-of-type {
  padding-top: 0;
}

.p_price_list__box_item label {
  flex-shrink: 0;
  margin-right: 8rem;
}

@media screen and (max-width: 767px) {
  .p_price_list__box_item:last-of-type {
    flex-direction: column;
    align-items: flex-start;
  }

  .p_price_list__box_item:last-of-type label {
    margin-bottom: 1rem;
  }
}

.p_price_list__box_item.full_width {
  display: block;
}

.p_price_list__box_item span {
  display: block;
  margin-top: 2rem;
}

/*==================================================
price END
===================================*/
