@charset "UTF-8";
/*
html {
  &.no-scroll {
    overflow: hidden;
    body {
      overflow: hidden;
    }
  }
}
  */
.page_wrapp {
  overflow: clip;
}

.page_wrapp {
  position: relative;
  background: #fff;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .page_wrapp {
    padding-bottom: 60px;
  }
}

.footer {
  position: relative;
  background-color: #fff;
}

header {
  transform: translateY(-80px);
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}

header.onscl {
  transform: translateY(0px);
}

#top-mv {
  position: relative;
  left: 0;
  top: 0px;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #fff;
  color: #000;
}
#top-mv.is-modal {
  opacity: 1;
  visibility: visible;
}
#top-mv video {
  width: 100%;
  height: auto;
  /*object-fit: cover;
  object-position: center top;*/
  vertical-align: middle;
}

/**
.cv-area__wrap {
  position: relative;
  z-index: 1;
}
.cv-area {
  position: relative;
  width: 90%;
  max-width: 930px;
  margin: auto;
  padding: 30px 0 0;
  .cv-box {
    position: relative;
  }
  .cv-btn {
    position: absolute;
    bottom: min(2.25vw, 30px);
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    max-width: 480px;
    margin: auto;
    transition:
      opacity 0.8s ease,
      filter 0.8s ease;
    img {
      transition: filter 0.8s ease;
    }
    &:hover {
      opacity: 0.9;
      filter: brightness(1.5);
      img {
        filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
      }
    }
  }
  @media screen and (max-width: 768px) {
    width: 100%;
    padding: 30px 7.5%;
    .cv-btn {
      position: absolute;
      bottom: 3.75vw;
      width: 85%;
      max-width: inherit;
      margin: auto;
    }
  }
}
.cv-area__bottom {
  padding: 50px 0 100px;
  @media screen and (max-width: 768px) {
    padding: 20px 0 20px;
  }
}
**/
/***スキップボタン***/
.top_mv .btn_skip {
  position: absolute;
  right: 75px;
  top: 15px;
  font-size: 16px;
  padding: 5px 8px;
  background: #000;
  color: #ccc;
  cursor: pointer;
  z-index: 5;
  transition: 0.6s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .top_mv .btn_skip {
    right: 75px;
  }
}

.top_mv .btn_skip a {
  color: #fff;
}

.top_mv .btn_skip:hover {
  opacity: 0.7;
}

#top.is-scr .btn_skip {
  opacity: 0;
  pointer-events: none;
}

#top.is-scr .btn {
  opacity: 0;
  pointer-events: none;
}

/***リプレイボタン***/
.btn_rep {
  position: absolute;
  top: 15px;
  right: 5px;
  z-index: 5;
  font-size: 16px;
  padding: 5px 8px;
  background: #000;
  color: #ccc;
  cursor: pointer;
  transition: 0.6s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .btn_rep {
    right: 5px;
  }
}

#top.is-scr .btn_rep {
  opacity: 1;
  pointer-events: inherit;
}

/***音有り無しボタン***/
.btn {
  position: absolute;
  top: 15px;
  right: 5px;
  z-index: 5;
}
.btn:hover {
  transition: 0.6s;
  opacity: 0.7;
}

.btn.is-fix {
  opacity: 0;
  pointer-events: none;
}

.btn .video_button {
  background-color: #000000;
  color: #fff;
  cursor: pointer;
  width: 65px;
  aspect-ratio: 397/252;
  background-image: url(../images/top/sound_bt_off.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-size: 90%;
  background-position: 50% 15%;
  border-radius: 10%;
}
@media screen and (max-width: 768px) {
  .btn .video_button {
    width: 65px;
    aspect-ratio: 397/252;
  }
}

.btn .video_button.is-sound-off {
  background-image: url(../images/top/sound_bt_off.svg);
}

.btn .video_button.is-sound-on {
  background-image: url(../images/top/sound_bt_on.svg);
}

/***PC用****/
.fix_pc_image {
  width: 100%;
  display: block;
  opacity: 0;
  transition: 0.6s;
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
}
.fix_pc_image img {
  width: 100%;
  max-width: inherit;
}

#top.is-scr .fix_pc_image {
  opacity: 1;
}

