@charset "UTF-8";
/* media query
------------------------------------------ */
/* display
------------------------------------------ */
.is-show-pc {
  display: block;
}
@media (max-width: 767px) {
  .is-show-pc {
    display: none;
  }
}

.is-show-sp {
  display: none;
}
@media (max-width: 767px) {
  .is-show-sp {
    display: block;
  }
}

/* function
------------------------------------------ */
/* ヘッダーオーバーライド
------------------------------------------ */
body {
  background-color: #7f8e99;
}

#Foot {
  background-color: #7f8e99;
}

@media (max-width: 767px) {
  #header {
    height: 13.3333333333vw;
  }
}

.header__wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: var(--zindex-header);
}
@media (max-width: 767px) {
  .header__wrapper {
    position: absolute;
    top: calc(80 * var(--formula));
    width: 100%;
    padding: 0 6vw 0;
    margin: 8vw 0 6vw;
  }
}

@media screen and (max-width: 767px) {
  #header:not(.is-open) .header__inner svg {
    fill: #fff;
  }
  #header:not(.is-open) .cls-4 {
    stroke: #fff;
  }
  #header:not(.is-open).header .navigation__list {
    color: #fff;
  }
  #header:not(.is-open).header .drawer-btn__border {
    background: #fff;
  }
  #header:not(.is-open).header .drawer-btn__border::after {
    background: #fff;
  }
  #header:not(.is-open).header .drawer-btn__border::before {
    background: #fff;
  }
}
@media screen and (min-width: 768px) {
  #header .header__inner svg {
    fill: #fff;
  }
  #header .cls-4 {
    stroke: #fff;
  }
  #header.header .navigation__list {
    color: #fff;
  }
  #header:not(.is-open).header .drawer-btn__border {
    background: #fff;
  }
  #header:not(.is-open).header .drawer-btn__border::after {
    background: #fff;
  }
  #header:not(.is-open).header .drawer-btn__border::before {
    background: #fff;
  }
}
.AU250912WJERSEY {
  /* 可変設定
  ------------------------------------------ */
  /*デザインの値*/
  --pc-width: 1400; /*PCデザイン幅*/
  --sp-width: 750; /*SPデザイン幅*/
  --pc-artboard-width: 450; /*SP共通デザイン幅*/
  --sp-artboard-width: 750; /*PC共通デザイン幅*/
  /*可変率の計算式*/
  --formula: calc(
    var(--variable) * var(--ratio)
  ); /*SP,PC共通箇所の可変割合の計算式*/
  --formula_pc: calc(var(--variable) * 1); /*PCデザインの可変割合の計算式*/
  /* PC画面幅 1400px以上 固定 */
  /* PC画面幅 768～1400px 可変 */
  /* SP画面幅 767px以下 可変 */
  /* mixin
  ------------------------------------------ */
  /* reset
  ------------------------------------------ */
  /* 共通
  ------------------------------------------ */
  /* LP style
  ------------------------------------------ */
  background-color: #7f8e99;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1401px) {
  .AU250912WJERSEY {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: 1px; /* 固定値（可変しない） */
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .AU250912WJERSEY {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
@media (max-width: 767px) {
  .AU250912WJERSEY {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}
.AU250912WJERSEY img {
  width: 100%;
  height: auto;
}
.AU250912WJERSEY * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.AU250912WJERSEY .AU250912WJERSEY-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .AU250912WJERSEY .AU250912WJERSEY-inner {
    display: block;
  }
}
.AU250912WJERSEY .AU250912WJERSEY-inner .mv {
  position: sticky;
  top: 0;
  width: 50%;
  height: 100%;
}
@media (max-width: 767px) {
  .AU250912WJERSEY .AU250912WJERSEY-inner .mv {
    position: relative;
    width: 100%;
    height: auto;
  }
}
.AU250912WJERSEY .AU250912WJERSEY-inner .mv-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: calc(340 * var(--formula_pc));
  top: 53.5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 767px) {
  .AU250912WJERSEY .AU250912WJERSEY-inner .mv-logo {
    width: calc(485 * var(--formula));
    top: auto;
    bottom: calc(443 * var(--formula));
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.AU250912WJERSEY .AU250912WJERSEY-inner .mv-logo-01 {
  display: block;
  width: calc(268 * var(--formula_pc));
}
@media (max-width: 767px) {
  .AU250912WJERSEY .AU250912WJERSEY-inner .mv-logo-01 {
    width: calc(399 * var(--formula));
  }
}
.AU250912WJERSEY .AU250912WJERSEY-inner .mv-logo-02 {
  display: block;
  margin-top: calc(24 * var(--formula_pc));
  width: calc(340 * var(--formula_pc));
}
@media (max-width: 767px) {
  .AU250912WJERSEY .AU250912WJERSEY-inner .mv-logo-02 {
    margin-top: calc(24 * var(--formula));
    width: calc(485 * var(--formula));
  }
}
.AU250912WJERSEY .AU250912WJERSEY-inner .mv-img {
  width: 100%;
  height: 100vh;
  opacity: 0;
}
@media (min-width: 1401px) {
  .AU250912WJERSEY .AU250912WJERSEY-inner .mv-img {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .AU250912WJERSEY .AU250912WJERSEY-inner .mv-img {
    height: auto;
  }
}
.AU250912WJERSEY .AU250912WJERSEY-inner .mv-img img {
  height: 100vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media (min-width: 1401px) {
  .AU250912WJERSEY .AU250912WJERSEY-inner .mv-img img {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .AU250912WJERSEY .AU250912WJERSEY-inner .mv-img img {
    -o-object-fit: fill;
       object-fit: fill;
    height: auto;
  }
}
.AU250912WJERSEY .AU250912WJERSEY-inner .mv-txt {
  font-size: calc(26 * var(--formula));
  font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Arial, "メイリオ", Meiryo, sans-serif;
  font-family: var(--font-primary);
  font-weight: 600;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.76923077;
  letter-spacing: 0.075em;
  text-align: center;
  margin-top: calc(475 * var(--formula_pc));
  line-height: 2.1153846154;
}
@media (max-width: 767px) {
  .AU250912WJERSEY .AU250912WJERSEY-inner .mv-txt {
    letter-spacing: 0.05em;
  }
}
@media (max-width: 767px) {
  .AU250912WJERSEY .AU250912WJERSEY-inner .mv-txt {
    margin-top: calc(127 * var(--formula));
    line-height: 1.92307692;
  }
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container {
  width: 50%;
}
@media (max-width: 767px) {
  .AU250912WJERSEY .AU250912WJERSEY-inner .lp-container {
    width: 100%;
  }
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont {
  width: calc(750 * var(--variable) * var(--ratio));
  margin: 0 auto;
}
@media (max-width: 767px) {
  .AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont {
    width: 100%;
  }
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product01 {
  margin-top: calc(211 * var(--formula_pc));
}
@media (max-width: 767px) {
  .AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product01 {
    margin-top: calc(117 * var(--formula));
  }
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product01-photo-01 {
  width: calc(600 * var(--formula));
  margin-right: auto;
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product01-photo-02 {
  width: calc(480 * var(--formula));
  margin-top: calc(79 * var(--formula));
  margin-left: auto;
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product01-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(14 * var(--formula));
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product01-price a {
  font-family: "nimbus-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(24 * var(--formula));
  line-height: 2.08333333;
  letter-spacing: 0.005em;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product01-price-01 {
  margin-top: calc(31 * var(--formula));
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product01-txt {
  font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Arial, "メイリオ", Meiryo, sans-serif;
  font-family: var(--font-primary);
  font-weight: 600;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(23 * var(--formula));
  letter-spacing: 0.075em;
  text-align: justify;
  font-weight: 500;
  line-height: 1.86956522;
  width: calc(648 * var(--formula));
  margin: calc(64 * var(--formula)) auto 0;
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product02 {
  margin-top: calc(63 * var(--formula));
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product02-photo-01 {
  width: calc(600 * var(--formula));
  margin: 0 auto;
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product02-photo-02 {
  width: calc(600 * var(--formula));
  margin: calc(203 * var(--formula)) auto 0;
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product02-photo-03 {
  width: calc(490 * var(--formula));
  margin: calc(73 * var(--formula)) auto 0;
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product02-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(14 * var(--formula));
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product02-price a {
  font-family: "nimbus-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(24 * var(--formula));
  line-height: 2.08333333;
  letter-spacing: 0.005em;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product02-price-01 {
  margin-top: calc(30 * var(--formula));
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product02-txt {
  font-size: calc(26 * var(--formula));
  font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Arial, "メイリオ", Meiryo, sans-serif;
  font-family: var(--font-primary);
  font-weight: 600;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.76923077;
  letter-spacing: 0.075em;
  text-align: center;
  margin: calc(74 * var(--formula)) auto 0;
}
@media (max-width: 767px) {
  .AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product02-txt {
    letter-spacing: 0.05em;
  }
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product03 {
  margin-top: calc(192 * var(--formula));
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product03-photo-01 {
  width: calc(530 * var(--formula));
  margin: 0 auto;
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product03-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(14 * var(--formula));
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product03-price a {
  font-family: "nimbus-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(24 * var(--formula));
  line-height: 2.08333333;
  letter-spacing: 0.005em;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product03-price-01 {
  margin-top: calc(29 * var(--formula));
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product04 {
  margin-top: calc(29 * var(--formula));
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product04-photo-01 {
  width: calc(600 * var(--formula));
  margin: 0 auto;
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product04-photo-02 {
  position: relative;
  z-index: 1;
  width: calc(750 * var(--formula));
  margin: calc(69 * var(--formula)) auto 0;
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product04-photo-03 {
  width: calc(530 * var(--formula));
  margin: calc(-47 * var(--formula)) auto 0;
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product04-photo-04 {
  width: calc(650 * var(--formula));
  margin: calc(64 * var(--formula)) auto 0;
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product04-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(14 * var(--formula));
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product04-price a {
  font-family: "nimbus-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(24 * var(--formula));
  line-height: 2.08333333;
  letter-spacing: 0.005em;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product04-price-01 {
  margin-top: calc(30 * var(--formula));
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product04-txt-01 {
  font-size: calc(26 * var(--formula));
  font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Arial, "メイリオ", Meiryo, sans-serif;
  font-family: var(--font-primary);
  font-weight: 600;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.76923077;
  letter-spacing: 0.075em;
  text-align: center;
  margin: calc(72 * var(--formula)) auto 0;
}
@media (max-width: 767px) {
  .AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product04-txt-01 {
    letter-spacing: 0.05em;
  }
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .product04-txt-02 {
  font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Arial, "メイリオ", Meiryo, sans-serif;
  font-family: var(--font-primary);
  font-weight: 600;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(23 * var(--formula));
  letter-spacing: 0.075em;
  text-align: justify;
  font-weight: 500;
  line-height: 1.86956522;
  width: calc(650 * var(--formula));
  margin: calc(78 * var(--formula)) auto 0;
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .lp-footer {
  margin-top: calc(31 * var(--formula));
}
.AU250912WJERSEY .AU250912WJERSEY-inner .lp-container .lp-cont .lp-footer-photo {
  width: calc(530 * var(--formula));
  margin: 0 auto;
}
.AU250912WJERSEY .view-all {
  padding: calc(173 * var(--formula_pc)) 0 calc(176 * var(--formula_pc));
  text-align: center;
}
@media (max-width: 767px) {
  .AU250912WJERSEY .view-all {
    padding: calc(201 * var(--formula)) 0 calc(92 * var(--formula));
  }
}
.AU250912WJERSEY .view-all-link {
  position: relative;
  display: inline-block;
  font-family: "nimbus-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(30 * var(--formula));
  letter-spacing: 0.057em;
}
.AU250912WJERSEY .view-all-link::after {
  content: "";
  position: absolute;
  left: 0;
  background-color: #fff;
  bottom: calc(-6 * var(--formula_pc));
  width: 100%;
  height: 1px;
}
@media (max-width: 767px) {
  .AU250912WJERSEY .view-all-link::after {
    bottom: calc(-4 * var(--formula));
  }
}