@charset "utf-8";
  
/*全ページ共通*/

html.spacebook {
  font-size: .73vw;
}

@media screen and (max-width: 767px) {
  html.spacebook {
    font-size: 2.4vw;
  }
}

body {
  background-color: black;
  width: 100%;
  color: white;
  margin: 0;/* bodyの余白を削除 */
  padding: 0;/* bodyの余白を削除 */
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

h1 {
  margin: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 2.6rem;
}

h2 {
  font-size: 2.4rem;
}

/*全ページ共通終わり*/

        .story_zone img{
          width:100%;
          position:top;
          padding-top: 70px;
          padding-bottom:100px;
         }


         /*bottom_banner*/
.bottom_banner {
  background-color: #dcdcdc;
  width: 100%;
  height: 4em;
  position: fixed;
  bottom: 0;
  padding: 0;
  font-size: 2rem;
}

.bottom_banner_tab {
  width: 90%;
  max-width: 980px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.home {
  width: 36%;
  background-color:#fff;
  text-align: center;
  border-radius: .7em;
  padding-block: .5em;
  box-shadow: 5px 5px 10px 1px gray;
  color: #000;
}

.home img {
  width: 54%;
  aspect-ratio: 2084/459;
}

.character {
  width: 60%;
  background-color: #95D1C6;
  text-align: center;
  border-radius: .7em;
  padding-block: .5em;
  box-shadow: 5px 5px 10px 1px gray;
  color: #fff;
}

@media screen and (max-width:767px) {
  .bottom_banner {
    font-size: 1.6rem;
  }

  .home img {
    width: 80%;
  }
}

@media screen and (min-width:980px) {
  .bottom_banner {
    font-size: 24px;
  }
}

.footer-line p{
  font-size:20px;
  color:white;
  text-align:center;
  margin:0;
  display: none;
}


