/* ===============================================### 
共通設定
###=============================================== */
.FU241024dress{
  --font-ja: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "Open Sans", "メイリオ", sans-serif;
  --font-en: "pragmatica", sans-serif;
  --color-white: #ffffff;
  --color-blue: #7D999F;
  --color-pink: #F6EFEA;
  --color-black: #000;
  --color-gray: #999999;
  overflow: hidden;
}

.FU241024dress img,
.FU241024dress svg{
  width: 100%;
  height: auto;
}

/* ===========### PC版用設定 ###=========== */
@media screen and (min-width: 768px) {
  .FU241024dress .pc-visible{
    display: block;
  }

  .FU241024dress .sp-visible{
    display: none;
  }

  .FU241024dress .image-bg{
    background-color: #ffffff;
  }

  .FU241024dress .image-bg a:hover{
    opacity: 0.7;
  }
}

/* ===========### SP版用設定 ###=========== */
@media screen and (max-width: 767px) {
  .FU241024dress .pc-visible{
    display: none;
  }
  
  .FU241024dress .sp-visible{
    display: block;
  }
}


/* ===============================================### 
アニメーション設定
###=============================================== */
/************** fade **************/
.FU241024dress .js-fade-mv{
  opacity: 0;
  transition: opacity, 1s;
}

.FU241024dress .js-fade-in{
  opacity: 0;
  transition: opacity 1.2s;
}

.FU241024dress .js-fade-mv.show,
.FU241024dress .js-fade-in.show{
  opacity: 1;
}

/************** swiper **************/
.FU241024dress .swiper{
  position: relative;
}

.FU241024dress .swiper-pagination-bullet {
  width: 4rem;
  height: 0.2rem;
}

.FU241024dress .swiper-container-horizontal > .swiper-pagination-bullets{
  column-gap: 1rem;
}

.FU241024dress .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
  margin: 0;
}

.FU241024dress .swiper-pagination-bullets {
  position: relative;
  top: 2rem;
  display: flex;
  align-items: center;
  justify-content: end;
  width: initial;
}

.FU241024dress .swiper-pagination-bullet {
  position: relative;
  margin: 0;
  background: var(--color-gray);
  border-radius: 0;
  opacity: 1;
}

.FU241024dress .swiper-pagination-bullet-active{
  background: var(--color-gray);
}

.FU241024dress .swiper-pagination-bullet::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  content: "";
  background-color: var(--color-black);
}

.FU241024dress .swiper-pagination-bullet-active::before {
    -webkit-animation: paginationAnime 5s linear forwards;
    animation: paginationAnime 5s linear forwards;
}

@-webkit-keyframes paginationAnime {
  100% {
    width: 100%;
    opacity: 1;
  }
}

@keyframes paginationAnime {
  100% {
    width: 100%;
    opacity: 1;
  }
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .FU241024dress .swiper-pagination-bullets {
    top: calc(30 * (100vw / 750));
    justify-content: flex-start;
  }

  .FU241024dress .swiper-container-horizontal > .swiper-pagination-bullets{
    column-gap: calc(24 * (100vw / 750));
  }

  .FU241024dress .swiper-pagination-bullet {
    width: calc(80 * (100vw / 750));
    height: calc(4 * (100vw / 750));
  }
}


/* ===============================================### 
MV
###=============================================== */
.FU241024dress .mv{
}

.FU241024dress .mv .content-wrapper{
  width: 100%;
  background-color: #EDEFEF;
}

/************** text **************/
.FU241024dress .mv__text{
  margin-top: 11.4rem;
  font-family: var(--font-ja);
  font-size: 1.3rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
  text-align: center;
  font-feature-settings: "palt";
  color: var(--color-black);
}

/************** image **************/
.FU241024dress .mv__image{
  width: 98rem;
  margin-inline: auto;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  /************** text **************/
  .FU241024dress .mv__text{
    margin-top: calc(128 * (100vw / 750));
    font-size: calc(24 * (100vw / 750));
  }

  /************** image **************/
  .FU241024dress .mv__image{
    width: calc(750 * (100vw / 750));
    margin-inline: auto;
    padding-top: 0;
    padding-bottom: calc(20 * (100vw / 750));
  }
}



/* ===============================================### 
コンテンツ共通設定
###=============================================== */
.FU241024dress .section__title{
  position: relative;
  width: fit-content;
}

