/**
 * LPer - 記事一覧ブロック CSS
 * カード形式のスタイル
 */

/* セクション */
.lper-post-list {
  background-color: #fff;
  padding: 90px 0;
}

@media (max-width: 1279px) {
  .lper-post-list {
    padding: 90rem 0;
  }
}

@media (max-width: 768px) {
  .lper-post-list {
    padding: 70rem 0;
  }
}

/* ラッパー */
.lper-post-list__wrap {
  margin-bottom: 40px;
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
  margin-bottom: 60px;
  padding-inline: 16px;
}

@media (max-width: 1279px) {
  .lper-post-list__wrap {
    margin-bottom: 60rem;
    padding-inline: 16rem;
  }
}

@media (max-width: 768px) {
  .lper-post-list__wrap {
    margin-bottom: 40rem;
    padding-inline: 8rem;
  }
}

.lper-post-list__wrap:last-child {
  margin-bottom: 0;
}

/* コンテナ */
.lper-post-list__wrap__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background-color: #fff;
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
}

@media (max-width: 1279px) {
  .lper-post-list__wrap__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 20rem;
    padding: 0 16rem;
  }
}

@media (max-width: 768px) {
  .lper-post-list__wrap__items {
    grid-template-columns: 1fr;
    gap: 16rem;
  }
}

/* カード */
.lper-post-list__wrap__item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

@media (max-width: 1279px) {
  .lper-post-list__wrap__item {
    border-radius: 12rem;
    box-shadow: 0 2rem 8rem rgba(0, 0, 0, 0.08);
  }
}

.lper-post-list__wrap__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 1279px) {
  .lper-post-list__wrap__item:hover {
    transform: translateY(-4rem);
    box-shadow: 0 8rem 24rem rgba(0, 0, 0, 0.12);
  }
}

/* ランキング番号 */
.lper-post-list__wrap__item__rank {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 8px 16px;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
}

@media (max-width: 1279px) {
  .lper-post-list__wrap__item__rank {
    font-size: 20rem;
    padding: 8rem 16rem;
    text-shadow: 0 1rem 0 rgba(255, 255, 255, 0.3);
  }
}

@media (max-width: 768px) {
  .lper-post-list__wrap__item__rank {
    font-size: 20rem;
    padding: 8rem 16rem;
    text-shadow: 0 1rem 0 rgba(255, 255, 255, 0.3);
  }
}

