@charset "UTF-8";
:root {
  --scale: 0.0694444444vw;
  --max: 1;
}
@media screen and (max-width: 767px) {
  :root {
    --scale: 0.2666666667vw;
    --max: 10;
  }
}

/* ページネーション
------------------------------*/
.pagination {
  margin-top: min(calc(50 * var(--scale)), calc(50px * var(--max)));
  display: flex;
  justify-content: center;
  gap: 0 min(calc(25 * var(--scale)), calc(25px * var(--max)));
}
@media (max-width: 767px) {
  .pagination {
    gap: 0 min(calc(16 * var(--scale)), calc(16px * var(--max)));
    margin-top: 10.5%;
  }
}

.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: min(calc(40 * var(--scale)), calc(40px * var(--max)));
  height: min(calc(40 * var(--scale)), calc(40px * var(--max)));
  border-radius: 50%;
  font-size: min(calc(24 * var(--scale)), calc(24px * var(--max)));
  font-weight: 600;
  color: #1d2957;
  border: 2px solid #1d2957;
  padding: 0 0.2em;
}
@media (max-width: 767px) {
  .page-numbers {
    font-size: min(calc(20 * var(--scale)), calc(20px * var(--max)));
    min-width: min(calc(35 * var(--scale)), calc(35px * var(--max)));
    height: min(calc(35 * var(--scale)), calc(35px * var(--max)));
  }
}
.page-numbers.next, .page-numbers.prev {
  width: unset;
  height: min(calc(40 * var(--scale)), calc(40px * var(--max)));
  padding: 0.5em 1.1em;
  border-radius: 1.7em;
  font-size: min(calc(18 * var(--scale)), calc(18px * var(--max)));
  line-height: normal;
  font-weight: 700;
}
@media (max-width: 767px) {
  .page-numbers.next, .page-numbers.prev {
    font-size: min(calc(18 * var(--scale)), calc(18px * var(--max)));
    padding: 0.5em;
  }
}
.page-numbers.current {
  background: #1d2957;
  color: #fff;
}

/*------------------------------
施工事例一覧
------------------------------*/
.works-archive__content {
  padding: min(calc(50 * var(--scale)), calc(50px * var(--max))) 0 min(calc(175 * var(--scale)), calc(175px * var(--max)));
}
@media (max-width: 767px) {
  .works-archive__content {
    padding: 11% 0 18%;
  }
}

.works-archive__list {
  display: flex;
  flex-direction: column;
  gap: min(calc(25 * var(--scale)), calc(25px * var(--max))) 0;
  padding: 0 3%;
}
@media (max-width: 767px) {
  .works-archive__list {
    padding: 0;
    gap: min(calc(16 * var(--scale)), calc(16px * var(--max))) 0;
  }
}

.works-archive__item {
  background: #fff;
  box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.07);
  padding: min(calc(15 * var(--scale)), calc(15px * var(--max)));
}
.works-archive__item a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (hover: hover) {
  .works-archive__item a:hover {
    opacity: 1;
  }
  .works-archive__item a:hover .works-archive__link {
    background: #1d2957;
    color: #fff;
  }
  .works-archive__item a:hover .works-archive__link::before, .works-archive__item a:hover .works-archive__link::after {
    background: #fff;
  }
}
@media (max-width: 767px) {
  .works-archive__item {
    padding: 7% 3% 6%;
  }
  .works-archive__item a {
    flex-direction: column;
  }
}

.works-archive__thumbnail {
  width: 25.3%;
  aspect-ratio: 1/1;
}
.works-archive__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .works-archive__thumbnail {
    width: 100%;
    margin-top: 7%;
    aspect-ratio: 315/220;
  }
}

.works-archive__body {
  width: 74.7%;
  padding-left: 3%;
  padding-top: 1.8%;
}
@media (max-width: 767px) {
  .works-archive__body {
    width: 100%;
    padding: 0;
  }
}

.works-archive__date {
  font-size: min(calc(16 * var(--scale)), calc(16px * var(--max)));
  font-weight: 400;
  font-family: "Roboto Condensed", sans-serif;
  color: #b1bcbe;
}

