@charset "UTF-8";

#contents {
  color: #000;
}

.bg_color {
  background-color: #d9d9d9;
}

/* 背景画像固定 */
.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0;

  /* MV 背景 */
  &.mv_bg {
    background-image: url("../img/renovation/mv_01.webp");
  }

  /* PLAN 背景 */
  &.plan_bg {
    background-image: url("../img/renovation/plan_bg.webp");
  }
}

/* MV  */
.mv {
  position: relative;
  height: calc(100vh - 65px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  width: 100%;
  object-fit: cover;
  pointer-events: none;

  .mv_inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
    opacity: 0;
    transition: opacity 1s ease;

    &.loaded {
      opacity: 1;
    }

    .mv_lead {
      display: flex;
      flex-direction: column;
      text-align: center;
      line-height: 1;
      font-family: "Roboto", sans-serif;
      font-size: clamp(90px, 8vw, 120px);
      font-weight: 600;
      color: #f6ff00;

      span {
        margin: 10px 0 50px -0.5em;
        font-family: "Neonderthaw", sans-serif;
        font-size: clamp(180px, 16vw, 240px);
        font-weight: 100;
        color: #fff;
      }
    }
    .mv_desc {
      margin-top: 50px;
      line-height: 1.5;
      text-align: center;
      font-family: "Roboto", sans-serif;
      font-size: clamp(20px, 1.3vw, 24px);
      font-weight: bold;
      color: #fff;
    }
  }

  .mv_main {
    img {
      width: 100%;
      height: calc(100vh - 65px);
      object-fit: cover;
      object-position: center 90%;
    }
  }
}

/* MODELHOUSE */
.modelhouse {
  padding: 50px 0 30px;
}

/* MAX_WIDTH_SLIDER */
.concept_slider_wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 150px;
  position: relative;

  .concept_slider {
    margin-bottom: 50px;

    .concept_item {
      margin: 0 20px;
      padding: 10px;

      img {
                width: 100%;
                height: 20em;
                object-fit: cover;
      }

      .slide_lead {
        padding: 15px 10px;
        color: #fff;

        .slide_title {
          font-size: 18px;
          font-weight: bold;
          text-align: center;
          color: #000;
        }

        .slide_desc {
          font-size: 14px;
          margin-top: 10px;
        }
      }
    }
  }
}

/* PLAN */
.plan {
}

/* WORKS */
.works {
  padding-top: 100px;

  .works_inner {
    width: 900px;
    margin: 0 auto;

    .works_title_wrap {
      margin-top: 0;
      margin-bottom: 30px;
      display: flex;
      gap: 20px;
      align-items: center;
      line-height: 1;

      h2 {
        font-family: "Inter", sans-serif;
        font-weight: bold;
        font-size: 30px;
      }

      .title_desc {
        margin: 0;
        font-size: 20px;
        font-weight: bold;
      }
    }
  }
}

/* CAMPAIGN */
.campaign {
  padding-top: 70px;

  .campaign-content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 45px;
    margin-top: 50px;

    .campaign-left {
      display: flex;
      justify-content: center;
	video{
		width: 90%;
		border-radius: 20px;
		margin: auto;
	}
      img {
        border-radius: 10px;
      }
    }

    .campaign-right {
      .campaign-title {
        font-size: 32px;
        font-weight: bold;
        line-height: 1.6;
        margin-bottom: 35px;
      }

      .campaign-point {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
      }
    }
  }
}

/* FLOOR */
.floor {
  padding-top: 35px;

  .floor_title_wrap {
    line-height: 1.4;
    text-align: center;

    h2 {
      font-size: 20px;

      span {
        font-size: 40px;
      }
    }
  }

  .floor_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
    gap: 30px;
    margin: 40px 0 60px;

    .floor_item {
      width: 30%;
      border-radius: 8px;

      .floor_image {
        position: relative;
        display: inline-block;
        transition: opacity 0.3s;
        pointer-events: none;

        .floor_image_logo {
          text-align: center;
        }

        .floor_image_pic {
          img {
            width: 100%;
            display: block;
          }
        }

        .floor_icon {
          position: absolute;
          bottom: 15px;
          right: 15px;

          &::before {
            content: "";
            display: block;
            width: 48px;
            height: 48px;
            background: url("../img/renovation/icon-floor.svg") no-repeat center
              center / contain;
          }
        }
      }

      .floor_caption {
        padding: 10px 0;
        line-height: 1;
        font-weight: bold;

        .floor_caption_title {
          font-size: 24px;
          margin-bottom: 7px;
        }

        .floor_caption_subtitle {
          font-size: 15px;
        }
      }
    }
  }
}

