.l-tempo-block {
  padding: 5rem 2.25rem;
  max-width: 48rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-tempo-block {
    padding: 7.5rem 2.25rem;
  }
}

.p-tempo-block--image {
  max-width: 1440px;
}
@media screen and (min-width: 768px) {
  .p-tempo-block--image {
    display: grid;
    grid-template-columns: 42% 1fr;
    align-items: center;
    gap: 5rem;
    padding-inline: 6.25rem;
  }
}

.p-tempo-block__content {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-tempo-block__content {
    margin-top: 0;
  }
}

.p-tempo-block__title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-tempo-block__title {
    font-size: 1.75rem;
  }
}

.p-tempo-block__text {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-tempo-block__text {
    font-size: 1rem;
    line-height: 2.2;
  }
}

.p-tempo-block__lead {
  font-family: "Shippori Mincho", serif;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
  color: #F36A1B;
}
@media screen and (min-width: 768px) {
  .p-tempo-block__lead {
    font-size: 1.75rem;
  }
}

.p-tempo-block__list {
  margin-top: 1.25rem;
  display: grid;
  gap: 1rem;
}

.p-tempo-block__list-item {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.9;
}
.p-tempo-block__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.5rem;
  height: 0.0625rem;
  background: #F36A1B;
}
@media screen and (min-width: 768px) {
  .p-tempo-block__list-item {
    font-size: 1rem;
    line-height: 2.2;
  }
}

.p-tempo-mv__inner {
  text-align: center;
  padding: 3rem 2.25rem;
}

.p-tempo-mv__label {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: #F36A1B;
}

.p-tempo-mv__title {
  margin-top: 0.75rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.75rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-tempo-mv__title {
    font-size: 2.75rem;
  }
}

.p-tempo-block--image .p-tempo-block__image {
  animation: none;
}
.p-tempo-block--image .p-tempo-block__image .p-tempo-slide {
  animation: tempo-slide-fade-3 18s infinite;
}
.p-tempo-block--image .p-tempo-block__image .p-tempo-slide:nth-child(1) { position: relative; animation-delay: 0s; }
.p-tempo-block--image .p-tempo-block__image .p-tempo-slide:nth-child(2) { animation-delay: 6s; }
.p-tempo-block--image .p-tempo-block__image .p-tempo-slide:nth-child(3) { animation-delay: 12s; }

@keyframes tempo-slide-fade-3 {
  0%     { opacity: 0; }
  2.8%   { opacity: 1; }
  30.5%  { opacity: 1; }
  33.3%  { opacity: 0; }
  100%   { opacity: 0; }
}
@media screen and (min-width: 768px) {
  .p-tempo-block--reverse {
    grid-template-columns: 1fr 42%;
  }
  .p-tempo-block--reverse .p-tempo-block__image {
    order: 2;
  }
  .p-tempo-block--reverse .p-tempo-block__content {
    order: 1;
  }
}