@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
------------------------------------------ */
/* オーバーライド
------------------------------------------ */
@media (max-width: 767px) {
  #header {
    height: 13.3333333333vw;
  }
}

.header .information {
  height: auto;
}

.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 (max-width: 767px) {
  #header {
    height: 13.3333333333vw;
  }
}

.header .information {
  height: auto;
}

.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;
  }
  #header.is-open .header__inner svg {
    fill: #000;
  }
  #header.is-open .cls-4 {
    stroke: #000;
  }
  #header.is-open .navigation__list {
    color: #000;
  }
  #header.is-open .drawer-btn__border::after {
    background: #000;
  }
  #header.is-open .drawer-btn__border::before {
    background: #000;
  }
}
@media screen and (max-width: 767px) {
  #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;
  }
}
.AU260422LIMITED {
  /* 可変設定
  ------------------------------------------ */
  /*デザインの値*/
  --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以上 固定 */
}
@media (min-width: 1401px) {
  .AU260422LIMITED {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: 1px; /* 固定値（可変しない） */
  }
}
.AU260422LIMITED {
  /* PC画面幅 768～1400px 可変 */
}
@media (min-width: 768px) and (max-width: 1400px) {
  .AU260422LIMITED {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
.AU260422LIMITED {
  /* SP画面幅 767px以下 可変 */
}
@media (max-width: 767px) {
  .AU260422LIMITED {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}
.AU260422LIMITED {
  /* mixin
  ------------------------------------------ */
  /* reset
  ------------------------------------------ */
}
.AU260422LIMITED img {
  width: 100%;
  height: auto;
}
.AU260422LIMITED * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.AU260422LIMITED {
  /* animation
  ------------------------------------------ */
}
.AU260422LIMITED .js-fade-up {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 1s ease-out;
  transition: 1s ease-out;
}
.AU260422LIMITED .js-fade-up.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.AU260422LIMITED .js-scale {
  overflow: hidden;
}
.AU260422LIMITED .js-scale a > img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 1s ease-out;
  transition: 1s ease-out;
}
.AU260422LIMITED .js-scale.is-active a > img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.AU260422LIMITED {
  /* 共通
  ------------------------------------------ */
  font-family: "Hiragino Kaku Gothic ProN W5", "ヒラギノ角ゴ ProN W5", "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ", sans-serif;
  font-weight: 500;
  /* LP style
  ------------------------------------------ */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .AU260422LIMITED {
    display: block;
  }
}
.AU260422LIMITED .lp-container {
  width: 50%;
}
@media (max-width: 767px) {
  .AU260422LIMITED .lp-container {
    width: 100%;
  }
}
.AU260422LIMITED .lp-cont {
  width: calc(750 * var(--variable) * var(--ratio));
  margin: 0 auto;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 6s;
          transition-delay: 6s;
}
.AU260422LIMITED .lp-cont.is-active {
  opacity: 1;
}
@media (max-width: 767px) {
  .AU260422LIMITED .lp-cont {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
}
.AU260422LIMITED {
  /* mv
  ------------------------------------------ */
}
.AU260422LIMITED .mv {
  position: sticky;
  top: 0;
  width: 50%;
  height: 100vh;
}
@media (max-width: 767px) {
  .AU260422LIMITED .mv {
    position: relative;
    height: auto;
    width: 100%;
  }
}
.AU260422LIMITED .mv-logo-wrapper {
  position: absolute;
  top: 42%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
@media (max-width: 767px) {
  .AU260422LIMITED .mv-logo-wrapper {
    top: 47.7%;
  }
}
.AU260422LIMITED .mv-logo-01 {
  width: calc(518 * var(--formula_pc));
  margin: 0 auto;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.AU260422LIMITED .mv-logo-01 img {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: 2s ease-out;
  transition: 2s ease-out;
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
  opacity: 0;
}
.AU260422LIMITED .mv-logo-01.is-active img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
@media (max-width: 767px) {
  .AU260422LIMITED .mv-logo-01 {
    width: calc(620 * var(--formula));
  }
}
.AU260422LIMITED .mv-logo-02 {
  width: calc(347 * var(--formula_pc));
  margin: calc(-12 * var(--formula_pc)) auto 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.AU260422LIMITED .mv-logo-02 img {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: 2s ease-out;
  transition: 2s ease-out;
  -webkit-transition-delay: 3.5s;
          transition-delay: 3.5s;
  opacity: 0;
}
.AU260422LIMITED .mv-logo-02.is-active img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
@media (max-width: 767px) {
  .AU260422LIMITED .mv-logo-02 {
    width: calc(416 * var(--formula));
    margin: calc(-14 * var(--formula)) auto 0;
  }
}
.AU260422LIMITED .mv-lead {
  font-family: "Hiragino Kaku Gothic ProN W5", "ヒラギノ角ゴ ProN W5", "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ", sans-serif;
  font-weight: 500;
  position: absolute;
  width: 100%;
  top: 65.5%;
  left: 0;
  right: 0;
  margin: auto;
  font-size: calc(20.7 * var(--formula_pc));
  line-height: 1.57971014;
  color: #fff;
  text-align: center;
  opacity: 0;
  -webkit-transition: 1s ease-out;
  transition: 1s ease-out;
  -webkit-transition-delay: 5s;
          transition-delay: 5s;
  z-index: 1;
  pointer-events: none;
  text-shadow: 0 0 10.8px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.05em;
}
.AU260422LIMITED .mv-lead.is-active {
  opacity: 1;
}
@media (max-width: 767px) {
  .AU260422LIMITED .mv-lead {
    top: 70.5%;
    font-size: calc(24.84 * var(--formula));
  }
}
.AU260422LIMITED .mv-img {
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
@media (max-width: 767px) {
  .AU260422LIMITED .mv-img {
    height: auto;
  }
}
.AU260422LIMITED .mv-img.is-active {
  opacity: 1;
}
.AU260422LIMITED .mv-img img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media (max-width: 767px) {
  .AU260422LIMITED .mv-img img {
    -o-object-fit: fill;
       object-fit: fill;
    height: auto;
  }
}
.AU260422LIMITED .txt {
  font-family: "Hiragino Kaku Gothic ProN W5", "ヒラギノ角ゴ ProN W5", "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: calc(25 * var(--formula));
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
.AU260422LIMITED .txt-01 {
  margin-top: calc(70 * var(--formula));
}
.AU260422LIMITED .txt-02 {
  margin-top: calc(70 * var(--formula));
}
.AU260422LIMITED .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(22 * var(--formula)) 0;
  width: calc(750 * var(--formula));
  height: calc(470 * var(--formula));
  margin: calc(84 * var(--formula)) auto 0;
  background-image: url("../img/bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  font-family: "Hiragino Kaku Gothic ProN W5", "ヒラギノ角ゴ ProN W5", "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ", sans-serif;
  font-weight: 500;
  font-weight: 600;
  color: #fff;
}
.AU260422LIMITED .detail-ttl {
  margin-top: calc(92 * var(--formula));
  font-size: calc(30 * var(--formula));
  text-align: center;
}
.AU260422LIMITED .detail-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(690 * var(--formula));
  height: calc(215 * var(--formula));
  margin: calc(10 * var(--formula)) auto 0;
  border: 2px solid #fff;
}
.AU260422LIMITED .detail-txt {
  width: calc(650 * var(--formula));
  font-size: calc(23 * var(--formula));
  line-height: 1.86956522;
  letter-spacing: 0.04em;
}
.AU260422LIMITED {
  /* photo
  ------------------------------------------ */
}
.AU260422LIMITED .photo-01 {
  position: relative;
  width: calc(700 * var(--formula));
  margin: calc(348 * var(--formula)) auto 0;
  overflow: hidden;
}
.AU260422LIMITED .photo-01 a > img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 1s ease-out;
  transition: 1s ease-out;
}
.AU260422LIMITED .photo-01.is-active a > img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.AU260422LIMITED .photo-01 a > img {
  -webkit-transition-delay: 6.5s;
          transition-delay: 6.5s;
}
@media (max-width: 767px) {
  .AU260422LIMITED .photo-01 a > img {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
}
@media (max-width: 767px) {
  .AU260422LIMITED .photo-01 {
    margin: calc(130 * var(--formula)) auto 0;
  }
}
.AU260422LIMITED .photo-01-txt {
  width: calc(84 * var(--formula));
  position: absolute;
  top: calc(326 * var(--formula));
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.AU260422LIMITED .photo-01-price {
  width: 100%;
  position: absolute;
  bottom: calc(40 * var(--formula));
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(14 * var(--formula));
  z-index: 1;
}
.AU260422LIMITED .photo-01-price a {
  font-size: calc(19.69 * var(--formula));
  line-height: 2;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  letter-spacing: 0.005em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #fff;
}
.AU260422LIMITED .photo-01-price {
  gap: calc(12 * var(--formula));
}
.AU260422LIMITED .photo-02 {
  width: calc(600 * var(--formula));
  margin: calc(66 * var(--formula)) auto 0 calc(32 * var(--formula));
}
.AU260422LIMITED .photo-03 {
  width: calc(550 * var(--formula));
  margin: calc(80 * var(--formula)) calc(30 * var(--formula)) 0 auto;
}
.AU260422LIMITED .photo-04 {
  width: calc(600 * var(--formula));
  margin: calc(80 * var(--formula)) auto 0 calc(30 * var(--formula));
}
.AU260422LIMITED .photo-05 {
  position: relative;
  width: calc(700 * var(--formula));
  margin: calc(82 * var(--formula)) auto 0;
  overflow: hidden;
}
.AU260422LIMITED .photo-05-txt {
  width: calc(84 * var(--formula));
  position: absolute;
  top: calc(344 * var(--formula));
  right: calc(-6 * var(--formula));
  z-index: 1;
  pointer-events: none;
}
.AU260422LIMITED .photo-05-price {
  width: 100%;
  position: absolute;
  bottom: calc(40 * var(--formula));
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(14 * var(--formula));
  z-index: 1;
}
.AU260422LIMITED .photo-05-price a {
  font-size: calc(19.69 * var(--formula));
  line-height: 2;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  letter-spacing: 0.005em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #fff;
}
.AU260422LIMITED .photo-05-price {
  gap: calc(12 * var(--formula));
}
.AU260422LIMITED .photo-06 {
  width: calc(600 * var(--formula));
  margin: calc(70 * var(--formula)) calc(30 * var(--formula)) 0 auto;
}
.AU260422LIMITED .photo-07 {
  width: calc(550 * var(--formula));
  margin: calc(80 * var(--formula)) auto 0 calc(32 * var(--formula));
}
.AU260422LIMITED .photo-08 {
  width: calc(600 * var(--formula));
  margin: calc(80 * var(--formula)) calc(30 * var(--formula)) 0 auto;
}
.AU260422LIMITED {
  /* all
  ------------------------------------------ */
}
.AU260422LIMITED .all {
  padding: calc(280 * var(--formula)) 0 calc(294 * var(--formula));
  text-align: center;
}
@media (max-width: 767px) {
  .AU260422LIMITED .all {
    padding: calc(198 * var(--formula)) 0 calc(92 * var(--formula));
  }
}
.AU260422LIMITED .all-link {
  position: relative;
  display: inline-block;
  font-size: calc(30 * var(--formula));
  letter-spacing: 0.057em;
}
.AU260422LIMITED .all-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(-8 * var(--formula));
  width: 100%;
  height: 1px;
  background-color: #000;
}
@media (max-width: 767px) {
  .AU260422LIMITED .all-link::after {
    bottom: calc(-4 * var(--formula));
  }
}