.FU241024dress .section__title .title__text{
  font-family: var(--font-ja);
  font-size: 1.3rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
  text-align: center;
  font-feature-settings: "palt";
  color: var(--color-black);
}

.FU241024dress .credit{
  font-family: var(--font-en);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: var(--color-black);
}

.FU241024dress .credit a{
  display: inline-block;
  margin-bottom: 1.5rem;
  padding-bottom: 0.2rem;
  border-bottom: 0.1rem solid #999999;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .FU241024dress .section__title .title__text{
    font-size: calc(24 * (100vw / 750));
  }

  .FU241024dress .credit{
    font-size: calc(22 * (100vw / 750));
  }

  .FU241024dress .credit a{
    margin-bottom: calc(26 * (100vw / 750));
    padding-bottom: calc(2 * (100vw / 750));
    border-bottom: calc(2 * (100vw / 750)) solid #999999;
  }
}



/* ===============================================### 
セクション01
###=============================================== */
.FU241024dress .section01{
  position: relative;
  width: 100%;
}

.FU241024dress .section01::after{
  content: '';
  position: absolute;
  top: -5.4rem;
  width: 100%;
  height: 147.5rem;
  background-color: #EAEFF8;
  z-index: -1;
}

.FU241024dress .section01 .content-wrapper{
  position: relative;
  width: 102rem;
  margin-top: 22.6rem;
  margin-inline: auto;
}

.FU241024dress .section01 .section__title{
  margin-inline: auto;
}

.FU241024dress .section01 .section__item02{
  position: relative;
  width: fit-content;
}

/************** grid **************/
.FU241024dress .section01 .grid-wrapper{
  display: grid;
  grid-template-columns: 51rem 6rem 45rem;
  grid-template-rows: 24rem 46.6rem 34.9rem;
  margin-top: 13.2rem;
}

.FU241024dress .section01 .grid__item01{
  grid-column: 3/4;
  grid-row: 1/3;
}

.FU241024dress .section01 .grid__item02{
  grid-column: 1/2;
  grid-row: 2/4;
}

/************** text **************/
.FU241024dress .section01 .section__title .title__text{
  margin-left: 20rem;
}

.FU241024dress .section01 .section__item01 .credit{
  margin-top: 3rem;
  text-align: right;
}

.FU241024dress .section01 .section__item02 .credit{
  margin-top: 3rem;
  text-align: left;
}

/************** image **************/
.FU241024dress .section01 .title__image.image01{
  position: absolute;
  top: -11.4rem;
  left: -0.5rem;
  width: 20rem;
}

.FU241024dress .section01 .title__image.image02{
  position: absolute;
  top: -7.6rem;
  right: 3.3rem;
  width: 35.4rem;
}

.FU241024dress .section01 .text__image{
  position: absolute;
  top: -4.5rem;
  left: -4rem;
  width: 24rem;
  z-index: 1;
}

.FU241024dress .section01 .section__item01 .section__image{
  width: 45rem;
}

.FU241024dress .section01 .section__item02 .section__image{
  width: 51rem;
}

/************** background **************/
.FU241024dress .section01 .section__item02 .image-bg{
  border-top-left-radius: 23.6rem;
  border-bottom-right-radius: 23.6rem;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .FU241024dress .section01::after{
    top: calc(-446 * (100vw / 750));
    height: calc(3036 * (100vw / 750));
  }

  .FU241024dress .section01 .content-wrapper{
    width: calc(750 * (100vw / 750));
    margin-top: calc(653 * (100vw / 750));
  }

  .FU241024dress .section01 .section__item01{
    margin-left: calc(120 * (100vw / 750));
  }

  .FU241024dress .section01 .section__item02{
    margin-top: calc(135 * (100vw / 750));
    margin-inline: auto;
  }

  /************** grid **************/
  .FU241024dress .section01 .grid-wrapper{
    display: block;
    margin-top: calc(90 * (100vw / 750));
  }

  /************** text **************/
  .FU241024dress .section01 .section__title .title__text{
    margin-left: 0;
  }

  .FU241024dress .section01 .section__item01 .credit{
    margin-top: calc(50 * (100vw / 750));
    text-align: left;
  }

  .FU241024dress .section01 .section__item02 .credit{
    margin-top: calc(50 * (100vw / 750));
  }

  /*** クレジット微調整 ***/
  .FU241024dress .section01 .section__item01 .credit a:nth-of-type(3){
    margin-left: calc(19 * (100vw / 750));
  }

  .FU241024dress .section01 .section__item02 .credit a:nth-of-type(2n){
    margin-left: calc(19 * (100vw / 750));
  }

  /************** image **************/
  .FU241024dress .section01 .title__image.image01{
    top: calc(-526 * (100vw / 750));
    left: 50%;
    transform: translateX(-50%);
    width: calc(280 * (100vw / 750));
  }

  .FU241024dress .section01 .title__image.image02{
    top: calc(-110 * (100vw / 750));
    left: 50%;
    transform: translateX(-50%);
    width: calc(508 * (100vw / 750));
  }

  .FU241024dress .section01 .text__image{
    top: calc(-70 * (100vw / 750));
    left: calc(-40 * (100vw / 750));
    width: calc(425 * (100vw / 750));
  }

  .FU241024dress .section01 .section__item01 .section__image{
    width: calc(630 * (100vw / 750));
  }

  .FU241024dress .section01 .section__item02 .section__image{
    width: calc(630 * (100vw / 750));
  }
}



