 #parent_flame {
  /* margin: auto; */
  /* text-align: center; */
  /* padding-left: 50px; */
  position:relative;
}
@media(min-width:960px) {
  #parent_flame{
    max-width: 1040px;
    margin: 0 auto;
  }
}
.gallery{
  padding-top: 50px;
}
.main_visual{
  margin-top: var(--header);
  position: relative;
}
@media(min-width:960px) {
  .main_visual{
    margin: 0 auto;
    margin-top: var(--header-pc);
  }
}
.main_visual__img{
  width: 100%;
  position: relative;
}
.main_visual__img img{
  width: 100%;
  height: auto;
  z-index: 0;
}
.main_visual__h1_h2_layout{
  display: flex;
  justify-content: center;
}
  @keyframes SlideIn { /*animation-nameで設定した値を書く*/
    0% {
      opacity: 0;
      transform: translateY(64px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
.main_visual h1{
  position: absolute;
  top: 35%;
  z-index: 1;
  text-transform:none;
  font-family: Zapfino;
  color: #fff;
  font-size: 30px;
}
.main_visual h2{
  position: absolute;
  top: 60%;
  z-index: 1;
  font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #ffffff;
  font-size: 16px;
}
@media(min-width:600px) {
  .main_visual h1{
    font-size: 50px;
  }
  .main_visual h2{
    font-size: 18px;
    top: 60%;
  }
}
@media(min-width:900px) {
  .main_visual h1{
    font-size: 70px;
  }
  .main_visual h2{
    font-size: 25px;
    top: 45%;
  }
}
@media(min-width:1000px) {
  .main_visual h1{
    font-size: 90px;
  }
  .main_visual h2{
    font-size: 90px;
    top: 50%;
  }
}

/*====== 9-1-1 縦線が動いてスクロールを促す =======*/

/*スクロールダウン全体の場所*/
.scrolldown1{
  /*描画位置※位置は適宜調整してください*/
position:absolute;
bottom: 0;
left:10%;
bottom:10px;
  /*全体の高さ*/
height:50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
  /*描画位置*/
position: absolute;
left:-15px;
top: -15px;
  /*テキストの形状*/
color: #fff;
font-size: 0.7rem;
letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after{
content: "";
  /*描画位置*/
position: absolute;
top: 0;
  /*線の形状*/
width: 1px;
height: 30px;
background: #fff;
  /*線の動き1.4秒かけて動く。永遠にループ*/
animation: pathmove 1.4s ease-in-out infinite;
opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
0%{
  height:0;
  top:0;
  opacity: 0;
}
30%{
  height:30px;
  opacity: 1;
}
100%{
  height:0;
  top:50px;
  opacity: 0;
}
}

/* まほろばアーカイブスとは */
.section_top{
  background-color: #bcbcbc;
  width: 90%;
  margin: auto;
  border-radius: 5px;
}
.section_top h1{
  font-size: 2.6rem;
  color: #fbfbfb;
  padding: 40px 0px 0px 0px;
  text-decoration: underline;
}
.section_top div{
  font-size: 16px;
  color: #ffffff;
  line-height: 1.5;
  width: 90%;
  margin: auto;
  padding: 0px 0px 40px 0px;
}

.section_top a:hover{
  text-decoration: underline;
  color: #fff;
  opacity: 0.6;
}

@media(max-width:768px) {
  .section_top h1{
    font-size: 24px;
  }
}