@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 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;
  }
}
#Foot {
  background-color: #010c24;
}

.AU251203GIFT {
  /* 可変設定
  ------------------------------------------ */
  /*デザインの値*/
  --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
  ------------------------------------------ */
  /* 共通
  ------------------------------------------ */
  /* animation
  ------------------------------------------ */
  /* LP style
  ------------------------------------------ */
  background-color: #010c24;
  /* product
  ------------------------------------------ */
  /* all
  ------------------------------------------ */
  /* staff
  ------------------------------------------ */
}
@media (min-width: 1401px) {
  .AU251203GIFT {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: 1px; /* 固定値（可変しない） */
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .AU251203GIFT {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
@media (max-width: 767px) {
  .AU251203GIFT {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}
.AU251203GIFT img {
  width: 100%;
  height: auto;
}
.AU251203GIFT * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.AU251203GIFT .section-ttl {
  position: relative;
  width: calc(600 * var(--formula));
  margin: 0 auto;
  padding: calc(10 * var(--formula)) 0 calc(11 * var(--formula));
  opacity: 0;
  -webkit-transition: visibility 1.5s ease, opacity 1.5s ease, -webkit-transform 1.5s ease;
  transition: visibility 1.5s ease, opacity 1.5s ease, -webkit-transform 1.5s ease;
  transition: transform 1.5s ease, visibility 1.5s ease, opacity 1.5s ease;
  transition: transform 1.5s ease, visibility 1.5s ease, opacity 1.5s ease, -webkit-transform 1.5s ease;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}
.AU251203GIFT .section-ttl::before, .AU251203GIFT .section-ttl::after {
  content: "";
  position: absolute;
  width: calc(600 * var(--formula));
  height: 1px;
  background-color: #fff;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.AU251203GIFT .section-ttl::before {
  top: 0;
  left: 0;
}
.AU251203GIFT .section-ttl::after {
  bottom: 0;
  left: 0;
}
.AU251203GIFT .section-ttl.is-active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.AU251203GIFT .section-ttl.is-active::before, .AU251203GIFT .section-ttl.is-active::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.AU251203GIFT .js-fade-in {
  opacity: 0;
  -webkit-transition: visibility 1.5s ease, opacity 1.5s ease, -webkit-transform 1.5s ease;
  transition: visibility 1.5s ease, opacity 1.5s ease, -webkit-transform 1.5s ease;
  transition: transform 1.5s ease, visibility 1.5s ease, opacity 1.5s ease;
  transition: transform 1.5s ease, visibility 1.5s ease, opacity 1.5s ease, -webkit-transform 1.5s ease;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.AU251203GIFT .js-fade-in.is-active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.AU251203GIFT .js-smooth {
  overflow: hidden;
}
.AU251203GIFT .js-smooth img {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 1.2s ease, visibility 1.2s ease, opacity 1.2s ease;
  transition: clip-path 1.2s ease, visibility 1.2s ease, opacity 1.2s ease;
}
.AU251203GIFT .js-smooth.is-active img {
  opacity: 1;
  clip-path: inset(0);
}
.AU251203GIFT-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .AU251203GIFT-container {
    display: block;
  }
}
.AU251203GIFT .mv {
  position: sticky;
  top: 0;
  width: 50%;
  height: 100vh;
}
@media (max-width: 767px) {
  .AU251203GIFT .mv {
    position: static;
    width: 100%;
    height: auto;
  }
}
.AU251203GIFT .mv a {
  position: relative;
  z-index: 0;
}
.AU251203GIFT .mv-logo {
  width: calc(404 * var(--formula_pc));
  margin: 0 auto;
  position: static;
  opacity: 0;
  -webkit-transition: opacity 1.5s ease, -webkit-transform 1.5s ease;
  transition: opacity 1.5s ease, -webkit-transform 1.5s ease;
  transition: transform 1.5s ease, opacity 1.5s ease;
  transition: transform 1.5s ease, opacity 1.5s ease, -webkit-transform 1.5s ease;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
@media (max-width: 767px) {
  .AU251203GIFT .mv-logo {
    position: absolute;
    top: calc(624 * var(--formula));
    right: 0;
    left: 0;
    margin: auto;
    width: calc(641 * var(--formula));
    z-index: 1;
  }
}
.AU251203GIFT .mv-logo.is-active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.AU251203GIFT .mv-img {
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 1.5s ease, opacity 1.5s ease;
  transition: visibility 1.5s ease, opacity 1.5s ease;
}
@media (max-width: 767px) {
  .AU251203GIFT .mv-img {
    height: auto;
  }
}
.AU251203GIFT .mv-img.is-active {
  visibility: visible;
  opacity: 1;
}
.AU251203GIFT .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) {
  .AU251203GIFT .mv-img img {
    -o-object-fit: fill;
       object-fit: fill;
    height: auto;
  }
}
.AU251203GIFT .hero {
  margin-top: calc(445 * var(--formula_pc));
  position: relative;
}
.AU251203GIFT .lp-container {
  width: 50%;
  background-image: url("../img/bg_pc.png?v3");
  background-size: calc(700 * var(--formula_pc)) auto;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: top right;
}
@media (max-width: 767px) {
  .AU251203GIFT .lp-container {
    width: 100%;
    background: none;
  }
}
.AU251203GIFT .lp-cont {
  width: calc(750 * var(--variable) * var(--ratio));
  margin: 0 auto;
}
@media (max-width: 767px) {
  .AU251203GIFT .lp-cont {
    background-image: url("../img/bg_sp.jpg?v1");
    background-size: calc(750 * var(--formula)) auto;
    background-repeat: no-repeat;
    overflow: clip;
  }
}
.AU251203GIFT .product01 {
  position: relative;
  padding: calc(362 * var(--formula)) 0 calc(0 * var(--formula));
}
@media (max-width: 767px) {
  .AU251203GIFT .product01 {
    padding: calc(166 * var(--formula)) 0 calc(0 * var(--formula));
  }
}
.AU251203GIFT .product01-cont {
  position: relative;
  z-index: 1;
}
.AU251203GIFT .product01-ttl-img {
  width: calc(201 * var(--formula));
  margin: 0 auto;
}
.AU251203GIFT .product01-photo-01 {
  width: calc(600 * var(--formula));
  margin: calc(84 * var(--formula)) auto 0;
}
.AU251203GIFT .product01-photo-02 {
  width: calc(600 * var(--formula));
  margin: calc(48 * var(--formula)) auto 0;
}
.AU251203GIFT .product01-txt {
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝", "MS Mincho", "ＭＳ 明朝", serif;
  font-weight: 300;
  font-size: calc(23 * var(--formula));
  line-height: 1.95652174;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #fff;
  text-align: center;
  margin-top: calc(52 * var(--formula));
}
.AU251203GIFT .product01-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
  margin-top: calc(34 * var(--formula));
}
.AU251203GIFT .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.025em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #fff;
}
.AU251203GIFT .product02 {
  position: relative;
  padding: calc(164 * var(--formula)) 0 calc(152 * var(--formula));
}
.AU251203GIFT .product02-cont {
  position: relative;
  z-index: 1;
}
.AU251203GIFT .product02-ttl-img {
  width: calc(589 * var(--formula));
  margin: 0 auto;
}
.AU251203GIFT .product02-photo-01 {
  width: calc(600 * var(--formula));
  margin: calc(80 * var(--formula)) auto 0;
}
.AU251203GIFT .product02-photo-02 {
  width: calc(600 * var(--formula));
  margin: calc(50 * var(--formula)) auto 0;
}
.AU251203GIFT .product02-txt {
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝", "MS Mincho", "ＭＳ 明朝", serif;
  font-weight: 300;
  font-size: calc(23 * var(--formula));
  line-height: 1.95652174;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #fff;
  text-align: center;
  margin-top: calc(50 * var(--formula));
}
.AU251203GIFT .product02-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
}
.AU251203GIFT .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.025em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #fff;
}
.AU251203GIFT .product02-price-01 {
  margin-top: calc(36 * var(--formula));
}
.AU251203GIFT .product03 {
  position: relative;
  padding: calc(170 * var(--formula)) 0 calc(0 * var(--formula));
}
.AU251203GIFT .product03-cont {
  position: relative;
  z-index: 1;
}
.AU251203GIFT .product03-ttl-img {
  width: calc(398 * var(--formula));
  margin: 0 auto;
}
.AU251203GIFT .product03-photo-01 {
  position: relative;
  width: calc(750 * var(--formula));
}
.AU251203GIFT .product03-photo-01-ttl {
  position: absolute;
  width: calc(641 * var(--formula));
  top: calc(104 * var(--formula));
  right: 0;
  left: 0;
  margin: auto;
  z-index: 1;
}
.AU251203GIFT .product03-photo-02 {
  width: calc(600 * var(--formula));
  margin: calc(80 * var(--formula)) auto 0;
}
.AU251203GIFT .product03-photo-03 {
  width: calc(600 * var(--formula));
  margin: calc(42 * var(--formula)) auto 0;
}
.AU251203GIFT .product03-txt {
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝", "MS Mincho", "ＭＳ 明朝", serif;
  font-weight: 300;
  font-size: calc(23 * var(--formula));
  line-height: 1.95652174;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #fff;
  text-align: center;
  margin-top: calc(54 * var(--formula));
}
.AU251203GIFT .product03-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
  margin-top: calc(39 * var(--formula));
}
.AU251203GIFT .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.025em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #fff;
}
.AU251203GIFT .product04 {
  position: relative;
  padding: calc(158 * var(--formula)) 0 calc(0 * var(--formula));
}
.AU251203GIFT .product04-cont {
  position: relative;
  z-index: 1;
}
.AU251203GIFT .product04-ttl-img {
  width: calc(543 * var(--formula));
  margin: 0 auto;
}
.AU251203GIFT .product04-photo-01 {
  width: calc(600 * var(--formula));
  margin: calc(82 * var(--formula)) auto 0;
}
.AU251203GIFT .product04-photo-02 {
  width: calc(600 * var(--formula));
  margin: calc(50 * var(--formula)) auto 0;
}
.AU251203GIFT .product04-txt {
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝", "MS Mincho", "ＭＳ 明朝", serif;
  font-weight: 300;
  font-size: calc(23 * var(--formula));
  line-height: 1.95652174;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #fff;
  text-align: center;
  margin-top: calc(45 * var(--formula));
}
.AU251203GIFT .product04-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
  margin-top: calc(36 * var(--formula));
}
.AU251203GIFT .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.025em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #fff;
}
.AU251203GIFT .product05 {
  position: relative;
  padding: calc(158 * var(--formula)) 0 calc(120 * var(--formula));
}
.AU251203GIFT .product05-cont {
  position: relative;
  z-index: 1;
}
.AU251203GIFT .product05-ttl-img {
  width: calc(324 * var(--formula));
  margin: 0 auto;
}
.AU251203GIFT .product05-photo-01 {
  width: calc(600 * var(--formula));
  margin: calc(80 * var(--formula)) auto 0;
}
.AU251203GIFT .product05-photo-02 {
  width: calc(600 * var(--formula));
  margin: calc(50 * var(--formula)) auto 0;
}
.AU251203GIFT .product05-txt {
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝", "MS Mincho", "ＭＳ 明朝", serif;
  font-weight: 300;
  font-size: calc(23 * var(--formula));
  line-height: 1.95652174;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #fff;
  text-align: center;
  margin-top: calc(50 * var(--formula));
}
.AU251203GIFT .product05-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 * var(--formula));
  margin-top: calc(39 * var(--formula));
}
.AU251203GIFT .product05-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.025em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #fff;
}
.AU251203GIFT .all {
  padding: calc(90 * var(--formula_pc)) 0 calc(178 * var(--formula_pc));
  text-align: center;
}
@media (max-width: 767px) {
  .AU251203GIFT .all {
    padding: calc(63 * var(--formula)) 0 calc(100 * var(--formula));
  }
}
.AU251203GIFT .all-link {
  position: relative;
  display: inline-block;
  font-size: calc(30 * var(--formula));
  letter-spacing: 0.057em;
  color: #fff;
}
.AU251203GIFT .all-link::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: calc(-5 * var(--formula));
  left: 0;
}