/* ===============================================### 
可変設定
###=============================================== */
.lp_container {
  /*デザインの値*/
  --pc-width: 1400;/*PCデザイン幅*/
  --sp-width: 750;/*SPデザイン幅*/
  --pc-artboard-width: 480;/*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;
}

.noe250901{
  --font-ja: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  --font-ja02: "yu-mincho-pr6n", sans-serif;
  --font-en: "orpheuspro", serif;
  --font-en02: "futura-pt", sans-serif;
  --font-en03: "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-light-brown: #AB9184;
  --color-mocha-brown: #7B5A57;
  color: #000000;
  background-color: #6C4844;
}

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

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

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

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

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


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

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

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



/* ===============================================### 
アニメーション設定
###=============================================== */
/************** sticky **************/
.noe250901 .sticky-area{
  position: relative;
  margin-bottom: calc(-1 * (50vh - var(--sticky-trigger01-pos) / 2));
}

.noe250901 .sticky-item.item01{
  margin-bottom: calc(205 * var(--formula));
  position: sticky;
  top: var(--sticky-block01-pos);
  padding-bottom: calc(50vh - var(--sticky-trigger01-pos) / 2);
}

.noe250901 .image-wrap{
  position: relative;
}

.noe250901 .sticky-item.item02{
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: calc((50vh - var(--sticky-trigger01-pos) / 2) + (var(--sticky-trigger01-pos) - var(--sticky-target01-pos)) / 2);
}

/************** fade **************/
.noe250901 .js-fade-in,
.noe250901 .js-fade-trigger .fade-text{
  opacity: 0;
  transition: opacity 1.0s ease-in;
}

.noe250901 .js-fade-in.show,
.noe250901 .js-fade-trigger.show .fade-text{
  opacity: 1;
}

.noe250901 .js-fade-trigger .fade-text.js-delay01{
  transition-delay: 0.5s;
}

.noe250901 .js-fade-trigger .fade-text.js-delay02{
  transition-delay: 0.8s;
}

.noe250901 .js-fade-trigger .fade-text.js-delay03{
  transition-delay: 1.1s;
}

.noe250901 .js-fade-trigger .fade-text.js-delay04{
  transition-delay: 1.4s;
}

.noe250901 .js-fade-trigger .fade-text.js-delay05{
  transition-delay: 1.7s;
}

.noe250901 .js-fade-trigger .fade-text.js-delay06{
  transition-delay: 2s;
}

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

@media screen and (max-width: 767px) {
  .noe250901 .mv .content__image .js-zoom{
    height: 100%;
    object-fit: cover;
    opacity: 0;
    scale: 1.1;
    transition: 2s ease 0s;
    width: 100%;
  }
  
  .noe250901 .mv .content__image .js-zoom.show{
    opacity: 1;
    scale: 1;
  }
}



/* ===============================================### 
コンテンツ共通設定
###=============================================== */
/************** flex **************/
.noe250901 .flex-wrap{
  display: flex;
}

/************** background **************/
.noe250901 .content{
  position: relative;
}

.noe250901 .content .content__inner{
  width: calc(670 * var(--formula));
  margin-inline: auto;
  /* overflow: clip; */
  /* position: relative; */
  /* z-index: 1; */
}

.noe250901 .content.content01 .content__inner,
.noe250901 .content.content02 .content__inner,
.noe250901 .content.content08 .content__inner,
.noe250901 .content.content09 .content__inner{
  background-color: var(--color-light-brown);
}

.noe250901 .content.content04 .content__inner,
.noe250901 .content.content05 .content__inner,
.noe250901 .content.content06 .content__inner,
.noe250901 .content.content07 .content__inner{
  background-color: var(--color-mocha-brown);
}

/* 
.noe250901 .content::after{
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: calc(670 * var(--formula));
}

.noe250901 .content.content01::after{
  top: calc(50 * var(--formula));
  height: calc(4260 * var(--formula));
  background-color: var(--color-light-brown);
}

.noe250901 .content.content02::after{
  top: 0;
  height: calc(10543 * var(--formula));
  background-color: var(--color-mocha-brown);
}

.noe250901 .content.content03::after{
  top: 0;
  height: calc(6162 * var(--formula));
  background-color: var(--color-light-brown);
} */

/************** text **************/
.noe250901 .credit{
  font-family: var(--font-ja);
  font-size: calc(27 * var(--formula));
  font-weight: var(--fw-regular);
  line-height: 1.4;
  letter-spacing: 0;
  white-space: nowrap;
}

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

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

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

  .noe250901 .right-area{
    padding-bottom: calc(40 * var(--formula));
  }
}

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



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

