@charset "UTF-8";

body {
  color: #fff;
  background-color: #000;
}

/* section_header */
.section_header {
  text-align: center;

  .section_title {
    line-height: 1.5;
    letter-spacing: 1px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 80px;
    font-weight: normal;
  }

  .section_subtitle {
    margin: 0 0 35px;
    line-height: 1.5;
    letter-spacing: 1px;
    font-size: 32px;
    font-weight: bold;

    &.section_subtitle_02 {
      margin: 0 0 20px;
    }
  }

  .section_lead {
    line-height: 1.5;
    font-size: 15px;
    margin: 0;
  }
}

/* section_desc */
.section_desc {
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 20px;
  text-align: center;
  background: #000;

  .section_desc_container {
    width: 812px;
    max-width: 95%;
    margin: 0 auto;
    padding: 20px 0 20px;
  }

  .section_desc_title {
    line-height: 1.5;
    font-size: 32px;
    margin-bottom: 27px;
  }

  .section_desc_text {
    font-size: 15px;
  }

  .section_desc_image {
    margin: 54px auto 0;
    max-width: 100%;
    width: 722px;
    height: 412px;
  }

  .section_desc_bottom {
    width: 722px;
    margin: 13px auto 0;
    text-align: left;

    .section_desc_text_bottom {
      line-height: 1.5;
      font-size: 16px;
    }

    .section_desc_title_bottom {
      margin-top: 32px;
      line-height: 1.5;
      font-size: 20px;
    }
  }
}

/* contact_btn */
.contact_btn {
  display: flex;
  justify-content: center;
}

/* 背景画像固定 */
.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/business/income_house/mv_01.webp");
  }

  /* CONSULT 背景 */
  &.consult_bg {
    background-image: url("/img/business/consult_01.webp");
  }
}

/* section */
section {
  background-color: #000;
}

/* content-media */
.content-media {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  margin: 55px 0 60px;
  width: 93%;

  .content-media__image {
    flex: 1 1 46%;

    img {
      width: 100%;
      border-radius: 15px;
      object-fit: cover;
    }
  }

  .content-media__body {
    flex: 1 1 40%;
    line-height: 1.5;
    font-weight: bold;

    .content-media__title {
      font-size: 32px;
      margin-bottom: 43px;
    }

    .content-media__text {
      font-size: 18px;
    }
  }
}

/* content-block */
.content-block {
  text-align: center;
  margin: 45px auto 55px;

  .content-block__title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 18px;
  }

  .content-block__text {
    font-size: 15px;
  }
}

/* content-grid */
.content-grid {
  display: grid;
  gap: clamp(20px, 3vw, 45px);
  margin-bottom: 130px;

  &.content-grid--3col {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 80px;
  }

  .content-card {
    border-radius: 10px;
    overflow: hidden;
    text-align: left;

    .content-card__image {
      padding: 0 10px 17px;
      img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
      }
    }

    .content-card__title {
      line-height: 1.5;
      font-size: 22px;
      margin: 0 0 7px;
      font-weight: bold;
    }

    .content-card__text {
      font-size: 15px;
    }
  }
}

/* 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;
  background-color: transparent;

  .mv_inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
    margin-top: 12%;

    .mv_catch {
      line-height: 1.3;
      letter-spacing: 1px;
      font-family: "Bebas Neue", sans-serif;
      font-size: 80px;
      font-weight: normal;

      span {
        padding: 0 10px;
        font-size: 40px;
      }
    }

    .mv_title {
      margin: 17px 0 38px;
      line-height: 1.5;
      letter-spacing: 1px;
      font-weight: bold;
      font-size: 24px;
    }

    .mv_text {
      letter-spacing: 0.5px;
      line-height: 1.5;
      font-weight: bold;
      font-size: 18px;
    }
  }
}

/* CONCEPT */
.concept {
  padding: 60px 0 0;

  .concept_image {
    width: 720px;
    padding: 60px 0 20px;
  }
}

