@charset "UTF-8";

.lowerPageMv {
  position: relative;
  height: 50vh;
  max-height: 500px;
  margin-top: 85px;
  margin-right: auto;
  margin-left: auto;
  background: #000000;
}
/*.lowerPageMv figure {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 0;
}
.lowerPageMv figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;'
}*/
.lowerPageMv h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 900px;
  margin: auto;
  color: #ffffff;
  font-size: 52px;
  font-weight: 400;
  font-style: italic;
  /*transition: all 1s;*/
  line-height: 1.4;
  text-align: center;
}
.lowerPageMv h2 .readTtl {
  display: block;
  margin-bottom: 30px;
  font-size: 26px;
  letter-spacing: 0;
  text-align: left;
}

.contents {
  background: #000000;
}
.storyList {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.storyList li {
  position: relative;
  display: table;
  width: 50%;
  height: 23.7vw;
  cursor: pointer;
}
.storyList li figure {
  display: table;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.storyList li figure img {
  transform: scale(1);
  filter: grayscale(100%) brightness(50%);
  transition: all .3s;
}
.storyList li:hover figure img {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(80%);
}
.storyList li .txtWrap {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  padding: 0 3vw;
}
.storyList li .txtWrap > p {
  color: #ffffff;
  line-height: 1;
}
.storyList li .txtWrap > p.ttl {
  display: inline-block;
  max-width: 144px;
}
.storyList li .txtWrap > p.ttl img {
  width: 100%;
}
.storyList li .txtWrap > p.ttl span.num {
  margin-left: 5px;
  font-size: 46px;
  letter-spacing: .1em;
}
.storyList li .txtWrap > p.copy {
  margin-top: 30px;
  font-size: 30px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0;
  line-height: 1.5;
}
.storyList li .txtWrap > p.name {
  margin-top: 5px;
  font-size: 20px;
}
.storyList li .txtWrap > p.name span.area {
  margin-right: 10px;
  font-size: 14px;
}
.storyList li .txtWrap .detailBtn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 45px;
  margin-top: 15px;
  background: #000000;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0;
  cursor: pointer;
}
.storyList li .txtWrap .detailBtn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 15px;
  height: 1px;
  background: #ffffff;
  transition: all .3s ease-in-out;
}
.storyList li:hover .txtWrap .detailBtn::before {
  left: 15px;
}



body.modalOpen {
  overflow-y: hidden;
}
.modalContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6667;
}
.modal_box {
  position: absolute;
  display: none;
  width: 100%;
  height: calc(100% - 85px);
  margin: 0;
  box-sizing: border-box;
}
.fixImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 33.333%;
  height: 100%;
}
.fixImg figure {
  height: 100%;
}
.txtContents {
  position: absolute;
  top: 0;
  left: 33.333%;
  width: 66.667%;
  height: 100%;
  padding: 15vh 0;
  background: #ffffff;
  overflow-y: scroll;
  /*Microsoft Edge・firefoxでスクロールバー非表示*/
  -ms-overflow-style: none;
  scrollbar-width: none;
}
/*Chrome・Safariでスクロールバー非表示*/
.txtContents::-webkit-scrollbar{
  display: none;
}
.txtContents h3,
.txtContents h4,
.txtContents p,
.detailTtl {
  color: #000000;
}
.detailTtl {
  padding-right: 10vw;
  padding-left: 10vw;
}
.detailTtl h3 {
  font-size: 38px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0;
  line-height: 1.5;
}
@media only screen and (max-width: 1280px) {
	.detailTtl h3 {
	  font-size: 36px;
	}
}
.detailTtl p {
  margin-top: 10px;
  font-size: 20px;
}
.detailTtl p span.area {
  margin-right: 10px;
  font-size: 14px;
}

.detailContentsWrap {
  padding-top: 75px;
}
.detailContentsWrap:not(.full) {
  padding-right: 10vw;
  padding-left: 10vw;
}
.detailContentsWrap h4 {
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0;
  line-height: 1.5;
}
.detailContents2Column {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.detailContents2Column .txtWrap {
  width: calc(50% - 20px);
}
.detailContents2Column .imgWrap {
  width: calc(50% - 20px);
}
.detailContents2Column.reverse .txtWrap {
  order: 2;
}
.detailContents2Column.reverse .imgWrap {
  order: 1;
}
.detailContentsWrap p {
  font-size: 16px;
  font-family: YakuHanJPs, "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック体, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, verdana, sans-serif;
  line-height: 2.2;
}
.detailContents1Column p {
  margin-top: 30px;
}

.detailContentsWrap .lastTxt {
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  text-align: center;
  letter-spacing: .1em;
}

.otherDetailLink p {
  font-size: 20px;
  text-align: center;
}
.otherDetailLinkList {
  display: flex;
  flex-flow: row wrap;
  margin-top: 50px;
}
.otherDetailLinkList li {
  width: 25%;
  background: #000000;
  cursor: pointer;
}

#modal1 .otherDetailLinkList li[data-target="modal1"],
#modal2 .otherDetailLinkList li[data-target="modal2"],
#modal3 .otherDetailLinkList li[data-target="modal3"],
#modal4 .otherDetailLinkList li[data-target="modal4"] {
  pointer-events: none;
  cursor: default;
}
#modal1 .otherDetailLinkList li:hover a[data-target="modal1"] figure img,
#modal2 .otherDetailLinkList li:hover a[data-target="modal2"] figure img,
#modal3 .otherDetailLinkList li:hover a[data-target="modal3"] figure img,
#modal4 .otherDetailLinkList li:hover a[data-target="modal4"] figure img {
  transform: scale(1.05);
  filter: grayscale(100%) brightness(50%);
}


