/* ===============================================
  * COMMON *
=============================================== */
:root {
  --spacer-xxs: 1.5rem;
  --spacer-xs: 2rem;
  --spacer-s: 1.8rem;
  --spacer-m: 4rem;
  --spacer-l: 5rem;
  --spacer-xl: 6rem;
  --padding-horizontal: 5.2%;
  --transition-duration: 1.5s;
}


@media (min-width: 769px) {
  :root {
    --spacer-xxs: 3rem;
    --spacer-xs: 4rem;
    --spacer-s: 3rem;
    --spacer-m: 8rem;
    --spacer-l: 10rem;
    --spacer-xl: 12rem;
    --padding-horizontal: min(4.54%, 5rem);
  }
}



.main-area > *{
  -webkit-font-smoothing: antialiased;
}
.main-area{
  position: relative;
  background-color: var(--color-bg-main);
}
.lp_area::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 375/541;
    background-image: url(/Page/LP/2023/0821_limited/assets/imgs/bg-mobile.png);
    background-repeat: no-repeat;
    background-size: 100%;
    transition: 1s;
    mix-blend-mode: darken;
}
.contentsArea{
  position: relative;
  z-index: 5;
}
.lp_area img{
  width: 100%;
  height: auto;
}
.maivsiual{
  position: relative;
}
.lp_area .slick-slide{
  height: fit-content;
}
.slider-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
.fa-angle-right{
  right: 5rem;
}
.fa-angle-left{
  left: 5rem;
}
.slider-arrow img {
  transition-property: transform;
  transition-duration: 0.5s;
  transform: translateX(0);
}
.slider-arrow img:hover {
  transform: translateX(-2rem);
}

/*
 * Structure
 */

.main-area.lp,
.main-area.lp * {
  box-sizing: border-box;
}

.main-area.lp {
  margin: 0;
  background-color: var(--color-bg-main);
}
body:has(.tab__panel-box.__01.is-show) .header[data-header-theme="dark"] {
    background: linear-gradient(180deg, rgba(250,215,185,1), rgba(250,215,185,0));
}
.lp_area:has(.tab__panel-box.__01.is-show){
  background: #EDD7B9;
}
.lp_area:has(.tab__panel-box.__01.is-show)::before{
  background-image: url(/Page/LP/2023/1107_leather/asset/img/bg-desktop_02.png);
}



@media (max-width: 768px) {
  .slider-arrow{
    display: none!important;
  }
}


@media (min-width: 769px) {
.lp_area::before {
    background-image: url(/Page/LP/2023/0821_limited/assets/imgs/bg-desktop.png);
  }
  .spOnly{
    display: none!important;
  }
}




/*
 * Text
 */
@media (max-width: 768px) {
  .lead,
  .lead > *{
    display: block;
    text-align: center;
    font-family: var(--font-jp);
    font-size: 1.2rem;
    line-height: 2;
    letter-spacing: 0.08em;
    color: #250D00;
  }
  .sec .ttl{
    text-align: center;
    font-family: "trajan-pro-3", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.5rem;
    line-height: 2.4;
    letter-spacing: 0.08em;
    margin-bottom: 2.8rem;
    color: #250D00;
  }
  .sec.__03 .ttl {
    margin-bottom: 5.6rem;
  }
  .sec .ttl .main{
    line-height: 1.9;
  }
  .sec .ttl .sub{
    font-size: 1.40rem;
    line-height: 1.7;
    letter-spacing: 0.08em;
  }
  .sec.__03 .ttl .sub{
  display: block;
  margin-top: 0.3rem;
  }
  .sec .credit{
    text-align: center;
    margin-bottom: 2.3rem;
  }
  .sec .credit li > *{
    font-feature-settings: normal;
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.08em;
    color: #250D00;
    text-align: center;
  }
  
}


