@charset "UTF-8";

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  color: #000;
  background: #fff;
}

.modal-note {
  width: 100%;
  height: 100%;
  color: #000;
  background: #47B5BB;
}

.modal-cast-wrap,
.modal-staff-wrap,
.modal-pnote-wrap {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  box-sizing: border-box;
  line-height: 2em;
}

.modal-pnote-wrap .modal-title {
  width: 75%;
  margin: 0 auto;
  text-align: center;
}

.modal-pnote-wrap .modal-img {
  width: 100%;
  margin: 20px auto 40px;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
}
.modal-pnote-wrap .modal-title img,
.modal-pnote-wrap .modal-img img {
  display: block;
  width: 100%;
}

.modal-cast-img-Wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.modal-cast-img-Wrap .modal-photo {
  width: 48%;
  margin: 0;
  padding: 0;
  font-size: 0;
  border-radius: 5px;
  overflow: hidden;
}
.modal-cast-img-Wrap .modal-name {
  width: 48%;
}
.modal-cast-img-Wrap .modal-photo img,
.modal-cast-img-Wrap .modal-name img {
  display: block;
  width: 100%;
}

.modal-cast-wrap .modal-text {
  margin: 30px 0 0;
}

@media screen and (max-width: 768px) {
  .modal-pnote-wrap .modal-title {
    width: 100%;
  }
  .modal-cast-img-Wrap .modal-photo,
  .modal-cast-img-Wrap .modal-name {
    width: 100%;
  }
}