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

.noe260218{
  --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-blue: #C0DCF5;
  --color-pink: #FFF4EE;
  color: #000000;
  overflow: clip;
}

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

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

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

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

  .noe260218 .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) {
  .noe260218{
    overflow: clip;
  }

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

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


/* ===============================================### 
アニメーション設定
###=============================================== */
/************** fade **************/
.noe260218 .js-fade-in{
  opacity: 0;
  transition: opacity 2.5s ease, transform 2.5s ease;
}

.noe260218 .js-fade-in.show{
  opacity: 1;
}

.noe260218 .js-slide-in{
  opacity: 0;
  transition: all 0.8s;
}

.noe260218 .js-slide-in.rtl{
  transform: translateX(30px);
}

.noe260218 .js-slide-in.ltr{
  transform: translateX(-30px);
}

.noe260218 .js-slide-in.show{
  opacity: 1;
  transform: translateX(0);
}

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



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

.noe260218 .content{
}

.noe260218 .content .content__inner{
  width: calc(750 * var(--formula));
  margin-inline: auto;
}

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

/************** grid **************/
.noe260218 .grid-wrap{
  display: grid;
}

/************** slide **************/
.noe260218 .slide-wrap{
  width: calc(750 * var(--formula));
  margin-inline: auto;
}

.noe260218 .slide-wrap.loop-slide .content__image{
  margin-right: calc(2 * var(--formula));
}

/* .loop-slide .slick-list {
  touch-action: pan-y !important;
  cursor: grab;
}

.loop-slide .slick-list:active {
  cursor: grabbing;
} */

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

.noe260218 .credit a{
  display: inline-block;
}

.noe260218 .credit a.link-disable{
  margin-left: calc(5 * var(--formula));
}

.noe260218 .content__title{
  font-family: var(--font-ja);
  font-size: calc(23 * var(--formula));
  font-weight: var(--fw-semi-bold);
  line-height: 1.83;
  letter-spacing: 0.3em;
  text-align: center;
}

.noe260218 .num{
  font-family: var(--font-en);
  font-size: calc(53 * var(--formula));
  font-weight: var(--fw-regular);
  letter-spacing: 0.1em;
}

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

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

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



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

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

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


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

@media screen and (max-width: 767px) {
  .noe260218 .mv .content__image{
    width: calc(750 * var(--formula));
    margin-inline: auto;
  }
}



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

/************** text **************/
.noe260218 .lead-text{
  font-family: var(--font-ja);
  font-size: calc(26 * var(--formula));
  font-weight: var(--fw-regular);
  line-height: 1.75;
  letter-spacing: 0.075em;
  text-align: center;
}

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


/* ===============================================### 
link-area
###=============================================== */
.noe260218 .link-area{
  margin-top: calc(90 * var(--formula));
}

.noe260218 .link-area .content__inner{
}

.noe260218 .link-area .link-area__list{
}

.noe260218 .link-area .link-area__list.grid-wrap{
  gap: calc(8 * var(--formula));
}

.noe260218 .link-area .link-area__list.list01.grid-wrap{
  grid-template-columns: repeat(3, 1fr);
  width: calc(549 * var(--formula));
  margin-inline: auto;
}

.noe260218 .link-area .link-area__list.list02.grid-wrap{
  margin-top: calc(29 * var(--formula));
  grid-template-columns: repeat(4, 1fr);
}

/************** text **************/
.noe260218 .link-area p{
  margin-top: calc(30 * var(--formula));
  font-family: var(--font-ja);
  font-size: calc(16 * var(--formula));
  font-weight: var(--fw-semi-bold);
  letter-spacing: 0.08em;
  text-align: center;
}

/************** image **************/
.noe260218 .link-area .link-area__item{
  width: calc(177 * var(--formula));
}

/*** 画像サイズ微調整 ***/
.noe260218 .link-area .link-area__list.list01 .link-area__item.item03{
  width: calc(181 * var(--formula));
}

.noe260218 .link-area .link-area__list.list02 .link-area__item{
  width: calc(179 * var(--formula));
}

.noe260218 .link-area .link-area__list.list02 .link-area__item.item02{
  width: calc(180 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .noe260218 .link-area p{
    font-size: calc(15 * var(--formula));
  }
}


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

.noe260218 .content01 .content__inner{
}

.noe260218 .content01 .content__title{
}

.noe260218 .content01 .content__item.item01{
  margin-top: calc(56 * var(--formula));
}

.noe260218 .content01 .content__item.item02{
  margin-top: calc(60 * var(--formula));
  margin-left: calc(100 * var(--formula));
}

.noe260218 .content01 .content__item.item03{
  margin-top: calc(57 * var(--formula));
}

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

/************** image **************/
.noe260218 .content01 .content__item.item01 .content__image{
}

.noe260218 .content01 .content__item.item02 .content__image{
  width: calc(650 * var(--formula));
}

.noe260218 .content01 .content__item.item03 .content__image{
  width: calc(395 * var(--formula));
}


/* ===============================================### 
コンテンツ02
###=============================================== */
.noe260218 .content02{
  margin-top: calc(81 * var(--formula));
}

.noe260218 .content02 .content__inner{
}

.noe260218 .content02 .content__title{
}

.noe260218 .content02 .flex-wrap{
  gap: calc(2 * var(--formula));
}

.noe260218 .content02 .content__item.item01{
  margin-top: calc(57 * var(--formula));
}

.noe260218 .content02 .content__item.item02{
  position: relative;
  margin-top: calc(50 * var(--formula));
}

.noe260218 .content02 .content__item.item02::after{
  content: '';
  position: absolute;
  top: calc(23 * var(--formula));
  right: calc(-20 * var(--formula));
  width: calc(722 * var(--formula));
  height: calc(560 * var(--formula));
  background-color: var(--color-blue);
  z-index: -1;
  pointer-events: none;
}

.noe260218 .content02 .content__item.item03{
  width: fit-content;
  margin-top: calc(64 * var(--formula));
  margin-inline: auto;
}

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

/************** image **************/
.noe260218 .content02 .content__item.item01 .content__image{
}

.noe260218 .content02 .content__item.item02 .content__image{
  width: calc(365 * var(--formula));
}

.noe260218 .content02 .content__item.item03 .content__image{
  width: calc(605 * var(--formula));
}


/* ===============================================### 
コンテンツ03
###=============================================== */
.noe260218 .content03{
  margin-top: calc(58 * var(--formula));
}

.noe260218 .content03 .content__inner{
}

.noe260218 .content03 .content__title{
}

.noe260218 .content03 .content__item.item01{
  margin-top: calc(56 * var(--formula));
}

.noe260218 .content03 .content__item.item02{
  margin-top: calc(61 * var(--formula));
}

/************** text **************/
.noe260218 .content03 .credit{
  margin-top: calc(19 * var(--formula));
  margin-left: calc(22 * var(--formula));
  text-align: left;
}

/************** image **************/
.noe260218 .content03 .content__item.item01 .content__image{
}

.noe260218 .content03 .content__item.item02 .content__image{
  width: calc(676 * var(--formula));
}

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


/* ===============================================### 
コンテンツ04
###=============================================== */
.noe260218 .content04{
  margin-top: calc(62 * var(--formula));
}

.noe260218 .content04 .content__inner{
}

.noe260218 .content04 .content__title{
}

.noe260218 .content04 .flex-wrap{
  gap: calc(2 * var(--formula));
}

.noe260218 .content04 .content__item.item01{
  margin-top: calc(57 * var(--formula));
}

.noe260218 .content04 .content__item.item02{
  margin-top: calc(83 * var(--formula));
}

/************** text **************/
.noe260218 .content04 .credit{
  margin-top: calc(18 * var(--formula));
}

/************** image **************/
.noe260218 .content04 .content__item.item01 .content__image{
}

.noe260218 .content04 .content__item.item02 .content__image{
  width: calc(374 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .noe260218 .content04 .content__item.item02{
    margin-top: calc(79 * var(--formula));
  }
}


/* ===============================================### 
コンテンツ05
###=============================================== */
.noe260218 .content05{
  margin-top: calc(37 * var(--formula));
  position: relative;
}

.noe260218 .content05::after{
  content: '';
  position: absolute;
  top: calc(1195 * var(--formula));
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: calc(6866 * var(--formula));
  background-color: var(--color-pink);
  z-index: -1;
}

.noe260218 .content05 .content__inner{
}

.noe260218 .content05 .content__title{
}

.noe260218 .content05 .flex-wrap{
  align-items: end;
  gap: calc(12 * var(--formula));
  width: calc(632 * var(--formula));
}

.noe260218 .content05 .content__item.item01{
  margin-top: calc(56 * var(--formula));
}

.noe260218 .content05 .content__item.item02{
  margin-top: calc(56 * var(--formula));
  margin-left: calc(157 * var(--formula));
}

.noe260218 .content05 .content__item.item03{
  margin-top: calc(16 * var(--formula));
}

/************** text **************/
.noe260218 .content05 .credit{
  margin-bottom: calc(-8 * var(--formula));
  text-align: left;
}

/************** image **************/
.noe260218 .content05 .content__item.item01 .content__image{
}

.noe260218 .content05 .content__item.item02 .content__image{
  width: calc(592 * var(--formula));
}

.noe260218 .content05 .content__item.item03 .content__image{
  width: calc(452 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .noe260218 .content05 .credit{
    margin-bottom: calc(-12 * var(--formula));
  }
}


/* ===============================================### 
コンテンツ06
###=============================================== */
.noe260218 .content06{
  margin-top: calc(64 * var(--formula));
}

.noe260218 .content06 .content__inner{
}

.noe260218 .content06 .content__title{
}

.noe260218 .content06 .content__item.item01{
  margin-top: calc(55 * var(--formula));
}

.noe260218 .content06 .content__item.item02{
  width: fit-content;
  margin-top: calc(39 * var(--formula));
  margin-inline: auto;
}

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

/************** image **************/
.noe260218 .content06 .content__item.item01 .content__image{
}

.noe260218 .content06 .content__item.item02 .content__image{
  width: calc(684 * var(--formula));
}


/* ===============================================### 
コンテンツ07
###=============================================== */
.noe260218 .content07{
  margin-top: calc(35 * var(--formula));
}

.noe260218 .content07 .content__inner{
}

.noe260218 .content07 .content__title{
}

.noe260218 .content07 .grid-wrap{
  grid-template-columns: repeat(2, 1fr);
}

.noe260218 .content07 .content__item.item01{
  margin-top: calc(55 * var(--formula));
}

.noe260218 .content07 .content__item.item02{
  margin-top: calc(100 * var(--formula));
}

/************** text **************/
.noe260218 .content07 .credit{
  margin-top: calc(29 * var(--formula));
}

/************** image **************/
.noe260218 .content07 .content__item.item01 .content__image{
}

.noe260218 .content07 .content__item.item02 .content__image{
  width: calc(375 * var(--formula));
}

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


/* ===============================================### 
others
###=============================================== */
.noe260218 .others{
  margin-top: calc(123 * var(--formula));
  margin-bottom: calc(100 * var(--formula));
}

.noe260218 .link-button{
  width: calc(361 * var(--formula));
  margin-inline: auto;
}