@charset "UTF-8";
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/*********************************************************************
  フォントサイズ
    $font-size: フォントサイズ(必須)
    $line-height: ラインハイト or 空
    $letter-spacing: レタースペーシング or 空
**********************************************************************/
/* ************************************************
 *	施工事例
 * ************************************************ */
/* 一覧
----------------------------------------*/
.post__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 5vw;
}
@media print, screen and (min-width: 600px) {
  .post__list {
    gap: 40px 30px;
  }
}
.post__list a {
  display: block;
}
@media print, screen and (min-width: 1160px) {
  .post__list a {
    transition: opacity 0.4s;
  }
  .post__list a:hover {
    opacity: 0.6;
  }
}
.post__list .post__list-ttl {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 4px;
}
@media print, screen and (min-width: 600px) {
  .post__list .post__list-ttl {
    font-size: 1.6rem;
  }
}

.post__category {
  display: flex;
  gap: 0 8px;
  line-height: 1;
  margin-top: 8px;
}
.post__category span, .post__category a {
  display: inline-block;
  background-color: #292624;
  color: #fff;
  font-size: 1.2rem;
  border: 1px solid #292624;
  padding: 4px 8px;
}
@media print, screen and (min-width: 1160px) {
  .post__category a {
    transition: all 0.4s ease;
  }
  .post__category a:hover {
    background-color: #fff;
    color: #292624;
  }
}

.post-list__title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 8px;
}
@media print, screen and (min-width: 1160px) {
  .post-list__title {
    font-size: 2rem;
  }
}

.pagination-area {
  font-size: 1.4rem;
  padding-top: 40px;
}
.pagination-area .pagination {
  display: flex;
  justify-content: center;
}

.pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  color: #5A5A5A;
  font-size: 1.4rem;
  line-height: 1;
  text-decoration: none;
  border: 1px solid #5A5A5A;
  margin: 0 5px;
}
@media print, screen and (min-width: 1160px) {
  .pagination a {
    transition: all 0.4s ease;
  }
  .pagination a:hover {
    opacity: 0.6;
  }
}

.pagination a.prev,
.pagination a.next {
  padding: 7px 15px;
}

.pagination a.prev {
  margin-right: 10px;
}
@media print, screen and (min-width: 600px) {
  .pagination a.prev {
    margin-right: 20px;
  }
}

.pagination a.next {
  margin-left: 10px;
}
@media print, screen and (min-width: 600px) {
  .pagination a.next {
    margin-left: 20px;
  }
}

.nav-links {
  display: flex;
  justify-content: center;
}

.pagination span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 1.4rem;
  line-height: 1;
}

.pagination span.current {
  background-color: #5A5A5A;
  color: #fff;
  margin: 0 4px;
}

h2.screen-reader-text {
  display: none;
}

/* カテゴリーページ
----------------------------------------*/
.category-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
@media print, screen and (min-width: 600px) {
  .category-ttl {
    font-size: 2rem;
    margin-bottom: 32px;
  }
}

/* シングルページ
----------------------------------------*/
.post__single-ttlContainer {
  margin-bottom: 24px;
}
@media print, screen and (min-width: 600px) {
  .post__single-ttlContainer {
    margin-bottom: 32px;
  }
}

.post__single_ttl {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding-top: 80px;
}
@media print, screen and (min-width: 600px) {
  .post__single_ttl {
    font-size: 3.2rem;
  }
}
@media print, screen and (min-width: 1160px) {
  .post__single_ttl {
    padding-top: 40px;
  }
}

.post__single-textBox {
  padding-top: 32px;
}
@media print, screen and (min-width: 600px) {
  .post__single-textBox {
    padding-top: 40px;
  }
}
.post__single-textBox img {
  margin: 24px 0;
}
.post__single-textBox a {
  text-decoration: underline;
}
.post__single-textBox.works img {
  margin: 0;
}
.post__single-textBox.works a {
  text-decoration: none;
}

.works__content:not(:last-child) {
  margin-bottom: 56px;
}
@media print, screen and (min-width: 600px) {
  .works__content:not(:last-child) {
    margin-bottom: 72px;
  }
}

.works__point-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media print, screen and (min-width: 600px) {
  .works__point-container {
    gap: 32px;
  }
}
.works__point-container .works__point-item-ttl {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
@media print, screen and (min-width: 600px) {
  .works__point-container .works__point-item-ttl {
    font-size: 1.6rem;
  }
}
.works__point-container .works__point-item-ttl span {
  display: inline-block;
  background-color: #5A5A5A;
  color: #fff;
  padding: 6px 12px;
}
.works__point-container .works__point-item-text {
  background-color: #eeeeee;
  padding: 16px min(5%, 30px);
}

.works__gallery-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5vw;
}
@media print, screen and (min-width: 600px) {
  .works__gallery-container {
    gap: 30px;
  }
}

.works__voice-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media print, screen and (min-width: 600px) {
  .works__voice-container {
    gap: 40px;
  }
}
.works__voice-container dt {
  position: relative;
  font-weight: 700;
  padding-left: 24px;
  margin-bottom: 12px;
}
@media print, screen and (min-width: 600px) {
  .works__voice-container dt {
    padding-left: 30px;
  }
}
.works__voice-container dt::before {
  position: absolute;
  top: 13px;
  left: 0;
  content: "";
  width: 14px;
  height: 1px;
  background-color: #5A5A5A;
}
@media print, screen and (min-width: 600px) {
  .works__voice-container dt::before {
    top: 15px;
    width: 16px;
  }
}
.works__voice-container dd {
  padding-left: 24px;
}
@media print, screen and (min-width: 600px) {
  .works__voice-container dd {
    padding-left: 30px;
  }
}

.works__voice-name {
  text-align: right;
  margin-top: 1.5em;
}

.post-back {
  text-align: center;
  margin: 16px auto 0;
  line-height: 1;
  margin: 36px auto 0;
}
@media print, screen and (min-width: 1160px) {
  .post-back {
    margin: 48px auto 0;
  }
}
.post-back a {
  display: inline-block;
  background-color: #5A5A5A;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  border: 1px solid #5A5A5A;
  padding: 16px;
}
@media print, screen and (min-width: 1160px) {
  .post-back a {
    transition: background-color 0.4s, color 0.4s;
  }
}
.post-back a span {
  position: relative;
  display: block;
  padding-right: 32px;
}
.post-back a span::before {
  position: absolute;
  top: calc(50% + 2px);
  right: 0;
  content: "";
  width: 18px;
  height: 1px;
  background-color: #fff;
  transition: 0.4s;
}
.post-back a span::after {
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  content: "";
  width: 11px;
  height: 1px;
  background-color: #fff;
  transform: rotate(40deg);
  transition: 0.4s;
}
@media print, screen and (min-width: 1160px) {
  .post-back a:hover {
    background-color: #fff;
    color: #5A5A5A;
  }
  .post-back a:hover span::before, .post-back a:hover span::after {
    right: -4px;
    background-color: #5A5A5A;
  }
}/*# sourceMappingURL=posts.css.map */