﻿/* =========================
   HERO
========================= */
.p-hero{
  padding:36px 0 0;
}
.p-hero__inner{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.p-hero__inner::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  transform:translateX(-50%);
  width:100vw;
  height:100%;
  background: url("images/img-mv-bg.jpg") no-repeat center bottom;
  background-size: contain;
  z-index:-1;
}
.p-hero__title{
  margin:0;
  text-align:center;
  font-size:56px;
  font-weight:900;
  line-height:1.5;
}
.p-hero__visual{
  position:relative;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:18px;
  padding:20px 0 0px;
}
.p-hero__illust{
  width:190px;
}
.p-hero__center{
  width:264px;
}

.p-hero__badge{
  position:absolute;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  width:200px;
  height:100px;
  padding:6px 0px 12px;
  border-radius:999px;
  background: url("images/oval-green.png") no-repeat center / 100% 100%;
  color:#fff;
  font-size: 18px;
  font-weight:700;
  --badge-y: 10px;
  opacity: 0;
  transform: translateY(var(--badge-y));
  transition: opacity 1s ease, transform 1s ease;
}
.p-hero__badge.is-show{
  --badge-y: 0px;
  opacity: 1;
}
.p-hero__badge.is-orange{
  background: url("images/oval-orange.png") no-repeat center / 100% 100%;
}


  .p-hero__visual{
  gap:18px;
  padding:20px 0 0px;
}
  .p-hero__badge--left {
    left: 10%;
    top: 53px;
    padding: 12px 0 26px 5px;
}
.p-hero__badge--leftBottom {
    left: 3%;
    bottom: 68px;
    padding: 12px 0 23px;
}
  .p-hero__badge--rightTop{
  right:12%;
  top:20px;
}
  .p-hero__badge--right {
    right: 3%;
    bottom: 93px;
    padding: 12px 0px 21px 9px;
}


.p-hero__badge span {
    line-height: 1.5;
}

