@charset "UTF-8";
/*
Utopia Std Regular
font-family: "utopia-std", serif;
font-weight: 400;
font-style: normal;

Utopia Std Display
font-family: "utopia-std-display", serif;
font-weight: 400;
font-style: normal;

Utopia Std Semibold Display
font-family: "utopia-std-display", serif;
font-weight: 600;
font-style: normal;
*/
:root {
  --white: #fff;
  --black: #000;
  --text-main: #171818;
  --bg-main: #fff;
  --line-color: #000;
  --font: utopia-std, 游明朝, YuMincho, ヒラギノ明朝 Pro W3, Hiragino Mincho Pro, ＭＳ Ｐ明朝, MS PMincho, serif;
  --font-en: utopia-std-display, sans-serif;
  --pc-width: 1400;
  --tb-width: 768;
  --sp-width: 750;
}

/*----------共通設定 pc----------*/
* {
  font-feature-settings: normal;
}

* > #st231011tweed {
  font-family: var(--font);
  font-weight: 300;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 62.5%;
}

/*----------共通設定 tablet----------*/
@media only screen and (max-width: 1400px) and (min-width: 768px) {
  html {
    font-size: 0.7142857143vw;
  }
}
/*----------共通設定 sp----------*/
@media only screen and (max-width: 767px) {
  html {
    font-size: 1.3333333333vw;
  }
}
/*----------LP normalize SP----------*/
#st231011tweed {
  font-family: var(--font);
}
#st231011tweed * {
  box-sizing: border-box;
}
#st231011tweed img {
  height: auto;
  opacity: 1;
  width: 100%;
}
#st231011tweed a {
  text-decoration: none;
}
#st231011tweed picture, #st231011tweed a {
  display: block;
}
#st231011tweed p, #st231011tweed ul, #st231011tweedol, #st231011tweeddl {
  margin: 0;
  list-style: none;
}
@media only screen and (max-width: 767px) {
  #st231011tweed .section__inner {
    max-width: 100%;
  }
  #st231011tweed .pc_only {
    display: none;
  }
  #st231011tweed .sp_only {
    display: block;
  }
}

/*----------LP normalize PC----------*/
@media only screen and (min-width: 768px) {
  #Wrap {
    width: 100% !important;
  }
  .main-area .main-inner {
    max-width: 100%;
    width: 100%;
  }
  .lp__contener .pc_only {
    display: block;
  }
  .lp__contener .sp_only {
    display: none;
  }
  .lp__contener .section__inner {
    margin: 0 auto;
  }
}
/*----------アニメーション----------*/
._fadeup {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateY(50px);
}

._fadeup.fade-active {
  opacity: 1;
  transform: translateY(0rem);
}

._fadein {
  opacity: 0;
  transition: opacity 0.8s;
}

._fadein.fade-active {
  opacity: 1;
}

.fadeup-load {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateY(50px);
}

.fadeup-load.fade-active {
  opacity: 1;
  transform: translateY(0rem);
}

.fade_slide {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateY(50px);
}

.fade_slide.fade-active {
  opacity: 1;
  transform: translateY(0rem);
}

.fade_slide02 {
  opacity: 0;
  transition: opacity 0.5s 0.3s, transform 0.5s 0.3s;
  transform: translateY(50px);
}

.fade_slide02.fade-active {
  opacity: 1;
  transform: translateY(0rem);
}

