@charset "utf-8";
.products-top-text {
  text-align: center;
  & h2 {
    font-size: clamp(24px, -4.444px + 3.704vw, 40px);
    font-weight: 800;
  }
  & p {
    width: min(100%,820px);
    padding: 0 var(--side-padding);
    margin: 80px auto 0;
    font-size: 18px;
    font-weight: 500;
  }
}
@media screen and (width <= 768px) {
  .products-top-text {
    & h2 {
      font-size: clamp(24px, 18.275px + 1.527vw, 30px);
    }
    & p {
      margin-top: 6.51vw;
      font-size: clamp(16px, 14.092px + 0.509vw, 18px);
      text-align: left;
    }
  }
}

.products-top-img {
  width: min(100%, 1240px);
  padding: 0 var(--side-padding);
  margin: 100px auto 0;
  & img {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--animation-time) ease-out;
  }
  &.is-view img {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (width <= 768px) {
  .products-top-img {
    margin-top: 6.51vw;
  }
}

.products {
  margin: 200px 0;
}
@media screen and (width <= 768px) {
  .products {
    margin: 26.04vw 0;
  }
}

.products-title {
  color: var(--color-main);
}

.products-item {
  margin-top: 200px;
  &._01 {
    margin-top: 100px;
  }
}
@media screen and (width <= 768px) {
  .products-item {
  margin-top: 26.04vw;
  &._01 {
    margin-top: 13.02vw;
  }
}
}

.products-item-inner {
  display: flex;
  flex-flow: row-reverse;
  gap: min(5.64vw, 70px);
  width: min(100%, 1240px);
  padding: 0 var(--side-padding);
  margin: 0 auto;
  ._left & {
    flex-flow: row;
  }
}
@media screen and (width <= 768px) {
  .products-item-inner {
    flex-flow: column;
    gap: 6.51vw;
    ._left & {
      flex-flow: column;
    }
  }
}

.products-img {
  width: 62%;
  aspect-ratio: 75 / 51;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (width <= 768px) {
  .products-img {
    width: 100%;
  }
}

.products-text {
  display: flex;
  gap: 60px;
  flex-flow: column;
  justify-content: flex-start;
  width: calc(38% - min(5.64vw, 70px));
  & > h3 {
    font-size: clamp(24px, -4.444px + 3.704vw, 40px);
    font-weight: 700;
    color: var(--color-white);
    & span {
      display: block;
      padding: 0 .4em;
      background-color: var(--color-main);
      & + span {
        margin-top: .1em;
      }
    }
  }
  & > p {
    font-size: 18px;
    font-weight: 500;
  }
}
@media screen and (width <= 768px) {
  .products-text {
    gap: 5.20vw;
    width: 100%;
    & > h3 {
      font-size: clamp(24px, 18.275px + 1.527vw, 30px);
    }
    & p {
      font-size: clamp(16px, 14.092px + 0.509vw, 18px);
    }
  }
}

.products-item._03 {
  .products-text {
    gap: 30px;
    justify-content: center;
    & > h3 {
      font-size: clamp(16px, -3.556px + 2.546vw, 27px);
    }
  }
}


/***** dies *****/
.dies-list {
  margin: 180px 0;
}
@media screen and (width <= 768px) {
  .dies-list {
    margin: 13.02vw 0;
  }
}

.dies-item {
  margin-top: 120px;
  &:first-of-type {
    margin-top: 0;
  }
}

.dies-item-inner {
  & h3 {
    font-size: clamp(18px, -3.333px + 2.778vw, 30px);
    font-weight: 900;
    color: var(--color-main);
    text-align: center;
  }
}
@media screen and (width <= 768px) {
  .dies-item-inner {
    & h3 {
      font-size: clamp(22px, 18.183px + 1.018vw, 26px);
    }
  }
}

.dies-movie {
  margin-top: 60px;
  width: 100%;
  background: url('/assets/img/products/bk_dies.webp');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (width <= 768px) {
  .dies-movie {
    margin-top: 5.2vw;
  }
}

.dies-movie-inner {
  position: relative;
  width: 65%;
  aspect-ratio: 560 / 315;
  margin: 0 auto;
  & iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 560 / 315;
    z-index: 1;
  }
  & img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    z-index: 2;
  }
}
@media screen and (width <= 768px) {
  .dies-movie-inner {
    width: 80%;
  }
}

.dies-btn {
  margin-top: 60px;
  & .cmn-more {
    & a {
      margin: 0 auto;
    }
  }
}
@media screen and (width <= 768px) {
  .dies-btn {
    margin-top: 5.20vw;
  }
}

