@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes clipPath {
  100% {
    clip-path: inset(0);
  }
}
.standard {
  background-color: #fff;
}
.standard .section {
  width: min(calc(100% - 1rem * 2), 71.25rem);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  .standard .section {
    width: min(calc(100% - 2.5rem * 2), 71.25rem);
  }
}
.standard .section-main {
  margin-top: 4rem;
}
@media (min-width: 600px) {
  .standard .section-main {
    margin-top: 4rem;
  }
}

.apps > li {
  border-top: 1px solid #D9D9D9;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.apps > li:last-child {
  padding-bottom: 0;
}
@media (min-width: 600px) {
  .apps > li:last-child {
    padding-bottom: 0.75rem;
  }
}
@media (min-width: 992px) {
  .apps > li {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 992px) {
  .apps dl {
    display: grid;
    grid-template-columns: 22rem 1fr;
    align-items: center;
    margin-bottom: 1.875rem;
    gap: 2rem;
  }
}
.apps dt {
  display: grid;
  grid-template-columns: 5.875rem 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .apps dt {
    gap: 1.625rem;
    margin-bottom: initial;
  }
}
.apps dd {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .apps dd {
    min-height: 5em;
  }
}

.splide__slide {
  border-radius: 1rem;
  border: 1px solid #D9D9D9;
  overflow: hidden;
}

h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
}

.download {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  width: min(100%, 18.75rem);
}
@media (min-width: 992px) {
  .download {
    gap: 1rem;
  }
}

.title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 600px) {
  .title {
    margin-bottom: 4rem;
  }
}
.title h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

.icon {
  border-radius: 0.625rem;
  overflow: hidden;
}

.splide__arrows-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
}

.splide__arrows {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.splide__arrow {
  pointer-events: all;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
}
.splide__arrow.splide__arrow--prev {
  transform: rotate(180deg);
  left: -rem(60);
}
.splide__arrow.splide__arrow--next {
  right: -rem(60);
}
.splide__arrow[disabled] {
  pointer-events: none;
  opacity: 0.1;
}