/* ===============================================### 
セクション02
###=============================================== */
.FU241024dress .section02{
}

.FU241024dress .section02 .content-wrapper{
  position: relative;
  width: 102rem;
  margin-top: 24rem;
  margin-inline: auto;
}

.FU241024dress .section02 .flex-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.FU241024dress .section02 .section__title{
  width: 52rem;
}

.FU241024dress .section02 .section__item{
  position: relative;
  width: fit-content;
}

/************** text **************/
.FU241024dress .section02 .section__title .title__text{
  margin-top: 20.2rem;
  margin-left: 1rem;
}

.FU241024dress .section02 .section__item .credit{
  margin-top: 3rem;
  text-align: right;
}

/************** image **************/
.FU241024dress .section02 .title__image.image01{
  position: absolute;
  top: -8.2rem;
  left: 16.5rem;
  width: 20rem;
}

.FU241024dress .section02 .title__image.image02{
  position: absolute;
  top: -1rem;
  left: 0.5rem;
  width: 65rem;
  z-index: 1;
  pointer-events: none;
}

.FU241024dress .section02 .text__image{
  position: absolute;
  top: -1rem;
  right: -5rem;
  width: 14rem;
  z-index: 1;
}

.FU241024dress .section02 .section__item .section__image{
  width: 45rem;
}

/************** background **************/
.FU241024dress .section02 .section__item02 .image-bg{
  border-top-right-radius: 23.6rem;
}


/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .FU241024dress .section02{
  }

  .FU241024dress .section02 .content-wrapper{
    width: calc(630 * (100vw / 750));
    margin-top: calc(620 * (100vw / 750));
  }

  .FU241024dress .section02 .flex-wrapper{
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
  }

  .FU241024dress .section02 .section__title{
    width: fit-content;
  }

  .FU241024dress .section02 .section__item{
    margin-top: calc(160 * (100vw / 750));
    margin-inline: auto;
  }

  /************** text **************/
  .FU241024dress .section02 .section__title .title__text{
    margin-top: calc(200 * (100vw / 750));
    margin-left: 0;
  }

  .FU241024dress .section02 .section__item .credit{
    margin-top: calc(51 * (100vw / 750));
    text-align: center;
  }

  /*** クレジット調整 ***/
  .FU241024dress .section02 .section__item .credit a:nth-of-type(2){
    margin-left: calc(19 * (100vw / 750));
  }  
  
  /************** image **************/
  .FU241024dress .section02 .title__image.image01{
    top: calc(-326 * (100vw / 750));
    left: 50%;
    transform: translateX(-50%);
    width: calc(280 * (100vw / 750));
  }

  .FU241024dress .section02 .title__image.image02{
    top: calc(90 * (100vw / 750));
    left: 50%;
    transform: translateX(-50%);
    width: calc(484 * (100vw / 750));
  }

  .FU241024dress .section02 .text__image{
    top: calc(-69 * (100vw / 750));
    left: 50%;
    transform: translateX(-50%);
    width: calc(630 * (100vw / 750));
  }

  .FU241024dress .section02 .section__item .section__image{
    width: calc(630 * (100vw / 750));
  }
}



