﻿/* パンくず 追加スタイル PC */
@media only screen and (min-width: 768px){
  .breadcrumb__list{
    padding-bottom: 1.6rem;
  }
}

/* LPコンテンツ */
/* ===============================================### 
初期設定
###=============================================== */
.norc-aw{
  --font-aktiv-grotesk: "aktiv-grotesk", sans-serif;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}

.norc-aw img,
.norc-aw svg{
  width: 100%;
  height: auto;
  overflow: initial
}



/* ===============================================### 
ローディング画面
###=============================================== */
#loading-screen {
  position: fixed;
  /* 画面に固定 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  /* 背景色を白に */
  z-index: 9999;
  /* 他の要素より手前に表示 */
  transition: opacity 1s ease-out;
  /* 1秒かけて透明度を変化させる */
  opacity: 1;
  /* 初期状態は不透明 */
}

/* フェードアウトさせるためのクラス */
#loading-screen.fade-out {
  opacity: 0;
  /* 透明にする */
  /* visibility: hidden; */
  /* アニメーション後、要素を非表示にして操作を妨げないようにする */
}

#loading-screen .loading-screen_wrap .logo_letter_item {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.3s;
  display: inline-block;
}

#loading-screen .loading-screen_wrap.fade-in .logo_letter_item {
  opacity: 1;
}

#loading-screen .logo_letter_item--01,
.inner_logo .logo_letter_item--01 {
  transition-delay: .05s
}

#loading-screen .logo_letter_item--02,
.inner_logo .logo_letter_item--02 {
  transition-delay: .1s
}

#loading-screen .logo_letter_item--03,
.inner_logo .logo_letter_item--03 {
  transition-delay: .15s
}

#loading-screen .logo_letter_item--04,
.inner_logo .logo_letter_item--04 {
  transition-delay: .2s
}

#loading-screen .logo_letter_item--05,
.inner_logo .logo_letter_item--05 {
  transition-delay: .25s
}

#loading-screen .logo_letter_item--06,
.inner_logo .logo_letter_item--06 {
  transition-delay: .3s
}

#loading-screen .logo_letter_item--07,
.inner_logo .logo_letter_item--07 {
  transition-delay: .35s
}

#loading-screen .logo_letter_item--08,
.inner_logo .logo_letter_item--08 {
  transition-delay: .4s
}

#loading-screen .logo_letter_item--09 {
  transition-delay: .45s
}

#loading-screen .logo_letter_item--10 {
  transition-delay: .5s
}

#loading-screen .logo_letter_item--11 {
  transition-delay: .55s
}

#loading-screen .logo_letter_item--12 {
  transition-delay: .6s
}

#loading-screen .logo_letter_item--13 {
  transition-delay: .65s
}

#loading-screen .logo_letter_item--14 {
  transition-delay: .7s
}

#loading-screen .logo_letter_item--15 {
  transition-delay: .75s
}

#loading-screen .logo_letter_item--16 {
  transition-delay: .8s
}

#loading-screen .logo_letter_item--17 {
  transition-delay: .85s
}

#loading-screen .logo_letter_item--18 {
  transition-delay: .9s
}

#loading-screen .logo_letter_item--19 {
  transition-delay: .95s
}

.loading-screen_wrap {
  display: grid;
  place-items: center;
  height: 100%;
}

.loading-screen_inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
}

.loading-screen_inner .logo {
  width: 14.4rem
}

.loading-screen_inner .sec__content__tx {
  font-size: 3.6rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .loading-screen_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(20* (100vw /375));
  }

  .loading-screen_inner .logo {
    width: calc(115* (100vw /375));
  }

  .loading-screen_inner .sec__content__tx {
    font-size: calc(25* (100vw /375));
    letter-spacing: -0.06em;
  }
}



/* ===============================================### 
文字送り
###=============================================== */
.letterAnimation {
  position: relative;
}

.letterAnimation span {
  font-style: normal;
  display: inline-block;
  position: relative;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.3s;
}

.letterAnimation.showText span {
  opacity: 1;
}

