/* ===============================================### 
可変設定
###=============================================== */
.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;
}


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

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

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

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

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


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

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

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



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

.noe250918 .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);
}

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

.noe250918 .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 **************/
.noe250918 .js-fade-in,
.noe250918 .js-fade-trigger .fade-text{
  opacity: 0;
  transition: opacity 1.0s ease-in;
}

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

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

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

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

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

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

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

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

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



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

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

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


/************** text **************/
.noe250918 .credit{
  font-family: "adobe-garamond-pro", serif;
  font-size: 2rem;
  font-weight: 200;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
}

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

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

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

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

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

  .noe250918 .credit{
    font-size: calc(21*(100vw/750));
  }
}



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

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

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

/************** text **************/
.noe250918 .mv .collection-title{
  /* font-family: "Cormorant Garamond", serif; */
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 200;
  font-style: normal;
  font-size: 3.5rem;
  letter-spacing: 0.5rem;
  text-shadow: 0 0 7px rgb(0, 0, 0, 0.4);
}

.noe250918 .mv .main-title{
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 8.1rem;
  margin-top: 4.5rem;
  text-shadow: 0 0 7px rgb(0, 0, 0, 0.4);
}

.noe250918 .mv .sub-title{
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  margin-top: 7.5rem;
  text-shadow: 0 0 7px rgb(0, 0, 0, 0.4);
}

.noe250918 .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: 200;
}

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


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

@media screen and (max-width: 767px) {
  .noe250918 .mv .title-wrap{
    margin-top: calc(60*(100vw/750));
    top: 62%;
  }

  /************** text **************/
  .noe250918 .mv .collection-title{
    font-size: calc(40*(100vw/750));
    letter-spacing: 2px;
  }

  .noe250918 .mv .main-title{
    margin-top: calc(20*(100vw/750));
    font-size: calc(80*(100vw/750));
  }

  .noe250918 .mv .sub-title{
    margin-top: calc(90*(100vw/750));
    font-size: calc(30*(100vw/750));
  }

  .noe250918 .mv .sub-title span{
    font-size: calc(30*(100vw/750));
  }
}



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

/************** text **************/
.noe250918 .lead-text{
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 2.7rem;
  margin-top: 8rem;
  line-height: 1.8;
  letter-spacing: 0.15em;
  color: #fff;
}

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

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



/* ===============================================### 
コンテンツ01
###=============================================== */
.noe250918 .content01{
  margin-top: 19rem;
}

.noe250918 .content01 .content__item01{
  margin-left: -11rem;
  margin-top: -13rem;
  z-index: 0;
}

.noe250918 .content01 .content__item02{
  width: fit-content;
  margin-inline: auto;
  margin-left: 11rem;
  margin-top: 7rem;
}

.noe250918 .content01 .content__item03{
  width: fit-content;
  margin-inline: auto;
  margin-left: -6.5rem;
  margin-top: 7rem;
}


/************** text **************/
.noe250918 .content01 .credit{
  margin-top: 2rem;
  margin-left: 52.5rem;
}

/************** image **************/
.noe250918 .content01 .content__item01 .content__image{
  width: 70rem;
}

.noe250918 .content01 .num1 {
  width: 10rem;
  margin-left: -6rem;
  z-index: 1;
  position: relative;
}

.noe250918 .content01 .content__item02 .content__image{
  width: 48rem;
}

.noe250918 .content01 .content__item03 .content__image{
  width: 39rem;
}


