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

.noe260508{
  --font-ja: "yu-mincho-pr6n", sans-serif;
  --font-en: "adobe-caslon-pro", 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;
  overflow: clip;
  position: relative;
}

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

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

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

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

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

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

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



/* ===============================================### 
アニメーション設定
###=============================================== */
/************** fade **************/
.noe260508 .js-fade-in{
  opacity: 0 !important;
  transform: scale(1.03);
  filter: blur(8px);
  transition: opacity 1.6s ease, transform 1.6s ease, filter 1.6s ease;
  will-change: opacity, transform, filter;
}

.noe260508 .js-fade-in.show{
  opacity: 1 !important;
  transform: scale(1);
  filter: blur(0);
}

.noe260508 .js-slide-in{
  opacity: 0;
  transition: opacity 2.5s ease, transform 2.5s ease;
}

.noe260508 .js-slide-in.show{
  opacity: 1;
}

.noe260508 .js-slide-in.ltr{
  transform: translateX(-60px);
}

.noe260508 .js-slide-in.ltr.show{
  transform: translateX(0);
}

.noe260508 .js-slide-in.rtl{
  transform: translateX(60px);
}

.noe260508 .js-slide-in.rtl.show{
  transform: translateX(0);
}


/* ===============================================### 
コンテンツ共通設定
###=============================================== */
.noe260508 .content .content__inner{
  width: calc(750 * var(--formula));
  margin-inline: auto;
}

.noe260508 .grid-wrap{
  display: grid;
}

.noe260508 .flex-wrap{
  display: flex;
}

/************** text **************/
.noe260508 .credit{
  font-family: var(--font-ja);
  font-size: calc(20 * var(--formula));
  font-weight: var(--fw-regular);
  line-height: 1.25;
  font-feature-settings: "palt";
  letter-spacing: 0;
  white-space: nowrap;
}

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

.noe260508 .credit span{
  display: inline-block;
  margin-inline: calc(3 * var(--formula));
  vertical-align: top;
}

.noe260508 .credit a.link-disable:hover{
  opacity: 1;
}

/* ===========### responsive ###=========== */
/************** layout **************/
/*** PC ***/
@media screen and (min-width: 768px) {
  .noe260508 .main-wrap.grid-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr calc(750 * var(--formula)) 1fr;
  }

  .noe260508 .left-area {
    position: sticky;
    grid-column: 1;
    top: 0;
    height: 100vh;
    display: grid;
    place-content: center;
  }

  .noe260508 .center-area {
    position: relative;
    grid-column: 2;
  }

  .noe260508 .right-area {
    position: sticky;
    grid-column: 3;
    top: 0;
    height: 100vh;
    display: grid;
    place-content: center;
  }

  .noe260508 .fixed_link {
    position: relative;
    left: calc(-14 * var(--formula));
    width: calc(171 * var(--formula_pc));
  }

  .noe260508 .fixed_link::after{
    content: '';
    position: absolute;
    top: 50%;
    right: calc(-30 * var(--formula));
    transform: translateY(-50%);
    width: calc(11 * var(--formula_pc));
    height: calc(12 * var(--formula_pc));
    background-image: url('../img/arrow.svg');
    background-repeat: no-repeat;
    background-size: contain;
  }

  .noe260508 .fixed_title {
    position: relative;
    width: calc(238 * var(--formula_pc));
  }
}

/*** SP ***/
@media screen and (max-width: 767px) {
  .noe260508 .content{
    position: relative;
  }

  .noe260508 .center-area {
    width: calc(750 * var(--formula));
    margin-inline: auto;
  }
}



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

.noe260508 .mv__inner{
  width: calc(750 * var(--formula));
  margin-inline: auto;
}

/************** image **************/
.noe260508 .mv__image{
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .noe260508 .mv__inner{
    position: relative;
  }
}


/* ===============================================### 
lead-area
###=============================================== */
.noe260508 .lead-area{
}

.noe260508 .lead-area .content__inner{
}

