figure {
  position: relative;
  width: 100%;
}

img.lozad {
  transition: visibility 0.2s linear, opacity 0.2s linear;
}
img.lozad:not([data-loaded=true]) {
  visibility: hidden;
  opacity: 0;
}
img:not(.release) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.sectCap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sectCap em {
  display: inline-block;
  font-size: 6em;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
.sectCap em.bl {
  color: #d5efec;
}
.sectCap em.gl {
  color: #ceb575;
}

.loud {
  display: flex;
  align-items: flex-end;
  margin-bottom: 1em;
}
.loud:before, .loud:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: currentColor;
  margin: 0 0.5em;
  transform-origin: bottom;
}
.loud:before {
  transform: rotate(-45deg);
}
.loud:after {
  transform: rotate(45deg);
}

.speech {
  --borderWidth: 2px;
  position: relative;
  overflow: hidden;
}
.speech:after {
  content: "";
  display: block;
  width: 100%;
  height: calc(.5em + calc(var(--borderWidth) * 2));
  background: currentColor;
  clip-path: polygon(0 0, calc(50% - .25em) 0, 50% 0.5em, calc(50% + .25em) 0, 100% 0, 100% var(--borderWidth), calc(50% + .25em + var(--borderWidth)) var(--borderWidth), 50% calc(.5em + calc(var(--borderWidth) * 2)), calc(50% - .25em - var(--borderWidth)) var(--borderWidth), 0 var(--borderWidth));
  margin-top: 0.5em;
}

p, h2, h3 {
  word-break: break-all;
}
p i, h2 i, h3 i {
  display: inline;
  position: relative;
  font-weight: 600;
  background: linear-gradient(transparent 80%, #d5efec 0%);
}

ol {
  counter-reset: ol 0;
}
ol br {
  display: none;
}
ol li {
  counter-increment: ol;
  margin: 0 0 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: baseline;
  color: #000000;
}
ol li:before {
  font-weight: 600;
  font-size: 1.1em;
  content: counter(ol) ". ";
  margin: 0 0.2em 0 0;
  line-height: 1;
  flex-shrink: 0;
}

.figSect .figWrap {
  width: 50%;
}
.figSect .contWrap {
  width: 50%;
}
.figSect.figFull .contInner {
  width: 100%;
  max-width: calc(var(--inner) * .5);
}
.figSect.figFull .contInner.cramped {
  max-width: calc(67.5em * .5);
}
.figSect.figFull .figWrap {
  width: 50%;
}
.figSect.figFull .figWrap img {
  width: 100%;
}
.figSect.figFull .contWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.figSect.figFull.figLeft .contWrap {
  justify-content: flex-start;
}
.figSect.figFull.figRight .contWrap {
  justify-content: flex-end;
}
.figSect.figLeft .figWrap figure {
  right: 0;
}
.figSect.figLeft .contWrap {
  padding: 0 0 0 3em;
}
.figSect.figRight {
  flex-direction: row-reverse;
}
.figSect.figRight .figWrap figure {
  left: 0;
}
.figSect.figRight .contWrap {
  padding: 0 3em 0 0;
}

.blob {
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #f2f2f2;
}
.blob.blob1 {
  -webkit-mask-image: url(../images/lp/blob1.svg);
  mask-image: url(../images/lp/blob1.svg);
  aspect-ratio: 1/1;
}
.blob.blob2 {
  -webkit-mask-image: url(../images/lp/blob2.svg);
  mask-image: url(../images/lp/blob2.svg);
  aspect-ratio: 1/1;
}
.blob.blob3 {
  -webkit-mask-image: url(../images/lp/blob3.svg);
  mask-image: url(../images/lp/blob3.svg);
  aspect-ratio: 500/575;
}
.blob.blob4 {
  -webkit-mask-image: url(../images/lp/blob4.svg);
  mask-image: url(../images/lp/blob4.svg);
  aspect-ratio: 500/375;
}

.wave {
  padding: 0 0 var(--waveHeight);
  position: relative;
  background: #d5efec;
}
.wave:before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  background-image: url("../images/lp/dividerBl.svg");
  background-repeat: repeat no-repeat;
  background-attachment: scroll;
  background-position: 0 0;
  background-size: 99%;
  padding-top: var(--waveHeight);
  position: absolute;
  left: 0;
  bottom: calc(100% - 7.5vh);
  animation: an-wave 20s linear infinite;
}
@media (max-width: 1025px) {
  .wave {
    padding: 0 0 var(--waveHeight);
  }
  .wave:before {
    padding-top: var(--waveHeight);
    bottom: calc(100% - 7vw);
    animation-duration: 10s;
  }
}
.wave.wh {
  background: #ffffff;
}
.wave.wh:before {
  background-image: url("../images/lp/dividerWh.svg");
}