/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .noe250918 .content01{
    margin-top: calc(210*(100vw/750));
  }
  
  .noe250918 .content01 .content__item01{
    margin-left: calc(0*(100vw/750));
    margin-top: calc(-140*(100vw/750));
    z-index: 0;
  }
  
  .noe250918 .content01 .content__item02{
    width: fit-content;
    margin-inline: auto;
    margin-left: calc(230*(100vw/750));
    margin-top: calc(80*(100vw/750));
  }
  
  .noe250918 .content01 .content__item03{
    width: fit-content;
    margin-inline: auto;
    margin-left: calc(60*(100vw/750));
    margin-top: calc(80*(100vw/750));
  }
  
  
  /************** text **************/
  .noe250918 .content01 .credit{
    margin-top: calc(20*(100vw/750));
    margin-left: calc(560*(100vw/750));
  }
  
  /************** image **************/
  .noe250918 .content01 .content__item01 .content__image{
    width: 100%;
  }
  
  .noe250918 .content01 .num1 {
    width: calc(110*(100vw/750));
    margin-left: calc(60*(100vw/750));
    z-index: 1;
    position: relative;
  }
  
  .noe250918 .content01 .content__item02 .content__image{
    width: calc(520*(100vw/750));
  }
  
  .noe250918 .content01 .content__item03 .content__image{
    width: calc(400*(100vw/750));
  }
}


/* ===============================================### 
コンテンツ02
###=============================================== */
.noe250918 .content02{
  margin-top: 33rem;
}

.noe250918 .content02 .content__item01{
  margin-left: -11rem;
  margin-top: -13rem;
  z-index: 0;
}

.noe250918 .content02 .content__item02{
  width: fit-content;
  margin-inline: auto;
  margin-left: -11rem;
  margin-top: 7rem;
}

.noe250918 .content02 .content__item03{
  width: fit-content;
  margin-inline: auto;
  margin-left: 29.5rem;
  margin-top: 25rem;
}

.noe250918 .content02 .content__item04{
  margin-left: -11rem;
  margin-top: -12rem;
  z-index: 0;
}


/************** text **************/
.noe250918 .content02 .credit{
  margin-top: 10rem;
  margin-left: -8rem;
  z-index: 1;
  position: relative;
}

/************** image **************/
.noe250918 .content02 .content__item01 .content__image{
  width: 70rem;
}

.noe250918 .content02 .num2 {
  width: 10rem;
  margin-left: 39.5rem;
  margin-top: -48rem;
  z-index: 1;
  position: relative;
}

.noe250918 .content02 .content__item02 .content__image{
  width: 44.2rem;
}

.noe250918 .content02 .content__item03 .content__image{
  width: 29.5rem;
}

.noe250918 .content02 .slide-wrap {
  width: 70rem;
}


/************** responsive **************/
@media screen and (max-width: 767px) {
  .noe250918 .content02{
    margin-top: calc(230*(100vw/750));
  }
  
  .noe250918 .content02 .content__item01{
    margin-left: calc(0*(100vw/750));
    margin-top: calc(170*(100vw/750));
    z-index: 0;
  }
  
  .noe250918 .content02 .content__item02{
    width: fit-content;
    margin-inline: auto;
    margin-left: calc(0*(100vw/750));
    margin-top: calc(85*(100vw/750));
  }
  
  .noe250918 .content02 .content__item03{
    width: fit-content;
    margin-inline: auto;
    margin-left: calc(420*(100vw/750));
    margin-top: calc(280*(100vw/750));
  }
  
  .noe250918 .content02 .content__item04{
    width: fit-content;
    margin-inline: auto;
    margin-left: calc(0*(100vw/750));
    margin-top: calc(-125*(100vw/750));
  }
  
  /************** text **************/
  .noe250918 .content02 .credit{
    margin-top: calc(110*(100vw/750));
    margin-left: calc(30*(100vw/750));
    z-index: 1;
    position: relative;
  }
  
  /************** image **************/
  .noe250918 .content02 .content__item01 .content__image{
    width: 100%;
  }
  
  .noe250918 .content02 .num2 {
    width: calc(110*(100vw/750));
    margin-left: calc(540*(100vw/750));
    margin-top: calc(-520*(100vw/750));
    z-index: 1;
    position: relative;
  }
  
  .noe250918 .content02 .content__item02 .content__image{
    width: calc(470*(100vw/750));
  }
  
  .noe250918 .content02 .content__item03 .content__image{
    width: calc(330*(100vw/750));
  }

  .noe250918 .content02 .slide-wrap {
    width: calc(750*(100vw/750));
  }
}