/************** text **************/
.noe260508 .lead-title{
  width: calc(384 * var(--formula));
  margin-top: calc(61 * var(--formula));
  margin-inline: auto;
}

.noe260508 .lead-text{
  margin-top: calc(55 * var(--formula));
  font-family: var(--font-ja);
  font-size: calc(20 * var(--formula));
  font-weight: var(--fw-regular);
  line-height: 2.2;
  letter-spacing: 0.075em;
  text-align: center;
}

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


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

.noe260508 .content01 .content__inner{
}

.noe260508 .content01 .content__item{
}

.noe260508 .content01 .content__item.item01{
}

.noe260508 .content01 .content__item.item02{
  position: relative;
  margin-top: calc(177 * var(--formula));
}

/************** slide **************/
.noe260508 .content01 .slide-wrap{
  width: calc(403 * var(--formula));
}

/************** grid **************/
.noe260508 .content01 .grid-wrap{
  grid-template-columns: calc(292 * var(--formula)) calc(111 * var(--formula)) calc(23 * var(--formula)) calc(133 * var(--formula)) calc(190 * var(--formula));
  grid-template-rows: calc(57 * var(--formula)) calc(485 * var(--formula)) calc(107 * var(--formula)) calc(107 * var(--formula)) calc(292 * var(--formula));
}

.noe260508 .content01 .grid-area__item.item01{
  grid-column: 1/3;
  grid-row: 1/5;
}

.noe260508 .content01 .grid-area__item.item02{
  grid-column: 4/6;
  grid-row: 2/3;
}

.noe260508 .content01 .grid-area__item.item03{
  grid-column: 2/5;
  grid-row: 4/6;
}

/************** text **************/
.noe260508 .content01 .credit{
  margin-top: calc(6 * var(--formula));
  margin-left: calc(4 * var(--formula));
}

/************** image **************/
.noe260508 .content01 .content__title{
  position: absolute;
  top: calc(-151 * var(--formula));
  right: calc(65 * var(--formula));
  width: calc(198 * var(--formula));
  z-index: 1;
  pointer-events: none;
}

.noe260508 .content01 .content__item.item01 .content__image{
  width: calc(750 * var(--formula));
}

.noe260508 .content01 .grid-area__item.item01 .content__image{
}

.noe260508 .content01 .grid-area__item.item02 .content__image{
  width: calc(323 * var(--formula));
}