.p-heroCta {
    background: var(--c-green);
    padding: 0px 0px;
    position: relative;
    overflow: hidden;
}
.p-heroCta__inner {
    display: flex;
    gap: 20px;
    justify-items: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #22BA4F;
    border-radius: 132px;
    flex-direction: column;
    width: 100%;
    max-width: 1000px;
    margin-inline: auto;
    padding: 30px;
    position: relative;
    z-index: 1;
}
.p-heroCta::before{
  content:"";
  position:absolute;
  inset:0;
  background: url("images/pattern-01.png") repeat center;
  background-size: 21px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
.p-heroCta__text {
    margin: 0;
    color: #fff;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.7;
}
.p-heroCta__text span {
    border-bottom: 2px solid;
}





@media (max-width:1100px){
  .p-heroCta {
    padding: 0 30px;
  }

  .p-demo__content{
    width: max-content;
    max-width: 100%;
  }
  .l-container.p-hero__inner{
    min-height: 650px;
  }
  .p-hero__badge--rightTop {
    right: 22%;
    top: -90px;
  }
  .p-hero__badge--right {
    right: 3%;
    bottom: 225px;
  }
  .p-hero__badge--left {
    left: 20%;
    top: -77px;
  }
  .p-hero__badge--leftBottom {
    left: 3%;
    bottom: 198px;
  }
}

@media (max-width:899px){
  .p-hero{
    padding:30px 0 0;
  }
  .p-hero__title{
    font-size:36px;
  }
  .p-hero__illust{
    width:140px;
  }
  .p-hero__center{
    width:min(220px, 60vw);
  }
  .p-hero__visual{
    gap:12px;
    padding:10px 0 0;
  }
    .l-container.p-hero__inner{
    min-height: 480px;
  }
  .p-hero__badge {
    width: 127px;
    height: 80px;
    font-size: 12px;
}
.p-heroCta__text {
    font-size: 22px;
}
.p-hero__badge--right {
    right: 3%;
    bottom: 185px;
}
.p-hero__badge--rightTop {
    right: 22%;
    top: -60px;
}
.p-hero__badge--left {
    left: 20%;
    top: -50px;
}
.p-hero__badge--leftBottom {
    left: 3%;
    bottom: 168px;
}
}



@media (max-width:499px){
  .p-hero {
    padding: 20px 0 0;
}
  .p-hero__title{
    font-size:27px;
  }
  .l-container.p-hero__inner{
    width: calc(100% - 13px);
    margin-inline: auto;
  }
  .p-hero__visual {
    gap: 0px;
}
.p-hero__badge--rightTop {
    right: 17%;
    top: -73px;
}
.p-hero__badge--right {
    right: 0%;
    bottom: 155px;
}
.p-hero__badge--left {
    left: 11%;
    top: -58px;
}
.p-hero__badge--leftBottom {
    left: 1%;
    bottom: 128px;
}
.p-hero__center {
    width: min(170px, 60vw);
}
.p-hero__illust {
    width: 110px;
}
.l-container.p-hero__inner {
    min-height: 395px;
}
.p-heroCta__text {
    font-size: 18px;
}
.p-heroCta__inner {
    height: 190px;
    padding: 20px;
    gap: 13px;
}
}
/* =========================
   KNOW
========================= */
.p-know {
    padding: 60px 0 40px;
}
.p-know__grid{
  display:grid;
  gap:30px;
  grid-template-columns: 1fr 1.1fr;
}
.p-knowCard{
  padding:22px 18px;
  text-align:center;
}
.p-knowCard__title{
  margin:0px;
  text-align:center;
  font-size:22px;
  font-weight:900;
  line-height:1.4;
  display:inline-block;
  background:#EDF3A2;
  border-radius:20px;
  padding:10px 40px;
}
.anim-box{
  opacity: 0;
}
.anim-box.popup.is-animated{
  animation: popup 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.anim-box.slidein.is-animated{
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.p-demo__content.anim-box{
  transform: translateX(-50%) translateY(40px) scale(0.8);
}
.p-demo__content.anim-box.popup.is-animated{
  animation: popup-centered 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  80%, 100% {
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1.0);
  }
}
@keyframes slideIn {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  40%, 100% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes popup-centered {
  0% {
    transform: translateX(-50%) translateY(40px) scale(0.8);
    opacity: 0;
  }
  80%, 100% {
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(0) scale(1.0);
  }
}
.p-knowCard__num{
  color:var(--c-green2);
  font-size:44px;
  line-height:1;
}
.p-knowCard__img{
  display:block;
  margin:0 auto;
  border-radius:12px;
}
.p-knowCard__note {
    margin: 10px 0 0;
    font-size: 10px;
    color: #a7a7a7;
    text-align: center;
}
img.p-knowCard__img {
    width: 286px;
    margin-top: 20px;
}
img.p-knowCard__img.google__img {
    width: 480px;
    margin-top: 20px;
}

@media (max-width:899px){
  .p-know__grid{
    grid-template-columns: 1fr;
    gap:20px;
  }
}

@media (max-width:499px){
.p-know {
    padding: 30px 0 30px;
}
  .p-knowCard__title {
    font-size: 18px;
}
.p-knowCard__note br{
  display: none;
}
img.p-knowCard__img {
    width: 206px;
}
.p-knowCard {
    padding: 22px 0px;
}
.p-knowCard {
    padding: 11px 0px;
}
}


/* =========================
   COMPARE
========================= */
.p-compare {
    padding: 40px 0 60px;
    background: var(--c-gray);
}
.p-compare__lead {
    text-align: center;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
}
.p-compare__eyebrow {
   font-size: 32px;
   font-weight: 900;
   margin: 0 0 10px;
   color: #12983A;
}
.p-compare__decor{
  display:block;
  width:120px;
  height:auto;
  margin: -12px auto 24px;
}
.p-compare__title{
  margin:0;
  font-weight:900;
  font-size:32px;
  line-height:1.45;
  display:block;
}
.p-compare__hl{
  background:#EDF3A2;
  padding:6px 12px;
}
.p-compare__panel{
  background:linear-gradient(180deg,#1D883D 35%, #22BA4F 35%);
  border-radius:30px;
  padding:40px 48px;
  position:relative;
  overflow:visible;
}
.p-compare__panel::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-65px;
  transform:translateX(-50%);
  width:0;
  height:0;
  border-left:105px solid transparent;
  border-right:105px solid transparent;
  border-top:67px solid #22BA4F;
}
.p-compare__cols{ 
  display:flex;
  align-items: start;
  gap:18px;
  flex-direction: column;
}
.p-compareCol{
  background:#fff;
  border-radius:18px;
  padding:18px;
  position:relative;
}
.p-compareCol--bad{
  background:transparent;
  padding:0;
  width:100%;
}
.p-compareCol--good{
  background:transparent;
  padding:0;
}
.p-compareCol__head{
  margin:0 0 12px;
  text-align:center;
  font-weight:900;
  color:#fff;
  font-size:26px;
}
.p-compareCol--good .p-compareCol__head{
  font-size:32px;
}
.p-compareCol--bad .p-compareCol__head{
  width:100%;
  text-align:center;
  margin:0 0 18px;
}
.p-compareCol:not(.p-compareCol--good) .p-compareCol__head{
  color:#fff;
  background:transparent;
}
.p-compareCol__items{
  display:flex;
}
.p-compareCol__items--split{
  grid-template-columns: repeat(2, 1fr);
  gap:30px;
}
.p-compareCol__badRow{
  display:flex;
  align-items:flex-end;
  gap:30px;
}

@media (max-width:499px){
.p-compareCol__items {
    display: flex;
}
.p-compare__panel::after {
    border-left: 52px solid transparent;
    border-right: 52px solid transparent;
    border-top: 34px solid #22BA4F;
    bottom: -33px;
}
  .u-br-sp{
    display:block;
  }
  .p-compare {
    padding: 30px 0 30px;
}
}

.p-reviewCard {
    background: #fff;
    border-radius: 12px;
    padding: 20px 20px;
    /* width: 100%; */
    width: 348px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.p-reviewCard--plain{
  box-shadow:none;
  background:#fff;
}
.p-reviewCard__stars{
  width:157px;
  height:auto;
}
.p-reviewCard__text{
  margin:10px 0 0;
  font-weight:700;
  font-size: 18px;
}
.p-reviewCard__tag{
  margin-top:auto;
  display:flex;
  gap:12px;
  align-items:center;
  background:var(--c-yellow);
  border-radius:999px;
  padding:10px 14px;
  font-size: 20px;
  font-weight:900;
}
.p-reviewCard__tag img {
    width: 98px;
}
.p-compareCol__illust{
  position: absolute;
  right: 0px;
  top: -60px;
  max-width: 320px;
  margin: 0;
}
.p-compareCol__illustWrap{
  display:block;
}
.p-compareCol__goodHead{
  text-align:center;
  margin:0 0 14px;
  color:#fff;
}
.p-compareCol__goodIcon{
  width:75px;
  height:auto;
  display:block;
  margin:0 auto 6px;
}
.p-compareCol__goodItems{
  display:flex;
  gap:30px;
  width:100%;
  flex-wrap:wrap;
}
.p-compareCol__goodItems .p-reviewCard{
  flex:1;
}

.p-compare__cta{
  margin-top:90px;
  text-align:center;
  position:relative;
}
.p-compare__ctaTitle{
  margin:0 0 16px;
  font-size:42px;
  font-weight:900;
}
.p-compare__ctaImg{
  width:270px;
  height:auto;
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
}
@media (max-width:1100px){
  .p-reviewCard {
    width: 295px;
}
.p-reviewCard__tag {
    font-size: 16px;
    gap: 0px;
}
  .p-compare__ctaImg{
    position: static;
    transform: none;
    margin-top: 16px;
  }
}
@media (max-width:899px){
  .p-compare__panel{
    padding:26px 16px;
  }
  .p-compare__title {
    font-size: 24px;
    line-height: 1.5;
}
  .p-compare__eyebrow {
   font-size: 20px;
}
  .p-compareCol__badRow{
    flex-direction:column;
    align-items:center;
  }
  .p-compareCol__items{
    width:100%;
  }
  .p-compareCol__items--split{
    grid-template-columns: 1fr;
    gap:12px;
  }
  .p-compareCol__badRow{
    gap:18px;
  }
  .p-reviewCard{
    width:100%;
  }
.p-compareCol__illust {
    position: static;
    max-width: 260px;
    margin-top: -50px;
}
.p-compareCol__items {
    display: flex;
    justify-content: center;
}
.p-compareCol__illustWrap {
    width: 100%;
    position: absolute;
    right: 0;
    bottom: -170px;
    text-align: right;
}
.p-compareCol__goodHead {
    margin: 120px 0 14px;
}
.p-compareCol__goodItems {
    gap: 20px;
}
.p-compareCol__goodItems {
    display: flex;
    flex-direction: column;
}
.p-reviewCard {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

}


@media (max-width:750px){
  .p-compareCol__illustWrap {
    bottom: -220px;
}
.p-compareCol__goodHead {
    margin: 210px 0 14px;
}
}

@media (max-width:650px){
.p-reviewCard__tag {
    flex-direction: column;
}

}

@media (max-width:499px){
.p-reviewCard__text {
    font-size: 16px;
}
.p-compareCol__illust {
    position: inherit;
    max-width: 250px;
    margin-top: -70px;
}
.p-compareCol__items {
    display: flex;
    flex-direction: column;
}
.p-reviewCard {
    width: auto;
}
.p-reviewCard__tag {
    display: flex;
    flex-direction: row;
}
.p-compare__ctaTitle {
    font-size: 26px;
    margin: 0 0 0px;
}
.p-compare__ctaImg {
    width: 210px;
    height: auto;
    position: inherit;
    right: 0;
    top: 0%;
    transform: inherit;
}
.p-compareCol__illustWrap {
    bottom: -70px;
}
.p-compareCol__goodHead {
    margin: 160px 0 14px;
}
.p-compare__panel {
    background: linear-gradient(180deg,#1D883D 30%, #22BA4F 30%);
}
.p-reviewCard {
    display: grid;
    grid-template-columns: 1fr;
}
.p-compare__decor {
    width: 80px;
    margin: -7px auto 16px;
}
.p-compare__cta {
    margin-top: 45px;
}
}


/* =========================
   FLOW
========================= */
.p-flow{
  padding:60px 0;
  background:var(--c-yellow);
  position: relative;
}
.p-flow::before{
  content:"";
  position:absolute;
  inset:0;
  background: url("images/pattern-02.png") repeat center;
  background-size: 21px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.p-flow > *{
  position: relative;
  z-index: 1;
}
.p-flow__list{
  list-style:none;
  padding:0;margin:0;
  display:grid;
  gap:88px 50px;
  grid-template-columns: repeat(12, 1fr);
  width:1000px;
  margin:0 auto;
}
.p-flow__item{
  grid-column: span 4;
  width:100%;
  max-width:300px;
  justify-self:center;
}
.p-flow__list > li:nth-child(4){
  grid-column: 3 / span 4;
}
.p-flow__list > li:nth-child(5){
  grid-column: 7 / span 4;
}
.p-flow__head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}
.p-flow__num {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: var(--c-green2);
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
}
.p-flow__label{
  margin:0;
  font-weight:900;
  font-size:20px;
}
.p-flow__img{
  width:100%;
  border-radius:12px;
}
.p-flow__stack{
  position:relative;
}
p.p-flow__chip.p-flow__chip--orange {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 18px;
    font-weight: 900;
    padding: 20px;
    color: #fff;
    border-radius: 50px;
    margin: 0;

}
.p-flow__chip--orange{
  background:var(--c-orange);
}
.p-flow__chip--green{
    position: absolute;
    right: 0;
    color: #fff;
    padding: 5px 13px;
    border-radius: 4px;
    font-size: 12px;
  background:var(--c-green2);
  top:auto;
  bottom:12px;
}
.p-flow__note {
    position: absolute;
    bottom: 26px;
    left: 0px;
    margin: 0;
    padding: 6px 10px;
    background: var(--c-green2);
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
}
.p-flow__footnote{
  margin:18px 0 0;
  text-align:center;
  font-size:14px;
}
@media (max-width:1100px){
  .p-flow__list{
    grid-template-columns: repeat(2, 1fr);
    gap:70px 20px;
    width:100%;
    margin:0 auto;
  }
  .p-flow__item{
    grid-column: auto;
    max-width:100%;
    justify-self:stretch;
  }
  .p-flow__list > li:nth-child(4),
  .p-flow__list > li:nth-child(5){
    grid-column: auto;
  }
  .p-flow__label{
    font-size:18px;
  }
}

@media (max-width:499px){
.p-flow__img {
    margin-top: 10px;
}
p.p-flow__chip.p-flow__chip--orange {
    font-size: 13px;
    padding: 7px 15px;
    border-radius: 50px;
}
.p-flow__chip--green, .p-flow__note {
    position: static;
    margin-top: 3px;
    line-height: 1.4;
}

.p-flow__num {
    width: 25px;
    height: 25px;
    line-height: 25px;
    min-width: 25px;
    font-size: 16px;
    text-align: center;
    flex-shrink: 0;
}
  .p-demo__actions{
    width:100%;
  }
  .p-demo__box .c-btn--cta{
    width:100%;
    max-width:100%;
  }
  .p-heroCta__text{
    white-space: nowrap;
  }
  .p-flow {
    padding: 30px 0;
}
.p-flow__label {
    font-size: 18px;
    line-height: 1.3;
}
.p-flow .c-sectionHead__title {
    margin-bottom: 30px;
}
  .p-flow__list{
    gap:40px 20px;
  }
.p-flow__head {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
.p-flow__stack p {
    margin-bottom: 0px;
}
.p-strength .c-sectionHead {
    margin: 0 0 30px;
}
}

/* =========================
   REPLY
========================= */
.p-reply{
  padding:60px 0 30px;
}
.p-reply__head{
  display:grid;
  gap:16px;
  justify-items:center;
  text-align:center;
  margin-bottom:26px;
  grid-template-columns: auto auto auto;
  align-items:center;
  column-gap:12px;
  justify-content:center;
}
.p-reply__decor{
  width:102px;
  height:auto;
}
.p-reply__headText{
  text-align:center;
  width:fit-content;
}
@media (max-width:899px){
  .p-reply__head{
    grid-template-columns: repeat(2, auto);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap:0;
    row-gap:12px;
    justify-content:center;
    justify-items:center;
  }
  .p-reply__headText{
    width:auto;
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .p-reply__head > .p-reply__decor:first-child{
    grid-column: 1;
    grid-row: 2;
    transform: translateX(20px);
  }
  .p-reply__head > .p-reply__decor:last-child{
    grid-column: 2;
    grid-row: 2;
    transform: translateX(-20px);
  }
}
.p-reply__badge {
    display: inline-block;
    margin: 0 0 10px;
    padding: 1px 30px 4px;
    background: var(--c-green2);
    color: #fff;
    border-radius: 24px;
    font-weight: 900;
    font-size: 27px;
}
.p-reply__title{
  margin:0;
  font-size:32px;
  font-weight:900;
  line-height:1.4;
}
.p-reply__grid { 
  display: grid;
  gap: 18px;
  width: min(100%, 1000px);
  margin-inline: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
}
.p-reply__grid > *{
  display:flex;
  flex-direction:column;
}
.p-replyGroup{
  height:100%;
  display:flex;
  flex-direction:column;
}
.p-replyCard{ 
  background:#f3f3f3;
  padding:18px;
  flex:1;   /* ←これが本体 */
  display:flex;
  flex-direction:column;
}
.p-replyCard__stars{
  width:157px;
}
.p-replyCard__review{
  margin:10px 0 0;
  font-weight:700;
}
.p-replyCard__reply {
    margin-top: 12px;
    padding-left: 14px;
    border-left: 1px solid;
}
.p-replyCard__label{
  margin:0;
  color:#898989;
  font-size:12px;
  font-weight:500;
}
.p-replyCard__text{
  margin:6px 0 0;
  font-size:14px;
}
.p-replyGroup__title{
  margin:0 0 10px;
  text-align:center;
  color:var(--c-green);
  font-size: 20px;
  font-weight:900;
}
article.p-replyCard:first-child {
    margin-top: 41px;
}
@media (max-width:899px){
  .p-reply__grid{
    grid-template-columns: 1fr;
    align-items: stretch;
    grid-auto-rows: auto;
  }
  .p-replyCard{
    height:auto;
  }
  .p-reply__badge {
    padding: 7px 30px 7px;
    font-size: 20px;
    line-height: 1.4;
}
.p-reply__title {
    font-size: 24px;
    line-height: 1.4;
}
.p-reply {
    padding: 30px 0;
}
article.p-replyCard:first-child {
    margin-top: 0px;
}
.p-reply__decor{
  width:80px;
  height:auto;
}
}

/* =========================
   DEMO
========================= */
.p-demo{
  margin:80px 0 60px;
}
.p-demo__box{
  background:var(--c-green2);
  border-radius:20px;
  padding:80px 60px;
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
}
.p-demo__box::before{
  content:"";
  position:absolute;
  inset:0;
  background: url("images/pattern-01.png") repeat center;
  background-size: 21px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
.p-demo__box > *{
  position: relative;
  z-index: 1;
}
.p-demo__media{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:40px;
}
.p-demo__screen{
  width:min(375px, 90%);
  border-radius:12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border:0;
  box-shadow:none;
  --demo-video-scale: 1.26;
  --demo-video-shift-y: -100px;
}
.p-demo__screen:focus-visible{
  outline: 3px solid #fff;
  outline-offset: 4px;
}
.p-demo__screenThumb{
  display:block;
  width:100%;
  height:auto;
}
/*
.p-demo__screenPlay{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.35));
}
.p-demo__screenPlay::before{
  content:"";
  width:64px;
  height:64px;
  border-radius:999px;
  background:rgba(0,0,0,0.6);
  box-shadow:0 10px 30px rgba(0,0,0,0.35);
  position:relative;
}
.p-demo__screenPlay::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:0;
  height:0;
  border-left:18px solid #fff;
  border-top:12px solid transparent;
  border-bottom:12px solid transparent;
  transform: translate(-35%, -50%);
}
*/
.p-demo__screen.is-playing{
  aspect-ratio: 9 / 16;
}
.p-demo__screen iframe{
  width:100%;
  height:100%;
  border:0;
  background: transparent;
  transform: translateY(var(--demo-video-shift-y)) scale(var(--demo-video-scale));
  transform-origin: top center;
  display:block;
}
.p-demo__content {
    position: absolute;
    left: 50%;
    top: -50px;
    transform: translateX(-50%);
    text-align: center;
    color: #111;
    background: #EDF3A2;
    border-radius: 16px;
    padding: 9px 30px;
    z-index: 1;
}
.p-demo__lead{
  margin:0;
  font-weight:900;
  font-size:32px;
}
.p-demo__note {
    font-size: 14px;
    margin: 0 0 10px;
}
.p-demo__content::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-13px;
  transform:translateX(-50%);
  width:0;
  height:0;
  border-left:16px solid transparent;
  border-right:16px solid transparent;
  border-top:14px solid #EDF3A2;
}
.p-demo__actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  justify-content:flex-start;
}
.p-demo__phone {
    position: absolute;
    right: -23px;
    top: 46%;
    width: 202px;
}
@media (max-width:899px){
.p-demo__box {
    padding: 86px 18px 26px;
}
  .p-demo__actions{
    justify-content:center;
  }
  .p-demo__phone{
    display:none;
  }
  .p-demo__lead {
    font-size: 24px;
    line-height: 1.3;
}
.p-demo__note {
    font-size: 14px;
    margin: 0 0 0px;
}
}

/* =========================
   STRENGTH
========================= */
.p-strength{
  padding:90px 0;
  background:var(--c-yellow);
  position: relative;
}
.p-strength::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform: translateX(-50%);
  width: 160px;
  height: 80px;
  background: url("images/strength-09.png") no-repeat center/contain;
  z-index: 0;
}
.p-strength > *{
  position: relative;
  z-index: 1;
}
.p-strength__grid{
  display:grid;
  gap:36px 14px;
  grid-template-columns: repeat(4, 234px);
  justify-content:center;
}
.p-strengthCard{
  background:#fff;
  border-radius:12px;
  padding:16px;
  box-shadow:0 4px 4px rgba(0,0,0,.06);
  position:relative;
  width:100%;
  max-width:234px;
  margin:0 auto;
}
.p-strengthCard__icon{
  width:85px;
  height:auto;
  display:block;
  margin:0 auto 8px;
}
.p-strengthCard__title{
  margin:0 0 6px;
  text-align:center;
  font-weight:900;
}
.p-strengthCard__text{
  margin:0;
  font-size:15px;
}
.p-strengthCard__badge {
    position: absolute;
    left: -30px;
    top: -20px;
    width: 90px;
    display: grid;
    justify-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: 14px;
}
.p-strengthCard__badge img{
  width:70px;
  height:auto;
}
@media (max-width:1100px){
  .p-strength__grid{
    grid-template-columns: 1fr 1fr 1fr;
    justify-content:initial;
  }
}

@media (max-width:499px){
  .p-strength__grid{
    grid-template-columns: 1fr 1fr;
    justify-content:initial;
  }
  .p-strength::before {
    width: 120px;
    height: 50px;
}
.p-strength {
    padding: 65px 0 30px;
}
.p-strengthCard__icon {
    width: 64px;
}
.p-strengthCard__text {
    font-size: 13px;
    line-height: 1.4;
}
.p-strengthCard {
    padding: 10px;
}
.p-strengthCard__title {
    line-height: 1.4;
}
}

/* =========================
   CONTACT
========================= */
.p-contact{
  padding:60px 0;
}
.p-contact__grid{
  display:grid;
  gap:40px;
  grid-template-columns: 1fr 1fr;
  align-items:start;
}
.p-contactBlock__head{
  display:flex;
  align-items:center;
  justify-content:center;
  width:min(100%, 367px);
  max-width:367px;
  padding:10px 16px;
  background:var(--c-yellow);
  border-radius:999px;
  margin:0 auto 28px;
  font-weight:900;
  position:relative;
  text-align:center;
}
.p-contactBlock__head::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-12px;
  transform:translateX(-50%);
  width:0;
  height:0;
  border-left:12px solid transparent;
  border-right:12px solid transparent;
  border-top:12px solid var(--c-yellow);
}
.p-contactLine{
  background:var(--c-green2);
  padding:40px;
  color:#fff;
  display:grid;
  gap:46px;
  justify-items:center;
  text-align:center;
}
.p-contactLine__title{
  margin:0;
  font-weight:900;
  font-size:44px;
  line-height:1.3;
}
.p-contactLine__qr{
  width:145px;
  height:auto;
}
.p-contact__note{
  margin:10px 0 0;
  text-align:center;
  font-size:12px;
}

.p-form{
  display:grid;
  gap:14px;
}
.p-form__row{
  display:grid;
  gap:6px;
}
.p-form__label{
  font-size:16px;
}
.p-form__req{
  color:var(--c-orange);
  font-weight:700;
}
.p-form__input,
.p-form__select,
.p-form__textarea{
  width:100%;
  border:0;
  background:#F9F9F9;
  border-radius:6px;
  padding:12px 14px;
  font:inherit;
}
.p-form .input-text,
.p-form .select,
.p-form .textarea{
  width:100%;
  border:0;
  background:#F9F9F9;
  border-radius:6px;
  padding:12px 14px;
  font:inherit;
}
.p-form .form-group-cover{
  display:grid;
  gap:0;
}
.p-form .form-group-in{
  display:grid;
  gap:6px;
}
.form-group-in p {
    margin-top: 0px;
    margin-bottom: 16px;
}
.p-form .require{
  margin-left:6px;
  font-size:0;
}
.p-form .require::before{
  content:"＊";
  font-size:10px;
  color:#FF9500;
  position:relative;
  top:-6px;
}
.p-form .wpcf7-form-control{
  background:#f3f3f3;
}
.p-form .wpcf7-form-control:not(.wpcf7-textarea){
  height:50px;
}
.p-form .wpcf7-textarea{
  height:153px;
}
.p-form input::placeholder,
.p-form textarea::placeholder{
  color:#898989;
}
.p-form .form-policy{
  margin:0;
  font-size:14px;
}
.form-policy p {
    margin-top: -13px;
}
.p-form .form-policy a{
  text-decoration: underline;
}
.p-form .wpcf7-submit{
  width:100%;
  height: 73px !important;
  border-radius: 37px;
  padding: 0 50px;
  font-size: 22px;
  font-weight: 700;
  background-color: #000;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.2s;
}
.p-form .wpcf7-submit:hover{
  background-color: #0c5526;
}
.p-form__policy{
  margin:0;
  font-size:14px;
}
.p-form__policyLink{
  text-decoration:underline;
}
.p-form__submit{
  width:100%;
}

@media (max-width:899px){
  .p-contact__grid{
    grid-template-columns: 1fr;
    gap:60px;
    align-items:stretch;
  }
  .p-contact__note{
    text-align:center;
  }
}

@media (max-width:499px){
.p-contactLine__title {
    font-size: 30px;
}
.p-contact {
    padding: 30px 0;
}

}

/* =========================
   FLOATING CTA
========================= */
.p-floatCta{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:60;
  box-shadow:0 10px 24px rgba(0,0,0,.20);
  padding: 0 60px 0 50px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}
.p-floatCta.is-show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width:499px){
.p-floatCta {
    left: 0px;
    right: 0px;
    width: 80%;
    margin: 0 auto;
    bottom: 10px;
}
}

a.c-btn--cta.c-btn.c-btn--dark {
  height: 73px;
  border-radius: 37px;
  padding: 0 50px;
  font-size: 22px;
}

@media (max-width:499px){
a.c-btn--cta.c-btn.c-btn--dark {
    height: 66px;
    font-size: 15px;
}
}

/* =========================
   THANKS
========================= */
.p-thanks{
  padding: 100px 0 140px;
}
.p-thanks__inner{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}
.p-thanks__title{
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.4;
}
.p-thanks__text{
  margin: 0;
  font-size: 16px;
  line-height: 2;
}

@media (max-width:899px){
  .p-thanks{
    padding: 70px 0 100px;
  }
  .p-thanks__inner{
    padding: 0 18px;
  }
}

@media (max-width:499px){
  body.is-thanks-page .p-thanksMain,
  body.page-template-page-thanks .p-thanksMain{
    min-height: clamp(420px, 68vh, 760px);
  }
  .p-thanks{
    padding: 50px 0 80px;
  }
  .p-thanks__inner{
    padding: 0 12px;
    text-align: left;
  }
  .p-thanks__title{
    font-size: 22px;
  }
  .p-thanks__text{
    font-size: 14px;
    line-height: 1.9;
  }
}

body.is-thanks-page .p-thanksMain,
body.page-template-page-thanks .p-thanksMain{
  min-height: clamp(520px, 75vh, 900px);
}



/* =====================================
   PRICING PLANS SECTION
===================================== */

:root {
  --c-plan-green-dark: #12983A; 
  --c-plan-green-light: #22BA4F; 
  --c-plan-yellow: #EDF3A2;      
  --c-plan-orange: #FF9500; 
  --c-plan-gold: #FFD200;
  --c-plan-bg: #f9f9f9;
}

.p-plans {
  padding: 80px 0;
  background-color: var(--c-plan-bg);
}
.p-plans .u-text-green{
  font-weight: 900;
}
.p-plans__lead {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.5;
}

.p-plans__intro {
  margin-bottom: 80px; 
  text-align: center;

}

.p-plans__introText {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.8;
  font-weight: 400;
}

.p-plans__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 150px;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.p-plans__flowItem img {
  width: auto;
  height: 72px;
  margin-bottom: 10px;
}

.p-plans__flowLabel {
  font-weight: bold;
  font-size: 18px;
  margin: 0;
}

.p-plans__flowSub {
  font-size: 14px;
  margin: 5px 0 0;
}

.p-plans__flowArrow {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid var(--c-plan-yellow);
}

.p-plans__message {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.p-plans__container {
  background: var(--c-plan-green-light);
  padding: 80px 40px 40px;
  border-radius: 30px;
  position: relative;
}

.p-plans__anchorTitle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--c-plan-green-dark);
  color: #fff;
  padding: 12px 60px;
  border-radius: 12px;
  font-size: 26px;
  font-weight: bold;
  white-space: nowrap;
  margin: 0;
  z-index: 2;
}

.p-plans__grid {
  display: flex;
  gap: 30px;
  align-items: start;
}

.p-planCard {
  background: #fff;
  border-radius: 15px;
  /* padding: 40px 30px; */
  text-align: center;
  display: flex;
  flex-direction: column;
  width: min(50%,100%);
}

.p-planCard__title {
  font-size: 22px;
  font-weight: 900!important;
  margin-bottom: 20px;
}

.p-planCard__price {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 30px;
}

.p-planCard__num {
  font-size: 48px;
  letter-spacing: -1px;
}

.p-planCard__features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  text-align: left;
  display: inline-block;
  margin-inline: auto;
}

.p-planCard__features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 18px;
}

.p-planCard__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--c-plan-yellow);
  font-weight: 900;
  font-size: 20px;
}
.p-planCard--featured .p-planCard__features li::before {
  color: var(--c-plan-gold);
}
.p-planCard__initial {
  margin-top: auto;
  background: #f4f4f4;
  padding: 15px;
  border-radius: 10px;
  font-weight: bold;
}

