@charset "utf-8";
html {
    font-family:”ヒラギノ角ゴ Pro W3″,”ＭＳ Ｐゴシック”,sans-serif;
}
*{
  margin: 0 auto;
}
    body{
      background-image: url(images/tenji_bg.png);
      background-size: 100%;
    }
    nav{
      padding-top: 30px;
      width: 75%;
      display: flex;
      justify-content:space-between ;
    }
    nav img{
      width: 100%;
      max-width: 300px;
    }
    nav ul{
      width: 70%;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    nav ul li a{
      text-decoration: none;
      white-space: nowrap;
      color: #fff;
      padding: 1em;
      background-color: #65a5ff;
      border-radius: 10px;
      font-size: 1.5vw;
    }
    nav ul li a:hover{
      background-color: #fb4a4a;
      transition: background-color 0.3s ease;
    }
    h1{
      margin-top: 8%;
      margin-bottom: 3%;
      color: #fff;
      -webkit-text-stroke: 0.7vw #fb4a4a;
      paint-order: stroke;
      text-align: center;
      width: 20%;
      font-size: 2.5vw;
      border-bottom: 3px solid #65a5ff;
    }
    .info{
    text-align: center;
    font-size: 1.2vw;
    padding-top: 3%;
    padding-bottom: 3%;
    }
    .chara_list ul{
      margin-top: 5%;
      padding-left: 0;
      width: 70%;
      display: flex;
      flex-wrap: wrap;
      text-align: center;
    }
    .chara_list ul li{
      padding: 1%0 0 1% 0;
      list-style-type: none;
      width: 50%;
    }
    .chara_list ul li img{
      width: 50%;
      max-width: 300px;
    }
    html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(20%) rotate(-45deg);
}
  footer{
    margin-top: 10%;
    padding: 2% 0 2% 0;
    width: 100%;
    text-align: center;
    color: #fff;
    background-color: #65a5ff;
  }
  footer p{
    font-size: 1vw;
  }