.wf-loading {
  opacity: 0;
}



/* ===============================================### 
アニメーション設定
###=============================================== */
/************** fade **************/
.norc-aw .js-fade-in,
.norc-aw .js-fade-trigger .js-fade-image {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 1s;
}

.norc-aw .js-fade-in.fade-delay.delay01,
.norc-aw .js-fade-trigger .js-fade-image.fade-delay.delay01 {
  transition-delay: 0.3s;
}

.norc-aw .js-show.fade-delay.delay02,
.norc-aw .js-fade-trigger .js-fade-image.fade-delay.delay02 {
  transition-delay: 0.6s;
}

.norc-aw .js-show.fade-delay.delay03,
.norc-aw .js-fade-trigger .js-fade-image.fade-delay.delay03 {
  transition-delay: 0.3s;
}

.norc-aw .js-fade-up {
  opacity: 0;
  transform: translate(0, 100px);
  transition-property: opacity, transform;
  transition-duration: 1s;
}

.norc-aw .js-slide-in {
  opacity: 0;
  transform: translate(-100px, 0);
  transition-property: opacity, transform;
  transition-duration: 1s;
}

.norc-aw .js-fade-in.show,
.norc-aw .js-fade-trigger.show .js-fade-image,
.norc-aw .js-fade-up.show,
.norc-aw .js-slide-in.show {
  opacity: 1;
  transform: translate(0, 0);
}


/************** credit **************/
.credit-button {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  width: 1.8rem;
  height: 1.8rem;
  z-index: 13;
}

.credit-button span {
  display: block;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  margin: auto;
  background-color: #fff;
  transition: all 0.3s ease;
  pointer-events: none;
}

.credit-button span:nth-child(2) {
  transform: rotate(90deg);
}

.credit-button.is-active span:nth-child(2) {
  transform: rotate(0deg);
}

.norc-aw .credit-wrap {
  --color-dark: #000;
  --color-white: #fff;
  --color-overlay: rgba(0, 0, 0, .3);
  --zindex-behind: -1;
  --zindex-base: 1;
  --zindex-overlay: 10;
  --zindex-floating-element: 20;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-block: var(--lp-prices-vertical-spacer);
  padding-inline: var(--lp-prices-horizontal-spacer);
  background-color: var(--color-overlay);
  font-size: var(--lp-prices-font-size);
  line-height: var(--lp-prices-line-height);
  color: var(--color-white);
  letter-spacing: 0.04em;
  z-index: var(--zindex-overlay);
  opacity: var(--prices-opacity-value, 0);
  visibility: var(--prices-visible-status, hidden);
  pointer-events: var(--prices-pointer-events-value, none);
  transition: all 0.6s ease;
}

.norc-aw .credit-wrap.is-active {
  --prices-opacity-value: 1;
  --prices-visible-status: visible;
  --prices-pointer-events-value: auto;
  --prices-transform-value: 0;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .credit-button {
    bottom: calc(10 * (100vw / 375));
    right: calc(10 * (100vw / 375));
    width: calc(18 * (100vw / 375));
    height: calc(18 * (100vw / 375));
  }
}



