<style>
@charset "UTF-8";

/* *{ border: 1px solid red} */
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue-Medium.woff2') format('woff2'),
       url('../fonts/HelveticaNeue-Medium.woff') format('woff'),
       url('../fonts/HelveticaNeue-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "KozGoPr6N-Regular"; /* ファイル名と一致するよう注意 */
  src: url("../fonts/KozGoPr6N-Regular.otf") format("opentype");
  font-display: swap;
}

body {
  font-family: 'Helvetica Neue', 'Helvetica', 'Hiragino Kaku Gothic StdN W3','ヒラギノ角ゴ StdN', 'メイリオ', 'Meiryo', sans-serif;
  font-weight: 400;
}

html {
  font-size: 16px;
}

body.lanvin_style {
  background-color: #fff !important;
  color: #000 !important;
}

/* ホバー */
a,
button {
  -webkit-text-decoration: none;
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:visited {
  color: #000;
}

.wbr {
  display: inline-block;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd,
p + p {
  margin: 0;
}

/* Set core root defaults */
/* Set core body defaults */
body {
  line-height: 1;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
video {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

hr {
  border: 0;
  height: 0;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 1.6293279022vw;
  }
  /* a:hover {
    opacity: 0.7;
  } */
}
/* =========================================== */
/*                 LVS reset                   */
/* =========================================== */
.lower_content {
  margin-top: 0;
}

.cont_ttl {
  display: none;
}

.ticker_off.lower #main_area,
.lower #main_area {
  padding-bottom: 0;
  padding-top: 0;
}

.main_width {
  padding-left: 0;
  padding-right: 0;
}

.lower_content {
  margin-top: 0;
  width: 100%;
}

#bread {
  display: none;
}

.main_width {
  max-width: none;
  max-width: initial;
}

.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1074px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.js-slide-in {
  -webkit-transition: -webkit-transform 6s cubic-bezier(0.23, 1, 0.32, 1);
  transition: -webkit-transform 6s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 6s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 6s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 6s cubic-bezier(0.23, 1, 0.32, 1);
}

.js-slide-in.-to-right {
  -webkit-transform: translateX(-25%);
          transform: translateX(-25%);
}

.js-slide-in.-to-left {
  -webkit-transform: translateX(25%);
          transform: translateX(25%);
}

.float-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  height: 100%;
  padding: 16px;
  text-align: center;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  font-size: 12px;
  font-size: max(12px, 3.0666666667vw);
  font-family: "HelveticaNeue", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .float-nav {
    font-size: 15px;
    font-size: max(15px, 1vw);
    padding: 40px;
  }
}

.float-nav.visible {
  opacity: 1;
  visibility: visible;
}

a.float-nav__link {
  color: gray;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: color, opacity;
  transition-property: color, opacity;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  padding: 0.5em;
}

a.float-nav__link.active {
  color: #000;
}

.img-box {
  aspect-ratio: 64/80;
  background: #fff;
}

@media screen and (min-width: 768px) {
  .img-box.img-box--full-h {
    width: 100%;
    max-height: calc(100vh - 72px);
  }
}

@media screen and (min-width: 768px) {
  .img-box.img-box--mid-h {
    width: 100%;
    max-height: calc(100vh - 72px - 4vw);
  }
}

.img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 15%;
     object-position: center 15%;
}

.img-box__link {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.img-box__link.unreleased {
  pointer-events: none;
}

@media (hover: hover) {
  .img-box__link:hover {
    opacity: 0.8;
  }
}
.img-box--switch {
  position: relative;
}

.img-box--switch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: imgSwitch 3.2s infinite;
          animation: imgSwitch 3.2s infinite;
}

.img-box--switch img:nth-child(2) {
  opacity: 0;
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

@-webkit-keyframes imgSwitch {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  50.01% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes imgSwitch {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  50.01% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
html, body {
  overflow-x: clip;}
/* =========================================== */
/*                  Footer                     */
/* =========================================== */
footer {
  position: relative;
  z-index: 5000 !important; /* より高い z-index を設定 */
  bottom: 0; /* 必要に応じて調整 */
  left: 0; /* 必要に応じて調整 */
  width: 100%; /* 必要に応じて調整 */
}
.lanvin_style footer #footer {
  color: #000;
  z-index: 300 !important;
  background-color: #fff;
}

.lanvin_style #footer #footer_area {
  padding-bottom: 12px;
  padding-top: 0;
}

.lanvin_style #footer #footer_area .navi_block .navi_set:nth-of-type(1) {
  display: none;
}

