:root {
  --scaling-base: 100vw;
}
@media screen and (min-width: 769px) {
  :root {
    --scaling-base: 400px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(16 * var(--scaling-base) / 375);
  color: #1e1e1e;
  background: url(../img/line-back.webp) repeat center top;
}

.article {
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .article {
    max-width: none;
    width: 100%;
  }
}

.title {
  text-align: center;
  font-size: calc(24 * var(--scaling-base) / 375);
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 1.2px;
  margin-bottom: calc(32 * var(--scaling-base) / 375);
  position: relative;
}
.title .text-orange {
  color: #f58343;
  display: block;
  font-weight: bold;
}
.title::after {
  content: "";
  display: block;
  width: calc(260 * var(--scaling-base) / 375);
  height: calc(4 * var(--scaling-base) / 375);
  background: -webkit-gradient(linear, left top, right top, from(#f58343), to(#fff9f0));
  background: linear-gradient(90deg, #f58343 0%, #fff9f0 100%);
  margin: calc(4 * var(--scaling-base) / 375) auto 0;
  border-radius: 2px;
}

.inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 calc(20 * var(--scaling-base) / 375);
}

.cta {
  margin: 0 auto;
  z-index: 10;
  text-align: center;
  position: relative;
  -webkit-animation: pulseZoom 2s infinite ease-in-out;
          animation: pulseZoom 2s infinite ease-in-out;
}
.cta:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  opacity: 1;
}
.cta .cta-balloon {
  white-space: nowrap;
  font-weight: bold;
  position: absolute;
  top: calc(-16 * var(--scaling-base) / 375);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  color: #56cc3f;
  font-size: calc(14 * var(--scaling-base) / 375);
  border: calc(2 * var(--scaling-base) / 375) solid #56cc3f;
  padding: calc(2 * var(--scaling-base) / 375) calc(14 * var(--scaling-base) / 375);
  border-radius: calc(6 * var(--scaling-base) / 375);
  display: inline-block;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.cta .cta-btn {
  display: block;
  background: #56cc3f;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: calc(17 * var(--scaling-base) / 375);
  padding: calc(22 * var(--scaling-base) / 375) calc(4 * var(--scaling-base) / 375) calc(18 * var(--scaling-base) / 375);
  border-radius: calc(10 * var(--scaling-base) / 375);
  border: calc(2 * var(--scaling-base) / 375) solid #fff;
  -webkit-box-shadow: 0 4px 0 #187949, 0 8px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 0 #187949, 0 8px 15px rgba(0, 0, 0, 0.2);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.cta .cta-btn span {
  font-weight: 700;
}
@media (max-width: 350px) {
  .cta .cta-btn span {
    display: block;
    margin-top: calc(2 * var(--scaling-base) / 375);
    line-height: 1.2;
  }
}

.header {
  background: #fff;
  padding: calc(4 * var(--scaling-base) / 375) calc(8 * var(--scaling-base) / 375);
}
.header img {
  width: calc(120 * var(--scaling-base) / 375);
}

.fv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: calc(24 * var(--scaling-base) / 375);
  padding-bottom: calc(24 * var(--scaling-base) / 375);
  min-height: calc(600 * var(--scaling-base) / 375);
  height: auto;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: url(../img/fv-back.webp) no-repeat center top/cover;
}
.fv__copy {
  text-align: left;
  font-size: calc(38 * var(--scaling-base) / 375);
  line-height: 1.4;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  letter-spacing: calc(1.6 * var(--scaling-base) / 375);
}
.fv__copy .text-highlight {
  font-weight: 700;
  background-color: #fff;
  color: #f58343;
  display: inline-block;
  margin-bottom: calc(8 * var(--scaling-base) / 375);
  padding-left: calc(12 * var(--scaling-base) / 375);
}
.fv__copy .text-brown {
  color: #4d3627;
  font-weight: 700;
}
.fv__copy .text-sub {
  color: #fff;
  font-size: calc(26 * var(--scaling-base) / 375);
  display: block;
  font-weight: 700;
  margin-top: -6px;
}
.fv__copy .text-small {
  font-size: calc(26 * var(--scaling-base) / 375);
  font-weight: 700;
}
.fv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: calc(24 * var(--scaling-base) / 375);
}
.fv__visual {
  margin-top: auto;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
.fv__visual .visual-man {
  position: absolute;
  bottom: calc(-24 * var(--scaling-base) / 375);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: auto;
  height: 82%;
}
.fv__visual .visual-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  z-index: 2;
}
.fv__visual .visual-badges img {
  max-width: calc(97 * var(--scaling-base) / 375);
  -webkit-filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}
.fv__cta {
  margin-top: calc(24 * var(--scaling-base) / 375);
}

.case {
  background-color: #fff9f0;
  padding: calc(48 * var(--scaling-base) / 375) 0;
}
.case__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(20 * var(--scaling-base) / 375);
}

