.highlights .wrap {
  text-align: left;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  background: var(--green-grad);
  padding: 2.5em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.wrap-common {
  max-width: 988px;
  margin-left: auto;
  margin-right: auto;
}

.box.outlined {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

main .outlined > p:not(:last-child) {
  margin-bottom: 2rem;
}

.outlined h3 {
  margin-bottom: 3rem;
}

.flex-image {
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px);
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.flex-image figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.flex-image figcaption {
  font-size: .875rem;
  font-weight: bold;
}

.flex-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

#contents .more_txt {
    color: #009944;
    font-weight: bold;
}

#contents .more_txt:after {
    content: "›";
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px 4px 6px;
    color: #009944;
}

#contents .more_txt:hover {
    text-decoration: underline;
}

div:has(> .more_txt) {
  display: flex;
  justify-content: flex-end;
}

.grid.image-aside > * {
  grid-template-columns: auto 1fr;
}

.price-plan {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 3rem auto 3rem;
}

.price-plan--col-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: space-between;
  gap: 3rem;
}

.price-plan > li {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
  height: 100%;
}

.price-plan-name {
  font-size: 1.125rem;
  font-weight: bold;
}

.price-card {
  flex-grow: 1;
  border: 1px solid #89c07d;
  border-radius: .625rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.price-plan-header {
  background-color: #89c07d;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 1rem 3rem;
  gap: 1rem;
}

.plan-blue.price-card {
  border-color: #3f9ec7;
}

.plan-blue .price-plan-header {
  background-color: #3f9ec7;
}

.plan-orange.price-card {
  border-color: #e79774;
}

.plan-orange .price-plan-header {
  background-color: #e79774;
}

.price-plan-header > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.price-plan-header div span {
  display: inline-block;
  padding: .5rem 1rem;
  min-width: 150px;
  background-color: #fff;
  color: #89c07d;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2;
}

.plan-blue .price-plan-header div span {
  color: #3f9ec7;
}

.plan-orange .price-plan-header div span {
  color: #e79774;
}

.price-plan-header p {
  text-align: center;
  line-height: 1.3;
  font-size: 1rem;
}

.price-plan-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.price-plan-body p {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  line-height: 1.2;
  width: 100%;
}

.price-plan-body:has(ul) p {
  padding-bottom: .75rem;
  border-bottom: 2px solid #ddd;
  margin-bottom: 1rem;
}

.price-plan-body p .price-unit {
  font-size: .875rem;
  font-weight: normal;
  display: inline-block;
  margin-left: .5rem;
}

.price-plan-body ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: .5rem;
  padding: 0 0 0 2rem;
}

.price-plan-body li {
  font-weight: bold;
  font-size: 1rem;
  position: relative;
  text-align: left;
}

.price-plan-body li:before {
  position: absolute;
  font-family: "FontAwesome";
  content: '\f058';
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #89c07d;
}

.plan-blue .price-plan-body li:before {
  color: #3f9ec7;
}

.plan-orange .price-plan-body li:before {
  color: #e79774;
}

.card-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.card-link {
  display: flex;
  border-radius: .75rem;
  overflow: hidden;
  max-width: 330px;
  transition: opacity .3s ease;
}

.card-link:hover {
  opacity: .8;
}

.card-link img {
  max-width: 100%;
  height: auto;
}

.agri-board-cta .cta-btn a.default-btn:nth-child(2) {
  border: 1px solid var(--green);
  color: var(--green);
}

.agri-board-cta .cta-btn a.default-btn:nth-child(2):hover {
  background-color: var(--green);
  color: #fff;
}


@media screen and (max-width: 896px) {
  .box.outlined {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .grid.image-aside > * {
    grid-template-columns: 1fr;
  }

  .price-plan {
    grid-template-columns: 1fr;
  }

  .price-plan--col-2 {
    grid-template-columns: 1fr;
  }

  .card-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .outlined h3 {
    margin-bottom: 1rem;
  }

  .price-plan {
    gap: 2rem;
  }

  .price-plan-header {
    padding: 1rem;
  }
}