/* ===============================================### 
セクション03
###=============================================== */
.FU241024dress .section03{
  position: relative;
  width: 100%;
}

.FU241024dress .section03::after{
  content: '';
  position: absolute;
  top: -5.5rem;
  width: 100%;
  height: 168rem;
  background-color: #F0F0F0;
  z-index: -1;
}

.FU241024dress .section03 .content-wrapper{
  position: relative;
  width: 96.5rem;
  margin-top: 21.9rem;
  margin-inline: auto;
}

.FU241024dress .section03 .flex-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-direction: row-reverse;
}

.FU241024dress .section03 .section__title{
  margin-inline: auto;
}

.FU241024dress .section03 .swiper{
  width: 39rem;
}

/* .FU241024dress .section03 .section__item02{
  position: relative;
  width: fit-content;
} */

.FU241024dress .section03 .section__item01{
  position: relative;
  width: fit-content;
}

.FU241024dress .section03 .section__slide{
  position: absolute;
  top: 24.6rem;
  right: 0;
}

/************** grid **************/
/* .FU241024dress .section03 .grid-wrapper{
  display: grid;
  grid-template-columns: 7rem 35rem 15.5rem 4.4rem 34.5rem;
  grid-template-rows: 18rem 46.9rem 9.1rem 4rem 48rem;
  margin-top: 13.2rem;
}

.FU241024dress .section03 .grid__item01{
  grid-column: 4/6;
  grid-row: 1/3;
}

.FU241024dress .section03 .grid__item02{
  grid-column: 1/3;
  grid-row: 2/4;
}

.FU241024dress .section03 .grid__item03{
  grid-column: 2/5;
  grid-row: 5/6;
} */

.FU241024dress .section03 .grid-wrapper{
  display: grid;
  grid-template-columns: 7rem 19rem 16rem 15.2rem 4.7rem;
  grid-template-rows: 56rem 4rem 48rem;
  margin-top: 31.2rem;
}

.FU241024dress .section03 .grid__item01{
  grid-column: 1/4;
  grid-row: 1/2;
}

.FU241024dress .section03 .grid__item02{
  grid-column: 2/6;
  grid-row: 3/4;
}

/************** text **************/
.FU241024dress .section03 .section__title .title__text{
  margin-left: 20.1rem;
}

/* .FU241024dress .section03 .section__item01 .credit{
  margin-top: 5.1rem;
  text-align: right;
}

.FU241024dress .section03 .section__item03 .credit{
  margin-bottom: -1.6rem;
  text-align: right;
} */

.FU241024dress .section03 .section__slide .credit{
  margin-top: 5.1rem;
  text-align: right;
}

.FU241024dress .section03 .section__item02 .credit{
  margin-bottom: -1.6rem;
  text-align: right;
}

/************** image **************/
.FU241024dress .section03 .title__image.image01{
  position: absolute;
  top: -11.4rem;
  left: -0.1rem;
  width: 20rem;
}

.FU241024dress .section03 .title__image.image02{
  position: absolute;
  top: -7.6rem;
  right: 8.7rem;
  width: 20.2rem;
}

.FU241024dress .section03 .text__image{
  position: absolute;
  top: 0.2rem;
  right: -4.9rem;
  width: 2.9rem;
  z-index: 1;
}

/* .FU241024dress .section03 .section__item02 .section__image{
  width: 42rem;
}

.FU241024dress .section03 .section__item03 .section__image{
  width: 36rem;
} */

.FU241024dress .section03 .section__item01 .section__image{
  width: 42rem;
}

.FU241024dress .section03 .section__item02 .section__image{
  width: 36rem;
}

/************** background **************/
/* .FU241024dress .section03 .section__item02 .image-bg{
  border-top-left-radius: 23.6rem;
} */

.FU241024dress .section03 .section__item01 .image-bg{
  border-top-left-radius: 23.6rem;
}


