.introAnimation {
  opacity: 0;
  pointer-events: none;
  display: block;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 4;
  overflow: hidden;
  /*! pointer-events: initial; */
  
  transition: opacity 2s;
  top: 0;
}
.showkvAnimation .introAnimation {
  opacity: 1;
  display: block;
  width: 100%;
  height: 100vh;
  height: 100dvh;
/*   position: absolute; */
  z-index: 5;
  overflow: hidden;
  pointer-events: initial;
  
  transition: opacity 1s;
/*   opacity: 0.3;
  background-color: red; */
}

.showkvAnimation header {
  pointer-events: none;
  opacity: 0;
}
.main header {
  pointer-events: initial;
  opacity: 1;
}
.introAnimationInner {
  background-color: #000;
}
.introAnimationInner,
.introScene .bg_inner_wrap {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.introScene,
.introScene picture {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.introScene .bg_wrap {
  width: 100%;
  height: 100%;
}
.introScene .bg_inner_wrap .cap {
  position: absolute;
  right: 5px;
  bottom: 5px;
  font-size: 12px;
  color: #fff;
  z-index: 1;
}
.introScene picture {
  width: 100%;
}
.introScene picture img {
  max-width: initial;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1.1;
}
.introScene .copy_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.introScene .copy_wrap p {
  font-size: 38px;
  letter-spacing: 0.42em;
  filter: blur(20px);      /* 初期状態でぼかす */
}
.introScene.is-active.introScene01 .copy_wrap p,
.introScene.is-active.introScene02 .copy_wrap p,
.introScene.is-active.introScene03 .copy_wrap p {
  animation: fadeInBlurAndScale 2.1s cubic-bezier(0.250, 0.250, 0.000, 1.010) forwards; /* アニメーションを適用 */
}
.introScene.is-active.introScene04 .copy_wrap p {
  animation: fadeInBlur 6s linear forwards; /* アニメーションを適用 */
}

@keyframes fadeInBlurAndScale {
  0% {
    opacity: 0;            /* 初期は透明 */
    filter: blur(20px);    /* 初期はぼかし */
    scale: 1.2;
  }
  100% {
    opacity: 1;            /* 最後は不透明 */
    filter: blur(0px);     /* ぼかしをなくす */
    scale: 1.0;
  }
}

@keyframes fadeInBlur {
  0% {
    opacity: 0;            /* 初期は透明 */
    filter: blur(20px);    /* 初期はぼかし */
    scale: 1;
  }
  
  50% {
    opacity: 1;            /* 最後は不透明 */
    filter: blur(0px);     /* ぼかしをなくす */
  }
  100% {
    filter: blur(0px);     /* ぼかしをなくす */
    scale: 1.1;
  }
}
@media all and (max-width: 750px) {
  .introAnimation {
    height: 100vh;
    height: 100dvh;
  }
  .introScene .copy_wrap {
    width: 100%;
    text-align: center;
  }
  .introScene .copy_wrap p {
    font-size: calc(34 / var(--media_sp) * 100vw);
    left: 1vw;
    position: relative;
  }
  .introScene .bg_inner_wrap .cap {
    font-size: calc(24 / var(--media_sp) * 100vw);
    right: 1.333vw;
    bottom: 0.667vw;
  }
}

.introAnimationInner button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  position: absolute;
  bottom: 0;
  left: 0;
  
  color: #fff;
  letter-spacing: 0.15em;
  padding: 15px 44px;
  background-color: #000;
}
@media all and (max-width: 750px) {
  .introAnimationInner button {
    font-size: calc(22 / var(--media_sp) * 100vw);
    padding: 2vw 6.5vw;
  } 
}

.introScene {
  opacity: 0;
  transition: opacity 2s;
}
.introScene.is-active {
  opacity: 1;
  transition: opacity 2s;
}
.introScene.is-active.is-hidden,
.introScene.introScene01.is-active.is-hidden {
  opacity: 0;
  transition: opacity 2s;
}
.introScene.introScene04.is-active.is-hidden {
  opacity: 1;
}
.introScene.introScene01 {
  opacity: 1;
}
.introScene.introScene01.is-hidden {
  opacity: 0;
}

.introScene.introScene01 picture {
  top: 46%;
}
.introScene.introScene01.is-active picture {
  animation: moveTop 12s linear forwards;
}
@keyframes moveTop {
  from {
    top: 46%;
  }
  to {
    top: 54%;
  }
}

.introScene.introScene02 picture {
  transition: left 12s linear;
  left: 54%;
}
.introScene.introScene02.is-active picture{
  animation: moveLeftToRight 12s linear forwards;
}
@keyframes moveLeftToRight {
  from {
    left: 54%;
  }
  to {
    left: 46%;
  }
}

.introScene.introScene03 picture {
  transition: left 12s linear;
  left: 46%;
}
.introScene.introScene03.is-active picture{
  animation: moveRightToLeft 12s linear forwards;
}
@keyframes moveRightToLeft {
  from {
    left: 46%;
  }
  to {
    left: 54%;
  }
}

.animation_cover {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  background-color: #131313;
  z-index: 4;
  pointer-events: initial;
  top: 0;
  /* left: 500px; */
}
.showMain .animation_cover {
  opacity: 0;
  transition: opacity 2.5s;
  left: 500px;
}

.pin_target {
/*   position: absolute;
  width: 100%;
  display: block; */
}


.kv-wrap {
  position: relative;
  height: 100vh;
  height: 100lvh;
  width: 100%;
  overflow: hidden;
}
.kv-wrap .hero_img {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  transform: translate3d(-50%, -50%, 0);
  /* display: grid; */
  place-content: center;
}
.kv-wrap .hero_img img {
  max-width: initial;
}
.kv-wrap .hero_img.kv-hero-bg {
  overflow: hidden;
  scale: 1.0001;
  display: block;
}
.kv-wrap .hero_img.kv-hero-bg img {
  max-width: initial;
  /*! object-fit: contain; */
  display: block;
  width: 100%;
  /*! aspect-ratio: 1500/2532; */
  position: relative;
  object-fit: cover;
  height: 100%;
}
.kv-wrap .main_copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.kv-wrap .main_copy img {
  will-change: opacity, transform, filter;
  /*! backface-visibility: hidden; */
  filter: blur(20px);      /* 初期状態でぼかす */
  scale: 1.2;
  width: 53px;
  transform: translate3d(0, 0, 0);
}
@media all and (max-width: 750px) {
  .kv-wrap .main_copy {
    position: absolute;
    top: 25.9%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  .kv-wrap .main_copy img {
    width: calc(33.5 / var(--media_sp) * 100vw);
    aspect-ratio: 40/353;
    height: auto;
  }
}
.kv-wrap .main_copy.visiable img {
  animation: mainCopyfadeInBlurAndScale 5.2s cubic-bezier(0.250, 0.250, 0.000, 1.010) forwards; /* アニメーションを適用 */
}
.kv-wrap .main_copy.visiable.visiable_pc_safari img {
  scale: initial;
  animation: mainCopyfadeInBlurforSafari 5.2s cubic-bezier(0.250, 0.250, 0.000, 1.010) forwards; /* アニメーションを適用 */
} 

@keyframes mainCopyfadeInBlurAndScale {
  0% {
    opacity: 0;            /* 初期は透明 */
    filter: blur(20px);    /* 初期はぼかし */
    scale: 1.3;
    
  }
  100% {
    opacity: 1;            /* 最後は不透明 */
    filter: blur(0px);     /* ぼかしをなくす */
    scale: 1.0;
  }
}
@keyframes mainCopyfadeInBlurforSafari {
  0% {
    opacity: 0;            /* 初期は透明 */
    filter: blur(20px);    /* 初期はぼかし */
    
  }
  100% {
    opacity: 1;            /* 最後は不透明 */
    filter: blur(0px);     /* ぼかしをなくす */
  }
}

.kv-wrap .replay {
  position: absolute;
  bottom: 16px;
  left: 16px; 
  z-index: 1;
  display: none;
}

.kv-wrap {
  z-index: 1;
}
.inner_theme01 {
  z-index: 2;
}
.inner_theme02 {
  z-index: 3;
}
.inner_theme03 {
  z-index: 4;
}
.inner_theme04 {
  z-index: 5;
}


.kv-wrap .scroll_scene02 {
  height: 100vh;
  height: 100lvh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.inner_themes {
  height: 100vh;
  height: 100lvh;
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
}

.inner_themes .inner_wrap {
  position: absolute;
  width: 100%;
  height: 100%;
}
.inner_themes .img_wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 100%; 
  pointer-events: none;
/*   opacity: 0; */
}
.inner_themes .img_wrap img {
  transform: translate3d(0, 0, 0);
  max-width: initial;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1.1;
/*   scale: 1.0009; */
}
.inner_themes .text_wrap {
  position: absolute;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  z-index: 2;
  top: 0;
  display: grid;
  /*! flex-direction: row-reverse; */
  /*! justify-content: center; */
  align-items: center;
  transition: all 0.5s;
  gap: 0 130px;
  pointer-events: none;
  /*! grid-template-columns: 1fr 1fr; */
  place-content: center;
  /*! align-items: center; */
  /*! align-content: center; */
  /*! align-self: center; */
}
@media all and (max-width: 1000px) {
  .inner_themes .inner_wrap {
    pointer-events: none;
  }
  .inner_themes .text_wrap {
    gap: 0vw;
  }
}
.scroll_kvscene01 {
/*   position: relative;
  height: 100vh;
  height: 100lvh;
  z-index: 1; */
}
.scroll_kvScene01_inner {
    /*! position: relative; */
  /*! height: 100vh; */
  /*! height: 100lvh; */
  /*! z-index: 1; */
}
.kv-wrap .scroll_kvscene01 .main_copy {
  transition: all 1.1s;
  opacity: 1;
  width: fit-content;
  height: fit-content;
}
.kv-wrap .scroll_kvscene01 .main_copy picture {
  width: fit-content;
  height: fit-content;
}
.kv-wrap .scroll_kvscene01.scene02-active .main_copy {
  transition: all 1.1s;
  opacity: 0;
}
.button_psition_wrap {
  height: 100dvh;
  display: block;
  position: relative;
}
.kv-wrap .scroll_kvscene01 button {
  transition: all 1.1s;
  opacity: 1;
}
.kv-wrap .scroll_kvscene01.disable button {
  transition: all 1.1s;
  opacity: 0;
}
.kv-wrap .scroll_kvscene02 {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  position: relative;
  opacity: 0;
  background-color: rgba(34,34,34,0.6);
  transition: all 1.0s;
  pointer-events: none;
  top: -100%;
}
.kv-wrap .scroll_kvscene02 p {
  font-size: 16px;
  line-height: 2.5;  
  letter-spacing: 0.2em;
}
.kv-wrap .scroll_kvscene02.scene02-active {
  transition: all 1.0s;
  opacity: 1;
  pointer-events: initial;
}
.kv-wrap .scroll_kvscene02.is-active.disable {
  pointer-events: none;
}
.kv-wrap {
  transition: opacity 1s;
  /*! opacity: 0; */
}
.kv-wrap.kv-active {
  opacity: 1;
    transition: opacity 1s;
}
/* .kv-wrap.disable {
  transition: opacity 1s;
  opacity: 0;
  pointer-events: none;
} */
@media all and (max-width: 750px) {
  .kv-wrap .scroll_kvscene02 p {
    font-size: calc(24 / var(--media_sp) * 100vw);
    line-height: 2.333;
  }
  /* .inner_themes.inner_theme03 .img_wrap picture {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100lvh;
    display: block;
    overflow: hidden;
  }  
  .inner_themes.inner_theme03 .img_wrap img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: auto;
    object-fit: cover;
    aspect-ratio: 1500/2532;
    width: 100%;
    height: auto;
    min-height: 100%;
    min-width: 100%;
  } */
}

.inner_themes .text_wrap .color_mask {
  background-color: rgba(34,34,34,0.6);
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
/*   transition: all 0.5s;   */
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}
.inner_themes .color_mask.subpage_link_mask {
  background-color: rgba(89,89,89,1);
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
/*   transition: all 0.5s;   */
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  top: 0;
}
.inner_themes.inner_theme03 .color_mask.subpage_link_mask {
    background-color: rgba(125,125,125,1);
}
.kv-wrap .caption,
.inner_themes .text_wrap .caption {
  position: absolute;
  color: #fff;
  right: 5px;
  bottom: 5px;
  display: block;
  z-index: 2;
}

.inner_themes .text_wrap.text_wrap-active .color_mask {
  opacity: 1;
  transition: all 0.5s;
}
.inner_themes .text_wrap .copy,
.inner_themes .text_wrap .text_content {
  transform: translate3d(0, 0, 0);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
/*   transition: all 1.8s; */
  filter: blur(20px);
  width: fit-content;
  height: fit-content;
}
.inner_themes .text_wrap .copy {
  grid-column: 2/3;
  grid-row: 1/2;
}
.inner_themes .text_wrap .text_content{
  grid-column: 1/2;
  grid-row: 1/2;
}
.inner_themes {
/*   display: none; */
}
.inner_themes {
  opacity: 0;
  /* transition: opacity 1s; */
  pointer-events: none;
}
.inner_themes.clickable {
  pointer-events: initial;
}
.inner_themes.scene-active {
  opacity: 1;
  transition: opacity 1s;
}
/* .no-transition .inner_themes.scene-active {
  transition: all 0;
} */
.inner_themes .text_wrap.text_wrap-active .copy,
.inner_themes .text_wrap.text_wrap-active .text_content {
  opacity: 1;
/*   pointer-events: initial; */
  transition: all 1.8s;
  filter: blur(0px);
}
.inner_themes .link_blk .link_button {
  font-size: 16px;
  color: #fff;

  height: auto;
  width: fit-content;
  display: grid;
  place-content: center;
  transition: all 0.3s;
  margin-top: 70px;
  padding: 6px 62px;
  position: relative;
}
.inner_themes .link_blk .link_button.comingsoon {
  border: solid 1px rgba(255, 255, 255, 1);
  background-color: rgba(0,0,0,0.5);
}
.inner_themes .link_blk .link_button.is-active {
  padding: initial;
}
.inner_themes .text_wrap .text_content .link_blk p.link_button {
  font-size: 19px;
  letter-spacing: 0;
  width: 352.633px;
  display: block;
  position: relative;
  padding: 6px 0;
  text-align: center;
}
.inner_themes .link_blk .link_button.comingsoon {
  pointer-events: none;
}
.inner_themes .link_blk .link_button:hover {
  opacity: 0.85;
}
.inner_themes.inner_theme01 .link_blk .link_button,
.inner_themes.inner_theme02 .link_blk .link_button {
  margin-top: 66px;
  width: 350px;
  height: 60px;
}
.inner_themes.inner_themes .link_blk .link_button.main_btn_area,
.inner_themes.inner_themes .link_blk .link_button.limited .main_btn_area {
  text-align: center;
  align-items: center;
  font-size: 19px;
}
.inner_themes.inner_themes .link_blk .link_button.main_btn_area {
  color: #000;
  background: #E8E8E8;
  background: linear-gradient(90deg, rgba(232, 232, 232, 1) 0%, rgba(157, 157, 157, 1) 100%);
}
.inner_themes.inner_themes .link_blk .link_button.limited .main_btn_area {
  background: #EBCD99;
  background: linear-gradient(90deg, rgba(235, 205, 153, 1) 0%, rgba(150, 117, 56, 1) 100%);
  width: 350px;
  height: 60px;
  display: grid;
  position: relative;
}
.inner_themes.inner_themes .link_blk .link_button.limited .limited_btn_area {
  background-color: #453009;
  display: grid;
  place-content: center;
}
.inner_themes.inner_themes .link_blk .link_button.limited .limited_btn_area p {
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: 8px 0;
  line-height: 1;
}
.inner_themes.inner_theme03 .link_blk .link_button {
  margin-top: 53px;
}
.inner_themes.inner_theme04 .link_blk .link_button {
  margin-top: 53px;
}

.inner_themes.inner_themes .link_blk .link_button.is-active .text,
.inner_themes.inner_themes .link_blk .link_button.limited .text {
  display: inline-block;
}
.inner_themes.inner_themes .link_blk .link_button.limited .text {
  color: #000;
  font-size: 19px;
}
.inner_themes.inner_themes .link_blk .link_button.is-active .arrow, 
.inner_themes.inner_themes .link_blk .link_button.limited .arrow{
  display: block;
  vertical-align: middle;
  color: #000;
  line-height: 1;
  position: relative;
  width: 11.313px;
  height: 11.313px;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 17px;
  bottom: 50%;
  top: 50%;
}

.inner_themes.inner_themes .link_blk .link_button.is-active .arrow::before,
.inner_themes.inner_themes .link_blk .link_button.is-active .arrow::after, 
.inner_themes.inner_themes .link_blk .link_button.limited .arrow::before,
.inner_themes.inner_themes .link_blk .link_button.limited .arrow::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.inner_themes.inner_themes .link_blk .link_button.is-active .arrow::before,
.inner_themes.inner_themes .link_blk .link_button.limited .arrow::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}

.inner_themes.inner_themes .link_blk .link_button.is-active .arrow::after,
.inner_themes.inner_themes .link_blk .link_button.limited .arrow::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}


