@font-face {
  font-family: "akrobat";
  src: url('../fonts/Akrobat-ExtraBold.woff');
}
.english {
  font-family: "akrobat", sans-serif;
}
.hide {
  display: none;
}
@media (min-width: 640px) {
  .sp-only {
    display: none;
  }
}
@media (max-width: 639px) {
  .pc-only {
    display: none;
  }
}
.clip-animate {
  opacity: 0;
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
  -webkit-transition: -webkit-clip-path 1s cubic-bezier(0.79, 0.17, 0.15, 0.96);
  transition: -webkit-clip-path 1s cubic-bezier(0.79, 0.17, 0.15, 0.96);
  transition: clip-path 1s cubic-bezier(0.79, 0.17, 0.15, 0.96);
  transition: clip-path 1s cubic-bezier(0.79, 0.17, 0.15, 0.96), -webkit-clip-path 1s cubic-bezier(0.79, 0.17, 0.15, 0.96);
}
.clip-animate2 {
  opacity: 0;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  -webkit-transition: -webkit-clip-path 1s cubic-bezier(0.79, 0.17, 0.15, 0.96);
  transition: -webkit-clip-path 1s cubic-bezier(0.79, 0.17, 0.15, 0.96);
  transition: clip-path 1s cubic-bezier(0.79, 0.17, 0.15, 0.96);
  transition: clip-path 1s cubic-bezier(0.79, 0.17, 0.15, 0.96), -webkit-clip-path 1s cubic-bezier(0.79, 0.17, 0.15, 0.96);
}
.clip-animate3 {
  opacity: 0;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  -webkit-transition: -webkit-clip-path 1s cubic-bezier(0.79, 0.17, 0.15, 0.96);
  transition: -webkit-clip-path 1s cubic-bezier(0.79, 0.17, 0.15, 0.96);
  transition: clip-path 1s cubic-bezier(0.79, 0.17, 0.15, 0.96);
  transition: clip-path 1s cubic-bezier(0.79, 0.17, 0.15, 0.96), -webkit-clip-path 1s cubic-bezier(0.79, 0.17, 0.15, 0.96);
}
.clip-active {
  opacity: 1 !important;
  -webkit-clip-path: inset(0) !important;
  clip-path: inset(0) !important;
}
.performance-page .sub-intro-title {
  margin: 6rem 0 4rem 3.6rem;
  color: #f7ca03;
  position: relative;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .performance-page .sub-intro-title {
    margin: 3rem 0 4rem 3.6rem;
  }
}
.performance-page .sub-intro-title::before {
  content: "";
  position: absolute;
  top: 46%;
  left: -3.6rem;
  height: 1px;
  width: 2.4rem;
  background-color: #f7ce17;
}
.performance-page .more-btn {
  text-align: center;
  font-family: "akrobat", sans-serif;
  width: fit-content;
  padding: 1rem 1rem 0.3rem 15rem;
  margin: 5rem 0;
  color: #555;
  transition: all 0.3s ease-in-out;
  margin-left: auto;
  cursor: pointer;
  position: relative;
  font-size: 2.8rem;
  line-height: 3rem;
}
@media screen and (max-width: 768px) {
  .performance-page .more-btn {
    font-size: 2rem;
    line-height: 2.4rem;
    margin: 2rem 0 5rem 0;
  }
}
.performance-page .more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #f7ca03;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.performance-page .more-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 12rem;
  height: 1px;
  background-color: #333;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
.performance-page .more-btn:hover {
  color: white;
}
.performance-page .more-btn:hover::before {
  width: 100%;
}
.performance-page .more-btn:hover::after {
  background-color: white;
}
.performance-page .performance-all-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
  row-gap: 4rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .performance-page .performance-all-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.performance-page .performance-all-list .performance-item {
  height: 60rem;
  position: relative;
  cursor: pointer;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.5s ease-in-out;
}
.performance-page .performance-all-list .performance-item:hover {
  background-size: auto 110%;
  opacity: 0.7;
}
.performance-page .performance-all-list .performance-item .title {
  background-color: #f8d226de;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 2rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 2.8rem;
}
.performance-page .performance-content {
  width: 100%;
  position: relative;
}
.performance-page .performance-content .button-prev,
.performance-page .performance-content .button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  width: 20px;
  height: 20px;
  border-left: 4px solid #333;
  border-bottom: 4px solid #333;
  transition: all 0.3s ease-in-out;
}
.performance-page .performance-content .button-prev::hover,
.performance-page .performance-content .button-next::hover {
  opacity: 0.8;
}
.performance-page .performance-content .button-prev {
  transform: translateY(-50%) rotate(45deg);
  left: -3rem;
}
.performance-page .performance-content .button-next {
  right: -3rem;
  transform: translateY(-50%) rotate(-135deg);
}
.performance-page .performance-content .swiper {
  width: 100%;
  height: 60rem;
}
.performance-page .performance-content .swiper .performance-item {
  height: 60rem;
  position: relative;
  cursor: pointer;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.5s ease-in-out;
}
.performance-page .performance-content .swiper .performance-item:hover {
  background-size: auto 110%;
  opacity: 0.7;
}
.performance-page .performance-content .swiper .performance-item .title {
  background-color: #f8d226de;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 2rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 2.8rem;
}
.performance-page .performance-content .example-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .performance-page .performance-content .example-item {
    flex-direction: column;
  }
}
.performance-page .performance-content .example-item .item-image {
  min-width: 30rem;
  width: 30rem;
  height: 20rem;
  object-fit: cover;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
}
.performance-page .performance-content .example-item .item-image img {
  width: 100%;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
  object-position: center;
}
.performance-page .performance-content .example-item .item-image:hover {
  opacity: 0.7;
}
.performance-page .performance-content .example-item .item-image:hover img {
  width: 105%;
}
.performance-page .performance-content .example-item .item-info .title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.performance-page .performance-content .example-item .item-info p {
  font-size: 1.5rem;
  line-height: 2.8rem;
}
.performance-page .center-more-btn {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .performance-page .center-more-btn {
    padding-bottom: 0;
  }
}
.performance-page .tips-title {
  color: #333;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  padding: 8rem 0 0 0;
}
@media screen and (max-width: 768px) {
  .performance-page .tips-title {
    font-size: 2rem;
    padding-top: 5rem;
  }
}
.performance-page .more-intro {
  margin-bottom: 4rem;
}
.performance-page .more-intro .more-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  margin: 6rem 0 1rem 0;
}
@media screen and (max-width: 768px) {
  .performance-page .more-intro .more-title {
    font-size: 1.6rem;
  }
}
.performance-page .more-intro p {
  background-color: #f2f2f2;
  font-size: 1.6rem;
  line-height: 3.2rem;
  padding: 4rem;
}
@media screen and (max-width: 768px) {
  .performance-page .more-intro p {
    font-size: 1.4rem;
    line-height: 2rem;
    padding: 2rem;
  }
}
.performance-page .translate-content a {
  text-decoration: underline;
}
.performance-page .example-btn {
  width: 24rem;
  align-items: center;
  display: flex;
  justify-content: center;
  cursor: pointer;
  margin: 6rem 0 8rem 0;
  text-align: center;
  font-size: 1.8rem;
  background-color: #333;
  color: white;
  height: 6.6rem;
  border: 1px solid #333;
  transition: all 0.3s ease-in-out;
}
.performance-page .example-btn:hover {
  background-color: white;
  color: #333;
  border: 1px solid #333;
}
.performance-page .bottom-more-btn {
  margin: 4rem 0 6rem 0;
  display: flex;
  justify-content: flex-end;
}
/*# sourceMappingURL=./performance.css.map */