@media only screen and (max-width: 767px) {
  .fade_slide {
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    transform: translateY(50px);
  }
  .fade_slide.fade-active {
    opacity: 1;
    transform: translateY(0rem);
  }
  .fade_slide02 {
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    transform: translateY(50px);
  }
  .fade_slide02.fade-active {
    opacity: 1;
    transform: translateY(0rem);
  }
}
.rightAnime {
  opacity: 0; /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.title__line, .line-load {
  position: relative;
}

/*.title__line::before, .line-load::before {
  display: block;
  content: "";
  position: absolute;
  transition: height 0.2s 0s;
  width: 1px;
  height: 0;
  background-color: #000000;
  bottom: 0;
  left: 0;
  transform-origin: bottom left;
}
.title__line::after, .line-load::after {
  display: block;
  content: "";
  position: absolute;
  transition: width 0.3s 0.3s;
  width: 0;
  height: 1px;
  background-color: #000000;
  left: 0;
  top: 0;
  transform-origin: top left;
}*/
.fadein-load {
  opacity: 0;
  transition: opacity, 1s;
}

.fadein-load.fade-active {
  opacity: 1;
}

.zoom-load {
  position: relative;
  transform: scale(1.1);
  transition: all 0.8s ease;
  opacity: 0;
}

.zoom-load.fade-active {
  transform: scale(1);
  opacity: 1;
}

._zoom picture {
  position: relative;
  transform: scale(1.1);
  transition: all 0.8s ease;
  opacity: 0;
}

._zoom.fade-active picture {
  transform: scale(1);
  opacity: 1;
}

@keyframes imgMove_R {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
/*----------layout pc----------*/
#st240124denim {
  margin: 0;
  background-size: cover;
  font-family: var(--font);
  font-weight: 400;
  color: #000000;
  position: relative;
  z-index: 0;
  /*----------mv----------*/
  /*----------sec----------*/
  /*----------.item__slider----------*/
}
#st240124denim a:hover {
  /*opacity: 1;*/
}
#st240124denim .sec__inner {
  position: relative;
  width: 90rem;
  margin: 0 auto;
}
#st240124denim img {
  width: 100%;
  display: block;
}
#st240124denim .mainVisual {
  margin: 4.7rem auto 0;
  font-feature-settings: "palt";
  text-align: center;
}
#st240124denim .mainVisual .main__img {
  width: 90rem;
  margin: 8rem auto 0;
}
#st240124denim .mainVisual .main__lead {
  display: block;
  font-size: 1.4rem;
  line-height: 2.1428571429;
  letter-spacing: 0.1em;
  margin: 6rem 0 0 0;
  padding: 0 0 9rem 0;
  font-feature-settings: "palt";
  font-weight: 600;
}
#st240124denim .mainVisual .main__lead span {
  /*font-weight: 500;*/
}
#st240124denim .sec {
  position: relative;
  text-align: center;
}
#st240124denim .sec.sec01 {
  padding: 7.4rem 0 0 0;
}
#st240124denim .sec.sec01 .sec__ttl .title__inner {
  padding: 0 0 0.4rem 0;
}
#st240124denim .sec.sec01 .sec__ttl ._num {
  letter-spacing: -0.03em;
}
#st240124denim .sec.sec01 .sec__ttl ._category {
  letter-spacing: 0.025em;
}
#st240124denim .sec.sec02 {
  padding: 11.1rem 0 0 0;
}
#st240124denim .sec.sec02 .sec__ttl ._category {
  letter-spacing: 0.025em;
}
#st240124denim .sec.sec03 {
  padding: 11.3rem 0 0 0;
}
#st240124denim .sec.sec04 {
  overflow: hidden;
  margin: 11.5rem 0 0 0;
}
#st240124denim .sec.sec04 .sec__inner {
  width: 100%;
}
#st240124denim .sec.sec__heading {
  width: 100%;
  margin: 0 auto;
  padding: 4.5rem 0 6rem 0;
  background-color: rgba(183, 207, 221, 0.3);
}
#st240124denim .sec.sec__heading .sec__anchor {
  width: 40rem;
  position: absolute;
  display: inline-block;
  top: 27.5rem;
  left: -12.2rem;
  font-size: 3.8rem;
  text-align: left;
  z-index: 1;
}
#st240124denim .sec.sec__heading .sec__anchor li {
  box-sizing: border-box;
  display: block;
  width: 100%;
}
#st240124denim .sec.sec__heading .sec__anchor li:nth-of-type(1) a ._num {
  letter-spacing: -0.03em;
}
#st240124denim .sec.sec__heading .sec__anchor li:nth-of-type(1) a ._num::after {
  right: -1.2rem;
}
#st240124denim .sec.sec__heading .sec__anchor li:nth-of-type(1) a ._category {
  letter-spacing: 0.025em;
  padding: 0 0 0 1.5rem;
}
#st240124denim .sec.sec__heading .sec__anchor li:nth-of-type(2) {
  padding: 2.5rem 0 0 6rem;
}
#st240124denim .sec.sec__heading .sec__anchor li:nth-of-type(2) a ._num::after {
  right: -1.8rem;
}
#st240124denim .sec.sec__heading .sec__anchor li:nth-of-type(2) a ._category {
  padding: 0 0 0 1.8rem;
}
#st240124denim .sec.sec__heading .sec__anchor li:nth-of-type(3) {
  padding: 3.5rem 0 0 12rem;
}
#st240124denim .sec.sec__heading .sec__anchor li:nth-of-type(3) a ._num::after {
  right: -1.6rem;
}
#st240124denim .sec.sec__heading .sec__anchor li:nth-of-type(3) a ._category {
  padding: 0 0 0 1.6rem;
}
#st240124denim .sec.sec__heading .sec__anchor a {
  display: flex;
  font-size: 6.8rem;
  font-family: 游明朝体, Yu Mincho;
  color: #a0a0a0;
  line-height: 1;
  letter-spacing: 0.04em;
}
#st240124denim .sec.sec__heading .sec__anchor a ._num {
  display: block;
  font-size: 8.5rem;
  font-family: var(--font-en);
  position: relative;
}
#st240124denim .sec.sec__heading .sec__anchor a ._num::after {
  display: block;
  content: ",";
  position: absolute;
  font-size: 6.8rem;
  font-family: 游明朝体, Yu Mincho;
  top: auto;
  bottom: 0.2rem;
  right: -1.5rem;
  z-index: -1;
}
#st240124denim .sec.sec__heading .sec__anchor a ._category {
  display: block;
  font-size: 8.4rem;
  font-family: var(--font-en);
  padding: 0 0 0 2rem;
}
#st240124denim .sec.sec__heading .img__wrap {
  width: 74rem;
  margin: 0 auto;
}
#st240124denim .sec.sec__heading .content_img {
  width: 36rem;
  height: 54rem;
}
#st240124denim .sec.sec__movie {
  width: 100%;
  margin: 12rem auto 0;
  padding: 4.5rem 0 4.3rem 0;
  background-color: rgba(221, 221, 221, 0.3);
}
#st240124denim .sec.sec__movie .movie__wrap {
  width: 43.2rem;
  margin: 0 auto;
  position: relative;
}
#st240124denim .sec.sec__movie video {
  width: 100%;
  margin: 0 auto;
}
#st240124denim .sec.sec__movie #movie-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 43.2rem;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  cursor: pointer;
}
#st240124denim .sec.sec__movie .movie-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 8rem;
  position: absolute;
}
#st240124denim .sec.sec__movie .movie-button span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #CF000F;
  font-size: 1.2rem;
}
#st240124denim .sec.sec__movie .movie-button span i {
  font-size: 2.6vw; /*アイコンの大きさを指定*/
}
#st240124denim .sec .img__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 70rem;
  margin: 8rem auto 0;
}
#st240124denim .sec .item__desc {
  width: 78rem;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  text-align: left;
}
#st240124denim .sec .item__desc .item__text {
  width: 42rem;
  background-color: rgba(221, 221, 221, 0.3);
  box-sizing: border-box;
  padding: 8rem 0 0 5rem;
}
#st240124denim .sec .item__desc .item__text .item__name {
  font-size: 2.4rem;
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}
#st240124denim .sec .item__desc .item__text .item__point {
  display: inline-block;
  position: relative;
  margin: 5.7rem 0 0 0;
  font-size: 1.8rem;
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}
#st240124denim .sec .item__desc .item__text .item__point::after {
  display: block;
  content: "";
  position: absolute;
  width: 10.4rem;
  height: 1.6rem;
  background-image: url(../img/poing_bg_pc.png);
  background-size: cover;
  background-repeat: no-repeat;
  top: 0.9rem;
  left: -1.4rem;
  z-index: -1;
}
#st240124denim .sec .item__desc .item__text .item__lead {
  font-size: 1.4rem;
  letter-spacing: 0.095em;
  line-height: 2.1428571429;
  margin: 1.5rem 0 0 0;
  font-weight: 600;
  font-feature-settings: "palt";
}
#st240124denim .sec .item__desc .item__img {
  width: 36rem;
}
#st240124denim .sec .sec__ttl {
  width: 90rem;
  display: block;
  margin: 0 auto 3.5rem;
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 700;
  text-align: right;
  position: relative;
  color: #a0a0a0;
}
#st240124denim .sec .sec__ttl::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-size: 1rem 0.1rem;
  background-image: linear-gradient(to right, #000000 0.6rem, transparent 0.4rem);
  background-position: center bottom;
}
#st240124denim .sec .sec__ttl .title__inner {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  width: auto;
  padding: 0 0 0.4rem 0;
  font-size: 4.2rem;
  font-family: 游明朝体, Yu Mincho;
  letter-spacing: 0;
  box-sizing: border-box;
  position: relative;
  color: rgba(160, 160, 160, 0);
  transition: color 1s;
}
#st240124denim .sec .sec__ttl .title__inner::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 2;
  transition: transform 1s;
  transform-origin: left;
  left: auto;
  right: 0;
  transform: scale(1, 1);
}
#st240124denim .sec .sec__ttl ._num {
  font-family: var(--font-en);
  font-size: 4.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