/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .FU241024dress .section03::after{
    top: calc(-445 * (100vw / 750));
    height: calc(3702 * (100vw / 750));
  }

  .FU241024dress .section03 .content-wrapper{
    width: calc(750 * (100vw / 750));
    margin-top: calc(680 * (100vw / 750));
  }

  .FU241024dress .section03 .flex-wrapper{
    align-items: initial;
    flex-direction: column;
  }

  .FU241024dress .section03 .swiper{
    width: calc(570 * (100vw / 750));
  }

  /* .FU241024dress .section03 .section__item01{
    margin-left: calc(180 * (100vw / 750));
  }

  .FU241024dress .section03 .section__item02{
    margin-top: calc(73 * (100vw / 750));
  }

  .FU241024dress .section03 .section__item03{
    margin-top: calc(40 * (100vw / 750));
    margin-left: calc(200 * (100vw / 750));
    margin-right: auto;
  } */

  .FU241024dress .section03 .section__slide{
    position: initial;
    margin-top: calc(90 * (100vw / 750));
    margin-left: calc(180 * (100vw / 750));
  }

  .FU241024dress .section03 .section__item01{
    /* margin-top: calc(-17 * (100vw / 750)); */
  }

  .FU241024dress .section03 .section__item02{
    margin-top: calc(40 * (100vw / 750));
    margin-left: calc(200 * (100vw / 750));
    margin-right: auto;
  }

  /************** grid **************/
  .FU241024dress .section03 .grid-wrapper{
    display: block;
    margin-top: calc(74 * (100vw / 750));
  }

  /************** text **************/
  .FU241024dress .section03 .section__title .title__text{
    margin-left: 0;
  }

  .FU241024dress .section03 .section__slide .credit{
    margin-top: calc(81 * (100vw / 750));
    text-align: left;
  }

  .FU241024dress .section03 .section__item02 .credit{
    margin-top: calc(50 * (100vw / 750));
    margin-bottom: 0;
    text-align: left;
  }

  /*** クレジット調整 ***/
  .FU241024dress .section03 .section__slide .credit a:nth-of-type(3){
    margin-left: calc(19 * (100vw / 750));
  }

  .FU241024dress .section03 .section__item02 .credit a:nth-of-type(3),
  .FU241024dress .section03 .section__item02 .credit a:nth-of-type(5){
    margin-left: calc(19 * (100vw / 750));
  }

  /************** image **************/
  .FU241024dress .section03 .title__image.image01{
    top: calc(-525 * (100vw / 750));
    left: 50%;
    transform: translateX(-50%);
    width: calc(280 * (100vw / 750));
  }

  .FU241024dress .section03 .title__image.image02{
    top: calc(-110 * (100vw / 750));
    left: 50%;
    transform: translateX(-50%);
    margin-left: calc(4 * (100vw / 750));
    width: calc(290 * (100vw / 750));
  }

  .FU241024dress .section03 .text__image{
    top: calc(3 * (100vw / 750));
    right: calc(-72 * (100vw / 750));
    width: calc(43.6 * (100vw / 750));
  }

  _::-webkit-full-page-media, _:future, :root .FU241024dress .section03 .text__image {
    top: 0
  }

  /* .FU241024dress .section03 .section__item02 .section__image{
    width: calc(630 * (100vw / 750));
  }

  .FU241024dress .section03 .section__item03 .section__image{
    width: calc(510 * (100vw / 750));
  } */

  .FU241024dress .section03 .section__item01 .section__image{
    width: calc(630 * (100vw / 750));
  }

  .FU241024dress .section03 .section__item02 .section__image{
    width: calc(510 * (100vw / 750));
  }
}

/*** safari用設定 ***/
@media screen and (max-width: 413px) {
  _::-webkit-full-page-media, _:future, :root .FU241024dress .section03 .text__image {
    top: calc(-11 * (100vw / 750));
  }
}

@media screen and (min-width: 414px) and (max-width: 439px) {
  _::-webkit-full-page-media, _:future, :root .FU241024dress .section03 .text__image {
    top: 0;
  }
}

@media screen and (min-width: 440px) and (max-width: 667px) {
  _::-webkit-full-page-media, _:future, :root .FU241024dress .section03 .text__image {
    top: calc(-7 * (100vw / 750));
  }
}



/* ===============================================### 
セクション04
###=============================================== */
.FU241024dress .section04{
}

.FU241024dress .section04 .content-wrapper{
  position: relative;
  width: 105.2rem;
  margin-top: 24rem;
  margin-inline: auto;
}

.FU241024dress .section04 .flex-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.FU241024dress .section04 .section__title{
  width: 52rem;
}

.FU241024dress .section04 .section__item{
  position: relative;
  width: fit-content;
  margin-right: 0.7rem;
}