@media all and (max-width: 750px) {
  .inner_themes .text_wrap {
    display: block;
    place-content: initial;
  }
  .inner_themes .text_wrap .color_mask.is-sp-active {
    opacity: 1;
  }
  .inner_themes .text_wrap .copy {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    position: absolute;
  }
  .inner_themes .text_wrap .text_content {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    position: absolute;
    grid-column: initial;
    grid-row: initial;
  }
  .inner_themes.clickable {
    pointer-events: none;
  }
  .inner_themes.clickable .text_content {
    pointer-events: initial;
  }
  .inner_themes .text_wrap.sp-body-active .text_content {
    opacity: 1;
    pointer-events: initial;
/*     transition: all 1.8s; */
    filter: blur(0px);
  }
  .inner_themes .text_wrap .copy  {
    width: 100%;
    margin: 0 auto;
    display: block;
    place-content: center;
    display: flex;
    align-items: center;
  }
  .inner_themes .text_wrap .copy.sp-copy-active {
    opacity: 1;
/*     transition: all 1.8s; */
    filter: blur(0px);
    pointer-events: initial;
  }
  .inner_themes .text_wrap.sp-body-active .copy.sp-copy-active {
    opacity: 0;
    transition: all 1.8s;
  }
  .inner_themes .text_wrap .copy p {
    width: 100%;
    position: relative;
    height: fit-content;
  }
  .inner_themes .text_wrap .copy img {
    width: 28.667%;
    display: block;
    scale: initial;
    object-fit: initial;
    margin: 0 auto;
  }

  .inner_themes.scene02-active .text_wrap .text_content {
    opacity: 0;
  }
  
  .inner_themes.scene02-active .text_wrap .copy,
  .inner_themes.body-copy-active .text_wrap .text_content {
    opacity: 1;
    pointer-events: initial;
    transition: all 1.8s;
    filter: blur(0px);
  }
  .inner_themes.body-copy-active .text_wrap .copy {
    opacity: 0;
  }

  .kv-wrap .caption,
  .inner_themes .text_wrap .caption {
    bottom: 1vw;
    transition: bottom 0.3s;
    right: 1.333vw;
    bottom: 0.667vw;
  }
  .fixed_cv_view .kv-wrap .caption,
  .fixed_cv_view .inner_themes .text_wrap .caption {
    bottom: 13vw;
    transition: bottom 0.3s;
  }
  
  .pinEnd.fixed_cv_view .kv-wrap .caption,
  .pinEnd.fixed_cv_view .inner_themes .text_wrap .caption {
    bottom: 1vw;
  }
  .inner_themes .text_wrap.text_wrap-active .color_mask {
    opacity: 0;
    transition: all 0.5s;
  }
  .inner_themes .text_wrap .color_mask.sp-copy-active {
    opacity: 1;
    transition: all 0.5s;
  }
  
  .inner_themes .text_wrap .text_content .link_blk p.link_button {
    font-size: calc(24 / var(--media_sp) * 100vw);
    letter-spacing: 0.1em;
  }
  .inner_themes.inner_themes .link_blk .link_button.main_btn_area,
  .inner_themes.inner_themes .link_blk .link_button.limited .main_btn_area {
    font-size: calc(24 / var(--media_sp) * 100vw);
    pointer-events: none;
  }
  .inner_themes.inner_themes .link_blk .link_button.main_btn_area {
  }
  .inner_themes.inner_themes.spBtnVisible .link_blk .link_button.main_btn_area,
  .inner_themes.inner_themes.spBtnVisible .link_blk .link_button.limited .main_btn_area {
    pointer-events: initial;
  }
  
  .inner_themes.inner_themes .link_blk .link_button.limited .text {
    font-size: calc(24 / var(--media_sp) * 100vw);
  }
  .inner_themes.inner_themes .link_blk .link_button.limited .main_btn_area {
    width: calc(400 / var(--media_sp) * 100vw);
    height: calc(80 / var(--media_sp) * 100vw);
  }
  .inner_themes.inner_themes .link_blk .link_button.limited .limited_btn_area p {
    font-size: calc(20 / var(--media_sp) * 100vw);
    padding: 1vw 0;
    line-height: 1;
  }
  
  .inner_themes.inner_theme02 .link_blk .link_button {
    margin-top: 12vw;
    width: calc(400 / var(--media_sp) * 100vw);
    height: calc(80 / var(--media_sp) * 100vw);
  }
  .inner_themes.inner_theme03 .link_blk .link_button {
    margin-top: 9vw;
  }
  .inner_themes.inner_theme04 .link_blk .link_button {
    margin-top: 10vw;
  }
  

  
  .inner_themes.inner_themes .link_blk .link_button.is-active .arrow, 
  .inner_themes.inner_themes .link_blk .link_button.limited .arrow{
    width: calc(11.313 / var(--media_sp) * 100vw);
    height: calc(11.313 / var(--media_sp) * 100vw);
    right: 3vw;
  }
  .inner_themes.inner_themes .link_blk .link_button.is-active .arrow::before,
  .inner_themes.inner_themes .link_blk .link_button.limited .arrow::before {
    height: 0.08em;
  }
  .inner_themes.inner_themes .link_blk .link_button.is-active .arrow::after,
  .inner_themes.inner_themes .link_blk .link_button.limited .arrow::after {
    width: 0.08em;
  }
}