.noe250901 .mv .image-wrapper{
  position: relative;
}

.noe250901 .mv .title-wrap{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  z-index: 1;
  pointer-events: none;
  margin-top: calc(122 * var(--formula));
  color: var(--color-white);
  text-align: center;
}

/************** text **************/
.noe250901 .mv .collection-title{
  font-family: var(--font-en02);
  font-size: calc(27 * var(--formula_pc));
  font-weight: var(--fw-regular);
}

.noe250901 .mv .main-title{
  /* margin-top: calc(20 * var(--formula_pc)); */
  font-family: var(--font-en);
  font-size: calc(89 * var(--formula_pc));
  font-weight: var(--fw-medium);
}

.noe250901 .mv .sub-title{
  margin-top: calc(11 * var(--formula_pc));
  font-family: var(--font-en);
  font-size: calc(56 * var(--formula_pc));
  font-weight: var(--fw-regular);
}

.noe250901 .mv .sub-title span{
  margin-top: calc(20 * var(--formula_pc));
  font-family: var(--font-en);
  font-size: calc(42 * var(--formula_pc));
  font-weight: var(--fw-regular);
  font-style: italic;
}

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

.noe250901 .mv .slash{
  width: calc(36 * var(--formula_pc));
  margin-top: calc(20 * var(--formula_pc));
  margin-inline: auto;
}

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

@media screen and (max-width: 767px) {
  .noe250901 .mv .title-wrap{
    margin-top: 0;
  }

  /************** text **************/
  .noe250901 .mv .collection-title{
    font-size: calc(32 * var(--formula));
  }

  .noe250901 .mv .main-title{
    /* margin-top: calc(20 * var(--formula)); */
    font-size: calc(100 * var(--formula));
  }

  .noe250901 .mv .sub-title{
    margin-top: calc(11 * var(--formula));
    font-size: calc(56 * var(--formula));
  }

  .noe250901 .mv .sub-title span{
    margin-top: calc(20 * var(--formula));
    font-size: calc(42 * var(--formula));
  }
}



/* ===============================================### 
lead
###=============================================== */
.noe250901 .lead-area{
  margin-top: calc(80 * var(--formula));
}

/************** text **************/
.noe250901 .lead-text{
  margin-top: calc(27 * var(--formula_pc));
  font-family: var(--font-ja);
  font-size: calc(27 * var(--formula_pc));
  font-weight: var(--fw-medium);
  line-height: 2;
  letter-spacing: 0.15em;
  color: var(--color-white);
}

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

  /************** text **************/
  .noe250901 .lead-text{
    margin-top: calc(27 * var(--formula));
    font-size: calc(27 * var(--formula));
    text-align: center;
  }
}



/* ===============================================### 
コンテンツ01
###=============================================== */
.noe250901 .content01{
  margin-top: calc(161 * var(--formula));
}

.noe250901 .content01 .content__inner{
}

.noe250901 .content01 .content__item01{
  position: relative;
  top: calc(-45 * var(--formula));
  margin-left: calc(49 * var(--formula));
}

.noe250901 .content01 .content__item02{
  position: relative;
  top: calc(-45 * var(--formula));
  width: fit-content;
  margin-inline: auto;
}

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

/************** text **************/
.noe250901 .content01 .credit{
  margin-top: calc(24 * var(--formula));
}

/************** image **************/
.noe250901 .content01 .content__item01 .content__image{
  width: calc(660 * var(--formula));
}

.noe250901 .content01 .content__item02 .content__image{
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .noe250901 .content01{
    margin-top: calc(148 * var(--formula));
  }

  .noe250901 .content01 .credit{
    margin-top: calc(27 * var(--formula));
  }
}


