@charset "UTF-8";

body {
  color: #1a1a1a;
}

section {
  background-color: #fff;
}

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

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

  /* POINTS 背景 */
  &.points_bg {
    background-image: url("../img/smallhouse/points_01.webp");
  }
}

/* MV  */
.mv {
  position: relative;
  width: 100%;
  height: 88vh;
  overflow: hidden;
  background-color: transparent;

  .mv_inner {
    position: absolute;
    bottom: 25%;
    left: 10%;
    color: #fff;
    z-index: 10;

    .mv_lead {
      font-size: clamp(15px, 1.5vw, 24px);
      font-weight: 600;
    }

    .mv_title {
      margin: 0.5vw 0 1vw;
      line-height: 1.2;
      font-size: clamp(42px, 4vw, 65px);
      font-weight: bold;
    }

    .mv_desc {
      line-height: 1.7;
      font-size: clamp(13px, 1vw, 18px);
      font-weight: 500;
    }
  }
}

/* CUSTOM */
.custom {
  padding-top: 100px;

  .custom_inner {
    .custom_title_wrap {
      margin-top: 0;
      margin-bottom: 100px;

      .custom_title {
        line-height: 1.5;
        font-size: 30px;
        text-align: center;
      }

      .custom_title_desc {
        margin: 57px auto;
        text-align: center;
        font-size: 16px;
        font-weight: bold;
        line-height: 2;
      }
    }
  }
}

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

  .concept_slider {
    .concept_item {
      margin: 0 20px;
      padding: 10px;
      background: #fff;

      img {
	width: clamp(500px, 56vw, 800px);
	height: 25em;
	object-fit: cover;
	border-radius: 10px;
      }

      .slide_lead {
        padding: 20px;

        .slide_title {
          line-height: 1.5;
          font-size: 20px;
          font-weight: bold;
        }

        .slide_desc,
        .slide_points {
          font-size: 14px;
          font-weight: bold;
          line-height: 1.7;
        }

        .slide_desc {
          margin-top: 13px;
        }

        .slide_points {
          list-style-type: disc;
          padding-left: 10px;
        }
      }
    }
  }

  .concept_slider .slick-slide {
    margin: 0 40px;
  }

  .concept_slider .slick-list {
    margin: 0 -40px;
  }

  .swiper-arrows {
    .swiper-button-prev,
    .swiper-button-next {
      color: var(--primary-color);
      font-size: 20px;
    }
  }
}

/* works */
.works {
  padding: 50px 0 140px;

  .showcase_slider {
    .showcase_slide {
      .showcase_item {
        .showcase_link {
          .showcase_title {
            font-size: 15px;
          }
          .showcase_desc {
            padding: 0 5px;
            font-weight: bold;
          }
        }
      }
    }
  }
}

/* POINTS */
.points {
  background-color: transparent;
}

/* CATEGORY */
.category {
  padding: 20px 0 0;

  .category_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 115px 40px;
    margin: 70px auto;

    .category_list_item {
      /*width: 100%;
      height: 100%;*/
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: clamp(50px, 4.2vw, 60px);
      text-align: left;
      box-sizing: border-box;

      @media screen and (max-width: 1150px) {
        align-items: flex-start;
      }

      .fade_list_img {
        width:450px;
        height: clamp(200px, 30vw, 700px);
        border-radius: 15px;

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

      .category_list_text {
        padding-left: 0;
        min-width: 410px;

        .category_list_subtitle {
          margin: 0 0 30px;
          font-size: clamp(28px, 1.7vw, 34px);
          font-weight: bold;
        }

        .category_list_desc {
          margin-bottom: 60px;
          line-height: 1.5;
         font-size: clamp(13px, 3.5vw, 14px);
        }

        .category_list_points {
          list-style-type: disc;
          padding-left: 1em;
          font-size: clamp(14px, 1vw, 20px);
          font-weight: bold;
          color: var(--primary-color);
        }
      }
    }

    .category_list_item--reverse {
      flex-direction: row-reverse;
      justify-content: space-between;
      .category_list_text {
        padding-left: clamp(40px, 7vw, 80px);
      }
    }
  }

  .category_read_wrap {
    padding-top: 40px;
    text-align: center;

    .category_read {
      line-height: 2.5;
      font-weight: bold;
      font-size: 18px;
    }
    .category_read_bold {
      margin-top: 20px;
      line-height: 1.5;
      font-weight: bold;
      font-size: 30px;
    }
  }
}