.lanvin_style #footer #footer_area .navi_block .navi_set .ttl {
  display: none;
}

#footer #footer_area .navi_set .ttl {
  display: none;
}

.lanvin_style #footer {
  background-color: transparent !important;
  background-color: #fff !important;
}

#footer #footer_area #copy_block .copy {
  font-size: 8px;
  text-align: center;
}

#footer #footer_area .navi_block,
ul.sns_icon {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#footer #page_top {
  bottom: 16px !important;
  position: fixed !important;

}

#footer #page_top a {
  background-color: #000;
  color: #fff;
  height: 35px;
  width: 35px;
}

#footer #page_top a::after {
  border-right: solid 2px #fff;
  border-top: solid 2px #fff;
  top: calc(50% + 2px);
}

#footer ul.sns_icon li.insta {
  margin-bottom: 0;
  width: 100%;
}

#footer ul.sns_icon li.insta a {
  background: url(https://store.descente.co.jp/lanvin/wp-content/uploads/sites/5/2024/01/icon-sns-instagram-1.png) no-repeat center center/cover !important;
}

#footer ul.sns_icon li.insta a {
  height: 30px;
  margin-left: auto;
  margin-right: auto;
  width: 30px;
}

#footer #footer_area .navi_block .navi_set {
  margin-bottom: 40px;
}

#footer #footer_area #copy_block .copy {
  font-size: 8px;
  font-size: max(8px, 2.6666666667vw);
}

@media screen and (min-width: 768px) {
  .lanvin_style #footer #footer_area {
    padding-bottom: 16px;
  }
  #footer #page_top a {
    height: 40px;
    width: 40px;
  }
  #footer ul.sns_icon li.insta a {
    height: 35px;
    width:35px;
  }
  #footer #footer_area .navi_block .navi_set {
    margin-bottom: 60px;
  }
  #footer #footer_area #copy_block .copy {
    font-size: 14px;
    font-size: max(14px, 0.8333333333vw);
  }
}
/* =========================================== */
/*                   Header                    */
/* =========================================== */
.inner {
  margin-left: auto;
  margin-right: auto;
  padding-left: 6.4%;
  padding-right: 6.4%;
  width: 100%;
}
#wrapper {
  overflow:hidden;
}

#LVS_25SS_ORIERI { 

 #header {
  background-color: #FFFFFF;
  position: fixed;
  top: 0;
  width: 100%;
 }
 .slick-arrow {
  display: none !important;
}
.slick-prev,.slick-next {
  display: none !important;
}
/* =========================================== */
/*                   price                    */
/* =========================================== */
.price {
  font-family: 'Helvetica';
  font-feature-settings: "palt";
  font-weight:200;
margin: 0% 0% 0% auto;
padding: 2% 0% 0% 0;
text-align: right;
z-index: 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  background-color: #fff;
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  text-align: right;
  
}
.price span {
  margin-right: 4%;
}
.price small {
  margin-right: 7%;
  margin-left: 5px;
}
/* .price a {
  padding-bottom: 1%;
} */
.price p a {
  white-space: nowrap;
  /* display: inline-block;

  padding: 0 11% 0 0; */
  transition: transform 0.3s ease; 
  position: relative;

}

/* .item__buy {
  margin-left: auto;
} */

.item__buy  {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}


.item__buy  span::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: -5%;
  left: 0;
}

.item__buy.unreleased a {
  visibility: hidden;
}

@media (hover: hover) {
  .item__buy:hover {
    opacity: 0.6;
  }
}
/* =========================================== */
/*                   main                    */
/* =========================================== */

