@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@keyframes down {
  0% {
    transform: rotate(0deg) translateY(0px);
  }
  10% {
    transform: rotate(0deg) translateY(0px);
  }
  40% {
    transform: rotate(0deg) translateY(10px);
  }
  60% {
    transform: rotate(0deg) translateY(10px);
  }
  90% {
    transform: rotate(0deg) translateY(0px);
  }
  100% {
    transform: rotate(0deg) translateY(0px);
  }
}
@keyframes line {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
section {
  width: 100%;
}
section#dialogue {
  width: 100%;
  padding: 184px 0 0 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
}
section#dialogue .hero {
  width: calc(100% - 136px);
  margin-bottom: 128px;
  clip-path: inset(0 100% 0 0);
  transition: all 0.5s ease-in 0.5s;
}
section#dialogue .hero.on {
  clip-path: inset(0 0 0 0);
}
section#dialogue .hero .inner {
  width: 100%;
  position: relative;
}
section#dialogue .hero .inner h2 {
  background-color: #FFF;
  padding: 0 4px 0 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0 4px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}
section#dialogue .hero .inner h2::before {
  content: "";
  width: 53px;
  height: 34px;
  background-image: url(../images/arrow_title.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  order: 2;
}
section#dialogue .hero .inner h2 span {
  color: #000000;
  font-family: "Poppins", serif;
  font-size: 4.9rem;
  font-weight: 100;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  order: 1;
}
section#dialogue .hero .inner h2 span:nth-child(2) {
  font-weight: 600;
  order: 3;
}
section#dialogue .hero .inner .photo {
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 570px 100%, 570px calc(100% - 65px), 0 calc(100% - 65px));
}
section#dialogue .hero .inner .title {
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: -4.4rem;
  gap: 24px 0;
  position: relative;
}
section#dialogue .hero .inner .title h3 {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#dialogue .hero .inner .title h4 {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#dialogue .hero .inner .title p {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#dialogue .profile {
  width: calc(100% - 136px);
  margin-bottom: 96px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  opacity: 0;
  transition: opacity 0.5s ease-in 0.5s;
}
section#dialogue .profile.on {
  opacity: 1;
}
section#dialogue .profile::before {
  content: "";
  width: 120px;
  height: 120px;
  background-image: url(../images/dialogue/cross_prof.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 120px);
  left: calc(50% - 60px);
  z-index: 1;
}
section#dialogue .profile h3 {
  color: #000000;
  font-family: "Poppins", serif;
  font-size: 6.4rem;
  font-weight: 100;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  background-color: #FFF;
  padding: 4px 8px 4px 0;
  position: absolute;
  top: -36px;
  left: 0pz;
  z-index: 1;
}
section#dialogue .profile .person {
  text-align: left;
  width: calc(50% - 40px);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px 0;
}
section#dialogue .profile .person .photo {
  width: 100%;
}
section#dialogue .profile .person dl {
  width: calc(100% - 112px);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px 0;
}
section#dialogue .profile .person dl dt {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#dialogue .profile .person dl dd {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#dialogue .profile .person p {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.875;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  width: calc(100% - 112px);
}
section#dialogue .chapter {
  width: calc(100% - 136px);
  opacity: 0;
  transition: opacity 0.5s ease-in 0.5s;
}
section#dialogue .chapter.on {
  opacity: 1;
}
section#dialogue .chapter:not(:last-child) {
  margin-bottom: 144px;
}
section#dialogue .chapter.final {
  width: 100%;
}
section#dialogue .chapter.final .inner {
  width: calc(100% - 136px);
  margin: 0 0 64px auto;
}
section#dialogue .chapter.final .inner .title {
  position: relative;
  top: auto;
}
section#dialogue .chapter.final .inner::after {
  content: "";
  width: calc(65% - 16px);
  height: 5px;
  background-color: #0059b8;
  border-radius: 3px 0 0 3px;
  position: relative;
  transform: translateY(80px);
  display: block;
}
section#dialogue .chapter.final .comment {
  width: 100%;
  position: relative;
}
section#dialogue .chapter.final .comment .ph {
  width: 100%;
}
section#dialogue .chapter.final .comment .text {
  width: 100%;
  height: 100%;
  padding: 0 0 80px 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  top: 0px;
  left: 0px;
}
section#dialogue .chapter.final .comment .text .intext {
  width: calc(100% - 272px);
  padding: 32px;
  background-color: #FFF;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}
