/*-------------------------------------------
MVセクション
-------------------------------------------*/

main {
  margin: 65px 0 0 0;
}

.sec-mv {
  position: relative;
  z-index: 0;
  overflow: hidden;
  max-width: 100vw;
}



.sec-mv__swiper-slide {
  position: relative;
  inset: 0;
  z-index: 10;

  /* 左上に白い三角形を配置 */
  &::before {
    content: "";
    position: absolute;
    z-index: 11;
    top: 0;
    left: 0%;
    width: 100vw;
    height: 50vh;
    clip-path: polygon(0% 0%, 0% 67%, 50% 0%);
    background: rgba(255, 255, 255, 0.3);
  }
  /* 右下にオレンジの三角形を配置 */
  &::after {
    content: "";
    position: absolute;
    z-index: 11;
    bottom: 0%;
    right: 0%;
    width: 100vw;
    height: 50vh;
    clip-path: polygon(55% 100%, 100% 20%, 100% 100%);
    background: rgba(247, 147, 30, 0.3);
  }
}


.sec-mv__swiper{
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}


.sec-mv__inner {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 20000;
}
.sec-mv__catch-sub {
  position: relative;
  margin: 0 0 10px 0;
  padding: 5px 10px 6px;
  max-width: var(--pc-contents-width);
  margin-left: 30px;
  background-color: #231815;
  color: var(--sub-bg-color);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0rem;
  width: fit-content;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: -19px;
    width: 20px;
    height: 100%;
    background-color: #231815;
    clip-path: polygon(100% 0%, 101% 101%, 0% 100%);
    }
  &::after {
    content: "";  
    position: absolute;
    top: 0;
    right: -19px;
    width: 20px;
    height: 100%;
    background-color: #231815;
    clip-path: polygon(-1% -1%, 0% 100%, 100% 0%);
    }
} 
.sec-mv__catch {
  position: relative;
  margin: 0 0 15px 0;
  margin-left: 40px;
  background-color: #fff;
  padding: 8px 10px 9px;
  max-width: 72%;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1rem;
  color: var(--main-font-color);
  width: fit-content;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: -29.5px;
    width: 30px;
    height: 100%;
    background-color: #fff;
    clip-path: polygon(100% 0%, 101% 101%, 0% 100%);
    }
  &::after {
    content: "";  
    position: absolute;
    top: 0;
    right: -29.5px;
    width: 30px;
    height: 100%;
    background-color: #fff;
    clip-path: polygon(-1% -1%, 0% 100%, 100% 0%);
    }
}
.sec-mv__sub-text {
  display: none;
}
.sec-mv__sub-text--sp {
  margin: 0;
  width: calc(100vw - 40px);
  padding: 15px 20px 15px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.2rem;
  text-align: justify;
  white-space: wrap;
  color: #fff;
  background-color: #231815;
}
.sec-mv__img-container {
  display: none;
}
.sec-mv__catch-container {
  position: relative;
  z-index: 30000;
}
.sec-mv__img-container--sp {
  position: relative;
  bottom: 0;
  left: calc((100vw - 100%) / 2);
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
}
.sec-mv__img-inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
}
.sec-mv__img-inner .sec-mv__img:nth-child(1) {
  margin: 0 0 0 0
}
.sec-mv__img {
  width: 120px;
  contain-intrinsic-size: auto none;
}
.sec-mv__img img {
  width: 120px;
  contain-intrinsic-size: auto none;
}



.sec-mv__swiper-img {
  width: 100%;
  height: 490px;
  object-fit: cover;
  position: relative;
  display: block;
  position: relative;
  z-index: 0;
}


/* pc */
@media screen and (min-width: 768px) {
  main {
    margin: 100px 0 0 0;
  }
  .sec-mv {
    aspect-ratio: auto; /*SPでaspect-ratioを使っているので初期値に戻す*/
    height: 580px;
    padding: 0;
  }
  .sec-mv__swiper-slide{
    position: relative;
    inset: 0;
    z-index: 10;

    /* 左上に白い三角形を配置 */
    &::before {
      content: "";
      position: absolute;
      z-index: 100;
      top: 0;
      left: 0%;
      width: 100%;
      height: 580px;
      clip-path: polygon(0% 0%, 0% 80%, 22% 0%);
      background: rgba(255, 255, 255, 0.3);
    }
    /* 右下にオレンジの三角形を配置 */
    &::after {
      content: "";
      position: absolute;
      z-index: 11;
      bottom: 0%;
      right: 0%;
      width: 100vw;
      height: 580px;
      clip-path: polygon(75% 100%, 100% 12%, 100% 100%);
      background: rgba(247, 147, 30, 0.3);
    }
  }
  .sec-mv__inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20000;
  }
.sec-mv__catch-sub {
  position: relative;
  margin: 0 0 20px 0;
  padding: 10px 15px 11px;
  max-width: var(--pc-contents-width);
  margin-left: 30px;
  background-color: #231815;
  color: var(--sub-bg-color);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  width: fit-content;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: -29px;
    width: 30px;
    height: 100%;
    background-color: #231815;
    clip-path: polygon(100% 0%, 101% 101%, 0% 100%);
    }
  &::after {
    content: "";  
    position: absolute;
    top: 0;
    right: -29px;
    width: 30px;
    height: 100%;
    background-color: #231815;
    clip-path: polygon(-1% -1%, 0% 100%, 100% 0%);
    }
  } 
  .sec-mv__catch {
    position: relative;
    margin: 0 0 15px 0;
    margin-left: 40px;
    background-color: #fff;
    padding: 12px 15px 14px;
    max-width: var(--pc-contents-width);
    font-size: 4.7rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.2rem;
    color: var(--main-font-color);
    width: fit-content;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: -39.5px;
      width: 40px;
      height: 100%;
      background-color: #fff;
      clip-path: polygon(100% 0%, 101% 101%, 0% 100%);
      }
    &::after {
      content: "";  
      position: absolute;
      top: 0;
      right: -39.5px;
      width: 40px;
      height: 100%;
      background-color: #fff;
      clip-path: polygon(-1% -1%, 0% 100%, 100% 0%);
      }
  }
  .sec-mv__sub-text--sp {
    display: none;
  }
  .sec-mv__sub-text {
    display: block;
    margin: 30px auto 30px auto;
    max-width: var(--pc-contents-width);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.9;
    letter-spacing: 0.2rem;
    color: #fff;
  }
  .sec-mv__img-container--sp {
    display: none;
  } 
  .sec-mv__img-container {
    margin: 0 auto;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    gap: 0px;
    position: absolute;
    top: 0;
    right: -10px;
    z-index: 30000;
  }
  .sec-mv__img-inner .sec-mv__img:nth-child(1) {
    margin: 0 20px 0 0
  }
  .sec-mv__img {
    width: 205px;
  }
  .sec-mv__img img {
    width: 205px;
  }


  .sec-mv__swiper-slide::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(247, 147, 30, 0.3);
      z-index: 1;
      pointer-events: none;
  }

  .sec-mv__swiper-img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    position: relative;
    display: block;
    position: relative;
    z-index: 0;
  }





}
