@charset "UTF-8"
body {
   margin: 0;
   padding: 0;
}

body {
  font-family: "iroha-27keyaki-stdn", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  --sb-track-color: #bafff8;
  --sb-thumb-color: #ffa4a0;
  --sb-size: 14px;
}
body::-webkit-scrollbar {
    width: 15px;
}
body::-webkit-scrollbar-track {
    background-image: linear-gradient(
      135deg, #7eebc8 10%, #49b3b6 100%
	);
}
body::-webkit-scrollbar-thumb {
    background-image: linear-gradient(
      135deg, #ff798d 10%, #ffc1ca 100%
    );
	border: 2px solid #ff6cb4;
	border-radius:10px;
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color)
                     var(--sb-track-color);
  }
}
.route-nav,.scroll,.pr-text span,h1,h2,h3,h4 {
  font-family: "ab-shiguma", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.pr-text span{
  font-family: "vdl-logomarupop-shadow", sans-serif;
  font-weight: 400;
  font-style: normal;
}
header {
    position: fixed;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translateX(-93%)
             translateY(-50%);
}
a {
    text-decoration: none;
}
h1 {
    white-space: normal;
    margin: 0px 0px 30px 0px;
    font-size: 18px;
    font-family: "vdl-logomarupop-shadow", sans-serif;
    line-height: 1;
}
h1 span{
    background: #ffffff96;
    padding: 2px 10px;
    border-radius: 20px;
}
h2, h3, h4, span, p{
  white-space: pre-line;
}
h2.c-heading-l {
    display: flex;
    font-size: 37px;
    margin: 50px 0 20px 0px;
    padding: 0px;
    background: url(./img/title.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 70px;
    width: 100%;
    align-items: center;
    justify-content: center;
}
img{
  loading="lazy"
}
.pc-none{
  display: none;
}
.hero-contentsBOX {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-contents {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 1182px;
    height: 100vh;
}

.hero-background {
    position: fixed;
    z-index: 1;
    background-image: linear-gradient(0deg, #75eeca, #28a5b0);
    width: 100%;
    height: 100vh;
}
.hero-sakura{
  background-image: url(./img/back.webp);
  background-position: top;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
}
.top-0{
  margin-top:0 !important;
}
.h-container {
    text-align: center;
    width: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-box img {
    width: 250px;
}
.press-btn{
  position: relative;
  display:inline-block;
  overflow:hidden;
  box-shadow: 0 6px 0 rgba(0,0,0,.25);
  transition: transform .12s ease-out, box-shadow .12s ease-out;
}

.press-btn img{
  display:block;
  pointer-events:none;
  transform: translateY(0);
  transition: transform .12s ease-out;
}

/* hover */
.press-btn:hover{
  transform: translateY(2px);
  box-shadow: 0 4px 0 rgba(0,0,0,.25);
}
/* active */
.press-btn:active{
  transform: translateY(5px);
  box-shadow: 0 0 0 rgba(0,0,0,.25);
}
.press-btn::after{
  content:"";
  position:absolute;
  top:-50%;
  left:-120%;
  width:60%;
  height:200%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.4) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: shine 5s ease-in-out infinite;
  pointer-events:none;
}

@keyframes shine{
  0%{left:-120%;}
  60%{left:120%;}
  100%{left:120%;}
}

.reminder {
    color: white;
    font-size: 25px;
    margin: 0px 0px 10px;
}

h1.header__logo img {
    width: 620px;
}

.reminder {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	text-align: center;
}

.reminder::before,
.reminder::after {
	content: '';
	width: 3px;
	height: 40px;
	background-color: #fff;
}

.reminder::before {
	margin-right: 30px;
	transform: rotate(-35deg)
}
.reminder::after {
	margin-left: 30px;
	transform: rotate(35deg)
}

.route-nav {
    padding: 60px 0 32px;
    width: 600px;
}

.route-nav__inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

.route-nav__list {
  position: relative;
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 40px 0 0;
  padding: 0px;
}

.route-nav__list::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 24px;
  height: 2px;
  background-color: #ffffff;
  opacity: 0.9;
}

.route-nav__item {
  position: relative;
  text-align: center;
  font-size: 21px;
  color: #ffffff;
  padding: 20px 0 0 0;
}
.route-nav__item a{
  color:white;
}

.route-nav__item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 16px;
  width: 14px;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid #fff;
}
.route-nav__item.is-active::before{
  background: #e84c7f;
}

.route-nav__item span {
  display: inline-block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin-top: 24px;
}

.route-nav__truck {
  position: absolute;
  top: -50px;
  left: 0;
  transform: translateX(0);
  transition: transform 0.4s ease;
  z-index: 5;
}


.route-nav__item.is-active span {color: #000000;}
.scroll {
    text-align: center;
    height: 60px;
    font-size: 40px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 0 #000000, -2px -2px 0 #000000, -2px 2px 0 #000, 2px -2px 0 #000000, 0px 2px 0 #000000, 0 -2px 0 #000000, -2px 0 0 #000000, 2px 0 0 #000000;
    animation: scroll-floatY 2.8s ease-in-out infinite;
}
@keyframes scroll-floatY{
  0%   { transform: translateY(0); }
  50%  { transform: translateY(2px); }
  100% { transform: translateY(0); }
}
.scroll img {
    width: 30px;
    padding: 0 15px;
}
.main-container {
    position: relative;
    z-index: 10;
    width: fit-content;
    left: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
main {
    border: solid 1px #ffffff;
    z-index: 500;
    position: relative;
    width: 480px;
    height: fit-content;
    background-color: #94d5d8;
    background-image: radial-gradient(circle, #73d5c9 2px, transparent 2px);
    background-position: 0 0;
    background-size: 14px 14px;
}

.back-g {
    padding: 10px;
    background-image: url(./img/back2.webp);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
}
.l-container img {
    width: 100%;
    display: block;
}
.pr-text {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    margin: 0;
    padding: 65px 0;
    background: url(./img/pr-text.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.pr-text span {
    background: linear-gradient(transparent 5%, #ffffff -85%);
    font-weight: 900;
    font-size: 34px;
}
.service-text h3{
    font-size: 35px;
    line-height: 1.3;
    margin: 0;
}
h3 span.sab {
    font-size: 26px;
    line-height: 2;
}
.service-text p {
    font-size: 20px;
    margin: 40px 0;
}
.service-text {
    text-align: center;
    height: 1010px;
    background: url(./img/service01.webp);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    margin-top: 50px;
}
span.marker {
    color: #ffe53e;
    font-size: 40px;
    text-shadow: 1px 1px 0 #000000, -1px -1px 0 #000000, -1px 1px 0 #000, 1px -1px 0 #000000, 0px 1px 0 #000000, 0 -1px 0 #000000, -1px 0 0 #000000, 1px 0 0 #000000;
}
.point {
    border: solid 2px #000;
    border-radius: 20px;
    background-color: #ffffff;
    padding:16px;
}

.point h3 {
    margin: 0;
    font-size: 30px;
    display: flex;
    align-items: center;
    padding: 0px 0 15px;
    border-bottom: 2px dotted #58c0c9;
}
.point h3 img {
    width: 25px;
    padding-right: 3px;
}
ol {
    font-size: 22px;
}
ol li {
    margin-bottom: 25px;
    line-height: 1.2;
}

ol li span {
    font-size: 18px;
}

.plan-box {
    border: solid 2px #000000;
    width: 90%;
    background: #d9ff98;
    padding-top: 40px;
    margin-bottom: 15px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-box img {
    width: 70%;
    display: inline-block;
}

.plan-box p {
    margin: 0;
}

.plan-box h3 {
    margin: 0;
    font-size: 35px;
    padding-bottom: 20px;
}
.plan-contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.plan-box.kihon {
    background: #e3ffd1;
}

.plan-box.rakuraku {
    background: #d1ffc5;
}
.plan-contents p {
    font-size: 20px;
    line-height: 1.5;
}
.plan-box p {
    font-size: 18px;
    line-height: 1.2;
}
.plan-contents span{
    font-size: 16px;
}
p.price {
    margin-top: 10px;
    background: white;
    padding: 5px 30px;
    font-family: "vdl-logomarupop-shadow", sans-serif;
}
.flow-box {
  display: flex;
}

.flow-box img {
  width: 35%;
}

.flow-text h3 {
  font-size: 30px;
  margin: 0;
  padding-bottom: 10px;
}

.flow-text p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.flow-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.option-contents img {
  width: 35px;
  margin-right: 5px;
}
.option-contents div {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 15px;
  margin: 10px 0;
  padding: 15px;
}
.option-contents h3 {
  font-size: 24px;
  text-align: left;
  margin: 0;
  line-height: 1.2;
  font-family: "vdl-logomarupop-shadow", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.p-faq h3 {
  font-size: 23px;
  text-align: center;
  margin-top: 40px;
}
.p-faq h3 span {
    color: #ff4444;
}
.p-faq p {
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    margin: 50px 0px 20px;
}
p.faq-text {
    font-size: 16px;
    margin: 5px 0px 0px 0px;
    text-align: left;
}
.area p {
  line-height: 1.3;
  text-align: center;
  font-size: 15px;
}

.area-cue {
  position: fixed;
  z-index: 400;
  width: 400px;
  top: 20vh;
  opacity: 0;
  transition:
  opacity .25s ease,
  width .35s ease;
}

.area-cue.is-show {
  width: 742px;
  opacity: 1;
}

a.area-cue__illust.area-cue__illust--left {
  position: absolute;
  left: 0;
}

.area-cue__illust img {
  width: 130px;
}

a.area-cue__illust.area-cue__illust--right {
  position: absolute;
  right: 0;

}

.blink{ position: relative; }
.blink__open{ display:block; }
.blink__close{
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
}
.blink--single .blink__close{
  animation: blink-single .18s linear 1;
}
.blink--double .blink__close{
  animation: blink-double .36s linear 1;
}

@keyframes blink-single{
  0%{opacity:0}
  50%{opacity:1}
  100%{opacity:0}
}

@keyframes blink-double{
  0%{opacity:0}
  20%{opacity:1}
  40%{opacity:0}
  60%{opacity:1}
  80%{opacity:0}
  100%{opacity:0}
}

@media (prefers-reduced-motion: reduce){
  .blink__close{ animation:none!important; }
}
.blink{
  animation: breathe 3.6s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes breathe{
  0%{
    transform: translateY(0) scale(1);
  }
  50%{
    transform: translateY(-1px) scale(1.015);
  }
  100%{
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce){
  .blink{
    animation: none;
  }
}

.line-p {
    text-align: center;
    line-height: 1.5;
    margin: 10px 0px;
}

.thanks {
    margin-top: 100px;
    margin-bottom: 160px;
}
.thanks img {
    width: 70%;
    margin: 0 auto;
}

.thanks-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.thanks-link a {
    color: #31527e;
    font-size: 18px;
    transition:0.5s;
    line-height: 1.8;
    border-radius: 20px;
    border: solid 1px;
    background: #fbe8e9;
    margin: 3px 0;
    width: 290px;
    text-align: center;
    font-family: "vdl-logomarupop-shadow", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.thanks-link a:hover{
	color:#ff4389;
	background:#a3ede3;
}

.l-footer {
    text-align: center;
    color: #e1feff;
}

/* ===== Font Loading Overlay ===== */
.font-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: #59c5bb;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.font-loader__inner {
  text-align: center;
  color: #fff;
  font-size: 16px;
}

.truck-svg{
  width: 150px;
  height: auto;
  display: block;
}
.truck-svg.nav_truck{
  width: 120px;
  height: auto;
  display: block;
}

.truck-svg #fronttire,
.truck-svg #backtire,
.truck-svg #cap,
.truck-svg #gas{
  transform-box: fill-box;
}

.truck-svg #fronttire,
.truck-svg #backtire{
  transform-origin: center;
  animation: tire-rotate .55s linear infinite;
}
@keyframes tire-rotate{
  to{ transform: rotate(360deg); }
}

.truck-svg #cap{
  transform-origin: center;
  animation: cap-float .5s ease-in-out infinite;
}
@keyframes cap-float{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-5px); }
}

.truck-svg #gas{
  transform-origin: center;
  animation: gas-rtl .5s ease-in-out infinite;
}
@keyframes gas-rtl{
  0%   { opacity: 0; transform: translateX(20px); }
  40%  { opacity: 1; transform: translateX(0px); }
  60%  { opacity: 1; transform: translateX(-1px); }
  80%  { opacity: 0; transform: translateX(-8px); }
  100% { opacity: 0; transform: translateX(-10px); }
}

.truck-svg #truck{
  transform-box: fill-box;
  transform-origin: center;
  animation: truck-katakata .35s ease-in-out infinite;
}
.truck-svg #arm{
  transform-box: fill-box;
  transform-origin: center;
  animation: truck-katakata .35s ease-in-out infinite;
}
@keyframes truck-katakata{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}


html.wf-loading #font-loader {
  opacity: 1;
  pointer-events: auto;
}

html.wf-active #font-loader,
html.wf-inactive #font-loader {
  opacity: 0;
  pointer-events: none;
}
#sakura-canvas{
  position: fixed;
  inset: 0;
  z-index: 100000;
  pointer-events: none;
}

/* LOGO anime*/

.logo-svg{
  width: 650px;
  height: auto;
  overflow: visible;
}

.js-logo #text path,
.js-logo #hako path{
  fill-opacity: 0;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}

