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

#page-body {
  background-color: #b08f73;
}

.AU260225BARI {
  /* 可変設定
  ------------------------------------------ */
  /*デザインの値*/
  --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) {
  .AU260225BARI {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: 1px; /* 固定値（可変しない） */
  }
}
.AU260225BARI {
  /* PC画面幅 768～1400px 可変 */
}
@media (min-width: 768px) and (max-width: 1400px) {
  .AU260225BARI {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
.AU260225BARI {
  /* SP画面幅 767px以下 可変 */
}
@media (max-width: 767px) {
  .AU260225BARI {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}
.AU260225BARI {
  /* mixin
  ------------------------------------------ */
  /* reset
  ------------------------------------------ */
}
.AU260225BARI img {
  width: 100%;
  height: auto;
}
.AU260225BARI * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.AU260225BARI {
  /* 共通
  ------------------------------------------ */
  /* animation
  ------------------------------------------ */
}
.AU260225BARI .js-fade-in {
  opacity: 0;
  -webkit-transition: opacity 1.2s ease;
  transition: opacity 1.2s ease;
}
.AU260225BARI .js-fade-in.is-active {
  opacity: 1;
}
.AU260225BARI .js-title {
  clip-path: inset(0 0 100% 0);
  -webkit-transition-property: clip-path;
  transition-property: clip-path;
  -webkit-transform: translateY(90%);
          transform: translateY(90%);
  -webkit-transition: 1.5s;
  transition: 1.5s;
}
.AU260225BARI .js-title.is-active {
  clip-path: inset(0);
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
.AU260225BARI .js-scale-up {
  overflow: hidden;
}
.AU260225BARI .js-scale-up img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 1s ease-out;
  transition: 1s ease-out;
}
.AU260225BARI .js-scale-up.is-active img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.AU260225BARI .js-fade-up {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 1s ease-out;
  transition: 1s ease-out;
}
.AU260225BARI .js-fade-up.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.AU260225BARI {
  /* LP style
  ------------------------------------------ */
}
.AU260225BARI-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #b08f73;
}
@media (max-width: 767px) {
  .AU260225BARI-container {
    display: block;
  }
}
.AU260225BARI .lp-container {
  width: 50%;
}
@media (max-width: 767px) {
  .AU260225BARI .lp-container {
    width: 100%;
  }
}
.AU260225BARI .lp-cont {
  width: calc(750 * var(--variable) * var(--ratio));
  margin: 0 auto;
}
.AU260225BARI {
  /* mv
  ------------------------------------------ */
}
.AU260225BARI .mv {
  position: sticky;
  top: 0;
  width: 50%;
  height: 100vh;
}
@media (max-width: 767px) {
  .AU260225BARI .mv {
    position: static;
    width: 100%;
    height: auto;
  }
}
.AU260225BARI .mv a {
  position: relative;
  z-index: 0;
}
.AU260225BARI .mv-logo {
  position: absolute;
  top: calc(516 * var(--formula_pc));
  left: calc(0 * var(--formula_pc));
  right: calc(0 * var(--formula_pc));
  width: calc(275 * var(--formula_pc));
  margin: auto;
  z-index: 1;
  clip-path: inset(0 0 100% 0);
  -webkit-transition-property: clip-path;
  transition-property: clip-path;
  -webkit-transform: translateY(90%);
          transform: translateY(90%);
  -webkit-transition: 1.5s;
  transition: 1.5s;
}
.AU260225BARI .mv-logo.is-active {
  clip-path: inset(0);
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
.AU260225BARI .mv-logo {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  will-change: opacity, transform;
}
@media (max-width: 767px) {
  .AU260225BARI .mv-logo {
    top: calc(578 * var(--formula));
    width: calc(333 * var(--formula));
  }
}
.AU260225BARI .mv-txt {
  display: none;
}
@media (max-width: 767px) {
  .AU260225BARI .mv-txt {
    position: absolute;
    bottom: calc(76 * var(--formula));
    right: 0;
    left: 0;
    margin: auto;
    display: block;
    font-family: "Hiragino Kaku Gothic ProN W5", "ヒラギノ角ゴ ProN W5", "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ", sans-serif;
    font-weight: 500;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    font-size: calc(23 * var(--formula));
    line-height: 1.86956522;
    color: #fff;
    letter-spacing: 0.075em;
    text-align: center;
    pointer-events: none;
    clip-path: inset(0 0 100% 0);
    -webkit-transition-property: clip-path;
    transition-property: clip-path;
    -webkit-transform: translateY(90%);
            transform: translateY(90%);
    -webkit-transition: 1.5s;
    transition: 1.5s;
  }
  .AU260225BARI .mv-txt.is-active {
    clip-path: inset(0);
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  .AU260225BARI .mv-txt {
    -webkit-transition-delay: 1.5s;
            transition-delay: 1.5s;
    will-change: opacity, transform;
  }
}
.AU260225BARI .mv-img {
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 1.2s ease;
  transition: opacity 1.2s ease;
}
.AU260225BARI .mv-img.is-active {
  opacity: 1;
}
.AU260225BARI .mv-img {
  will-change: opacity, transform;
}
@media (max-width: 767px) {
  .AU260225BARI .mv-img {
    height: auto;
  }
}
.AU260225BARI .mv-img img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  will-change: opacity, transform;
}
@media (max-width: 767px) {
  .AU260225BARI .mv-img img {
    -o-object-fit: fill;
       object-fit: fill;
    height: auto;
  }
}
.AU260225BARI {
  /* hero
  ------------------------------------------ */
}
.AU260225BARI .hero {
  margin-top: calc(343 * var(--formula_pc));
}
.AU260225BARI .hero-txt {
  font-family: "Hiragino Kaku Gothic ProN W5", "ヒラギノ角ゴ ProN W5", "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ", sans-serif;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(23 * var(--formula));
  line-height: 1.86956522;
  letter-spacing: 0.075em;
  text-align: center;
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
@media (max-width: 767px) {
  .AU260225BARI .hero {
    margin-top: 0;
    display: none;
  }
}
.AU260225BARI {
  /* product
  ------------------------------------------ */
}
.AU260225BARI .txt {
  font-family: "Hiragino Kaku Gothic ProN W5", "ヒラギノ角ゴ ProN W5", "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ", sans-serif;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(23 * var(--formula));
  line-height: 1.86956522;
  letter-spacing: 0.075em;
  text-align: center;
}
.AU260225BARI .txt-01 {
  margin-top: calc(70 * var(--formula));
}
.AU260225BARI .txt-02 {
  margin-top: calc(75 * var(--formula));
}
.AU260225BARI .txt-03 {
  margin-top: calc(70 * var(--formula));
}
.AU260225BARI .photo-01 {
  position: relative;
  width: calc(650 * var(--formula));
  margin: calc(280 * var(--formula)) auto 0;
}
@media (max-width: 767px) {
  .AU260225BARI .photo-01 {
    margin: calc(150 * var(--formula)) auto 0;
  }
}
.AU260225BARI .photo-01-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(16 * var(--formula));
}
.AU260225BARI .photo-01-price a {
  font-size: calc(24 * var(--formula));
  line-height: 2.08333333;
  letter-spacing: 0.025em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #fff;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.AU260225BARI .photo-01-price-wrapper {
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: calc(30 * var(--formula));
  text-align: center;
}
.AU260225BARI .photo-02 {
  position: relative;
  width: calc(650 * var(--formula));
  margin: calc(68 * var(--formula)) auto 0;
}
.AU260225BARI .photo-02-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(16 * var(--formula));
}
.AU260225BARI .photo-02-price a {
  font-size: calc(24 * var(--formula));
  line-height: 2.08333333;
  letter-spacing: 0.025em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #fff;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.AU260225BARI .photo-02-price-wrapper {
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: calc(32 * var(--formula));
  text-align: center;
}
.AU260225BARI .photo-03 {
  position: relative;
  width: calc(750 * var(--formula));
  margin: calc(150 * var(--formula)) auto 0;
}
.AU260225BARI .photo-03-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(16 * var(--formula));
}
.AU260225BARI .photo-03-price a {
  font-size: calc(24 * var(--formula));
  line-height: 2.08333333;
  letter-spacing: 0.025em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #fff;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.AU260225BARI .photo-03-price a {
  color: #000;
}
.AU260225BARI .photo-03-price-wrapper {
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: calc(30 * var(--formula));
  text-align: center;
}
.AU260225BARI .photo-04 {
  width: calc(600 * var(--formula));
  margin: calc(68 * var(--formula)) auto 0;
}
.AU260225BARI .photo-05 {
  position: relative;
  width: calc(650 * var(--formula));
  margin: calc(150 * var(--formula)) auto 0;
}
.AU260225BARI .photo-05-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(16 * var(--formula));
}
.AU260225BARI .photo-05-price a {
  font-size: calc(24 * var(--formula));
  line-height: 2.08333333;
  letter-spacing: 0.025em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #fff;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.AU260225BARI .photo-05-price-wrapper {
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: calc(32 * var(--formula));
  text-align: center;
}
.AU260225BARI .photo-06 {
  position: relative;
  width: calc(650 * var(--formula));
  margin: calc(66 * var(--formula)) auto 0;
}
.AU260225BARI .photo-06-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(16 * var(--formula));
}
.AU260225BARI .photo-06-price a {
  font-size: calc(24 * var(--formula));
  line-height: 2.08333333;
  letter-spacing: 0.025em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #fff;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.AU260225BARI .photo-06-price-wrapper {
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: calc(32 * var(--formula));
  text-align: center;
}
.AU260225BARI {
  /* all
  ------------------------------------------ */
}
.AU260225BARI .all {
  padding: calc(198 * var(--formula)) 0 calc(90 * var(--formula));
  text-align: center;
}
.AU260225BARI .all-link {
  position: relative;
  display: inline-block;
  font-size: calc(30 * var(--formula));
  letter-spacing: 0.057em;
}
.AU260225BARI .all-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(-4 * var(--formula));
  width: 100%;
  height: 1px;
  background-color: #000;
}
.AU260225BARI {
  /* staff
  ------------------------------------------ */
}