/* ===============================================### 
コンテンツ02
###=============================================== */
.noe250901 .content02{
}

.noe250901 .content02 .content__inner{
  padding-top: calc(138 * var(--formula));
  padding-bottom: calc(175 * var(--formula));
}

.noe250901 .content02 .content__item01{
  width: fit-content;
  margin-inline: auto;
}

.noe250901 .content02 .content__item02{
  width: fit-content;
  margin-inline: auto;
}

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

/************** text **************/
.noe250901 .content02 .credit{
  margin-top: calc(30 * var(--formula));
}

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

.noe250901 .content02 .content__item02 .content__image{
}

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

  .noe250901 .content02 .content__inner{
    padding-bottom: calc(174 * var(--formula));
  }
}



/* ===============================================### 
コンテンツ03
###=============================================== */
.noe250901 .content03{
  width: 100%;
}

.noe250901 .content03 .content__inner{
  position: relative;
  width: 100%;
}

.noe250901 .content03 .content__inner::after{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(670 * var(--formula));
  height: calc(1000 * var(--formula));
  background-color: var(--color-light-brown);
}

.noe250901 .content03 .content__item01{
}

.noe250901 .content03 .slide-wrap{
  position: relative;
  z-index: 1;
  width: 100%;
}

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



/* ===============================================### 
コンテンツ04
###=============================================== */
.noe250901 .content04{
}

.noe250901 .content04 .content__inner{
  padding-top: calc(90 * var(--formula));
}

.noe250901 .content04 .content__item01{
  width: fit-content;
  margin-inline: auto;
}

.noe250901 .content04 .content__item02{
  width: fit-content;
  margin-top: calc(84 * var(--formula));
  margin-inline: auto;
}

/************** credit **************/
.noe250901 .content04 .credit{
  margin-top: calc(110 * var(--formula));
  text-align: center;
}

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

.noe250901 .content04 .sticky-item.item01 .content__image{
  width: calc(670 * var(--formula));
}

.noe250901 .content04 .sticky-item.item02 .content__image{
  width: calc(554 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .noe250901 .content04 .content__inner{
    padding-top: calc(86 * var(--formula));
  }

  .noe250901 .content04 .content__item02{
    margin-top: calc(87 * var(--formula));
  }
}


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

.noe250901 .content05 .content__inner{
}

.noe250901 .content05 .content__item01{
  width: fit-content;
  margin-inline: auto;
}

.noe250901 .content05 .content__item02{
  margin-top: calc(52 * var(--formula));
  margin-left: calc(170 * var(--formula));
}

.noe250901 .content05 .content__item03{
  position: relative;
  z-index: 1;
  margin-top: calc(-102 * var(--formula));
  margin-left: calc(-40 * var(--formula));
}

.noe250901 .content05 .flex-wrap{
  align-items: end;
  gap: calc(30 * var(--formula));
}

/************** text **************/
.noe250901 .content05 .credit{
  margin-bottom: calc(11 * var(--formula));
}

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

.noe250901 .content05 .content__item02 .content__image{
  width: calc(544 * var(--formula));
}

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

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .noe250901 .content05{
    padding-top: calc(102 * var(--formula));
  }

  .noe250901 .content05 .content__item02{
    margin-top: calc(53 * var(--formula));
    margin-left: calc(168 * var(--formula));
  }
}



/* ===============================================### 
コンテンツ06
###=============================================== */
.noe250901 .content06{
}

.noe250901 .content06 .content__inner{
  padding-top: calc(202 * var(--formula));
}

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

.noe250901 .content06 .content__item02{
  width: fit-content;
  margin-inline: auto;
}

.noe250901 .content06 .slide-wrap{
  width: calc(570 * var(--formula));
}

/************** text **************/
.noe250901 .content06 .credit{
  margin-top: calc(30 * var(--formula));
}

/************** image **************/
.noe250901 .content06 .content__item01 .content__image{
}

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



/* ===============================================### 
コンテンツ07
###=============================================== */
.noe250901 .content07{
}

