@charset "UTF-8";

body {
	display: none;
}

/* =====
   ヘッダー
===== */
/* .header {
    position: fixed;
    top: 0;
    inset: 0;
    z-index: 10;
} */
.header__topic {
    color: var(--primary-black); 
}

.closebox {
  display: flex;
  align-items: center;
  align-items: center;
}
.close {
  display: flex;
}
.close span {
  color: var(--primary-black);
  font-family: var(--primary-font02);
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.8s ease;
}
.close:hover span {
  opacity: 0.3;
}
.space {
  width: 5px;
}
.closebox::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1.5px;
  background: var(--primary-black);
  margin-right: 6px;
}

/* =====
   ヘッダーエンド
===== */

.work__box {
    position: relative;
    padding: 0 5.5%;
}

.slider {
    position: relative;
}

  .slider__box {
    width: 500px;
    margin: 40px auto 91px;
}
  .slider-img img {
    display: block;
    margin: 0 auto;
    height: auto;
    width: 500px;
}
  .slide-arrow {
    cursor: pointer;
    position: absolute;
    bottom: 0;
    height: 0;
    margin: auto;
    top: 0;
}
  
  
  .prev-arrow {
    background-image: url(../images/left.svg);
    background-position: center;
    background-repeat: no-repeat;
    width: 27px;
    height: 55px;
    left: 0%;
}
  .next-arrow {
    background-image: url(../images/right.svg);
    background-position: center;
    background-repeat: no-repeat;
    width: 27px;
    height: 55px;
    right: 0%;
}
  button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
}


.slick-num {
    font-family: var(--primary-font02);
    font-weight: 700;
    color: var(--primary-black);
    font-size: 2rem;
    position: absolute;
    bottom: -7px;
    right: 5.5%;
  }


  .photo {
    font-family: var(--primary-font02);
    color: #d6d6d6;
    font-size: 1.6rem;
    font-weight: 700;
    position: absolute;
    bottom: -6px;
}

@media screen and (max-width: 1080px) {
    .close span {
      font-size: 2rem; 
    }
    .closebox::before {
      width: 12px;
      margin-right: 5px;
    }
    .slider__box {
      width: 450px;
      margin: 40px auto 40px;
    }
    .slider-img img {
      width: 450px;
    }
    .work__box02 {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-direction: row-reverse;
      margin-top: 0px;
    }
    .slick-num {
      position: static;
    }
    .photo {
      position: static;
    }
    .copy {
      padding: 20px 0;
    }
}

@media screen and (max-width: 769px) {
  .close span {
    font-size: 1.8rem; 
  }

  .closebox::before {
    width: 7px;
    height: 1px;
    margin-right: 3px;
  }
}

@media screen and (max-width: 580px) {

      .slider__box {
        width: 100%;
        margin: 30px 0 0;
    }
      .slider-img img {
        width: 100%;
    }


    button {
      display: none;
    }
    .slide-arrow {
      width: 0.5px;
      height: 0.5px;
      left: 0%;
      display: none;
    }
    .prev-arrow {
      width: 0.5px;
      height: 0.5px;
      display: none;
    }
    .next-arrow {
      display: none;
    }



    .close {
      font-size: 1.4rem;
    }
    .close::before {
      width: 7px;
      height: 1px;
    }

    .work__box02 {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-direction: row-reverse;
      margin-top: 20px;
    }
    .slick-num {
      position: static;
      font-size: 1.6rem;
    }
    .photo {
      position: static;
      font-size: 1.4rem;
    }
    .copy {
    padding: 20px 0;
  }

}