@charset "UTF-8";

#contents {
  background-color: #fff;
}

/* MV */
.mv {
  img {
    width: 100% !important;
  }
}

/* staff */
.staff {
  width: 700px;
  max-width: 90%;
  margin: 0 auto 80px;

  &.staff_header {
    margin-bottom: 20px;
    color: #1a1a1a;

    h2 {
      font-size: 16px;
      line-height: 1.7;
    }
    .staff_header_title {
      margin: 20px 0;
      font-size: 24px;
      font-weight: bold;
    }

    .staff_header_role {
      line-height: 1.7;
      font-size: 12px;
      font-weight: bold;
    }

    .staff_header_name {
      margin-bottom: 53px;
      line-height: 1.7;
      font-size: 15px;
      font-weight: bold;
    }

    .staff_header_desc {
	line-height: 2.5;
	font-size: 15px;
	font-weight: normal;
	margin-bottom: 7em;
    }
  }

  &.staff_list {
    .staff_inner {
      .staff_item {
                margin-bottom: 35px;
                font-size: 14px;
                line-height: 1.7em;

        img {
          width: auto;
          height: auto;
          max-width: 100%;
        }

        .staff_item_title {
          margin: 16px 0 2px;
          line-height: 1.7;
          font-size: 15px;
          font-weight: bold;
        }

        .staff_item_desc {
          margin-top: 13px;
          line-height: 1.7;
          font-size: 15px;
          font-weight: normal;
        }
      }
    }
  }
}

/* GALLERY_LIST */
.gallery_list {
  margin-top: 45px;
  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%;
        height: 100%;
        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;
        object-fit: cover;
        padding: 50px 50px 0;
      }
    }
  }

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

/* CREATERS */
.other-contents.creaters {
  padding: 14px 0 70px;

  .showcase_slider {
    .slick-prev,
    .slick-next {
      top: 50%;
      color: #222;
    }
  }

  .other-contents_item {

	.zoom_img img{
	width: 270px;
	}
    .zoom_img::before {
        content: "";
        display: block;
        background-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.8) 100%);
        position: absolute;
        width: 100%;
        height: 40%;
        left: 0;
        bottom: 0;
        z-index: 1;
    }
    .other-contents_item_text {
	top: 0;
	padding: 25px 16px 16px;
	z-index: 3;

      .other-contents_item_desc {
        margin-top: 0;
	height: auto;
	font-size: 14px;
	margin-bottom: 1em;
}
      }

      .other-contents_item_staff {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 0.5em;
	box-sizing: border-box;

        .other-contents_item_role {
	font-size: 12px;
	font-weight: normal;
        }

        .other-contents_item_name {
          margin-top: 5px;
          font-size: 14px;
        }
      }
    }
  }
}

@media screen and (max-width: 768px) {
  /* staff */
  .staff {
    &.staff_header {
      margin-bottom: 50px;

      h2 {
        font-size: clamp(14px, 4.2vw, 16px);
      }
      .staff_header_title {
        margin: 0 0 20px;
        font-size: clamp(20px, 6vw, 24px);
      }

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

      .staff_header_name {
        margin-bottom: 20px;
        font-size: clamp(13px, 4.2vw, 16px);
      }
      .staff_header_desc {
        line-height: 1.6;
        font-size: clamp(13px, 3.6vw, 14px);
      }
    }

    &.staff_list {
      .staff_inner {
        .staff_item {
          margin-bottom: 50px;

          .staff_item_title {
            margin: 13px 0 5px;
            font-size: clamp(13px, 4.2vw, 16px);
          }

          .staff_item_desc {
            line-height: 1.6;
            font-size: clamp(13px, 3.6vw, 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);
        }
      }
    }
  }

  /* CREATERS */
  .other-contents.creaters {
    padding: 50px 0 70px;

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

    .other-contents_item {
      .other-contents_item_text {
        .other-contents_item_desc {
          font-size: clamp(15px, 3.8vw, 18px);
        }
        .other-contents_item_staff {
          .other-contents_item_role {
            font-size: clamp(10px, 2.6vw, 12px);
          }

          .other-contents_item_name {
            font-size: clamp(12px, 3vw, 14px);
          }
        }
      }
    }
  }










/* GALLERY_LIST */
.gallery_list {
  margin-top: 45px;
  background-color: #222;

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

  .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%;
        height: 10em;
        border-radius: 10px;
        object-fit: cover;
        vertical-align: bottom;
      }
    }
  }
}





}
