<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";


/* チャプターヘッダー */

.chapter-head__image{
  width: 100vw;
  height: 360px;
  object-fit: cover;
}
.chapter-head__image.--chapter2 {
  object-position: top 30% left 0px;
} 
.chapter-head__image.--chapter3 {
  object-position: top 40% left 0px;
} 

.chapter-head__headarea {
  width: 98%;
  display: flex;
  gap: 2%;
  position: relative;
  left: 10%;
  margin-bottom: -10vh;
}
.chapter-head__ttl{
  position: relative;
  top: -20vh;
  height: 74vh;
  max-height: 500px;
  padding: 2%;
  font-size: 2.3rem;
  font-weight: bold;
}
.chapter-head__ttl.chapter4 {
  height: fit-content;
}
.chapter-head__ttl &gt; span {
  font-size: 1.8rem;
  margin-top: 2em;
}
.hapter-head__list{
  font-size: 2.0rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 2%;
}
.hapter-head__list &gt; li &gt; a &gt; span {
  color: var(--ac-color);
}
@media screen and (max-width: 767px),print {
.chapter-head__image{
  height:200px;
  object-fit: cover;
}
.chapter-head__headarea {
  display: flex;
  gap: 2%;
  position: relative;
  left: 1%;
  margin-bottom: 6vh;
}
.chapter-head__ttl{
  top: -5vh;
  left: 1vw;
  height: 45vh;
  padding: 1.6%;
  font-size: 1.6rem;
  z-index: 10;
}
.chapter-head__ttl &gt; span {
  font-size: 1.2rem;
  margin-top: 2em;
}
.hapter-head__list{
  font-size: 1.4rem;
  gap: 4%;
}
}


/* チャプター冒頭 */
.chapter-intro{
  width: 80vw;
  max-width: 800px;
  margin: 0 auto 160px;
  padding-top: 80px;
}
.chapter-intro__ttl {
  font-size: 2.6rem;
  font-weight: 500;
  width: fit-content;
  margin: 0  auto 80px;
}
.chapter-intro__ttl-txt &gt; span {
  color: var(--ac-color);
}
.chapter-intro__image-box {
  width: 100%;
  display: grid;
  margin-bottom: 24px;
}
.chapter-intro__image-box.--chapter1 {
  grid-template-columns: 1fr 1fr;
  gap: 2%;
}
.chapter-intro__image-box.--chapter2 {
  grid-template-columns: 0.55fr 0.51fr 1.2fr;
  gap: 1%;
}



@media screen and (max-width: 767px),print {
.chapter-intro{
  width: 100%;
  margin: 0 auto 80px;
  padding-top: 40px;
}
.chapter-intro__ttl {
  font-size: 2.0rem;
  margin: 0  auto 40px;
}
.chapter-intro__image-box {
  margin-bottom: 16px;
}
}


/* 章コンテナ */
.chapter-detail {
  display: grid;
  grid-template-columns: 0.3fr 2fr;
  margin-bottom: 16vh;
}
.chapter-detail__ttl-box {
  background-color: var(--ac-color);
  padding: 1%;
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 40px;
}
.chapter-detail__image-box {
  width: 95%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 2%;
}

@media screen and (max-width: 830px),print {
.chapter-detail {
  grid-template-columns: 0.2fr 2fr;
  margin-bottom: 10vh;
}
  .chapter-detail__image-box {
  grid-template-columns: 0.5fr 1fr;
  gap: 5%;
}
}
@media screen and (max-width: 767px),print {
  .chapter-detail {
  grid-template-columns: 0.1fr 2fr;
  margin-bottom: 20vh;
}
.chapter-detail__ttl-box {
  padding: 2% 0;
  padding-left: 3em;
  text-indent: -2.0em;
  font-size: 2.0rem;
}
.chapter-detail__image-box {
  grid-template-columns: 1fr;
  grid-template-rows: max-content max-content;
  gap: 4vh;
}
}
@media screen and (min-width: 1600px),print {
  .chapter-detail {
  grid-template-columns: 0.6fr 2fr;
}
}

