@charset "UTF-8";

/* MV  */
.mv {
  img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%!important;
    height: 100%!important;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
  }

  .black_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s linear;
  }

  .hero {
    position: relative;
    height: 140vh;

    .hero_inner {
      position: absolute;
      top: 63vh;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      text-align: center;
      color: #fff;

      h2 {
        line-height: 1.5;
        font-size: 80px;
        font-weight: bold;
      }

      p {
        line-height: 1.5;
        font-size: 24px;
        font-weight: bold;
      }
    }
  }

  .desc {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: transparent;
    text-align: center;

    .desc_inner {
      display: flex;
      flex-direction: column;
      gap: 30px;

      p {
        margin-bottom: 60px;
        font-size: 15px;
        font-weight: bold;
        line-height: 2;
        text-align: left;
        width: 90%;
        max-width: 900px;
        margin: auto;
      }

      iframe {
        margin: 0 auto;
        width: 460px;
        height: 258px;
      }
    }
  }
}

/* STAFF-ROLES */
.staff-roles {
  width: 100%;
  padding: 83px 0 125px;
  background-color: #fff;

  .staff-roles_inner {
    width: 990px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;

    .staff-role {
      .staff-role_heading {
        margin: 0 0 18px;
        font-size: 14px;
        font-weight: bold;
        letter-spacing: 0.06em;
        color: #000;
        border-bottom: 2px solid #000;
        padding-bottom: 6px;
      }

      .staff-role_card {
        display: flex;
        gap: 18px;
        align-items: flex-start;

        .staff-role_thumb {
          img {
            width: 100%;
            height: 100%;
            display: block;
          }
        }

        .staff-role_body {
          flex: 1;
          min-width: 0;

          .staff-role_label {
            margin: 0 0 5px;
            font-size: 10px;
            font-weight: 700;
            color: #333;
          }

          .staff-role_name {
            margin: 0 0 12px;
            font-size: 16px;
            font-weight: bold;
            color: #333;
          }

          .staff-role_desc {
            margin: 0;
            font-size: 12px;
            color: #000;
          }
        }
      }
    }
  }
}

/* KITCHEN */
.kitchen {
  padding-bottom: 270px;

  .section_inner {
    padding-top: 130px;
  }
}

/* LIVING */
.living {
  padding-bottom: 270px;
}

/* GARAGE */
.garage {
  padding-bottom: 230px;
}

/* ENTRANCE */
.entrance {
  padding-bottom: 125px;
}

/* GALLERY_LIST */
.gallery_list {
  background-color: #222;

  .gallery_list_bg {
    width: 1000px;
    max-width: 90%;
    margin: 0 auto;
    padding: 118px 0 167px;
  }

  .gallery_list_title {
    margin-bottom: 23px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
  }

  .gallery_list_inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    width: 100%;
    justify-content: center;
    gap: 50px;
    margin: 0 auto;

    .gallery_list_item {
      position: relative;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
      cursor: pointer;
      color: #000;
      width: 100%;
      max-width: 100%;
      min-width: 200px;
      aspect-ratio: 1 / 1;

      img {
        width: 100%!important;
        height: 100%!important;
        border-radius: 10px;
        object-fit: cover;
        vertical-align: bottom;
      }
    }
  }
}

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

  .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;
    z-index: 10;
    width: 1300px;
    max-width: 90%;
    max-height: 90%;
  }

  .modal_close {
    position: absolute;
    top: 0;
    right: 30px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 40px;
    color: #fff;
    z-index: 2;
  }

  .swiper-wrapper {
    align-items: center;
  }

  .gallery_slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;

    .swiper-slide {
      text-align: center;
    }

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

    .modal_image_wrap {
      img {
	max-height: 80vh;
	width: auto;
	display: block;
	margin: auto;
	/*padding: 50px 50px 0;*/
      }

      .modal_image_desc {
        color: #fff;
        font-size: 16px;
        margin-top: 15px;
      }
    }
  }

  .swiper-button-prev,
  .swiper-button-next {
    color: #fff !important;
    font-size: 24px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
  }
}

/* OTHER WORKS */
.other-contents.other_works {
  padding: 14px 0 70px;

  .showcase_slider {
    .slick-prev,
    .slick-next {
      top: 50%;
      color: #222;
    }
  }
  .other-contents_img img {
	filter: brightness(80%);
  }
  .other-contents_item_desc {
                margin-bottom: 8px;
  }
  .other-contents_item {
    .other-contents_item_text {
            width: 90%;
            margin: auto;
            box-sizing: border-box;
            padding: 0;
    }
  }
}