.otherDetailLinkList li figure {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.otherDetailLinkList li figure img {
  transform: scale(1.05);
  filter: grayscale(100%) brightness(50%);
  transition: all .6s;
}
.otherDetailLinkList li:hover figure img {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(80%);
}

.arrowList li {
  position: fixed;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 75px;
  background: rgba(0,0,0,.8);
  z-index: 1;
  cursor: pointer;
}
.arrowList li.prev {
  left: 0;
}
.arrowList li.next {
  right: 0;
}
.arrowList li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.arrowList li span {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 30px;
}
.arrowList li span::before {
  content: '';
  position: absolute;
  top: 20%;
  width: 20px;
  height: 20px;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  position: absolute;
  left: 10px;
  top: 8px;
  transition: all .3s ease-out;
}
.arrowList li.prev span::before {
  left: 20%;
  transform: rotate(-135deg);
}
.arrowList li.next span::before {
  left: -20%;
  transform: rotate(45deg);
}
.arrowList li.prev:hover span::before,
.arrowList li.next:hover span::before {
  left: 0;
}
.modal_box .entryBtnBox h1 {
  color: #000000;
}

.modal_close {
  position: fixed;
  top: 100px;
  right: 10px;
  display: block;
  width: 45px;
  font-size: 35px;
  color: #ffffff;
  line-height: 30px;
  text-align: center;
  background: rgba(0,0,0,.8);
  cursor: pointer;
}
.modal_close i {
  line-height: 45px;
  vertical-align: bottom;
}
.modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6666;
  display: none;
  width: 100%;
  height: 120%;
  background-color: rgba(0,0,0,0.7);
}

.entryBtnBox {
  padding-bottom: 180px;
}
.entryBtnBox .btnWrap {
  margin-top: 30px;
}

.jumpTopBtnWrap {
  margin-top: 100px;
}
.jumpTopBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 270px;
  height: 55px;
  margin: auto;
  border: 1px solid #000000;
  font-size: 18px;
  /* font-family: 'EB Garamond', YakuHanMP, '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', 'ヒラギノ明朝', 'Noto Serif JP', serif; */
  cursor: pointer;
}



@media only screen and (max-width: 1400px) {
}
@media only screen and (max-width: 1200px) {
  .storyList li .txtWrap > p.ttl {
    max-width: 111px;
  }
  .storyList li .txtWrap > p.ttl span.num {
    font-size: 36px;
  }
  .storyList li .txtWrap > p.copy {
    margin-top: 15px;
    font-size: 20px;
    line-height: 1.5;
  }
  .storyList li .txtWrap .detailBtn {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .lowerPageMv h2 {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    line-height: 1.6;
  }
  .lowerPageMv h2 .readTtl {
    margin-bottom: 10px;
    font-size: 20px;
    text-align: center;
    line-height: 1;
  }
  .storyList li {
    width: 100%;
    height: 58vw;
  }
  .storyList li .txtWrap {
    top: 40%;
    padding: 0 7vw;
  }
  .storyList li .txtWrap > p.ttl span.num {
    font-size: 22px;
  }
  .storyList li .txtWrap > p.name {
    font-size: 16px;
  }
  .storyList li .txtWrap > p.name span.area {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 12px;
  }
  .storyList li .txtWrap .detailBtn {
    position: absolute;
    bottom: -10px;
    right: 5vw;
    width: 140px;
    font-size: 12px;
  }
  .modal_box {
    height: calc(100% - 67px);
    overflow-y: scroll;
  }
  .arrowList {
    display: none;
  }
  .fixImg {
    position: relative;
    top: inherit;
    left: inherit;
    width: 100%;
    height: 100vw;
  }
  #modal1 .fixImg {
    height: 120vw;
  }
  .fixImg .detailTtl {
    position: absolute;
    bottom: 30px;
    left: 30px;
    padding: 0;
  }
  .detailTtl h3,
  .detailTtl p {
    color: #ffffff;
  }
  .txtContents {
    position: relative;
    top: 0px;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0;
    overflow-y: unset;
  }
  .detailContentsWrap:not(.full) {
    padding-right: 30px;
    padding-left: 30px;
  }
  .detailContents2Column {
    flex-flow: column;
  }
  .detailContents2Column .txtWrap,
  .detailContents2Column .imgWrap {
    width: 100%;
  }
  .detailContents2Column .txtWrap {
    order: 2;
    margin-top: 30px;
  }
  .detailContentsWrap p {
    font-size: 15px;
  }
  .detailContents2Column .imgWrap {
    order: 1;
  }
  .otherDetailLinkList li {
    width: 50%;
  }
  .modal_close {
    top: 77px;
  }
  #modal2 .fixImg img {
    object-position: 0px -80px;
    font-family: 'object-position: 0px -80px;';
  }
  #modal3 .fixImg img {
    object-position: 0px -40px;
    font-family: 'object-position: 0px -40px;';
  }
}
@media only screen and (max-width: 767px) {
  .lowerPageMv {
    height: 20vh;
  }
  .lowerPageMv h2 {
    font-size: 24px;
  }
  .lowerPageMv h2 .readTtl {
    font-size: 16px;
  }
  .fixImg .detailTtl {
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, .4);
  }
  .detailTtl h3 {
    font-size: 21px;
    letter-spacing: 0;
    line-height: 1.5;
  }
  .storyList li .txtWrap > p.ttl {
    max-width: 95px;
  }
  .entryBtnBox h3, .entryBtnBox h1 {
    font-size: 24px;
  }
  
  .entryBtnBox {
    padding-bottom: 40px;
  }
  .jumpTopBtnWrap {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 679px) {
}
@media only screen and (max-width: 479px) {
}

