@charset "UTF-8";
/*
2026.05.19
2605_アップリフォーム_TOPページFV改修
*/
.topView {
  position: relative;
  padding-top: 150px;
}
@media screen and (max-width: 769px) {
  .topView {
    padding-top: 50px;
  }
}
.topView_title {
  position: absolute;
  z-index: 2;
  bottom: 70px;
  left: 50%;
  translate: -50% 0;
  padding: 20px 20px 18px;
  margin: 0;
  background: #ffaa00;
  color: #fff;
  font-size: 33px;
  white-space: nowrap;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
@media screen and (max-width: 769px) {
  .topView_title {
    bottom: 50px;
    left: 0;
    translate: 0 0;
    padding: 8px 15px;
    font-size: 18px;
    line-height: 1.2;
  }
}
.topView_title::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffaa00;
}
@media screen and (min-width: 768px) {
  .topView_title .pc_none {
    display: none;
  }
}
.topView.is-active .topView_title {
  animation: title01View 0.8s 1s ease forwards;
}
.topView.is-active .topView_title::before {
  animation: title02View 0.6s 1.6s ease forwards;
}
.topView_contents {
  position: relative;
  padding-bottom: 50px;
}
.topView_contents-track {
  opacity: 0;
}
.topView_contents-item {
  width: 100%;
  height: calc(100svh - 210px);
  transition: none !important;
}
.topView_contents-item.is-active {
  opacity: 1 !important;
}
.topView_contents-item a {
  display: block;
  height: 100%;
}
.topView_contents-item a img {
  transition: scale 0.8s ease;
}
.topView_contents-item a:hover img {
  scale: 1.04;
}
.topView_contents-item picture,
.topView_contents-item img {
  aspect-ratio: 1366/648;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.topView_contents-item.is-active {
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  animation: itemView 0.4s ease forwards;
}
.topView.is-active .topView_contents-track {
  animation: trackView 1s ease forwards;
}
.topView_mask {
  position: absolute;
  left: 0;
  width: 100%;
  background-color: #ffaa00;
}
.topView_mask.is-mask01 {
  top: 0;
  bottom: 50px;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  opacity: 0;
}
.topView_mask.is-mask02 {
  bottom: 0;
  height: 50px;
}
.topView.is-active .topView_mask.is-mask01 {
  animation: mask01View 1s ease forwards;
}
.topView.is-active .topView_mask.is-mask02 {
  animation: mask02View 1s 0.6s ease forwards;
}
.topView_arrows {
  position: absolute;
  bottom: 0;
  right: 95px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 20px;
}
@media screen and (max-width: 769px) {
  .topView_arrows {
    right: 30px;
  }
}
.topView_arrow {
  cursor: pointer;
  flex: 0 0 35px;
  opacity: 0;
  translate: 0 50%;
  transition: opacity 0.6s ease, translate 0.6s ease;
  transition-delay: 1.6s;
}
.topView_arrow img {
  width: 100%;
}
.topView.is-active .topView_arrow {
  opacity: 1;
  translate: 0 0;
}

@keyframes trackView {
  0% {
    opacity: 0;
  }
  48% {
    opacity: 0;
  }
  52% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes itemView {
  0% {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
@keyframes title01View {
  0% {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
@keyframes title02View {
  0% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  }
}
@keyframes mask01View {
  0% {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  60% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  90% {
    opacity: 1;
  }
  100% {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
    opacity: 0;
  }
}
@keyframes mask02View {
  0% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1;
  }
  40% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  60% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  90% {
    opacity: 1;
  }
  100% {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
    opacity: 0;
  }
}/*# sourceMappingURL=add.css.map */