@keyframes slide-animation-01 {
  0%      { opacity: 1; }
  20%     { opacity: 1; }
  33.33%  { opacity: 0; }
  86.67%  { opacity: 0; }
  100%    { opacity: 1; }
}
@keyframes slide-animation-02 {
  0%      { opacity: 0; }
  20%     { opacity: 0; }
  33.33%  { opacity: 1; }
  53.33%  { opacity: 1; }
  66.67%  { opacity: 0; }
  100%    { opacity: 0; }
}
@keyframes slide-animation-03 {
  0%      { opacity: 0; }
  53.33%  { opacity: 0; }
  66.67%  { opacity: 1; }
  86.67%  { opacity: 1; }
  100%    { opacity: 0; }
}

.fv-custom .picture {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--content-spacing);
  right: var(--content-spacing);
  opacity: 0;
  @media (max-width: 1244px) {
    left: 0;
    right: 0;
  }
}

.fv-custom .picture.picture01 {
  opacity: 1;
  animation: slide-animation-01 15s infinite ease-in-out;
}

.fv-custom .picture.picture02 {
  animation: slide-animation-02 15s infinite ease-in-out;
}

.fv-custom .picture.picture03 {
  animation: slide-animation-03 15s infinite ease-in-out;
}

.fv-custom {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: center;
    height: 500px;
    padding-inline: var(--content-spacing);
    @media (max-width: 1244px) {
      padding-inline: 0;
      height: 476px;
    }
}
.fv-custom::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--content-spacing);
    right: var(--content-spacing);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    pointer-events: none;
    z-index: 15;
    @media (max-width: 1244px) {
      left: 0;
      right: 0;
    }
}
.fv-image {
    width: 100%;
    height: 100%;
    max-width: 1508px;
    height: 500px;
    @media (max-width: 1244px) {
      height: 476px;
      max-width: 1224px;
    }
}
.fv-custom .picture .img {
    width: 100%;
    height: 100%;
    max-width: 1508px;
    height: 500px;
    @media (max-width: 1244px) {
      height: 476px;
      max-width: 1224px;
    }
    object-fit: cover;
    display: block;
}
.fv-text-wrapper {
    position: absolute;
    z-index: 20;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 4px 16px;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    background: #FFF;
    width: max-content;
    max-width: 90%;
    @media (max-width: 768px) {
      padding: 4px 8px;
    }
}
.fv-main-custom {
  color: #5A286D;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 152.5%; /* 73.2px */
  letter-spacing: 5.28px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: auto;
  @media (max-width: 768px) {
    font-size: 26px;
    line-height: 171.5%;
    letter-spacing: -1.04px;
  }
}
.fv-text-wrapper-sub-container {
  color: #5A286D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 152.5%;
  letter-spacing: 1.2px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: auto;
  @media (max-width: 768px) {
    font-size: 16px;
    line-height: 171.5%;
    letter-spacing: -0.64px;
  }
}