.project {
  color: var(--color-gray-700);
  overflow-x: hidden;
}
@media (min-width: 1930px) {
  .project .msi__container {
    max-width: 1600px;
  }
}

.common__section {
  text-align: center;
  padding: 45px 0;
}
@media (min-width: 996px) {
  .common__section {
    padding: 60px 0;
  }
}
.common-title {
  font-size: var(--title-xl);
  color: var(--color-gray-800);
  padding-bottom: 25px;
}
.common-title-topic {
  color: var(--color-gray-800);
  position: relative;
  font-size: 26px;
}
@media (min-width: 996px) {
  .common-title-topic {
    font-size: 36px;
    letter-spacing: 3px;
  }
}
.common-btn {
  position: relative;
  display: block;
  background: linear-gradient(145deg, #f5d8b5 0%, #f5d8b5 45%, #f2f1ef 50%, #95bcdf 60%, #95bcdf);
  padding: 3px;
  border-radius: 3px;
  color: var(--color-gray-500);
  font-weight: bold;
  overflow: hidden;
}
.common-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25%;
  width: 50%;
  height: 100%;
  background: linear-gradient(145deg, #f1bf83 0%, #f1bf83 45%, #78a8d7 60%, #78a8d7);
  border-radius: 3px;
  opacity: 0;
  transition: 0.5s all ease-in-out;
  transform: rotate(0px);
}
.common-btn span {
  position: relative;
  z-index: 2;
  display: block;
  border-radius: 3px;
  background: #fff;
  padding: 10px;
}
.common-btn:hover::before {
  width: 100%;
  left: 0;
  opacity: 1;
  transform: rotate(180deg);
}
.common-note {
  color: #999;
  font-size: 14px;
  line-height: 1.4;
}
.common-note a {
  color: #999;
  text-decoration: underline;
}
.common-note a:hover {
  text-decoration: none;
}
.common-note p {
  padding: 5px 0 0 !important;
  margin: 0;
}

.kv {
  position: relative;
}
.kv img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.kv-bg {
  position: relative;
  z-index: 0;
}
.kv-img {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0;
  animation: 1s kvimg forwards;
}
.kv-pd {
  position: absolute;
  width: 25%;
  top: 45%;
  left: 22%;
  z-index: 2;
  opacity: 0;
  animation: 1s kvpd forwards 0.4s;
}
.kv-pd img {
  animation: 2s kvpd-float infinite 1s ease-in-out;
}
.kv-logo {
  position: absolute;
  z-index: 3;
  top: 10%;
  left: 0;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(-30px);
}
.kv-logo img {
  width: 50%;
  margin: 0 auto;
  max-width: 400px;
}
.kv-title {
  position: absolute;
  z-index: 3;
  top: 25%;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 0 25px;
  color: #fff;
  font-size: calc(var(--title-xl) * 1.2);
  text-shadow: #333 0 0 20px;
  line-height: 1.2;
}
.kv-title b {
  width: 80%;
  margin: 0 auto;
  max-width: 1000px;
  display: inline-block;
}
.kv-title b span {
  display: block;
}
.kv-title .char-animated {
  opacity: 0;
  display: inline-block;
  position: relative;
}

@keyframes kvimg {
  0% {
    opacity: 0;
    mask-image: linear-gradient(to left, white, white);
    mask-size: 0% 100%;
    mask-repeat: no-repeat;
    mask-position: 100% 50%;
  }
  99% {
    opacity: 1;
    mask-image: linear-gradient(to left, white, white);
    mask-size: 105% 100%;
    mask-repeat: no-repeat;
    mask-position: 100% 50%;
  }
  100% {
    opacity: 1;
    mask-image: none;
  }
}
@keyframes kvpd {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes kvpd-float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
}
.intro__item {
  margin-top: 15px;
}
.intro__item img {
  border-radius: 10px;
}
@media (min-width: 996px) {
  .intro__item {
    text-align: left;
    flex: 1;
    margin-right: 18px;
  }
  .intro__item:last-child {
    margin-right: 0;
  }
}
.intro__item h3 {
  font-size: 22px;
  padding: 15px 0;
  letter-spacing: 1px;
  line-height: 1.6;
}
.intro__item p {
  line-height: 1.6;
  font-size: 18px;
}
@media (min-width: 996px) {
  .intro__box {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
  }
}

.feature {
  position: relative;
  background: url("../images/feature-bg.jpg") top center no-repeat ;
  background-size: cover;
}
.feature::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0));
}
.feature::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: url("../images/feature-bg-2.jpg") top center no-repeat ;
  background-size: cover;
}
.feature__tab {
  position: relative;
  z-index: 2;
  padding: 25px 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.feature__tab::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 5px;
  left: 5%;
  bottom: 0;
  background: linear-gradient(to right, rgb(255, 255, 255), 0%, rgba(255, 255, 255, 0) 10%, rgb(255, 255, 255) 20%, rgb(255, 255, 255) 80%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0));
}
.feature__tab .swiper-wrapper {
  align-items: stretch;
}
.feature__tab .swiper-slide {
  color: var(--color-gray-800);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  padding: 15px;
  font-size: 16px;
}
@media (min-width: 996px) {
  .feature__tab .swiper-slide {
    padding: 10px;
    font-size: 20px;
  }
}
.feature__tab .swiper-slide span {
  display: block;
}
.feature__tab .swiper-slide-thumb-active {
  background: linear-gradient(to right, #f5d8b5, #95bcdf);
  border-radius: 10px;
  color: #fff;
}
@media (min-width: 996px) {
  .feature__content {
    padding: 50px 30px;
  }
}
@media (min-width: 1930px) {
  .feature__content {
    max-width: 2400px;
    margin: 0 auto;
  }
}
.feature__content__inner {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}
@media (min-width: 996px) {
  .feature__content__inner {
    padding: 50px 0;
  }
}
@media (min-width: 996px) {
  .feature__content .swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.feature__content .swiper-slide {
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0.7;
  transform: scale(0.7);
}
.feature__content .swiper-slide-active {
  width: 80% !important;
  opacity: 1;
  transform: scale(1);
  align-self: flex-start;
}
@media (min-width: 996px) {
  .feature__content .swiper-slide-active {
    width: 66% !important;
  }
}
.feature__content .swiper-slide-active img {
  width: 65%;
  margin: 0 auto;
  max-width: auto;
}
.feature__content .swiper-slide-next, .feature__content .swiper-slide-prev {
  width: 10% !important;
  opacity: 0.3;
  transform: scale(0.97);
}
@media (min-width: 996px) {
  .feature__content .swiper-slide-next, .feature__content .swiper-slide-prev {
    width: 17% !important;
  }
}
.feature__content .swiper-slide-next::before, .feature__content .swiper-slide-prev::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 30%;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}
.feature figure {
  position: relative;
  display: block;
}
.feature figcaption {
  text-align: center;
  position: relative;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgb(255, 255, 255) 70%, #fff);
  opacity: 0;
  transform: translateY(50px);
  font-size: 17px;
  padding: 20px 0;
  transition: all 0.3s ease-out;
  height: 0;
}
@media (min-width: 996px) {
  .feature figcaption {
    text-align: left;
    position: absolute;
    padding: 60px 20px;
  }
}
.feature figcaption.show {
  opacity: 1;
  transform: translateY(0px);
  height: auto;
}
@media (min-width: 996px) {
  .feature figcaption.show {
    width: 80%;
    left: 10%;
    bottom: -100px;
  }
}
.feature figcaption h3 {
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-gray-800);
  padding-bottom: 20px;
  text-shadow: #fff 1px 1px 2px;
}
@media (min-width: 996px) {
  .feature figcaption h3 {
    font-size: 30px;
  }
}
.feature figcaption h3 span {
  display: block;
}
.feature figcaption p {
  padding-bottom: 10px;
  line-height: 1.6;
}
.feature figcaption .note {
  color: #999;
  font-size: 14px;
  line-height: 1.4;
}
.feature figcaption .note a {
  color: #999;
  text-decoration: underline;
}
.feature figcaption .note a:hover {
  text-decoration: none;
}
.feature-button {
  position: absolute;
  z-index: 5;
  top: 5%;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  color: #73a7d7;
  text-shadow: #fff 1px 1px 2px;
}
@media (min-width: 996px) {
  .feature-button {
    font-size: 70px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.feature-button:hover {
  color: #f1bf84;
}
.feature-button-next {
  right: 0px;
}
.feature-button-next::before {
  content: "\ea09";
  font-family: "msi-icons";
}
@media (min-width: 996px) {
  .feature-button-next {
    right: 8%;
  }
}
.feature-button-prev {
  left: 0px;
}
.feature-button-prev::before {
  content: "\ea10";
  font-family: "msi-icons";
}
@media (min-width: 996px) {
  .feature-button-prev {
    left: 8%;
  }
}

@keyframes kvbg {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.info img {
  border-radius: 10px;
}
.info__box {
  margin-top: 25px;
  padding: 25px 0;
}
.info__box.bg {
  background: linear-gradient(15deg, #d9e8ff, #f3dfd0);
}
.info h3 {
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-gray-800);
  padding-top: 20px;
  padding-bottom: 20px;
  text-shadow: #fff 1px 1px 2px;
}
@media (min-width: 996px) {
  .info h3 {
    font-size: 30px;
  }
}
@media (min-width: 996px) {
  .info__box {
    padding: 80px 0;
    margin-top: 0;
  }
  .info .info__box:first-child {
    padding-top: 0;
  }
  .info figure {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .info-img {
    flex: 0 0 50%;
  }
  .info figcaption {
    flex: 0 0 45%;
    text-align: left;
  }
  .info p {
    font-size: 18px;
    line-height: 1.6;
  }
  .info .bg figcaption {
    order: 1;
  }
  .info .bg .info-img {
    order: 2;
  }
}

.prod__tab {
  display: flex;
  border-bottom: #cacaca 1px solid;
  font-size: 18px;
  font-weight: bold;
}
.prod__tab li {
  position: relative;
  flex: 1;
  text-align: center;
  padding: 15px 10px;
  font-weight: bold;
  cursor: pointer;
}
.prod__tab li::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 5px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: linear-gradient(145deg, #f5d8b5 0%, #f5d8b5 20%, #f2f1ef 50%, #95bcdf 70%, #95bcdf);
  transition: 0.5s all;
}
@media (min-width: 996px) {
  .prod__tab li {
    font-size: 24px;
  }
}
.prod__tab li.active::after, .prod__tab li:hover::after {
  width: 100%;
}
.prod__box {
  position: relative;
  padding: 35px 0 55px;
}
@media (min-width: 996px) {
  .prod__box {
    padding-bottom: 80px;
  }
}
.prod .swiper-container {
  overflow: hidden;
}
.prod .swiper-container.swiper-watch-overflow .swiper-wrapper {
  justify-content: center;
}
.prod__pdBox {
  display: none;
}
.prod__pdBox.active {
  display: block;
}
.prod__notice {
  padding: 25px;
  background: linear-gradient(1deg, #d9e8ff 0%, #d9e8ff 50%, #f3dfd0);
  line-height: 1.6;
  font-size: 16px;
  text-align: left;
}
.prod__notice a {
  color: var(--color-gray-800);
  text-decoration: underline;
}
.prod__notice a:hover {
  text-decoration: none;
}

.pd-button {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  color: #f1bf84;
}
@media (min-width: 996px) {
  .pd-button {
    font-size: 70px;
  }
}
.pd-button:hover {
  color: #73a7d7;
}
.pd-button-next {
  right: -30px;
}
.pd-button-next::before {
  content: "\ea09";
  font-family: "msi-icons";
}
@media (min-width: 996px) {
  .pd-button-next {
    right: -70px;
  }
}
.pd-button-prev {
  left: -30px;
}
.pd-button-prev::before {
  content: "\ea10";
  font-family: "msi-icons";
}
@media (min-width: 996px) {
  .pd-button-prev {
    left: -70px;
  }
}

.pdCard {
  background: linear-gradient(45deg, #ededed, #fbfbfb, #eeeeee);
  padding: 25px;
}
.pdCard-img {
  padding-bottom: 25px;
}
.pdCard h3 {
  font-size: 18px;
  font-weight: normal;
}
.pdCard .note {
  font-size: 18px;
  height: 25px;
}
.pdCard a {
  position: relative;
  display: block;
  width: 80%;
  margin: 20px auto 0;
  background: linear-gradient(145deg, #f5d8b5 0%, #f5d8b5 45%, #f2f1ef 50%, #95bcdf 60%, #95bcdf);
  padding: 3px;
  border-radius: 3px;
  color: var(--color-gray-500);
  font-weight: bold;
  overflow: hidden;
}
.pdCard a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25%;
  width: 50%;
  height: 100%;
  background: linear-gradient(145deg, #f1bf83 0%, #f1bf83 45%, #78a8d7 60%, #78a8d7);
  border-radius: 3px;
  opacity: 0;
  transition: 0.5s all ease-in-out;
  transform: rotate(0px);
}
.pdCard a span {
  position: relative;
  z-index: 2;
  display: block;
  border-radius: 3px;
  background: #fff;
  padding: 10px;
}
.pdCard a:hover::before {
  width: 100%;
  left: 0;
  opacity: 1;
  transform: rotate(180deg);
}

.aipc {
  padding-bottom: 0;
}
.aipc img {
  width: 100%;
  vertical-align: bottom;
}
.aipc-img {
  margin-top: 30px;
}
.aipc a {
  display: inline-block;
  min-width: 200px;
  margin: 15px auto 25px;
}

@keyframes topic {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
