:root {
  --Color-SyRed: #F3270F;
  --Color-SyDarkGreen: #2FC5C8;
  --Color-SyLightRed: #FFF0ED;
  --Color-SyLightGreen: #EAF9FA;
  --Color-Grey-50: #F5F5F5;
  --Color-White: #FFF;
  --Color-Grey-800: #333;
  --Color-SyGrey: #5D5A5A;
  --Color-Grey-400: #999;
  --Color-Grey-150: #D9D9D9;
  --Filter-SyRed: brightness(0) saturate(100%) invert(24%) sepia(92%) saturate(4005%) hue-rotate(355deg) brightness(95%) contrast(99%);
  --Filter-SyDarkGreen: brightness(0) saturate(100%) invert(93%) sepia(68%) saturate(3007%) hue-rotate(130deg) brightness(82%) contrast(88%);
  --Filter-SyGrey: brightness(0) saturate(100%) invert(32%) sepia(19%) saturate(17%) hue-rotate(31deg) brightness(100%) contrast(87%);
  --Filter-White: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(5688%) hue-rotate(233deg) brightness(120%) contrast(100%);
  --FontSize-heading-xl: clamp(1.625rem, -0.284rem + 3.977vw, 2.5rem); /*26 - 40px*/
  --FontSize-heading-l: clamp(1.5rem, -0.136rem + 3.409vw, 2.25rem); /*24 - 36px*/
  --FontSize-heading-m: clamp(1.375rem, 0.011rem + 2.841vw, 2rem); /*22 - 32px*/
  --FontSize-heading-s: clamp(1.25rem, 0.159rem + 2.273vw, 1.75rem); /*20 - 28px*/
  --FontSize-heading-xs: clamp(1.188rem, 0.506rem + 1.42vw, 1.5rem); /*19 - 24px*/
  --FontSize-heading-xss: clamp(1.125rem, 0.852rem + 0.568vw, 1.25rem); /*18 - 20px*/
  --FontSize-body-l: clamp(1rem, 0.727rem + 0.568vw, 1.125rem); /*16 - 18px*/
  --FontSize-body-m: clamp(0.875rem, 0.602rem + 0.568vw, 1rem); /*14 - 16px*/
  --FontSize-body-s: clamp(0.813rem, 0.676rem + 0.284vw, 0.875rem); /*13 - 14px*/
  --FontSize-body-xs: 0.75rem; /*12*/
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.section {
  padding: 80px 0;
  margin: 0 !important;
}
#main section:last-of-type {
  padding-bottom: 80px !important;
}
.section--soft-red {
  background: var(--Color-SyLightRed, #FFF0ED);
}
.section--soft-green {
  background: var(--Color-SyLightGreen, #EAF9FA);
}
.section--soft-grey {
  background: var(--Color-Grey-50, #F5F5F5);
}
.section--red {
  background: var(--Color-SyRed, #F3270F);
}
.sec-title {
  font-size: var(--FontSize-heading-l);
  margin-bottom: 24px;
  text-align: center;
}
.sec-title em {
  color: var(--Color-SyRed, #F3270F);
  font-style: normal
}
.sec-title .logo {
  vertical-align: text-bottom;
  margin-right: 8px;
  height: 1.4em;
}
.sec-lead {
  text-align: center;
  font-size: var(--FontSize-body-m);
  font-weight: 700;
  margin-bottom: 32px;
}
.btn {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding: 16px 40px;
  margin: 0;
  color: var(--Color-White, #FFF);
  border-radius: 100px;
  text-decoration: none;
  font-family: "Roboto", "M PLUS 1p", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  transform: rotate(0.05deg);
  transition: all cubic-bezier(0.38, 0.33, 0.23, 0.99) 0.4s;
}
.btn:after {
  display: none;
}
.btn:hover {
  background-color: var(--Color-White, #FFF);
  opacity: 1;
  ;
}
.btn-download {
  background-color: var(--Color-SyRed, #F3270F);
  border: 2px solid var(--Color-SyRed, #f3270F);
}
.btn-download:hover {
  color: var(--Color-SyRed, #f3270F);
}
.btn-contact {
  background-color: var(--Color-SyDarkGreen, #2fc5c8);
  border: 2px solid var(--Color-SyDarkGreen, #2fc5c8);
}
.btn-contact:hover {
  color: var(--Color-SyDarkGreen, #2fc5c8);
}
.btn__icon img {
  filter: var(--Filter-White);
}
.btn-download:hover .btn__icon img {
  filter: var(--Filter-SyRed);
}
.btn-contact:hover .btn__icon img {
  filter: var(--Filter-SyDarkGreen);
}
.filter-SyRed {
  filter: var(--Filter-SyRed);
}
.filter-SyDarkGreen {
  filter: var(--Filter-SyDarkGreen);
}
.filter-SyGrey {
  filter: var(--Filter-SyGrey);
}
.filter-White {
  filter: var(--Filter-White);
}
/* #hero  */
#hero {
  background-color: var(--Color-White, #FFF);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 0 60px;
  margin-bottom: 0 !important;;
}
.hero-grid {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  position: relative;
  z-index: 1;
  grid-column-gap: 46px;
  grid-row-gap: 0px;
}
.hero-box:nth-of-type(1) {
  grid-area: 1 / 1 / 2 / 2;
}
.hero-box:nth-of-type(2) {
  grid-area: 2 / 1 / 3 / 2;
}
.hero-box:nth-of-type(3) {
  grid-area: 1 / 2 / 3 / 3;
}
.hero-title {
  color: var(--Color-Grey-800, #333);
  font-size: 2rem;
  margin-bottom: 12px;
  transform: rotate(0.05deg);
}
.hero-title .accent {
  color: var(--Color-SyRed, #F3270F);
}
.hero-lead {
  font-size: var(--FontSize-body-m);
}
.hero-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  border-top: 2px solid var(--Color-Grey-150, #D9D9D9);
  border-bottom: 2px solid var(--Color-Grey-150, #D9D9D9);
  padding: 16px 0;
}
.hero-stat__item {
  text-align: left;
}
.hero-stat__num {
  color: var(--Color-SyRed, #F3270F);
  font-family: "Roboto", "M PLUS 1p", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  transform: rotate(0.05deg);
}
.hero-stat__num span {
  font-size: 1rem;
}
.hero-stat__label {
  font-size: 1rem;
  font-weight: 700;
}
.hero-cta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
.hero-ctas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 18px;
  grid-row-gap: 16px;
}
/* #pain  */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 32px;
  grid-row-gap: 32px;
}
.pain-card {
  display: flex;
  padding: 24px 48px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-radius: 24px;
  background: var(--Color-White, #FFF);
}
.pain-card__title {
  color: var(--Color-Grey-800, #333);
  font-family: "Roboto", "M PLUS 1p", sans-serif;
  font-size: var(--FontSize-heading-xss);
  font-weight: 700;
  transform: rotate(0.05deg);
}
/* #point  */
/* befaft  */
.befaft-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 4px;
  grid-row-gap: 16px;
  align-items: center;
  margin-bottom: 32px;
  ;
}
.befaft-card__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--Color-White, #FFF);
  font-family: "Roboto", "M PLUS 1p", sans-serif;
  font-size: var(--FontSize-heading-xss);
  font-style: normal;
  font-weight: 700;
  border-radius: 24px 24px 0 0;
  padding: 16px 0;
  transform: rotate(0.05deg);
}
.befaft-card-before .befaft-card__title {
  background: var(--Color-SyGray, #5D5A5A);
  border: 2px solid var(--Color-SyGrey, #5D5A5A);
}
.befaft-card-after .befaft-card__title {
  background: var(--Color-SyRed, #F3270F);
  border: 2px solid var(--Color-SyRed, #F3270F);
}
.befaft-card__illust {
  padding: 16px 24px;
}
.befaft-card-before .befaft-card__illust {
  border-left: 2px solid var(--Color-Grey-150, #D9D9D9);
  border-right: 2px solid var(--Color-Grey-150, #D9D9D9);
  background: #F5F5F5;
}
.befaft-card-after .befaft-card__illust {
  border-left: 2px solid var(--Color-SyRed, #F3270F);
  border-right: 2px solid var(--Color-SyRed, #F3270F);
  background: var(--Color-White, #FFF);
}
.befaft-card__body {
  padding: 0 24px 24px;
  border-radius: 0 0 24px 24px;
  text-align: center;
  font-family: "Roboto", "M PLUS 1p", sans-serif;
  font-size: var(--FontSize-body-m);
  font-weight: 700;
  transform: rotate(0.05deg);
}
.befaft-card-before .befaft-card__body {
  border-left: 2px solid var(--Color-Grey-150, #D9D9D9);
  border-right: 2px solid var(--Color-Grey-150, #D9D9D9);
  border-bottom: 2px solid var(--Color-Grey-150, #D9D9D9);
  background: #F5F5F5;
}
.befaft-card-after .befaft-card__body {
  border-left: 2px solid var(--Color-SyRed, #F3270F);
  border-right: 2px solid var(--Color-SyRed, #F3270F);
  border-bottom: 2px solid var(--Color-SyRed, #F3270F);
  background: var(--Color-White, #FFF);
  color: var(--Color-SyRed, #F3270F);
}
.befaft-card__label {
  border-radius: 100px;
  background: var(--Color-White, #FFF);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.125em 1em;
}
.befaft-card-before .befaft-card__label {
  color: var(--Color-Grey-800, #333);
}
.befaft-card-after .befaft-card__label {
  color: var(--Color-SyRed, #F3270F);
}
.befaft-arrow {
    text-align: center;
}

.befaft-arrow img {
    transform: rotate(90deg);
}

.point-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 32px;
  grid-row-gap: 32px;
}
.point-card {
  display: flex;
  padding: 32px 48px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 24px;
  background: var(--Color-White, #FFF);
  position: relative;
  background-image: url(https://www.synergy-marketing.co.jp/common/img/top/bg-right-darkgreen.svg);
  background-repeat: no-repeat;
  background-size: 94px auto;
  background-position: top -64px right 0;
}
.point-card__num {
  padding: 16px;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  margin-bottom: 0;
  color: var(--Color-White, #FFF);
  font-size: 0.75rem;
  font-weight: 700;
}
.point-card__num span {
  font-size: 2rem;
  line-height: 100%;
}
.point-card__title {
  display: flex;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}
.point-card__icon {
  background: var(--Color-SyRed, #F3270F);
  border-radius: 200px;
  width: 88px;
  height: 88px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.point-card__icon img {
  width: 48px;
  height: 48px;
}
.point-card__text {
  color: var(--Color-Grey-800, #333);
  font-size: var(--FontSize-heading-xss);
  font-weight: 700;
}
.point-card__body {
  font-size: var(--FontSize-body-m);
  font-weight: 400;
}
.point-card__body em {
  font-style: normal;
  font-weight: 700;
  border-bottom: 2px solid var(--Color-SyDarkGreen, #2fc5c8);
}
/* #gain  */
.gain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
.gain-card {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-radius: 24px;
  background: var(--Color-White, #FFF);
}
.gain-card__icon img {
  width: 48px;
  height: 48px;
}
.gain-card__title {
  color: var(--Color-SyRed, #F3270F);
  text-align: center;
  font-family: "Roboto", "M PLUS 1p", sans-serif;
  font-size: var(--FontSize-heading-xss);
  font-weight: 700;
  transform: rotate(0.05deg);
}
.gain-card__body {
  color: var(--Color-Grey-800, #333);
  font-size: var(--FontSize-body-m);
}

.gain-card__link {
  border-radius: 100px;
  border: 2px solid var(--Color-SyRed, #F3270F);
  background: var(--Color-White, #FFF);
  padding: 16px 40px;
  color: var(--Color-SyRed, #F3270F);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  transition: all cubic-bezier(0.38, 0.33, 0.23, 0.99) 0.4s;
}
.gain-card__link:hover {
  background: var(--Color-SyRed, #F3270F);
  color: var(--Color-White, #FFF);
}

.gain-card-full-rows {
  flex-direction: row;
  margin-top: 24px;
}
.gain-card-full-rows .gain-card-left {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}
.gain-card-full-rows .gain-card-right {
  flex-shrink: 0;
}
.gain__note {
  margin-top: 32px;
  margin-bottom: 0 !important;
  text-align: center;
  color: var(--Color-Grey-800, #333);
  font-size: var(--FontSize-body-m);
  font-weight: 400;
}
/* #price  */
#price .sec-head {
  display: flex;
  padding: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 24px 24px 0 0;
  background: var(--Color-SyRed, #F3270F);
}
#price .sec-title {
  font-size: var(--FontSize-heading-xss);
  color: var(--Color-White, #FFF);
  margin-bottom: 0;
}
#price .sec-body {
  display: flex;
  padding: 40px;
  border-radius: 0 0 24px 24px;
  background: var(--Color-White, #FFF);
  flex-direction: column;
}
#price .sec-lead {
  font-size: var(--FontSize-body-m);
  font-weight: 400;
  text-align: left;
}
#price .sec-sub-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 24px 0 16px;
}
.price-box-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 16px;
}
.price-box-option {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 16px;
}
.price-plus {
  display: flex;  
  align-items: center;
  justify-content: center;
}
.price-box__item {
  display: flex;
  flex-wrap: wrap;
  padding: 16px 24px;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
  border: 2px solid var(--Color-Grey-150, #D9D9D9);
}
.price-box-base .price-box__item {
  border-color: var(--Color-SyRed, #F3270F);
}
.price-box__label-required {
  color: var(--Color-White, #FFF);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.125em 1em;
  border-radius: 100px;
  background: var(--Color-SyRed, #F3270F);
  flex-shrink: 0;
}
.price-box__label {
  color: var(--Color-Grey-800, #333);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  display: flex;
  gap: 8px;
  align-items: center;
}
.price-box__amount {
  display: flex;
  gap: 18px;
  align-items: center;
}
.price-box__monthly {
  color: var(--Color-SyRed, #F3270F);
  font-size: 2rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.01em;
  display: flex;
  gap: 4px;
  align-items: baseline;
}
.price-box__unit {
  color: var(--Color-SyGrey, #5D5A5A);
  font-size: var(--FontSize-body-m);
}
.price-box__initial {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.125em 1em;
  border-radius: 100px;
  border: 2px solid #D9D9D9;
}
.price__note {
  text-align: right;
  font-size: 0.75rem !important;
  flex: 100% 0 0;
}
.price-box__item .price__note {

}
.price-caution {
  padding: 16px;
  border-left: 6px solid var(--Color-SyRed, #F3270F);
}
.price-caution_text {
  font-size: var(--FontSize-body-m);
  margin-bottom: 0 !important;
}
.price-caution_text em {
  color: var(--Color-SyRed, #F3270F);
  font-style: normal;
  font-weight: 700;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}
.price-card__link {
  display: flex;
  padding: 24px 16px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  border: 2px solid var(--Color-Grey-150, #D9D9D9);
  background: var(--Color-White, #FFF);
  justify-content: space-between;
  text-decoration: none;
  font-weight: 700;
  transition: all cubic-bezier(0.38, 0.33, 0.23, 0.99) 0.4s;
}
.price-card__link:hover {
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.08);
}
.price-card__initial {
  color: var(--Color-SyGrey, #5D5A5A);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.125em 1em;
  border-radius: 100px;
  border: 2px solid var(--Color-Grey-150, #D9D9D9);
}
.price-card__btn {
  display: flex;
  padding: 16px 26px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 100px;
  border: 2px solid var(--Color-SyRed, #F3270F);
  background: var(--Color-White, #FFF);
  transition: all cubic-bezier(0.38, 0.33, 0.23, 0.99) 0.4s;
  font-size: 1rem;
  text-align: center;;
}

.price-card__link:hover .price-card__btn {
  color: var(--Color-White, #FFF);
  background: var(--Color-SyRed, #F3270F);
}
.price-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.price-card__amount {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.price-card__monthly {
  font-size: 2rem;
  letter-spacing: 0.01em;
  line-height: 100%;
  display: flex;
  gap: 4px;
  align-items: baseline;
}
.price-card__unit {
  color: var(--Color-SyGrey, #5D5A5A);
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.price-card__title {
  text-align: center;
  font-size: var(--FontSize-heading-xss);
}
.price-card__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.price-card__label-base, .price-card__label-option {
  border-radius: 8px;
  background: var(--Color-Grey-50, #F5F5F5);
  display: flex;
  gap: 8px;
  padding: 12px;
  align-items: center;
  justify-content: space-between;
}
.price-card__func {
  gap: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-card__func-icon img {
  display: block;
}
.price-card__func-name {
  color: var(--Color-Grey-800, #333);
  font-size: var(--FontSize-body-m);
  flex-shrink: 0;
}
/* .cta-section  */
.cta-section {
  background-image: url(/common/img/top/bg-s-lightred.svg), url(/common/img/top/bg-right-darkred.svg);
  background-position: top left, bottom right;
  background-size: 352px, 512px;
  background-repeat: no-repeat, no-repeat;
}
.cta-section .sec-title {
  font-size: var(--FontSize-heading-xss);
}
.cta-section .sec-body {
  display: flex;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  border-radius: 24px;
  background: var(--Color-White, #FFF);
  box-shadow: 0 0 12.017px 0 rgba(0, 0, 0, 0.08);
  max-width: 840px;
  margin: 0 auto;
}
.ctas-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
}
/* #remarks  */
#remarks .sec-body {
  border-radius: 24px;
  border: 2px solid var(--Color-Grey-150, #D9D9D9);
  background: var(--Color-White, #FFF);
  padding: 24px;
}
#remarks .sec-title {
  font-size: var(--FontSize-heading-xss);
  text-align: left;
}
.remarks-list__item {
  font-size: 1rem;
}
.remarks-list {
  list-style: disc;
  padding-left: 1.5em;
}
/* #showcase  */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
.showcase-card__link {
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--Color-Grey-800, #333);
  text-decoration: none;
  font-weight: 700;
}
.showcase-card__image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.showcase-card__image-logo {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  background-color: var(--Color-White, #FFF);
  border-top-left-radius: 24px;
  object-fit: contain;
  padding: 12px;
  box-sizing: border-box;
}
.showcase-card__label span {
  border-radius: 100px;
  border: 2px solid var(--Color-SyDarkGreen, #2FC5C8);
  color: var(--Color-SyDarkGreen, #2FC5C8);
  font-size: 0.75rem;
  padding: 4px 12px;
}
.showcase-card__title {
  font-size: var(--FontSize-heading-xss);
  transition: all cubic-bezier(0.38, 0.33, 0.23, 0.99) 0.4s;
}
.showcase-card__body {
  font-size: var(--FontSize-body-m);
  font-weight: 400;
  transition: all cubic-bezier(0.38, 0.33, 0.23, 0.99) 0.4s;
}
.showcase-card__link:hover .showcase-card__title, .showcase-card__link:hover .showcase-card__body {
  color: var(--Color-SyRed, #F3270F);
}
.showcase-btn {
  margin-bottom: 0 !important;
  margin-top: 24px;
  text-align: center;
}
.showcase-btn__link {
  border-radius: 100px;
  border: 2px solid var(--Color-SyRed, #F3270F);
  background: var(--Color-White, #FFF);
  padding: 16px 40px;
  color: var(--Color-SyRed, #F3270F);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  transition: all cubic-bezier(0.38, 0.33, 0.23, 0.99) 0.4s;
}
.showcase-btn__link:hover {
  background: var(--Color-SyRed, #F3270F);
  color: var(--Color-White, #FFF);
}

@media screen and (max-width: 1199px) {
  
.price-box__item {
    padding: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.price-box-wrap {
    gap: 12px;
}

.price-box__amount {
    flex-wrap: wrap;
    gap: 8px;
}

.price-box-option {
    grid-template-columns: 1fr;
}
.price-card__label-base, .price-card__label-option {
  gap: 0;;
}


.price-card__unit {
    font-size: 0.75rem;
}
}
@media screen and (max-width: 991px) {
.price-grid {
    grid-template-columns: 1fr;
}
.gain-card-full-rows {
  flex-direction: column-reverse;
}
}

@media screen and (max-width: 767px) {
.hero-grid {
    grid-template-columns: 1fr;
}
.hero-box:nth-of-type(1) {
  grid-area: 1 / 1 / 2 / 2;
}
.hero-box:nth-of-type(2) {
  grid-area: 3 / 1 / 4 / 2;
}
.hero-box:nth-of-type(3) {
  grid-area: 2 / 1 / 3 / 2;
}

.hero-stat__item:nth-of-type(3) {
    flex: 100% 0 0;
    text-align: center;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.hero-ctas {
    grid-template-columns: 1fr;
}

.section {
    padding: 40px 0;
}

.hero-title {
    font-size: 1.625rem;
    margin-bottom: 16px;
}

.sec-title {
    margin-bottom: 36px;
}


.pain-grid {
    grid-template-columns: 1fr;
    grid-row-gap: 16px;
}

.pain-card {
    padding: 24px;
}

.befaft-grid {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
}

.sec-lead {
    margin-bottom: 48px;
}

.befaft-card__label {
    font-size: 1rem;
}


.befaft-arrow img {
    transform: rotate(180deg);
}

.point-grid {
    grid-template-columns: 1fr;
    grid-row-gap: 24px;
}

.point-card {
    padding: 24px;
}

.point-card__title {
    align-self: stretch;
    flex-direction: column;
    align-items: flex-start;
}

.point-card__icon {
    width: 52px;
    height: 52px;
}

.point-card__icon img {
    width: 32px;
    height: 32px;
}

.gain-grid {
    grid-template-columns: 1fr;
    grid-row-gap: 16px;
}

.gain-card {
    gap: 16px;
}

#price .sec-body {
    padding: 24px;
}
.price__note {
  text-align: left;
}

#remarks .sec-body {
    padding: 0;
    border: 0;
    border-radius: 0;
}

.remarks-list__item {
    font-size: 0.75rem;
}

.cta-section .sec-body {
    padding: 24px;
}

.cta-section .sec-title {
  margin-bottom: 16px;
}

.ctas-grid {
    flex-direction: column;
}

.showcase-grid {
    grid-template-columns: 1fr;
    grid-row-gap: 36px;
}

.showcase-card__link {
    gap: 8px;
}

.showcase-btn__link {
    display: block;
}
  
}