@charset "UTF-8";
/*----------------------------------------
共通パーツ
-----------------------------------------*/
#item .itemSection__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 19rem;
  margin-bottom: 8rem;
  max-width: 140rem;
  margin-inline: auto;
}
#item .itemSection__head::before, #item .itemSection__head::after {
  content: "";
  width: 33%;
  height: 1px;
  background: #d8d8d8;
}
#item .itemSection__head h2 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  min-width: 13rem;
}
#item .itemModels {
  display: -ms-grid;
  display: grid;
  gap: 7rem 10rem;
  max-width: 110rem;
  margin: 0 auto;
}
#item .itemModels--jacket {
  -ms-grid-columns: (minmax(0, 1fr))[2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
#item .itemModels--pants {
  -ms-grid-columns: minmax(0, 1fr) 8rem minmax(0, 1fr) 8rem minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 137rem;
  gap: 10rem 8rem;
}
#item .itemModel {
  text-align: center;
}
#item .itemModel h3 {
  margin-bottom: 0.8rem;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
}
#item .itemModel h3:has(+ .itemFigure) {
  margin-bottom: 3.5rem;
}
#item .itemModel__lead {
  min-height: 3.4em;
  margin-bottom: 1.4rem;
  font-size: 1.2rem;
  line-height: 1.7;
  text-align: center;
}
#item .itemModel__text {
  margin-top: 1.7rem;
  line-height: 1.9;
  text-align: justify;
}
#item .itemFigure {
  max-width: 40rem;
  margin: 0 auto;
}
#item .itemFigure.is-single .itemSliderNav {
  visibility: hidden;
}
#item .itemSlider {
  background: #f4f2ed;
}
#item .itemSlider:not(.slick-initialized) .itemSlide:not(:first-child) {
  display: none;
}
#item .itemSlider img {
  width: 100%;
}
#item .itemSliderNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  min-height: 2.8rem;
  margin-top: 2rem;
}
#item .itemSliderNav__arrow {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}
#item .itemSliderNav__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 0.9rem;
  border-top: 1px solid #1a1a1a;
  border-left: 1px solid #1a1a1a;
}
#item .itemSliderNav__arrow--prev::before {
  -webkit-transform: translate(-35%, -50%) rotate(-45deg);
          transform: translate(-35%, -50%) rotate(-45deg);
}
#item .itemSliderNav__arrow--next::before {
  -webkit-transform: translate(-65%, -50%) rotate(135deg);
          transform: translate(-65%, -50%) rotate(135deg);
}
#item .itemSliderNav__count {
  min-width: 4.2rem;
  font-size: 1.2rem !important;
  line-height: 1;
  text-align: center;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#item .itemSliderNav__count span {
  font-size: 1.2rem !important;
}
#item .itemOptions {
  max-width: 135rem;
  margin: 14rem auto 0;
}
#item .itemOptions h3 {
  margin-bottom: 8rem;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
#item .itemOptions__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 5rem minmax(0, 1fr) 5rem minmax(0, 1fr) 5rem minmax(0, 1fr);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3rem 5rem;
}
#item .itemOptions__grid:has(> :nth-child(3):last-child) {
  -ms-grid-columns: (minmax(0, 1fr))[3];
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: calc((100% - 15rem) * 0.75 + 10rem);
  margin-inline: auto;
}
#item .itemOptions__grid:has(> :nth-child(2):last-child) {
  -ms-grid-columns: (minmax(0, 1fr))[2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: calc((100% - 15rem) * 0.5 + 5rem);
  margin-inline: auto;
}
#item .itemOptions__grid li {
  text-align: center;
}
#item .itemOptions__grid img {
  width: 100%;
  margin-bottom: 1.1rem;
}
#item .itemOptions__grid span,
#item .itemOptions__grid small {
  display: block;
  font-size: 2rem;
  line-height: 1.5;
}