/* PLAN MODAL */
#plan_modal {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 9999;

  .modal_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
  }

  .modal_content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    z-index: 10;
    width: 90%;

    .modal_close {
      position: absolute;
      top: 0;
      right: 0;
      width: 35px;
      background: none;
      border: none;
      cursor: pointer;
      color: #fff;

      img {
        width: 100%;
      }
    }

    .flow_slider {
      img {
        width: 100%;
        max-width: 100%;
        max-height: 80vh;
        height: auto;
        display: block;
        margin: 0 auto;
        object-fit: contain;
      }
    }

    .thumb_slider {
      display: none;
    }
  }
}

/* PROFILE */
.profile {
  padding-top: 50px;

  .profile-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-top: 70px;

    .profile-left {
      display: flex;
      justify-content: center;
    }

    .profile-right {
      .profile-text {
        display: flex;
        flex-direction: column;
        gap: 10px;
        line-height: 1.3;

        .profile-title {
          font-size: 18px;
          font-weight: bold;
          margin-bottom: 5px;
        }
        .profile-desc {
          font-size: 14px;
        }
      }
    }
  }

  .consult-banner_container {
    width: 800px;
    margin: 0 auto;

    .consult-banner {
      display: block;
      background-color: #f6ff00;
      border-radius: 10px;
      padding: 22px 30px 16px 30px;
      text-decoration: none;
      color: #000;
      transition: 0.3s;

      &:hover {
        opacity: 0.9;
        transform: translateY(-2px);
      }
    }

    .consult-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      justify-content: space-between;
      gap: 40px;
    }

    .consult-left {
      flex: 1 1 28%;
      font-weight: bold;
      font-size: 25px;
      line-height: 1.5;
      text-align: center;

      span {
        display: block;
        margin-top: 10px;
        font-size: 14px;
        font-weight: normal;
      }
    }

    .consult-right {
      flex: 1 1 65%;

      h3 {
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 10px;
      }

      p {
        font-size: 14px;
        line-height: 1.5;
      }
    }

    .consult-btn {
      display: flex;
      justify-content: center;
      margin: 0 0 0 auto;
      width: 150px;
      padding: 4px 18px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 12px;
      color: #000;
      background-color: #fff;
    }
  }
}

/* ROOMTOUR */
.roomtour {
  padding-top: 20px;

  .roomtour_title_wrap {
    line-height: 1.4;
    text-align: center;

    h2 {
      font-size: 20px;

      span {
        font-size: 40px;
      }
    }
  }

  .roomtour_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
    gap: 13px;
    margin: 40px 0 0;

    .roomtour_item {
      width: 32%;
      border-radius: 10px;

      .roomtour_image {
        position: relative;
        display: inline-block;
        transition: opacity 0.3s;

        .roomtour_image_pic {
          img {
            width: 100%;
            display: block;
          }
        }

        .roomtour_icon {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);

          &::before {
            content: "";
            display: flex;
            justify-content: center;
            align-items: center;
            width: 48px;
            height: 48px;
            background: url("../img/renovation/icon-play.svg") no-repeat center
              center / contain;
          }
        }
      }
    }
  }
}

/* ROOMTOUR MODAL */
#roomtour_modal {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 9999;

  .modal_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
  }

  .modal_content {
    position: relative;
    max-width: 100%;
    width: 1100px;
    margin: 0 auto;
    padding: 90px;
    z-index: 10;

    .modal_close {
      position: absolute;
      top: 35px;
      right: 30px;
      width: 35px;
      background: none;
      border: none;
      cursor: pointer;
      color: #fff;

      img {
        width: 100%;
      }
    }

    .flow_slider {
      img {
        width: 100%;
        height: auto;
        display: block;
      }
    }
  }
}

/* ALL SUPPORT */
.all_support {
  padding-top: 100px;
  padding-bottom: 237px;

  .all_support_header {
    margin: 20px 0 70px;
    line-height: 1.5;
    text-align: center;

    .all_support_header_lead {
      font-size: 32px;
      font-weight: bold;
    }
    .all_support_header_sublead {
      margin: 14px 0 16px;
      font-size: 20px;
      font-weight: bold;
    }
    .all_support_header_desc {
      font-size: 15px;
    }
  }

  .all_support_body {
    display: flex;
    justify-content: center;
    margin: 0 auto 70px;
  }
}

/* title */
.title_wrap {
  margin-top: 0;
  text-align: center;

  h2 {
    font-family: "Bebas Neue", sans-serif;
    font-weight: normal;
    font-size: 80px;
    line-height: 1.2;
  }

  .title_desc {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
  }
}

.section_header {
  height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  gap: 20px;

  .section_header_title {
    line-height: 2;
    font-size: 30px;
    font-weight: bold;
  }

  .section_header_desc {
    line-height: 2;
    font-size: 15px;
  }
}