/* STYLE */
.style {
  padding: 100px 0 90px;

  .style_image {
    text-align: center;

    &.style_image_01 {
      img {
        width: 680px;
        padding: 60px 0 33px;
      }

      .style_desc {
        line-height: 2;
        font-weight: bold;
        font-size: 20px;
      }
    }

    &.style_image_02 {
      padding-bottom: 30px;

      img {
        width: 800px;
        padding: 125px 0 70px;
      }

      .style_desc {
        line-height: 1.5;
        font-weight: bold;
        font-size: 14px;
      }
    }
  }
}

/* concept_hero */
.concept_hero {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 0 40px;

  .content-block {
    margin: 0 auto 40px;
  }

  .concept_hero_image {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
}

/* feature-list */
.feature-list {
  padding-bottom: 70px;

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: clamp(40px, 4.9vw, 70px);
    width: 812px;
    max-width: 95%;
    margin: 0 auto;
    padding: 20px 0;

    .feature-item {
      border: 1px solid #fff;
      padding: 58px 0 45px;
      text-align: left;
      line-height: 1.5;

      .feature-item__title {
        margin-bottom: 23px;
        text-align: center;
        font-size: 24px;
        font-weight: 700;

        .feature-item__subtitle {
          display: block;
          font-size: 18px;
          margin-bottom: 10px;
        }
      }

      .feature-item__text {
        font-size: 15px;
        padding: 0 23px;
      }
    }
  }
}

/* service */
.service {
  .service-container {
    width: 812px;
    max-width: 95%;
    margin: 0 auto;
    padding: 20px 0 270px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;

    .service-item {
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: stretch;

      .service-item__title {
        background-color: #fff;
        color: #000;
        font-weight: 700;
        font-size: 18px;
        text-align: center;
        padding: 10px 10px;
      }

      .service-item__text {
        padding: 20px 0 0;
        font-size: 15px;
        line-height: 1.5;
      }
    }
  }
}

/* CONSULT */
.consult {
  position: relative;
  min-height: 720px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  width: 100%;
  object-fit: cover;
  background-color: transparent;

  .consult__inner {
    position: relative;
    max-width: 95%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.5;
    z-index: 1;

    .consult__eyebrow {
      margin-bottom: 76px;
      font-family: "Bebas Neue", sans-serif;
      font-size: 40px;
      font-weight: 700;
      letter-spacing: 1px;
    }

    .consult__title {
      font-size: 23px;
      font-weight: 800;
      letter-spacing: 1px;
      margin-bottom: 50px;
    }

    .consult__body {
      font-size: 15px;
      font-weight: bold;
      letter-spacing: 0.5px;
      margin-bottom: 47px;
    }
  }
}