.works-archive__headline {
  color: #080907;
  font-size: min(calc(22 * var(--scale)), calc(22px * var(--max)));
  font-weight: 700;
  margin-top: 0.6em;
}
@media (max-width: 767px) {
  .works-archive__headline {
    font-size: min(calc(20 * var(--scale)), calc(20px * var(--max)));
    line-height: 1.4;
    margin-top: 0;
  }
}

.works-archive__info {
  margin-top: min(calc(30 * var(--scale)), calc(30px * var(--max)));
  display: flex;
  gap: 0 min(calc(10 * var(--scale)), calc(10px * var(--max)));
}
@media (max-width: 767px) {
  .works-archive__info {
    background: #f7f7f9;
    margin-top: 7%;
    padding: 3.6% 5.3%;
    padding-right: 0;
    gap: 0 min(calc(20 * var(--scale)), calc(20px * var(--max)));
  }
}

.works-archive__info-item {
  width: min(calc(170 * var(--scale)), calc(170px * var(--max)));
  background: #f7f7f9;
  padding: min(calc(5 * var(--scale)), calc(5px * var(--max))) min(calc(10 * var(--scale)), calc(10px * var(--max)));
}
.works-archive__info-item:first-child dt {
  background: #f46b26;
}
.works-archive__info-item:nth-child(2) dt {
  background: #68A047;
}
.works-archive__info-item:nth-child(3) dt {
  background: #6B6B6A;
}
.works-archive__info-item dt {
  display: inline-block;
  font-size: min(calc(12 * var(--scale)), calc(12px * var(--max)));
  line-height: 1.6666666667;
  font-weight: 400;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  padding: 0 0.5em;
  border-radius: 0.17em;
}
.works-archive__info-item dd {
  font-size: min(calc(14 * var(--scale)), calc(14px * var(--max)));
  font-weight: 400;
  line-height: normal;
  color: #484848;
  margin-top: 0.4em;
}
@media (max-width: 767px) {
  .works-archive__info-item {
    padding: 0;
    width: min(calc(86 * var(--scale)), calc(86px * var(--max)));
  }
  .works-archive__info-item dt {
    line-height: 1.45;
  }
}

.works-archive__link {
  display: block;
  width: 15em;
  margin-top: min(calc(30 * var(--scale)), calc(30px * var(--max)));
  font-size: min(calc(16 * var(--scale)), calc(16px * var(--max)));
  font-weight: 700;
  text-align: center;
  border: min(calc(3 * var(--scale)), calc(3px * var(--max))) solid #1d2957;
  border-radius: min(calc(100 * var(--scale)), calc(100px * var(--max)));
  padding: 0.8em 0;
  position: relative;
  transition: all 0.3s;
}
.works-archive__link::before {
  transition: all 0.3s;
  content: "";
  position: absolute;
  top: 50%;
  left: 2.6em;
  transform: translateY(-50%);
  background: #1d2957;
  width: 1em;
  aspect-ratio: 1/1;
  -webkit-mask: url(../img/icon_magnifier.png) center/100% no-repeat;
          mask: url(../img/icon_magnifier.png) center/100% no-repeat;
}
.works-archive__link::after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  background: #1d2957;
  top: 50%;
  right: 1.6em;
  transform: translateY(-50%);
  width: 0.6em;
  aspect-ratio: 18/20;
  -webkit-mask: url(../img/icon_arrow.png) center/100% no-repeat;
          mask: url(../img/icon_arrow.png) center/100% no-repeat;
}
@media (max-width: 767px) {
  .works-archive__link {
    margin: 1.4em auto 0;
  }
}

/*------------------------------
施工事例詳細
------------------------------*/
.works-detail__content {
  padding: min(calc(60 * var(--scale)), calc(60px * var(--max))) 0 min(calc(173 * var(--scale)), calc(173px * var(--max)));
}
@media (max-width: 767px) {
  .works-detail__content {
    padding-top: 13%;
    padding-bottom: 19%;
  }
}

.works-detail__header {
  padding: 0 6.7%;
  padding-right: 3.6%;
  position: relative;
}
.works-detail__header::before {
  content: "";
  position: absolute;
  background: url(../img/dec02.svg) no-repeat center center/100%;
  aspect-ratio: 10/273;
  transform: translate(0, 0%);
  width: 0.95%;
  left: 3%;
  top: 0%;
}
@media (max-width: 767px) {
  .works-detail__header {
    padding: 0px 7.7%;
    padding-right: 0%;
  }
  .works-detail__header::before {
    background: url(../img/dec02_sp.svg) no-repeat center center/100%;
    aspect-ratio: 5/367;
    width: 1.47%;
    left: 1%;
  }
}