@keyframes an-wave {
  0% {
    background-position-x: 50vw;
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-1.5deg);
  }
  100% {
    background-position-x: -50vw;
    transform: rotate(0deg);
  }
}
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1em);
  }
}
@keyframes purupuru {
  0% {
    transform: translate(1%, 0);
  }
  2% {
    transform: translate(-1%, 1%);
  }
  4% {
    transform: translate(1%, -1%);
  }
  6% {
    transform: translate(-1%, 0);
  }
  8% {
    transform: translate(1%, -1%);
  }
  10% {
    transform: translate(-1%, 1%);
  }
  12% {
    transform: translate(0, 0);
  }
}
@keyframes bubbly {
  from {
    background-position-y: 100%;
  }
}
@keyframes reflection {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  40% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  41% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  45% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.splide {
  --arrow: var(--defaultPadding);
}
.splide .splide__arrow {
  background: none;
  border: 1px solid;
  width: var(--arrow);
  height: var(--arrow);
}
.splide .splide__arrow.splide__arrow--prev {
  left: 0;
}
.splide .splide__arrow.splide__arrow--next {
  right: 0;
}
.splide .splide__pagination .splide__pagination__page {
  background: #ffffff;
  width: 0.75rem;
  height: 0.75rem;
  margin: 0 0.25rem;
}
.splide .splide__pagination .splide__pagination__page.is-active {
  width: 0.8rem;
  height: 0.8rem;
}
.splide .splide__track--nav > .splide__list > .splide__slide.is-active {
  border: none;
}

.lpHeader {
  position: relative;
  z-index: 2;
  align-items: center;
  margin: 0;
  justify-content: space-between;
  transition: 0.4s all ease, 0s right linear;
}
@media (min-width: 1025px) {
  .lpHeader {
    position: fixed;
    padding: 0 1.5em;
    width: 100%;
    height: 4.5em;
  }
}
@media (max-width: 1025px) {
  .lpHeader {
    padding: 0 0 0 1.5em;
    width: 100%;
    height: 4em;
    z-index: 99;
  }
}
.lpHeader .gLogo {
  transition: all 0s linear;
}
@media (min-width: 1025px) {
  .lpHeader .gLogo {
    width: 9em;
    transition: all 0.6s ease;
  }
  .lpHeader .gLogo:hover .svgWrap svg path {
    fill: #81d8d0;
  }
}
@media (max-width: 1025px) {
  .lpHeader .gLogo {
    width: 100%;
  }
}
.lpHeader .gLogo .svgWrap {
  margin: 0;
}
@media (max-width: 1025px) {
  .lpHeader .gLogo .svgWrap {
    max-width: 12em;
  }
}
.lpHeader .gLogo .svgWrap svg path {
  transition: all 0.4s linear;
}
.lpHeader .gLogo .svgWrap:after {
  padding-top: 12%;
}

@media (min-width: 1025px) {
  .colInner {
    width: calc(100% - (var(--innerPadding) * .5));
  }
}

.firstView {
  width: 100%;
  --bottom: calc(var(--innerPadding) * .5);
  position: relative;
}
@media (min-width: 1025px) {
  .firstView {
    --radius: 6em;
  }
}
@media (max-width: 1025px) {
  .firstView {
    --radius: 3em;
    z-index: 3;
  }
}
.firstView .sloganWrap {
  width: var(--width);
  position: relative;
  z-index: 2;
}
@media (min-width: 1025px) {
  .firstView .sloganWrap {
    --width: 50%;
  }
}
@media (max-width: 1025px) {
  .firstView .sloganWrap {
    --width: 100%;
  }
}
.firstView .sloganWrap section {
  width: 100%;
  position: relative;
  z-index: 1;
  justify-content: space-between;
}
@media (min-width: 1025px) {
  .firstView .sloganWrap section {
    padding: 6em 0 3em calc(var(--bottom) * .5);
    min-height: 100vh;
  }
}
@media (max-width: 1025px) {
  .firstView .sloganWrap section {
    padding: 1.5em;
    align-items: flex-start;
    position: relative;
  }
}
@media (min-width: 1025px) {
  .firstView .sloganWrap section h2 {
    font-size: 5.5vh;
    width: 200%;
    letter-spacing: 0.15em;
    line-height: 1.6;
    padding: 7.5vh 0 0;
  }
}
@media (max-width: 1025px) {
  .firstView .sloganWrap section h2 {
    height: 100vw;
    font-size: 1.8em;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    line-height: 1.5;
    padding-top: 1.5em;
  }
}
.firstView .sloganWrap section .banner {
  align-items: flex-end;
  --btnHeight: calc(1.5em + 1.5em + 1em);
}
@media (max-width: 1025px) {
  .firstView .sloganWrap section .banner {
    align-items: flex-start;
    position: relative;
    padding-bottom: calc(var(--btnHeight) + .5em);
  }
}
.firstView .sloganWrap section .banner figure {
  --sparcle: 5em;
  width: 15vw;
  margin-left: -1vw;
  aspect-ratio: var(--ratio);
}
@media (max-width: 1025px) {
  .firstView .sloganWrap section .banner figure {
    width: 45%;
  }
}
.firstView .sloganWrap section .banner figure img {
  width: 100%;
  border-radius: 1.5em;
}
.firstView .sloganWrap section .banner figure:before, .firstView .sloganWrap section .banner figure:after {
  content: "";
  width: var(--sparcle);
  height: var(--sparcle);
  display: block;
  position: absolute;
  opacity: 0;
  z-index: 1;
  background-image: url(../images/lp/sparkle.png);
  background-size: cover;
  animation: blink ease-in-out infinite alternate;
  mix-blend-mode: hard-light;
}
.firstView .sloganWrap section .banner figure:before {
  top: 25%;
  left: 40%;
  animation-delay: 0s;
  animation-duration: 1.5s;
}
.firstView .sloganWrap section .banner figure:after {
  top: 60%;
  left: 80%;
  animation-delay: 1.5s;
  animation-duration: 2s;
}
@media (min-width: 1025px) {
  .firstView .sloganWrap section .banner .contWrap {
    padding-left: var(--defaultPadding);
  }
}
@media (max-width: 1025px) {
  .firstView .sloganWrap section .banner .contWrap {
    width: 55%;
    padding-left: 1em;
  }
}
.firstView .sloganWrap section .banner .contWrap h1 {
  line-height: 1.5;
}
@media (min-width: 1025px) {
  .firstView .sloganWrap section .banner .contWrap h1 {
    font-size: 1em;
    display: flex;
  }
}
@media (max-width: 1025px) {
  .firstView .sloganWrap section .banner .contWrap h1 {
    font-size: 0.9em;
  }
  .firstView .sloganWrap section .banner .contWrap h1 strong {
    font-size: 1.5em;
  }
}
.firstView .sloganWrap section .banner .contWrap ul {
  margin-bottom: 1em;
}
.firstView .sloganWrap section .banner .contWrap ul li {
  overflow: hidden;
}
@media (min-width: 1025px) {
  .firstView .sloganWrap section .banner .contWrap ul li {
    margin-top: 0.5em;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    line-height: 1;
    font-size: 0.9em;
  }
}
@media (max-width: 1025px) {
  .firstView .sloganWrap section .banner .contWrap ul li {
    line-height: 1.25;
    margin: 0.5em 0;
  }
  .firstView .sloganWrap section .banner .contWrap ul li:not(:first-of-type):before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 0.2;
    margin-bottom: 0.5em;
  }
}
.firstView .sloganWrap section .banner .contWrap ul li em {
  padding: 0.25em 0;
  border: 1px solid;
  display: block;
  font-size: 0.75em;
  width: 5em;
  text-align: center;
  font-weight: 700;
}
@media (max-width: 1025px) {
  .firstView .sloganWrap section .banner .contWrap ul li em {
    font-size: 0.7em;
    float: left;
    padding: 0.5em 0;
    width: 2em;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.5em 0 0;
  }
}
.firstView .sloganWrap section .banner .contWrap ul li p {
  display: block;
  padding: 0 0.5em;
  font-weight: 700;
}
@media (max-width: 1025px) {
  .firstView .sloganWrap section .banner .contWrap ul li p {
    font-size: 0.75em;
  }
}
.firstView .sloganWrap section .banner .contWrap ul li strong {
  padding: 0;
}
@media (max-width: 1025px) {
  .firstView .sloganWrap section .banner .contWrap ul li strong {
    font-size: 0.8em;
    width: 100%;
    padding-top: 0.5em;
  }
}
.firstView .sloganWrap section .banner .contWrap ul li strong small {
  font-size: 0.6em;
}
.firstView .sloganWrap section .banner .contWrap .btn {
  width: 100%;
}
@media (max-width: 1025px) {
  .firstView .sloganWrap section .banner .contWrap .btn {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4em;
    transition: all 0.4s linear;
  }
  .firstView .sloganWrap section .banner .contWrap .btn a {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  .firstView .sloganWrap section .banner .contWrap .btn.gone {
    opacity: 0;
    height: 3em;
  }
  .firstView .sloganWrap section .banner .contWrap .btn.gone a {
    background: #39b9b7;
    border-radius: 1.5em 1.5em 0 0;
    filter: drop-shadow(0 -0.1em 0.1em rgba(0, 0, 0, 0.2));
  }
  .firstView .sloganWrap section .banner .contWrap .btn.gone a:before {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
  .firstView .sloganWrap section .banner .contWrap .btn.fixed {
    position: fixed;
    opacity: 1;
    transition-delay: 0.4s;
  }
}
.firstView .sloganWrap section .banner .contWrap .btn a {
  overflow: hidden;
}
.firstView .sloganWrap section .banner .contWrap .btn a:before {
  content: "";
  display: block;
  width: 1em;
  height: 100%;
  background: #d5efec;
  position: absolute;
  top: 0;
  left: 0;
  transform: skew(45deg);
  filter: blur(0.1em);
  transition: opacity 0s;
}
@media (min-width: 1025px) {
  .firstView .sloganWrap section .banner .contWrap .btn a:not(:hover) {
    background-color: #81d8d0;
  }
  .firstView .sloganWrap section .banner .contWrap .btn a:not(:hover):before {
    animation: reflection 6s ease-in-out infinite;
  }
  .firstView .sloganWrap section .banner .contWrap .btn a:hover:before {
    opacity: 0;
  }
}
@media (max-width: 1025px) {
  .firstView .sloganWrap section .banner .contWrap .btn a {
    background-color: #81d8d0;
  }
  .firstView .sloganWrap section .banner .contWrap .btn a:before {
    animation: reflection 6s ease-in-out infinite;
  }
}
@media (max-width: 1025px) {
  .firstView .sloganWrap section .banner {
    width: 100%;
    margin: 1em 0 0;
  }
}
.firstView .figWrap {
  width: calc(50% - 1px);
  height: 100vh;
  position: relative;
  z-index: 0;
}
@media (max-width: 1025px) {
  .firstView .figWrap {
    width: 100%;
    height: calc(100vw + 3em);
    position: absolute;
    top: 0;
    left: 0;
  }
}
.firstView .figWrap .mask {
  width: 100%;
  height: calc(100vh - 9em);
  position: absolute;
  right: 0;
}
@media (min-width: 1025px) {
  .firstView .figWrap .mask {
    top: 4.5em;
  }
}
@media (max-width: 1025px) {
  .firstView .figWrap .mask {
    width: calc(100% - 3em);
    height: calc(100% - 3em);
    bottom: 1.5em;
    border-radius: var(--radius) 0 0 var(--radius);
    overflow: hidden;
  }
}
.firstView .figWrap .mask .bgFill {
  width: 170%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #e4f7f5;
  border-radius: var(--radius) 0 0 var(--radius);
}
@media (max-width: 1025px) {
  .firstView .figWrap .mask .bgFill {
    width: 100%;
  }
}
.firstView .figWrap .mask figure {
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 6em 0 0 6em;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  overflow: hidden;
}
@media (max-width: 1025px) {
  .firstView .figWrap .mask figure {
    background-size: auto 100%;
    right: -15%;
    border-radius: 0;
  }
}
.firstView .figWrap .mask figure img {
  height: 100%;
}
.firstView .figWrap .mask figure.fig1 {
  z-index: 2;
  background-color: #e4f7f5;
}
.firstView .figWrap .mask figure.fig1 img.front {
  position: relative;
  z-index: 1;
}
.firstView .figWrap .mask figure.fig1 img.back {
  z-index: 0;
}
.firstView .figWrap .mask figure.fig2 {
  z-index: 1;
}
.firstView .figWrap .mask figure.fig2 img {
  object-fit: contain;
  object-position: bottom;
}
@media (max-width: 1025px) {
  .firstView .figWrap .mask figure.fig2 {
    display: none;
  }
}
@media (min-width: 1025px) {
  .firstView .special {
    --pos: 2em;
    --width: 18vw;
    position: absolute;
    top: calc(100vh - var(--width) - var(--pos));
    right: var(--pos);
    z-index: 3;
  }
  .firstView .special .contWrap {
    position: absolute;
    bottom: 100%;
    left: 0;
    padding: 1em;
    background: #ffffff;
    border-radius: 1em;
    filter: drop-shadow(0 0 1em rgba(0, 0, 0, 0.2));
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
  }
  .firstView .special:hover .contWrap {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1025px) {
  .firstView .special {
    --width: 100%;
    width: calc(100% - var(--innerPadding));
    margin: 0 auto 1em;
    align-items: center;
    border: 0.5em solid #f2f2f2;
    border-radius: var(--radius);
    padding: 1em;
    flex-direction: column;
  }
}
.firstView .special figure {
  width: var(--width);
  aspect-ratio: var(--ratio);
}
@media (max-width: 1025px) {
  .firstView .special figure {
    margin-bottom: 1em;
  }
}
.firstView .special .contWrap {
  flex: 1;
  max-width: 20em;
}
.firstView .special .contWrap p {
  font-size: 0.9em;
  line-height: 1.5;
  font-weight: 700;
  padding-left: 1em;
}
.firstView .message {
  width: 50%;
  position: relative;
  z-index: 2;
  padding: 0 0 0;
  min-height: 100vh;
  justify-content: flex-end;
}
@media (max-width: 1025px) {
  .firstView .message {
    width: 100%;
    padding: 3em 1.5em;
    margin-top: 0.5em;
    position: relative;
    justify-content: center;
  }
  .firstView .message:before {
    content: "";
    display: block;
    width: calc(100% - 1.5em);
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    background: #e4f7f5;
    border-radius: 0 var(--radius) var(--radius) 0;
  }
}
.firstView .message .colInner {
  align-items: flex-start;
  justify-content: center;
}
.firstView .message h2 {
  font-size: 2.25em;
  display: block;
  margin: 0 0 6em;
}
@media (max-width: 1025px) {
  .firstView .message h2 {
    font-size: 1.8em;
    display: block;
    margin: 0 0 1em;
  }
}
.firstView .message .copy {
  font-size: 1.5em;
  line-height: 2.7;
  margin: 0 0 9em;
}
@media (max-width: 1025px) {
  .firstView .message .copy {
    font-size: 1.1em;
    margin-bottom: 0;
  }
}

@media (min-width: 1025px) {
  .overView {
    padding: 6em 0 12em;
  }
}
@media (max-width: 1025px) {
  .overView {
    padding: 3em 0;
  }
}
.overView .inner .sectCap {
  position: relative;
  z-index: 1;
}
@media (min-width: 1025px) {
  .overView .inner .sectCap {
    width: 80%;
    margin: 0 auto 4.5em;
  }
}
.overView .inner .sectCap img {
  width: 100%;
  position: relative;
  z-index: 1;
}
.overView .inner .sectCap .blob {
  position: absolute;
  top: 0;
  right: -10vw;
  z-index: 0;
  width: 20vw;
  background-color: #d5efec;
}
.overView .inner .figSect {
  align-items: center;
  position: relative;
  z-index: 0;
}
.overView .inner .figSect .figWrap {
  text-align: center;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overView .inner .figSect .figWrap figure {
  aspect-ratio: var(--ratio);
}
@media (max-width: 1025px) {
  .overView .inner .figSect .figWrap figure.main {
    width: 80%;
  }
}
.overView .inner .figSect .figWrap figure.item {
  width: 25%;
  z-index: 2;
  position: absolute;
}
@media (max-width: 1025px) {
  .overView .inner .figSect .figWrap figure.item {
    width: 40%;
  }
}
.overView .inner .figSect .figWrap figure.item.item1 {
  top: 30%;
  left: auto;
  right: 5%;
  transition-delay: 0.8s;
}
@media (max-width: 1025px) {
  .overView .inner .figSect .figWrap figure.item.item1 {
    top: 20%;
    right: 0;
  }
}
.overView .inner .figSect .figWrap figure.item.item2 {
  top: 20%;
  left: -5%;
  transition-delay: 0.6s;
}
@media (max-width: 1025px) {
  .overView .inner .figSect .figWrap figure.item.item2 {
    top: 2%;
  }
}
.overView .inner .figSect .figWrap figure img {
  width: 100%;
}
@media (max-width: 1025px) {
  .overView .inner .figSect .contWrap h2 {
    text-align: center;
  }
}
.overView .inner .figSect .contWrap p {
  font-size: 1.1em;
  display: block;
  line-height: 2;
  margin: 1.5em 0 1.5em;
}
.overView .inner .figSect .contWrap p em {
  font-size: 0.6rem;
  display: block;
  line-height: 1.5;
  opacity: 0.5;
}
.features {
  padding: 6em 0 12em;
}
@media (max-width: 1025px) {
  .features {
    padding: 3em 0 20vw;
  }
}
.features .inner {
  border-radius: 3em;
}
.features .inner .sectCap {
  margin: 0 0 6em;
}
@media (max-width: 1025px) {
  .features .inner .sectCap {
    margin: 0 0 2.5em;
  }
}
.features .inner .figSect {
  align-items: center;
  padding: 0 0 9em;
  position: relative;
}
@media (max-width: 1025px) {
  .features .inner .figSect {
    padding: 1em;
    border-radius: calc(3em + 1em);
    background: #ffffff;
  }
  .features .inner .figSect:not(:first-of-type) {
    margin-top: 3em;
  }
}
.features .inner .figSect .figWrap {
  position: relative;
  aspect-ratio: 1/1;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1025px) {
  .features .inner .figSect .figWrap {
    margin-bottom: 1em;
  }
}
.features .inner .figSect .figWrap figure.main {
  border-radius: 3em;
  aspect-ratio: var(--ratio);
  overflow: hidden;
  width: 80%;
}
.features .inner .figSect .figWrap figure.item {
  width: auto;
  max-width: 25%;
  z-index: 2;
  position: absolute;
  filter: drop-shadow(0.5em 0.5em 0.1em rgba(0, 0, 0, 0.2));
}
@media (max-width: 1025px) {
  .features .inner .figSect .figWrap figure.item {
    max-width: 40%;
  }
}
.features .inner .figSect .figWrap figure.item.item1 {
  transition-delay: 0.6s;
}
.features .inner .figSect .figWrap figure.item.item2 {
  transition-delay: 0.8s;
}
.features .inner .figSect .figWrap figure.item img {
  position: relative;
}
.features .inner .figSect .figWrap .bg {
  width: 100%;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #e4f7f5;
}
.features .inner .figSect.feat1 .figWrap {
  overflow: hidden;
}
.features .inner .figSect.feat1 .figWrap figure.item.item1 {
  max-width: 15%;
  top: 20%;
  right: 6%;
  left: auto;
  animation: purupuru 3s linear infinite;
}
@media (max-width: 1025px) {
  .features .inner .figSect.feat1 .figWrap figure.item.item1 {
    max-width: 25%;
    top: 5%;
  }
}
.features .inner .figSect.feat1 .figWrap .shuwa {
  width: 50%;
  padding-bottom: 100%;
  position: absolute;
  left: 25%;
  bottom: 0;
  background-size: 100% auto;
  background-image: url("../images/lp/bubbles.png");
  background-repeat: repeat-y;
  mask-image: radial-gradient(ellipse 100% 50% at 60% 60%, black 0%, transparent 50%);
  animation: bubbly 0.5s linear infinite;
  mix-blend-mode: color-dodge;
  transition-delay: 0.8s;
}
.features .inner .figSect.feat2 .figWrap.dual {
  align-items: flex-start;
}
.features .inner .figSect.feat2 .figWrap.dual figure.main {
  width: calc(50% + 5em);
}
.features .inner .figSect.feat2 .figWrap.dual figure.main:nth-of-type(1) {
  margin: 0 -8em 0 -2em;
}
.features .inner .figSect.feat2 .figWrap.dual figure.main:nth-of-type(2) {
  margin-top: auto;
}
@media (max-width: 1025px) {
  .features .inner .figSect.feat2 .figWrap.dual figure.main {
    width: calc(50% + 3em);
  }
  .features .inner .figSect.feat2 .figWrap.dual figure.main:nth-of-type(1) {
    margin: 0 -5em 0 -1em;
  }
}
.features .inner .figSect.feat2 .figWrap figure.item.item1 {
  top: -2%;
  left: -2%;
  right: auto;
  animation: fuwafuwa 6s linear infinite;
}
@media (max-width: 1025px) {
  .features .inner .figSect.feat2 .figWrap figure.item.item1 {
    top: -1.5em;
    left: -1.25em;
  }
}
.features .inner .figSect.feat2 .figWrap figure.item.item2 {
  top: 40%;
  right: 0;
  left: auto;
  animation: fuwafuwa 7s linear infinite;
}
@media (max-width: 1025px) {
  .features .inner .figSect.feat2 .figWrap figure.item.item2 {
    top: 23%;
    right: -1.25em;
  }
}
.features .inner .figSect.feat3 .figWrap figure.item.item1 {
  top: 20%;
  left: 5%;
  animation: fuwafuwa 6s linear infinite;
}
@media (max-width: 1025px) {
  .features .inner .figSect.feat3 .figWrap figure.item.item1 {
    top: 5%;
    left: 0;
    right: auto;
  }
}
.features .inner .figSect.feat3 .figWrap figure.item.item2 {
  top: 45%;
  right: 30%;
  left: auto;
  animation: fuwafuwa 7s linear infinite;
}
@media (max-width: 1025px) {
  .features .inner .figSect.feat3 .figWrap figure.item.item2 {
    top: 40%;
    right: 5%;
  }
}
@media (max-width: 1025px) {
  .features .inner .figSect .contWrap {
    padding-top: 0;
  }
}
.features .inner .figSect .contWrap .contInner {
  padding: 1em 0 0;
  align-items: center;
}
@media (max-width: 1025px) {
  .features .inner .figSect .contWrap .contInner {
    padding: 0 0;
    justify-content: center;
  }
}
.features .inner .figSect .contWrap .contInner dt {
  color: #ceb575;
  margin-bottom: 1em;
}
.features .inner .figSect .contWrap .contInner dt em {
  font-size: var(--font);
  line-height: 0.8;
}
@media (min-width: 1025px) {
  .features .inner .figSect .contWrap .contInner dt em {
    --font: 6em;
  }
}
@media (max-width: 1025px) {
  .features .inner .figSect .contWrap .contInner dt em {
    --font: 5em;
  }
}
.features .inner .figSect .contWrap .contInner dd {
  width: calc(100% - 6em);
  align-items: center;
}
@media (max-width: 1025px) {
  .features .inner .figSect .contWrap .contInner dd {
    width: 100%;
    text-align: center;
    align-items: center;
  }
}
.features .inner .figSect .contWrap .contInner dd h2 {
  line-height: 1.5;
  font-size: 2em;
  width: 100%;
  text-align: center;
}
@media (max-width: 1025px) {
  .features .inner .figSect .contWrap .contInner dd h2 {
    font-size: 1.75em;
  }
}
.features .inner .figSect .contWrap .contInner dd .desc {
  margin: 1.5em 0;
}
.features .inner .figSect .contWrap .contInner dd .desc p {
  display: block;
}
.features .inner .figSect .contWrap .contInner dd .desc p + ul, .features .inner .figSect .contWrap .contInner dd .desc p + ol {
  margin-block-start: 1em;
}
.features .inner .figSect .contWrap .contInner dd .desc ol li, .features .inner .figSect .contWrap .contInner dd .desc ul li {
  line-height: 1.5;
}
.features .inner .figSect .contWrap .contInner dd .desc ol + p, .features .inner .figSect .contWrap .contInner dd .desc ul + p {
  margin-block-start: 1em;
}
@media (max-width: 1025px) {
  .features .inner .figSect .contWrap .contInner dd .desc {
    margin: 1em 0;
    text-align: left;
  }
}

@media (max-width: 1025px) {
  .concept {
    padding: 1.5em 0 calc(var(--waveHeight) + 1em);
  }
}
.concept .inner {
  align-items: center;
}
@media (min-width: 1025px) {
  .concept .inner {
    padding: 3em 0 9em;
  }
}
.concept .inner .sectCap {
  margin: 0 0 3em;
}
@media (max-width: 1025px) {
  .concept .inner .sectCap {
    margin: 0 0 1em;
  }
}
.concept .inner .sectCap h2 {
  display: block;
}
@media (min-width: 1025px) {
  .concept .inner .sectCap h2 {
    margin: 3em 0 0;
  }
}
@media (max-width: 1025px) {
  .concept .inner .sectCap h2 br {
    display: none;
  }
}
.concept .inner .contWrap {
  align-items: center;
  max-width: 46em;
}
.concept .inner .contWrap .copy {
  width: 100%;
  line-height: 2.5;
}
@media (max-width: 1025px) {
  .concept .inner .contWrap .copy {
    font-size: 1em;
    line-height: 2;
  }
}
.concept .inner .contWrap small {
  display: block;
  width: 100%;
  margin: 0.5em 0 0;
  opacity: 0.5;
}
.concept .inner .contWrap .profile {
  width: 100%;
  margin: 6em 0 0;
}
@media (min-width: 1025px) {
  .concept .inner .contWrap .profile {
    align-items: center;
  }
}
@media (max-width: 1025px) {
  .concept .inner .contWrap .profile {
    padding-top: 1.5em;
    margin-top: 1.5em;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    display: block;
    overflow: hidden;
  }
}
.concept .inner .contWrap .profile figure {
  width: 12em;
  aspect-ratio: var(--ratio);
}
@media (max-width: 1025px) {
  .concept .inner .contWrap .profile figure {
    width: 50%;
    text-align: center;
    margin: 0 0.5em 0 0;
    float: left;
  }
}
.concept .inner .contWrap .profile .persona {
  flex: 1;
}
@media (min-width: 1025px) {
  .concept .inner .contWrap .profile .persona {
    padding: 0 0 0 3em;
  }
}
.concept .inner .contWrap .profile .persona strong {
  font-size: 1.2em;
  margin: 0 0 0.5em;
}
@media (max-width: 1025px) {
  .concept .inner .contWrap .profile .persona strong {
    font-size: 1.1em;
  }
}
.concept .inner .contWrap .profile .persona p {
  display: block;
  font-size: 0.8em;
}

.voices {
  --radius: 3em;
}
.voices .inner .sectCap {
  position: relative;
  z-index: 1;
  margin-bottom: 1em;
}
.voices .inner .trialItem {
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: center;
  padding: 3em;
  margin-bottom: 3em;
  color: #ffffff;
  background: #81d8d0;
  border-radius: var(--radius);
}
@media (max-width: 1025px) {
  .voices .inner .trialItem {
    padding: 2em;
    margin-bottom: 1em;
  }
}
.voices .inner .trialItem figure {
  width: 15em;
  aspect-ratio: var(--ratio);
  filter: drop-shadow(0.25em 0.25em 0.25em rgba(0, 0, 0, 0.2));
}
@media (max-width: 1025px) {
  .voices .inner .trialItem figure {
    width: 50%;
  }
}
.voices .inner .trialItem figure img {
  width: 100%;
}
@media (min-width: 1025px) {
  .voices .inner .trialItem .contWrap {
    padding-left: var(--defaultPadding);
  }
}
@media (max-width: 1025px) {
  .voices .inner .trialItem .contWrap {
    width: 100%;
    margin-top: 1em;
    text-align: center;
  }
}
.voices .inner .cardWrap {
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.voices .inner .cardWrap .card {
  width: calc(50% - 1.5em);
  padding: 4.5em 1.5em;
  background-color: #ffffff;
  border-radius: var(--radius);
  align-items: center;
  text-align: center;
  margin: 0 0 3em;
  line-height: 1.5;
}
@media (max-width: 1025px) {
  .voices .inner .cardWrap .card {
    padding: 2em;
  }
}
.voices .inner .cardWrap .card h3 {
  font-size: 1.5em;
  min-height: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.voices .inner .cardWrap .card figure {
  max-width: 18em;
  aspect-ratio: var(--ratio);
}
.voices .inner .cardWrap .card figure:after {
  padding-top: 75%;
}
.voices .inner .cardWrap .card figure img {
  max-width: 100%;
}
.voices .inner .cardWrap .card p {
  display: block;
  font-size: 2.5em;
  font-weight: 600;
}
.voices .inner .cardWrap .card p em {
  font-size: 0.875rem;
  display: block;
  line-height: 1;
}
.voices .inner .cardWrap .card p b {
  font-size: 1.5em;
}
.voices .inner .cardWrap .card small {
  display: block;
}
.voices .inner .horizontal {
  margin: 1.5em 0 0;
  z-index: 1;
}
.voices .inner .horizontal h3 {
  display: block;
  margin: 0 0 1em;
}
.voices .inner .horizontal .keen-slider {
  flex-wrap: nowrap;
  overflow: visible;
}
.voices .inner .horizontal .keen-slider li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 2em;
  border: 1px solid #ffffff;
  border-radius: calc(var(--radius) * .5);
  margin: 0;
  background: #ffffff;
  font-size: 1.25em;
  transition: 0.2s all linear;
  line-height: 1.5;
  min-width: 20em;
  cursor: grab;
}
.voices .inner .horizontal .keen-slider li:hover {
  border-color: #81d8d0;
}
.voices .inner .horizontal .splide__track {
  overflow: visible;
}
.voices .inner .horizontal .splide__track .splide__list {
  overflow: visible;
  width: 100%;
}
.voices .inner .horizontal .splide__track .splide__list .splide__slide {
  align-items: center;
  justify-content: center;
  padding: 1em 2em;
  border: 1px solid #ffffff;
  border-radius: calc(var(--radius) * .5);
  margin: 0;
  background: #ffffff;
  font-size: 1.25em;
  transition: 0.2s all linear;
  line-height: 1.5;
  min-width: 20em;
  cursor: grab;
}
.voices .inner .horizontal .splide__track .splide__list .splide__slide:hover {
  border-color: #81d8d0;
}
.voices .inner .paraWrap {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.voices .inner .paraWrap figure {
  position: absolute;
}
.voices .inner .paraWrap figure:nth-of-type(1) {
  width: 3em;
  right: calc(100% + 6em);
  top: 12.5%;
}
.voices .inner .paraWrap figure:nth-of-type(2) {
  width: 4.5em;
  left: calc(100% + 3em);
  top: 33%;
}
.voices .inner .paraWrap figure:nth-of-type(3) {
  width: 4.5em;
  right: calc(100% + 3em);
  top: 66%;
}
.voices .inner .paraWrap figure:nth-of-type(4) {
  width: 3em;
  left: calc(100% + 6em);
  top: 90%;
}

@media (max-width: 1025px) {
  .sales {
    padding: 1.5em 0 20vw;
  }
}
@media (min-width: 1025px) {
  .sales .inner {
    padding-top: 3em;
  }
}
.sales .inner .sectCap {
  margin: 0 0 3em;
}
@media (max-width: 1025px) {
  .sales .inner .sectCap {
    margin: 0 0 1.5em;
  }
}
.sales .inner .sectCap h2 {
  display: block;
  margin: 3em 0 1em;
}
@media (max-width: 1025px) {
  .sales .inner .sectCap h2 {
    margin: 0 0 1em;
  }
}
.sales .inner .sectCap p {
  display: block;
  max-width: 40em;
}
.sales .inner .itemList {
  justify-content: space-between;
}
.sales .inner .itemList .item {
  width: 100%;
  margin: 0 0 3em;
  position: relative;
}
@media (min-width: 1025px) {
  .sales .inner .itemList .item {
    --main: calc(50% - 1.5em);
    --sub: calc(33.3% - 1.5em);
  }
}
@media (max-width: 1025px) {
  .sales .inner .itemList .item {
    --main: 100%;
    --sub: 100%;
  }
}
.sales .inner .itemList .item .viewInner {
  --gap: 3em;
  --rad: 3em;
  --figWid: 50%;
  padding: var(--gap);
  background-color: #d5efec;
  border-radius: var(--rad);
  text-align: center;
  line-height: 1.5;
  align-items: center;
  height: 100%;
  gap: var(--gap);
}
@media (max-width: 1025px) {
  .sales .inner .itemList .item .viewInner {
    flex-direction: column;
    --figWid: 100%;
    --gap: 1em;
  }
}
.sales .inner .itemList .item .viewInner figure {
  width: var(--figWid);
  border-radius: calc(var(--rad) * .5);
  box-shadow: 0 0 1em rgba(255, 255, 255, 0.5);
  aspect-ratio: var(--ratio);
  overflow: hidden;
}
@media (max-width: 1025px) {
  .sales .inner .itemList .item .viewInner figure {
    border-radius: calc(var(--rad) * .75);
  }
}
.sales .inner .itemList .item .viewInner .itemMeta {
  flex: 1;
  align-items: center;
}
.sales .inner .itemList .item .viewInner .itemMeta h3 {
  font-size: 1.25em;
  line-height: 1.5;
  letter-spacing: 0;
  width: calc(100% - 2em);
  margin: 0.5em 0;
}
.sales .inner .itemList .item .viewInner .itemMeta .price {
  align-items: center;
}
.sales .inner .itemList .item .viewInner .itemMeta .price .tags {
  font-size: 0.8em;
}
.sales .inner .itemList .item .viewInner .itemMeta .price .tags .tag {
  background: #000000;
  color: #ffffff;
  line-height: 1;
  padding: 0.5em 1em;
  margin-right: 0.5em;
}
.sales .inner .itemList .item .viewInner .itemMeta .price dl {
  line-height: 1;
  align-items: center;
}
.sales .inner .itemList .item .viewInner .itemMeta .price dl dt {
  border: 1px solid;
  padding: 0.25em 0.5em;
  font-size: 0.875em;
  background: #ffffff;
  min-width: 7em;
  margin: 0 0.5em 0 0;
}
.sales .inner .itemList .item .viewInner .itemMeta .price dl dd {
  letter-spacing: 0;
  font-size: 1.3em;
  font-weight: 700;
}
.sales .inner .itemList .item .viewInner .itemMeta .price dl dd i {
  font-size: 0.5em;
}
.sales .inner .itemList .item .viewInner .itemMeta .price dl.through dd {
  font-size: 0.9rem;
  font-weight: 400;
}
.sales .inner .itemList .item .viewInner .itemMeta .includes {
  font-size: 0.875em;
  padding: 0 1.5rem;
  display: block;
  text-align: left;
  margin-top: 1rem;
  font-weight: 700;
}
.sales .inner .itemList .item .viewInner .itemMeta .notes {
  font-size: 0.75em;
  padding: 0 1.5rem;
  margin-top: 1rem;
  opacity: 0.5;
}
.sales .inner .itemList .item .viewInner .itemMeta .btn {
  margin-top: 1em;
}
.sales .inner .itemList .item .viewInner .itemMeta .btn a:hover {
  background: #39b9b7;
}
.sales .inner .itemList .item .viewInner .itemMeta .sBtn {
  margin-top: 1em;
}
.sales .inner .itemList .item .badge {
  background: #39b9b7;
  color: #ffffff;
  line-height: 1.5;
  font-weight: 600;
  position: absolute;
  box-shadow: 0.25em 0.25em 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: 0.2s opacity ease 0.8s;
}
@media (min-width: 1025px) {
  .sales .inner .itemList .item .badge {
    top: -1.5em;
    left: -1.5em;
    aspect-ratio: 1/1;
    border-radius: 50%;
    width: 10em;
  }
}
@media (max-width: 1025px) {
  .sales .inner .itemList .item .badge {
    top: -1.5em;
    padding: 1em;
    border-radius: 1em;
    right: -1em;
  }
}
.sales .inner .itemList .item .badge p {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}
@media (min-width: 1025px) {
  .sales .inner .itemList .item .badge p {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.9em;
  }
}
.sales .inner .itemList .item.inView .badge {
  opacity: 1;
}

.recipe {
  align-items: center;
}
.recipe .sectCap {
  margin: 0 0 3em;
}
.recipe .recipeWrap {
  align-items: center;
  width: 100%;
}
.recipe .recipeWrap:not(:first-of-type) {
  margin: 3em 0 0;
}
.recipe .recipeWrap .recipeInner {
  background: #ffffff;
}
@media (min-width: 1025px) {
  .recipe .recipeWrap .recipeInner.land {
    flex-direction: column;
    align-items: center;
  }
  .recipe .recipeWrap .recipeInner.land .figWrap {
    width: 100%;
  }
  .recipe .recipeWrap .recipeInner.land .figWrap figure img {
    height: 125%;
    top: -12.5%;
  }
  .recipe .recipeWrap .recipeInner.land .contWrap {
    max-width: var(--crampedMaxWidth);
  }
  .recipe .recipeWrap .recipeInner.port {
    align-items: flex-start;
    justify-content: center;
  }
  .recipe .recipeWrap .recipeInner.port .figWrap {
    flex: 2;
    position: sticky;
    top: 3em;
  }
  .recipe .recipeWrap .recipeInner.port .contWrap {
    flex: 3;
  }
}
.recipe .recipeWrap .figWrap {
  overflow: hidden;
  width: 100%;
}
.recipe .recipeWrap .figWrap figure {
  aspect-ratio: var(--ratio);
}
.recipe .recipeWrap .figWrap figure img {
  width: 100%;
}
@media (min-width: 1025px) {
  .recipe .recipeWrap .contWrap {
    --fontSize: 10em;
    --space: calc(var(--fontSize) + 1em);
    padding: 3em;
  }
}
@media (max-width: 1025px) {
  .recipe .recipeWrap .contWrap {
    --fontSize: 7em;
    padding: 1.5em;
  }
}
.recipe .recipeWrap .contWrap .numCap {
  padding: 0 0 1.5em;
  max-width: inherit;
  align-items: center;
}
@media (max-width: 1025px) {
  .recipe .recipeWrap .contWrap .numCap {
    flex-direction: column;
    padding: 0;
  }
}
.recipe .recipeWrap .contWrap .numCap dt {
  font-size: var(--fontSize);
  position: relative;
  justify-content: flex-start;
  align-items: flex-start;
  line-height: 0.8;
}
@media (min-width: 1025px) {
  .recipe .recipeWrap .contWrap .numCap dt {
    width: 1em;
  }
}
.recipe .recipeWrap .contWrap .numCap dt small {
  font-size: 0.2em;
  line-height: 0.8;
}
.recipe .recipeWrap .contWrap .numCap dt em {
  display: block;
  font-size: 1em;
  line-height: 0.8;
}
.recipe .recipeWrap .contWrap .numCap dd {
  flex: 1;
}
@media (min-width: 1025px) {
  .recipe .recipeWrap .contWrap .numCap dd {
    border-left: 1px solid;
    padding-left: 2em;
  }
}
@media (max-width: 1025px) {
  .recipe .recipeWrap .contWrap .numCap dd {
    padding-top: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.recipe .recipeWrap .contWrap .numCap dd h3 {
  font-size: 2em;
}
.recipe .recipeWrap .contWrap .numCap dd strong {
  font-size: 1.1em;
  display: block;
  line-height: 1.5;
}
@media (max-width: 1025px) {
  .recipe .recipeWrap .contWrap .numCap dd strong {
    text-align: center;
  }
}
.recipe .recipeWrap .contWrap .numCap dd .term {
  opacity: 0.7;
}
@media (max-width: 1025px) {
  .recipe .recipeWrap .contWrap .numCap dd .term {
    margin-top: 0.5em;
  }
}
.recipe .recipeWrap .contWrap .ing {
  max-width: inherit;
  width: 100%;
  font-size: 0.9em;
  margin-top: 1.5em;
  padding-top: 1.5em;
  border-top: 1px solid;
}
.recipe .recipeWrap .contWrap .ing dl {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 1025px) {
  .recipe .recipeWrap .contWrap .ing dl {
    flex-direction: column;
  }
}
.recipe .recipeWrap .contWrap .ing dl:not(:first-of-type) {
  border-top: 1px solid;
  padding-top: 1.5em;
  margin-top: 1.5em;
}
.recipe .recipeWrap .contWrap .ing dl dt {
  line-height: 1;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .recipe .recipeWrap .contWrap .ing dl dt {
    width: var(--space);
    padding: 0 1em 0.5em 0;
    margin: 0 0 1em;
  }
}
@media (max-width: 1025px) {
  .recipe .recipeWrap .contWrap .ing dl dt {
    margin-bottom: 1em;
  }
}
.recipe .recipeWrap .contWrap .ing dl dd {
  flex: 1;
}
.recipe .recipeWrap .contWrap .ing dl dd ul {
  list-style: disc inside;
}
.recipe .recipeWrap .contWrap .ing dl dd ul li {
  margin-left: 1em;
  text-indent: -1em;
}
.recipe .recipeWrap .contWrap .ing dl dd ol {
  counter-reset: count3;
  list-style-position: outside;
  padding-left: 1em;
}
.recipe .recipeWrap .contWrap .ing dl dd ol li:before {
  counter-increment: count3;
  content: counter(count3, decimal);
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.recipe .recipeWrap .contWrap .ing span {
  display: block;
  font-size: 0.75em;
  opacity: 0.75;
}
.recipe .recipeWrap .contWrap .notes {
  padding: 1em;
  margin-top: 1em;
  background: #f2f2f2;
}
.recipe .recipeWrap .contWrap .notes p {
  font-size: 0.75em;
  opacity: 0.75;
}
.recipe .recipeWrap .contWrap .notes ul {
  font-size: 0.75em;
  opacity: 0.75;
  list-style: disc inside;
}
.recipe .recipeWrap .contWrap .notes ul li {
  margin-left: 1em;
  text-indent: -1em;
}

.lpFooter {
  padding: 6em 0 3em;
}
.lpFooter .inner {
  align-items: center;
}
.lpFooter .inner em {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 5vh;
  line-height: 1.5;
  display: block;
  margin: 0 0 3em;
  width: 4.5em;
}
.lpFooter .inner .svgWrap {
  max-width: 10em;
}
.lpFooter .inner .svgWrap.jibieLogo {
  margin: 1.5em 0;
}
.lpFooter .inner .svgWrap.jibieLogo:after {
  padding-top: 50.1%;
}
.lpFooter .copyRight {
  width: 100%;
  text-align: center;
  padding-bottom: 1.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
}

.modalPane.lpModal .inner .featureWrap {
  --font: 6em;
  width: 100%;
  padding: 6em 0;
}
@media (max-width: 1025px) {
  .modalPane.lpModal .inner .featureWrap {
    --font: 5em;
    padding: 0;
  }
}
.modalPane.lpModal .inner .featureWrap:not(:first-of-type) {
  margin: 3em 0 0;
  border-top: 1px solid #ceb575;
}
@media (max-width: 1025px) {
  .modalPane.lpModal .inner .featureWrap:not(:first-of-type) {
    margin: 1.5em 0 0;
    padding: 1.5em 0 0;
  }
}
.modalPane.lpModal .inner .featureWrap .figWrap {
  margin: 1em 0 1em var(--font);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
  border-radius: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4em;
}
@media (max-width: 1025px) {
  .modalPane.lpModal .inner .featureWrap .figWrap {
    border-radius: 1em;
    padding: 1em;
    margin: 1em 0;
  }
}
.modalPane.lpModal .inner .featureWrap .figWrap figure {
  display: flex;
  justify-content: center;
}
.modalPane.lpModal .inner .featureWrap .figWrap figure img {
  width: 100%;
  max-width: 40em;
}
.modalPane.lpModal .inner .featureWrap .contWrap {
  padding-left: var(--font);
}
@media (max-width: 1025px) {
  .modalPane.lpModal .inner .featureWrap .contWrap {
    padding: 0;
  }
}
.modalPane.lpModal .inner .featureWrap .contWrap h2, .modalPane.lpModal .inner .featureWrap .contWrap h3, .modalPane.lpModal .inner .featureWrap .contWrap h4, .modalPane.lpModal .inner .featureWrap .contWrap h5 {
  display: block;
}
.modalPane.lpModal .inner .featureWrap .contWrap h3 {
  margin-top: 1em;
}
.modalPane.lpModal .inner .featureWrap .contWrap p {
  text-align: left;
}
.modalPane.lpModal .inner .featureWrap .contWrap p:has(img) {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1em 0;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
  border-radius: 3em;
  padding: 4em;
}
@media (max-width: 1025px) {
  .modalPane.lpModal .inner .featureWrap .contWrap p:has(img) {
    border-radius: 1em;
    padding: 1em;
  }
}
.modalPane.lpModal .inner .featureWrap .contWrap p img {
  position: relative;
  height: auto;
  max-width: 36em;
}
.modalPane.lpModal .inner .featureWrap dl {
  width: 100%;
  margin: 0 0 1em;
  align-items: center;
}
@media (max-width: 1025px) {
  .modalPane.lpModal .inner .featureWrap dl {
    flex-direction: column;
  }
}
.modalPane.lpModal .inner .featureWrap dl dt {
  font-size: var(--font);
  width: 1em;
  color: #ceb575;
  line-height: 1;
  text-align: center;
}
@media (min-width: 1025px) {
  .modalPane.lpModal .inner .featureWrap dl dt {
    padding-right: 0.5em;
  }
}
.modalPane.lpModal .inner .featureWrap dl dd {
  flex: 1;
}
@media (max-width: 1025px) {
  .modalPane.lpModal .inner .featureWrap dl dd {
    text-align: center;
  }
}
.modalPane.lpModal .inner .featureWrap dl dd em {
  font-weight: 700;
}
.modalPane.lpModal .inner .featureWrap dl dd h3 {
  line-height: 1.5;
}
.modalPane.lpModal .inner .featureWrap dl dd p {
  display: block;
  margin: 1.5em 0;
}
.modalPane.lpModal .inner .featureWrap ol {
  padding: 1.5em 1.5em 0.5em;
  margin: 1em 0;
  border: 1px solid #ceb575;
}
@media (min-width: 1025px) {
  .modalPane.lpModal .inner .featureWrap ol {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
  }
  .modalPane.lpModal .inner .featureWrap ol li {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
  }
}
.modalPane.lpModal .inner .featureWrap small {
  font-size: 0.7em;
  opacity: 0.5;
  line-height: 1.5;
  display: block;
}
@media (max-width: 1025px) {
  .modalPane.lpModal {
    width: 100%;
    padding: 1.5em;
  }
  .modalPane.lpModal .scrollable {
    padding: 1.5em 0;
    width: 100%;
    align-content: flex-start;
  }
  .modalPane.lpModal .closeBtn {
    width: 3em;
    height: 3em;
    top: calc(1.5em * .5);
    right: calc(1.5em * .5);
  }
  .modalPane.lpModal .closeBtn i {
    border: 1px solid;
  }
}

@media (min-width: 1025px) {
  h2 {
    font-size: 2em;
  }

  h3 {
    font-size: 1.7em;
  }

  #drawerPane {
    position: fixed;
    align-items: center;
    margin: 0;
    top: 0;
    right: 0;
    justify-content: space-between;
    padding: 0 1.5em;
    height: 4.5em;
    z-index: 3;
    font-size: 0.875em;
  }
  #drawerPane ul {
    padding: 0 0.5em 0 0;
  }
  #drawerPane ul li {
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #drawerPane ul li a {
    position: relative;
    padding: 0.75em 1em;
    text-align: center;
    width: 100%;
    display: block;
    transition: color 0.2s ease-in-out;
  }
  #drawerPane ul li a:after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #000000;
    position: absolute;
    bottom: -1px;
    left: 0;
    transition: width 0.2s ease-in-out;
  }
  #drawerPane ul li a span {
    display: block;
    font-size: 0.875em;
    font-weight: 400;
    margin: 0.25em 0 0;
    letter-spacing: -0.02em;
  }
  #drawerPane ul li a:hover:after {
    width: 100%;
  }

  .voices .inner {
    padding: 3em 0 9em;
  }
}
@media (max-width: 1025px) {
  .sectCap em {
    font-size: 4em;
  }

  .figSect .figWrap {
    width: 100%;
  }
  .figSect .contWrap {
    width: 100%;
  }
  .figSect.figFull {
    flex-direction: column;
    align-items: center;
  }
  .figSect.figFull .contInner {
    width: 100%;
    max-width: 36em;
    padding: 0;
  }
  .figSect.figFull .contInner.cramped {
    max-width: 30em;
  }
  .figSect.figFull .figWrap {
    width: 100%;
    max-width: 36em;
  }
  .figSect.figFull .figWrap figure {
    margin: 0 auto;
  }
  .figSect.figFull .contWrap {
    width: 100%;
    max-width: 36em;
    justify-content: center;
  }
  .figSect.figFull .contWrap .contInner {
    padding: 1.5em 0;
  }
  .figSect.figFull.reverse {
    flex-direction: column;
  }
  .figSect.figFull.reverse .contWrap {
    justify-content: center;
  }
  .figSect.figFull.reverse .contWrap .contInner {
    padding: 1.5em 0 0;
  }
  .figSect.figFull.firstView {
    padding: 1.5em;
  }
  .figSect.figLeft, .figSect.figRight {
    flex-direction: column;
  }
  .figSect.figLeft .contWrap, .figSect.figRight .contWrap {
    padding: 1.5em 0;
  }

  .voices {
    padding: 0 0 calc(var(--waveHeight) + 1em);
  }
  .voices .inner .sectCap {
    margin: 0 0 1.5em;
  }
  .voices .inner .cardWrap .card {
    width: 100%;
    margin: 0 0 1em;
  }
  .voices .inner .cardWrap .card h3 {
    min-height: inherit;
  }
  .voices .inner .cardWrap .card figure {
    max-width: 15em;
  }
  .voices .inner .cardWrap .card p {
    font-size: 1.5em;
  }
  .voices .inner .cardWrap .card p b {
    font-size: 1.5em;
  }
  .voices .inner .horizontal .keen-slider li:last-of-type {
    margin-right: 6em;
  }
  .voices .inner .paraWrap {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .voices .inner .paraWrap .parallax {
    position: absolute;
  }
  .voices .inner .paraWrap .parallax:nth-of-type(1) {
    width: 3em;
    right: calc(100% + 6em);
    top: 12.5%;
  }
  .voices .inner .paraWrap .parallax:nth-of-type(2) {
    width: 4.5em;
    left: calc(100% + 3em);
    top: 33%;
  }
  .voices .inner .paraWrap .parallax:nth-of-type(3) {
    width: 4.5em;
    right: calc(100% + 3em);
    top: 66%;
  }
  .voices .inner .paraWrap .parallax:nth-of-type(4) {
    width: 3em;
    left: calc(100% + 6em);
    top: 90%;
  }

  #drawerPane {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
    position: fixed;
    height: 100%;
    width: 100%;
    min-width: 15em;
    top: 0;
    right: 0;
    transition: all 0.4s cubic-bezier(0.6, 0, 0, 1) 0.2s;
    opacity: 0;
    visibility: hidden;
    z-index: 98;
    overflow: hidden;
    background: rgba(129, 216, 208, 0.7);
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
  }
  #drawerPane .scrollable {
    overflow-y: auto;
    overflow-x: hidden;
    width: 80%;
    padding: 1.5em;
    background: #ffffff;
    box-shadow: 1em 1em 1em rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 101;
    border-radius: 1.5em 0 0 1.5em;
    margin: 4.5em 0 0 auto;
  }
  #drawerPane .scrollable .scrollInner {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
  }
  #drawerPane .scrollable .scrollInner li {
    width: 100%;
  }
  #drawerPane .scrollable .scrollInner li a {
    display: block;
    padding: 0.5em 0;
  }
  #drawerPane.visible {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    content-visibility: visible;
    opacity: 1;
    visibility: visible;
  }
  #drawerPane .closeBtn {
    width: 3em;
    height: 3em;
    top: calc(1.5em * .5);
    right: calc(1.5em * .5);
  }
  #drawerPane .closeBtn i {
    border: 1px solid;
  }
}

/*# sourceMappingURL=lp.css.map */
