@charset "UTF-8";
/* 共通 ------------------------------*/

/*---------------------------------------------------*/
/*--------------------category------------------------*/
/*----------------------------------------------------*/
.category {
  /*background: url(../img/category_img/DSC02591-min.jpg) no-repeat center center/cover;*/
  height: 357px;
  position: relative;
  margin-bottom: 88px;
}
@media screen and (max-width: 767px) {
  .category {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .category {
    height: 588px;
  }
}

.category-inner {
  color: #ffffff;
  pointer-events: auto;
}

.category-position {
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .category-position {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
  }
}

.category-tittle {
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 27px;
  font-family: Gill Sans;
}

.category-subtitle {
  font-size: 4rem;
  letter-spacing: 2.5px;
  margin-bottom: 24px;
  white-space: pre-wrap;
  font-family: Gill Sans;
}

/*---------------------------------------------------*/
/*--------------------explain------------------------*/
/*----------------------------------------------------*/
.explain {
  margin-bottom: 127px;
  margin-top: 88px;
}
@media screen and (max-width: 767px) {
  .explain {
    margin-bottom: 60px;
  }
}

.explain-inner {
  max-width: 956px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 956px) {
  .explain-inner {
    padding: 0 20px;
  }
}

.explain-title {
  font-size: 3.2rem;
  letter-spacing: 1.6px;
  line-height: 1.6875;
  font-weight: bold;
margin-bottom: 32px;
}

/*.explain-subtitle {
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 1.6875;
  margin-bottom: 32px;
}*/

.explain-p {
  letter-spacing: 0.9px;
  line-height: 1.6875;
}

/*---------------------------------------------------*/
/*--------------------works------------------------*/
/*----------------------------------------------------*/
.works {
    background-color: #000;
}
.works-items {
  display: flex;
  flex-wrap: wrap;
}

.works-item {
  max-width: 100%;
  width: 33.3%;
  overflow: hidden;
  background: #000;
}
.works-item:hover img {
  opacity: 0.5;
  transition-duration: 0.3s;
}
.works-item img {
  box-sizing: border-box;
  width: 100%;
  border-collapse: collapse;
  height: 30.2vw;
  border: 1px solid #000000;
  cursor: pointer;
  transition-duration: 0.3s;
}

/*---------------------------------------------------*/
/*--------------------works詳細スライダー------------------------*/
/*----------------------------------------------------*/
/* ---------------------------- */
/* --- Base --- */
/* ---------------------------- */
/* モーダル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.9);
}
@media screen and (min-width: 768px) {
  .modal {
    padding: 0 80px;
  }
}

/* モーダルがactiveの時 */
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* モーダル背景のオーバーレイ部分 */
.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* モーダルのコンテンツ */
.modal__content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .modal__content {
    max-width: 100%;
  }
}

.modal_inner {
  width: 100%;
  max-width: 1043;
  margin: 0 auto;
}

/* 閉じるボタン */
.modal__close-btn {
  position: fixed;
  right: 1%;
  top: 3.5%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 20;
}

.modal__close-btn:hover {
  opacity: 0.8;
}

/* 閉じるボタンのX */
.lineClose {
  display: inline-block;
  vertical-align: middle;
  color: #cecece;
  line-height: 1;
  width: 2rem;
  height: 0.1rem;
  background: currentColor;
  border-radius: 0.1rem;
  position: relative;
  transform: rotate(45deg);
}

.lineClose::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

.swiper-slide img {
  width: 100%;
}

.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -8%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 23px;
  border-color: transparent transparent transparent #ffffff;
  opacity: 0.5;
}
@media screen and (max-width: 1029px) {
  .swiper-button-next {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-next {
    position: absolute;
    top: 50%;
    right: 1%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 507px) {
  .swiper-button-next {
    position: absolute;
    top: 50%;
    right: 1%;
    transform: translateY(-50%);
  }
}
.swiper-button-next::after {
  content: "";
}

.swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -8%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 23px 10px 0;
  opacity: 0.5;
  border-color: transparent #ffffff transparent transparent;
}
@media screen and (max-width: 1029px) {
  .swiper-button-prev {
    position: absolute;
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-prev {
    position: absolute;
    top: 50%;
    left: 1%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 507px) {
  .swiper-button-prev {
    position: absolute;
    top: 50%;
    left: 1%;
    transform: translateY(-50%);
  }
}
.swiper-button-prev::after {
  content: "";
}

/*---------------------------------------------------*/
/*--------------------footer個別設定------------------------*/
/*----------------------------------------------------*/
/*footer {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  footer {
    margin-top: 0px;
    padding-top: 67px;
  }
}*/