@charset "utf-8";

/*===================
fv
===================*/
.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  border-bottom: 1px solid #d9d9d9;
}
.fv__wrap {
  display: flex;
}
.fv__lft,
.fv__rgt {
  position: relative;
  width: 50%;
}
.fv__lft {
  height: 100vh;
  background: url(../imgs/index/fv_lft_bg.png) center center / cover no-repeat;
}

/* fvの左側のくり抜かれている画像↓ */
/* 外枠：幅だけ可変 */
.mask-frame {
  width: clamp(320px, 38.36vw, 491px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 高さ確保（522 / 491 * 100） */
.mask-inner {
  position: relative;
  width: 100%;
  padding-top: 106.1%;
  overflow: hidden;

  /* SVGマスク */
  -webkit-mask-image: url("../imgs/index/fv-mask.svg");
  mask-image: url("../imgs/index/fv-mask.svg");

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;

  -webkit-mask-position: center;
  mask-position: center;
}
.mask-swiper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fff; /* Safari対策 */
}

/* Swiper */
.mask-swiper {
  position: absolute;
  inset: 0;
}
.mask-swiper,
.mask-swiper .swiper-wrapper,
.mask-swiper .swiper-slide,
.mask-swiper2,
.mask-swiper2 .swiper-wrapper,
.mask-swiper2 .swiper-slide {
  width: 100%;
  height: 100%;
}

.swiper-slide img,
.swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* fade用（超重要） */
.mask-swiper.swiper-fade .swiper-slide {
  opacity: 0;
  transition-property: opacity;
}

.mask-swiper.swiper-fade .swiper-slide-active {
  opacity: 1;
}

/* fvの左側のくり抜かれている画像↑ */

.fv__underWrap {
  position: absolute;
  bottom: 31px;
  right: 36px;
  width: 214px;
}
.fv__underHeading {
  font-size: 20px;
  font-family: "AvenirLTPro-Heavy";
  margin-bottom: 9px;
  line-height: 1.15;
  letter-spacing: 0.06em;
}
.fv__underText {
  font-size: 9px;
  font-family: "TASA Explorer", sans-serif;
  font-weight: 400;
  line-height: 1.66;
}
.dvd {
  position: absolute;
  width: 128px;
  height: auto;
  z-index: 2;
}
.dvd a {
  display: block;
}

.fv__rgt {
}
.fv__slideText-wrap {
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  top: 23px;
  z-index: 2;
}
.fv__slideText-track {
  display: flex;
  width: max-content;
  animation: slideLoop 20s linear infinite;
}
.fv__slideText-track span {
  color: #fff;
  font-size: 34px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  padding-right: 0.5em;
}
@keyframes slideLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.fv__rgt img {
  height: 100vh;
}
.rgt-swiper {
  position: relative;
}
.rgt-swiper video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  background: #fff; /* Safari対策 */
}
.fv__title {
  position: absolute;
  top: 21px;
  left: 32px;
  z-index: 1;
}
.fv__contents {
  position: absolute;
  bottom: 43px;
  left: 44px;
  z-index: 2;
  width: calc(100% - 85px);
}
.fv__contentsBg{
   position: absolute;
    left: -44px;
    bottom : -43px;
    width: 50vw;
    height: calc(100% + 43px + 30px);
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .5) 70%, transparent);
    background: linear-gradient(0deg, rgba(0, 0, 0, .4) 70%, transparent);
}

.fv__contents .archive__dateWrap {
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 3;
}
.fv__contents .archive__cate {
  margin-bottom: 0;
  margin-right: 10px;
  border: 1px solid #fff;
}
.fv__contents .archive__date {
  font-size: 14px;
}
.fv__contentsHeading {
  font-size: 22px;
  line-height: 1.27;
  position: relative;
  z-index: 3;
}

.swiper-pagination-custom {
  position: absolute;
  top: 50%;
  right: 5px;
  left: auto !important;
  transform: translateY(-50%);
  z-index: 3;
  width: 30px;
  height: 49px;
}
.swiper-pagination-custom span {
  color: #fff;
  font-size: 14px;
  font-family: "TASA Explorer", sans-serif;
  font-weight: 400;
  text-align: center;
  display: block;
  position: relative;
}
.swiper-pagination-custom span.line {
  position: relative;
  padding-bottom: 8px;
}
.swiper-pagination-custom span.total {
  top: 49px;
}

/* 透明ボタン */
.fv-next {
  position: absolute;
  top: 0;
  right: 0;
  left: auto !important;
  z-index: 3;
  width: 30px;
  height: 32px;
  pointer-events: none;
}
.fv-next.line:after {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}