/* ===============================================### 
コンテンツ共通設定
###=============================================== */
.norc-aw .bg-wrap {
  background: linear-gradient(#F2F5FB 0%, #D2DEE7 25%, #B2C6D5 75%, #22333F 100%);
  padding-bottom: 8rem;
}

.norc-aw .item-wrap {
  position: relative;
}

.norc-aw .content__item .slide-wrap {
  --display: flex;
}

.norc-aw .flex-wrap{
  display: flex;
}

.norc-aw .grid-wrap{
  display: grid;
}

/************** credit **************/
.norc-aw .credit{
  opacity: var(--prices-opacity-value, 0);
  visibility: var(--prices-visible-status, hidden);
  pointer-events: var(--prices-pointer-events-value, none);
  transition: all 0.6s ease;
  width: 85%;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.05em;
  bottom: 0.6rem;
  left: 1.2rem;
  position: absolute;
}

.norc-aw .credit a:not(.not_credit) {
  text-decoration: underline;
}

.norc-aw .credit .not_credit {
  pointer-events: none;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .norc-aw .credit{
    opacity: var(--prices-opacity-value, 0);
    visibility: var(--prices-visible-status, hidden);
    pointer-events: var(--prices-pointer-events-value, none);
    transition: all 0.6s ease;
    width: 85%;
    font-size: calc(12 * (100vw / 375));
    line-height: 2;
    letter-spacing: 0.05em;
    bottom: calc(6 * (100vw / 375));
    left: calc(12 * (100vw / 375));
    position: absolute;
  }
}



/* ===============================================### 
MV
###=============================================== */
.norc-aw .mv{
}

.norc-aw .mv__inner{
  position: relative;
}

/************** text **************/
.norc-aw .lp-title{
  position: absolute;
  color: #fff;
  width: 36rem;
  margin: initial;
  left: 50%;
  transform: translateX(-166.8%);
  bottom: 7.8rem;
}

.norc-aw .inner_logo{
  width: 16rem;
  fill: #fff;
}

.norc-aw .inner_logo .logo_letter_item{
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.3s;
}

.norc-aw .inner_logo.fade-in .logo_letter_item{
  opacity: 1;
}

.norc-aw .maivsiual_tx .fvAnime.__1{
  margin-top: 3rem;
}

.norc-aw .maivsiual_tx .fvAnime.ttl{
  font-size: 2.2rem;
  line-height: 1.25;
}

.norc-aw .maivsiual_tx .fvAnime.sub_ttl{
  font-size: 1.8rem;
  margin-top: 2.2rem;
}

.norc-aw .maivsiual_tx .fvAnime.__4{
  margin-top: 0.9rem; 
}

.norc-aw .maivsiual_tx .fvAnime.copy{
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* ===========### responsive ###=========== */
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .norc-aw .lp-title{
    left: 10rem;
    transform: translateX(0);
  }
}

@media screen and (max-width: 767px) {
  .norc-aw .lp-title{
    position: initial;
    width: calc(345 * (100vw / 375));
    margin: calc(30 * (100vw / 375)) auto 0;
    transform: none;
    color: #000;
  }

  .norc-aw .inner_logo{
    width: calc(136 * (100vw / 375));
    fill: #000;
  }

  .norc-aw .maivsiual_tx .fvAnime.__1{
    margin-top: calc(23 * (100vw / 375));
  }

  .norc-aw .maivsiual_tx .fvAnime.ttl{
    font-size: calc(20 * (100vw / 375));
    line-height: 1.25;
  }

  .norc-aw .maivsiual_tx .fvAnime.sub_ttl{
    font-size: calc(16 * (100vw / 375));
    line-height: 1;
    margin-top: calc(23 * (100vw / 375));
  }

  .norc-aw .maivsiual_tx .fvAnime.__4{
    margin-top: calc(11 * (100vw / 375));
  }

  .norc-aw .maivsiual_tx .fvAnime.copy{
    font-size: calc(14 * (100vw / 375));
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: 0.02em;
  }
}



/* ===============================================### 
コンテンツ01
###=============================================== */
.norc-aw .content01{
  padding-top: 12rem;
}

.norc-aw .content01 .content__inner{
  width: 38rem;
  margin-inline: auto;
}

.norc-aw .content01 .content__item{
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .norc-aw .content01{
    margin-top: calc(35 * (100vw / 375));
    padding-top: 0;
  }

  .norc-aw .content01 .content__inner{
    width: calc(375 * (100vw / 375));
  }
}



/* ===============================================### 
コンテンツ02
###=============================================== */
.norc-aw .content02{
  margin-top: 2rem;
}

.norc-aw .content02 .content__inner{
  width: 38rem;
  margin-inline: auto;
}

.norc-aw .content02 .content__item{
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .norc-aw .content02{
    margin-top: calc(20 * (100vw / 375));
  }

  .norc-aw .content02 .content__inner{
    width: calc(375 * (100vw / 375));
  }
}



/* ===============================================### 
コンテンツ03
###=============================================== */
.norc-aw .content03{
  margin-top: 12rem;
}

.norc-aw .content03 .content__inner{
  width: 80rem;
  margin-inline: auto;
}

.norc-aw .content03 .content__item{
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .norc-aw .content03{
    margin-top: calc(80 * (100vw / 375));
  }

  .norc-aw .content03 .content__inner{
    width: calc(375 * (100vw / 375));
  }

  .norc-aw .content03 .flex-wrap{
    flex-direction: column;
  }

  .norc-aw .content03 .flex-item{
    width: calc(250 * (100vw / 375));
  }

  .norc-aw .content03 .flex-item.item02{
    margin-left: auto;
  }
}



/* ===============================================### 
コンテンツ04
###=============================================== */
.norc-aw .content04{
  margin-top: 12rem;
}

.norc-aw .content04 .content__inner{
  width: 35rem;
  margin-inline: auto;
}

.norc-aw .content04 .content__item{
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .norc-aw .content04{
    margin-top: calc(80 * (100vw / 375));
  }

  .norc-aw .content04 .content__inner{
    width: calc(300 * (100vw / 375));
  }
}



/* ===============================================### 
コンテンツ05
###=============================================== */
.norc-aw .content05{
  margin-top: 12rem;
}

.norc-aw .content05 .content__inner{
  width: fit-content;
  margin-inline: auto;
}

.norc-aw .content05 .content__item.item01{
  width: 35rem;
  margin-inline: auto;
}

.norc-aw .content05 .content__item.item02{
  width: 45rem;
  margin-top: 2rem;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .norc-aw .content05{
    margin-top: calc(80 * (100vw / 375));
  }

  .norc-aw .content05 .content__inner{
  }

  .norc-aw .content05 .content__item.item01{
    width: calc(300 * (100vw / 375));
    margin-inline: auto;
  }

  .norc-aw .content05 .content__item.item02{
    width: calc(375 * (100vw / 375));
    margin-top: calc(20 * (100vw / 375));
  }
}



/* ===============================================### 
コンテンツ06
###=============================================== */
.norc-aw .content06{
  margin-top: 12rem;
}

.norc-aw .content06 .content__inner{
  width: fit-content;
  margin-inline: auto;
}

.norc-aw .content06 .content__item.item01{
  width: 38rem;
  margin-inline: auto;
}

.norc-aw .content06 .content__item.item02{
  width: 80rem;
  margin-top: 12rem;
}

.norc-aw .content06 .content__item.item03{
  width: 38rem;
  margin-top: 12rem;
  margin-inline: auto;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .norc-aw .content06{
    margin-top: calc(80 * (100vw / 375));
  }

  .norc-aw .content06 .content__inner{
  }

  .norc-aw .content06 .content__item.item01{
    width: calc(330 * (100vw / 375));
    margin-inline: auto;
  }

  .norc-aw .content06 .content__item.item02{
    width: calc(375 * (100vw / 375));
    margin-top: calc(81 * (100vw / 375));
  }

  .norc-aw .content06 .content__item.item03{
    width: calc(330 * (100vw / 375));
    margin-top: calc(81 * (100vw / 375));
  }

  .norc-aw .content06 .flex-wrap{
    flex-direction: column;
  }

  .norc-aw .content06 .flex-item{
    width: calc(250 * (100vw / 375));
  }

  .norc-aw .content06 .flex-item.item01{
    margin-left: auto;
  }
}



/* ===============================================### 
コンテンツ07
###=============================================== */
.norc-aw .content07{
  margin-top: 12rem;
}

.norc-aw .content07 .content__inner{
  width: 80rem;
  margin-inline: auto;
}

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

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .norc-aw .content07{
    margin-top: calc(80 * (100vw / 375));
  }

  .norc-aw .content07 .content__inner{
    width: calc(375 * (100vw / 375));
    margin-inline: auto;
  }
}



