/* page-notes */

.page-notes {
  width: 100%;
  height: 40%;
  color: #493931;
  font-family: 'Noto Serif JP', serif;
  background: #F9DDD0;
}
.wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.photo-wrap {
  width: 44%;
  padding: 70px 3% 0;
  background: #fff;
}
.note-title {
  margin: 0 0 5%;
}
.text-wrap {
  width: 56%;
  padding: 70px 4% 40px;
}
.note-text {
  width: 100%;
  height: calc(40vw - 110px);
  font-size: 14px;
  line-height: 2em;
  /* overflow-y: auto; */
}

@media screen and (max-width: 999px) {
  .photo-wrap {
    padding: 50px 3% 0;
    background: #fff;
  }
  .text-wrap {
    padding: 50px 4% 30px;
  }
  .note-text {
    height: calc(35vw - 40px);
    font-size: 13px;
    line-height: 2em;
  }
}

@media screen and (max-width: 759px) {
  .photo-wrap {
    width: 100%;
    padding: 10vw 4% 8vw;
  }
  .text-wrap {
    width: 100%;
    padding: 8vw 4%;
  }
  .note-text {
    height: auto;
  }
}