.js-logo #hukidasi,
.js-logo #text-kage,
.js-logo #hako-kage{
  opacity: 0;
}

html.is-loaded .js-logo #text path{
  stroke: #000;
  stroke-width: 2;
  animation: drawStroke 3.5s ease forwards;
}

html.is-loaded .js-logo #hako path{
  stroke: #000;
  stroke-width: 2;
  animation: drawStroke 3.5s ease forwards;
}

html.is-loaded .js-logo #hukidasi{
  animation: fadeIn .6s ease forwards;
}

html.is-loaded .js-logo #text-kage{
  animation: fadeIn 1s ease forwards;
  animation-delay: 1s;
}

html.is-loaded .js-logo #hako-kage{
  transform-origin: center;
  animation:
    fadeIn 1s ease forwards,
    floatY 4.5s ease-in-out infinite;
  animation-delay: 1s, 2s;
}

html.is-loaded .js-logo #hako{
  transform-origin: center;
  animation: floatY 4.5s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes drawStroke{
  0%   { stroke-dashoffset: 2000; fill-opacity: 0; }
  90%  { stroke-dashoffset: 0;    fill-opacity: 1; }
  100% { stroke-dashoffset: 0;    fill-opacity: 1; }
}

@keyframes fadeIn{
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes floatY{
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

.js-seq{
  opacity: 0;
  transform: translateY(12px);
}

html.is-loaded .js-seq{
  animation: seqFade .7s ease forwards;
  animation-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

@keyframes seqFade{
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce){
  .js-seq{ opacity: 1; transform: none; }
  html.is-loaded .js-seq{ animation: none; }
}

/* === sequential reveal (seq) === */
.seq-item{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.seq-item.is-in{
  opacity: 1;
  transform: translateY(0);
}

@keyframes seqFade{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce){
  .seq-item{
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.js-reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}

.js-reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .js-reveal{ opacity: 1; transform: none; transition: none; }
}


#font-loader.is-hide{
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 1745px){
  .logo-svg {
    width: 580px;
  }
  .route-nav__item {
  font-size: 19px;
  }

  .route-nav {
    padding: 30px 0px 10px;
  }

  h1 {
    margin: 0px 0px 30px 0px;
    font-size: 18px;
  }

  .reminder {
    font-size: 20px;
  }
}

@media (max-width: 768px){
    .js-seq{
      border:none;
    }
    .back-g {
      padding: 10px;
      background-image: url(./img/back2sp.webp);
      background-position: top;
      background-repeat: no-repeat;
      background-size: contain;
    }
      .sp-none{
        display: none;
      }
      .pc-none{
        display: block;
      }
      .hero-sakura{
      background-size: 280%;
    }
    h1 {
      margin: 0px 0px 30px 0px;
      font-size: 18px;
      text-align: center;
    }
    h1 span {
    padding: 2px 6px;
    }
    div#top {
        left: 0;
    }

    .hero-contents {
        width: auto;
    }

    main {
        width: 100%;
    }

    h2.c-heading-l {
      background-size: contain;
      font-size: 30px;
    }

    .pr-text span {
        font-size: 28px;
    }

    .p-faq h3 {
        line-height: 1.4;
    }

    .plan-box p {
        font-size: 16px;
    }

    .plan-box {
        width: 97%;
    }

    .point h3 {
        font-size: 23px;
    }

    .point h3 img {
        width: 20px;
    }

    ol {
        font-size: 20px;
        margin-bottom: 0;
        padding-left: 28px;
    }

    ol li:last-child {
        margin-bottom: 0;
    }
    ol li {
    margin-bottom: 15px;
  }

    .flow-box img {
        width: 30%;
    }
    .flow-text p {
    font-size: 16px;
  }

    .back-g {
        padding: 5px;
    }

    span.marker {
        font-size: 33px;
    }

    .service-text {
        height: 920px;
    }

    .SP-firstview img {
        width: 100%;
        margin: 40px 0 10px;
    }

    .reminder {
        font-size: 19px;
        width: 100%;
    }

    .reminder::before, .reminder::after {
        height: 25px;
    }

    .reminder::after {
        margin-left: 9px;
    }

    .reminder::before {
        margin-right: 10px;
    }

    .press-btn img {
        width: 280px;
        margin: 0;
    }

    .contact-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }
    .press-btn{
    	margin-bottom:12px;
    }
  .area-cue,
  .area-cue.is-show{
    display: none;
  }
  .thanks {
    margin-bottom: 40px;
  }
  .l-footer {
    text-align: center;
    color: #e1feff;
    padding-bottom: 65px;
    background: #ffbfbf;
    width: 100%;
}
  body::-webkit-scrollbar {
      width: 0;
  }

   .sp-hamburger__bars{
     position: relative;
     width: 26px;
     height: 20px;
     display: block;
     z-index: 10000;
   }

   .sp-hamburger__bars span{
     position: absolute;
     left: 0;
     width: 100%;
     height: 3px;
     background: #000;
     border-radius: 999px;
     transition: transform .2s ease, top .2s ease, opacity .15s ease;
   }

   .sp-hamburger__bars span:nth-child(1){top: 0;background: #fff;}
   .sp-hamburger__bars span:nth-child(2){top: 8.5px;background: white;}
   .sp-hamburger__bars span:nth-child(3){top: 17px;background: white;}

   body.is-menu-open .sp-hamburger__bars span:nth-child(1){
     top: 8.5px;
     transform: rotate(45deg);
   }
   body.is-menu-open .sp-hamburger__bars span:nth-child(2){
     opacity: 0;
   }
   body.is-menu-open .sp-hamburger__bars span:nth-child(3){
     top: 8.5px;
     transform: rotate(-45deg);
   }
  .sp-menu{
    position: fixed;
    inset: 0;
    background: #f3b3c3;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
    padding: 18px 18px 24px;
    overflow-y: auto;
  }

  .sp-menu.is-open{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }


  .sp-menu__head{
    padding-top: 28px;
    text-align: center;
    margin-bottom: 16px;
  }
  .sp-menu__title{
    font-weight: 900;
    font-size: 32px;
    letter-spacing: .02em;
    color: #fff;
    text-shadow: 2px 2px 0 #000;
  }

  .sp-menu__list{
    list-style: none;
    padding: 0;
    margin: 18px 0 22px;
    display: grid;
    gap: 10px;
    text-align: center;
  }
  .sp-menu__list a {
      display: inline-block;
      color: #000;
      font-size: 16px;
      font-weight: 800;
      text-decoration: none;
      line-height: 1;
  }
  .sp-menu__cta{
    display: grid;
    justify-items: center;
  }


  .sp-menu__head img {width: 70%;}

  header {
      width: 100%;
      left: 0;
      top: 0;
      transform: none;
  }
  button.sp-hamburger.pc-only-hide {
      position: fixed;
      z-index: 10001;
      top: 5px;
      right: 5px;
      border-radius: 40px;
      border: #375581 solid 2px;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #ffa4a0;
  }
  .floating-cta {
    position: fixed;
    bottom: 0px;
    z-index: 300;
    transition: opacity .25s ease, transform .25s ease;
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .floating-cta img {
    width: 100%;
    height: auto;
    display: block;
  }
  .floating-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
  }
  html {
    overflow-x: hidden;
  }
}
body{
  touch-action: pan-y;
  margin: 0;
}
