@charset "UTF-8";
/* media query

------------------------------------------ */
/* display
------------------------------------------ */

body {
  width: 100vw;
  overflow-x: hidden;
}


.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
------------------------------------------ */
/* ヘッダーオーバーライド
------------------------------------------ */
body {
  background-color: white;
}

#Foot {
  background-color: white;
}

@media (max-width: 767px) {
  #header {
    height: 13.3333333333vw;
  }
}

.header__wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: var(--zindex-header);
  margin: 11.1rem 0 4rem;
  padding: 0 2.5rem 0 4.2rem;
}
.header .header-logo{
  width: 12.7rem;
}
.header .header-logo h1{
  margin-left: -0.1rem;
}

@media (max-width: 767px) {
  .header__wrapper {
    position: absolute;
    top: calc(80 * var(--formula));
    width: 100%;
    padding: 0 4vw 0;
    margin: 8vw 0 6vw;
  }
  .header .header-logo{
    width: calc(190 * (100vw / 750));
  }
  .header .header-logo h1{
    margin-left: calc(21 * (100vw / 750));
  }
  .header .navigation__icon--cart, .header .navigation__icon--search{
    width: calc(25 * (100vw / 750));
  }
  .header .navigation__icon--cart a{
    margin-top: calc(-12 * (100vw / 750));
  }
}

@media screen and (max-width: 767px) {
  #header:not(.is-open) .header__inner svg {
    fill: white;
  }
  #header:not(.is-open) .cls-4 {
    stroke: white;
  }
  #header:not(.is-open).header .navigation__list {
    color: white;
  }
  #header:not(.is-open).header .drawer-btn__border {
    background: white;
  }
  #header:not(.is-open).header .drawer-btn__border::after {
    background: white;
  }
  #header:not(.is-open).header .drawer-btn__border::before {
    background: white;
  }
}
@media screen and (min-width: 768px) {
  #header .header__inner svg {
    fill: black;
  }
  #header .cls-4 {
    stroke: black;
  }
  #header.header .navigation__list {
    color: black;
  }
  .navigation__icon.navigation__icon--user.hidden-mobile{
    margin-right:1rem;
  }
  .header .navigation{
    font-size: 15px;
    top: .3rem;
  }
  .header .navigation__icon--user a{
    margin-left: 8px;
    padding-left: 14px;
  }
  .header .navigation__icon:not(:nth-of-type(1)){
    margin-left: 2.1rem;
    margin-top: -.3rem;
  }
  .header .drawer-btn{
    width: 2rem;
    height: 2rem;
    top: -0.4rem;
    left: .9rem;
  }
  .header .drawer-btn__border::after{
    top: -1rem;
  }
  .header .drawer-btn__border::before{
    top: 1rem;
  }
  #header:not(.is-open).header .drawer-btn__border {
    background: black;
  }
  #header:not(.is-open).header .drawer-btn__border::after {
    background: black;
  }
  #header:not(.is-open).header .drawer-btn__border::before {
    background: black;
  }
}
.AU251029ILGIACCONE {
  /* 可変設定
  ------------------------------------------ */
  /*デザインの値*/
  --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
  ------------------------------------------ */
  /* 共通
  ------------------------------------------ */
  /* LP style
  ------------------------------------------ */
  background-color: white;
  color: #1a1a1a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
  .AU251029ILGIACCONE {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    );
    --variable: calc(100vw / var(--pc-width));
  }