.works-detail__label {
  display: block;
  font-size: min(calc(20 * var(--scale)), calc(20px * var(--max)));
  font-weight: 700;
  color: #d09422;
  position: relative;
  padding-left: 3em;
}
.works-detail__label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #d09422;
  width: 2em;
  height: 1px;
}
@media (max-width: 767px) {
  .works-detail__label {
    padding-left: 2.4em;
    font-size: min(calc(12 * var(--scale)), calc(12px * var(--max)));
  }
  .works-detail__label::before {
    width: 1.6em;
  }
}

.works-detail__title {
  margin-top: min(calc(20 * var(--scale)), calc(20px * var(--max)));
  font-size: min(calc(45 * var(--scale)), calc(45px * var(--max)));
  font-weight: 700;
  line-height: normal;
  color: #1d2957;
}
@media (max-width: 767px) {
  .works-detail__title {
    margin-top: 0.5em;
    font-size: 20px;
  }
}

.works-detail__info {
  margin-top: 5%;
  display: flex;
  flex-wrap: wrap;
  border: 2px solid #dedede;
}
@media (max-width: 767px) {
  .works-detail__info {
    flex-direction: column;
    margin-top: 10%;
  }
}

.works-detail__info-item {
  width: 33.3%;
  display: flex;
}
.works-detail__info-item:nth-child(n+4) {
  border-top: 2px solid #dedede;
}
.works-detail__info-item dt {
  width: 33.8%;
  font-size: min(calc(14 * var(--scale)), calc(14px * var(--max)));
  font-weight: 700;
  color: #1d2957;
  background: #e9eaf0;
  padding: min(calc(22 * var(--scale)), calc(22px * var(--max))) 4%;
  padding-right: 0;
}
.works-detail__info-item dd {
  width: 66.2%;
  font-size: min(calc(16 * var(--scale)), calc(16px * var(--max)));
  font-weight: 700;
  padding: min(calc(22 * var(--scale)), calc(22px * var(--max))) min(calc(15 * var(--scale)), calc(15px * var(--max)));
}
@media (max-width: 767px) {
  .works-detail__info-item {
    width: 100%;
  }
  .works-detail__info-item:nth-child(n+2) {
    border-top: 2px solid #dedede;
  }
  .works-detail__info-item dt {
    width: 35%;
    padding: 4.15% 4%;
    padding-right: 0;
  }
  .works-detail__info-item dd {
    width: 65%;
    padding: 4.15% 4%;
    font-size: min(calc(14 * var(--scale)), calc(14px * var(--max)));
  }
}

.works-detail__thumbnail {
  margin-top: 3.4%;
  padding: 0 2.7%;
}
.works-detail__thumbnail img {
  aspect-ratio: 1021/486;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .works-detail__thumbnail {
    margin-top: 10%;
    padding: 0;
  }
}

.works-detail__body {
  margin-top: min(calc(70 * var(--scale)), calc(70px * var(--max)));
  display: flex;
  flex-direction: column;
  gap: min(calc(55 * var(--scale)), calc(55px * var(--max))) 0;
  padding: 0 2.7%;
}
@media (max-width: 767px) {
  .works-detail__body {
    gap: min(calc(32 * var(--scale)), calc(32px * var(--max))) 0;
    padding: 0;
    margin-top: 15%;
  }
}

.works-detail__item:first-child .works-detail__headline::before {
  background: url(../img/post-icon01.png) no-repeat center center/contain;
}
.works-detail__item:nth-child(2) .works-detail__headline::before {
  background: url(../img/post-icon02.png) no-repeat center center/contain;
}
.works-detail__item:nth-child(3) .works-detail__headline::before {
  background: url(../img/post-icon03.png) no-repeat center center/contain;
}
.works-detail__item:nth-child(4) .works-detail__headline::before {
  background: url(../img/post-icon04.png) no-repeat center center/contain;
}
.works-detail__item:nth-child(5) .works-detail__headline::before {
  background: url(../img/post-icon05.png) no-repeat center center/contain;
}

