.title-box {
  text-align: center;
  padding-top: 24px;
  margin-bottom: 24px;
}

/*===== dress up slider ==============================*/
/* メイン */
.dress-up-slider {
  margin-bottom: 24px;
}

/* サムネイル */
.dress-up-thumbs-slider {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 12px;
}
/*サムネイルスライダーページネーション*/
.dress-up-thumbs-slider .splide__pagination {
  bottom: -2.5em;
}
.dress-up-thumbs-slider .splide__pagination__page.is-active {
  background: #14468B;
  transform: scale(1.2);
}

/* スライド内で画像を制御 */
.dress-up-slider .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 5 / 2;  /* 好きな比率 */
}

/* 画像が親からはみ出さないように */
.dress-up-slider img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* or cover */
}

.dress-up-slider img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 全体見せ */
  /* object-fit: cover; ← トリミングOKならこっち */
}

.splide__arrow--next {
  right: -3em;
}
.splide__arrow--prev {
    left: -3em;
}

/*スライダーバー*/
.dress-up-progress {
  width: 100%;
  height: 4px;
  background: rgba(0,0,0,0.15);
  margin-top: 12px;
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 40px;
}

.dress-up-progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: rgba(20, 70, 139);
  transition: width 0.3s ease;
}



/*スライダー背景*/
.dress-up-slider {
  position: relative;
  z-index: 1;
  padding-top: 50px;
  padding-bottom: 10px;
  max-width: 1000px;
  margin: 0 auto;
}

/*===シーン背景==========*/
.dress-up-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/airport-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
.dr-bg-02::before {
	background-image: url("../img/dr-bg-02.webp");
}
.dr-bg-03::before {
	background-image: url("../img/dr-bg-03-2.webp");
}
.dr-bg-04::before {
	background-image: url("../img/dr-bg-04-2.webp");
}
.dr-bg-05::before {
	background-image: url("../img/dr-bg-05.webp");
}
.dr-bg-06::before {
	background-image: url("../img/dr-bg-06.webp");
}
.dr-bg-07::before {
	background-image: url("../img/dr-bg-07.webp");
}
.dr-bg-08::before {
	background-image: url("../img/dr-bg-08.webp");
}
.dr-bg-09::before {
	background-image: url("../img/dr-bg-09.webp");
}
.dr-bg-10::before {
	background-image: url("../img/dr-bg-10.webp");
}
.dr-bg-11::before {
	background-image: url("../img/dr-bg-11.webp");
}
.dr-bg-12::before {
	background-image: url("../img/dr-bg-12.webp");
}
.dr-bg-13::before {
	background-image: url("../img/dr-bg-13.webp");
}
.dr-bg-14::before {
	background-image: url("../img/dr-bg-14.webp");
}
@media screen and (max-width: 1024px) {
  .dress-up-thumbs-slider {
    max-width: 80%;
  }
}
@media screen and (max-width: 500px) {
  .dress-up-slider {
    padding-top: 110px;
  }
  .dress-up-slider .splide__slide {
    height: 400px;
  }
  .splide__arrow--next {
    right: -2.5em;
  }
  .splide__arrow--prev {
    left: -2.5em;
  }
  .dress-up-thumbs-slider {
    max-width: 100%;
    padding: 0 8px;
  }
}
/*===== 着用アイテム ==============================*/
.dres-item {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 64px;
    margin-top: 64px;
}
.dres-item h2 {
    font-size: clamp(22px, calc(2.5vw + 12px), 26px);
    margin-bottom: 24px;
}
.item-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0 auto;
}

.item {
  flex: 0 0 auto;
  text-align: center;
  min-width: 150px;
  max-width: 200px;
}

.item img {
  width: 100%;
  height: auto;
  display: block;
}

.item p {
  margin-top: 10px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .item-list {
    flex-direction: column;
  }
}



/* ========= カスタムスクロールバー ======================*/
.sp-bar {
  display: none;
}

@media screen and (max-width: 500px) {
  .dress-up-thumbs-slider .sp-bar {
    display: block;
    width: 100%;
    max-width: 250px;
    height: 4px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    margin: 20px auto 0;
    overflow: hidden;
  }
}
  .dress-up-thumbs-slider .sp-bar__progress {
    display: block;
    height: 100%;
    width: 0%;
    background: #14468B;
    border-radius: 2px;
    transition: width 0.3s ease;
  }



/*================ シーン選びセクション ===================================*/
.c-scene {
  padding: 48px 0;
  background-color: #14468B;
}
.title__cscene {
    color: #fff;
    text-align: center;
    margin-bottom: 32px;
}
.grid-box__cs {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.grid-box__cs .grid-cs {
    grid-column: span 2;
}
.grid-box__cs .grid-cs:nth-child(11) {
    grid-column: 2 / span 2;
}
@media screen and (max-width: 1024px) {
  .grid-box__cs {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .grid-box__cs {
    grid-template-columns: 1fr 1fr;
    width: 80%;
    gap: 16px;
  }
  .grid-box__cs .grid-cs {
    grid-column: auto;
  }
  .grid-box__cs .grid-cs:nth-child(11) {
    grid-column: auto;
  }
}

/*================ contact ===================================*/
    .contact {
        margin-top: 0;
    }