/*==================================================
section plan
===================================*/
.top_plan {
  padding: 8rem 0;
  position: relative;
}

@media screen and (max-width: 480px) {
  .top_plan {
    padding: 6rem 0;
  }
}

.top_plan::after {
  content: "";
  width: 100%;
  height: 47rem;
  background-color: #f1faf1;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.top_plan_text {
  font-size: 1.4rem;
  line-height: 3rem;
  text-align: center;
  padding: 2.5rem 0 3rem;
}

.top_plan__content {
  display: flex;
  align-items: flex-start;
  column-gap: 3rem;
}

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

.top_plan__content_item {
  width: 50%;
  background-color: #fff;
  border: solid 1px #8cc63f;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 2rem;
}

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

.top_plan__content_image {
  width: 100%;
  border-radius: 2rem 2rem 0 0;
}

.top_plan__content_image img {
  border-radius: 2rem 2rem 0 0;
}

.top_plan__content_item_inner {
  padding: 2rem 3.5rem;
}

.top_plan__content_name {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: solid 1px #c4c4c4;
  padding-bottom: 0.05rem;
  margin-bottom: 1rem;
}

.top_plan__content_price {
  color: #f55e01;
  font-family: "Oswald", sans-serif;
  font-size: 4.4rem;
  font-weight: 500;
}

.top_plan__content_price_label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding-left: 0.5rem;
}

.top_plan__btn {
  margin-top: 3rem;
}

.top_plan__bottom_image {
  right: 11%;
}

/*==================================================
section plan END
===================================*/