.works-detail__headline {
  font-size: min(calc(26 * var(--scale)), calc(26px * var(--max)));
  font-weight: 700;
  line-height: normal;
  color: #1d2957;
  padding-bottom: 0.3em;
  position: relative;
  border-bottom: 3px solid #e4e6ec;
  margin-left: min(calc(54 * var(--scale)), calc(54px * var(--max)));
}
.works-detail__headline::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  background: #d09422;
  width: min(calc(90 * var(--scale)), calc(90px * var(--max)));
  height: 3px;
}
.works-detail__headline::before {
  content: "";
  position: absolute;
  top: 0.1em;
  left: -2em;
  width: 1.3em;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .works-detail__headline {
    font-size: min(calc(20 * var(--scale)), calc(20px * var(--max)));
    padding-bottom: 0.45em;
    margin-left: 2.2em;
  }
}

.works-detail__text {
  margin-top: min(calc(40 * var(--scale)), calc(40px * var(--max)));
  margin-left: min(calc(54 * var(--scale)), calc(54px * var(--max)));
  font-size: min(calc(18 * var(--scale)), calc(18px * var(--max)));
  font-weight: 400;
  line-height: 2;
}
@media (max-width: 767px) {
  .works-detail__text {
    margin-top: 1em;
    margin-left: 0;
    padding-right: 0.5em;
    line-height: 1.8;
    font-size: min(calc(14 * var(--scale)), calc(14px * var(--max)));
  }
}

.works-detail__comparison {
  width: 69%;
  margin: 0 auto;
  margin-top: min(calc(40 * var(--scale)), calc(40px * var(--max)));
  display: flex;
  justify-content: space-between;
  position: relative;
}
.works-detail__comparison::before {
  content: "";
  position: absolute;
  background: url(../img/dec03.svg) no-repeat center center/100%;
  aspect-ratio: 50/29;
  transform: translate(-50%, 10%);
  width: 7%;
  left: 50%;
  top: 50%;
}
.works-detail__comparison li {
  width: 42.5%;
}
.works-detail__comparison li img {
  aspect-ratio: 300/300;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .works-detail__comparison {
    width: 77%;
    flex-direction: column;
    gap: min(calc(68 * var(--scale)), calc(68px * var(--max))) 0;
    margin-top: 9%;
  }
  .works-detail__comparison::before {
    background: url(../img/dec03_sp.svg) no-repeat center center/100%;
    aspect-ratio: 30/33;
    transform: translate(-50%, -50%);
    width: 12%;
    left: 50%;
    top: 50%;
  }
  .works-detail__comparison li {
    width: 100%;
  }
}

.works-detail__before span {
  display: block;
  background: #d9d9d9;
  border-radius: min(calc(20 * var(--scale)), calc(20px * var(--max))) min(calc(20 * var(--scale)), calc(20px * var(--max))) 0 0;
  font-size: min(calc(26 * var(--scale)), calc(26px * var(--max)));
  font-weight: 700;
  color: #1d2957;
  text-align: center;
  line-height: normal;
}
@media (max-width: 767px) {
  .works-detail__before span {
    font-size: min(calc(16 * var(--scale)), calc(16px * var(--max)));
    line-height: 1.7;
  }
}

.works-detail__after span {
  display: block;
  background: #1d2957;
  border-radius: min(calc(20 * var(--scale)), calc(20px * var(--max))) min(calc(20 * var(--scale)), calc(20px * var(--max))) 0 0;
  font-size: min(calc(26 * var(--scale)), calc(26px * var(--max)));
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: normal;
}
@media (max-width: 767px) {
  .works-detail__after span {
    font-size: min(calc(16 * var(--scale)), calc(16px * var(--max)));
    line-height: 1.7;
  }
}

.works-detail__image {
  width: 42%;
  margin: 0 auto;
  margin-top: min(calc(40 * var(--scale)), calc(40px * var(--max)));
  aspect-ratio: 430/300;
}
.works-detail__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .works-detail__image {
    width: 77%;
    aspect-ratio: 1/1;
    margin-top: 9%;
  }
}
/*# sourceMappingURL=post.css.map */