.kv {
  height: 663px;
  position: relative;
  overflow: hidden;
}

.kv .slides img {
  position: absolute;
  display: block;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kv-rotation forwards linear infinite 20s;
  opacity: 0;
}

.kv .slides img:nth-of-type(2) {
  animation-delay: 4s;
}

.kv .slides img:nth-of-type(3) {
  animation-delay: 8s;
}

.kv .slides img:nth-of-type(4) {
  animation-delay: 12s;
}

.kv .slides img:nth-of-type(5) {
  animation-delay: 16s;
}

@keyframes kv-rotation {
  from {
    transform: scale(1);
  }

  5% {
    opacity: 1;
  }

  20% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  to {
    opacity: 0;
    transform: scale(1.25);
  }
}

.kv .logo {
  position: absolute;
  inset: 62px 0 auto 0;
  width: 60px;
  height: auto;
  margin: auto;
}

@media screen and (min-width: 980px) {
  .kv {
    height: 800px;
  }
}

.section {
  padding: 50px 0;
}

.section.-primary {
  background: var(--primary-container);
  color: var(--light-gray);
}

.section .visual {
  display: block;
  margin-bottom: 16px;
  width: 100%;
  height: auto;
}

.section .title-ruby {
  font-size: 15px;
  font-family: var(--serif);
  line-height: 1.5;
  letter-spacing: 0.5em;
  margin-bottom: 5px;
}

.section .title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 18px;
  font-family: var(--serif);
  line-height: 1.5;
}

.section .action {
  border: 1px solid var(--text);
  color: var(--text);
  width: 220px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 26px auto 0 auto;
}

.section.-primary .action {
  border: 1px solid var(--light-gray);
  color: var(--light-gray);
}

.section.feeltheoldhome {
  background: url(img/feeltheoldhome-background@2x.jpg) center/cover;
  height: 666px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--light-gray);
}

.section.feeltheoldhome .title {
  margin-bottom: 32px;
}