/* prevは使わない */
.rgt__swiper-button-prev {
  display: none !important;
}
.rgt__swiper-button-next {
  position: absolute;
  top: 48%;
  right: 5px;
  transform: translateY(-48%);
  width: 30px;
  height: 32px;
  cursor: pointer;
  pointer-events: auto;
  z-index: 4; /* 数字より上 */
}

.btn-fixed {
  display: none;
}
/*===================
article
===================*/
.article {
  padding-top: 52px;
  padding-bottom: 45px;
}
.article__slide {
  padding-top: 66px;
  display: none;
}
.article__slide li {
  margin-right: 55px;
}
.article__slide-link {
  display: block;
}
.article__slide-img {
  width: 99px;
  height: 99px;
  margin: 0 auto;
  transition: transform 0.3s ease;
  border-radius: 50%;
}
.article__slide-link:hover .article__slide-img {
  transform: rotate(15deg);
}
.article__slide-text {
  font-size: 14px;

  text-align: center;
  padding-top: 12px;
  line-height: 2.15;
  letter-spacing: -0.01em;
}

/*===================
banner
===================*/
.banner {
  padding-top: 20px;
  padding-bottom: 45px;
}
.banner__wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.banner__wrap a {
  display: block;
}
.banner__img--sp {
  display: none;
}

/*===================
regulars
===================*/
.regulars__titleBox {
  padding-top: 50px;
  padding-bottom: 50px;
}
.regulars .archive__wrap {
  padding-bottom: 0;
}
.regulars__logo {
  padding-top: 44px;
  padding-bottom: 49px;
  border-bottom: 1px solid #d9d9d9;
}
.regulars__logoSlide {
  display: none;
}
.regulars__logoSlide li {
  margin-right: 20px;
}
.regulars__logoLink {
  display: block;
  position: relative;
  height: 0;
  width: 150px;
  padding-top: 65%;
  display: block;
  overflow: hidden;
}
.regulars__logoSlide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*===================
talk
===================*/
.talk__wrap {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}
.talk__lft {
  width: 30%;
  background-color: #fef327;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.talk__lftHeading {
  width: calc(100% - 30px);
  max-width: 321px;
  /* margin: 0 auto 25px; */
  margin: 0 auto;
}
.talk__lftLink {
  width: 186px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.talk__lftLink1 {
  width: 63px;
}
.talk__lftLink2 {
  width: 77px;
}
.talk__rgt {
  width: 70%;
}
.talk__listItem:not(:last-child) {
  border-bottom: 1px solid #d9d9d9;
}
.talk__listItem a {
  display: flex;
  transition: all 0.3s;
}
.talk__thum {
  width: 55%;
  overflow: hidden;
  position: relative;
}
.frame-img {
  width: 100%;
  display: block;
}
.talk__thum .back-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 1;
  transition: transform 0.3s;
}

.talk__listItem a:hover .talk__thum .back-img {
  transform: translate(-50%, -50%) scale(1.1);
}

.talk__contents {
  width: 46%;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 19px;
  padding-right: 19px;
}
.talk__contents .archive__dateWrap {
  display: flex;
  margin-bottom: 20%;
  gap: 10px;
  flex-wrap: wrap;
}

/*===================
mask-slide
===================*/
.mask-slide {
  padding-top: 41px;
  padding-bottom: 62px;
  position: relative;
  overflow-x: hidden;
}
.mask-slide__textWrap {
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  z-index: 2;
}
.mask-slide__textWrap--top {
  top: 22px;
}
.mask-slide__textWrap--bottom {
  bottom: 11px;
}
.mask-slide__textTrack {
  display: flex;
  width: fit-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.mask-slide__textWrap--top .mask-slide__textTrack {
  animation: maskslideLoop2 60s linear infinite;
}
.mask-slide__textWrap--bottom .mask-slide__textTrack {
  animation: maskslideLoop2 70s linear infinite;
}
.mask-slide__textTrack span {
  white-space: nowrap;
  font-size: 101px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  padding-right: 0.5em;
}
@keyframes maskslideLoop {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes maskslideLoop2 {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    
    transform: translate3d(-50%, 0, 0);
  }
}

/* 高さ確保（522 / 491 * 100） */
.mask-swiper2 {
  inset: 0;
}
.mask-swiper2 .swiper-wrapper {
  transition-timing-function: linear;
}

.mask-swiper2 .swiper-slide {
  width: 414px !important;
  height: 443px;
  -webkit-mask-image: url("../imgs/index/fv-mask.svg");
  mask-image: url("../imgs/index/fv-mask.svg");

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;

  -webkit-mask-position: center;
  mask-position: center;
}
.mask-swiper2 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 枠いっぱいに */
  object-position: center; /* ← 上下中央・左右中央 */
  display: block;
}


