@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;
  }
}

.AU260617APACK {
  /* 可変設定
  ------------------------------------------ */
  /*デザインの値*/
  --pc-width: 1400; /*PCデザイン幅*/
  --sp-width: 750; /*SPデザイン幅*/
  --pc-artboard-width: 487.5; /*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) {
  .AU260617APACK {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: 1px; /* 固定値（可変しない） */
  }
}
.AU260617APACK {
  /* PC画面幅 768～1400px 可変 */
}
@media (min-width: 768px) and (max-width: 1400px) {
  .AU260617APACK {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
.AU260617APACK {
  /* SP画面幅 767px以下 可変 */
}
@media (max-width: 767px) {
  .AU260617APACK {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}
.AU260617APACK {
  /* mixin
  ------------------------------------------ */
  /* reset
  ------------------------------------------ */
}
.AU260617APACK img {
  width: 100%;
  height: auto;
}
.AU260617APACK * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.AU260617APACK {
  /* animation
  ------------------------------------------ */
}
.AU260617APACK .js-scale {
  position: relative;
  overflow: hidden;
}
.AU260617APACK .js-scale::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  -webkit-transition: height 0.8s ease;
  transition: height 0.8s ease;
  z-index: 3;
}
.AU260617APACK .js-scale img {
  opacity: 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
}
.AU260617APACK .js-scale.is-active::before {
  height: 0;
}
.AU260617APACK .js-scale.is-active img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.AU260617APACK .js-fade-in {
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transform: translateX(-5%);
          transform: translateX(-5%);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.AU260617APACK .js-fade-in.is-active {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.AU260617APACK .js-clip-txt {
  clip-path: inset(0 100% 0 0);
  -webkit-transition-duration: 2s;
          transition-duration: 2s;
}
.AU260617APACK .js-clip-txt.is-active {
  clip-path: inset(0);
}
.AU260617APACK {
  /* 共通
  ------------------------------------------ */
  /* LP style
  ------------------------------------------ */
  background-color: #8cc8f0;
  display: grid;
  grid-template-columns: 1fr calc(750 * var(--variable) * var(--ratio)) 1fr;
}
@media (max-width: 767px) {
  .AU260617APACK {
    display: block;
  }
}
.AU260617APACK .fixed-left,
.AU260617APACK .fixed-right {
  position: sticky;
  top: 0;
  height: 100vh;
  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;
}
@media (max-width: 767px) {
  .AU260617APACK .fixed-left,
  .AU260617APACK .fixed-right {
    display: none;
  }
}
.AU260617APACK .fixed-left-logo {
  width: calc(135 * var(--formula_pc));
  margin: 0 auto;
}
.AU260617APACK .fixed-right-logo {
  display: block;
  width: calc(279 * var(--formula_pc));
  margin: 0 auto;
}
.AU260617APACK .lp-cont {
  width: calc(750 * var(--variable) * var(--ratio));
  margin: 0 auto;
  background-color: #fff;
}
.AU260617APACK {
  /* mv
  ------------------------------------------ */
}
.AU260617APACK .mv {
  padding-top: calc(185 * var(--formula));
}
@media (max-width: 767px) {
  .AU260617APACK .mv {
    padding-top: calc(138 * var(--formula));
  }
}
.AU260617APACK .mv-movie {
  aspect-ratio: 750/1000;
}
.AU260617APACK .mv-movie video {
  width: 100%;
  height: 100%;
}
.AU260617APACK .mv-movie-cont {
  position: relative;
}
.AU260617APACK .mv-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: calc(45 * var(--formula));
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .AU260617APACK .mv-logo {
    top: calc(42 * var(--formula));
  }
}
.AU260617APACK .mv-logo-01 {
  display: block;
  width: calc(288 * var(--formula));
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  -webkit-transition: 1.2s;
  transition: 1.2s;
  opacity: 0;
  position: relative;
  left: calc(-2 * var(--formula));
}
.AU260617APACK .mv-logo-01.is-active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  opacity: 1;
}
.AU260617APACK .mv-logo-02 {
  display: block;
  margin-top: calc(24 * var(--formula));
  font-size: calc(58.5 * var(--formula));
  line-height: 0.87692308;
  letter-spacing: 0.035em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.AU260617APACK .mv-logo-02 span {
  display: inline-block;
  -webkit-transform: translateY(105%);
          transform: translateY(105%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.AU260617APACK .mv-logo-02.is-active span {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.AU260617APACK .mv-logo-02.is-active span:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.AU260617APACK .mv-logo-02.is-active span:nth-child(2) {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}
.AU260617APACK .mv-logo-02.is-active span:nth-child(3) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.AU260617APACK .mv-logo-02.is-active span:nth-child(4) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.AU260617APACK .mv-logo-02.is-active span:nth-child(5) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.AU260617APACK .mv-logo-02.is-active span:nth-child(6) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.AU260617APACK .mv-logo-02.is-active span:nth-child(7) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.AU260617APACK .mv-logo-02.is-active span:nth-child(8) {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}
.AU260617APACK .mv-logo-02.is-active span:nth-child(9) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.AU260617APACK .mv-logo-02.is-active span:nth-child(10) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
.AU260617APACK .mv-logo-03 {
  display: block;
  font-size: calc(58.5 * var(--formula));
  line-height: 0.87692308;
  letter-spacing: 0.035em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.AU260617APACK .mv-logo-03 span {
  display: inline-block;
  -webkit-transform: translateY(105%);
          transform: translateY(105%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.AU260617APACK .mv-logo-03.is-active span {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.AU260617APACK .mv-logo-03.is-active span:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.AU260617APACK .mv-logo-03.is-active span:nth-child(2) {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}
.AU260617APACK .mv-logo-03.is-active span:nth-child(3) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.AU260617APACK .mv-logo-03.is-active span:nth-child(4) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.AU260617APACK .mv-logo-03.is-active span:nth-child(5) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.AU260617APACK .mv-logo-03.is-active span:nth-child(6) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.AU260617APACK .mv-logo-03.is-active span:nth-child(7) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.AU260617APACK .mv-logo-03.is-active span:nth-child(8) {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}
.AU260617APACK .mv-logo-04 {
  display: block;
  margin-top: calc(16 * var(--formula));
  font-size: calc(45 * var(--formula));
  line-height: 1.1298;
  letter-spacing: 0.055em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.AU260617APACK .mv-logo-04 .and {
  font-family: "Hiragino Kaku Gothic ProN W5", "ヒラギノ角ゴ ProN W5", "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: calc(36 * var(--formula));
  font-weight: 700;
  letter-spacing: 0.095em;
}
.AU260617APACK .mv-logo-04 span {
  display: inline-block;
  -webkit-transform: translateY(105%);
          transform: translateY(105%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.AU260617APACK .mv-logo-04.is-active span {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.AU260617APACK .mv-logo-04.is-active span:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.AU260617APACK .mv-logo-04.is-active span:nth-child(2) {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}
.AU260617APACK .mv-logo-04.is-active span:nth-child(3) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.AU260617APACK .mv-logo-04.is-active span:nth-child(4) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.AU260617APACK .mv-logo-04.is-active span:nth-child(5) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.AU260617APACK .mv-logo-04.is-active span:nth-child(6) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.AU260617APACK .mv-logo-04.is-active span:nth-child(7) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.AU260617APACK .mv-logo-04.is-active span:nth-child(8) {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}
.AU260617APACK .mv-logo-04.is-active span:nth-child(9) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.AU260617APACK .mv-logo-04.is-active span:nth-child(10) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
.AU260617APACK .mv-logo-04.is-active span:nth-child(11) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.AU260617APACK .mv-logo-04.is-active span:nth-child(12) {
  -webkit-transition-delay: 0.55s;
          transition-delay: 0.55s;
}
.AU260617APACK .mv-logo-04.is-active span:nth-child(13) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.AU260617APACK .mv-logo-04.is-active span:nth-child(14) {
  -webkit-transition-delay: 0.65s;
          transition-delay: 0.65s;
}
.AU260617APACK .mv-logo-04.is-active span:nth-child(15) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.AU260617APACK .mv-logo-04.is-active span:nth-child(16) {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}
.AU260617APACK .mv-logo-04.is-active span:nth-child(17) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.AU260617APACK {
  /* hero
  ------------------------------------------ */
}
.AU260617APACK .hero {
  padding: calc(112 * var(--formula)) 0 calc(112 * var(--formula));
}
.AU260617APACK .hero-txt {
  font-family: "Hiragino Kaku Gothic ProN W5", "ヒラギノ角ゴ ProN W5", "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: calc(28 * var(--formula));
  line-height: 1.71428571;
  letter-spacing: 0.075em;
  text-align: center;
}
.AU260617APACK {
  /* product
  ------------------------------------------ */
}
.AU260617APACK .product01-photo-01 {
  width: calc(400 * var(--formula));
  margin: 0 auto 0 0;
}
.AU260617APACK .product01-photo-02 {
  width: calc(330 * var(--formula));
  margin: calc(-282 * var(--formula)) 0 0 auto;
}
.AU260617APACK .product01-photo-03-wrapper {
  margin: calc(-86 * var(--formula)) auto 0;
  width: calc(672 * var(--formula));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.AU260617APACK .product01-photo-03 {
  width: calc(320 * var(--formula));
  margin: calc(-100 * var(--formula)) 0 0 0;
}
.AU260617APACK .product01-txt {
  position: relative;
  top: calc(8 * var(--formula));
  left: calc(13 * var(--formula));
  width: calc(339 * var(--formula));
  font-family: "Hiragino Kaku Gothic ProN W5", "ヒラギノ角ゴ ProN W5", "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: calc(23 * var(--formula));
  line-height: 1.87173913;
  letter-spacing: 0.05em;
}
.AU260617APACK .product01-price {
  margin-top: calc(42 * var(--formula));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(14 * var(--formula));
}
.AU260617APACK .product01-price a {
  font-size: calc(19.71 * var(--formula));
  line-height: 2.08320649;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.AU260617APACK .product02 {
  margin-top: calc(134 * var(--formula));
}
.AU260617APACK .product02-photo-01 {
  width: calc(600 * var(--formula));
  margin: 0 auto;
}
.AU260617APACK .product02-price {
  margin-top: calc(46 * var(--formula));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(14 * var(--formula));
}
.AU260617APACK .product02-price a {
  font-size: calc(19.71 * var(--formula));
  line-height: 2.08320649;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.AU260617APACK .product03 {
  margin-top: calc(68 * var(--formula));
}
.AU260617APACK .product03-ttl {
  position: relative;
  font-family: "Hiragino Kaku Gothic ProN W5", "ヒラギノ角ゴ ProN W5", "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: calc(40 * var(--formula));
  letter-spacing: 0.051em;
  text-align: center;
  padding-bottom: calc(10 * var(--formula));
}
.AU260617APACK .product03-ttl span {
  position: relative;
  z-index: 1;
}
.AU260617APACK .product03-ttl::after {
  content: "";
  position: absolute;
  bottom: calc(0 * var(--formula));
  left: 0;
  right: 0;
  margin: auto;
  width: calc(310 * var(--formula));
  height: calc(26 * var(--formula));
  background-color: #50aaff;
}
.AU260617APACK .product03-txt {
  width: calc(600 * var(--formula));
  margin: calc(44 * var(--formula)) auto 0;
  font-family: "Hiragino Kaku Gothic ProN W5", "ヒラギノ角ゴ ProN W5", "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: calc(23 * var(--formula));
  letter-spacing: 0.075em;
  line-height: 1.87173913;
  text-align: justify;
}
.AU260617APACK .product03-photo-01 {
  width: calc(600 * var(--formula));
  margin: calc(74 * var(--formula)) auto 0;
}
.AU260617APACK .product03-price {
  margin-top: calc(40 * var(--formula));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(14 * var(--formula));
}
.AU260617APACK .product03-price a {
  font-size: calc(19.71 * var(--formula));
  line-height: 2.08320649;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.AU260617APACK .product04 {
  margin-top: calc(142 * var(--formula));
}
.AU260617APACK .product04-txt {
  width: calc(600 * var(--formula));
  margin: calc(32 * var(--formula)) auto 0;
  font-family: "Hiragino Kaku Gothic ProN W5", "ヒラギノ角ゴ ProN W5", "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: calc(23 * var(--formula));
  line-height: 1.87173913;
  text-align: justify;
}
.AU260617APACK .product04-photo-01 {
  width: calc(750 * var(--formula));
  margin: calc(0 * var(--formula)) auto 0;
}
.AU260617APACK .product04-price {
  margin-top: calc(42 * var(--formula));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(14 * var(--formula));
}
.AU260617APACK .product04-price a {
  font-size: calc(19.71 * var(--formula));
  line-height: 2.08320649;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.AU260617APACK .product05 {
  margin-top: calc(144 * var(--formula));
}
.AU260617APACK .product05-txt {
  width: calc(600 * var(--formula));
  margin: calc(35 * var(--formula)) auto 0;
  font-family: "Hiragino Kaku Gothic ProN W5", "ヒラギノ角ゴ ProN W5", "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: calc(23 * var(--formula));
  letter-spacing: 0.015em;
  line-height: 1.87173913;
  text-align: justify;
}
.AU260617APACK .product05-photo-01 {
  width: calc(750 * var(--formula));
  margin: calc(0 * var(--formula)) auto 0;
}
.AU260617APACK .product05-price {
  margin-top: calc(40 * var(--formula));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(14 * var(--formula));
}
.AU260617APACK .product05-price a {
  font-size: calc(19.71 * var(--formula));
  line-height: 2.08320649;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.AU260617APACK .product06 {
  margin-top: calc(140 * var(--formula));
}
.AU260617APACK .product06-photo-01 {
  width: calc(600 * var(--formula));
  margin: calc(0 * var(--formula)) auto 0 calc(30 * var(--formula));
}
.AU260617APACK .product06-price {
  margin-top: calc(38 * var(--formula));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(14 * var(--formula));
}
.AU260617APACK .product06-price a {
  font-size: calc(19.71 * var(--formula));
  line-height: 2.08320649;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.AU260617APACK .product07 {
  margin-top: calc(140 * var(--formula));
}
.AU260617APACK .product07-photo-01 {
  width: calc(550 * var(--formula));
  margin: calc(0 * var(--formula)) calc(60 * var(--formula)) 0 auto;
}
.AU260617APACK .product07-price {
  margin-top: calc(40 * var(--formula));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(14 * var(--formula));
}
.AU260617APACK .product07-price a {
  font-size: calc(19.71 * var(--formula));
  line-height: 2.08320649;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.AU260617APACK .product08 {
  margin-top: calc(70 * var(--formula));
}
.AU260617APACK .product08-ttl {
  padding-bottom: calc(10 * var(--formula));
  position: relative;
  font-family: "Hiragino Kaku Gothic ProN W5", "ヒラギノ角ゴ ProN W5", "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: calc(40 * var(--formula));
  letter-spacing: 0.051em;
  text-align: center;
}
.AU260617APACK .product08-ttl span {
  position: relative;
  z-index: 1;
}
.AU260617APACK .product08-ttl::after {
  content: "";
  position: absolute;
  bottom: calc(4 * var(--formula));
  left: 0;
  right: 0;
  margin: auto;
  width: calc(180 * var(--formula));
  height: calc(26 * var(--formula));
  background-color: #50aaff;
}
.AU260617APACK .product08-txt {
  width: calc(600 * var(--formula));
  margin: calc(38 * var(--formula)) auto 0;
  font-family: "Hiragino Kaku Gothic ProN W5", "ヒラギノ角ゴ ProN W5", "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: calc(23 * var(--formula));
  letter-spacing: 0.075em;
  line-height: 1.87173913;
  text-align: justify;
}
.AU260617APACK .product08-photo-01 {
  width: calc(600 * var(--formula));
  margin: calc(74 * var(--formula)) auto 0;
}
.AU260617APACK .product08-price {
  margin-top: calc(42 * var(--formula));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(14 * var(--formula));
}
.AU260617APACK .product08-price a {
  font-size: calc(19.71 * var(--formula));
  line-height: 2.08320649;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.AU260617APACK .product09 {
  margin-top: calc(140 * var(--formula));
}
.AU260617APACK .product09-photo-01 {
  width: calc(600 * var(--formula));
  margin: calc(0 * var(--formula)) auto 0 calc(30 * var(--formula));
}
.AU260617APACK .product09-price {
  margin-top: calc(40 * var(--formula));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(14 * var(--formula));
}
.AU260617APACK .product09-price a {
  font-size: calc(19.71 * var(--formula));
  line-height: 2.08320649;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.AU260617APACK .product10 {
  margin-top: calc(140 * var(--formula));
}
.AU260617APACK .product10-photo-01 {
  width: calc(600 * var(--formula));
  margin: calc(0 * var(--formula)) auto;
}
.AU260617APACK .product10-price {
  margin-top: calc(42 * var(--formula));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(14 * var(--formula));
}
.AU260617APACK .product10-price a {
  font-size: calc(19.71 * var(--formula));
  line-height: 2.08320649;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.AU260617APACK {
  /* all
  ------------------------------------------ */
}
.AU260617APACK .all {
  padding: calc(244 * var(--formula)) 0 calc(264 * var(--formula));
  text-align: center;
}
@media (max-width: 767px) {
  .AU260617APACK .all {
    padding: calc(182 * var(--formula)) 0 calc(94 * var(--formula));
  }
}
.AU260617APACK .all-link {
  position: relative;
  display: inline-block;
  font-size: calc(30 * var(--formula));
  letter-spacing: 0.057em;
}
.AU260617APACK .all-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(-8 * var(--formula));
  width: 100%;
  height: 1px;
  background-color: #000;
}
@media (max-width: 767px) {
  .AU260617APACK .all-link::after {
    bottom: calc(-4 * var(--formula));
  }
}