/* ===============================================### 
コンテンツ03
###=============================================== */
.noe250918 .content03{
  margin-top: 28rem;
}

.noe250918 .content03 .content__flex {
  width: 70rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-left: -11rem;
  margin-top: 3.5rem;
}

.noe250918 .content03 .content__flex .flex_sub {
  width: 34.5rem;
}

.noe250918 .content03 .content__item03{
  width: fit-content;
  margin-inline: auto;
  margin-left: 33.5rem;
  margin-top: 7rem;
  z-index: 1;
  position: relative;
}

.noe250918 .content03 .content__item04{
  margin-left: -8.5rem;
  margin-top: -11.5rem;
  z-index: 0;
}

.noe250918 .content03 .content__item05{
  margin-left: -11rem;
  margin-top: 7rem;
}


/************** text **************/
.noe250918 .content03 .credit{
  margin-top: -11.7rem;
  margin-left: 40.7rem;
  z-index: 1;
  position: relative;
}

/************** image **************/
.noe250918 .content03 .content__item01 .content__image{
  width: 70rem;
}

.noe250918 .content03 .num3 {
  width: 10rem;
  margin-left: 19rem;
  margin-top: -8rem;
  z-index: 1;
  position: relative;
}

.noe250918 .content03 .content__item02 .content__image{
  width: 44.2rem;
}

.noe250918 .content03 .content__item03 .content__image{
  width: 23.5rem;
}

.noe250918 .content03 .content__item04 .content__image{
  width: 47.5rem;
}

.noe250918 .content03 .content__item05 .content__image{
  width: 70rem;
}
/************** responsive **************/
@media screen and (max-width: 767px) {
  .noe250918 .content03{
    margin-top: calc(230*(100vw/750));
  }
  
  .noe250918 .content03 .content__flex {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    column-gap: calc(10*(100vw/750));
    margin-left: calc(0*(100vw/750));
    margin-top: calc(60*(100vw/750));
  }
  
  .noe250918 .content03 .content__flex .flex_sub {
    width: calc(370*(100vw/750));
  }
  
  .noe250918 .content03 .content__item03{
    width: fit-content;
    margin-inline: auto;
    margin-left: calc(460*(100vw/750));
    margin-top: calc(85*(100vw/750));
  }
  
  .noe250918 .content03 .content__item04{
    width: fit-content;
    margin-inline: auto;
    margin-left: calc(30*(100vw/750));
    margin-top: calc(-125*(100vw/750));
  }

  .noe250918 .content03 .content__item05{
    width: fit-content;
    margin-inline: auto;
    margin-left: calc(0*(100vw/750));
    margin-top: calc(85*(100vw/750));
  }
  
  /************** text **************/
  .noe250918 .content03 .credit{
    margin-top: calc(-130*(100vw/750));
    margin-left: calc(545*(100vw/750));
    z-index: 1;
    position: relative;
  }
  
  /************** image **************/
  .noe250918 .content03 .content__item01 .content__image{
    width: 100%;
  }
  
  .noe250918 .content03 .num3 {
    width: calc(110*(100vw/750));
    margin-left: calc(315*(100vw/750));
    margin-top: calc(0*(100vw/750));
    z-index: 1;
    position: relative;
  }
  
  .noe250918 .content03 .content__item02 .content__image{
    width: calc(470*(100vw/750));
  }
  
  .noe250918 .content03 .content__item03 .content__image{
    width: calc(260*(100vw/750));
  }

  .noe250918 .content03 .content__item04 .content__image{
    width: calc(495*(100vw/750));
  }

  .noe250918 .content03 .content__item05 .content__image{
    width: 100%;
  }
}


/* ===============================================### 
コンテンツ04
###=============================================== */
.noe250918 .content04{
  margin-top: 28rem;
}