.noe250901 .content07 .content__inner{
  padding-top: calc(182 * var(--formula));
  padding-bottom: calc(200 * var(--formula));
}

.noe250901 .content07 .content__item01{
  width: fit-content;
  margin-inline: auto;
}

.noe250901 .content07 .content__item02{
  margin-top: calc(50 * var(--formula));
  margin-left: calc(-38 * var(--formula));
}

.noe250901 .content07 .content__item03{
  position: relative;
  left: calc(52 * var(--formula));
  z-index: 1;
  margin-top: calc(50 * var(--formula));
}

.noe250901 .content07 .slide-wrap{
  width: calc(670 * var(--formula));
}

.noe250901 .content07 .flex-wrap{
  align-items: end;
  gap: calc(66 * var(--formula));
}

/************** text **************/
.noe250901 .content07 .credit{
  margin-bottom: calc(14 * var(--formula));
}

/************** image **************/
.noe250901 .content07 .content__item01 .content__image{
}

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

.noe250901 .content07 .content__item03 .content__image{
  width: calc(390 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .noe250901 .content07 .content__inner{
    padding-top: calc(179 * var(--formula));
  }
}


/* ===============================================### 
コンテンツ08
###=============================================== */
.noe250901 .content08{
}

.noe250901 .content08 .content__inner{
}

.noe250901 .content08 .content__item01{
  width: fit-content;
  margin-inline: auto;
}

.noe250901 .content08 .content__item02{
  width: fit-content;
  margin-inline: auto;
}

.noe250901 .content08 .slide-wrap{
  width: calc(570 * var(--formula));
}

/************** text **************/
.noe250901 .content08 .credit{
  margin-top: calc(30 * var(--formula));
}

/************** image **************/
.noe250901 .content08 .content__item01 .content__image{
}

.noe250901 .content08 .content__item02 .content__image{
  width: calc(570 * var(--formula));
}



/* ===============================================### 
コンテンツ09
###=============================================== */
.noe250901 .content09{
}

.noe250901 .content09 .content__inner{
  padding-top: calc(179 * var(--formula));
}

.noe250901 .content09 .content__item01{
  width: fit-content;
  margin-inline: auto;
}

.noe250901 .content09 .content__item02{
  margin-top: calc(50 * var(--formula));
  margin-left: calc(280 * var(--formula));
}

.noe250901 .content09 .content__item03{
  margin-top: calc(50 * var(--formula));
}

.noe250901 .content09 .content__item04{
  width: fit-content;
  margin-top: calc(50 * var(--formula));
  margin-inline: auto;
}

.noe250901 .content09 .slide-wrap{
  width: calc(570 * var(--formula));
}

/************** text **************/
.noe250901 .content09 .credit{
  margin-top: calc(30 * var(--formula));
}

/************** image **************/
.noe250901 .content09 .content__item01 .content__image{
}

.noe250901 .content09 .content__item02 .content__image{
  width: calc(390 * var(--formula));
}

.noe250901 .content09 .content__item03 .content__image{
  width: calc(390 * var(--formula));
}

.noe250901 .content09 .content__item04 .content__image{
  width: calc(570 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .noe250901 .content09{
    margin-top: calc(-3 * var(--formula));
  }

  .noe250901 .content09 .content__inner{
    padding-top: calc(180 * var(--formula));
  }
}



/* ===============================================### 
others
###=============================================== */
.noe250901 .others{
  width: calc(670 * var(--formula));
  margin-inline: auto;
  padding-top: calc(223 * var(--formula));
  padding-bottom: calc(299 * var(--formula));
  background-color: var(--color-light-brown);
}

/************** text **************/
.noe250901 .staff-text{
  font-family: var(--font-en03);
  font-size: calc(25 * var(--formula));
  font-weight: var(--fw-regular);
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
}

/************** button **************/
.noe250901 .link-button{
  width: calc(248 * var(--formula));
  margin-top: calc(151 * var(--formula));
  margin-inline: auto;
  padding: calc(9 * var(--formula));
  font-family: var(--font-en03);
  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) {
  .noe250901 .others{
    margin-top: calc(-2 * var(--formula));
  }
}