@media (min-width: 769px) {
  .lead,
  .lead > *{
    text-align: center;
    font-family: var(--font-jp);
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: #250D00;
  }
  .sec .lead{
    font-size: 1.3rem;
    line-height: 1.769;
  }
  .sec.__02 .lead{
    font-size: 1.4rem;
    line-height: 1.786;
    letter-spacing: 0.08em;
  }
  .sec .ttl{
    text-align: center;
    font-family: "trajan-pro-3", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3.4rem;
    letter-spacing: 0.08em;
    margin-bottom: 2.2rem;
    color: #250D00;
  }
  .sec.__03 .ttl{
    margin-bottom: 7.8rem;
  }
  .sec .ttl .main{
    line-height: 1.9;
  }
  .sec .ttl .sub{
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
  .sec.__03 .ttl .sub {
    display: block;
    transform: translateY(0.4rem);
  }
  .sec .creditWrap .ttl{
    text-align: left;
    font-family: var(--font-jp);
    font-size: 1.3rem;
    line-height: 1.846;
    margin-bottom: 0.2rem;
  }
  .sec .credit{
    text-align: center;
    margin-bottom: 2rem;
  }
  .sec .credit li > *{
    font-feature-settings: normal;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    line-height: 2;
    letter-spacing: 0.08em;
    color: #250D00;
    text-align: center;
  }
}








/* ===============================================
  * MV *
=============================================== */



/* ===============================================
  * item - n *
=============================================== */
@media (max-width: 768px) {
  .sec .imgBox.__0201{
    width: 30rem;
  }


  .main-area.lp{
    /* overflow: hidden; */
  }
  .lp_area::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 375/541;
    background-image: url(/Page/LP/2023/0821_limited/assets/imgs/bg-mobile.png);
    background-repeat: no-repeat;
    background-size: 100%;
  }
  .lp_area:has(.tab__panel-box.__01.is-show)::before{
    background-image: url(/Page/LP/2023/1107_leather/asset/img/bg-mobile_02.png);
  }
  .maivsiual .lead::before,
  .maivsiual .lead::after {
    content: "";
    display: block;
    background: url(../img/img_ttlStar.svg) center/100% no-repeat;
    width: 1.8rem;
    height: 1.8rem;
    margin: auto;
  }
  .maivsiual .lead::before{
    margin: 0 auto 2.5rem;
  }
  .maivsiual .lead::after{
    margin: 2.3rem auto 0rem;
  }
  .maivsiual .lead{
    margin: 8.3rem auto 8rem;
  }
  .lineclip{
    display: block;
    width: 33.6rem;
    margin: 0 auto 10rem;
  }
  .sec{
    margin-bottom: 7.8rem;
  }
  .sec.__01 {
      margin-bottom: 10.3rem;
  }
  .sec.__02 {
    margin-bottom: 9.6rem;
  }
  .sec.__03 {
    padding-bottom: 10.5rem;
    margin: 0;
  }
  .sec .imgBox{
    margin-bottom: 3.5rem;
  }
  .sec .imgBox.__0201 {
    margin: auto;
    margin-bottom: 2.4rem;
  }
  .sec .lead {
    margin-bottom: 7.5rem;
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .sec.__02 .lead {
    font-size: 1.2rem;
    line-height: 2;
    letter-spacing: 0.08em;
  }
  .sec .ttl .main{
    position: relative;
    display: block;
    width: fit-content;
    margin: auto;
  }
  .sec .ttl .main::before,
  .sec .ttl .main::after{
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    display: block;
    background: url(../img/img_ttlStar.svg) center/100% no-repeat;
    width: 1.3rem;
    height: 1.3rem;
  }
  .sec .ttl .main::before{
    left: -1.6rem;
  }
  .sec .ttl .main::after{
    right: -1.6rem;
  }
  .sec .buyBtn{
    width: 25rem;
    margin: auto;
  }
  .lineclip.bottomSml{
    margin: 0 auto 8.7rem;
  }
  
  /* sec 08 */
  .lineclip.bottomSml.--02{
    margin: 0 auto 8.2rem;
  }
}


@media (min-width: 769px) {
  .imgBox.__0201{
    width: 30rem;
    margin: 0px auto 2.5rem;
  }


  .main-lp_area::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 375/541;
    background-image: url(/Page/LP/2023/0821_limited/assets/imgs/bg-mobile.png);
    background-repeat: no-repeat;
    background-size: 100%;
  }
  .maivsiual .lead{
    position: relative;
    margin: 10rem auto 10rem;
    font-size: 1.5rem;
    line-height: 2.0;
    text-align: center;
  }
  .maivsiual .lead::before,
  .maivsiual .lead::after {
    content: "";
    display: block;
    background: url(../img/img_ttlStar.svg) center/100% no-repeat;
    width: 2rem;
    height: 2rem;
    margin: auto;
  }
  .maivsiual .lead::before{
    margin: 0 auto 3rem;
  }
  .maivsiual .lead::after{
    margin: 3rem auto 0rem;
  }
  .lineclip{
    display: block;
    width: 100.0rem;
    margin: 0 auto 13rem;
  }
  .sec{
    padding-bottom: 9.8rem;
  }
  .sec.__02 {
    padding-bottom: 12.4rem;
  }
  .sec.__03 {
    padding-bottom: 13rem;
  }
  .sec .ttl .main{
    position: relative;
    display: block;
    width: fit-content;
    margin: auto;
  }
  .sec .ttl .main::before,
  .sec .ttl .main::after{
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    display: block;
    background: url(../img/img_ttlStar.svg) center/100% no-repeat;
    width: 2.0rem;
    height: 2.0rem;
  }
  .sec .ttl .main::before{
    left: -3rem;
  }
  .sec .ttl .main::after{
    right: -3rem;
  }
  .sec .grid{
    display: grid;
    grid-template-columns: repeat(3, auto);
    column-gap: 4rem;
    width: 110rem;
    margin: 0 auto 5.6rem;
  }
  .sec.__01 .imgBox{
    width: 34rem;
    margin-bottom: 3.5em;
  }
  .sec .buyBtn{
    width: 25rem;
    margin: auto;
  }
  .sec.__01 .buyBtn{
    margin-bottom: 3.2rem;
  }
  .lineclip.bottomSml{
    margin: 0px auto 11.8rem;
  }
  .lineclip.bottomSml.--02{
    margin: 0 auto 11.5rem;
  }
  .sec.__02 .ttl .main {
    font-family: 'trajan-pro-3', sans-serif;
    font-size: 4rem;
    line-height: 1.5;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
  }
  .sec.__02 .ttl .sub {
    display: block;
    font-size: 2.6rem;
    line-height: 1.65;
    letter-spacing: 0.08em;
  }
  .sec.__02 .ttl .info {
    display: block;
    font-family: var(--font-jp);
    font-size: 1.5rem;
    line-height: 3;
    letter-spacing: 0.08em;
    margin-bottom: 2.3rem;
  }
}