.fix_sp_image {
  width: 100%;
  position: relative;
  display: none;
}
.fix_sp_image img {
  width: 100%;
  max-width: inherit;
}

.fix_image_cap {
  position: absolute;
  bottom: 5px;
  right: 5px;
  z-index: 2;
  text-align: right;
  font-size: 11px;
  color: #fff;
  text-shadow: 0 0 2px rgb(0, 0, 0), 0 0 4px rgb(0, 0, 0), 0 0 8px rgb(0, 0, 0);
}
@media screen and (max-width: 768px) {
  .fix_image_cap {
    font-size: min(2vw, 11px);
    left: 5px;
    right: auto;
    text-align: left;
  }
}

/***スマホ用****/
@media screen and (max-width: 768px) {
  #top-mv {
    overflow: hidden;
    transition: height 0.45s ease;
  }
  .fix_pc_image {
    display: none;
  }
  #top #top-mv video {
    transition: 0.45s ease;
  }
  #top.is-scr #top-mv video {
    opacity: 0;
  }
  .fix_sp_image {
    display: block;
    opacity: 0;
    transition: 0.6s;
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
  }
  #top.is-scr .fix_sp_image {
    opacity: 1;
  }
}
.intro {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100vw;
  padding: 150px 0 0px;
}
.intro .intro_text-area {
  position: relative;
  z-index: 2;
}
.intro .intro_text01 {
  width: 90%;
  max-width: 930px;
  margin: 0 auto 55px;
}
.intro .intro_text02 {
  width: 90%;
  max-width: 800px;
  margin: 0 auto 25px;
}
.intro .intro_text03 {
  position: relative;
  width: 90%;
  max-width: 542px;
  aspect-ratio: 542/43;
  margin: 0 auto 35px;
  mask-image: url("../images/top/intro_txt03.svg");
}
.intro .intro_text03 .txt_bg {
  left: -200%;
  width: 200%;
}
.intro .intro_text03 .txt_bg.set {
  animation: none;
  left: 0px;
  opacity: 1;
}
.intro .intro_text03.on .txt_bg {
  animation: 7.5s ease-out 0s 1 forwards text-loop-top;
}
.intro .intro_text03.on .txt_bg.set {
  animation: none;
  left: 0px;
  opacity: 1;
}
@keyframes text-loop-top {
  0% {
    opacity: 0;
    left: -200%;
  }
  20% {
    opacity: 1;
  }
  70% {
    left: 0;
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .intro {
    width: 100%;
    min-height: inherit;
    padding: calc(20vw + 15px) 0 calc(5vw + 5px);
  }
  .intro .intro_text01 {
    width: 100%;
    margin: 0 auto 40px;
  }
  .intro .intro_text02 {
    width: 84%;
    margin: 0 auto 25px;
  }
  .intro .intro_text03 {
    width: 90%;
    margin: 0 auto 30px;
  }
}

/*********コンセプト部分**********/
.top_concept_wrapp {
  width: 90%;
  max-width: 780px;
  padding: 20px 20px 0;
  margin: 60px auto 20vw;
  /*border: 1px solid #ccc;*/
  position: relative;
}
@media screen and (max-width: 768px) {
  .top_concept_wrapp {
    width: 96%;
    margin: 60px auto 50px;
  }
}
.top_concept_wrapp .bc_item {
  position: absolute;
  width: 195px;
  aspect-ratio: 255/205;
  left: -100px;
  top: -48%;
  background: url(../images/top/redevelopment_bg02.webp) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .top_concept_wrapp .bc_item {
    position: absolute;
    position: absolute;
    width: 35%;
    left: -15%;
    top: -30%;
  }
}
.top_concept_wrapp .area_text_head .txt_bg {
  background: linear-gradient(76deg, rgb(0, 60, 128) 0%, rgb(0, 105, 191) 12%, rgb(78, 178, 134) 24%, rgb(255, 104, 148) 36%, rgb(255, 182, 193) 48%, rgb(255, 233, 133) 60%, rgb(255, 182, 193) 69%, rgb(255, 104, 148) 78%, rgb(0, 105, 191) 87%, rgb(78, 178, 134) 94%, rgb(0, 60, 128) 100%);
}
.top_concept_wrapp .area_text_head .area_ttl {
  margin: 0 auto 60px;
  width: 100%;
  max-width: 610px;
  aspect-ratio: 333/95;
  -webkit-mask-image: url(../images/top/concept_ttl01_2.svg);
  mask-image: url(../images/top/concept_ttl01_2.svg);
}
@media screen and (max-width: 768px) {
  .top_concept_wrapp .area_text_head .area_ttl {
    width: 100%;
    max-width: inherit;
    aspect-ratio: 666/189;
    -webkit-mask-image: url(../images/top/concept_ttl01_2_sp.svg);
    mask-image: url(../images/top/concept_ttl01_2_sp.svg);
  }
}
.top_concept_wrapp .area_text_head .area_lead {
  margin-bottom: 30px;
  padding-left: 0.15em;
  font-size: 24px;
  font-family: var(--f-en);
  letter-spacing: 0.3em;
  font-weight: 500;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.5), 0 0 8px rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px) {
  .top_concept_wrapp .area_text_head {
    order: 1;
  }
  .top_concept_wrapp .area_text_head .area_lead {
    margin-bottom: 18px;
    padding-left: 0;
    font-size: 18px;
    letter-spacing: 0.25em;
  }
}
@media screen and (min-width: 769px) and (max-height: 1000px) {
  .top_concept_wrapp .area_text_head .area_lead {
    margin-bottom: min(1.5vh, 30px);
  }
}
.top_concept_wrapp .concept_title {
  margin: 0 auto 30px;
  width: 90%;
  max-width: 500px;
}
.top_concept_wrapp .viewmore a {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
  min-width: 300px;
  padding: 0.8em 50px 0.8em;
  border-radius: 99em;
  background: #000;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
  transition: 0.5s;
}
@media screen and (min-width: 769px) and (max-height: 1000px) {
  .top_concept_wrapp .viewmore a {
    padding: clamp(0.2em, 1.5vh, 0.8em) 50px clamp(0.2em, 1.5vh, 0.8em);
  }
}
.top_concept_wrapp .viewmore a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; /* 初期位置：ボタンの左側で見えない場所 */
  width: 200%;
  height: 100%;
  background-image: url(../images/top/brn_gradient.webp);
  background-size: 100% auto;
  background-position: left 30%;
  background-repeat: repeat-x;
  z-index: -1; /* テキストの下に配置 */
}
.top_concept_wrapp .viewmore a:hover {
  opacity: 0.8;
  filter: brightness(1.15);
}
.top_concept_wrapp .viewmore a {
  /* .onクラスが付いたときにアニメーションを開始 */
}
.top_concept_wrapp .viewmore a .viewmore:not(.commingsoon).on a::before {
  animation: button-bg-slide 2.5s ease-in-out forwards;
}
.top_concept_wrapp .viewmore a {
  /* アニメーションの定義 */
}
@keyframes button-bg-slide {
  from {
    left: -100%; /* スタート位置 */
  }
  to {
    left: 0; /* ゴール位置 */
  }
}
@media screen and (max-width: 768px) {
  .top_concept_wrapp .viewmore a {
    display: inline-block;
    min-width: 56.2857142857vw;
    padding: 0.8em 30px 0.8em;
    font-size: 17px;
  }
}