/* モーダル */
.modal__item {
  position: relative;
}
.btn__example {
  width: fit-content;
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
}
.btn__example:hover {
  cursor: pointer;
}
.modal__image {
  width: 100%;
  height: 50vh;
  max-height: 400px;
}
.--cover {
  object-fit: cover;
}
.--contain {
  object-fit: contain;
}
.--none {
  object-fit: none;
}
.modal__caption {
  text-align: center;
}
.modal__imagebox {
  text-align: center;
}
.modal__icon {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 0;
  box-shadow: 1px 1px 1px 0px rgba(178, 178, 178, 0.7);
}

.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7); 
  transition: all 1s linear;
}
.modal__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: fit-content;
}
.modal__container-img {
  width: 100%;
  height: fit-content;
  max-height: 500px;
  object-fit: contain;
  margin-bottom: 16px;
}
.modal__content {
  background-color: #fff;
  overflow-y: auto;
  padding: 1%;
  width: min(90%, 1000px);
  height: 80vh;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: show .3s linear 0s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal__top {
  display: inline-block;
  position: absolute;
  right: 5px;
  top: 5px;
}

.modal__close {
  color: var(--text-color);
  font-size: 3.2rem;
  padding: 0 8px;
}
.modal__close:hover, .modal__close:focus {
  cursor: pointer;
}
.modal__txt {
  text-align: center;
}
@keyframes show {
  from{
    opacity: 0;
  }
}

@media screen and (max-width: 834px),print {
.modal__image {
  height: 200px;
  margin-bottom: 4px;
}
.modal__caption {
  font-size: 1.4rem;
}
.modal__content {
  height: 70vh;
}
.modal__container-img {
  max-height: 360px;
}
}

/* アコーディオン */
.readmore {
  position: relative;
  height: fit-content;
}
.readmore &gt; label {
  position: absolute;
  display: table;
  right: 0;
  bottom: 0;
  margin: -80px auto;
  width: 16vw;
  padding: 2.5vh;
  color: var(--ac-color);
  border: 2px solid var(--ac-color);
  text-align: center;
  transform: translateX(0);
  cursor: pointer;
  z-index: 1;
}
.readmore-content::before {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
}
.readmore input[type="checkbox"]:checked ~ .readmore-content::before {
  display: none;
}
.readmore &gt; label::before{
  content: 'つづきを見る';
}
.readmore input[type="checkbox"]:checked ~ label::before {
  content: 'つづきを閉じる';
}
.readmore input[type="checkbox"]{
  display: none;
}
.readmore-content {
  position: relative;
  height: 10em;
  overflow: hidden;
  margin-top: -30px;
}
.readmore input[type="checkbox"]:checked ~ .readmore-content {
  height: auto;
}
@media only screen and (max-width: 834px) {
  .readmore &gt; label {
  width: 100%;
  padding: 4%;
  margin: -66px auto;
}
}


/* 3-1用モーダルマップ */
.chapter-detail__image-box.--image-box {
  grid-template-columns: 1fr;
}
.modal-map {
  display: grid;
  gap: 2%;
}
.modal-map {
  margin-bottom: 50px;
}
.modal-map.--photo1 {
  grid-template-columns: 1fr 0.8fr;
}
.modal-map.--photo2 {
  grid-template-columns: 0.7fr 1fr;
}
.modal-map__container {
  position: relative;
  height: fit-content;
}
.modal-map__items &gt; .modal__imagebox {
  position: absolute;
}
.modal-map__items .modal__image{
  width: 73%;
  height: fit-content;
}
.--no1-1 {
  top: 63%;
  left: 25%;
}
.--no1-2 {
  top: 40%;
  left: 50%;
}
.--no1-3 {
  top: 40%;
  right: 26%;
}
.--no1-4 {
  top: 40%;
  right: 5%;
}
.--no1-5 {
  top: 8%;
  left: 2%;
}
.--no2-1 {
  bottom: 8%;
  left: 13%;
}
.--no2-2 {
  bottom: 18%;
  left: 30%;
}
.--no2-3 {
  bottom: 18%;
  left: 43%;
}
.--no2-4 {
  top: 36%;
  right: 35%;
}
.--no2-5 {
  top: 6%;
  left: 2%;
}
.modal-map__list {
  margin-top: 1.6em;
}
.modal-map__list &gt; p {
  margin-bottom: 2vh;
}
.modal-map__list-item {
  display: flex;
  align-items: center;
  margin-bottom: 2vh;
}
.modal-map__list-item &gt; img {
  width: 40px;
  height: fit-content;
  margin-right: 1vw;
}
.modal-map__text-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.modal-map__text-box .modal__imagebox {
  margin-top: 1.6em;
}
.modal-map__text-box .modal__image {
  height: fit-content;
}

@media screen and (max-width: 820px),print {
.modal-map.--photo1,
.modal-map.--photo2 {
  grid-template-columns: 1fr;
}
.modal-map__list-item &gt; img {
  width: 36px;
  height: 36px;
}
.modal-map__items .modal__image{
  width: 70%;
  height: fit-content;
}
.modal__imagebox.--chapter3-1 {
  height: 360px;
}
.--no1-2 {
  left: 40%;
}
.--no1-3 {
  right: 20%;
}
.--no1-4 {
  right: 0;
}
.--no1-5 {
  top: 20%;
  left: 5%;
}
.--no2-3 {
  left: 45%;
}
}
@media screen and (max-width: 767px),print {
.modal-map__text-box {
  display: block;
}
}

/* コンテンツ幅写真６枚 */
.chapter-detail__image-box.--image-only {
  display: block;
}
.photo-6box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2%;
  row-gap: 5%;
}
.photo-6box .modal__image {
  height: fit-content;
}
.--bold {
  font-weight: bold;
}
.chapter-detail__image-box &gt; .--detail {
  margin-bottom: 24px;
}