#st240124denim .sec .sec__ttl ._category {
  font-family: var(--font-en);
  font-size: 4.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
#st240124denim .sec .sec__ttl.fade-active .title__inner {
  color: #a0a0a0;
}
#st240124denim .sec .sec__ttl.fade-active .title__inner::after {
  transform: scale(0, 1);
}
#st240124denim .sec .content_img {
  width: 34rem;
  height: 51rem;
}
#st240124denim .sec .content_img a {
  display: block;
}
#st240124denim .sec .content_img.content_img--01 {
  margin: 0 0 0 38rem;
}
#st240124denim .sec .content_img .swiper-pagination {
  display: flex;
  justify-content: space-between;
  width: 1.6rem;
  position: absolute;
  bottom: 0.5rem;
  left: auto;
  right: 0.5rem;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
#st240124denim .sec .content_img .swiper-pagination span {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 0 !important;
  margin: 0;
  border: 1px solid;
  border-color: rgba(255, 255, 255, 0.6);
  background-color: transparent;
  opacity: 1 !important;
}
#st240124denim .sec .content_img .swiper-pagination span.swiper-pagination-bullet-active {
  width: 0.4rem;
  height: 0.4rem;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid transparent;
}
#st240124denim .sec .content_img.swiper:hover {
  opacity: 0.6;
}
#st240124denim .sec .item__textArea {
  margin: 0 0 0 0;
  letter-spacing: 0.12em;
}
#st240124denim .sec .item__textArea .item__lead {
  margin: 5.2rem 0 0 0;
  text-align: center;
  font-size: 1.4rem;
  font-feature-settings: "palt";
  letter-spacing: 0.12em;
  line-height: 2.1428571429;
}
#st240124denim .sec .item__textArea .item__credit {
  margin: 3rem 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 1.5rem;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
}
#st240124denim .sec .item__textArea .item__credit a {
  letter-spacing: 0.05em;
}
#st240124denim .sec .item__textArea .item__credit span {
  width: 100%;
}
#st240124denim .item__slider .sec__inner {
  max-width: max-content !important;
  width: 680rem !important;
  display: flex;
}
#st240124denim .item__slider .slide__list {
  display: flex;
  width: 340rem;
  justify-content: space-around;
  flex-wrap: wrap;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 60s;
  animation-name: imgMove_R;
}
#st240124denim .item__slider .slide__list li {
  width: 170rem;
  padding: 0;
}
#st240124denim .all_item_btn {
  width: 46rem;
  height: 7rem;
  background-color: #dddddd;
  color: #000000;
  margin: 13.2rem auto 0;
  margin-bottom: 10rem;
}
#st240124denim .all_item_btn a {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  letter-spacing: 0.035em;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  padding: 2.5rem 2rem 0 0;
  box-sizing: border-box;
  font-family: var(--font-en);
  font-weight: 600;
}
#st240124denim .all_item_btn a::after {
  display: block;
  content: "";
  position: absolute;
  height: calc(1rem/2 * 1.7320508076);
  width: 1rem;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  z-index: 1;
  background-color: #000000;
  transform: rotate(90deg);
  right: 13rem;
  top: 3rem;
}
#st240124denim .footer_border {
  margin: auto;
  margin-top: 9.8rem;
  border-bottom: 1px solid #000;
}
#st240124denim .staff {
  margin: auto;
  margin-top: 1.6rem;
  padding-left: 0;
  width: 112rem;
  text-align: left;
}
#st240124denim .staff .staff__ttl {
  font-size: 1.5rem;
  font-weight: 200;
  margin-bottom: 0rem;
}
#st240124denim .staff .staff__ttl .sc01 {
  margin-top: 0.6rem;
  margin-bottom: 2.4rem;
}
#st240124denim .staff__credit {
  margin: 0.5rem 0 0;
  font-size: 1.4rem;
  line-height: 1.6428571429;
  letter-spacing: 0.05em;
  font-weight: 200;
}

