@charset "UTF-8";

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

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

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

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

  .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_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/facility/mv_01.webp");
  }

  /* CONSULT 背景 */
  &.consult_bg {
    background-image: url("/img/business/consult_01.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;
    margin-top: 12%;

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

    .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;
  background-color: #000;

  .concept_slider_01 {
    width: 722px;
    margin: 45px auto 0;
  }
}

/* concept_hero */
.concept_hero {
  background-color: #000;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 0 90px;

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

    img {
    }
  }
}

/* subsidy */
.subsidy {
  background: #000;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;

  .subsidy_title {
    margin-bottom: 28px;
    line-height: 1.5;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
  }

  .subsidy_text {
    line-height: 1.4;
    text-align: center;
    font-size: 14px;
  }

  .reasons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
    margin: 60px auto 110px;

    .reason {
      text-align: left;

      .reason_title {
        font-size: clamp(18px, 2.5vw, 28px);
        font-weight: bold;

        span {
          display: block;
          line-height: 1.5;
          font-size: clamp(10px, 1.3vw, 16px);
        }
      }

      img {
        width: 100%;
        border-radius: 15px;
        margin: 12px auto 10px;
      }

      .reason_text {
        line-height: 1.5;
        font-size: clamp(10px, 1.3vw, 16px);
      }
    }
  }

  .closing {
    text-align: center;
    margin: 0 auto 7px;

    .closing_title {
      font-size: clamp(18px, 5.3vw, 23px);
      font-weight: bold;
      margin-bottom: 30px;
    }

    .closing_text {
      line-height: 1.5;
      font-size: clamp(10px, 1.3vw, 16px);
    }
  }
}

/* CASE */
.case {
  background-color: #000;
  padding: 70px 0;

  .case_list {
    .case_list_item_wrap {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 100px 40px;
      margin: 0 auto 60px;

      .case_list_item {
        text-align: left;
        width: 47%;

        display: flex;
        flex-direction: column;
        height: 100%;
        box-sizing: border-box;
        color: #000;

        .case_list_img {
          position: relative;

          img {
            width: 100%;
            border-radius: 10px;
          }
        }

        .case_list_text {
          color: #fff;

          h3 {
            margin: 17px 0 10px;
            font-size: 16px;
            font-weight: bold;
          }

          p {
            font-size: 12px;
          }
        }
      }
    }
  }
}

/* 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;

  .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: 30px;
    }

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

    .consult__btn {
      margin-top: 20px;
    }
  }
}

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

    .section_title {
      margin: 0 auto 20px;
      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;
    }
  }

  /* 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%;
    }
  }

  /* 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_slider_01 {
      width: 100%;
    }
  }

  /* concept_hero */
  .concept_hero {
    padding: 0;

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

      img {
        width: 40%;
      }
    }
  }

  /* subsidy */
  .subsidy {
    .subsidy_title {
      font-size: clamp(17px, 5vw, 20px);
    }

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

    .reasons {
      grid-template-columns: 1fr;
      margin: 60px auto 80px;

      .reason {
        .reason_title {
          font-size: clamp(17px, 5vw, 20px);

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

        img {
          margin: 3px auto 12px;
        }

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

    .closing {
      .closing_title {
        line-height: 1.5;
        font-size: clamp(17px, 5vw, 20px);
      }

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

  /* CASE */
  .case {
    .case_list {
      .case_list_item_wrap {
        width: 95%;
        margin: 0 auto 40px;
        overflow-x: auto;
        display: flex;
        flex-wrap: nowrap;
        scroll-snap-type: x mandatory;
        gap: 28px;
        padding-bottom: 10px;
        scroll-behavior: smooth;
        justify-content: unset;

        .case_list_item {
          min-width: 80%;
          display: flex;
          flex-wrap: nowrap;

          .case_list_text {
            h3 {
              margin: 15px 0 10px;
              font-size: clamp(12px, 3.5vw, 14px);
            }
            p {
              font-size: clamp(10px, 3.2vw, 12px);
            }
          }
        }
      }
    }
  }

  /* 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;
    }
  }
}