.noe260508 .content01 .grid-area__item.item03 .content__image{
  width: calc(266 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .noe260508 .content01 .content__title{
    right: calc(66 * var(--formula));
  }
}


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

.noe260508 .content02 .content__inner{
}

.noe260508 .content02 .content__item{
}

.noe260508 .content02 .content__item.item01{
  width: fit-content;
  margin-top: calc(46 * var(--formula));
  margin-inline: auto;
}

.noe260508 .content02 .content__item.item02{
  width: fit-content;
  margin-top: calc(107 * var(--formula));
  margin-inline: auto;
}

/************** text **************/
.noe260508 .content02 .credit{
  margin-top: calc(21 * var(--formula));
  text-align: center;
}

/************** image **************/
.noe260508 .content02 .content__title{
  width: calc(484 * var(--formula));
  margin-inline: auto;
}

.noe260508 .content02 .content__item.item01 .content__image{
  width: calc(750 * var(--formula));
}

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

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


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

.noe260508 .content03 .content__inner{
}

.noe260508 .content03 .content__item{
}

.noe260508 .content03 .content__item.item01{
}

.noe260508 .content03 .content__item.item02{
  margin-top: calc(91 * var(--formula));
  margin-left: calc(131 * var(--formula));
  margin-right: auto;
}

/************** flex **************/
.noe260508 .content03 .flex-wrap{
  align-items: flex-start;
  gap: calc(40 * var(--formula));
}

/************** text **************/
.noe260508 .content03 .credit{
  margin-top: calc(17 * var(--formula));
}

/************** image **************/
.noe260508 .content03 .content__title{
  width: calc(48 * var(--formula));
}

.noe260508 .content03 .content__item.item01 .content__image{
  width: calc(750 * var(--formula));
}

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

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


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

.noe260508 .content04 .content__inner{
}

.noe260508 .content04 .content__item{
}

.noe260508 .content04 .content__item.item01{
  width: fit-content;
  margin-inline: auto;
}

.noe260508 .content04 .content__item.item02{
  margin-top: calc(42 * var(--formula));
  margin-left: calc(22 * var(--formula));
  margin-right: auto;
}

/************** flex **************/
.noe260508 .content04 .flex-wrap{
  align-items: end;
  gap: calc(20 * var(--formula));
}

/************** text **************/
.noe260508 .content04 .credit{
  margin-bottom: calc(-6 * var(--formula));
}

/************** image **************/
.noe260508 .content04 .content__title{
  width: calc(566 * var(--formula));
  margin-top: calc(52 * var(--formula));
  margin-inline: auto;
}

.noe260508 .content04 .content__item.item01 .content__image{
  width: calc(649 * var(--formula));
}

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

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


/* ===============================================### 
コンテンツ05
###=============================================== */
.noe260508 .content05{
  margin-top: calc(108 * var(--formula));
}

.noe260508 .content05 .content__inner{
}

.noe260508 .content05 .content__item{
}

.noe260508 .content05 .content__item.item01{
  position: relative;
  width: fit-content;
  margin-top: calc(38 * var(--formula));
}

.noe260508 .content05 .content__item.item02{
  position: relative;
  margin-top: calc(85 * var(--formula));
  padding: calc(71 * var(--formula)) calc(83 * var(--formula));
}

.noe260508 .content05 .content__item.item02::after{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(750 * var(--formula));
  height: calc(1100 * var(--formula));
  background-image: url('../img/content05_image02_bg.jpg');
  background-repeat: no-repeat;
  background-size: contain;
}

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

/************** flex **************/
.noe260508 .content05 .flex-wrap{
  gap: calc(23 * var(--formula));
}

/************** text **************/
.noe260508 .content05 .credit{
  position: absolute;
  bottom: calc(11 * var(--formula));
  right: calc(10 * var(--formula));
  z-index: 1;
}

/************** image **************/
.noe260508 .content05 .content__title{
  width: calc(579 * var(--formula));
  margin-inline: auto;
}

.noe260508 .content05 .content__item.item01 .content__image{
  width: calc(750 * var(--formula));
}

.noe260508 .content05 .content__item.item02 .content__image{
  position: relative;
  width: calc(585 * var(--formula));
  z-index: 1;
}

.noe260508 .content05 .content__item.item03 .content__image.image01{
  width: calc(352 * var(--formula));
  margin-top: calc(128 * var(--formula));
}

.noe260508 .content05 .content__item.item03 .content__image.image02{
  width: calc(375 * var(--formula));
}

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


/* ===============================================### 
コンテンツ06
###=============================================== */
.noe260508 .content06{
  margin-top: calc(152 * var(--formula));
  margin-bottom: calc(200 * var(--formula));
}

.noe260508 .content06 .content__inner{
}

/************** text **************/
.noe260508 .staff-credit{
  margin-top: calc(88 * var(--formula));
  font-family: var(--font-ja);
  font-size: calc(25 * var(--formula));
  font-weight: var(--fw-regular);
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
}

/************** image **************/
.noe260508 .content06 .content__image{
  width: calc(226 * var(--formula));
  margin-top: calc(93 * var(--formula));
  margin-inline: auto;
}

/************** button **************/
.noe260508 .link-button{
  width: calc(248 * var(--formula));
  margin-inline: auto;
  padding: calc(9 * var(--formula)) 0 calc(5 * var(--formula));

  font-family: var(--font-en);
  font-size: calc(20 * var(--formula));
  font-weight: var(--fw-regular);
  line-height: 1.7;
  letter-spacing: 0;
  text-align: center;
  border: 1px solid var(--color-black);
}

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