/* SECTION */
.section {
  background-color: #fff;

  .section_header {
    position: relative;

    img {
      width: 100%!important;
max-width: 100%!important;
    max-height: 100%!important;
    }

    .section_header_title {
      position: absolute;
      top: 60px;
      left: 130px;
      list-style: 1.5em;
      font-size: 80px;
      font-weight: bold;
      color: #fff;
    }
  }

  .section_inner {
    width: 1000px;
    max-width: 90%;
    margin: 0 auto;

    .section_text {
      padding-top: 36px;
      font-size: 18px;
      font-weight: bold;
      line-height: 2;
    }

    .section_list {
      margin-top: 75px;
      background-color: #fff;

      .gallery_list_inner {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
        width: 100%;
        justify-content: center;
        gap: 24px 20px;

        .gallery_list_item {
          position: relative;
          display: flex;
          flex-direction: column;
          box-sizing: border-box;
          cursor: pointer;
          color: #000;
          width: 100%;
          max-width: 100%;
          min-width: 200px;
          aspect-ratio: 1 / 1.3;

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

          .gallery_list_desc {
            margin-top: 13px;
            line-height: 2;
            font-size: 15px;
          }
        }
      }
    }
  }
}

@media screen and (max-width: 768px) {
  /* MV */
  .mv {
    max-width: 90%;
    margin: 0 auto 100px;

    .mv_img {
      height: 100vh;
    }

    .hero {
      height: 100vh;

      .hero_inner {
        top: 20vh;

        h2 {
          padding: 100px 0 20px;
          font-size: clamp(40px, 13vw, 50px);
        }

        p {
          margin-top: 10px;
          font-size: clamp(18px, 5.6vw, 20px);
        }
      }
    }

    .desc {
      height: max-content;

      .desc_inner {
        p {
                    margin: 0 5%;
                    padding: 0;
                    font-size: clamp(12px, 3.5vw, 14px);
                    font-weight: normal;
        }

        iframe {
          width: 100%;
          height: 14em;
        }
      }
    }
  }

  /* STAFF-ROLES */
  .staff-roles {
    padding: 90px 0;

    .staff-roles_inner {
      width: 100%;
      max-width: 90%;
      gap: 60px;
      grid-template-columns: 1fr;

      .staff-role {
        .staff-role_heading {
          margin: 0 0 13px;
          font-size: clamp(13px, 4vw, 16px);
        }

        .staff-role_card {
          .staff-role_body {
            flex: 1 70%;

            .staff-role_label {
              margin: 0 0 2px;
              font-size: clamp(10px, 2.6vw, 11px);
            }

            .staff-role_name {
              margin: 0 0 7px;
              font-size: clamp(14px, 4.5vw, 18px);
            }

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

.sp_detailmain_img{
	background: white;
	width: 100%;
	padding: 1em;
	box-sizing: border-box;
	img{
		width: 100% !important;
		height: auto;
		border-radius: 10px;
	}
}

  /* KITCHEN */
  .kitchen {
    .section_inner {
      padding-top: 0;
    }
  }

  /* SECTION */
  .section {
    padding-bottom: 100px;

    .section_header {
      height: 35vh;

      img {
        width: 100%!important;
        height: 100%!important;
        object-fit: cover;
      }

      .section_header_title {
        top: 10%;
        left: 5%;
        font-size: clamp(30px, 10vw, 40px);
      }
    }

    .section_inner {
      .section_text {
        padding-top: 30px;
        font-size: clamp(12px, 3.6vw, 15px);
        line-height: 1.9;
      }

      .section_list {
        margin-top: 50px;

        .gallery_list_inner {
          /*grid-template-columns: repeat(2, 1fr) !important;
          gap: 30px 15px;*/
            display: flex;
            justify-content: start;
            grid-template-columns: repeat(2, 1fr) !important;
            /* gap: 30px 15px; */
            width: fit-content;
            overflow: auto;

          .gallery_list_item {
            min-width: 50% !important;

            .gallery_list_desc {
              margin-top: 10px;
              line-height: 1.5;
              font-size: clamp(12px, 3.5vw, 14px);
            }
          }
        }
      }
    }
  }

  /* GALLERY_LIST */
  .gallery_list {
    .gallery_list_bg {
      padding: 80px 0;

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

      .gallery_list_inner {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;

        .gallery_list_item {
          min-width: 50% !important;
        }
      }
    }
  }

  /* MODAL */
  #gallery_modal {
    .modal_close {
      top: -60px;
      right: 0;
    }

    .gallery_slider {
      .modal_image_wrap {
        img {
          padding: 0;
        }

        .modal_image_desc {
          font-size: clamp(14px, 4.2vw, 16px);
          text-align: left;
        }
      }
    }
  }

  /* OTHER WORKS */
  .other-contents.other_works {
    padding: 50px 0 70px;

    .other-contents_header {
      .other-contents_desc {
        font-size: clamp(20px, 6.2vw, 24px);
      }
    }
  }
}