/* ã‚¿ãƒ–ãƒ¡ãƒ‹ãƒ¥ãƒ¼ */
.tab{
  position: relative;
  z-index: 5;
}
.tab__menu {
  position: sticky;
  display: flex;
  bottom: 0;
  left: 0;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: 6rem;
  padding: 0;
  margin: 0;
  border-top: 1px solid #42210B;
  z-index: 100;
}


.lp_area:has(.tab__panel-box.__01.is-show) .tab__menu-item{
  background-color: #F7E5CB;
}

.tab__menu-item {
  list-style: none;
  width: 50%;
  height: 6rem;
  font-family: 'trajan-pro-3', sans-serif;
  font-size: 1.2rem;
  line-height: 6rem;
  letter-spacing: 0.08em;
  text-align: center;
  background-color: #F2E9DF;
  cursor: pointer;
  transition: all .3s;
}

.tab__menu-item:last-of-type {
  margin-right: 0px;
}


.tab__menu-item.is-active {
  background-color: #42210B!important;
  color: #ffffff;
}


.tab__panel-box {
  display: none;
  transition: 1s;
}

.tab__panel-box.is-show {
  display: block;
}
@media (max-width: 768px) {
  .tab__menu-item{
    font-size: 1rem;
  }
}

/* ===============================================
  * ITEM - 1 *
=============================================== */
