.press-list {
  padding: 0 10vw;
  max-width: 1200px;
  margin: auto;
}
.press-item {
  margin-bottom: 150px;
}
.press-item:hover .press-img:after {
  width: calc(100% - 21px);
  height: calc(100% - 21px);
}
.press-item:hover .press-more:after {
  width: 100%;
}
.press-item:nth-child(even) .press-wrap {
  -webkit-flex-flow: row-reverse;
  flex-flow: row-reverse;
}
.press-item:last-child {
  margin-bottom: unset;
}
.press-wrap {
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.press-img {
  width: 35%;
  position: relative;
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.press-img.show {
  opacity: 1;
}
.press-img:after {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #BDA991;
  position: absolute;
  top: 10px;
  left: 10px;
  -moz-transition: width 0.6s, height 0.6s;
  -o-transition: width 0.6s, height 0.6s;
  -webkit-transition: width 0.6s, height 0.6s;
  transition: width 0.6s, height 0.6s;
}
.press-img img {
  width: 100%;
}
.press-content {
  width: 50%;
  border-bottom: 1px solid #ccc;
}
.press-date {
  font-size: 0.75em;
  color: #BDA991;
  padding-bottom: 5px;
  opacity: 0;
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  -moz-transition: opacity 0.6s, -moz-transform 0.6s;
  -o-transition: opacity 0.6s, -o-transform 0.6s;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
}
.show .press-date {
  opacity: 1;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.press-title {
  color: #000;
  opacity: 0;
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  -moz-transition: opacity 0.6s, -moz-transform 0.6s;
  -o-transition: opacity 0.6s, -o-transform 0.6s;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
}
.show .press-title {
  opacity: 1;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.press-title:after {
  content: "";
  width: 10px;
  height: 3px;
  background: #BDA991;
  display: block;
  margin: 10px 0;
}
.press-text {
  margin: 15px 0 20px;
}
.show .press .text {
  opacity: 1;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.press-more {
  font-size: 0.75em;
  color: #000;
  width: fit-content;
  margin-left: auto;
  margin-right: 20px;
  position: relative;
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.show .press-more {
  opacity: 1;
}
.show .press-more:after {
  width: 200%;
}
.press-more:after {
  content: "";
  width: 0%;
  height: 2px;
  background: #BDA991;
  position: absolute;
  right: 0;
  bottom: -1px;
  -moz-transition: width 0.6s;
  -o-transition: width 0.6s;
  -webkit-transition: width 0.6s;
  transition: width 0.6s;
}

@media screen and (max-width: 1100px) {
  .press-list {
    padding: 0 50px;
  }
  .press-content {
    width: 55%;
  }
}
@media screen and (max-width: 800px) {
  .press-item {
    max-width: 600px;
    margin: 0 auto 150px;
  }
  .press-item:hover .press-img:after {
    width: 100%;
    height: 100%;
  }
  .press-wrap {
    display: block;
  }
  .press-img {
    width: calc(100% - 10px);
  }
  .press-content {
    width: auto;
    margin-top: 30px;
  }
}
@media screen and (max-width: 640px) {
  .press-list {
    padding: 0 20px;
  }
  .press-item {
    margin: 0 auto 100px;
  }
  .press-more {
    margin-right: 10px;
  }
}