@media only screen and (max-width: 768px) {
  #item .itemSection__head {
    gap: 1rem;
    margin-bottom: 2.7rem;
  }
  #item .itemSection__head::before, #item .itemSection__head::after {
    width: 100%;
  }
  #item .itemSection__head h2 {
    min-width: 12rem;
    font-size: 1.7rem;
  }
  #item .itemModels,
  #item .itemModels--jacket,
  #item .itemModels--pants {
    display: block;
    max-width: 36rem;
  }
  #item .itemModel + .itemModel {
    margin-top: 5.4rem;
  }
  #item .itemModel h3 {
    margin-bottom: 0.7rem;
    font-size: 2.5rem;
  }
  #item .itemModel h3:has(+ .itemFigure) {
    margin-bottom: 2rem;
  }
  #item .itemModel__lead {
    min-height: 0;
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  #item .itemModel__text {
    margin-top: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.8;
  }
  #item .itemSliderNav {
    gap: 1rem;
    min-height: 2rem;
    margin-top: 1.5rem;
  }
  #item .itemSliderNav__arrow {
    width: 2rem;
    height: 2rem;
  }
  #item .itemSliderNav__count {
    min-width: 5.5rem;
    font-size: 1.1rem !important;
  }
  #item .itemSliderNav__count span {
    font-size: 1.1rem !important;
  }
  #item .itemOptions {
    max-width: 31rem;
    margin-top: 4.4rem;
  }
  #item .itemOptions h3 {
    margin-bottom: 2rem;
    font-size: 1.7rem;
  }
  #item .itemOptions__grid {
    -ms-grid-columns: minmax(0, 1fr) 2.5rem minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }
  #item .itemOptions__grid:has(> :nth-child(3):last-child), #item .itemOptions__grid:has(> :nth-child(2):last-child) {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: auto;
    margin-inline: auto;
  }
  #item .itemOptions__grid img {
    margin-bottom: 0.7rem;
  }
  #item .itemOptions__grid span,
  #item .itemOptions__grid small {
    font-size: 1.2rem;
    line-height: 1.45;
  }
}
/*----------------------------------------
MAIN
-----------------------------------------*/
#item .itemMv {
  background: #f4f2ed;
}
#item .itemMv__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10rem min(44vw, 58rem);
  grid-template-columns: 1fr min(44vw, 58rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10rem;
  max-width: 160rem;
  min-height: 58rem;
  padding: 5rem 0 8rem;
}
#item .itemMv__text {
  padding-left: 1.8rem;
  font-size: 1.7rem;
}
#item .itemMv__text h1 {
  margin-bottom: 2.4rem;
  font-size: 8rem;
  font-weight: 600;
  line-height: 1;
}
#item .itemMv__text p {
  line-height: 2.2;
}
#item .itemMv__label {
  margin-bottom: 5rem;
  font-size: 2.4rem;
  font-weight: 500;
}
#item .itemMv__image img {
  width: 100%;
}
#item .itemSection {
  padding-top: 9.5rem;
}
#item .itemSection + .itemSection {
  padding-top: 19rem;
}
#item .itemSection:last-of-type {
  margin-bottom: 17rem;
}

@media only screen and (min-width: 769px) {
  header {
    display: none;
  }
  #item {
    padding-top: 0 !important;
  }
}
@media only screen and (max-width: 768px) {
  #item .itemMv {
    margin-top: 0;
  }
  #item .itemMv__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
    min-height: 0;
    padding: 0 0 4.6rem;
  }
  #item .itemMv__text {
    max-width: none;
    padding: 3.8rem 0 0;
    text-align: center;
  }
  #item .itemMv__text h1 {
    margin-bottom: 2rem;
    font-size: 3.5rem;
  }
  #item .itemMv__text p {
    font-size: 1.2rem;
    line-height: 2;
    text-align: center;
  }
  #item .itemMv__label {
    margin-bottom: 2rem;
    font-size: 1rem !important;
  }
  #item .itemMv__image {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
  #item .itemMv__image img {
    width: 100%;
  }
  #item .itemSection {
    padding-top: 4rem;
  }
  #item .itemSection + .itemSection {
    padding-top: 7rem;
  }
  #item .itemSection:last-of-type {
    margin-bottom: 7rem;
  }
}