/* 共通 */
.button {
  display: inline-block;
  font-family:Helvetica, sans-serif;
  padding: 10px 50px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  background-color: rgb(231, 41, 15);
  color: #fff !important;

}
.button p {
  font-stretch: clamp(12px, .97vw,.97vw);
  font-family:Helvetica, sans-serif;
  width: 121.77px;
}
.button:hover {
  /* opacity: 0.9; */
  background-color: #000;
}
.sp {
  display: none;
}
.pc {
  display: inline;
}
.category_wrap {
  position: relative;
  width: 100%;
  height: auto;
}
   .vertical_title {
    font-family: Helvetica, sans-serif;
    writing-mode: vertical-rl;
    font-size: max(15px, 1vw);
    font-weight: bold;
    color: #e7290f;
    text-align: center;
    position: fixed;
    left:1.5%;
    z-index: 99999 !important;
    opacity: 1;
    pointer-events: none;
    width: 1.2em; 
    height:auto;
  } 



  .vertical_title1 {
    top: 11%;
    position: fixed;
  }
  .vertical_title2 {
bottom:11%;
    position: fixed;
    height:auto;
  }
  .vertical_title1,
  .vertical_title2 {
    opacity: 0;
    pointer-events: none;
    font-weight: bold;
  }
  .vertical_title1.visible,
  .vertical_title2.visible {
    opacity: 1;
    pointer-events: auto;
    position: fixed;
    z-index: 99999 !important;
  }
  .pcbr {
    display: block;
  }
  .spbr {
    display: none;
  }


  .pcvideo{
    width: 100%;
    /* height: 100vh; */
    margin-top: 96px;
  }

  .mainvisual {
    width: 100vw;
    height: 100vh;
position: relative;

  }
  .font-change {
    font-family: Helvetica, sans-serif;
    letter-spacing: 1px;
  }
  h2 {
    font-family: "KozGoPr6N-Regular", sans-serif; 
    font-size: 2.2em;
    pointer-events: none;
    font-weight: 400;
    text-align: center;
    line-height: 2;
    letter-spacing: 2px;
    margin-left: 20px;
  }
  
  .main-text {
    width: 100%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
  }
  
  .main-text1 {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: bold;
    font-size: 1.7em;
    text-align: center;
    margin:5% auto;
  }
  
  .main-text2 {
    font-family: "KozGoPr6N-Regular", sans-serif; 
    font-size: 18px;
    text-align: center;
    /* width: 40%; */
    margin: 0 auto;
    line-height: 2.2;
    letter-spacing: 1px;
  }

.detail-wrap {
  width: 60%;
  margin: 20% auto;
}

.section2 {
  width: 50%;
  max-width: 50%;
  margin: 0 auto ;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
  text-align: center; 
}
.section2 .button {
  margin: 20% 0 0 0;
}

.section3 {
  /* max-width: 80%; */
  margin:0 auto;
}
h3 {
  width: 150px;
 margin: 0 auto;
}
h4 {
  font-family: "KozGoPr6N-Regular", sans-serif; 
  font-size: 1.9em;
  text-align: center;
  margin: 3% auto;
  line-height: 1.5;
}
  .flex-detail {
display: flex;
justify-content: space-between;
align-items: center;
width:100%;
margin: 8% auto 0;

}
.section3 .flex-detail .fade {
  width: 45%;
}
.section3 .flex-detail p {
  width: 45%;
  text-align: justify;
  line-height: 2.2;
  font-size: 16px;
  font-family: "KozGoPr6N-Regular", sans-serif; 
}
.section4  {
  /* max-width: 80%; */
  margin: 25% auto;
  /* margin-bottom: 20%; */
}
.section4 h3 {
  width: 260px;
 margin: 0 auto;
}
.section4 p {
  width: 45%;
text-align: justify;
line-height: 2.2;
font-size: 16px;
font-family: "KozGoPr6N-Regular", sans-serif; 
}
.section4 video {
  width: 45%;
}
.section5 {
  /* max-width: 80%; */
  margin: 0 auto;
}
.section5 h3 {
  width: 100%;
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: bold;
  font-size: 1.7em;
  text-align: center;
  margin: 0% auto ;
}
.section5 img {
  width: 45%;
}
.section5 p {
  width: 45%;
  line-height: 2.2;
  text-align: justify;
  font-size: 16px;
  font-family: "KozGoPr6N-Regular", sans-serif; 
}
.section6 {
  width: 100%;
  margin:0% auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
  text-align: center; 
}
.section-detail {
  display: flex;
  justify-content: space-between;
}
.section-detail li {
 width: 33%;
}
.section6 .button {
  margin: 10% auto 15%;
}

.pcvideo {
  display: block;
}
.spvideo {
  display: none;
}