.sc_main {
  /*opacity: 0;*/
  /*visibility: hidden;*/
  width: 100%;
  z-index: 3;
  position: relative;
  /*overflow: hidden;*/
  transition: opacity 2s ease-in-out;
}
.sc_main.is-start {
  opacity: 1;
  visibility: visible;
}

.vertical-slider__wrap {
  width: fit-content;
  height: 100vh;
  display: flex;
  flex-wrap: nowrap;
  gap: 250px;
}
@media screen and (max-width: 768px) {
  .vertical-slider__wrap {
    display: block;
    height: auto;
    gap: 0;
  }
}

.vertical-area {
  position: relative;
  width: 800px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.vertical-area .inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.vertical-area:nth-of-type(even) .area_block {
  flex-direction: column-reverse;
}
.vertical-area:nth-of-type(even) .area_block:has(.area_images figcaption) {
  gap: 10px;
}
.vertical-area:nth-of-type(even) .area_block .area_text_bottom {
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .vertical-area {
    display: block;
    width: 100%;
    height: auto;
    padding-top: 60px;
  }
  .vertical-area + .vertical-area {
    padding-top: 120px;
  }
  .vertical-area:nth-of-type(even) .area_block {
    flex-direction: column;
  }
  .vertical-area:nth-of-type(even) .area_block:has(.area_images figcaption) {
    gap: 0;
  }
}

.area_block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 45px;
  width: 800px;
  margin: auto;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .area_block {
    align-items: center;
    text-align: center;
    gap: 0;
    width: 100%;
    height: auto;
    padding-top: 0;
  }
}
@media screen and (min-width: 769px) and (max-height: 1000px) {
  .area_block {
    gap: min(2vh, 45px);
    padding-top: 40px;
  }
}
.area_block .area_text_wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .area_block .area_text_wrap {
    display: contents;
  }
}
@media screen and (min-width: 769px) and (max-height: 1000px) {
  .area_block .area_text_wrap {
    gap: min(2vh, 40px);
  }
}
.area_block figure figcaption {
  text-align: right;
  margin-top: 5px;
  font-size: 10px;
  line-height: 1.5;
  text-shadow: 0 0 2px rgb(255, 255, 255), 0 0 4px rgb(255, 255, 255);
}
.area_block .area_text_head .area_lead {
  margin-bottom: 30px;
  padding-left: 0.15em;
  font-size: 24px;
  font-family: var(--f-en);
  letter-spacing: 0.3em;
  font-weight: 500;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.5), 0 0 8px rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px) {
  .area_block .area_text_head {
    order: 1;
  }
  .area_block .area_text_head .area_lead {
    margin-bottom: 18px;
    padding-left: 0;
    font-size: 18px;
    letter-spacing: 0.25em;
  }
}
@media screen and (min-width: 769px) and (max-height: 1000px) {
  .area_block .area_text_head .area_lead {
    margin-bottom: min(1.5vh, 30px);
    text-align: center;
  }
}
.area_block .area_text_bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4%;
}
.area_block .area_text_bottom .area_text {
  flex: 1;
  text-align: center;
}
.area_block .area_text_bottom .area_text p:not(.viewmore) {
  margin-bottom: 25px;
  font-size: 14.5px;
  line-height: 2.5;
  letter-spacing: 0.05em;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 0 0 2px rgb(255, 255, 255), 0 0 4px rgb(255, 255, 255), 0 0 8px rgb(255, 255, 255);
}
@media screen and (min-width: 769px) and (max-height: 1000px) {
  .area_block .area_text_bottom .area_text p:not(.viewmore) {
    margin-bottom: min(1.75vh, 25px);
    line-height: 2;
  }
}
.area_block .area_text_bottom .area_text .viewmore a {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
  min-width: 300px;
  padding: 0.8em 50px 0.8em;
  border-radius: 99em;
  background: #000;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
  transition: 0.5s;
}
@media screen and (min-width: 769px) and (max-height: 1000px) {
  .area_block .area_text_bottom .area_text .viewmore a {
    padding: clamp(0.2em, 1.5vh, 0.8em) 50px clamp(0.2em, 1.5vh, 0.8em);
  }
}
.area_block .area_text_bottom .area_text .viewmore a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; /* 初期位置：ボタンの左側で見えない場所 */
  width: 200%;
  height: 100%;
  background-image: url(../images/top/brn_gradient.webp);
  background-size: 100% auto;
  background-position: left 30%;
  background-repeat: repeat-x;
  z-index: -1; /* テキストの下に配置 */
}
.area_block .area_text_bottom .area_text .viewmore a:hover {
  opacity: 0.8;
  filter: brightness(1.15);
}
.area_block .area_text_bottom .area_text {
  /* .onクラスが付いたときにアニメーションを開始 */
}
.area_block .area_text_bottom .area_text .viewmore:not(.commingsoon).on a::before {
  animation: button-bg-slide 2.5s ease-in-out forwards;
}
.area_block .area_text_bottom .area_text {
  /* アニメーションの定義 */
}
@keyframes button-bg-slide {
  from {
    left: -100%; /* スタート位置 */
  }
  to {
    left: 0; /* ゴール位置 */
  }
}
.area_block .area_text_bottom .area_text .viewmore.commingsoon a {
  pointer-events: none;
  filter: grayscale(1) brightness(1.5);
}
.area_block .area_text_bottom .area_text .viewmore.commingsoon a::after {
  content: "coming soon";
  font-size: 15px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #ccc;
  background: rgb(0, 0, 0);
  opacity: 0.7;
}
.area_block .area_text_bottom .area_text_images {
  margin-top: 15px;
  width: 370px;
  display: flex;
  gap: 5px;
}
@media screen and (max-width: 768px) {
  .area_block .area_text_bottom {
    display: contents;
    text-align: center;
  }
  .area_block .area_text_bottom .area_text {
    order: 2;
    margin-top: 22px;
  }
  .area_block .area_text_bottom .area_text p:not(.viewmore) {
    margin-bottom: 22px;
    font-size: 13px;
    letter-spacing: 0.04em;
  }
  .area_block .area_text_bottom .area_text .viewmore {
    margin-bottom: 35px;
  }
  .area_block .area_text_bottom .area_text .viewmore a {
    display: inline-block;
    min-width: 56.2857142857vw;
    padding: 0.8em 30px 0.8em;
    font-size: 17px;
  }
  .area_block .area_text_bottom .area_text_images {
    order: 5;
    width: 70.5714285714vw;
    margin-top: 35px;
  }
}
.area_block .area_images img {
  object-fit: cover;
  object-position: bottom;
}
@media screen and (max-width: 768px) {
  .area_block .area_images {
    order: 4;
  }
  .area_block .area_images figcaption {
    padding: 0 0.5em;
  }
}
@media screen and (min-width: 769px) and (max-height: 1000px) {
  .area_block .area_images img {
    width: 100%;
    height: 40vh;
  }
}

