/*========================
header
========================*/
header {
  /* padding-bottom: 160px; */
}


header .logo.top {
  display: none;
}

main {
  padding-top: 220px;
}
@media only screen and (max-width: 640px) {
  main {
    padding-top: 150px;
  }
}

/*========================
セクションタイトル
========================*/
.sec_title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.3;
  font-family: "inria-sans", sans-serif;
}
@media only screen and (max-width: 640px) {
  .sec_title {
    font-size: 20px;
    padding-bottom: 20px;
  }
}

.sec_title.-center {
  text-align: center;
}

/*========================
ボトムリンク
========================*/
.bottom_link_wrap {
  margin-top: 120px;
}

.bottom_link_wrap .list {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.bottom_link_wrap .list .item {
  width: 49.5%;
  margin-bottom: 40px;
}
@media only screen and (max-width: 640px) {
  .bottom_link_wrap .list .item {
    width: 100%;
  }
}

.bottom_link_wrap .list .item .ph_wrap {
  width: 100%;
  height: 212px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .bottom_link_wrap .list .item .ph_wrap {
    height: 40vw;
  }
}

.bottom_link_wrap .list .item .ph_wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.bottom_link_wrap .list .item a:hover .ph_wrap img {
  transform: scale(1.04);
}

.bottom_link_wrap .list .item a {
  display: block;
  position: relative;
  color: #323232;
}

.bottom_link_wrap .list .item a:hover {
  opacity: 0.7;
}

.bottom_link_wrap .list .item a::after {
  content: 'works >';
  display: block;
  font-size: 12px;
  font-family: "inria-sans", sans-serif;
  font-weight: bold;
  color: #fff;
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.bottom_link_wrap .list .item .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: "inria-sans", sans-serif;
}
@media only screen and (max-width: 640px) {
  .bottom_link_wrap .list .item .title {
    font-size: 15px;
  }
}