.regulars .archive__list > .archive__item:last-child {
   display: none;
}


@media screen and (max-width: 1220px) {
  /*===================
fv
===================*/
  .fv__contents .archive__dateWrap {
    display: flex;
  }
}

@media screen and (max-width: 1130px) {
  /*===================
talk
===================*/
  .talk__thum {
    width: 427px;
  }
  .talk__contents {
    width: calc(100% - 427px);
  }
}

@media screen and (max-width: 1100px) {
  /*===================
fv
===================*/
  .fv__contents .archive__dateWrap {
    display: flex;
  }

  /*===================
talk
===================*/
  .talk .archive__cate {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 980px) {
  /*===================
talk
===================*/
  .talk__wrap {
    display: block;
  }
  .talk__lft {
    width: 100%;
    min-height: initial;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .talk__rgt {
    width: 100%;
  }
  .talk__listItem a {
    display: block;
  }
  .talk__thum {
    width: 100%;
  }
  .talk__contents {
    width: 100%;
    padding-bottom: 50px;
  }
  .talk__contents .archive__dateWrap {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 750px) {
  /*===================
fv
===================*/
  .fv {
    /* height: 100svh; */
    height: auto;
  }
  .fv__lft {
    display: none;
  }
  .fv__rgt {
    width: 100%;
  }
  .fv__slideText-wrap {
    top: calc(4vw + 54px);
  }
  .fv__slideText-track span {
    font-size: 5.6vw;
  }
  .fv__contents {
    bottom: 6.4vw;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 44px);
    margin: 0 auto;
  }
  .fv__contentsBg{
    width: 100vw;
    height: calc(100% + 6.4vw + 30px);
    left: 50%;
    transform: translateX(-50%);
    bottom: -6.4vw;
  }
  .fv__contents .archive__dateWrap {
    margin-bottom: 3.733vw;
  }
  .fv__contents .archive__cate {
    font-size: 3.2vw;
    margin-right: 10px;
    border-radius: 3.2vw;
  }
  .fv__contents .archive__date {
    font-size: 3.733vw;
  }
  .fv__contentsHeading {
    font-size: 4.8vw;
  }
  .fv__rgt img {
    /* height: 100svh; */
    height: auto;
  }
  .rgt-swiper video {
    height: 100svh;
  }

  .swiper-pagination-custom {
    right: 5.433vw;
    width: 6.266vw;
    height: 14.133vw;
  }
  .swiper-pagination-custom span {
    font-size: 3.733vw;
  }
  .swiper-pagination-custom span.line {
    padding-bottom: 2.933vw;
  }
  .swiper-pagination-custom span.total {
    width: 6.266vw;
    top: 13vw;
  }

  .fv-next {
    pointer-events: none;
    width: 6.266vw;
    height: 9vw;
  }
  .fv-next.line:after {
    width: 3.733vw;
  }
  .dvd {
    display: none;
  }
  .btn-fixed {
    display: flex;
    width: calc(100% - 4vw);
    margin: 0 auto;
    justify-content: space-between;
    position: fixed;
    bottom: 10px;
    z-index: 3;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .btn-fixed.is-show {
    opacity: 1;
    pointer-events: auto;
  }

  .btn-fixed__link {
    width: 24.8vw;
  }

  /*===================
article
===================*/
  .article {
    padding-top: 9.866vw;
    padding-bottom: 12vw;
  }
  .article .btn {
    margin: 0 auto 9.333vw;
  }
  .article__wrap {
    border-top: 1px solid #d9d9d9;
  }
  .article__slide {
    padding-top: 5.066vw;
  }
  .article__slide li {
    margin-right: 9.6vw;
  }
  .article__slide-img {
    width: 21.066vw;
    height: 21.066vw;
  }
  .article__slide-text {
    font-size: 3.733vw;
    padding-top: 1.6vw;
  }

  /*===================
banner
===================*/
  .banner {
    padding-top: 5.333vw;
    padding-bottom: 12vw;
  }
  .banner__wrap {
    max-width: 100%;
  }
  .banner__img--pc {
    display: none;
  }
  .banner__img--sp {
    display: block;
  }

  /*===================
regulars
===================*/
  .regulars__titleBox {
    padding-top: 13.333vw;
    padding-bottom: 9.066vw;
  }
  .regulars .archive__item {
    width: 50%;
    border-bottom: 1px solid #d9d9d9;
  }
  .regulars .archive__item:last-of-type {
    border-bottom: none;
  }

  /*最後の1つ前のborder消す */
  .regulars .archive__list > .archive__item:nth-last-child(2) {
    border-bottom: none;
  }

  /* デフォルト：最後の1つだけ消す */
  .regulars .archive__list > .archive__item:last-child {
    border-bottom: none;
    display: block;
  }

  /* 投稿数が 3 の倍数のときだけ、最後の2つを消す */
  .regulars
    .archive__list:has(> .archive__item:nth-child(3n):last-child)
    > .archive__item:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .regulars .archive__link {
    border-bottom: none;
  }
  .regulars .archive__cateWrap {
    margin-bottom: 0;
  }
  .regulars .archive__cate {
    margin-bottom: 2.666vw;
  }
  .regulars .archive__item:nth-child(3n + 1) {
    width: 100%;
  }
  .regulars .archive__item:nth-child(3n + 1) .archive__cate {
    margin: 0 auto 2.666vw;
  }
  .regulars .archive__item:nth-child(3n + 1) .archive__itemTtl {
    font-size: 5.866vw;
    text-align: center;
    margin-bottom: 2.666vw;
  }
  .regulars .archive__item:nth-child(3n + 1) .archive__date {
    font-size: 3.2vw;
    text-align: center;
  }
  .regulars .archive__item:nth-child(3n + 1) .archive__shopName {
    text-align: center;
  }
  .regulars__logoSlide li {
    margin-right: 5.066vw;
  }
  .regulars__logoLink {
    width: 40vw;
  }
  .regulars .archive__textWrap {
    padding-top: 4.266vw;
    padding-left: 22px;
    padding-right: 22px;
    padding-bottom: 6.4vw;
  }
  .regulars .archive__item:nth-child(3n + 1) .archive__dateWrap {
    display: flex;
    justify-content: center;
  }
  /* .regulars__logoSlide img {
    width: 74%;
  } */

  .regulars__logo {
    padding-top: 6.666vw;
    padding-bottom: 6.666vw;
    border-top: 1px solid #d9d9d9;
    /* border-bottom: 2px solid #d9d9d9; */
  }

  /*===================
talk
===================*/
  .talk__wrap {
    border-top: none;
  }
  .talk__contents .archive__dateWrap {
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 3.2vw;
  }
  .talk__lft {
    padding-top: 6.133vw;
    padding-bottom: 11.2vw;
  }
  .talk__lftHeading {
    width: calc(100% - 44px);
    max-width: 85.6vw;
    /* margin: 0 auto 6.666vw; */
    margin: 0 auto;
  }
  .talk__lftLink {
    width: 49.6vw;
  }
  .talk__lftLink1 {
    width: 16.8vw;
  }
  .talk__lftLink2 {
    width: 20.533vw;
  }
  .talk__contents {
    padding-top: 5.6vw;
    padding-bottom: 12.26vw;
    padding-left: 22px;
    padding-right: 22px;
  }
  .talk__contents .archive__itemTtl {
    font-size: 4.8vw;
  }

  /*===================
mask-slide
===================*/
  .mask-slide {
    padding-top: 92px;
    padding-bottom: 68px;
  }
  .mask-swiper2 .swiper-slide {
    width: 324px !important;
    height: 344px;
  }
  .mask-slide__textWrap--top {
    top: 30px;
  }
  .mask-slide__textWrap--bottom {
    bottom: 22px;
  }
  .mask-slide__textTrack span {
    font-size: 90px;
  }
  .mask-slide__textWrap--top .mask-slide__textTrack {
    animation: maskslideLoop 60s linear infinite;
  }
  .mask-slide__textWrap--bottom .mask-slide__textTrack {
    animation: maskslideLoop2 70s linear infinite;
  }
}

@media screen and (max-width: 350px) {
  /*===================
regulars
===================*/
  .regulars .archive__list {
    display: flex;
  }
}

/*===================
movie
===================*/

.movie {
  background-color: #d8dee1;
}
.mask-slidTtl {
  margin-bottom: 27px;
}
.mask-slide__textTrack span {
  color: #fff;
}
.move-swiperWrap {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.move-swiper {
  width: 94%;
  max-width: 1177px;
  margin: 0 auto;
}
.move-swiper .swiper-slide {
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  aspect-ratio: 218 / 387;
  /* height: 30.23vw; */
  /* max-height: 387px; */
  /* max-height: 428px; */
}
.move-swiper .swiper-slide::after {
  display: flex;
  content: "";
  width: 43px;
  height: 43px;
  background-image: url(../imgs/index/play-anc.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.move-swiper .swiper-slide img {
  border-radius: 11px;
}
.move-swiper .swiper-slide:hover {
  opacity: 0.7;
}
.swiper-button-next.move-swiper-button-next:after,
.swiper-button-prev.move-swiper-button-prev:after {
  width: 13px;
  height: 33px;
  background-image: url(../imgs/index/move-anc.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.swiper-button-next.move-swiper-button-next:after {
  transform: scale(-1, 1);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  inset: 0;
  z-index: 9999;
  /* pointer-events: none; */
}
.modal__bg {
  pointer-events: none;
  display: none;
  position: absolute;
  inset: 0;
}
.modal.is-open {
  display: flex;
  /* pointer-events: auto; */
}
.modal__content {
  position: relative;
  width: 80%;
  max-width: 350px;
}
.modal__close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 999;
}
.modal video {
  width: 100%;
  height: auto;
  border-radius: 11px;
}
.modal-swiperLink {
  display: block;
  width: 250px;
  margin: 40px auto 0;
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
  position: relative;
  transition: 0.3s;
}
.modal-swiperLink:hover {
  background-color: #fff;
  color: #000;
}
.modal-swiperLink:after {
  content: "";
  display: block;
  width: 10px;
  height: 7px;
  background-image: url(../imgs/common/arrow_rgt_wh.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transition: 0.3s;
}
.modal-swiperLink:hover::after {
  background-image: url(../imgs/common/arrow_rgt_black.svg);
}
.modal-button-next,
.swiper-rtl {
  right: -60px;
}
.modal-button-prev,
.swiper-rtl {
  left: -60px;
}
.swiper-button-next.modal-button-next:after,
.swiper-button-prev.modal-button-prev:after {
  width: 14px;
  height: 41px;
  background-image: url(../imgs/index/modal-anc.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.swiper-button-next.modal-button-next:after {
  transform: scale(-1, 1);
}

.movie__insta {
  padding: 23px 0 50px 0;
}
.movie__insta a.btn {
  font-family: "TASA Explorer", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
}
.insta-icon {
  margin-right: 10px;
  display: block;
  width: 16px;
  height: 16px;
  background: url(../imgs/common/insta-icon.svg) center center / cover no-repeat;
}
.movie__insta .arrow-rgt {
  margin-left: 15px;
}
.video-container {
    position: relative;
    cursor: pointer;
}
/* 中央の再生ボタン */
.play-pause-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: url(../imgs/index/play-anc.png) center center / cover no-repeat;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    display: none; /* 基本は非表示 */
    pointer-events: none; /* クリックを動画本体に通す */
    z-index: 2;
}
/* 親に .is-paused クラスがついている時だけボタンを出す */
.video-container.is-paused .play-pause-btn {
    display: block;
}


.sound-toggle {
  background:rgb(255 255 255 / 40%);
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 5;
  border-radius: 999px;
  padding: 8px 10px;
  color: #fff;
  font-size: 18px;
}

/* 状態切り替え */
.icon-sound img{
  width: 16px;
}
.video-container.is-muted .icon-sound-on {
  display: none;
}
.video-container:not(.is-muted) .icon-sound-off {
  display: none;
}

@media screen and (max-width: 980px) {
  .move-swiper {
    width: 100%;
  }
  .move-swiper .swiper-slide {
    aspect-ratio: 270 / 480;
    /* height: auto; */
    /* max-height: 556px; */
  }

  .move-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

@media screen and (max-width: 750px) {
  .modal {
    background: rgba(0, 0, 0, 0.9);
  }
  .modal__content {
    width: 72vw;
    /* max-width: 100%; */
  }
  .modal-button-prev,
  .swiper-rtl {
    left: -35px;
  }
  .modal-button-next,
  .swiper-rtl {
    right: -35px;
  }
  .modal__close {
    top: 10px;
    right: 10px;
  }
  .swiper-button-next.move-swiper-button-next:after,
  .swiper-button-prev.move-swiper-button-prev:after {
    width: 15px;
    height: 41px;
  }
  .modal-swiperLink{
    margin-top: 20px;
  }



  .rgt-swiper,
  .rgt-swiper .swiper-wrapper,
  .rgt-swiper .swiper-slide {
    overflow: hidden;
  }
  .rgt-swiper {
    margin-top:54px;
  }
   .rgt-swiper .swiper-slide a{
    display: block;

    /* height: calc(100svh - 54px); */
    background: #fff;
   }
   .fv__contentsBg{
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .4) 10%, transparent);
    background: linear-gradient(0deg, rgba(0, 0, 0, .4) 10%, transparent);
   }
  .swiper-slide img, .swiper-slide video {
    /* object-fit: contain; */
  }
}