/************** text **************/
.FU241024dress .section04 .section__title .title__text{
  margin-top: 10rem;
  margin-left: 2.2rem;
}

.FU241024dress .section04 .section__item .credit{
  margin-top: 3rem;
  text-align: right;
}

/************** image **************/
.FU241024dress .section04 .title__image.image01{
  position: absolute;
  top: -18.2rem;
  left: 0.7rem;
  width: 20rem;
}

.FU241024dress .section04 .title__image.image02{
  position: absolute;
  top: -13rem;
  right: -1rem;
  width: 32.3rem;
  z-index: 1;
}

.FU241024dress .section04 .text__image{
  position: absolute;
  top: -1rem;
  right: -5.1rem;
  width: 16rem;
  z-index: 1;
}

.FU241024dress .section04 .section__item .section__image{
  width: 45rem;
}

/************** background **************/
.FU241024dress .section04 .section__item .image-bg{
  border-top-left-radius: 23.6rem;
  border-top-right-radius: 23.6rem;
}


/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .FU241024dress .section04 .content-wrapper{
    width: calc(630 * (100vw / 750));
    margin-top: calc(832 * (100vw / 750));
  }

  .FU241024dress .section04 .flex-wrapper{
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
  }

  .FU241024dress .section04 .section__title{
    width: fit-content;
  }

  .FU241024dress .section04 .section__item{
    margin-top: calc(160 * (100vw / 750));
    margin-inline: auto;
  }

  /************** text **************/
  .FU241024dress .section04 .section__title .title__text{
    margin-top: calc(100 * (100vw / 750));
    margin-left: 0;
  }

  .FU241024dress .section04 .section__item .credit{
    margin-top: calc(50 * (100vw / 750));
    text-align: center;
  }

  /*** クレジット微調整 ***/
  .FU241024dress .section04 .section__item .credit a:nth-of-type(2),
  .FU241024dress .section04 .section__item .credit a:nth-of-type(4),
  .FU241024dress .section04 .section__item .credit a:nth-of-type(5){
    margin-left: calc(19 * (100vw / 750));
  }

  /************** image **************/
  .FU241024dress .section04 .title__image.image01{
    top: calc(-536 * (100vw / 750));
    left: 50%;
    transform: translateX(-50%);
    width: calc(280 * (100vw / 750));
  }

  .FU241024dress .section04 .title__image.image02{
    top: calc(-120 * (100vw / 750));
    left: 50%;
    transform: translateX(-50%);
    width: calc(446 * (100vw / 750));
  }

  .FU241024dress .section04 .text__image{
    top: calc(-72 * (100vw / 750));
    left: 50%;
    transform: translateX(-50%);
    width: calc(630 * (100vw / 750));
  }

  .FU241024dress .section04 .section__item .section__image{
    width: calc(630 * (100vw / 750));
  }
}



/* ===============================================### 
その他コンテンツ
###=============================================== */
.FU241024dress .others{
  width: 90rem;
  margin-top: 10rem;
  margin-bottom: 15rem;
  margin-inline: auto;
}

/************** text **************/
.FU241024dress .others .staff__text{
  font-family: var(--font-en);
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
  font-feature-settings: "palt";
  color: var(--color-black);
}

/************** button **************/
.FU241024dress .others .link__button{
  width: 100%;
  margin-top: 3.5rem;
  font-family: var(--font-en);
  font-size: 2rem;
  letter-spacing: 0.075em;
  text-align: center;
  font-feature-settings: "pwid";
  color: var(--color-white);
  background-color: var(--color-black);
}

.FU241024dress .others .link__button a{
  display: block;
  padding-top: 2rem;
  padding-bottom: 2rem;
}


/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .FU241024dress .others{
    width: calc(600 * (100vw / 750));
    margin-top: calc(143 * (100vw / 750));
    margin-bottom: calc(180 * (100vw / 750));
  }

  /************** text **************/
  .FU241024dress .others .staff__text{
    font-size: calc(22 * (100vw / 750));
  }

  /************** button **************/
  .FU241024dress .others .link__button{
    margin-top: calc(75 * (100vw / 750));
    font-size: calc(38 * (100vw / 750));
  }

  .FU241024dress .others .link__button a{
    padding-top: calc(29 * (100vw / 750));
    padding-bottom: calc(28 * (100vw / 750));
  }
}