/*--------------------------------------picture_book / photoArtcle
*/
.area-photoArtcle {
  padding: 10% 0 0 0;
}

@media screen and (max-width: 768px) {
  .area-photoArtcle {
    padding: 25% 0 0 0;
  }
}





.emFill--page::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #000;
  -webkit-transform: translate(-110%, 0);
  transform: translate(-110%, 0);
  -webkit-transition: 1.5s cubic-bezier(0.77, 0, 0.175, 1);
  transition: 1.5s cubic-bezier(0.77, 0, 0.175, 1);

  z-index: 2;
}

.emFill::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: 120%;
  height: 120%;
  background-color: #fff;
  -webkit-transform: translate(-10%, 0);
  transform: translate(-10%, 0);
  -webkit-transition: 1.5s cubic-bezier(0.77, 0, 0.175, 1);
  transition: 1.5s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1;
}

.emFill--page.active {
  color: #272727;
}

.emFill--page.active::before {
  -webkit-transform: translate(110%, 0);
  transform: translate(110%, 0);
}

.emFill.active::after {
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
}


/*--------------------------------------interview
*/
.area-interview {
  margin: 4% 10% 0 10%;
  border-top: 1px solid #d1d1d1;
}

@media screen and (max-width: 768px) {
  .area-interview {
    margin: 8% 5% 0 5%;
  }
}

.interview {}

.interview img {
  width: 100%;
  height: auto;
}

.interview__block {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 6.25% 0 0 0;
}

.interview__column-ph {
  width: 50%;
}

.interview__text {
  width: 50%;
  padding: 0 40px 0 0;
}

.interview__block--1column .interview__text {
  width: 100%;
  padding: 0 0 0 0;
}

.interview__text > dt {
  color: #272727;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.8;
  padding: 0 0 0 38px;
  margin: 0 0 0.8em 0;
  position: relative;
}

.interview__text > dt > span:nth-of-type(1) {
  font-family: Akrobat;
  font-size: 22px;
  letter-spacing: 0.2em;
  position: absolute;
  top: -0.05em;
  left: 0;
}

.interview__text p {
  color: #272727;
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  margin: 0 0 0 38px;
}

@media screen and (max-width: 1199px) {
  .interview__text {
    padding: 0 30px 0 0;
  }

  .interview__text > dt {
    font-size: 16px;
  }

  .interview__text > dt > span:nth-of-type(1) {
    font-size: 20px;
    top: -0.1em;
  }

  .interview__text p {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .interview__block {
    display: block;
    margin: 10% 0 13% 0;
  }

  .interview__column-ph {
    width: 100%;
    margin: 8% 0 0 0;
  }

  .interview__text {
    width: 100%;
    padding: 0 0 0 0;
  }

  .interview__text > dt {
    font-size: 16px;
    font-size: 4.26vw;
    line-height: 1.7;
    padding: 0 0 0 9%;
    margin: 0 0 0.8em 0;
  }

  .interview__text > dt > span:nth-of-type(1) {
    font-size: 18px;
    font-size: 4.8vw;
  }

  .interview__text p {
    font-size: 14px;
    font-size: 3.73vw;
    line-height: 1.9;
    margin: 0 0 0 0;
  }
}

.pagination {
  margin: 10% 0 2% 0;
  text-align: center;
  position: relative;
}

.pagination__btn {
  font-family: Akrobat;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.2em;
  display: inline-block;
  -webkit-transition: .3s;
  transition: .3s;
}

.pagination__btn:hover {
  opacity: .4;
}

.pagination__btn-next {
  padding: 0 58px 0 0;
  position: absolute;
  top: 0;
  left: calc(50% + 75px);
}

.pagination__btn-next:after {
  content: '';
  display: block;
  width: 40px;
  height: 100%;
  background: url("/newdoor/images/picture_book/arrow_next.png") no-repeat center center / contain;
  position: absolute;
  bottom: 4px;
  right: 0;
}

.pagination__btn-prev {
  padding: 0 0 0 58px;
  position: absolute;
  top: 0;
  right: calc(50% + 75px);
}

.pagination__btn-prev:after {
  content: '';
  display: block;
  width: 40px;
  height: 100%;
  background: url("/newdoor/images/picture_book/arrow_prev.png") no-repeat center center / contain;
  position: absolute;
  bottom: 4px;
  left: 0;
}

@media screen and (max-width: 768px) {
  .pagination {
    margin: 10% 0 12% 0;
  }

  .pagination__btn {
    font-size: 20px;
    font-size: 5.33vw;
  }

  .pagination__btn-next {
    padding: 0 15% 0 0;
    left: 64%;
  }

  .pagination__btn-next:after {
    width: 40%;
    bottom: 3px;
  }

  .pagination__btn-prev {
    padding: 0 0 0 58px;
    right: 64%;
  }

  .pagination__btn-prev:after {
    width: 40%;
    bottom: 3px;
  }
}



