.redevelopment {
  width: 100vw;
  min-width: 1050px;
}
.redevelopment .area_lead {
  transition-delay: 0.25s;
}
.redevelopment .area_ttl {
  width: 456px;
  margin: 0 auto;
  aspect-ratio: 456/63;
  mask-image: url("../images/top/redevelopment_ttl01.svg");
}
@media screen and (max-width: 768px) {
  .redevelopment {
    width: 100%;
    min-width: inherit;
  }
  .redevelopment .area_ttl {
    width: 84.7142857143vw;
  }
}

.access .area_ttl {
  width: 400px;
  margin: 0 auto;
  aspect-ratio: 400/63;
  mask-image: url("../images/top/access_ttl01.svg");
}
@media screen and (max-width: 768px) {
  .access .area_ttl {
    width: 74.5714285714vw;
  }
}

.location .area_ttl {
  width: 369px;
  margin: 0 auto;
  aspect-ratio: 369/63;
  mask-image: url("../images/top/location_ttl01.svg");
}
.location .area_images figcaption {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .location .area_ttl {
    width: 68.2857142857vw;
  }
  .location .area_images figcaption {
    text-align: right;
  }
}

.makeplace .area_ttl {
  width: 332px;
  aspect-ratio: 332/63;
  mask-image: url("../images/top/makeplace_ttl01.svg");
}
@media screen and (max-width: 768px) {
  .makeplace .area_ttl {
    width: 61.4285714286vw;
  }
}