/* --- land --- */
.land {
  .land_inner {
    margin: 0 auto;
    padding: 73px 50px 35px;
    border-radius: 16px;
    background-color: #ebebeb;

    .land-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 14px;

      .land-content {
        flex: 1 1 41%;

        .land-title {
          margin-bottom: 30px;
          line-height: 1.5;
          font-size: 30px;
          font-weight: bold;

          @media screen and (max-width: 1200px) {
            font-size: 2.5vw;
          }
        }

        .land-text {
          margin-bottom: 66px;
          line-height: 1.7;
          font-size: 12px;
          font-weight: bold;
        }

        .land_link {
          display: flex;
          justify-content: left;

          .link_btn {
            min-width: 120px;
          }
        }
      }

      .land-image {
        flex: 1 1 39%;

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

/* title */
.title_wrap {
  margin-top: 0;
  margin-bottom: 32px;
  font-weight: bold;

  &.title_flex {
    display: flex;
    gap: 24px;
    justify-content: left;
    align-items: baseline;

    .title_desc {
      width: auto;
      margin: 0;
    }
  }

  .title_desc {
    margin: 57px auto;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    line-height: 2;
  }

  .title_desc_bold {
    margin: 10px auto;
    line-height: 2;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: #000;
  }

  .title_link {
    margin-left: auto;
  }

  h2 {
    line-height: 1.5;
    font-size: 40px;
    text-align: center;
    color: var(--primary-color);

    small {
      font-size: 83%;
    }
  }
}

/* section_header */
.section_header {
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #fff;

  .section_header_title {
    line-height: 1.5;
    letter-spacing: 2px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 80px;
    font-weight: normal;
  }
  .section_header_desc {
    font-size: 20px;
    font-weight: bold;
  }
}

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

  &.show {
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  /* 背景画像固定 */
  .bg {
    &.mv_bg {
	height: 30vh;
	margin-top: 51px;
    }

    &.points_bg {
      top: unset;
      position: absolute;
      height: 200px;
    }
  }

  /* MV */
  .mv {
    height: 30vh;
    /*height: 60vh;*/
    .mv_inner {
      width: 87%;
      top: 5vh;
      left: 50%;
      transform: translateX(-50%);

      .mv_lead {
        font-size: clamp(12px, 3.5vw, 14px);
      }

      .mv_title {
        margin: 2vw 0;
        font-size: clamp(20px, 6vw, 40px);
        /*font-size: clamp(20px, 8vw, 40px);*/
      }

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

  /* CUSTOM */
  .custom {
    padding-top: 40px;

    .custom_inner {
      .custom_title_wrap {
        margin-bottom: 20px;

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

	.custom_title_desc {
	    margin: 30px auto;
	    line-height: 1.8;
	    font-size: clamp(12px, 4vw, 16px);
	    text-align: left;
	    font-weight: normal;
	}
      }
    }
  }

  /* CONCEPT */
  .concept_slider_wrap {
    .concept_slider {
      width: 80%;

      .concept_item {
        margin: 0;

        img {
          width: 100%;
          display: flex;
          margin: 0 auto;
        }

        .slide_lead {
          padding: 10px 0;

          .slide_title {
            font-size: clamp(16px, 4.8vw, 16px);
            line-height: 1.3;
            /* line-height: 1.5;
            font-size: 20px;
            font-weight: bold; */
          }

          .slide_desc,
          .slide_points {
		font-size: clamp(10px, 3.5vw, 14px);
		font-weight: normal;
		/* line-height: 1.4;
          }

          .slide_desc {
            margin-top: 5px;
            /* margin-top: 13px; */
          }

          .slide_points {
            /* list-style-type: disc;
            padding-left: 10px; */
          }
        }
      }
    }

    .swiper-arrows {
      .swiper-button-prev,
      .swiper-button-next {
        color: var(--primary-color);
        font-size: 20px;
        top: 40%;
      }

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

  /* works */
  .works {
    padding: 50px 0 80px;

    .title_wrap {
      h2 {
        font-size: clamp(23px, 7.8vw, 32px);
      }

      .title_desc {
        font-size: clamp(16px, 4.8vw, 18px);
      }
    }
  }

  /* POINTS */
  .points {
    height: 200px;

    .section_header {
      height: 200px;
      margin-bottom: 0;
    }
  }

  /* CATEGORY */
  .category {
    padding: 0;

    .category_list {
      width: 95%;
      margin: 20px auto;
      gap: 50px;

      .category_list_item {
        display: block;

	.fade_list_img {
	    width: 70%;
	    height: 17em;
	    margin: auto;
	}

        .category_list_text {
          padding: 0;
          min-width: unset;

          .category_list_subtitle {
            margin: 15px 0 10px;
            font-size: clamp(17px, 5vw, 20px);
          }

          .category_list_desc {
            margin-bottom: 10px;
            font-size: clamp(12px, 3.5vw, 14px);
            font-weight: normal;
            line-height: 1.7em;
          }

          .category_list_points {
            margin-bottom: 10px;
            font-size: clamp(12px, 3.5vw, 14px);
          }
        }
      }

      .category_list_item--reverse {
        flex-direction: unset;
      }

      .category_read_wrap {
        padding-top: 40px;
        padding-bottom: 30px;

        .category_read {
          line-height: 2.2;
          font-size: clamp(14px, 3.8vw, 16px);
        }
        .category_read_bold {
          line-height: 1.6;
          font-size: clamp(17px, 5vw, 20px);
        }
      }
    }
  }

  /* land */
  .land {
    .land_inner {
      padding: 35px 25px;
      /* margin: 0 auto;
      padding: 73px 50px 35px;
      border-radius: 16px;
      background-color: #ebebeb; */

      .land-container {
        flex-direction: column;
        align-items: flex-start;
        flex-direction: column-reverse;
        gap: 35px;
        /* display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 14px; */

        .land-content,
        .land-image {
          /* flex: 1 1 100%; */
        }

        .land-content {
          /* flex: 1 1 450px; */

          .land-title {
            margin-bottom: 20px;
            font-size: clamp(17px, 5vw, 20px);
            /* margin-bottom: 30px;
            line-height: 1.5;
            font-size: 30;
            font-weight: bold; */
          }

          .land-text {
		margin-bottom: 35px;
		font-size: clamp(12px, 3.5vw, 14px);
		font-weight: normal;
            /* margin-bottom: 66px;
            line-height: 1.7;
            font-size: 12px;
            font-weight: bold; */
          }
          .land_link {
            justify-content: center;
          }
        }
        .land-image {
          /* flex: 1 1 430px; */

          img {
            /* width: 100%;
            border-radius: 10px;
            object-fit: cover; */
          }
        }
      }
    }
  }

  /* title */
  .title_wrap {
    margin-bottom: 20px;

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

      .title_desc {
        margin-top: 6px;
        font-size: clamp(16px, 4.8vw, 18px);
        text-align: left;
      }
    }

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

    .title_desc_bold {
      font-size: clamp(12px, 4vw, 16px);
    }

    h2 {
      font-size: clamp(23px, 7.8vw, 32px);
    }
  }

  .section_header {
    height: 40vw;
    margin-bottom: 10px;

    .section_header_title {
      font-size: clamp(38px, 13vw, 52px);
    }

    .section_header_desc {
      font-size: clamp(12px, 3.5vw, 14px);
    }
  }
}
