.landingpageintro{
  text-align:left;
  background:transparent;
}
.landingpageinfo ol{
  text-align:left;
}
.landingpageintro h1{
  font-size: 2rem;
}
.landingpageintro, .landingpagecontrast, .landingpagenavi, .landingpagenews, main, footer{
  border-bottom: 1px solid #6D6D6D;
}
.landingpagenavi li, .navigation li{
  border: 0px;
}
ul.landingpagenavi, ul.navigation{
  background: #d0cfcd;
}
.navigation a, .navigation a:hover, .navigation a:focus, .navigation a:active{
  color: #414248;
}
.landingpageintro::before {
  position: absolute;
  content: '';
  left: 5%;
  top: 5%;
  bottom: 5%;
  right: 5%;
  background: #d0cfcd;
  border-radius: 62% 47% 82% 35% / 45% 45% 80% 66%;
  will-change: border-radius, transform, opacity;
  animation: sliderShape 20s linear infinite;
  display: block;
  z-index: -1;
  -webkit-animation: sliderShape 20s linear infinite;
}
@keyframes sliderShape{
  0%,100%{
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    transform: translate3d(0,0,0) rotateZ(0.01deg);
  }
  34%{
      border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
    transform:  translate3d(0,5px,0) rotateZ(0.01deg);
  }
  50%{
    transform: translate3d(0,0,0) rotateZ(0.01deg);
  }
  67%{
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60% ;
    transform: translate3d(0,-3px,0) rotateZ(0.01deg);
  }
}