@media only screen and (max-width: 767px) {
  .main-area .main-inner {
    padding: 0;
  }
  /*----------layout sp----------*/
  #st240124denim {
    max-width: 100%;
    width: calc(750 * (100vw/750));
    margin: 0;
    position: relative;
    background-color: #fff;
    border: none;
    font-family: var(--font);
    /*----------mv----------*/
    /*----------sec----------*/
    /*----------.item__slider----------*/
  }
  #st240124denim a:hover {
    opacity: 1;
  }
  #st240124denim.pc_only {
    display: none !important;
  }
  #st240124denim .sec__inner {
    width: 100%;
  }
  #st240124denim .mainVisual {
    width: calc(750 * (100vw/750));
    max-width: 100%;
    margin: 0 auto 0;
  }
  #st240124denim .mainVisual .main__img {
    width: 100%;
    margin: 0 auto 0;
  }
  #st240124denim .mainVisual .main__lead {
    margin: calc(90 * (100vw/750)) 0 0 0;
    padding: 0 0 calc(130 * (100vw/750)) 0;
    font-size: calc(22 * (100vw/750));
    line-height: 2;
  }
  #st240124denim .section-list {
    border: none;
    background-color: #fff;
  }
  #st240124denim .sec {
    width: 100%;
    border: none;
  }
  #st240124denim .sec.sec01 {
    padding: calc(107 * (100vw/750)) 0 0 0;
  }
  #st240124denim .sec.sec01 .sec__ttl .title__inner {
    padding: 0 calc(20 * (100vw/750)) 0 0;
  }
  #st240124denim .sec.sec01 .sec__ttl ._num {
    letter-spacing: -0.03em;
  }
  #st240124denim .sec.sec01 .sec__ttl ._category {
    letter-spacing: 0.025em;
  }
  #st240124denim .sec.sec02 {
    padding: calc(107 * (100vw/750)) 0 0 0;
  }
  #st240124denim .sec.sec03 {
    padding: calc(115 * (100vw/750)) 0 0 0;
  }
  #st240124denim .sec.sec04 {
    margin: calc(106 * (100vw/750)) 0 0 0;
  }
  #st240124denim .sec.sec04 .sec__inner {
    width: 100%;
  }
  #st240124denim .sec.sec__heading {
    padding: calc(65 * (100vw/750)) 0 calc(85 * (100vw/750)) 0;
  }
  #st240124denim .sec.sec__heading .sec__anchor {
    width: calc(480 * (100vw/750));
    top: calc(215 * (100vw/750));
    left: calc(22 * (100vw/750));
    font-size: calc(96 * (100vw/750));
    z-index: 1;
  }
  #st240124denim .sec.sec__heading .sec__anchor li {
    box-sizing: border-box;
    display: block;
    width: 100%;
  }
  #st240124denim .sec.sec__heading .sec__anchor li:nth-of-type(1) a ._num {
    letter-spacing: -0.03em;
  }
  #st240124denim .sec.sec__heading .sec__anchor li:nth-of-type(1) a ._num::after {
    right: calc(-15 * (100vw/750));
  }
  #st240124denim .sec.sec__heading .sec__anchor li:nth-of-type(1) a ._category {
    letter-spacing: 0.02em;
  }
  #st240124denim .sec.sec__heading .sec__anchor li:nth-of-type(2) {
    padding: calc(12 * (100vw/750)) 0 0 0;
  }
  #st240124denim .sec.sec__heading .sec__anchor li:nth-of-type(2) a ._num::after {
    right: calc(-23 * (100vw/750));
  }
  #st240124denim .sec.sec__heading .sec__anchor li:nth-of-type(2) a ._category {
    letter-spacing: 0.02em;
  }
  #st240124denim .sec.sec__heading .sec__anchor li:nth-of-type(3) {
    padding: calc(20 * (100vw/750)) 0 0 0;
  }
  #st240124denim .sec.sec__heading .sec__anchor li:nth-of-type(3) a ._num::after {
    right: calc(-17 * (100vw/750));
  }
  #st240124denim .sec.sec__heading .sec__anchor li:nth-of-type(3) a ._category {
    letter-spacing: 0.04em;
    padding: 0 0 0 calc(14 * (100vw/750));
  }
  #st240124denim .sec.sec__heading .sec__anchor a {
    font-size: calc(96 * (100vw/750));
    font-family: var(--font);
    line-height: 1;
    letter-spacing: 0.04em;
  }
  #st240124denim .sec.sec__heading .sec__anchor a ._num {
    font-size: calc(114 * (100vw/750));
  }
  #st240124denim .sec.sec__heading .sec__anchor a ._num::after {
    display: block;
    content: ",";
    position: absolute;
    font-size: calc(96 * (100vw/750));
    font-family: 游明朝体, Yu Mincho;
    top: auto;
    bottom: calc(6 * (100vw/750));
    right: calc(-10 * (100vw/750));
    z-index: -1;
  }
  #st240124denim .sec.sec__heading .sec__anchor a ._category {
    font-size: calc(116 * (100vw/750));
    font-family: var(--font-en);
  }
  #st240124denim .sec.sec__heading .img__wrap {
    width: 100%;
    margin: 0 auto;
  }
  #st240124denim .sec.sec__heading .content_img {
    width: calc(370 * (100vw/750));
    height: calc(555 * (100vw/750));
  }
  #st240124denim .sec.sec__movie {
    width: 100%;
    margin: calc(120 * (100vw/750)) auto 0;
    padding: calc(65 * (100vw/750)) 0 calc(65 * (100vw/750)) 0;
    background-color: rgba(221, 221, 221, 0.3);
  }
  #st240124denim .sec.sec__movie .movie__wrap {
    width: calc(540 * (100vw/750));
    margin: 0 auto;
  }
  #st240124denim .sec.sec__movie video {
    width: 100%;
    margin: 0 auto;
  }
  #st240124denim .sec.sec__movie #movie-button {
    width: 100%;
  }
  #st240124denim .sec.sec__movie .movie-button {
    width: calc(100 * (100vw/750));
    height: calc(100 * (100vw/750));
  }
  #st240124denim .sec .img__wrap {
    margin: calc(105 * (100vw/750)) 0 0 0;
    width: 100%;
    gap: calc(10 * (100vw/750));
  }
  #st240124denim .sec .item__desc {
    width: calc(565 * (100vw/750));
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
    text-align: left;
    position: relative;
  }
  #st240124denim .sec .item__desc .item__text {
    width: 100%;
    background-color: rgba(221, 221, 221, 0.3);
    box-sizing: border-box;
    padding: calc(55 * (100vw/750)) calc(55 * (100vw/750)) calc(63 * (100vw/750)) calc(60 * (100vw/750));
    position: relative;
  }
  #st240124denim .sec .item__desc .item__text .item__point {
    margin: 0 0 0 0;
    font-size: calc(30 * (100vw/750));
    letter-spacing: 0.05em;
    line-height: 1;
    z-index: 0;
  }
  #st240124denim .sec .item__desc .item__text .item__point::after {
    width: calc(180 * (100vw/750));
    height: calc(28 * (100vw/750));
    background-image: url(../img/poing_bg_sp.png);
    background-size: cover;
    background-repeat: no-repeat;
    top: calc(10 * (100vw/750));
    left: calc(-24 * (100vw/750));
    z-index: -1;
  }
  #st240124denim .sec .item__desc .item__text .item__lead {
    font-size: calc(22 * (100vw/750));
    letter-spacing: 0.095em;
    line-height: 2;
    margin: calc(27 * (100vw/750)) 0 0 0;
    font-feature-settings: "palt";
  }
  #st240124denim .sec .item__desc .item__text .item__lead:nth-of-type(n+2) {
    margin: calc(24 * (100vw/750)) 0 0 0;
  }
  #st240124denim .sec .item__desc .item__img {
    width: 100%;
    position: relative;
  }
  #st240124denim .sec .item__desc .item__img .item__name {
    width: 100%;
    text-align: center;
    font-family: var(--font-en);
    font-size: calc(44 * (100vw/750));
    font-weight: 600;
    position: absolute;
    bottom: calc(32 * (100vw/750));
    left: 0;
    line-height: 1;
    letter-spacing: 0.045em;
    color: #fff;
  }
  #st240124denim .sec .sec__ttl {
    width: 100%;
    display: block;
    margin: 0 auto calc(15 * (100vw/750));
    padding: 0 0 calc(8 * (100vw/750)) 0;
    line-height: 1;
    bottom: 0;
  }
  #st240124denim .sec .sec__ttl::after {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-size: calc(10 * (100vw/750)) 1px;
    background-image: linear-gradient(to right, #000000 calc(6 * (100vw/750)), transparent calc(4 * (100vw/750)));
    bottom: 0;
  }
  #st240124denim .sec .sec__ttl .title__inner {
    font-size: calc(66 * (100vw/750));
    padding: 0 calc(20 * (100vw/750)) 0 0;
  }
  #st240124denim .sec .sec__ttl ._num {
    font-size: calc(76 * (100vw/750));
    margin: 0 0 0 0;
  }
  #st240124denim .sec .sec__ttl ._category {
    font-size: calc(74 * (100vw/750));
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  #st240124denim .sec .content_img {
    width: calc(370 * (100vw/750));
    height: calc(555 * (100vw/750));
  }
  #st240124denim .sec .content_img.content_img--01 {
    width: calc(370 * (100vw/750));
    margin: 0 0 0 calc(380 * (100vw/750));
  }
  #st240124denim .sec .content_img .swiper-pagination {
    width: calc(30 * (100vw/750));
    bottom: calc(10 * (100vw/750));
    right: calc(10 * (100vw/750));
  }
  #st240124denim .sec .content_img .swiper-pagination span {
    width: calc(12 * (100vw/750));
    height: calc(12 * (100vw/750));
  }
  #st240124denim .sec .content_img .swiper-pagination span.swiper-pagination-bullet-active {
    width: calc(12 * (100vw/750));
    height: calc(12 * (100vw/750));
    border: 2px solid transparent;
  }
  #st240124denim .sec .item__textArea {
    width: 100%;
    margin: 0 0 0 0;
    letter-spacing: 0.12em;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  #st240124denim .sec .item__textArea .item__lead {
    order: 1;
    margin: calc(55 * (100vw/750)) calc(55 * (100vw/750)) calc(55 * (100vw/750)) calc(55 * (100vw/750));
    text-align: center;
    font-size: calc(22 * (100vw/750));
    letter-spacing: 0.12em;
    line-height: 2;
  }
  #st240124denim .sec .item__textArea .item__credit {
    order: 2;
    margin: calc(40 * (100vw/750)) 0 0 0;
    gap: calc(18 * (100vw/750)) calc(20 * (100vw/750));
    font-size: calc(22 * (100vw/750));
    letter-spacing: 0.12em;
  }
  #st240124denim .sec .item__textArea .item__credit a {
    letter-spacing: 0.05em;
  }
  #st240124denim .sec .item__textArea .item__credit span {
    width: 100%;
  }
  #st240124denim .sec .content_price {
    width: 100%;
    margin-top: calc(40 * (100vw/750));
    font-size: calc(22 * (100vw/750));
    line-height: 1.8181818182;
  }
  #st240124denim .sec .content_price a {
    font-weight: 200;
    display: inline;
  }
  #st240124denim .sec .content_price span {
    font-weight: 200;
  }
  #st240124denim .item__slider .sec__inner {
    max-width: max-content !important;
    width: calc(7400 * (100vw/750)) !important;
    display: flex;
  }
  #st240124denim .item__slider .slide__list {
    display: flex;
    width: calc(3700 * (100vw/750));
    justify-content: space-around;
    flex-wrap: wrap;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 60s;
    animation-name: imgMove_R;
  }
  #st240124denim .item__slider .slide__list li {
    width: calc(1850 * (100vw/750));
    padding: 0;
  }
  #st240124denim .all_item_btn {
    width: calc(480 * (100vw/750));
    height: calc(80 * (100vw/750));
    margin: calc(130 * (100vw/750)) auto calc(80 * (100vw/750));
    margin-bottom: calc(130 * (100vw/750));
    border: none;
    line-height: 1;
    position: relative;
  }
  #st240124denim .all_item_btn::after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    top: -1rem;
  }
  #st240124denim .all_item_btn a {
    font-size: calc(24 * (100vw/750));
    font-style: normal;
    text-align: center;
    padding: calc(30 * (100vw/750)) calc(34 * (100vw/750)) 0 0;
    line-height: 1;
  }
  #st240124denim .all_item_btn a::after {
    display: block;
    content: "";
    position: absolute;
    height: calc(1.5rem/2 * 1.7320508076);
    width: 1.5rem;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    transform: rotate(90deg);
    right: calc(117 * (100vw/750));
    top: calc(33 * (100vw/750));
    letter-spacing: 0.04em;
  }
  #st240124denim .all_item_btn picture {
    line-height: 1;
  }
  #st240124denim .all_item_btn img {
    line-height: 1;
  }
  #st240124denim .footer_border {
    margin: auto;
    margin-top: 9.8rem;
    border-bottom: 1px solid #000;
  }
  #st240124denim .staff {
    margin: 0;
    padding: calc(38 * (100vw/750)) 0 calc(40 * (100vw/750)) calc(51 * (100vw/750));
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #000;
  }
  #st240124denim .staff .staff__ttl {
    font-size: calc(22 * (100vw/750));
    font-weight: 200;
    margin-bottom: 0rem;
  }
  #st240124denim .staff .staff__ttl .sc01 {
    margin-top: calc(22 * (100vw/750));
    margin-bottom: calc(22 * (100vw/750));
  }
  #st240124denim .staff__credit {
    margin: calc(9 * (100vw/750)) 0 0;
    font-size: calc(22 * (100vw/750));
    line-height: 1.8181818182;
  }
}/*# sourceMappingURL=style.css.map */