@charset "utf-8";

body{
  background-color: #F4F6F3;
}

.works-wrap {
  max-width: 1280px;
  width: 89%;
  margin: 150px auto;
  display: flex;
  justify-content: space-between;
  color: #333;
}

.works-colum-wrap {
  display: flex;
  flex-direction: column;
}

.works-ttl {
  position: relative;
  line-height: 1;
}
.works-ttl::before {
  content: "";
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  left: -25px;
  top: -8px;
  background-color: #03BFB5;
  border-radius: 50%;
}

.works-ttl h2 {
  font-size: clamp(2.75rem, -0.625rem + 7.0313vw, 5rem);
  color: #333333;
  font-weight: 500;
  margin: 0 0 5px 0;
}

.works-ttl p {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
}

.works-credits-wrap {
  margin-top: 125px;
  display: flex;
  flex-direction: column;
}

.works-credits-title {
  margin-bottom: 32px;
  font-size: 18px;
}

.works-credits-wrap p{
  font-size: 16px;
}
.works-credits-wrap p:nth-of-type(2n){
  margin-bottom: 20px;
}

.works-list {
  width: 66%;
  display: flex;
  flex-direction: column;
}

.works-item-ttl {
  position: relative;
}
.works-item-ttl::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #707070;
  margin: 15px 0 0 0;
}

.item-ttl-border {
  border-right: 1px solid #333333;
  margin-right: 10px;
  padding-right: 10px;
}

.item-ttl-border br{
  display: none;
}

.works-item-desc {
  margin: 28px 0 0 0;
}

.works-item-image {
  vertical-align: top;
  width: 100%;
  margin: 30px 0 0 0;
}

.works-pagenavi-wrap {
  display: flex;
  margin: 30px auto 136px 0;
  gap: 20px;
}

.works-pagenavi-forward {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFFFFF;
}

.works-pagenavi-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFFFFF;
}

.works-pagenavi-forward a,
.works-pagenavi-next a {
  line-height: 1;
}

.works-pagenavi-image {
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 768px) {
  .works-wrap {
    max-width: 1280px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
  }

  .works-colum-wrap {
    display: contents;
  }

  .works-ttl {
    order: 0;
    font-size: clamp(2.75rem, -0.625rem + 7.0313vw, 5rem);
    margin: auto;
  }

  .works-ttl p {
    text-align: center;
    margin: 0 0 47px 0;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
  }

  .works-item-desc {
    margin: 28px 0 0 0;
    
  }


  .item-ttl-border {
    border-right: 1px solid #333333;
    margin-right: 10px;
    padding-right: 10px;
  }

  .item-ttl-border br{
    display: block;
  }

  .works-list {
    order: 1;
    width: 100%;
    display: contents;
  }

  .works-credits-wrap {
    order: 2;
    margin-top: 30px;
  }

  .works-credits-title {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .works-pagenavi-wrap {
    order: 3;
    display: flex;
    justify-content: space-between;
    margin: 32px 0 60px 0;
    gap: 20px;
  }
}