:root {
  --text_box_offset_pc: 50px;
}
.inner_themes .text_wrap .text_content p {
  letter-spacing: 0.2em;
  font-size: 16px;
  line-height: 2.5;
  position: relative;
}
.inner_theme01 .text_content .accessInfo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 60px;
}
.inner_theme01 .text_wrap .text_content .line {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.inner_theme01 .text_wrap .text_content .time {
  font-size: 27px;
  line-height: 1;
  letter-spacing: 0.11em;
}
.inner_theme01 .copy {
  position: relative;
/*! top: -130px; */
  margin-top: calc(-259px - var(--text_box_offset_pc));
  left: -28px;
}
.inner_theme01 .text_content {
  position: relative;
/*! top: 51px; */
  margin-top: calc(95px - var(--text_box_offset_pc));
/*   margin-top: 95px; */
  left: 27px;
}
.inner_theme02 .text_wrap .text_content .detailed_location {
  margin-top: 58px;
}
.inner_theme02 .copy {
  position: relative;
  /*! top: -112px; */
  left: 15px; 
  margin-top: calc(-192px - var(--text_box_offset_pc));
}
.inner_theme02 .text_content {
  position: relative;
  /*! top: 67px; */
  left: -17px;
  margin-top: calc(163px - var(--text_box_offset_pc));
}
.inner_theme03 .text_wrap .text_content .building_scale {
  margin-top: 39px;
}
.inner_theme03 .copy {
  position: relative;
  /*! top: -63px; */
  left: -2px;
  margin-top: calc(-118px - var(--text_box_offset_pc));
}
.inner_theme03 .text_content {
  position: relative;
  /*! top: 75px; */
  left: 1px;
  margin-top: calc(145px - var(--text_box_offset_pc));
}
.inner_theme04 .text_wrap .text_content .size {
  margin-top: 32px;
}
.inner_theme04 .text_wrap .text_content .size span.pc {
  display: inline;
}
.inner_theme04 .copy {
  position: relative;
  /*! top: -97px; */
  left: -29px;
  margin-top: calc(-194px - var(--text_box_offset_pc));
}
.inner_theme04 .text_content {
  position: relative;
  /*! top: 84px; */
  left: 29px;
  margin-top: calc(166px - var(--text_box_offset_pc));
}
.inner_theme02 .text_wrap .text_content .detailed_location p .smallChar {
  font-size: 16px;
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}
.inner_theme02 .text_wrap .text_content .detailed_location p {
  line-height: 1;
}
.inner_theme02 .text_wrap .text_content .detailed_location p,
.inner_theme03 .text_wrap .text_content .building_scale p,
.inner_theme04 .text_wrap .text_content .size p {
  font-size: 27px;
  letter-spacing: 0.1em;
}
.inner_theme04 .size .smallChar {
  font-size: 15px;
}
@media all and (max-width: 750px) {
  .inner_theme04 .text_wrap .text_content .size span.pc {
    display: none;
  }
  .inner_theme02 .text_wrap .text_content .detailed_location p,
  .inner_theme03 .text_wrap .text_content .building_scale p,
  .inner_theme04 .text_wrap .text_content .size p {
    font-size: calc(32 / var(--media_sp) * 100vw);
    letter-spacing: 0.1em;
  }
  .inner_themes .text_wrap .text_content p {
    letter-spacing: 0.2em;
    font-size: calc(24 / var(--media_sp) * 100vw);
    line-height: 2.333;  
  }
  .inner_themes .link_blk .link_button {
    width: calc(400 / var(--media_sp) * 100vw);
    margin-top: 12vw;
    height:  calc(80 / var(--media_sp) * 100vw);
    font-size: calc(24 / var(--media_sp) * 100vw);
    z-index: 1;
    position: relative;
    padding: 0;
    /*! pointer-events: none; */
  }
  .inner_themes .link_blk .link_button.limited {
    height: initial;
    width: fit-content;
    margin-top: 10vw;
    pointer-events: none;
  }
  .inner_theme01 .text_content .accessInfo {
    display: block;
    margin-top: 4.6vw;
  }
  .inner_theme01 .text_content .accessInfo .accesInfoBlk {
    display: inline-block;
  }
  .inner_theme01 .text_content .accessInfo .accesInfoBlk:first-child {
    margin-right: 2.5vw;
  }
  .inner_theme01 .text_wrap .text_content .line {
    font-size: calc(20 / var(--media_sp) * 100vw);
    line-height: 1;
    letter-spacing: 0.1em;
    margin-bottom: 1vw;
  }
  .inner_theme01 .text_wrap .text_content .time {
    font-size: calc(32 / var(--media_sp) * 100vw);
    line-height: 1;
    letter-spacing: 0.11em;
  }
  .inner_theme01 .text_content .accessInfo > * + * {
    margin-top: 5.8vw;
  }
  .inner_theme04 .text_wrap .text_content .size p {
    line-height: 1.8125;
  }

  .inner_theme01 .copy {
    top: initial;
    left: initial;
    margin-top: initial;
  }
  .inner_theme01 .text_content {
    top: initial;
    left: initial; 
    margin-top: initial;
  }
  .inner_theme02 .text_wrap .text_content .detailed_location {
    margin-top: 9.9vw;
  }
  .inner_theme02 .copy {
    top: initial;
    left: initial;
    margin-top: initial;
  }
  .inner_theme02 .text_content {
    top: initial;
    left: initial;
    margin-top: initial;
  }
  .inner_theme02 .text_wrap .text_content .detailed_location p .smallChar {
    font-size: calc(24 / var(--media_sp) * 100vw);
    margin-bottom: 2vw;
  }
  .inner_theme03 .text_wrap .text_content .building_scale {
    top: initial;
    left: initial;
    margin-top: 5vw;
  }
  .inner_theme03 .copy {
    top: initial;
    left: initial;
    margin-top: initial;
  }
  .inner_theme03 .text_content {
    top: initial;
    left: initial;
    margin-top: initial;
  }
  .inner_theme04 .text_wrap .text_content .size {
    margin-top: 8vw;
  }
  .inner_theme04 .copy {
    top: initial;
    left: initial;
    margin-top: initial;
  }
  .inner_theme04 .text_content {
    top: initial;
    left: initial;
    margin-top: initial;
  }
}
.no-transition .kv-wrap .scroll_kvscene02.scene02-active,
.no-transition .copy,
.no-transition .text_content,
.no-transition .inner_themes,
.no-transition .kv-wrap,
.no-transition .inner_themes .text_wrap .color_mask {
  /* transition: none !important; */
}
.inner_themes.inner_theme04.end-crossed,
.inner_themes.inner_theme04.end-crossed .text_wrap .color_mask,
.inner_themes.inner_theme04.end-crossed .text_wrap .copy,
.inner_themes.inner_theme04.end-crossed .text_wrap .text_content {
  /* opacity: 1 !important; */
}


.ending {
  display: block;
  text-align: center;
  background-image: url(../img/top/ending_bg_pc.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 151px;
  padding-bottom: 106px;
  z-index: 2;
  position: relative;
}
.ending .images .copy {
  width: 34.5px;
  margin: 0 auto 89px;
}
.ending .images .logo {
  margin-bottom: 54px;
}
.ending .images .copy img {
  width: 34.5px;
  margin: 0 auto;
}
.ending .images .logo img {
/*   width: 657px; */
  width: 360px;
}
.ending .images .facade {
  margin-bottom: 114px;
}
.ending .images .facade img {
  width: 540px;
}
.ending .cta p {
  font-size: 27px;
  color: #1c1c1c;
}
.ending .accessInfo {
  display: flex;
  margin: 0 auto 38px;
  gap: 38px;
  width: fit-content;
}
.ending .accessInfo .line {
  font-size: 16px;
  text-align: left;
}
.ending .other {
  display: flex;
  gap: 38px;
  width: fit-content;
  margin: 0 auto 86px;
}
.ending .other .cta_content {
  position: relative;
}
.ending .other .cta_content p {
  display: inline-block;
  /*! position: relative; */
  width: fit-content;
}
.ending .other .smallChar {
  position: absolute;
  font-size: 12px;
  bottom: -13px;
  width: fit-content;
  right: 0;
}
@media all and (max-width: 750px) {
  .ending {
    background-image: url(../img/top/ending_bg_sp.jpg);
    padding-top: 18.5vw;
    padding-bottom: 5.8vw;
  }
  .ending .images .copy {
    width: 5.4%;
    margin: 0 auto 14.3vw;
  }
  .ending .images .logo {
    margin-bottom: 14.4vw;
  }
  .ending .images .copy img {
    width: 100%;
    margin: 0 auto;
  }
  .ending .images .logo img {
    width: calc(462 / var(--media_sp) * 100vw);
  }
  .ending .images .facade {
    margin-bottom: 12.2vw;
  }
  .ending .images .facade img {
    width: 81%;
  }
  .ending .cta p {
    font-size: calc(36 / var(--media_sp) * 100vw);
  }
  .ending .accessInfo {
    display: flex;
    margin: 0 auto 6vw;
    gap: 6vw;
  }
  .ending .accessInfo .line {
    font-size: calc(22 / var(--media_sp) * 100vw);
    text-align: left;
  }
  .ending .other {
    display: block;
    width: fit-content;
    margin: 0 auto 14vw;
  }
  .ending .other > * + * {
    margin-top: 6vw;
  }
  .ending .other .cta_content {
    position: relative;
  }
  .ending .other .cta_content p {
    display: inline-block;
    width: fit-content;
    text-align: center;
  }
  .ending .other .smallChar {
    position: relative;
    font-size: calc(20 / var(--media_sp) * 100vw);
    bottom: initial;
    width: fit-content;
    right: initial;
    display: block;
    text-align: center;
    width: 100%;
  }
}

.ending .cv_block {
  height: auto;
  display: block;
  margin-bottom: 86px;
}
.ending .cv_block .text-wrap {
  margin-bottom: 42px;
}
.ending .cv_block .title p {
  font-size: 35px;
  letter-spacing: 0.2em;
  line-height: 1.5em;
}
.ending .cv_block .title .small-char {
  font-size: 27px;
  margin-top: 16px;
  display: block;
}
.ending .cv_block .title {
  margin-bottom: 23px;
  display: block;
  font-size: 35px;
  letter-spacing: 0.2em;
}
.ending .cv_block .text{
  font-size: 16px;
  letter-spacing: 0.2em;
  line-height: 2;
}
.ending .cv_block .btns_wrap {
  display: flex;
  gap: 20px;
  justify-content: space-around;
  width: fit-content;
  margin: 0 auto;
}
.ending .cv_block a {
  font-size: 18px;
  width: fit-content;
  margin: 0 auto;
  padding: 30px;
  /*! transition: all 0.8s; */
  display: block;
  min-width: 450px;
  
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 450px;
}
@media all and (max-width: 1040px) {
  .ending .cv_block .btns_wrap {
    display: block;
    width: 89.666%;
  }
  .ending .cv_block  a.entry_btn {
    margin-bottom: 3vw;
  }
}
@media all and (max-width: 750px) {
  .ending .cv_block {
    margin-bottom: 13.8vw;
  }
  .ending .cv_block .title p {
    font-size: calc(48 / var(--media_sp) * 100vw);
    letter-spacing: 0.27em;
  }
  .ending .cv_block .title {
    margin-bottom: 3.9vw;
    font-size: calc(24 * 2 / var(--media_sp) * 100vw);
  }
  .ending .cv_block .title .small-char {
    font-size: calc(18 * 2 / var(--media_sp) * 100vw);
    margin-top: 2vw;
    display: block;
  }
  .ending .cv_block .text {
    font-size: calc(12 * 2 / var(--media_sp) * 100vw);
    line-height: calc(20/12);
  }
  .ending .cv_block  a {
    font-size: calc(24 / var(--media_sp) * 100vw);
    padding: 3.6vw 16.2vw;
    min-width: 100%;
    width: 100%;
    box-sizing: initial;
    padding: 4vw 0;
    display: flex;
    align-items: center;
    justify-content: center;
  } 
  .ending .cv_block .text-wrap {
    margin-bottom: 6vw;
  }
}
/* 
.footer_slide .caption sup.countNumberTopLinkCaption1 {
  display: inline;
} */

.loadingTextWrap {
  display: flex;
  place-content: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.loadingTextWrap p {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  
  font-size: 20px;
  letter-spacing: 0.22em;
  margin-right: 17px;
  display: inline-block;
  text-align: right;
}
.loadingTextWrap .line {
  width: 90px;
  height: 1px;
  background-color: #b6b6b6;
  display: block;
  position: relative;
  top: 3px;
}
#progressBarWrap {
  color: #fff;
}
#progressBarWrap svg {
  display: none;
  visibility: hidden;
  width: 0 !important;
  position: absolute;
}

#progressBarWrap .progressbar-text {
  margin-left: 10px;
  position: relative;
  top: 2px;
  width: 80px;
  display: inline-block;
}
@media all and (max-width: 750px) {
  .loadingTextWrap p {
    font-size: calc(26 / var(--media_sp) * 100vw);
    margin-right: 2.7vw;
  }
  .loadingTextWrap .line {
    width: calc(116 / var(--media_sp) * 100vw);
    height: 1px;
    top: 0.3vw;
  }
  #progressBarWrap .progressbar-text {
    margin-left: 2vw;
    top: 0.4vw;
    width: 13vw;
  }
}