@media screen and (max-width: 768px) {
  /* section_header */
  .section_header {
    padding: 50px 0 0;

    .section_title {
      font-size: clamp(48px, 14vw, 55px);
      line-height: 1.4;
    }

    .section_subtitle {
      margin: 0 0 30px;
      line-height: 1.5;
      letter-spacing: 1px;
      font-size: clamp(18px, 5.2vw, 22px);
      font-weight: bold;
    }

    .section_lead {
      line-height: 1.8;
      font-size: clamp(12px, 3.2vw, 15px);
      text-align: left;
      text-align: center;
    }
  }

  /* section_desc */
  .section_desc {
    padding-bottom: 0;

    &.section_desc_01 {
      margin-top: 80px;
    }

    .section_desc_title {
      margin-bottom: 20px;
      font-size: clamp(17px, 5vw, 20px);
    }

    .section_desc_text {
      line-height: 1.5;
      font-size: clamp(10px, 3vw, 12px);
    }

    .section_desc_image {
      width: 100%;
      height: 200px;
      margin: 27px auto 0;
    }

    .section_desc_bottom {
      width: 100%;

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

      .section_desc_title_bottom {
        margin-top: 25px;
        margin-bottom: 3px;
        font-size: clamp(15px, 4.5vw, 18px);
      }
    }
  }

  /* contact_btn */
  .contact_btn {
    width: 100%;
    display: flex;
    justify-content: center;

    .link_btn--white-c {
      min-width: 70%;
    }
  }

  /* content-media */
  .content-media {
    flex-direction: column;
    width: 100%;
    gap: 20px;
    align-items: normal;
    margin: 100px 0 30px;

    .content-media__image,
    .content-media__body {
      flex: 1 1 100%;
    }

    .content-media__body {
      text-align: center;

      .content-media__title {
        font-size: clamp(17px, 6vw, 24px);
        margin-bottom: 10px;
      }

      .content-media__text {
        font-size: clamp(11px, 4vw, 16px);
      }
    }
  }

  /* content-block */
  .content-block {
    .content-block__title {
      font-size: clamp(17px, 6vw, 24px);
    }

    .content-block__text {
      font-size: clamp(12px, 3.2vw, 15px);
    }
  }

  /* content-grid */
  .content-grid {
    width: 70%;
    margin: 0 auto;
    gap: 60px;
    margin-bottom: 50px;

    &.content-grid--3col {
      grid-template-columns: unset;
      margin-top: 100px;
    }

    .content-card {
      .content-card__image {
        padding: 0 0 17px;
      }

      .content-card__title {
        line-height: 1.3;
        font-size: clamp(16px, 4.5vw, 19px);
      }

      .content-card__text {
        font-size: clamp(12px, 3.2vw, 15px);
      }
    }
  }

  /* MV  */
  .mv {
    height: calc(100vh - 50px);

    .mv_inner {
      max-width: 90%;
      padding: 0;

      .mv_catch {
        line-height: 1;
        font-size: clamp(58px, 16vw, 63px);
      }

      .mv_title {
        margin: 15px 0 25px;
        font-size: clamp(13px, 4.5vw, 18px);
      }

      .mv_text {
        font-size: clamp(10px, 3.2vw, 12px);
        line-height: 1.6;
      }
    }
  }

  /* CONCEPT */
  .concept {
    padding: 0;

    .concept_image {
      width: 100%;
      padding: 20px 0;
    }
  }

  /* STYLE */
  .style {
    padding: 30px 0;

    .style_image {
      &.style_image_01 {
        img {
          width: 100%;
          padding: 50px 0;
        }

        .style_desc {
          line-height: 1.5;
        }
      }

      &.style_image_02 {
        img {
          width: 100%;
          padding: 70px 0;
        }
      }
    }
  }

  /* INCOME_TENANT */
  .income_tenant {
    .content-grid {
      margin-bottom: 140px;
    }
  }

  /* concept_hero */
  .concept_hero {
    .concept_hero_image {
      width: 100%;
      height: auto;
      flex-wrap: wrap;
      gap: 20px;

      img {
        width: 40%;
      }
    }
  }

  /* feature-list */
  .feature-list {
    padding-bottom: 30px;

    .feature-grid {
      grid-template-columns: 1fr;
      width: 70%;
      gap: 20px;
      padding: 0;

      .feature-item {
        padding: 35px 0;

        .feature-item__title {
          margin-bottom: 20px;
          font-size: clamp(15px, 4.5vw, 18px);

          .feature-item__subtitle {
            margin-bottom: 3px;
            font-size: 14px;
          }
        }

        .feature-item__text {
          padding: 0 13px;
          font-size: clamp(12px, 3.2vw, 15px);
        }
      }
    }
  }

  /* service */
  .service {
    .service-container {
      width: 70%;
      grid-template-columns: none;
      padding: 20px 0 130px;

      .service-item {
        .service-item__title {
          font-size: clamp(14px, 4.5vw, 18px);
        }

        .service-item__text {
          padding: 10px 0 0;
          font-size: clamp(12px, 3.2vw, 15px);
        }
      }
    }
  }

  /* CONSULT */
  .consult {
    height: max-content;
    padding-top: 100px;
    padding-bottom: 100px;

    .consult_inner {
      max-width: 93%;
    }

    .consult_eyebrow {
      margin-bottom: 40px;
      font-size: clamp(30px, 10vw, 40px);
      line-height: 1.2;
    }

    .consult_title {
      font-size: clamp(18px, 5.3vw, 23px);
      margin-bottom: 35px;
    }

    .consult_body {
      font-size: clamp(12px, 3.5vw, 15px);
      margin-bottom: 60px;
      line-height: 1.8;
    }
  }
}