/* ===============================================### 
コンテンツ08
###=============================================== */
.norc-aw .content08{
  margin-top: 12rem;
}

.norc-aw .content08 .content__inner{
  width: 38rem;
  margin-inline: auto;
}

.norc-aw .content08 .content__item{
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .norc-aw .content08{
    margin-top: calc(80 * (100vw / 375));
  }

  .norc-aw .content08 .content__inner{
    width: calc(330 * (100vw / 375));
  }
}



/* ===============================================### 
コンテンツ09
###=============================================== */
.norc-aw .content09{
  margin-top: 12rem;
}

.norc-aw .content09 .content__inner{
  width: 35rem;
  margin-inline: auto;
}

.norc-aw .content09 .content__item{
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .norc-aw .content09{
    margin-top: calc(80 * (100vw / 375));
  }

  .norc-aw .content09 .content__inner{
    width: calc(300 * (100vw / 375));
  }
}



/* ===============================================### 
コンテンツ10
###=============================================== */
.norc-aw .content10{
  margin-top: 12rem;
}

.norc-aw .content10 .content__inner{
}

.norc-aw .content10 .content__item.item01,
.norc-aw .content10 .content__item.item02{
  width: 38rem;
  margin-inline: auto;
}

.norc-aw .content10 .content__item.item02{
  margin-top: 2rem;
}