.bigproject {
  width: 1050px;
  padding-right: 250px;
}
.bigproject .area_ttl {
  width: 408px;
  margin: 0 auto;
  aspect-ratio: 408/63;
  mask-image: url("../images/top/bigproject_ttl01.svg");
}
@media screen and (max-width: 768px) {
  .bigproject {
    width: 100%;
    padding-right: 0;
  }
  .bigproject .area_ttl {
    width: 76vw;
  }
}

.ornament {
  pointer-events: none;
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.15));
}

.intro_bg01_01,
.intro_bg01_02 {
  width: 48vw;
  max-width: 574px;
  aspect-ratio: 574/250;
  margin: auto;
  transition-delay: 0.75s;
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}

.intro_bg01_01 {
  left: 0;
  top: 0;
  background: url("../images/top/intro_bg01.webp") no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .intro_bg01_01 {
    width: 100%;
    max-width: inherit;
    aspect-ratio: 700/205;
    background: url("../images/top/intro_bg01_sp.webp") no-repeat center center/cover;
  }
}

.intro_bg01_02 {
  right: 0;
  top: 0;
  background: url("../images/top/intro_bg02.webp") no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .intro_bg01_02 {
    display: none;
  }
}

.cv_bg01,
.cv_bg02 {
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
}

.cv_bg01 {
  width: calc(100% + 100px);
  aspect-ratio: 1100/220;
  left: -50px;
  right: 0;
  top: -50px;
  margin: auto;
  background: url("../images/top/cv_bg01.webp") no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .cv_bg01 {
    width: calc(100% + 2vw);
    left: -0.5vw;
    top: 0;
    background: url("../images/top/cv_bg01_sp.webp") no-repeat center center/cover;
  }
}

