body{
  background-color: #DCDDDD;
}

#mainContentsContainer{
  width: 90vw;
  max-width: 1200px;
  min-height: 100vh;
  margin: 0 auto;
  background-color: #E8E8E8;
}

#bodyContainer{
  width: 90%;
  margin: 30px auto 0 auto;
}

#headImage{
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

#headImage > li{
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  list-style: none;
	transition: all 3000ms ease-in;
  background-repeat: no-repeat;
}

#content{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 35px 15% 0 0;
}

#body_Menu{
  width: 235px;
}

#body_Contents{
  width: calc(100% - 245px);
}

#body_Menu_CurrentlyDisplayed{
  font-size: 12pt;
  margin: 4px 0 0 0;
  font-weight: 100;
}

#body_Menu > ul{
  list-style: none;
  padding: 5px 5px 5px 10px;
}

#body_Menu > ul > li{
  font-size: 9pt;  
  margin: 0 0 0 -10px;
  letter-spacing: -0.05em;
  font-size: 10pt;
  line-height: 1.6;
}

#body_Menu > ul > li.displayed{
  color: #9135CE;
}

#body_Menu > ul > li.displayed:before{
  content: "▶ ";
  font-size: 8pt;
  vertical-align: 1.1px;
 }

#body_Menu > ul > li:not(.displayed):before{
  content: "　 ";
  font-size: 8pt;
}

#body_Contents h1{
  font-size: 14pt;
}

#body_Contents p {
  letter-spacing: -0.05em;
  font-size: 10pt;
  line-height: 1.6;
  text-align: justify;
  text-indent: 1em;
}


#body_Contents p:last-child{
  margin: 0 0 60px 0;
}

#body_Contents p.poem{
  text-indent: 0;
  padding-left: 1em;
}

#body_Menu_CurrentlyDisplayed_forSp{
  display: none;
}

#menuSelectForSpContainer{
  width: 80%;
  margin: 0 10%;
  display: none;
  overflow: hidden;
  text-align: center;
  position: relative;
}

#menuSelectForSp{
  -webkit-appearance: button;
  -moz-appearance: none;
  appearance: none;  
  background-color: rgb(200, 200, 200);
  border: none;
  border-radius: 10px;
  font-size: calc(6pt + 2vw);
  width: 100%;
  padding: 5px 10px;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
}

#menuSelectForSpContainer::before{
  position: absolute;
  top: 14px;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #000;
  pointer-events: none;
}


@media screen and (max-width: 800px){
  body{
   background-image: none;
   background-color: #EFEFEF;
  }
  
  #mainContentsContainer{
    width: 100vw;
  }
  
  #bodyContainer{
    width: 100vw;
    margin-top: 0;
    padding-bottom: 50px;
  }
  
  #body_Menu{
    display: none;
  }
  
  #body_Menu_CurrentlyDisplayed_forSp{
    display: block;
    width: 94%;
    margin: 15px auto 15px auto;
  }
  
  #content{
    margin-right: 0;
  }
  
  #body_Contents{
    width: 94%;
    margin-left: auto;
    margin-right: auto;
  }

  #body_Contents h1 {
    font-size: calc(10pt + 2vw);
  }
  
  #body_Contents p {
    font-size: calc(6pt + 2vw);
  }
  
  #leftArrow, #rightArrow{
    z-index:2;
  }
  
  #menuSelectForSpContainer{
    display: block;
  }
}