.noe250918 .content04 .content__item01{
  width: fit-content;
  margin-inline: auto;
  margin-left: -8.5rem;
  margin-top: 3.5rem;
  z-index: 1;
  position: relative;
}

.noe250918 .content04 .content__item02{
  margin-left: -11rem;
  margin-top: 7rem;
  z-index: 0;
}

.noe250918 .content04 .content__item03{
  margin-left: -11rem;
  margin-top: 7rem;
}


/************** text **************/
.noe250918 .content04 .credit{
  margin-top: -10.5rem;
  margin-left: -8.5rem;
  z-index: 1;
  position: relative;
}

/************** image **************/
.noe250918 .content04 .content__item01 .content__image{
  width: 65rem;
}

.noe250918 .content04 .num4 {
  width: 10rem;
  margin-left: 19rem;
  margin-top: -8rem;
  z-index: 1;
  position: relative;
}

.noe250918 .content04 .content__item02 .content__image{
  width: 44.2rem;
}

.noe250918 .content04 .content__item03 .content__image{
  width: 70rem;
}



/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .noe250918 .content04{
    margin-top: calc(230*(100vw/750));
  }
  
  .noe250918 .content04 .content__item01{
    margin: 0 auto;
    margin-top: calc(60*(100vw/750));
    z-index: 0;
  }
  
  .noe250918 .content04 .content__item02{
    width: fit-content;
    margin-inline: auto;
    margin-left: calc(0*(100vw/750));
    margin-top: calc(85*(100vw/750));
  }
  
  .noe250918 .content04 .content__item03{
    width: fit-content;
    margin-inline: auto;
    margin-top: calc(85*(100vw/750));
  }
  
  
  /************** text **************/
  .noe250918 .content04 .credit{
    margin-top: calc(-110*(100vw/750));
    margin-left: calc(30*(100vw/750));
    z-index: 1;
    position: relative;
  }
  
  /************** image **************/
  .noe250918 .content04 .content__item01 .content__image{
    width: calc(700*(100vw/750));
  }
  
  .noe250918 .content04 .num4 {
    width: calc(110*(100vw/750));
    margin-left: calc(315*(100vw/750));
    margin-top: calc(0*(100vw/750));
    z-index: 1;
    position: relative;
  }
  
  .noe250918 .content04 .content__item02 .content__image{
    width: calc(560*(100vw/750));
  }
  
  .noe250918 .content04 .content__item03 .content__image{
    width: 100%;
  }

}


/* ===============================================### 
コンテンツ05
###=============================================== */
.noe250918 .content05{
  margin-top: 33rem;
}

.noe250918 .content05 .content__item01{
  width: fit-content;
  margin-inline: auto;
  margin-left: -11rem;
  margin-top: -12rem;
}

.noe250918 .content05 .content__item02{
  width: fit-content;
  margin-inline: auto;
  margin-left: 16.5rem;
  margin-top: 47.6rem;
}

.noe250918 .content05 .content__item03{
  width: fit-content;
  margin-inline: auto;
  margin-left: -11rem;
  margin-top: 7rem;
}

.noe250918 .content05 .content__item04{
  width: fit-content;
  margin-inline: auto;
  margin-left: -1rem;
  margin-top: 7rem;
}

/************** text **************/
.noe250918 .content05 .credit{
  margin-top: -13.5rem;
  margin-left: 40.5rem;
  z-index: 1;
  position: relative;
}

/************** image **************/
.noe250918 .content05 .content__item01 .content__image{
  width: 47.2rem;
}

.noe250918 .content05 .num5 {
  width: 10rem;
  margin-left: 42rem;
  margin-top: -48rem;
  z-index: 1;
  position: relative;
}

.noe250918 .content05 .content__item02 .content__image{
  width: 42.5rem;
}

.noe250918 .content05 .content__item03 .content__image{
  width: 70rem;
}

.noe250918 .content05 .content__item04 .content__image{
  width: 29.5rem;
}