.cv_bg02 {
  width: calc(100% + 150px);
  aspect-ratio: 1100/256;
  left: -80px;
  right: 0;
  bottom: -130px;
  margin: auto;
  background: url("../images/top/cv_bg02.webp") no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .cv_bg02 {
    width: calc(100% + 2vw);
    left: -1vw;
    bottom: -8vw;
    background: url("../images/top/cv_bg02_sp.webp") no-repeat center center/cover;
  }
}

.redevelopment_bg01 {
  width: 168px;
  aspect-ratio: 168/181;
  right: -130px;
  top: 35px;
  background: url("../images/top/redevelopment_bg01.webp") no-repeat center center/cover;
  transition-delay: 0.25s;
}
@media screen and (max-width: 768px) {
  .redevelopment_bg01 {
    width: 31.1428571429vw;
    aspect-ratio: 218/241;
    left: 0;
    top: -33vw;
    /*bottom: 85.5vw;*/
    background: url("../images/top/redevelopment_bg01_sp.webp") no-repeat center center/cover;
  }
}

.redevelopment_bg02 {
  width: 255px;
  aspect-ratio: 255/205;
  left: -200px;
  bottom: 0;
  background: url("../images/top/redevelopment_bg02.webp") no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .redevelopment_bg02 {
    display: none;
  }
}

.access_bg01_sp {
  width: 22.1428571429vw;
  aspect-ratio: 155/123;
  right: 2vw;
  top: -40px;
  background: url("../images/top/access_bg01_sp.webp") no-repeat center center/cover;
  transition-delay: 0.5s;
}

.location_bg01 {
  width: 304px;
  aspect-ratio: 304/220;
  right: -150px;
  top: -20px;
  background: url("../images/top/location_bg01.webp") no-repeat center center/cover;
  transition-delay: 0.5s;
}
@media screen and (max-width: 768px) {
  .location_bg01 {
    width: 32.5714285714vw;
    aspect-ratio: 228/183;
    left: 0;
    right: auto;
    top: -11.5vw;
    background: url("../images/top/location_bg01_sp.webp") no-repeat center center/cover;
  }
}

