@charset "UTF-8";
/*---------------------------------------------
    common
---------------------------------------------*/
/*---------------------------------------------
    main img
  ---------------------------------------------*/
.mv {
  align-items: center;
  background: url(../images/mv_works.jpg) no-repeat;
  background-size: cover;
  display: flex;
  height: 400px;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 820px) {
  .mv {
    height: 180px;
  }
}
.mv .page-title {
  background: rgba(255, 255, 255, 0.7);
  display: inline-block;
  font-size: 3.6rem;
  padding: 2px 50px 0;
}
@media screen and (max-width: 820px) {
  .mv .page-title {
    font-size: 2.4rem;
  }
}

/*---------------------------------------------
    main
---------------------------------------------*/
#main {
  padding-top: 120px;
}

article .entry-ttl {
  background: #fff;
  border-left: 4px solid #e9450a;
  font-size: 2.2rem;
  padding: 4px 10px;
}
article .metadate {
  display: flex;
  gap: 24px;
  margin: 8px 0 40px;
}
article .metadate .cat {
  background: #333;
  color: #fff;
  padding: 0 24px;
}
article .metadate .date {
  color: #666;
}
article img {
  display: block;
  margin: 0 auto;
}
article p {
  margin-bottom: 1em;
}
article .back a {
  background: #d55313;
  border-radius: 24px;
  color: #fff;
  display: block;
  font-size: 1.8rem;
  height: 48px;
  line-height: 48px;
  margin: 40px auto;
  max-width: 300px;
  text-align: center;
  width: 90%;
}
article .back a::after {
  content: "▶";
  display: inline-block;
  font-size: 1rem;
  margin-left: 8px;
  position: relative;
  top: -4px;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  text-decoration: underline;
}

/*---------------------------------------------
    works
---------------------------------------------*/
.works {
  background: #f7f3ec;
  margin: 0 auto;
  max-width: 980px;
  width: 90%;
}
.works .section-ttl {
  margin-bottom: 24px;
  text-align: center;
}
.works .inner .works-list {
  align-items: center;
  display: flex;
  gap: 40px;
  justify-content: center;
  margin: 0 auto;
  max-width: 1280px;
  width: 90%;
}
@media screen and (max-width: 820px) {
  .works .inner .works-list {
    flex-direction: column;
  }
}
.works .inner .works-list article {
  background: #f7f3ec;
  padding: 20px;
  width: 30%;
}
@media screen and (max-width: 820px) {
  .works .inner .works-list article {
    width: 100%;
  }
}
.works .inner .works-list article .img img {
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
  aspect-ratio: 4/2.6;
     object-fit: cover;
}
.works .inner .works-list article .txt-box {
  position: relative;
}
.works .inner .works-list article .cat {
  background: #999;
  color: #fff;
  display: inline-block;
  font-size: 1.2rem;
  padding: 1px 8px;
  position: absolute;
  right: 0;
  top: 0;
}
.works .inner .works-list article .date {
  margin-bottom: 8px;
}
.works .inner .works-list article .ttl {
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 8px;
}
.works .inner .works-list article .txt {
  display: -webkit-box;
  font-size: 1.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  max-height: 80px;
}
.works.list {
  background: #fff;
  margin-bottom: 80px;
  max-width: 1280px;
}
.works.list .inner .works-list {
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.works.list .inner .works-list article {
  background: #f7f3ec;
  margin-bottom: 40px;
  max-width: 1280px;
}
.works .btn {
  margin: 40px auto;
}

#pager {
  display: flex;
  justify-content: center;
}
#pager span, #pager a {
  align-items: center;
  border-radius: 50%;
  display: flex;
  height: 32px;
  justify-content: center;
  margin: 0 8px;
  width: 32px;
}
#pager span {
  background: #47413e;
  color: #fff;
}