@charset "UTF-8";
header.single-header {
  background-color: var(--works-back);
}
header.single-header .header_title_L {
  width: 320px;
  max-width: 320px;
}
header.single-header .header_title_L .header_subtitle {
  background-color: var(--works-color);
  display: inline-block;
}
header.single-header .header_title_R {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header.single-header .header_title_R.has-subtitle h1 {
  padding-bottom: 8px;
  border-bottom: 1px solid #666;
  margin-bottom: 8px;
}

article {
  padding: 40px 0;
}
article .works-gallery-main {
  text-align: center;
  margin-bottom: 20px;
}
article .works-gallery-main img {
  display: block;
  margin: 0 auto;
}
article .works-gallery-thumbs {
  max-width: 1100px;
  margin: 0 auto 40px;
  background-color: #f5f5f5;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
article .works-gallery-thumbs .works-thumb {
  width: calc((100% - 40px) / 5);
  cursor: pointer;
  opacity: 0.6;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
article .works-gallery-thumbs .works-thumb.active, article .works-gallery-thumbs .works-thumb:hover {
  opacity: 1;
}
article .works-gallery-thumbs .works-thumb img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.works_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 0px;
  overflow: hidden;
}
.works_list .archive-thumbnail {
  width: 100%;
  overflow: hidden;
}
.works_list .archive-thumbnail img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.works_list .archive-button {
  padding: 10px;
}
.works_list .archive-button .btn {
  display: block;
  width: 100%;
  padding: 4px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-weight: normal;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.works_list .archive-button .btn:hover {
  opacity: 0.8;
}
.works_list .archive-button .btn.status-available {
  background-color: #FFF;
  color: var(--works-color);
}
.works_list .archive-button .btn.status-available:hover {
  background-color: var(--works-color);
  color: #FFF;
}
.works_list .archive-title {
  font-size: 18px;
  padding: 20px 0;
  margin: 0 auto;
  text-align: center;
}
.works_list .archive-details {
  width: 100%;
  padding: 0;
}
.works_list .archive-details .archive-detail-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  font-size: 14px;
}
.works_list .archive-details .archive-detail-item .label {
  min-width: 80px;
  font-weight: bold;
  color: #666;
}
.works_list .archive-details .archive-detail-item .value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #333;
}

@media screen and (max-width: 768px) {
  .build_now {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.single_archive-list {
  margin-bottom: 40px;
}

.single_archive-title {
  border-bottom: 10px solid var(--works-color);
}

.works_list_btn {
  position: relative;
  text-align: center;
  margin: 0 auto 60px;
  max-width: 340px;
  padding: 5px 10px;
  font-size: 16px;
  background-color: var(--works-color);
  color: #FFF;
  border: 1px solid var(--works-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.works_list_btn a {
  color: #FFF;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.works_list_btn::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: #FFF;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.works_list_btn::before {
  content: "→";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  color: #333;
  font-size: 14px;
  z-index: 1;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.works_list_btn:hover {
  background-color: #FFF;
  border-color: #333;
  color: #333;
}
.works_list_btn:hover a {
  color: #333;
}
.works_list_btn:hover::after {
  background-color: #333;
}
.works_list_btn:hover::before {
  color: #FFF;
}