.makeplace_bg01 {
  width: 173px;
  aspect-ratio: 173/138;
  right: -193px;
  bottom: -120px;
  background: url("../images/top/makeplace_bg01.webp") no-repeat center center/cover;
  transition-delay: 0.5s;
}
@media screen and (max-width: 768px) {
  .makeplace_bg01 {
    width: 21.4285714286vw;
    aspect-ratio: 150/162;
    right: 3vw;
    top: -70px;
    bottom: auto;
    background: url("../images/top/makeplace_bg01_sp.webp") no-repeat center center/cover;
  }
}

.bigproject_bg01 {
  width: 168px;
  aspect-ratio: 168/182;
  right: -70px;
  top: 80px;
  background: url("../images/top/bigproject_bg01.webp") no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .bigproject_bg01 {
    content: "";
    position: absolute;
    width: 38.8571428571vw;
    aspect-ratio: 272/197;
    left: 3vw;
    right: auto;
    top: auto;
    bottom: 33vw;
    background: url("../images/top/bigproject_bg01_sp.webp") no-repeat center center/cover;
  }
}

.ribbon {
  position: absolute;
  z-index: -1;
  margin: auto;
  width: 100%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left;
  filter: blur(10px);
  opacity: 0;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: all 1.75s ease-in-out;
  transform-origin: center;
}
.ribbon.consept_line {
  top: 110%;
  left: 0%;
}
@media screen and (max-width: 768px) {
  .ribbon.consept_line {
    position: relative;
    top: -50px;
  }
}
.ribbon.on {
  filter: blur(0);
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  animation: floating 5s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .ribbon {
    transition: all 1.25s ease-in-out;
  }
}

@keyframes floating {
  0% {
    transform: translateY(0);
    filter: drop-shadow(0 7px 7px rgba(0, 0, 0, 0.2));
  }
  50% {
    transform: translateY(15px);
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.5));
  }
  100% {
    transform: translateY(0);
    filter: drop-shadow(0 7px 7px rgba(0, 0, 0, 0.2));
  }
}
.ribbon-reverse {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.cv_ribbon {
  inset: 0;
  aspect-ratio: 2561/1694;
  background: url("../images/top/cv_ribbon01.webp") no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .cv_ribbon {
    aspect-ratio: 700/300;
    background: url("../images/top/cv_ribbon01_sp.webp") no-repeat center center/cover;
  }
  .cv_ribbon.consept_line {
    aspect-ratio: 700/360;
    background: url(../images/top/redevelopment_ribbon01_sp.webp) no-repeat center center/cover;
  }
}

@media screen and (max-width: 768px) {
  .redevelopment_ribbon {
    bottom: -80px;
    aspect-ratio: 700/360;
    background: url("../images/top/redevelopment_ribbon01_sp.webp") no-repeat center center/cover;
  }
}

@media screen and (max-width: 768px) {
  .location_ribbon {
    top: 71vw;
    aspect-ratio: 700/374;
    background: url("../images/top/location_ribbon01_sp.webp") no-repeat center center/cover;
  }
}

@media screen and (max-width: 768px) {
  .bigproject_ribbon {
    top: -30px;
    aspect-ratio: 700/414;
    background: url("../images/top/bigproject_ribbon01_sp.webp") no-repeat center center/cover;
  }
}

.topAction {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  column-gap: 40px;
  max-width: 840px;
  margin-inline: auto;
}

.topAction__button {
  width: calc((100% - 40px) / 2);
  padding-left: 1em;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 768px) {
  .topAction__button {
    width: 80%;
  }
}

.topAction__button:hover {
  opacity: 0.7;
}

.topCntact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 30px;
  border-top: 1px solid #b2b2b2;
  border-bottom: 1px solid #b2b2b2;
  max-width: 860px;
  margin-inline: auto;
  padding: 35px 20px;
  text-align: center;
}

* + .topCntact {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  * + .topCntact {
    margin-top: 0px;
  }
}

.topCntact__text {
  font-size: 14px;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  .topCntact__text {
    margin-bottom: 0px;
    font-size: min(3vw, 13px);
  }
}

.footerAction {
  display: none;
}

.captionArea {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .captionArea {
    padding-bottom: 30px;
  }
}/*# sourceMappingURL=top.css.map */