body{
    background-size: 100vw 100vh;
    width:100%;max-width:100%;
    text-align:center; /*ページ全体を中央揃えにする*/
    position: relative;
    background-color:#F8E9AE;
    overflow-x: hidden;
    font-size: 18px;    
    font-family: 'Hiragino Mincho ProN','ヒラギノ明朝 ProN','Hiragino Mincho Pro','ヒラギノ明朝 Pro',serif;
    font-size: 25px;
    height: 100vh;
    margin: 0;
}
.top_dis{
  background-image: url(../top_pic/illigal_map.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  width: 100%; height: 100vh;  
  position: relative;
}
.back{
  background-color: white;
  position: absolute;
  top: 75%; left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
}
h1 {
    padding: 0.5em;/*文字周りの余白*/
    color: #494949;/*文字色*/
    background: #faffeb;/*背景色*/
    border-left: solid 5px #029A61;/*左線（実線 太さ 色）*/
    text-align:left; 
    margin-left: 200px;
    margin-right: 200px;
  }
h2{
  border-bottom: solid 3px #9EBA4A;
  border-width: 0px 0px 3px 0px;
  padding: 0.5rem;
  border-style: dotted;
  margin: 3rem 15%;
}
  .title{
    color: rgb(255, 245, 238);
  }
  .title mark{
    color: rgb(255, 245, 238);
  }
  .title p{
    margin-left: 60px;
  }
p{
  margin: 1rem 20%;
  text-align: left;
  line-height: 2.5rem;
}
mark{
  background: linear-gradient(transparent 40%, #00ff88 80%);
}
.list{
  border: solid 2px #5a5a5a;
  border-style: dotted;
  width: fit-content;
  padding: 10px 4rem;
  margin: 10px auto;
  text-align: left;
}
  .part {
    opacity: 0;
    transform: translateY(100%);
    animation: slideInFromBottom 1s forwards;
    animation-timing-function: ease;
  }
  
  @keyframes slideInFromBottom {

    from {
      opacity: 0;
      transform: translateY(100px);
    }

    to {
      opacity: 1;
      transform: translateY(0px);
    }
  }
.parts{
  opacity: 0;
  padding: 5px;
}

@media screen and (max-width: 1300px){
  body{
    font-size: 20px;
  }
}
@media screen and (max-width: 600px){
  body{
    font-size: 12px;
  }
  
}