/* ランキング No.1 ゴールド */
.lper-post-list__wrap__item:nth-child(1) .lper-post-list__wrap__item__rank {
  background: linear-gradient(135deg, #f9d423 0%, #e6ac00 50%, #bf8c00 100%);
  color: #5c4600;
}

/* ランキング No.2 シルバー */
.lper-post-list__wrap__item:nth-child(2) .lper-post-list__wrap__item__rank {
  background: linear-gradient(135deg, #e8e8e8 0%, #c0c0c0 50%, #a8a8a8 100%);
  color: #4a4a4a;
}

/* ランキング No.3 コッパー（銅） */
.lper-post-list__wrap__item:nth-child(3) .lper-post-list__wrap__item__rank {
  background: linear-gradient(135deg, #e8a87c 0%, #cd7f32 50%, #a86220 100%);
  color: #4a2800;
}

/* カードリンク */
.lper-post-list__wrap__item__link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

/* サムネイル */
.lper-post-list__wrap__item__thumbnail {
  position: relative;
  overflow: hidden;
  background-color: #f5f5f5;
}

/* サムネイル比率 4:3 */
.lper-post-list--ratio-4-3 .lper-post-list__wrap__item__thumbnail {
  aspect-ratio: 4 / 3;
}

/* サムネイル比率 16:9 */
.lper-post-list--ratio-16-9 .lper-post-list__wrap__item__thumbnail {
  aspect-ratio: 16 / 9;
}

.lper-post-list__wrap__item__thumbnail__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.lper-post-list__wrap__item:hover
  .lper-post-list__wrap__item__thumbnail__image {
  transform: scale(1.05);
}

/* コンテンツ部分 */
.lper-post-list__wrap__item__content {
  padding: 20px;
}

@media (max-width: 1279px) {
  .lper-post-list__wrap__item__content {
    padding: 20rem;
  }
}

@media (max-width: 768px) {
  .lper-post-list__wrap__item__content {
    padding: 16rem;
  }
}

/* 日付 */
.lper-post-list__wrap__item__date {
  display: block;
  font-size: 16px;
  color: #888;
  margin-bottom: 8px;
}

@media (max-width: 1279px) {
  .lper-post-list__wrap__item__date {
    font-size: 16rem;
    margin-bottom: 8rem;
  }
}

/* タイトル */
.lper-post-list__wrap__item__title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1279px) {
  .lper-post-list__wrap__item__title {
    font-size: 16rem;
    margin-bottom: 12rem;
  }
}

.lper-post-list__wrap__item:hover .lper-post-list__wrap__item__title {
  color: #0066cc;
}

/* 抜粋 */
.lper-post-list__wrap__item__excerpt {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1279px) {
  .lper-post-list__wrap__item__excerpt {
    font-size: 16rem;
    margin-bottom: 12rem;
  }
}

/* カテゴリ */
.lper-post-list__wrap__item__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

@media (max-width: 1279px) {
  .lper-post-list__wrap__item__categories {
    gap: 6rem;
    margin-bottom: 8rem;
  }
}

.lper-post-list__wrap__item__category {
  display: inline-block;
  background-color: #0d2f74;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
  line-height: 1.4;
}

@media (max-width: 1279px) {
  .lper-post-list__wrap__item__category {
    font-size: 11rem;
    padding: 2rem 8rem;
    border-radius: 4rem;
  }
}

/* 続きを読む */
.lper-post-list__wrap__item__read-more {
  display: inline-block;
  font-size: 16px;
  color: #0066cc;
  font-weight: 500;
}

@media (max-width: 1279px) {
  .lper-post-list__wrap__item__read-more {
    font-size: 16rem;
  }
}

/* 記事がない場合 */
.lper-post-list__no-posts {
  text-align: center;
  color: #888;
  padding: 40px 20px;
}

@media (max-width: 1279px) {
  .lper-post-list__no-posts {
    padding: 40rem 20rem;
  }
}

/* セクションタイトル */

/* 記事リスト見出し */
.lper-post-list__wrap__heading {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.4;
  position: relative;
  padding-left: 12px;
  border: none;
  padding-top: 20px;
}
@media (max-width: 1279px) {
  .lper-post-list__wrap__heading {
    font-size: 20rem;
    margin-bottom: 16rem;
    padding-left: 12rem;
    padding-top: 20rem;
  }
}
@media (max-width: 768px) {
  .lper-post-list__wrap__heading {
    font-size: 18rem;
    margin-bottom: 12rem;
    padding-left: 12rem;
    padding-top: 20rem;
  }
}

.lper-post-list__wrap__heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: -16px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 300px 300px 0 0;
  border-color: #b01e23 transparent transparent transparent;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  -webkit-transform: scaleY(0.91);
  transform: scaleY(0.91);
  z-index: unset;
}

@media (max-width: 1279px) {
  .lper-post-list__wrap__heading::before {
    left: -16rem;
    border-width: 300rem 300rem 0 0;
  }
}

@media (max-width: 768px) {
  .lper-post-list__wrap__heading::before {
    left: -8rem;
    border-width: 300rem 300rem 0 0;
  }
}

.lper-post-list__wrap__heading span {
  position: relative;
  color: #fff;
  z-index: 1;
  font-size: 32px;
}

@media (max-width: 1279px) {
  .lper-post-list__wrap__heading span {
    font-size: 32rem;
  }
}

@media (max-width: 768px) {
  .lper-post-list__wrap__heading span {
    font-size: 20rem;
  }
}
body.page {
  font-feature-settings: "palt" 1;
}
.page-article__title {
  font-size: 36px;
  text-align: center;
  font-weight: 700;
  padding: 36px 0;
}
@media (max-width: 1279px) {
  .page-article__title {
    font-size: 36rem;
    padding: 36rem 0;
  }
}
@media (max-width: 768px) {
  .page-article__title {
    font-size: 28rem;
    padding: 28rem 0;
  }
}
section[class*="lper"] {
  margin-bottom: 90px;
}
@media (max-width: 1279px) {
  section[class*="lper"] {
    margin-bottom: 90rem;
  }
}
@media (max-width: 768px) {
  section[class*="lper"] {
    margin-bottom: 60rem;
  }
}
section[class*="lper"].lper-post-list--shortcode {
  margin-bottom: 0;
}
.lper-hero {
  position: relative;
  overflow: hidden;
}
.lper-hero__bg {
  width: 100%;
  max-width: 1248px;
  aspect-ratio: 1248/624;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.lper-hero__bg--sp {
  display: none;
}
@media (max-width: 768px) {
  .lper-hero__bg--pc {
    display: none;
  }
  .lper-hero__bg--sp {
    display: block;
    aspect-ratio: 750/1250;
  }
}
.lper-hero__op-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(10px);
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.lper-three-points__heading,
.lper-voice__heading,
.lper-pricing-dl__heading,
.lper-empathy-list__heading,
.lper-post-list__title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1279px) {
  .lper-three-points__heading,
  .lper-voice__heading,
  .lper-pricing-dl__heading,
  .lper-empathy-list__heading,
  .lper-post-list__title {
    font-size: 40rem;
    padding-bottom: 40rem;
  }
}
@media (max-width: 768px) {
  .lper-three-points__heading,
  .lper-voice__heading,
  .lper-pricing-dl__heading,
  .lper-empathy-list__heading,
  .lper-post-list__title {
    font-size: 28rem;
    padding-bottom: 40rem;
  }
}
.lper-three-points__heading::after,
.lper-voice__heading::after,
.lper-pricing-dl__heading::after,
.lper-empathy-list__heading::after,
.lper-post-list__title::after {
  content: "";
  display: block;
  width: 3em;
  height: 2px;
  background-color: #b01e23;
}

@media (max-width: 1279px) {
  .lper-hero__op-bg {
    filter: blur(10rem);
  }
}
.lper-empathy-list__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lper-empathy-list__icon-wrap {
  width: 200px;
  aspect-ratio: 1/1.25;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  order: 2;
  position: relative;
}
@media (max-width: 1279px) {
  .lper-empathy-list__icon-wrap {
    width: 200rem;
    aspect-ratio: 1/1.25;
  }
}
@media (max-width: 768px) {
  .lper-empathy-list__icon-wrap {
    order: 1;
  }
}
.lper-empathy-list__icon-wrap::before {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  border: #ccc solid 1px;
  border-radius: 50%;
  background-color: #eee;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - 90px), calc(-50% - 70px));
}
@media (max-width: 1279px) {
  .lper-empathy-list__icon-wrap::before {
    width: 30rem;
    border-width: 1rem;
    transform: translate(calc(-50% - 90rem), calc(-50% - 70rem));
  }
}
@media (max-width: 768px) {
  .lper-empathy-list__icon-wrap::before {
    display: none;
  }
}
.lper-empathy-list__icon-wrap::after {
  content: "";
  display: block;
  width: 44px;
  aspect-ratio: 1/1;
  border: #ccc solid 1px;
  border-radius: 50%;
  background-color: #eee;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - 114px), calc(-50% - 110px));
}
@media (max-width: 1279px) {
  .lper-empathy-list__icon-wrap::after {
    width: 44rem;
    border-width: 1rem;
    transform: translate(calc(-50% - 114rem), calc(-50% - 110rem));
  }
}
@media (max-width: 768px) {
  .lper-empathy-list__icon-wrap::after {
    display: none;
  }
}
.lper-empathy-list__icon {
  width: 100%;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 1/1.25;
  overflow: hidden;
}

.lper-empathy-list__items {
  --lper-empathy-list__items-gap: 20px;
  --lper-empathy-list__items-col: 3;
  --lper-empathy-list__item-width: 360px;
  order: 1;
  display: grid;
  grid-template-columns: repeat(var(--lper-empathy-list__items-col), 1fr);
  gap: var(--lper-empathy-list__items-gap);
  width: calc(
    (
        var(--lper-empathy-list__item-width) +
          var(--lper-empathy-list__items-gap)
      ) *
      var(--lper-empathy-list__items-col) - var(--lper-empathy-list__items-gap)
  );
  margin: 0 auto 20px;
}
@media (max-width: 1279px) {
  .lper-empathy-list__items {
    --lper-empathy-list__items-gap: 20rem;
    --lper-empathy-list__item-width: 360rem;
  }
}
@media (max-width: 768px) {
  .lper-empathy-list__items {
    --lper-empathy-list__items-gap: 20rem;
    --lper-empathy-list__items-col: 1;
    --lper-empathy-list__item-width: 100%;
    margin-bottom: 0;
    order: 2;
    padding: 0 16rem;
  }
}
.lper-empathy-list__item {
  border: #ccc solid 1px;
  border-radius: 10px;
  background-color: #eee;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}
.lper-three-points {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (max-width: 1279px) {
  .lper-three-points {
    padding: 0 16rem;
  }
}
@media (max-width: 768px) {
  .lper-three-points {
    padding: 0 8rem;
  }
}
.lper-three-points__items {
  --lper-three-points__items-gap: 20px;
  --lper-three-points__items-col: 3;
  --lper-three-points__item-width: 390px;
  display: grid;
  grid-template-columns: repeat(var(--lper-three-points__items-col), 1fr);
  gap: var(--lper-three-points__items-gap);
  width: calc(
    (
        var(--lper-three-points__item-width) +
          var(--lper-three-points__items-gap)
      ) *
      var(--lper-three-points__items-col) - var(--lper-three-points__items-gap)
  );
  margin: 0 auto;
}
@media (max-width: 1279px) {
  .lper-three-points__items {
    --lper-three-points__items-gap: 20rem;
    --lper-three-points__item-width: 390rem;
  }
}
@media (max-width: 768px) {
  .lper-three-points__items {
    --lper-three-points__items-gap: 20rem;
    --lper-three-points__items-col: 1;
    --lper-three-points__item-width: 100%;
  }
}
.lper-three-points__item {
  max-width: var(--lper-three-points__item-width);
  padding: 24px 20px;
  border: #b01e23 solid 1px;
  border-radius: 10px;
  box-shadow: 4px 4px 4px 1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1279px) {
  .lper-three-points__item {
    padding: 24rem 20rem;
    border-width: 1rem;
    border-radius: 10rem;
    box-shadow: 4rem 4rem 4rem 1rem rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 768px) {
  .lper-three-points__item {
    padding: 16rem 8rem;
  }
}
.lper-three-points__item__image-wrap {
  width: 76px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 1279px) {
  .lper-three-points__item__image-wrap {
    width: 76rem;
  }
}
@media (max-width: 768px) {
  .lper-three-points__item__image-wrap {
    width: 60rem;
  }
}
.lper-three-points__item__image {
  width: 100%;
}
.lper-three-points__item__heading {
  font-size: 28px;
  font-weight: 700;
  padding: 20px 0 8px;
  text-align: center;
}
@media (max-width: 1279px) {
  .lper-three-points__item__heading {
    font-size: 28rem;
    padding: 20rem 0 8rem;
  }
}
@media (max-width: 768px) {
  .lper-three-points__item__heading {
    font-size: 20rem;
    padding: 16rem 0 8rem;
  }
}
.lper-three-points__item__description {
  font-size: 16px;
}
@media (max-width: 1279px) {
  .lper-three-points__item__description {
    font-size: 16rem;
  }
}
@media (max-width: 768px) {
  .lper-three-points__item__description {
    font-size: 16rem;
  }
}
.lper-voice__items {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1279px) {
  .lper-voice__items {
    padding: 0 16rem;
  }
}
@media (max-width: 768px) {
  .lper-voice__items {
    padding: 0 8rem;
  }
}
.lper-voice__item {
  display: grid;
  grid-template-columns: 198px 1fr;
  grid-template-rows: auto;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  padding: 24px 20px;
  border: #b01e23 solid 1px;
  border-radius: 10px;
  box-shadow: 4px 4px 4px 1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1279px) {
  .lper-voice__item {
    grid-template-columns: 198rem 1fr;
    padding: 24rem 20rem;
    border-width: 1rem;
    border-radius: 10rem;
    box-shadow: 4rem 4rem 4rem 1rem rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 768px) {
  .lper-voice__item {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    padding: 16rem 8rem;
  }
}
.lper-voice__item__photo-wrap {
  width: 150px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  grid-area: 1 / 1 / 3 / 2;
  margin: 0 24px;
}
@media (max-width: 1279px) {
  .lper-voice__item__photo-wrap {
    width: 150rem;
    margin: 0 24rem;
  }
}
@media (max-width: 768px) {
  .lper-voice__item__photo-wrap {
    width: 200rem;
    grid-area: 2 / 1 / 3 / 2;
    margin: 0 auto 16rem;
  }
}
.lper-voice__item__photo-wrap img {
  width: 100%;
}
.lper-voice__item__heading {
  font-size: 30px;
  font-weight: 700;
}
@media (max-width: 1279px) {
  .lper-voice__item__heading {
    font-size: 30rem;
  }
}
@media (max-width: 768px) {
  .lper-voice__item__heading {
    font-size: 20rem;
    grid-area: 3 / 1 / 4 / 2;
  }
}
.lper-voice__item__comment {
  grid-area: 3 / 1 / 4 / 3;
}
@media (max-width: 1279px) {
  .lper-voice__item__comment {
    font-size: 16rem;
  }
}
@media (max-width: 768px) {
  .lper-voice__item__comment {
    grid-area: 4 / 1 / 5 / 2;
  }
}
.lper-voice__item__comment::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin: 16px 0;
}
@media (max-width: 1279px) {
  .lper-voice__item__comment::before {
    height: 1rem;
    margin: 16rem 0;
  }
}
.lper-voice__item__name-attr {
  align-self: flex-end;
  grid-area: 1 / 2 / 2 / 3;
  font-size: 18px;
}
@media (max-width: 1279px) {
  .lper-voice__item__name-attr {
    font-size: 18rem;
  }
}
@media (max-width: 768px) {
  .lper-voice__item__name-attr {
    font-size: 16rem;
    grid-area: 1 / 1 / 2 / 2;
    padding-bottom: 16rem;
  }
}
@media (max-width: 1279px) {
  .lper-pricing-dl {
    padding: 0 16rem;
  }
}
@media (max-width: 768px) {
  .lper-pricing-dl {
    padding: 0 8rem;
  }
}
.lper-pricing-dl__table {
  margin: 0 auto 30px;
  width: 100%;
  font-size: 20px;
  max-width: 1000px;
  border-collapse: collapse;
}
@media (max-width: 1279px) {
  .lper-pricing-dl__table {
    font-size: 20rem;
    margin: 0 auto 30rem;
  }
}
@media (max-width: 768px) {
  .lper-pricing-dl__table {
    font-size: 16rem;
    margin: 0 auto 16rem;
  }
}
.lper-pricing-dl__table__th {
  background-color: #f1f1f1;
  text-align: center;
  font-weight: 400;
  width: 50%;
}
.lper-pricing-dl__table__th,
.lper-pricing-dl__table__cell {
  padding: 25px 15px;
  border: 1px solid #ccc;
  vertical-align: middle;
}
@media (max-width: 1279px) {
  .lper-pricing-dl__table__th,
  .lper-pricing-dl__table__cell {
    padding: 25rem 15rem;
    border-width: 1rem;
  }
}
@media (max-width: 768px) {
  .lper-pricing-dl__table__th,
  .lper-pricing-dl__table__cell {
    padding: 16rem 8rem;
  }
}
.lper-pricing-dl__table__cell span {
  font-size: 40px;
  color: #b01e23;
  font-weight: 700;
}
@media (max-width: 1279px) {
  .lper-pricing-dl__table__cell span {
    font-size: 40rem;
  }
}
@media (max-width: 768px) {
  .lper-pricing-dl__table__cell span {
    font-size: 24rem;
  }
}
.lper-cta {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}
.lper-cta__bg--pc {
  width: 100%;
  aspect-ratio: 1000/300;
}
.lper-cta__bg--sp {
  display: none;
}
@media (max-width: 768px) {
  .lper-cta__bg--pc {
    display: none;
  }
  .lper-cta__bg--sp {
    display: block;
    width: 100%;
    aspect-ratio: 453/631;
    padding: 0 8rem;
  }
}
.lper-cta__button,
.lper-cta__button__image {
  width: 416px;
  aspect-ratio: 416/79;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + 198px), calc(-50% + 76px));
}
@media (max-width: 1279px) {
  .lper-cta__button,
  .lper-cta__button__image {
    width: 416rem;
    transform: translate(calc(-50% + 198rem), calc(-50% + 76rem));
  }
}
@media (max-width: 768px) {
  .lper-cta__button,
  .lper-cta__button__image {
    width: 332rem;
    transform: translate(calc(-50% + 0rem), calc(-50% + -22rem));
  }
}