.remodal-overlay {
  background: rgba(0,0,0,0.9);
}
.remodal {
  padding: 2px;
  max-width: initial;
  width: 100%;
  height: 500px;
  aspect-ratio: 16/9;
  max-width: 880px;
  box-sizing: content-box;
  margin-bottom: 0;
}
@media all and (max-width: 900px) {
  .remodal {
    width: 100%;
    height: 55.556vw;
  }
}
.remodal-close::before {
  font-family: none;
  font-size: initial;
  line-height: initial;
  width: 100%;
  height: 100%;
  font-size: 0;
  background-image: url("../img/common/modal_close_cross.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  top: -96px;

}
.remodal-close {
  top: 0;
  left: initial;
  right: 0;
  width: 54px;
  height: 54px;
}
.remodalYtWrap {
  width: 100%;
  height: 100%;
}
@media all and (max-width: 750px) {
  .remodal {
    width: 89.6vw;
  }
  .remodal-close::before {
    top: -12.8vw;
  }
  .remodal-close {
    width: 7.2vw;
    height: 7.2vw;
  }
  .remodal-wrapper {
    padding: 0;
  }
}
.remodal-wrapper.remodal-is-opened {
/*   display: grid!important;
  place-content: center; */
  display: flex!important;
  justify-content: center;
align-items: center;
}