/* ************************************************* */
/* fadein */
/* ************************************************* */
.block {
  opacity: 0;
  transition: all 2s;
}

.fadeIn {
  opacity: 1;
}

/* ************************************************* */
/* fadeOut */
/* ************************************************* */
@keyframes fadeOut {
  0% {
      opacity: 1;
  }

  100% {
      opacity: 0;
  }
}

.fadeout {
  animation: fadeOut 4s;
}

/* ************************************************* */
/* slick */
/* ************************************************* */
.slick-slide {
  height: auto!important;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}

/* ************************************************* */
/* main */
/* ************************************************* */
.main {
}

@media (max-width: 768px) {
  .main {
      margin-top: 12px;
  }
}

/* ************************************************* */
/* responsive */
/* ************************************************* */
.main .sp {
  display: none;
}

@media (max-width: 768px) {
  .main .sp {
      display: block;
  }

  .main .pc {
      display: none;
  }
}

/* ************************************************* */
/* mv */
/* ************************************************* */
.container {
  width: 100%;
}

.image-section {
  background-color: #fbf6f6;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}

@media (max-width: 1080px) {
  .image-section {
      height: 76vh;
  }
}

.background {
  background-color: #fbf6f6;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(10px);
  transition: filter 0.5s ease, transform 0.5s ease, opacity 0.5s ease;
  z-index: 1;
}

.svg-wrapper {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
}

@media (max-width: 1080px) {
  .svg-wrapper {
      top: 35%;
  }
}

#svg1, #svg2 {
  position: absolute;
  height: 100px;
  transition: transform 0.5s ease-out;
}

#svg1 {
  width: auto;
  left: 10vw;
  top: -3vh;
}

#svg2 {
  width: auto;
  right: 10vw;
  top: 33vh;
}

.content {
  padding: 20px;
  background: #f4f4f4;
  height: 200vh;
}

@media screen and (max-width: 768px) {
.svg-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5vh;
  }

  #svg1, #svg2 {
      position: static;
      margin: 0 auto;
      top: 100px;
  }

  #svg1 {
      margin-top: 22vh;
      width: 94vw;
  }

  #svg2 {
      margin-top: -2px;
      /* bottom: 1px; */
      margin-bottom: auto;
      width: 73vw;
      /* top: 14vw; */
  }
}

/* ************************************************* */
/* introduction1 */
/* ************************************************* */
.introduction1__wrap {
  display: flex;
  width: 100%;
  top: 0;
  height: auto;
  background-color: #fbf6f6;
}

.introduction1 {
  max-width: 1260px;
  margin: 80px auto 150px;
  background-color: #fbf6f6;
  padding: 100px 0;
}

@media (max-width: 1080px) {
  .introduction1 {
      width: 100%;
      margin: 0px auto 50px;
      padding: 50px 0 80px 0;
  }
}

.introduction1__inner {
  background-color: #fbf6f6;
  gap: 60px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

@media (max-width: 1080px) {
  .introduction1__inner {
      display: block;
      width: 100%;
      gap: 0px;
  }
}

.introduction1__img {
  img {
      width: 600px;
      display: block;
  }
}

@media (max-width: 1080px) {
  .introduction1__img {
      img {
          width: 90vw;
          display: block;
          margin: 0 auto;
      }
  }
}

/* ************************************************* */
/* slick */
/* ************************************************* */
.box {
  background-color: #fbf6f6;
  width: 100%;
  overflow: hidden;
}

.box .boxInner {
  width: inherit;
  height: inherit;
  opacity: 0;
  background-color: #fbf6f6;
}

@keyframes play {
  from {
      transform: translateX(-100%);
  }

  to {
      transform: translateX(0);
  }
}

@keyframes maskOut {
  from {
      transform: translateX(0);
  }

  to {
      transform: translateX(100%);
  }
}

.isPlay {
  animation-name: play;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  position: relative;
  opacity: 1 !important;
}

.isPlay:before {
  animation-name: maskOut;
  animation-duration: .5s;
  animation-delay: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.5;
}

/* ************************************************* */
.introduction1__text {
  width: 100%;
}

@media (max-width: 1080px) {
  .introduction1__text {
      margin-top: 60px;
  }
}

.introduction1__text p {
  font-weight: 350;
  text-align: center;
  line-height: 2;
  padding-bottom: 2em;
  letter-spacing: 2px;
  font-size: 16px;
}

@media (max-width: 1080px) {
  .introduction1__text p {
      font-size: 12px;
  }
}

.introduction1__text p.small {
  font-size: 80%;
}

/* ************************************************* */
/* kv02 */
/* ************************************************* */
.kv02__img {
  background-color: #fbf6f6;
  max-width: 1920px;
  margin: 0 auto;
}

.kv02__img img {
  object-fit: cover;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .kv02__img img {
      height: auto;
  }
}

/* ************************************************* */
/* product-lineup */
/* ************************************************* */
.column {
  display: flex;
  flex-direction: column;
}

.product-lineup {
  padding-bottom: 25vh;
}

@media (max-width: 768px) {
  .product-lineup {
      background-color: #fff;
    padding-bottom: 20vh;
  }
}

.title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  line-height: 1.5;
  transition: opacity 1s ease;
  color: #b3aeae;
  font-size: 42px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 54px;
  letter-spacing: 20px;
  background-color: #fbf6f6;
}