/* @media (min-width: 1401px) {
  .AU251029ILGIACCONE {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    );
    --variable: 1px;
  }
}
  /*
@media (min-width: 768px) and (max-width: 1400px) {
  .AU251029ILGIACCONE {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    );
    --variable: calc(100vw / var(--pc-width));
    
    margin-top: calc(42 * var(--formula));
  }
} */
@media (max-width: 767px) {
  .AU251029ILGIACCONE {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
    overflow-x: hidden;
  }
}
.AU251029ILGIACCONE img {
  width: 100%;
  height: auto;
}
.AU251029ILGIACCONE * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* margin-top: calc(42 * var(--formula)); */
}
@media (max-width: 767px) {
  .AU251029ILGIACCONE .AU251029ILGIACCONE-inner {
    display: block;
    margin-top: 0;
  }
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .mv {
  position: sticky;
  top: 0;
  width: 50%;
  /* height: 100vh; */
  height: 100%;
}
@media (max-width: 767px) {
  .AU251029ILGIACCONE .AU251029ILGIACCONE-inner .mv {
    position: relative;
    width: 100%;
    height: auto;
  }
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .mv-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  margin: auto;
  width:calc(368.729 * var(--formula_pc));
  bottom: 40%;
  left: 50.3%;
  transform: translate(-50%);
  z-index: 1;
}

@media (max-width: 767px) {
  .AU251029ILGIACCONE .AU251029ILGIACCONE-inner .mv-logo {
    width: calc(485 * var(--formula));
    top: auto;
    bottom: 31.5%;
  }
}

.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .mv-logo-01 {
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  .AU251029ILGIACCONE .AU251029ILGIACCONE-inner .mv-logo-01 {
    width: calc(408 * var(--formula));
  }
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .mv-logo-02 {
  display: block;
  margin-top: calc(22 * var(--formula_pc));
  width: calc(245 * var(--formula_pc));
  margin-right: calc(3 * var(--formula_pc));
}
@media (max-width: 767px) {
  .AU251029ILGIACCONE .AU251029ILGIACCONE-inner .mv-logo-02 {
    margin-top: calc(24 * var(--formula));
    width: calc(269 * var(--formula));
  }
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .mv-img {
  width: 100%;
  height: 100%;
  /* height: 100vh; */
  opacity: 0;
}
/* @media (min-width: 1401px) {
  .AU251029ILGIACCONE .AU251029ILGIACCONE-inner .mv-img {
    height: 100%;
  }
} */
@media (max-width: 767px) {
  .AU251029ILGIACCONE .AU251029ILGIACCONE-inner .mv-img {
    height: auto;
  }
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .mv-img img {
  /* height: 100vh; */
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
/* @media (min-width: 1401px) {
  .AU251029ILGIACCONE .AU251029ILGIACCONE-inner .mv-img img {
    height: 100%;
  }
} */
@media (max-width: 767px) {
  .AU251029ILGIACCONE .AU251029ILGIACCONE-inner .mv-img img {
    -o-object-fit: fill;
       object-fit: fill;
    height: auto;
  }
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .mv-txt {
  font-size: calc(26 * var(--formula));
  font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.76923077;
  letter-spacing: 0.075em;
  text-align: center;
  line-height: 1.73;

  position: absolute;
  top: calc(84 * var(--formula));
  z-index: 2;
  background:rgba(255,255,255,0.6);
  padding: calc(14 * var(--formula)) calc(0 * var(--formula)) calc(7 * var(--formula));
  left:49.7%;
  transform: translateX(-50%);
  width: 94%;
  pointer-events: none;
}
@media (max-width: 767px) {
  .AU251029ILGIACCONE .AU251029ILGIACCONE-inner .mv-txt {
    letter-spacing:0.078em;
    padding: calc(15 * var(--formula)) calc(10 * var(--formula)) calc(3 * var(--formula));
  }
}
@media (max-width: 767px) {
  .AU251029ILGIACCONE .AU251029ILGIACCONE-inner .mv-txt {
    margin-top: calc(0 * var(--formula));
    line-height: 1.75;
    width: 94.5%;
    left: 50%;
  }
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container {
  width: 50%;
}
@media (max-width: 767px) {
  .AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container {
    width: 100%;
  }
}

.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .grid-box{
  display: grid;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont {
  width: calc(750 * var(--variable) * var(--ratio));
  margin: 0 auto;
  padding-left: calc(2 * var(--variable));
}
@media (max-width: 767px) {
  .AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont {
    width: 100%;
    padding-left: calc(0 * var(--variable));
  }
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product01 {
  margin-top: calc(406 * var(--formula));
}
@media (max-width: 767px) {
  .AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product01 {
    margin-top: calc(152 * var(--formula));
  }
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .js-over-hidden{
  overflow: hidden;
}

.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product01-photo-01 {
  width: calc(700 * var(--formula));
  margin: 0 auto;
  position: relative;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product01-photo-02 {
  width: calc(600 * var(--formula));
  margin: calc(32 * var(--formula)) auto 0;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product01-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(14 * var(--formula));
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .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.03em;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product01-price-01 {
  margin-top: calc(31 * var(--formula));
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product01-txt {
  font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Arial, "メイリオ", Meiryo, sans-serif;
  font-family: var(--font-primary);
  font-weight: 600;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(25 * var(--formula));
  letter-spacing: 0.065em;
  text-align: justify;
  font-weight: 600;
  line-height: 1.8;
  margin: calc(146 * var(--formula)) auto 0;
  text-align: center;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product02 {
  margin-top: calc(65 * var(--formula));
  margin-bottom: calc(132 * var(--formula));
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product02 .grid-box {
  grid-template-columns: calc(150 * var(--formula)) auto;
  grid-template-rows: calc(941 * var(--formula)) auto;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product02-photo-01 {
  width: calc(702 * var(--formula));
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product02-photo-01 a {
  pointer-events: auto;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product02-photo-02 {
  width: calc(601 * var(--formula));
  grid-row: 2 / 3;
  grid-column: 2 / 3;
  position: relative;
  z-index: 1;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product02-photo-03 {
  width: calc(490 * var(--formula));
  margin: calc(73 * var(--formula)) auto 0;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product02-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(14 * var(--formula));
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .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.03em;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product02-price-01 {
  margin-top: calc(30 * var(--formula));
}
@media (max-width: 767px) {
  .AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product02-price-01 {
    margin-top: calc(30 * var(--formula));
  }
}
@media (min-width: 1401px) {
  .AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product02-price-01 {
  margin-top: calc(24 * var(--formula));
}
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product02-txt {
  font-size: calc(26 * var(--formula));
  font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Arial, "メイリオ", Meiryo, sans-serif;
  font-family: var(--font-primary);
  font-weight: 600;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.76923077;
  letter-spacing: 0.075em;
  text-align: center;
  margin: calc(74 * var(--formula)) auto 0;
}
@media (max-width: 767px) {
  .AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product02-txt {
    letter-spacing: 0.05em;
  }
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product-movie{
  position: relative;
}

.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product-movie video{
    height: calc(1340 * var(--formula));
    object-fit: cover;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product-movie .product-movie__is-sound{
  position: absolute;
  bottom: calc(28 * var(--formula));
  right: calc(13 * var(--formula));
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product-movie .product-movie__is-sound button{
  border: none;
  background: no-repeat;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product-movie .product-movie__is-sound button:hover{
  cursor: pointer;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product-movie .product-movie__is-sound button img{
  width: calc(100 * var(--formula));
}
@media screen and (min-width: 768px) {
  .AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product-movie .product-movie__is-sound{
    bottom: calc(26 * var(--formula));
    right: calc(23 * var(--formula));
  }
}

.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product03 {
  margin-top: calc(142 * var(--formula));
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product03 .grid-box {
  grid-template-columns: calc(50 * var(--formula)) auto;
  grid-template-rows: calc(946 * var(--formula)) auto;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product03-photo-01 {
  width: calc(702 * var(--formula));
  grid-row: 1 / 3;
  grid-column: 2 / 3;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product03-photo-02 {
  width: calc(600 * var(--formula));
  grid-row: 2 / 3;
  grid-column: 1 / 3;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product03-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(17 * var(--formula));
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .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.023em;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product03-price span {
  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.023em;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product03-price-01 {
  margin-top: calc(28 * var(--formula));
}
@media (max-width: 767px) {
  .AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product03-price-01 {
    margin-top: calc(30 * var(--formula));
  }
}
@media (min-width: 1401px) {
  .AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product03-price-01 {
    margin-top: calc(26 * var(--formula));
  }
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product03-txt-01 {
  font-size: calc(26 * var(--formula));
  font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Arial, "メイリオ", Meiryo, sans-serif;
  font-family: var(--font-primary);
  font-weight: 600;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.76923077;
  letter-spacing: normal;
  text-align: center;
  margin: 0 auto calc(68 * var(--formula));
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product04 {
  margin-top: calc(135 * var(--formula));
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product04-photo-01 {
  width: calc(650 * var(--formula));
  margin: 0 auto;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product04-photo-02 {
  position: relative;
  z-index: 1;
  width: calc(650 * var(--formula));
  margin: calc(65 * var(--formula)) auto 0;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product04-photo-03 {
  width: calc(530 * var(--formula));
  margin: calc(-47 * var(--formula)) auto 0;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product04-photo-04 {
  width: calc(650 * var(--formula));
  margin: calc(64 * var(--formula)) auto 0;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product04-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(14 * var(--formula));
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .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.02em;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product04-price-01 {
  margin-top: calc(32 * var(--formula));
}
@media (min-width: 1401px) {
  .AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product04-price-01 {
    margin-top: calc(28 * var(--formula));
  }
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product04-txt-01 {
  font-size: calc(26 * var(--formula));
  font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Arial, "メイリオ", Meiryo, sans-serif;
  font-family: var(--font-primary);
  font-weight: 600;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.76923077;
  letter-spacing: normal;
  padding-left: calc(15 * var(--formula));
  text-align: center;
  margin: calc(69 * var(--formula)) auto 0;
}
@media (max-width: 767px) {
  .AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product04-txt-01 {
    letter-spacing: normal;
  }
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product04-txt-02 {
  font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Arial, "メイリオ", Meiryo, sans-serif;
  font-family: var(--font-primary);
  font-weight: 600;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(23 * var(--formula));
  letter-spacing: 0.075em;
  text-align: justify;
  font-weight: 500;
  line-height: 1.86956522;
  width: calc(650 * var(--formula));
  margin: calc(78 * var(--formula)) auto 0;
}


.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product05 {
  margin-top: calc(122 * var(--formula));
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product05-photo-01 {
  width: calc(550 * var(--formula));
  margin: 0 auto;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product05-photo-02 {
  position: relative;
  z-index: 1;
  width: calc(700 * var(--formula));
  margin: calc(30 * var(--formula)) auto 0;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product05-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(14 * var(--formula));
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product05-price a {
  font-family: "nimbus-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(25 * var(--formula));
  line-height: 2.08333333;
  letter-spacing: 0.005em;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product05-price-01 {
  margin-top: calc(31 * var(--formula));
}
@media (max-width: 767px) {
  .AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product05-price-01 {
  margin-top: calc(29 * var(--formula));
}
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product05-txt-01 {
  font-size: calc(26 * var(--formula));
  font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Arial, "メイリオ", Meiryo, sans-serif;
  font-family: var(--font-primary);
  font-weight: 600;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.76923077;
  letter-spacing: 0.03em;
  text-align: center;
  margin: 0 auto calc(65 * var(--formula));
}
@media (max-width: 767px) {
  .AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product05-txt-01 {
    letter-spacing: 0.02em;
    line-height: 1.75;
  }
}
.AU251029ILGIACCONE .AU251029ILGIACCONE-inner .lp-container .lp-cont .product05-txt-02 {
  font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Arial, "メイリオ", Meiryo, sans-serif;
  font-family: var(--font-primary);
  font-weight: 600;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: calc(23 * var(--formula));
  letter-spacing: 0.075em;
  text-align: justify;
  font-weight: 500;
  line-height: 1.86956522;
  width: calc(650 * var(--formula));
  margin: calc(78 * var(--formula)) auto 0;
}


.AU251029ILGIACCONE .view-all {
  padding: calc(169 * var(--formula_pc)) 0 calc(176 * var(--formula_pc));
  text-align: center;
}
@media (max-width: 767px) {
  .AU251029ILGIACCONE .view-all {
    padding: calc(201 * var(--formula)) 0 calc(92 * var(--formula));
  }
}
.AU251029ILGIACCONE .view-all-link {
  position: relative;
  display: inline-block;
  font-family: "nimbus-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(28 * var(--formula));
  letter-spacing: 0.07em;
}
@media (max-width: 767px) {
  .AU251029ILGIACCONE .view-all-link {
    font-size: calc(29 * var(--formula));
  }
}
.AU251029ILGIACCONE .view-all-link::after {
  content: "";
  position: absolute;
  left: calc(-3 * var(--formula_pc));
  background-color:#1a1a1a;
  bottom: calc(-6 * var(--formula_pc));
  width: 110%;
  height: 1px;
}
@media (max-width: 767px) {
  .AU251029ILGIACCONE .view-all-link::after {
    bottom: calc(-1 * var(--formula));
    width: 100%;
    left: calc(3 * var(--formula_pc));
  }
}
  .header .information{
    height: 6rem;
  }
  @media (max-width: 767px) {
      .header .information{
      height: calc(80* (100vw / 750));
    }
  }

.top_button{
    width: 43px;
    height: 43px;
    margin-right: 51px;
}
.top_button::before, .top_button::after{
  top: 32%;
}
.top_button::before{
  left: 18px;
}
@media (min-width: 1401px) {
  .header__wrapper {
    margin: 11.5rem 0 4rem;
    padding:0 3rem 0 4.7rem;
  }
  .header .header-logo{
    width: 13.7rem;
  }
  .header .navigation__icon:not(:nth-of-type(1)){
    margin-left: 2.3rem;
  }
  .navigation__icon.navigation__icon--user.hidden-mobile{
    margin-right: 1.3rem;
  }
  .header .navigation{
    font-size: 1.55rem;
    top: .6rem;
  }
  .header .navigation__icon--user a{
    margin-left: 1rem;
    padding-left: 1.5rem;
  }
}


.footer__wrapper {
    padding: calc(30 * (100vw / 750)) 0 calc(5 * (100vw / 750));
}
.footer-mailmagazine{
    padding-top: 72px;
}
.footer .navigation__index{
  letter-spacing: 0.07rem;
}
.footer .navigation .mailmagazine__block{
  margin-top: 16px;
}
.footer .navigation__item:nth-child(2){
  margin-left: 5.6rem;
}
.footer .navigation__item:nth-child(3){
  margin-left: 6.9rem;
  letter-spacing: .08em;
}
.footer .navigation__item:nth-child(4){
  margin-left: 7.7rem;
  letter-spacing: .08em;
}
.footer .navigation__item:nth-child(4) a{
    margin-right: .2rem;
}
.footer .copyright{
  margin-top: 28px;
}
@media (min-width: 1401px) {
  .footer-mailmagazine {
      padding-top: 8rem;
  }
  .footer .social{
    margin-top: 13rem;
  }
  .footer .copyright {
      margin-top: 3.3rem;
  }
  .top_button{
    margin-right: 5.8rem;
    margin-top: -9.7rem;
  }
}

@media screen and (max-width: 767px) {
  .top_button {
    width: 9.4vw;
    height: 9.6vw;
    margin: -2.6vw 0 7vw 83.2vw;
  }
  .top_button::before {
    left: 4vw;
  }
  .top_button::after {
    right: 3.5vw;
  }
  .footer__wrapper {
    padding: 7.7333333333vw 0 2vw;
  }
  .footer-mailmagazine {
    margin-top: 6.5vw;
    padding: 0;
  }
  .footer .navigation__index {
    letter-spacing: 0.05em;
  }
  .footer .navigation .mailmagazine__block {
    margin-top: 6.4vw;
  }
  .footer .navigation .mailmagazine__form input {
    font-size: 2.4vw;
    padding: 0;
    padding-bottom: 0.5333333333vw;
  }
  .footer .social {
    margin-top: 16.6666666667vw;
  }
  .footer .copyright {
    margin-top: 8.6666666667vw;
  }
  .footer__inner {
    padding: 0 7.6vw 0 8.6666666667vw;
  }
  .footer .navigation__index .arrow {
    margin-left: 0.9333333333vw;
  }
  .footer .navigation__item:nth-child(2),.footer .navigation__item:nth-child(3),.footer .navigation__item:nth-child(4){
    margin-left: 0;
  }
}