/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .noe250918 .content05{
    margin-top: calc(230*(100vw/750));
  }
  
  .noe250918 .content05 .content__item01{
    width: fit-content;
    margin-inline: auto;
    margin-left: calc(0*(100vw/750));
    margin-top: calc(85*(100vw/750));
  }
  
  .noe250918 .content05 .content__item02{
    width: fit-content;
    margin-inline: auto;
    margin-left: calc(420*(100vw/750));
    margin-top: calc(525*(100vw/750));
  }
  
  .noe250918 .content05 .content__item03{
    width: fit-content;
    margin-inline: auto;
    margin: 0 auto;
    margin-top: calc(85*(100vw/750));
  }
  
  .noe250918 .content05 .content__item04{
    width: fit-content;
    margin-inline: auto;
    margin-left: calc(100*(100vw/750));
    margin-top: calc(85*(100vw/750));
  }
  
  /************** text **************/
  .noe250918 .content05 .credit{
    margin-top: calc(-145*(100vw/750));
    margin-left: calc(560*(100vw/750));
    z-index: 1;
    position: relative;
  }
  
  /************** image **************/
  .noe250918 .content05 .content__item01 .content__image{
    width: calc(510*(100vw/750));
  }
  
  .noe250918 .content05 .num5 {
    width: calc(110*(100vw/750));
    margin-left: calc(570*(100vw/750));
    margin-top: calc(-520*(100vw/750));
    z-index: 1;
    position: relative;
  }
  
  .noe250918 .content05 .content__item02 .content__image{
    width: calc(330*(100vw/750));
  }
  
  .noe250918 .content05 .content__item03 .content__image{
    width: 100%;
  }

  .noe250918 .content05 .content__item04 .content__image{
    width: calc(330*(100vw/750));
  }
}


/* ===============================================### 
others
###=============================================== */
.noe250918 .others{
  width: 53rem;
  margin-inline: auto;
  padding-top: calc(223 * var(--formula));
  padding-bottom: calc(299 * var(--formula));
}

/************** text **************/
.noe250918 .staff-text{
  font-family: "adobe-garamond-pro", serif;
  font-size: 2.4rem;
  font-weight: 200;
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
}

/************** button **************/
.noe250918 .link-button{
  width: 23rem;
  margin-top: 14rem;
  margin-inline: auto;
  padding: 10px;
  padding-top: 13px;
  font-family: "adobe-garamond-pro", serif;
  font-size: 2.5rem;
  font-weight: 200;
  text-align: center;
  border: 1px solid #000;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .noe250918 .others{
    width: 100%;
    margin-inline: auto;
    padding-top: calc(230*(100vw/750));
    padding-bottom: calc(160*(100vw/750));
  }
  
  /************** text **************/
  .noe250918 .staff-text{
    font-family: "adobe-garamond-pro", serif;
    font-size: calc(25*(100vw/750));
    font-weight: 200;
    line-height: 1.8;
    letter-spacing: 0;
    text-align: center;
  }
  
  /************** button **************/
  .noe250918 .link-button{
    width: calc(250*(100vw/750));
    margin-top: calc(150*(100vw/750));
    margin-inline: auto;
    padding: 5px;
    padding-top: 8px;
    font-family: "adobe-garamond-pro", serif;
    font-size: calc(28*(100vw/750));
    font-weight: 200;
    text-align: center;
    border: 1px solid #000;
  }
  
}

/* 左から */
.fadeLeftTrigger {
  opacity: 0;
  transform: translateX(-30px);
  animation: none;
}

@keyframes fadeInLeftSmall {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate__fadeInLeftSmall {
  animation-name: fadeInLeftSmall;
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

/* 右から */
.fadeRightTrigger {
  opacity: 0;
  transform: translateX(30px);
  animation: none;
}
@keyframes fadeInRightSmall {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate__fadeInRightSmall {
  animation-name: fadeInRightSmall;
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
