@charset "UTF-8";

/* information */
.information .inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
.information .pagination {
  margin: 40px 0 100px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.information .pagination li {
  margin: 0 10px;
}
.information .pagination li a {
  color: #000;
  text-decoration: underline;
  display: block;
}
.information .actorsLink {
  padding-bottom: 100px;
}
.information .actorsLink .p1 {
  margin-bottom: 20px;
  text-align: center;
}
.information .actorsLink .p1 img {
  width: 100px;
}
.information .actorsLink .imgList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.information .actorsLink .imgList li {
  width: 9.1%;
  margin-left: 1%;
  margin-top: 1%;
}
.information .actorsLink .imgList li:nth-child(-n+10) {
  margin-top: 0;
}
.information .actorsLink .imgList li:first-child,
.information .actorsLink .imgList li:nth-child(11n) {
  margin-left: 0;
}
.information .actorsLink .imgList li .img {
  position: relative;
  overflow: hidden;
}
.information .actorsLink .imgList li .img span {
  display: block;
}
.information .actorsLink .imgList li .img span:before {
  content: "";
  display: block;
  padding-top: 127.6%;
}
.information .actorsLink .imgList li .img:after {
  transition: 0.3s;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: rgba(31,172,155,0.6);
  opacity: 0;
}
.information .actorsLink .imgList li .img:before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  right: 5px;
  bottom: 5px;
  background: url("../img/common/arrow_green.svg") no-repeat;
  background-size: 10px 10px;
  z-index: 1;
}
.information .actorsLink .imgList li img {
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.information .actorsLink .p2 {
  margin: 40px 0 20px;
  text-align: center;
}
.information .actorsLink .p2 img {
  width: 248px;
}
.information .black .pagination li {
  color: #fff;
}
.information .black .pagination li a {
  color: #fff;
}

/* detail */
.detail {
  padding-bottom: 100px;
}
.detail h3.title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}
.detail h3.title span {
  font-size: 16px;
  margin-right: 10px;
}
.detail h3.title .tag {
  background: #000;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  padding: 2px 5px;
  line-height: 1;
}
.detail .img {
  margin: 40px 0;
  text-align: center;
}
.detail .img img {
  max-width: 470px;
}
.detail .txt {
  margin-bottom: 40px;
  overflow: hidden;
}
.detail .txt a {
  color: #000;
  text-decoration: underline;
}
.detail .inner .txt p + p {
  margin-top: 20px;
}
.detail .actorsName {
  display: flex;
  max-width: 600px;
  justify-content: space-between;
  align-items: center;
  margin: 40px auto;
  padding: 40px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.detail .actorsName .name {
  display: flex;
  align-items: center;
  flex-flow: row;
}
.detail .actorsName .name a {
  color: #000;
  text-decoration: underline;
}
.detail .actorsName .img {
  position: relative;
  width: 170px;
  margin: 0;
}
.detail .actorsName .img:before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: url("../img/common/arrow_green.svg") no-repeat;
  background-size: 15px 15px;
}
.detail .actorsName .img:after {
  transition: 0.3s;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: rgba(31,172,155,0.6);
  opacity: 0;
}
.detail .actorsName .img img {
  width: 100%;
}
.wrapBlack .detail {
  color: #fff;
}
.wrapBlack .detail .txt a {
  color: #fff;
}
.wrapBlack .detail h3.title .tag {
  background: #fff;
  color: #000;
}

@media all and (-ms-high-contrast: none) {
  .detail h3.title .tag {
    padding-top: 4px;
    padding-bottom: 0;
  }
}

@media (min-width: 769px) {
  .information .pagination li a:hover {
    text-decoration: none;
  }
  .information .actorsLink .imgList li a:hover .img:before {
    background: url("../img/common/arrow_white.svg") no-repeat;
    background-size: 10px 10px;
    z-index: 1;
  }
  .information .actorsLink .imgList li a:hover .img:after {
    opacity: 1;
  }
  .detail .txt a:hover {
    text-decoration: none;
  }
  .detail .actorsName .name a:hover {
    text-decoration: none;
  }
  .detail .actorsName a:hover .img:before {
    background: url("../img/common/arrow_white.svg") no-repeat;
    background-size: 15px 15px;
    z-index: 1;
  }
  .detail .actorsName a:hover .img:after {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .information .hdg1 img {
    max-width: 90%;
    width: 333px;
  }
  .information .inner {
    max-width: 100%;
    padding: 0 15px;
  }
  .information .pagination {
    margin: 30px 0 50px;
  }
  .information .pagination li {
    margin: 0 10px;
    font-size: 14px;
  }
  .information .actorsLink {
    padding-bottom: 50px;
  }
  .information .actorsLink .p1 {
    margin-bottom: 15px;
  }
  .information .actorsLink .p1 img {
    width: 78px;
  }
  .information .actorsLink .imgList li {
    width: 18.4%;
    margin-left: 2%;
    margin-top: 2%;
  }
  .information .actorsLink .imgList li:nth-child(-n+10) {
    margin-top: 2%;
  }
  .information .actorsLink .imgList li:nth-child(11n) {
    margin-left: 2%;
  }
  .information .actorsLink .imgList li:nth-child(-n+5) {
    margin-top: 0;
  }
  .information .actorsLink .imgList li:first-child,
  .information .actorsLink .imgList li:nth-child(5n+1) {
    margin-left: 0;
  }
  .information .actorsLink .imgList li .img:before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    right: 5px;
    bottom: 5px;
    background: url("../img/common/arrow_green.svg") no-repeat;
    background-size: 10px 10px;
  }
  .information .actorsLink .p2 {
    margin: 30px 0 15px;
  }
  .information .actorsLink .p2 img {
    width: 193px;
  }
  
  /* detail */
  .detail {
    padding-bottom: 50px;
  }
  .detail h3.title {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .detail h3.title span {
    font-size: 14px;
  }
  .detail h3.title .tag {
    padding: 1px 5px;
  }
  .detail .img {
    margin: 30px auto;
  }
  .detail .img img {
    max-width: 100%;
  }
  .detail .txt {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .detail .inner .txt p + p {
    margin-top: 15px;
  }
  .detail .actorsName {
    max-width: 100%;
    margin: 30px auto;
    padding: 30px;
    font-size: 14px;
  }
  .detail .actorsName .img {
    width: 100px;
    margin: 0;
  }
  .detail .actorsName .img:before {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: url("../img/common/arrow_green.svg") no-repeat;
    background-size: 15px 15px;
  }
}