@media (max-width: 768px) {
  .title {
      font-size: 24px;
      background-color: #fbf6f6;
      letter-spacing: 9px;
      gap: 24px;
      padding-bottom: 40px;
  }
}

.title.-visible {
  color: #3c3c3c;
  margin-bottom: 0;
}

.word {
  position: relative;
  overflow: hidden;
  display: inline-block;
  height: 1.2em;
  color: transparent;
}

.word:before, .word:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  backface-visibility: hidden; /* Safari対策 */
  will-change: transform; /* パフォーマンス向上 */
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.word:before {
  color: rgba(0, 0, 0, 0.5);
  transform: translateY(0);
}

.word:after {
  color: black;
  transform: translateY(100%);
}

.title.-visible .word:before {
  transform: translateY(-100%);
}

.title.-visible .word:after {
  transform: translateY(0);
}

.word:nth-child(1):before, .word:nth-child(1):after {
  transition-delay: 0s;
}

.word:nth-child(2):before, .word:nth-child(2):after {
  transition-delay: 0.3s;
}

.product-lineup__link {
  margin-top: 100px;
  text-align: center;
}

/* ----------------------- */
.product-lineup__link a {
  background: #fff;
  border: 1px solid #5e318f;
  border-radius: 35px;
  position: relative;
  display: inline-block;
  padding: 18px 47px 18px 45px;
  color: #5e318f;
  transition: 0.3s ease-in-out;
  font-size: 16px;
  /* margin-right: 32px; */
}
.product-lineup__link a:hover {
  background: #5e318f;
  color: #fff;
}
.product-lineup__link a:after {
    content: '';
    width: 9px;
    height: 9px;
    border-top: 1px solid #5e318f;
    border-right: 1px solid #5e318f;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 48%;
    right: 34px;
    /* margin-left:20px; */
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.product-lineup__link a:hover:after {
    border-color: #FFF;
}
/* ----------------------- */

.slider {
  width: 80%;
  margin: 0 auto;
  background-color: #fff;
  padding-top: 54px;
  font-size: 90%;
}

.slider__contents {
  width: 100%;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.slider__contents img {
  margin: 0 auto;
  width: 80%;
  height: auto;
}

@media (max-width: 1080px) {
  .slider {
      padding-top: 40px;
  }

  .slider__contents {
      margin-left: 40px;
  }

  .slider__contents img {
      margin: 0 auto;
      width: 100%;
      height: auto;
  }
}

.slider__item-title {
  margin-top: 38px;
}

.slider__item-name {
  margin-top: 12px;
}

.slider__item-text {
  margin-top: 12px;
}

/* ************************************************* */
/* kv */
/* ************************************************* */
.prd-view {
  display: none;
  text-align: center;
}

@media (max-width: 1023.01px) {
  .prd-view {
      display: block;
  }

  .prd-view img {
      width: 100%;
  }
}

@media (min-width: 1023.02px) {
  .prd-kv {
      width: 100vw;
  }

  .prd-lead {
      font-size: 16px;
      line-height: 5.0;
      font-weight: 500;
  }
}

@media (max-width: 1023.01px) {
  .prd-lead {
      font-size: 12px;
      text-align: center;
  }
}

.sec4.scloll {
  margin-bottom: 15%;
}

.sec {
  display: block;
  padding: 0;
}

.sec__inner {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ************************************************* */
/* fw-embed-feed video */
/* ************************************************* */
.video {
  margin-bottom: 29vh;
  display: block;
  padding: 0;
}

@media (max-width: 768px) {
.video {
  margin-bottom: 25vh;
}
}

.video__inner {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
}