@media (max-width: 768px) {
  .button {
    padding: 8px 15px;
  }
  .vertical_title {
    font-size: max(12px, 3.0666666667vw);
  } 
  .vertical_title1 {
    top: 16%;

  }
  .vertical_title2 {
bottom:6%;

  }
.pcvideo {
  display: none;
}
.spvideo {
  display: block;
  height: 70vh;
  margin-top: 72px;
}
/* .spvideo video {
  height: 80vh;
} */
.mainvisual {
  width: 100vw;
  height: 85vh;
}
.mainvisual video {
  width: 100%;
}
.main-text {
  top: 50%;

  }
h2 {
  font-size: 1.7em;
 padding-left: 0px;
}
/* 
.main-text {
  margin: 30% auto 0;
} */

.main-text1 {
  font-size: 1.3em;
margin: 10% auto;
}

.main-text2 {
  font-family: "KozGoPr6N-Regular", sans-serif; 
  font-size: 14px;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  line-height: 1.8;
  /* letter-spacing: -0.03em; */
}
.section2 {
width:100%;
max-width: 100%;
margin: 0 auto 0;

}
.section2 .button {
margin: 30% 0 0 0;
}
.detail-wrap {
  width: 70%;
  margin: 40% auto 50%;
}
.section3 {
  max-width: 100%;
margin: 0% auto;
}
h3 {
width: 130px;
margin: 0 auto;
}
h4 {
font-size: 1.3em;
margin: 7% auto 0;
text-align: center;
}
.flex-detail {
flex-direction: column;
justify-content: space-between;
align-items: center;
width: 100%;
max-width: 100%;
margin: 0% auto 0;
}
.flex-detail {
  height: auto;
}
.section3 .flex-detail a {
  width: 100%;

}
.section3 .flex-detail p {
  /* margin-top: 10%; */
  width: 100%;
  line-height: 1.7;
  font-family: "KozGoPr6N-Regular", sans-serif; 
}
.section3 .flex-detail .fade {
  width: 100%;
  margin:15% auto;
}
.section3 h4 {
  margin-left: 20px;
}
.section4  {
  max-width: 100%;
margin: 40% auto;
}
.section4 video {
  width: 100%;
  margin: 15% auto;
}
.section4 .flex-detail {
flex-direction: column-reverse;
}
.section4 h4 {
line-height: 1.5;
}
.section4 h3 {
width: 260px;
margin: 0 auto;
}
.section4 .flex-detail {
line-height: 1.5;
}
.section4 p {
  width: 100%;
text-align: justify;
/* margin-top: 10%; */
line-height: 1.7;
font-family: "KozGoPr6N-Regular", sans-serif; 
}
/* .section4 video {
width: 100%;
} */
.section5  {
  max-width: 100%;

}
.section5 h3 {
width: 100%;
font-family: 'Helvetica Neue', sans-serif;
font-weight: bold;
font-size: 1.3em;
text-align: center;
margin: 0% auto 0;
}
.section5 h4 {
  line-height: 1.5;
}
.section5 img {
width: 100%;
margin: 15% auto;
}
.section5 p {
width: 100%;
line-height: 1.7;
/* margin-top: 10%; */
font-family: "KozGoPr6N-Regular", sans-serif; 
}
.section6 {
width: 100%;
margin:10% auto 30%;
}
.section-detail {
flex-direction: column;
justify-content: space-between;
}
.section-detail li {
width:100%;
}
.section6 .button {
margin: 30% auto 15%;
}

.pcbr {
  display: none;
}
.spbr {
  display: block;
}

.price {
padding: 10% 0% 0% 0;

}

.price p a {
  white-space: nowrap;
  /* display: inline-block;
  padding: 0 0% 0 0; */
  margin: 0 auto ;
  transition: transform 0.3s ease;
  position: relative;
}
}
/* .item__buy {
  margin-left: -5%;
} */
}

.box{
	opacity: 0;
}

.fadeUp {
  animation-name:fadeUpAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity: 0;
  }
  
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(30px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
  .fadeInTrigger {
    opacity: 0;
    transform: translateY(0px);
    transition: all 3s ease;
  }
  .fadeInTrigger.fadeIn {
    opacity: 1;
    transform: translateY(0);
  }


  </style>