/* LESS Document */
article {
  margin-bottom: 90px;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	priceArea
+++++++++++++++++++++++++++++++++++++++++++ */
.priceArea {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  max-width: 970px;
  margin: 0 auto 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .priceArea {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 50px;
  }
}
.priceArea::after {
  content: '\f0d7';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 7rem;
  text-align: center;
  line-height: 1;
  color: #FF4400;
  position: absolute;
  bottom: -85px;
  left: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .priceArea::after {
    bottom: -58px;
  }
}
.priceArea dl {
  flex: 1;
  border: #1A7108 4px solid;
  border-radius: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .priceArea dl {
    width: 100%;
  }
}
.priceArea dl dt {
  padding: 10px;
  background: #1A7108;
  color: #FFF;
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .priceArea dl dt {
    font-size: 6vw;
  }
}
.priceArea dl dd {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  justify-content: center;
  align-items: center;
  min-height: 175px;
  padding: 20px 10px;
}
@media screen and (max-width: 767px) {
  .priceArea dl dd {
    min-height: 0;
  }
}
.priceArea dl dd .price {
  font-size: 4.9rem;
  font-weight: bold;
  line-height: 1;
  color: #1A7108;
}
@media screen and (max-width: 767px) {
  .priceArea dl dd .price {
    font-size: 10vw;
  }
}
.priceArea dl dd .price strong {
  font-size: 8.5rem;
}
@media screen and (max-width: 767px) {
  .priceArea dl dd .price strong {
    font-size: 16vw;
  }
}
.priceArea dl dd .price strong sub {
  font-size: 4rem;
  vertical-align: 0;
}
@media screen and (max-width: 767px) {
  .priceArea dl dd .price strong sub {
    font-size: 8vw;
  }
}
.priceArea dl dd .price .month {
  align-self: baseline;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .priceArea dl dd .price .month {
    font-size: 4.8vw;
  }
}
.priceArea i {
  font-size: 4.8rem;
  color: #1A7108;
}