section#dialogue .chapter.final .comment .text .intext::before {
  content: "";
  width: 1px;
  background-color: #000000;
  display: block;
  order: 2;
}
section#dialogue .chapter.final .comment .text .intext > div {
  width: calc(50% - 50px);
  order: 1;
}
section#dialogue .chapter.final .comment .text .intext > div:nth-child(2) {
  order: 3;
}
section#dialogue .chapter.final .comment .text .intext > div p {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.875;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  text-align: left;
}
section#dialogue .chapter .inner {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 16px;
}
section#dialogue .chapter .inner .title {
  text-align: left;
  width: 35%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: sticky;
  top: 184px;
}
section#dialogue .chapter .inner .title::before {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #5ad0c0;
  margin-bottom: 64px;
  border-radius: 3px;
  display: block;
  order: 2;
}
section#dialogue .chapter .inner .title h3 {
  color: #000000;
  font-family: "Poppins", serif;
  font-size: 6.4rem;
  font-weight: 100;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  margin-bottom: 16px;
  order: 1;
}
section#dialogue .chapter .inner .title h4 {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  order: 3;
}
section#dialogue .chapter .inner .title h5 {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  order: 4;
}
section#dialogue .chapter .inner .text {
  text-align: left;
  width: calc(65% - 16px);
  padding: 80px 0 0 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 64px 0;
}
section#dialogue .chapter .inner .text::before {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #0059b8;
  border-radius: 3px 0 0 3px;
  display: block;
}
section#dialogue .chapter .inner .text h5 {
  width: calc(100% - 136px);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 16px;
}
section#dialogue .chapter .inner .text h5::before {
  content: "";
  width: 32px;
  height: 1px;
  background-color: #000000;
  position: relative;
  transform: translateY(1.5rem);
  display: block;
  flex-shrink: 0;
}
section#dialogue .chapter .inner .text h5 span {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  text-align: left;
}
section#dialogue .chapter .inner .text dl {
  width: calc(100% - 136px);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 24px;
}
section#dialogue .chapter .inner .text dl dt {
  width: 126px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px 0;
}
section#dialogue .chapter .inner .text dl dt.p1::before {
  background-image: url(../images/dialogue/icon_person1.jpg);
}
section#dialogue .chapter .inner .text dl dt.p2::before {
  background-image: url(../images/dialogue/icon_person2.jpg);
}
section#dialogue .chapter .inner .text dl dt::before {
  content: "";
  width: 126px;
  height: 126px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  clip-path: circle(50% at 50% 50%);
}
section#dialogue .chapter .inner .text dl dt p {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#dialogue .chapter .inner .text dl dd {
  width: calc(100% - 126px - 24px);
}
section#dialogue .chapter .inner .text dl dd p {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.875;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#dialogue .chapter .inner .text dl dd p:not(:last-child) {
  margin-bottom: 24px;
}
section#dialogue .chapter .inner .text dl dd p.notice {
  font-size: 1.2rem;
}
section#dialogue .chapter .inner .text dl dd p sub {
  font-size: 1.2rem;
}
section#dialogue .chapter .inner .text .ph {
  width: calc(100% - 136px);
}
section#dialogue .chapter .inner .text .pset {
  width: calc(100% - 136px);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}
section#dialogue .chapter .inner .text .pset > div {
  width: calc(50% - 10px);
}
section#dialogue .chapter .inner .text .phl {
  width: 100%;
}