/* common */
.fadein {
  opacity: 0;
  transition: opacity 1.5s ease;

  &.show {
    opacity: 1;
  }
}

/* cta */
.renovation_cta_container {
  position: fixed;
  right: 50px;
  bottom: 0px;
  width: 250px;
  z-index: 2;

  img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* btn */
.link_btn_wrap {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 15px;

  a {
    width: 200px;
    margin: 0 auto;
  }
  p {
    line-height: 1.5;
    font-size: 15px;
  }
}

/* Slide */
.loop-slider_wrap {
  width: 800px;
  margin: 35px auto 40px;

  .loop-slider {
    width: 100%;
    overflow: hidden;

    .swiper-slide {
      text-align: center;

      img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
        object-fit: cover;
      }

      .showcase_title {
        font-size: 16px;
        font-weight: bold;
        margin: 20px 0 10px;
        color: #000;
        text-align: left;
      }

      .showcase_desc {
        font-size: 12px;
        flex-grow: 1;
        letter-spacing: 0.3px;
        text-align: left;
      }
    }
  }
}

@media screen and (max-width: 768px) {
  /* MV */
  .mv {
    display: block;
    height: calc(100vh - 50px);

    .mv_inner {
      width: 87%;
      top: 32%;
      left: 50%;
      transform: translateX(-50%);

      .mv_lead {
        font-size: clamp(38px, 11vw, 45px);

        span {
          margin: 10px 0 20px -30px;
          font-size: clamp(55px, 19vw, 70px);
        }
      }

      .mv_desc {
        margin-top: 20px;
        font-size: clamp(12px, 2.3vw, 14px);
      }
    }

    .mv_main {
      img {
        height: calc(100vh - 50px);
      }
    }
  }

  /* MODELHOUSE */
  .modelhouse {
    padding: 40px 0 5px;
  }

  /* MAX_WIDTH_SLIDER */
  .concept_slider_wrap {
    padding: 0 0 70px;

    .concept_slider {
      width: 80%;
      margin-bottom: 0;

      .concept_item {
        margin: 0;

        img {
          display: flex;
          margin: 0 auto;
        }

        .slide_lead {
          padding: 15px 0;

          .slide_title {
            font-size: clamp(11px, 3vw, 13px);
          }
        }
      }
    }

    .swiper-arrows {
      .swiper-button-prev,
      .swiper-button-next {
        top: 26%;
      }
    }
  }

  /* swiper-arrows */
  .swiper-arrows {
    .swiper-button-prev,
    .swiper-button-next {
      color: #fff;
      font-size: 20px;
      top: 45%;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
      font-size: 30px;
    }
  }

  /* PLAN */
  .plan {
  }

  /* WORKS */
  .works {
    .works_inner {
      width: 100%;

      .works_title_wrap {
        gap: 13px;
        flex-wrap: wrap;
        width: 80%;
        margin: 0 auto 20px;

        h2 {
          font-family: "Inter", sans-serif;
          font-weight: bold;
          font-size: clamp(20px, 5.7vw, 25px);
        }

        .title_desc {
          margin: 0;
          font-size: clamp(14px, 4.5vw, 18px);
          font-weight: bold;
        }
      }

      .swiper-arrows {
        .swiper-button-prev,
        .swiper-button-next {
          top: 30%;
        }
      }
    }
  }

  /* CAMPAIGN */
  .campaign {
    padding-top: 100px;

    .campaign-content {
      flex-direction: column;
      margin-top: 30px;

      .campaign-left {
        width: 70%;
        margin: 0 auto;
        text-align: center;

        img {
          width: 100%;
        }
      }

      .campaign-right {
        width: 100%;

        .campaign-title {
          font-size: clamp(20px, 6vw, 25px);
          text-align: center;
        }

        .campaign-point {
          max-width: 100%;

          img {
            width: 100%;
          }
        }
      }
    }
  }

  /* FLOOR */
  .floor {
    padding-top: 20px;

    .floor_list {
      justify-content: center;
      gap: 20px;
      padding: 0;

      .floor_item {
        width: 46%;

        .floor_image {
          .floor_image_logo {
            img {
              width: 100%;
            }
          }

          .floor_image_pic {
            img {
              width: 100%;
            }
          }

          .floor_icon {
            bottom: 7px;
            right: 7px;

            &::before {
              width: 30px;
              height: 30px;
            }
          }
        }

        .floor_caption {
          padding: 5px 0;

          .floor_caption_title {
            font-size: clamp(18px, 5vw, 20px);
          }

          .floor_caption_subtitle {
            font-size: clamp(10px, 3vw, 12px);
            white-space: nowrap;
          }
        }
      }
    }
  }

  /* PLAN MODAL */
  #plan_modal {
    .modal_content {
      width: 80%;
      padding: 0;

      .modal_close {
        top: -50px;
        right: 0;
      }

      .thumb_slider {
        .swiper-slide {
          width: auto;
          height: auto !important;
          max-width: 80px;
          max-height: 80px;
        }
      }
    }
  }

  /* PROFILE */
  .profile {
    padding-top: 60px;

    .profile-content {
      flex-direction: column;
      margin-top: 30px;

      .profile-left {
        width: 70%;
        margin: 0 auto;
        text-align: center;

        img {
          width: 100%;
        }
      }

      .profile-right {
        width: 90%;
        margin: 0 auto;

        .profile-title {
          font-size: clamp(20px, 6vw, 25px);
          text-align: center;
        }

        .profile-text {
          .profile-desc {
            font-size: clamp(11px, 3.3vw, 13px);
            line-height: 1.5;
          }
        }

        .profile-point {
          max-width: 100%;

          img {
            width: 100%;
          }
        }
      }
    }

    .consult-banner_container {
      width: 100%;

      .consult-banner {
        max-width: 85%;
        margin: 0 auto;
        padding: 30px 30px 25px 30px;
      }

      .consult-inner {
        gap: 25px;
      }

      .consult-left {
        font-size: clamp(18px, 5vw, 20px);

        span {
          font-size: clamp(11px, 3.3vw, 13px);
        }
      }

      .consult-right {
        h3 {
          margin-bottom: 15px;
          text-align: center;
          font-size: clamp(25px, 7.1vw, 28px);
        }

        p {
          font-size: clamp(9px, 2.5vw, 11px);
        }
      }

      .consult-btn {
        margin: 15px 0 0 auto;
      }
    }
  }

  /* ROOMTOUR */
  .roomtour {
    padding-top: 60px;

    .roomtour_list {
      justify-content: center;
      gap: 20px;
      padding: 0;

      .roomtour_item {
        width: 46%;

        .roomtour_image {
          .roomtour_image_pic {
            img {
              width: 100%;
            }
          }

          .roomtour_icon {
            &::before {
              width: 30px;
              height: 30px;
            }
          }
        }
      }
    }
  }

  /* ROOMTOUR MODAL */
  #roomtour_modal {
    .modal_content {
      padding: 10%;

      .modal_close {
        top: -10px;
        right: 5%;
      }

      iframe {
        height: 13em;
      }
    }
  }

  /* ALL SUPPORT */
  .all_support {
    padding-top: 30px;
    padding-bottom: 100px;

    .all_support_header {
      margin: 20px 0 50px;

      .all_support_header_lead {
        font-size: clamp(24px, 7vw, 26px);
      }
      .all_support_header_sublead {
        font-size: clamp(14px, 4vw, 16px);
      }
      .all_support_header_desc {
        font-size: clamp(11px, 3vw, 13px);
      }
    }

    .all_support_body {
      max-width: 85%;
      margin: 0 auto 50px;

      img {
        width: 100%;
      }
    }
  }

  /* title */
  .title_wrap {
    margin-bottom: 0;

    &.title_flex {
      position: relative;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;

      .title_desc {
        margin-top: 6px;
        font-size: clamp(11px, 3.3vw, 13px);
        text-align: left;
      }
    }

    .title_desc {
      margin: 0 auto;
      line-height: 1.8;
      font-size: clamp(12px, 4vw, 16px);
    }

    h2 {
      font-size: clamp(40px, 12vw, 50px);
    }

    p {
    }
  }

  .section_header {
    height: auto;
    margin-bottom: 20px;
    padding: 10% 7%;

    .section_header_title {
      margin-bottom: 10px;
      line-height: 1.5;
      font-size: clamp(20px, 5.7vw, 25px);
    }

    .section_header_desc {
      font-size: 3.2vw;
            width: 90%;
    }
  }

  /* cta */
  .renovation_cta_container {
    width: 30%;
    right: 5px;
    bottom: 5px;
  }

  /* btn */
  .link_btn_wrap {
    a {
      width: 70%;
      height: 45px;
      line-height: 45px;
      font-size: 14px;
    }

    p {
      font-size: 12px;
    }
  }

  /* Slide */
  .loop-slider_wrap {
    width: 100%;
    padding: 0;
    position: relative;
    margin: 20px auto;

    .loop-slider {
      width: 80%;

      .swiper-slide {
        .showcase_title {
          font-size: clamp(14px, 4.5vw, 16px);
        }

        .showcase_desc {
          font-size: clamp(10px, 3vw, 12px);
        }
      }
    }
  }
}