.norc-aw .content10 .content__item.item03{
  width: 100%;
  margin-top: 12rem;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .norc-aw .content10{
    margin-top: calc(80 * (100vw / 375));
  }

  .norc-aw .content10 .content__item.item01,
  .norc-aw .content10 .content__item.item02{
    width: calc(375 * (100vw / 375));
  }

  .norc-aw .content10 .content__item.item02{
    margin-top: calc(20 * (100vw / 375));
  }

  .norc-aw .content10 .content__item.item03{
    width: calc(375 * (100vw / 375));
    margin-top: calc(80 * (100vw / 375));
  }
}



/* ===============================================### 
コンテンツ11
###=============================================== */
.norc-aw .content11{
}

.norc-aw .content11 .content__inner{
  width: 100rem;
  margin: 6rem auto 0;
  padding: 0;
}

/************** text **************/
.norc-aw .staff-credit .flex-wrap{
  align-items: flex-start;
  flex-direction: row;
  gap: 5.4rem; 
}

.norc-aw .staff-credit .list-name{
  font-family: var(--font-aktiv-grotesk);
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.3125;
  text-decoration: underline;
  letter-spacing: 0.05em;
  color: #fff;
}

.norc-aw .staff-credit .staff-list{
  margin-top: -0.7rem;
  font-family: var(--font-aktiv-grotesk);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.5;
  letter-spacing: 0.05em;
  color: #fff;
}

/************** button **************/
.norc-aw .top-button {
  display: grid;
  place-items: center;
  margin: 0 auto;
  width: 26.6rem;
  height: 5rem;
  margin: 11rem auto 0;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid #fff;
  color: #fff;
}

.norc-aw .top-button a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .norc-aw .content11 .content__inner{
    width: calc(378 * (100vw / 375));
    margin-top: calc(60 * (100vw / 375));
    margin-bottom: calc(90 * (100vw / 375));
    padding: 0 calc(15 * (100vw / 375));
  }

  /************** text **************/
  .norc-aw .staff-credit .flex-wrap{
    align-items: flex-start;
    flex-direction: column;
    row-gap: calc(17 * (100vw / 375));
  }

  .norc-aw .staff-credit .list-name{
    line-height: 1.3125;
    font-size: calc(16 * (100vw / 375));
  }

  .norc-aw .staff-credit .staff-list{
    font-weight: 300;
    font-size: calc(14 * (100vw / 375));
    line-height: 2.5;
    letter-spacing: 0.05em;
  }

  /************** button **************/
  .norc-aw .top-button {
    font-size: calc(14 * (100vw / 375));
    width: calc(266 * (100vw / 375));
    height: calc(50 * (100vw / 375));
    margin-top: calc(52 * (100vw / 375));
  }

  /* .norc-aw .top-button a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  } */
}