@media screen and (max-height: 640px) {
  .sec.sec2::before {
    bottom: 0px;
  }
  .sec.sec2 .inner .message p {
    color: #000000;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.875;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  .sec.sec2 .inner .message p:not(:last-child) {
    margin-bottom: 10px;
  }
}
/* --------------------------------------- Media Queries Smartphone --------------------------------------- */
@media screen and (max-width: 768px) {
  section#dialogue {
    width: 100%;
    padding: 92px 0 0 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;
  }
  section#dialogue .hero {
    width: calc(100% - 16px);
    margin-bottom: 64px;
  }
  section#dialogue .hero .inner h2 {
    background-color: #FFF;
    padding: 0 4px 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0 4px;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
  }
  section#dialogue .hero .inner h2::before {
    width: 31px;
    height: 20px;
  }
  section#dialogue .hero .inner h2 span {
    color: #000000;
    font-family: "Poppins", serif;
    font-size: 2.4rem;
    font-weight: 100;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    order: 1;
  }
  section#dialogue .hero .inner h2 span:nth-child(2) {
    font-weight: 600;
    order: 3;
  }
  section#dialogue .hero .inner .photo {
    margin-bottom: 16px;
    clip-path: none;
  }
  section#dialogue .hero .inner .title {
    padding: 0 16px 0 0;
    margin-top: 0;
    gap: 16px 0;
    position: relative;
  }
  section#dialogue .hero .inner .title h3 {
    color: #000000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#dialogue .hero .inner .title h4 {
    color: #000000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#dialogue .hero .inner .title p {
    color: #000000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.875;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#dialogue .profile {
    width: calc(100% - 16px);
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 16px 0;
    position: relative;
  }
  section#dialogue .profile::before {
    width: 40px;
    height: 40px;
    position: relative;
    top: auto;
    left: auto;
    order: 2;
  }
  section#dialogue .profile h3 {
    color: #000000;
    font-family: "Poppins", serif;
    font-size: 3.6rem;
    font-weight: 100;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    padding: 4px 8px 4px 0;
    top: -24px;
    left: 0px;
  }
  section#dialogue .profile .person {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px 0;
  }
  section#dialogue .profile .person:nth-child(2) {
    order: 1;
  }
  section#dialogue .profile .person:nth-child(3) {
    order: 3;
  }
  section#dialogue .profile .person .photo {
    width: 100%;
  }
  section#dialogue .profile .person dl {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px 0;
  }
  section#dialogue .profile .person dl dt {
    color: #000000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#dialogue .profile .person dl dd {
    color: #000000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#dialogue .profile .person p {
    color: #000000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.875;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    width: calc(100% - 16px);
  }
  section#dialogue .chapter {
    width: calc(100% - 16px);
  }
  section#dialogue .chapter:not(:last-child) {
    margin-bottom: 64px;
  }
  section#dialogue .chapter.final {
    width: 100%;
  }
  section#dialogue .chapter.final .inner {
    width: calc(100% - 16px);
    margin: 0 0 16px auto;
  }
  section#dialogue .chapter.final .inner .title {
    position: relative;
    top: auto;
  }
  section#dialogue .chapter.final .inner::after {
    content: "";
    width: calc(65% - 16px);
    height: 5px;
    background-color: #0059b8;
    border-radius: 3px 0 0 3px;
    position: relative;
    transform: translateY(80px);
    display: block;
  }
  section#dialogue .chapter.final .comment {
    width: 100%;
    position: relative;
  }
  section#dialogue .chapter.final .comment .ph {
    width: 100%;
  }
  section#dialogue .chapter.final .comment .text {
    width: 100%;
    height: 100%;
    padding: 0 0 40px 0;
    margin: -64px 0 0 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    top: auto;
    left: auto;
  }
  section#dialogue .chapter.final .comment .text .intext {
    width: calc(100% - 16px);
    padding: 16px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
  }
  section#dialogue .chapter.final .comment .text .intext > div {
    width: calc(50% - 16px);
    order: 1;
  }
  section#dialogue .chapter.final .comment .text .intext > div:nth-child(2) {
    order: 3;
  }
  section#dialogue .chapter.final .comment .text .intext > div p {
    color: #000000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.875;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#dialogue .chapter .inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px 0;
  }
  section#dialogue .chapter .inner .title {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    top: auto;
  }
  section#dialogue .chapter .inner .title::before {
    content: "";
    width: 100%;
    height: 5px;
    margin-bottom: 16px;
    border-radius: 2px;
  }
  section#dialogue .chapter .inner .title h3 {
    color: #000000;
    font-family: "Poppins", serif;
    font-size: 4rem;
    font-weight: 100;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    margin-bottom: 8px;
    order: 1;
  }
  section#dialogue .chapter .inner .title h4 {
    color: #000000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    order: 3;
  }
  section#dialogue .chapter .inner .title h5 {
    color: #000000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    order: 4;
  }
  section#dialogue .chapter .inner .text {
    width: 100%;
    padding: 16px 0 0 0;
    gap: 32px 0;
  }
  section#dialogue .chapter .inner .text::before {
    content: "";
    width: 100%;
    height: 5px;
    background-color: #0059b8;
    border-radius: 3px 0 0 3px;
    display: block;
  }
  section#dialogue .chapter .inner .text h5 {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0 16px;
  }
  section#dialogue .chapter .inner .text h5::before {
    content: "";
    width: 32px;
    height: 1px;
    background-color: #000000;
    position: relative;
    transform: translateY(1.5rem);
    display: block;
    flex-shrink: 0;
  }
  section#dialogue .chapter .inner .text h5 span {
    color: #000000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#dialogue .chapter .inner .text h5 span br {
    display: none;
  }
  section#dialogue .chapter .inner .text dl {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0 16px;
  }
  section#dialogue .chapter .inner .text dl dt {
    width: 72px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 8px 0;
  }
  section#dialogue .chapter .inner .text dl dt::before {
    content: "";
    width: 72px;
    height: 72px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    clip-path: circle(50% at 50% 50%);
  }
  section#dialogue .chapter .inner .text dl dt p {
    color: #000000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#dialogue .chapter .inner .text dl dd {
    width: calc(100% - 72px - 16px);
  }
  section#dialogue .chapter .inner .text dl dd p {
    color: #000000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.875;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#dialogue .chapter .inner .text dl dd p:not(:last-child) {
    margin-bottom: 8px;
  }
  section#dialogue .chapter .inner .text dl dd p.notice {
    font-size: 1.2rem;
  }
  section#dialogue .chapter .inner .text dl dd p sub {
    font-size: 1rem;
  }
  section#dialogue .chapter .inner .text .ph {
    width: 100%;
  }
  section#dialogue .chapter .inner .text .pset {
    width: calc(100% - 16px);
  }
  section#dialogue .chapter .inner .text .pset > div {
    width: calc(50% - 4px);
  }
  section#dialogue .chapter .inner .text .phl {
    width: 100%;
  }
}

/*# sourceMappingURL=style_dialogue.css.map */