.p-planCard--featured {
  padding: 0;
  position: relative;
}

.p-planCard__badge {
  background: var(--c-plan-orange);
  border-radius: 12px 12px 0 0;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  font-size: 18px;
}

.p-planCard__inner {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.p-planCard__label {
  display: inline-block;
  background: var(--c-plan-yellow);
  padding: 4px 20px;
  border-radius: 5px;
  font-size: 18px;
  margin-bottom: 10px;
  margin-inline: auto;
  font-weight: bold;
  position: relative;
}
.p-planCard__label::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%); 
  border-left: 8px solid transparent; 
  border-right: 8px solid transparent;
  border-top: 8px solid #EDF3A2;      
}
.p-planCard--featured .p-planCard__title {
  color: var(--c-plan-orange);
  margin: 0;
}

.p-planCard__sub {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 10px;
}

.p-planCard__discount {
  margin-top: auto;
  background: var(--c-plan-gold);
  padding: 15px;
  border-radius: 10px;
  font-weight: bold;
  line-height: 1.4;
}
.p-planCard__normal{
  text-decoration: line-through;  
  font-weight: 400;
  margin: 0;
}
.p-planCard__special {
  font-size: 18px;
  display: block;
  margin: 0;
  font-weight: 800;
}

.p-planCard--featured .p-planCard__num{
  color: var(--c-plan-orange);
}

.p-plans__note {
  text-align: center;
  color: #fff;
  margin-top: 30px;
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 899px) {
  .p-plans__container {
    padding: 60px 20px 30px;
    margin-top: 40px;
  }
  .p-planCard{
    width: 100%;
  }
  .p-plans__anchorTitle {
    font-size: 18px;
    padding: 8px 30px;
    width: 85%;
    text-align: center;
    font-weight: 900;
  }

  .p-plans__grid {
    flex-direction: column;
  }

  .p-plans__flow {
    flex-direction: column;
    gap: 20px;
  }

  .p-plans__flowArrow {
    transform: rotate(90deg); 
  }

  .p-plans__lead {
    font-size: 27px;
  }

  .p-planCard__num {
    font-size: 36px;
  }
}