.case-card {
  background: #fff;
  border-right: calc(3 * var(--scaling-base) / 375) solid transparent;
  border-left: calc(3 * var(--scaling-base) / 375) solid transparent;
  border-bottom: calc(3 * var(--scaling-base) / 375) solid transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)), -webkit-gradient(linear, left top, right top, from(#f16a4b), to(#f58343));
  background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #f16a4b 0%, #f58343 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: calc(10 * var(--scaling-base) / 375);
  overflow: hidden;
}
.case-card__head {
  background: -webkit-gradient(linear, left top, right top, from(#f16a4b), to(#f58343));
  background: linear-gradient(90deg, #f16a4b 0%, #f58343 100%);
  color: #fff;
  text-align: center;
  font-weight: bold;
  letter-spacing: calc(1.3 * var(--scaling-base) / 375);
  font-size: calc(24 * var(--scaling-base) / 375);
  padding-bottom: calc(2 * var(--scaling-base) / 375);
  position: relative;
  padding-right: calc(30 * var(--scaling-base) / 375);
}
.case-card__head .num {
  font-size: calc(42 * var(--scaling-base) / 375);
  padding: 0px 2px;
}
.case-card__head .up {
  font-size: calc(28 * var(--scaling-base) / 375);
  font-weight: bold;
}
.case-card__head::after {
  content: "";
  background: url(../img/icon-arrow.webp) no-repeat center center/contain;
  width: calc(38 * var(--scaling-base) / 375);
  height: calc(26 * var(--scaling-base) / 375);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.case-card__body {
  padding: calc(10 * var(--scaling-base) / 375) calc(14 * var(--scaling-base) / 375);
}
.case-card__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(10 * var(--scaling-base) / 375);
  margin-bottom: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.case-card__img {
  width: calc(120 * var(--scaling-base) / 375);
  height: calc(120 * var(--scaling-base) / 375);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
}
.case-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: calc(8 * var(--scaling-base) / 375);
}
.case-card__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.case-card__age {
  font-size: calc(20 * var(--scaling-base) / 375);
  padding-bottom: calc(4 * var(--scaling-base) / 375);
}
.case-card__jobs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(2 * var(--scaling-base) / 375);
}
.case-card__jobs .job-pill {
  color: #fff;
  font-size: calc(16 * var(--scaling-base) / 375);
  font-weight: bold;
  padding: calc(6 * var(--scaling-base) / 375);
  width: 100%;
  text-align: center;
  border-radius: 8px;
  letter-spacing: 1.5px;
  white-space: nowrap;
}
.case-card__jobs .job-pill--gray {
  background: #7d7d7d;
}
.case-card__jobs .job-pill--orange {
  background: #f49d43;
}
.case-card__jobs .job-arrow {
  width: 0;
  height: 0;
  border-left: calc(10 * var(--scaling-base) / 375) solid transparent;
  border-right: calc(10 * var(--scaling-base) / 375) solid transparent;
  border-top: calc(8 * var(--scaling-base) / 375) solid #7d7d7d;
  margin: 0 auto;
}
.case-card__desc {
  line-height: 1.6;
  margin: 0;
  color: #1e1e1e;
}
.case-card__desc .text-red {
  font-size: calc(20 * var(--scaling-base) / 375);
  color: #f16a4b;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, rgba(241, 106, 75, 0.1)));
  background: linear-gradient(transparent 70%, rgba(241, 106, 75, 0.1) 70%);
}

.worry {
  background: url(../img/worries-back.jpg) no-repeat center bottom/cover;
  padding: calc(60 * var(--scaling-base) / 375) 0 calc(80 * var(--scaling-base) / 375);
}
.worry .title {
  margin-bottom: calc(32 * var(--scaling-base) / 375);
}
.worry .title::after {
  display: none;
}
.worry__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(32 * var(--scaling-base) / 375);
  margin-bottom: calc(32 * var(--scaling-base) / 375);
}
.worry__msg {
  text-align: center;
  font-size: calc(22 * var(--scaling-base) / 375);
  font-weight: bold;
  margin: 0;
  letter-spacing: calc(1 * var(--scaling-base) / 375);
}

.worry-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  border-radius: 20px;
  padding: calc(15 * var(--scaling-base) / 375) calc(20 * var(--scaling-base) / 375);
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.worry-item__text {
  font-size: calc(15 * var(--scaling-base) / 375);
  font-weight: bold;
  line-height: 1.5;
  color: #1e1e1e;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.worry-item__img {
  width: calc(108 * var(--scaling-base) / 375);
  height: calc(108 * var(--scaling-base) / 375);
  margin: calc(-40 * var(--scaling-base) / 375) calc(0 * var(--scaling-base) / 375) calc(-15 * var(--scaling-base) / 375) calc(-10 * var(--scaling-base) / 375);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.worry-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.worry-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.chance {
  background: url(../img/chance-back.webp) no-repeat center top/cover;
  padding-top: calc(16 * var(--scaling-base) / 375);
  overflow: hidden;
}
.chance__sub {
  font-size: calc(24 * var(--scaling-base) / 375);
  font-weight: bold;
  color: #f58343;
  margin-bottom: calc(8 * var(--scaling-base) / 375);
  text-align: center;
}
.chance__logo {
  width: 85%;
  max-width: calc(320 * var(--scaling-base) / 375);
  margin: 0 auto calc(10 * var(--scaling-base) / 375);
}
.chance__logo img {
  width: 100%;
}
.chance__man {
  max-width: calc(300 * var(--scaling-base) / 375);
  margin: 0 auto;
}
.chance__man img {
  width: 100%;
  display: block;
}

.line-diag {
  background: url(../img/line-back.webp) repeat center top;
  padding: calc(60 * var(--scaling-base) / 375) 0 calc(32 * var(--scaling-base) / 375);
  text-align: center;
}
.line-diag__phone {
  width: 100%;
  max-width: calc(360 * var(--scaling-base) / 375);
  margin: 0 auto calc(24 * var(--scaling-base) / 375);
}
.line-diag__phone img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
}
.line-diag__next {
  margin-top: calc(48 * var(--scaling-base) / 375);
}
.line-diag__next-text {
  font-size: calc(22 * var(--scaling-base) / 375);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: calc(32 * var(--scaling-base) / 375);
}
.line-diag__next-arrow {
  width: calc(120 * var(--scaling-base) / 375);
  margin: 0 auto;
}
.line-diag__next-arrow img {
  width: 100%;
  -webkit-animation: floatY 1.5s infinite alternate ease-in-out;
          animation: floatY 1.5s infinite alternate ease-in-out;
}

@-webkit-keyframes floatY {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@keyframes floatY {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
.reasons {
  background: url(../img/reason-back.webp) no-repeat center top/cover;
  padding: calc(64 * var(--scaling-base) / 375) 0;
}
.reasons .title {
  color: #fff;
  margin-bottom: calc(64 * var(--scaling-base) / 375);
}
.reasons .title::after {
  background: -webkit-gradient(linear, left top, right top, from(#fff9f0), to(#f58343));
  background: linear-gradient(90deg, #fff9f0 0%, #f58343 100%);
}
.reasons__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(40 * var(--scaling-base) / 375);
  margin-bottom: calc(50 * var(--scaling-base) / 375);
}

.reason-card {
  background: #fff;
  border-radius: calc(20 * var(--scaling-base) / 375);
  padding: calc(24 * var(--scaling-base) / 375) calc(13 * var(--scaling-base) / 375);
  position: relative;
  text-align: center;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.reason-card__num {
  position: absolute;
  top: calc(-35 * var(--scaling-base) / 375);
  left: calc(20 * var(--scaling-base) / 375);
  font-size: calc(60 * var(--scaling-base) / 375);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  -webkit-text-stroke: calc(8 * var(--scaling-base) / 375) #ff7f50;
  paint-order: stroke fill;
}
.reason-card__head {
  font-size: calc(22 * var(--scaling-base) / 375);
  font-weight: bold;
  margin-bottom: calc(20 * var(--scaling-base) / 375);
  line-height: 1.4;
}
.reason-card__img {
  width: calc(160 * var(--scaling-base) / 375);
  margin: 0 auto calc(8 * var(--scaling-base) / 375);
}
.reason-card__img img {
  width: 100%;
  height: auto;
}
.reason-card__desc {
  line-height: 1.7;
  text-align: left;
  margin: 0;
}
.reason-card__desc .highlight {
  color: #f16a4b;
  font-weight: bold;
  font-size: calc(20 * var(--scaling-base) / 375);
}

.flow {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff9f0), to(#ffeacb));
  background: linear-gradient(180deg, #fff9f0 0%, #ffeacb 100%);
  padding: calc(60 * var(--scaling-base) / 375) 0 calc(80 * var(--scaling-base) / 375);
  font-family: "Noto Sans JP", sans-serif;
}
.flow__inner {
  padding: 0 calc(24 * var(--scaling-base) / 375);
}
.flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(32 * var(--scaling-base) / 375);
  margin-bottom: calc(50 * var(--scaling-base) / 375);
}

.flow-item {
  background: #fff;
  border-radius: calc(10 * var(--scaling-base) / 375);
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}
.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: calc(-30 * var(--scaling-base) / 375);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: calc(15 * var(--scaling-base) / 375) solid transparent;
  border-right: calc(15 * var(--scaling-base) / 375) solid transparent;
  border-top: calc(20 * var(--scaling-base) / 375) solid #f49d43;
}
.flow-item__head {
  background: -webkit-gradient(linear, left top, right top, from(#f16a4b), to(#f58343));
  background: linear-gradient(90deg, #f16a4b 0%, #f58343 100%);
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: calc(20 * var(--scaling-base) / 375);
  font-family: "M PLUS 1p", sans-serif;
  border-radius: calc(10 * var(--scaling-base) / 375) calc(10 * var(--scaling-base) / 375) 0 0;
}
.flow-item__head .num {
  font-weight: 700;
  font-size: calc(28 * var(--scaling-base) / 375);
  margin-left: calc(5 * var(--scaling-base) / 375);
}
.flow-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}
.flow-item__text {
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 0 0 calc(8 * var(--scaling-base) / 375);
}
.flow-item__text .small {
  font-size: calc(14 * var(--scaling-base) / 375);
  font-weight: normal;
}
.flow-item__img {
  width: calc(160 * var(--scaling-base) / 375);
  height: calc(107 * var(--scaling-base) / 375);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
}
.flow-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0 calc(6 * var(--scaling-base) / 375) 0;
}

.fixed-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 249, 240, 0.95);
  padding: 20px 10px 15px;
  -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(120%);
          transform: translateY(120%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media (max-width: 767px) {
  .fixed-footer {
    display: block;
  }
  .fixed-footer.is-visible {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fixed-footer .cta {
  width: 90%;
  margin: 0 auto;
  -webkit-animation: none;
          animation: none;
}
.fixed-footer .cta .cta-balloon {
  z-index: 11;
}

.footer {
  background-color: #f58343;
  padding: calc(15 * var(--scaling-base) / 375) 0;
  text-align: center;
}
.footer .copyright {
  color: #fff;
  font-size: calc(11 * var(--scaling-base) / 375);
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

@-webkit-keyframes pulseZoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulseZoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.js-fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}

.js-fade.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fv__copy.is-active {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.visual-badges.is-active {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.fv__cta.is-active {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.js-pop {
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.js-pop.is-active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.chance-logo.is-active {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}