/* ===============================================### 
可変設定
###=============================================== */
.lp_container {
  /*デザインの値*/
  --pc-width: 1400;/*PCデザイン幅*/
  --sp-width: 750;/*SPデザイン幅*/
  --pc-artboard-width: 700;/*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) {
  .lp_container {
  --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比 */
  --variable: 1px; /* 固定値（可変しない） */
  }
}

/* PC画面幅 768～1400px 可変 */
@media (min-width: 768px) and (max-width: 1400px) {
  .lp_container {
  --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比 */
  --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}

/* SP画面幅 767px以下 可変 */
@media (max-width: 767px) {
  .lp_container {
  --ratio: 1; /* 比率は1（変わらない） */
  --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}



/* ===============================================### 
初期設定
###=============================================== */
#Wrap {
  max-width: 100%;
}

.categorylist--bottom {
  margin-top: 0;
}

.noe251201{
  --font-ja: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  --font-en: "adobe-garamond-pro", serif;
  font-style: normal;
  --fw-thin: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semi-bold: 600;
  --fw-bold: 700;
  --color-black: #000000;
  --color-white: #FFFFFF;
  color: #000000;
  background-color: #6D282B;
  overflow: clip;
}

.noe251201 img,
.noe251201 svg{
  width: 100%;
  height: auto;
}

/* ===========### PC版用設定 ###=========== */
@media screen and (min-width: 768px) {
  .noe251201 .image-bg{
    background-color: #fff;
  }

  .noe251201 .image-bg a:hover{
    opacity: 0.7;
  }

  .noe251201 .pc-visible{
    display: block;
  }

  .noe251201 .sp-visible{
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1399px) {
  #Wrap {
    padding-top: 0;
  }
}


/* ===========### SP版用設定 ###=========== */
@media screen and (max-width: 767px) {
  .noe251201{
    overflow: clip;
  }

  .noe251201 .pc-visible{
    display: none;
  }

  .noe251201 .sp-visible{
    display: block;
  }
}



/* ===============================================### 
アニメーション設定
###=============================================== */
/************** fade **************/
.noe251201 .js-fade-up{
  opacity: 0;
  transition: all 0.8s;
  transform: translateY(30px);
}

.noe251201 .js-fade-up.show{
  opacity: 1;
  transform: translateY(0);
}

/* ===========### responsive ###=========== */
@media screen and (min-width: 768px) {
  .noe251201 .content-sticky{
    position: sticky;
    /* top: 0; */
    top: var(--banner-height);
  }
}



/* ===============================================### 
コンテンツ共通設定
###=============================================== */
/************** layout **************/
.noe251201 .right-area{
  position: relative;
}

.noe251201 .right-area::after{
  content: '';
  position: absolute;
  top: calc(3040 * var(--formula));
  left: 50%;
  transform: translateX(-50%);
  width: calc(750 * var(--formula));
  height: calc(8200 * var(--formula));
  background-image: url('../img/bg.png');
  background-repeat: no-repeat;
  background-size: contain;
}

/************** flex **************/
.noe251201 .flex-wrap{
  display: flex;
}

/************** background **************/
.noe251201 .content{
  position: relative;
  background-color: #94454a;
}

.noe251201 .content .content__inner{
  position: relative;
  z-index: 1;
}

/************** text **************/
.noe251201 .credit{
  font-family: var(--font-en);
  font-size: calc(20 * var(--formula));
  font-weight: var(--fw-regular);
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
}

.noe251201 .credit a{
  display: inline-block;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

/* ===========### responsive ###=========== */
@media screen and (min-width: 768px) {
  .noe251201 .content{
    width: calc(750 * var(--formula));
    margin-inline: auto;
  }

  .noe251201 .left-area,
  .noe251201 .right-area{
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .content-wrap.flex-wrap{
    flex-direction: column;
  }
}



/* ===============================================### 
MV
###=============================================== */
.noe251201 .mv{
}

.noe251201 .mv .image-wrap{
  position: relative;
}

/************** text **************/

/************** image **************/
.noe251201 .mv .content__image{
}


/* ===========### responsive ###=========== */
@media screen and (min-width: 768px) {
  .noe251201 .mv .content__image img{
    height: 100vh;
    object-fit: cover;
    object-position: center top;
    vertical-align: bottom;
  }
}

@media screen and (max-width: 767px) {
}



/* ===============================================### 
lead
###=============================================== */
.noe251201 .lead-area{
  padding-top: calc(118 * var(--formula));
}

/************** text **************/
.noe251201 .lead-text{
  margin-top: calc(-23 * var(--formula));
  font-family: var(--font-ja);
  font-size: calc(20 * var(--formula));
  font-weight: var(--fw-regular);
  line-height: 2;
  letter-spacing: 0.15em;
  text-align: center;
  color: var(--color-white);
}

/************** image **************/
.noe251201 .collection-title{
  width: calc(375 * var(--formula));
  margin-inline: auto;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .noe251201 .lead-area{
    padding-top: calc(129 * var(--formula));
  }
}



/* ===============================================### 
コンテンツ01
###=============================================== */
.noe251201 .content01{
  padding-top: calc(121 * var(--formula));
}

.noe251201 .content01 .content__inner{
}

.noe251201 .content01 .content__item01{
  width: calc(725 * var(--formula));
}

.noe251201 .content01 .content__item02{
  margin-top: calc(61 * var(--formula));
  width: fit-content;
  margin-inline: auto;
}

.noe251201 .content01 .slide-wrap{
  width: calc(450 * var(--formula));
}

.noe251201 .content01 .flex-wrap{
  justify-content: space-between;
  align-items: end;
}

/************** text **************/
.noe251201 .content01 .credit{
  margin-top: calc(10 * var(--formula));
  text-align: right;
}

/************** image **************/
.noe251201 .content01 .content__item01 .content__image.ellipse{
  width: calc(250 * var(--formula));
}

.noe251201 .content01 .content__item02 .content__image{
  width: calc(447 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
}



/* ===============================================### 
コンテンツ02
###=============================================== */
.noe251201 .content02{
  padding-top: calc(120 * var(--formula));
}

.noe251201 .content02 .content__inner{
}

.noe251201 .content02 .content__item01,
.noe251201 .content02 .content__item02,
.noe251201 .content02 .content__item03{
  width: fit-content;
  margin-inline: auto;
}

.noe251201 .content02 .content__item02{
  margin-top: calc(60 * var(--formula));
}

.noe251201 .content02 .content__item03{
  margin-top: calc(53 * var(--formula));
}

.noe251201 .content02 .slide-wrap{
  width: calc(400 * var(--formula));
}

/************** text **************/
.noe251201 .content02 .credit{
  margin-top: calc(13 * var(--formula));
  text-align: right;
}

/************** image **************/
.noe251201 .content02 .content__item01 .content__image{
  width: calc(750 * var(--formula));
}

.noe251201 .content02 .content__item03 .content__image{
  width: calc(550 * var(--formula));
}

/************** responsive **************/
@media screen and (max-width: 767px) {
  .noe251201 .content02 .content__item03{
    margin-top: calc(49 * var(--formula));
  }
}



/* ===============================================### 
コンテンツ03
###=============================================== */
.noe251201 .content03{
  padding-top: calc(130 * var(--formula));
}

.noe251201 .content03 .content__inner{
}

.noe251201 .content03 .content__item01{
}

.noe251201 .content03 .content__item02{
  width: calc(454 * var(--formula));
  margin-top: calc(59 * var(--formula));
  margin-inline: auto;
}

.noe251201 .content03 .content__item03{
  margin-top: calc(60 * var(--formula));
}

.noe251201 .content03 .content__item04{
  width: fit-content;
  margin-top: calc(62 * var(--formula));
  margin-right: auto;
  margin-left: calc(170 * var(--formula));
}

.noe251201 .content03 .slide-wrap{
  width: calc(450 * var(--formula));
}

.noe251201 .content03 .flex-wrap{
  justify-content: space-between;
  align-items: flex-start;
}

/************** text **************/
.noe251201 .content03 .content__item02 .credit{
  margin-top: calc(-2 * var(--formula));
  text-align: right;
}

.noe251201 .content03 .content__item04 .credit{
  margin-top: calc(12 * var(--formula));
  text-align: right;
}

/************** image **************/
.noe251201 .content03 .content__item01 .content__image{
  width: calc(750 * var(--formula));
}

.noe251201 .content03 .content__item02 .content__image{
  width: calc(300 * var(--formula));
}

.noe251201 .content03 .content__item03 .content__image{
  width: calc(550 * var(--formula));
}



/* ===============================================### 
コンテンツ04
###=============================================== */
.noe251201 .content04{
  padding-top: calc(120 * var(--formula));
}

.noe251201 .content04 .content__inner{
}

.noe251201 .content04 .content__item01{
  margin-left: calc(50 * var(--formula));
  margin-right: auto;
}

.noe251201 .content04 .content__item02{
  width: calc(551 * var(--formula));
  margin-top: calc(60 * var(--formula));
  margin-left: calc(150 * var(--formula));
}

.noe251201 .content04 .flex-wrap{
  justify-content: space-between;
  align-items: flex-start;
}

/************** credit **************/
.noe251201 .content04 .credit{
  margin-top: calc(-6 * var(--formula));
  text-align: right;
}

/************** image **************/
.noe251201 .content04 .content__item01 .content__image{
  width: calc(450 * var(--formula));
}

.noe251201 .content04 .content__item02 .content__image{
  width: calc(400 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
}



/* ===============================================### 
コンテンツ05
###=============================================== */
.noe251201 .content05{
  padding-top: calc(130 * var(--formula));
}

.noe251201 .content05 .content__inner{
}

.noe251201 .content05 .content__item01{
}

.noe251201 .content05 .content__item02{
  margin-top: calc(61 * var(--formula));
  margin-left: calc(164 * var(--formula));
}

.noe251201 .content05 .content__item03{
  margin-top: calc(-375 * var(--formula));
  margin-left: calc(48 * var(--formula));
}

.noe251201 .content05 .flex-wrap{
  justify-content: space-between;
  align-items: flex-start;
}

.noe251201 .content05 .slide-wrap{
  width: calc(400 * var(--formula));
}

/************** text **************/
.noe251201 .content05 .credit{
  margin-top: calc(-6 * var(--formula));
  text-align: right;
}

/************** image **************/
.noe251201 .content05 .content__item01 .content__image{
  width: calc(750 * var(--formula));
}

.noe251201 .content05 .content__item02 .content__image{
  /* width: calc(400 * var(--formula)); */
}

.noe251201 .content05 .content__item03 .content__image{
  width: calc(250 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
}



/* ===============================================### 
コンテンツ06
###=============================================== */
.noe251201 .content06{
  padding-top: calc(128 * var(--formula));
}

.noe251201 .content06 .content__inner{
}

.noe251201 .content06 .content__item01{
  width: fit-content;
  margin-inline: auto;
}

.noe251201 .content06 .content__item02{
  width: calc(600 * var(--formula));
  margin-top: calc(58 * var(--formula));
  margin-left: calc(75 * var(--formula));
}

.noe251201 .content06 .content__item03{
  position: relative;
  width: fit-content;
  margin-top: calc(61 * var(--formula));
}

.noe251201 .content06 .flex-wrap{
  justify-content: space-between;
  align-items: end;
}

/************** text **************/
.noe251201 .content06 .content__item02 .credit{
  margin-bottom: calc(-10 * var(--formula));
  text-align: right;
}

.noe251201 .content06 .content__item03 .credit{
  position: absolute;
  top: calc(230 * var(--formula));
  left: calc(255 * var(--formula));
  z-index: 1;
}

.noe251201 .content06 .line{
  position: absolute;
  top: calc(250 * var(--formula));
  left: calc(330 * var(--formula));
  width: calc(56 * var(--formula));
  z-index: 1;
  pointer-events: none;
}

/************** image **************/
.noe251201 .content06 .content__item01 .content__image{
  width: calc(300 * var(--formula));
}

.noe251201 .content06 .content__item02 .content__image{
  width: calc(450 * var(--formula));
}

.noe251201 .content06 .content__item03 .content__image{
  width: calc(750 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .noe251201 .content06 .content__item03 .credit{
    top: calc(234 * var(--formula));
  }
}



/* ===============================================### 
コンテンツ07
###=============================================== */
.noe251201 .content07{
  padding-top: calc(130 * var(--formula));
}

.noe251201 .content07 .content__inner{
}

.noe251201 .content07 .content__item01{
  width: calc(700 * var(--formula));
  margin-inline: auto;
}

.noe251201 .content07 .content__item02{
  margin-top: calc(61 * var(--formula));
  margin-left: calc(130 * var(--formula));
  margin-right: auto;
}

.noe251201 .content07 .flex-wrap{
  justify-content: space-between;
  align-items: end;
}

/************** text **************/
.noe251201 .content07 .credit{
  margin-bottom: calc(-10 * var(--formula));
  text-align: right;
}

/************** image **************/
.noe251201 .content07 .content__item01 .content__image{
  width: calc(550 * var(--formula));
}

.noe251201 .content07 .content__item02 .content__image{
  width: calc(450 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
}



/* ===============================================### 
others
###=============================================== */
.noe251201 .others{
  padding-top: calc(130 * var(--formula));
  padding-bottom: calc(200 * var(--formula));
}

/************** button **************/
.noe251201 .link-button{
  width: calc(248 * var(--formula));
  margin-inline: auto;
  padding: calc(9 * var(--formula));
  font-family: var(--font-en);
  font-size: calc(28 * var(--formula));
  font-weight: var(--fw-regular);
  text-align: center;
  border: 1px solid var(--color-black);
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
}