@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;
  }
}
.aoure_260114_DEVICE1 {
  /* 可変設定
  ------------------------------------------ */
  /*デザインの値*/
  --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
  ------------------------------------------ */
  /* mv
  ------------------------------------------ */
  /* hero
  ------------------------------------------ */
  /* product
  ------------------------------------------ */
  /* all
  ------------------------------------------ */
}
@media (min-width: 1401px) {
  .aoure_260114_DEVICE1 {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: 1px; /* 固定値（可変しない） */
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .aoure_260114_DEVICE1 {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
@media (max-width: 767px) {
  .aoure_260114_DEVICE1 {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}
.aoure_260114_DEVICE1 img {
  width: 100%;
  height: auto;
}
.aoure_260114_DEVICE1 * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.aoure_260114_DEVICE1 .decoration {
  pointer-events: none;
}
.aoure_260114_DEVICE1 .js-fade-in {
  -webkit-transition: opacity 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s, -webkit-filter 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s;
  transition: opacity 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s, -webkit-filter 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s;
  transition: filter 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s, opacity 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s;
  transition: filter 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s, opacity 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s, -webkit-filter 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s;
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  will-change: filter, opacity;
}
.aoure_260114_DEVICE1 .js-fade-in.is-active {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.aoure_260114_DEVICE1 .js-fade-down {
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: translate(0, -30px);
          transform: translate(0, -30px);
}
.aoure_260114_DEVICE1 .js-fade-down.is-active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.aoure_260114_DEVICE1 .js-fade-up {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.aoure_260114_DEVICE1 .js-fade-up.is-active {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: 0.8s ease 1.5s;
  transition: 0.8s ease 1.5s;
}
.aoure_260114_DEVICE1 .js-animation-bg {
  position: relative;
  overflow: hidden;
}
.aoure_260114_DEVICE1 .js-animation-bg img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
.aoure_260114_DEVICE1 .js-animation-bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  z-index: 2;
}
.aoure_260114_DEVICE1 .js-animation-bg.is-active img {
  -webkit-transform: none;
          transform: none;
  -webkit-transition: -webkit-transform 1s ease 0.5s;
  transition: -webkit-transform 1s ease 0.5s;
  transition: transform 1s ease 0.5s;
  transition: transform 1s ease 0.5s, -webkit-transform 1s ease 0.5s;
}
.aoure_260114_DEVICE1 .js-animation-bg.is-active::before {
  width: 0;
  -webkit-transition: width 1s ease 0.5s;
  transition: width 1s ease 0.5s;
}
.aoure_260114_DEVICE1-container {
  display: grid;
  grid-template-columns: 1fr calc(750 * var(--variable) * var(--ratio)) 1fr;
}
@media (max-width: 767px) {
  .aoure_260114_DEVICE1-container {
    display: block;
  }
}
.aoure_260114_DEVICE1 .fixed-left,
.aoure_260114_DEVICE1 .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) {
  .aoure_260114_DEVICE1 .fixed-left,
  .aoure_260114_DEVICE1 .fixed-right {
    display: none;
  }
}
.aoure_260114_DEVICE1 .fixed-left-logo {
  width: calc(203 * var(--formula_pc));
  margin: 0 auto;
}
.aoure_260114_DEVICE1 .fixed-right-logo {
  display: block;
  width: calc(235 * var(--formula_pc));
  margin: 0 auto;
}
.aoure_260114_DEVICE1 .lp-container {
  width: calc(750 * var(--variable) * var(--ratio));
  margin: 0 auto;
}
.aoure_260114_DEVICE1 .mv-img {
  width: 100%;
  height: calc(980 * var(--formula_pc));
  overflow: hidden;
}
.aoure_260114_DEVICE1 .mv-img img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
.aoure_260114_DEVICE1 .mv-img img {
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media (max-width: 767px) {
  .aoure_260114_DEVICE1 .mv-img {
    height: auto;
  }
  .aoure_260114_DEVICE1 .mv-img img {
    height: auto;
    -o-object-fit: fill;
       object-fit: fill;
  }
}
.aoure_260114_DEVICE1 .mv-img.is-active img {
  -webkit-transform: none;
          transform: none;
  -webkit-transition: -webkit-transform 1s ease 0.5s;
  transition: -webkit-transform 1s ease 0.5s;
  transition: transform 1s ease 0.5s;
  transition: transform 1s ease 0.5s, -webkit-transform 1s ease 0.5s;
}
.aoure_260114_DEVICE1 .mv-logo {
  position: absolute;
  top: calc(644 * var(--formula_pc));
  left: calc(0 * var(--formula_pc));
  right: calc(0 * var(--formula_pc));
  margin: auto;
  width: calc(321 * var(--formula_pc));
  z-index: 1;
}
@media (max-width: 767px) {
  .aoure_260114_DEVICE1 .mv-logo {
    width: calc(396 * var(--formula));
    top: calc(726 * var(--formula));
    left: calc(-10 * var(--formula));
    right: calc(0 * var(--formula));
  }
}
.aoure_260114_DEVICE1 .hero {
  margin-top: calc(230 * var(--formula));
}
@media (max-width: 767px) {
  .aoure_260114_DEVICE1 .hero {
    margin-top: calc(116 * var(--formula));
  }
}
.aoure_260114_DEVICE1 .hero-txt {
  font-family: "Hiragino Kaku Gothic ProN W5", "ヒラギノ角ゴ ProN W5", "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: calc(26 * var(--formula));
  line-height: 1.76923077;
  letter-spacing: 0.045em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
.aoure_260114_DEVICE1 .product01 {
  position: relative;
  margin-top: calc(136 * var(--formula));
}
.aoure_260114_DEVICE1 .product01-ttl {
  width: calc(537 * var(--formula));
  position: absolute;
  z-index: 1;
  top: calc(-20 * var(--formula));
  left: calc(0 * var(--formula));
  right: calc(0 * var(--formula));
  margin: auto;
}
.aoure_260114_DEVICE1 .product01-txt {
  width: calc(650 * var(--formula));
  margin: 0 auto;
  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.86956522;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
  margin-top: calc(66 * var(--formula));
}
.aoure_260114_DEVICE1 .product01-photo-01-wrapper {
  position: relative;
  width: calc(650 * var(--formula));
  margin: 0 auto;
}
.aoure_260114_DEVICE1 .product01-photo-02 {
  width: calc(550 * var(--formula));
  margin: calc(70 * var(--formula)) 0 0 auto;
  position: relative;
  right: calc(50 * var(--formula));
}
.aoure_260114_DEVICE1 .product01-photo-03-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(650 * var(--formula));
  margin: calc(77 * var(--formula)) auto 0;
}
.aoure_260114_DEVICE1 .product01-photo-03-wrapper-left {
  width: calc(500 * var(--formula));
}
.aoure_260114_DEVICE1 .product01-photo-03-txt {
  position: relative;
  top: calc(-3 * var(--formula));
  right: calc(-10 * var(--formula));
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ヒラギノ明朝 ProN W6", "游明朝", "YuMincho", "MS P明朝", "MS Mincho", serif;
  font-weight: 600;
  font-size: calc(24 * var(--formula));
  line-height: 1.875;
  letter-spacing: 0.05em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-font-feature-settings: "pwid";
          font-feature-settings: "pwid";
}
.aoure_260114_DEVICE1 .product01-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(8 * var(--formula));
}
.aoure_260114_DEVICE1 .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;
}
.aoure_260114_DEVICE1 .product01-price-01 {
  position: absolute;
  width: 100%;
  left: calc(0 * var(--formula));
  bottom: calc(18 * var(--formula));
  z-index: 1;
}
.aoure_260114_DEVICE1 .product01-price-02 {
  width: calc(500 * var(--formula));
}
.aoure_260114_DEVICE1 .product01 .product01-photo-03 + .product01-price-02 {
  margin-top: calc(32 * var(--formula));
  gap: calc(15 * var(--formula));
}
.aoure_260114_DEVICE1 .product02 {
  position: relative;
  margin-top: calc(130 * var(--formula));
}
.aoure_260114_DEVICE1 .product02-ttl {
  width: calc(449 * var(--formula));
  position: absolute;
  z-index: 1;
  top: calc(-18 * var(--formula));
  left: calc(0 * var(--formula));
  right: calc(0 * var(--formula));
  margin: auto;
}
.aoure_260114_DEVICE1 .product02-txt {
  width: calc(650 * var(--formula));
  margin: 0 auto;
  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.86956522;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
  margin-top: calc(66 * var(--formula));
  letter-spacing: 0.075em;
}
.aoure_260114_DEVICE1 .product02-photo-01-wrapper {
  position: relative;
  width: calc(650 * var(--formula));
  margin: 0 auto;
}
.aoure_260114_DEVICE1 .product02-photo-02 {
  width: calc(550 * var(--formula));
  margin: calc(70 * var(--formula)) 0 auto 0;
  position: relative;
  left: calc(50 * var(--formula));
}
.aoure_260114_DEVICE1 .product02-photo-03-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(650 * var(--formula));
  margin: calc(80 * var(--formula)) auto 0;
}
.aoure_260114_DEVICE1 .product02-photo-03-wrapper-right {
  width: calc(500 * var(--formula));
}
.aoure_260114_DEVICE1 .product02-photo-03-txt {
  position: relative;
  top: calc(0 * var(--formula));
  left: calc(-10 * var(--formula));
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ヒラギノ明朝 ProN W6", "游明朝", "YuMincho", "MS P明朝", "MS Mincho", serif;
  font-weight: 600;
  font-size: calc(24 * var(--formula));
  line-height: 1.875;
  letter-spacing: 0.05em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-font-feature-settings: "pwid";
          font-feature-settings: "pwid";
}
.aoure_260114_DEVICE1 .product02-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(8 * var(--formula));
}
.aoure_260114_DEVICE1 .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;
}
.aoure_260114_DEVICE1 .product02-price-01 {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: absolute;
  width: 100%;
  left: calc(30 * var(--formula));
  bottom: calc(16 * var(--formula));
  z-index: 1;
}
.aoure_260114_DEVICE1 .product02-price-02 {
  width: calc(500 * var(--formula));
  gap: calc(18 * var(--formula));
}
.aoure_260114_DEVICE1 .product02-price-02:first-child {
  margin-top: calc(34 * var(--formula));
}
.aoure_260114_DEVICE1 .product02 .product02-photo-03 + .product02-price-02 {
  margin-top: calc(33 * var(--formula));
}
.aoure_260114_DEVICE1 .product03 {
  position: relative;
  margin-top: calc(134 * var(--formula));
}
.aoure_260114_DEVICE1 .product03-ttl {
  width: calc(438 * var(--formula));
  position: absolute;
  z-index: 1;
  top: calc(-20 * var(--formula));
  left: calc(0 * var(--formula));
  right: calc(0 * var(--formula));
  margin: auto;
}
.aoure_260114_DEVICE1 .product03-txt {
  width: calc(650 * var(--formula));
  margin: 0 auto;
  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.86956522;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
  margin-top: calc(68 * var(--formula));
}
.aoure_260114_DEVICE1 .product03-photo-01-wrapper {
  position: relative;
  width: calc(650 * var(--formula));
  margin: 0 auto;
}
.aoure_260114_DEVICE1 .product03-photo-02 {
  width: calc(550 * var(--formula));
  margin: calc(66 * var(--formula)) 0 0 auto;
  position: relative;
  right: calc(50 * var(--formula));
}
.aoure_260114_DEVICE1 .product03-photo-03-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(650 * var(--formula));
  margin: calc(80 * var(--formula)) auto 0;
}
.aoure_260114_DEVICE1 .product03-photo-03-wrapper-left {
  width: calc(500 * var(--formula));
}
.aoure_260114_DEVICE1 .product03-photo-03-txt {
  position: relative;
  top: calc(0 * var(--formula));
  right: calc(-10 * var(--formula));
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ヒラギノ明朝 ProN W6", "游明朝", "YuMincho", "MS P明朝", "MS Mincho", serif;
  font-weight: 600;
  font-size: calc(24 * var(--formula));
  line-height: 1.875;
  letter-spacing: 0.05em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-font-feature-settings: "pwid";
          font-feature-settings: "pwid";
}
.aoure_260114_DEVICE1 .product03-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(8 * var(--formula));
}
.aoure_260114_DEVICE1 .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;
}
.aoure_260114_DEVICE1 .product03-price-01 {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  width: 100%;
  right: calc(30 * var(--formula));
  bottom: calc(16 * var(--formula));
  z-index: 1;
}
.aoure_260114_DEVICE1 .product03-price-02 {
  width: calc(500 * var(--formula));
}
.aoure_260114_DEVICE1 .product03 .product03-photo-03 + .product03-price-02 {
  margin-top: calc(29 * var(--formula));
}
.aoure_260114_DEVICE1 .product04 {
  position: relative;
  margin-top: calc(134 * var(--formula));
}
.aoure_260114_DEVICE1 .product04-ttl {
  width: calc(478 * var(--formula));
  position: absolute;
  z-index: 1;
  top: calc(-18 * var(--formula));
  left: calc(0 * var(--formula));
  right: calc(0 * var(--formula));
  margin: auto;
}
.aoure_260114_DEVICE1 .product04-txt {
  width: calc(650 * var(--formula));
  margin: 0 auto;
  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.86956522;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
  margin-top: calc(68 * var(--formula));
  letter-spacing: 0.075em;
}
.aoure_260114_DEVICE1 .product04-photo-01-wrapper {
  position: relative;
  width: calc(650 * var(--formula));
  margin: 0 auto;
}
.aoure_260114_DEVICE1 .product04-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(8 * var(--formula));
}
.aoure_260114_DEVICE1 .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;
}
.aoure_260114_DEVICE1 .product04-price-01 {
  padding-left: calc(35 * var(--formula));
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: absolute;
  width: 100%;
  left: calc(0 * var(--formula));
  bottom: calc(18 * var(--formula));
  z-index: 1;
}
.aoure_260114_DEVICE1 .product05 {
  position: relative;
  margin-top: calc(138 * var(--formula));
}
.aoure_260114_DEVICE1 .product05-ttl {
  width: calc(539 * var(--formula));
  position: absolute;
  z-index: 1;
  top: calc(-16 * var(--formula));
  left: calc(0 * var(--formula));
  right: calc(0 * var(--formula));
  margin: auto;
}
.aoure_260114_DEVICE1 .product05-txt {
  width: calc(650 * var(--formula));
  margin: 0 auto;
  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.86956522;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
  margin-top: calc(68 * var(--formula));
}
.aoure_260114_DEVICE1 .product05-photo-01-wrapper {
  position: relative;
  width: calc(650 * var(--formula));
  margin: 0 auto;
}
.aoure_260114_DEVICE1 .product05-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(8 * var(--formula));
}
.aoure_260114_DEVICE1 .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;
}
.aoure_260114_DEVICE1 .product05-price-01 {
  padding-right: calc(32 * var(--formula));
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  width: 100%;
  left: calc(0 * var(--formula));
  bottom: calc(19 * var(--formula));
  z-index: 1;
}
.aoure_260114_DEVICE1 .product06 {
  position: relative;
  margin-top: calc(140 * var(--formula));
}
.aoure_260114_DEVICE1 .product06-ttl {
  width: calc(478 * var(--formula));
  position: absolute;
  z-index: 1;
  top: calc(-18 * var(--formula));
  left: calc(0 * var(--formula));
  right: calc(0 * var(--formula));
  margin: auto;
}
.aoure_260114_DEVICE1 .product06-txt {
  width: calc(650 * var(--formula));
  margin: 0 auto;
  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.86956522;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
  margin-top: calc(65 * var(--formula));
}
.aoure_260114_DEVICE1 .product06-photo-01-wrapper {
  position: relative;
  width: calc(650 * var(--formula));
  margin: 0 auto;
}
.aoure_260114_DEVICE1 .product06-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(8 * var(--formula));
}
.aoure_260114_DEVICE1 .product06-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;
}
.aoure_260114_DEVICE1 .product06-price-01 {
  position: absolute;
  width: 100%;
  left: calc(0 * var(--formula));
  bottom: calc(19 * var(--formula));
  z-index: 1;
}
.aoure_260114_DEVICE1 .all {
  padding: calc(273 * var(--formula)) 0 calc(288 * var(--formula));
  text-align: center;
}
@media (max-width: 767px) {
  .aoure_260114_DEVICE1 .all {
    padding: calc(188 * var(--formula)) 0 calc(79 * var(--formula));
  }
}
.aoure_260114_DEVICE1 .all-link {
  display: inline-block;
  font-size: calc(30 * var(--formula));
  letter-spacing: 0.057em;
  position: relative;
}
.aoure_260114_DEVICE1 .all-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  bottom: calc(-9 * var(--formula));
  left: calc(0 * var(--formula));
}
@media (max-width: 767px) {
  .aoure_260114_DEVICE1 .all-link::after {
    bottom: calc(-2 * var(--formula));
  }
}