@media screen and (max-width: 767px),print {
.photo-6box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1%;
}
.photo-6box .modal__image {
  height: 120px;
}
}

/* 写真３枚 */
.photo-3box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1%;
  height: fit-content;
}
.--img-box1 {
  width: 100%;
  grid-column: 1 / 3;
}
.modal__caption {
  grid-column: 1 / 3;
}
.photo-3box .modal__image {
  height: 240px;
}

/* 写真2枚 */
.photo-2box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2%;
}
.photo-2box .modal__image {
  height: 300px;
}
@media screen and (max-width: 767px),print {
.photo-2box .modal__image {
  height: 200px;
}
}


/* 出典 */
.reference {
  display: block;
  color: var(--text-color2);
  font-size: 1.4rem;
}

/* 人物用見出し */
.person-list {
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  margin-bottom: 10vh;
}
.person-list__item {
  font-size: 2.0rem;
  font-weight: bold;
  color: var(--ac-color);
  border-bottom: 1px solid var(--ac-color);
  width: 180px;
  height: fit-content;
  position: relative;
  margin-bottom: 1.5vh;
}
.person-list__item::after {
  content: "▼";
  position: absolute;
  right: 0;
}
.chapter-detail__image-box  + .chapter-detail__image-box  {
  margin-top: 100px;
}
.--parson-image &gt; .modal__image {
  width: fit-content;
  height: 32vh;
}
.--parson-image {
  width: fit-content;
  margin: 0 auto;
}
.--parson-index {
  color: var(--ac-color);
  border-bottom: 1px solid var(--ac-color);
}
@media screen and (max-width: 834px),print {
.person-list {
  width: 95%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  margin-bottom: 14vh;
}
.person-list__item {
  font-size: 1.6rem;
  width: 100%;
  height: fit-content;
  margin: 0;
}
.chapter-detail__image-box  + .chapter-detail__image-box  {
  margin-top: 120px;
}
}
.next-chapter {
  margin: 240px auto 0;
}
@media screen and (max-width: 834px),print {
.next-chapter {
    width: 90%;
  margin: 80px auto 0;
}
}
.main-background {
  padding-bottom: 100px;
}</pre></body></html>