html{
    background-image:linear-gradient(180deg, #2b2b30, rgb(23 76 62));
    color: #fff;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    min-width: 375px;
  }

.flex{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

h1{
    font-size: 3rem;
}

h2{
    font-size: 2.5rem;
    color: #FBD353;
}
h3{
    font-size: 2rem;
}
h4{
    font-size: 1.3rem;
}

p{
    font-size: 1rem;
    font-family: "Noto Sans", sans-serif;
}
.pc{
  display: block;
}
.sp{
  display: none;
}
body{
  height: 100vh;
}
header{
    margin:0 auto 0 auto;
    height: 130px;
}
main{
    margin: 20px;
    height: calc(100% - 200px);
}

/* ローディング画面 */
#loader_wrap {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  top: 0;
  background: #1d0f0f;
  }
  /* ローディングアニメーションの設定 */
  .loader {
  width: 300px;
  height: 200px;
  background: url("../img/logo.svg") no-repeat;
  background-position: center;
  opacity: 0;
  animation: blink 1.5s infinite linear;
  }
  
  @keyframes blink {
    50% {
    opacity: 1;
    }
  }
  /* ローディング終了後 */
  .loaded {
  opacity: 0;
  visibility: hidden;
  }
#character{
  align-items:center;
  height: 100%;
}

.character_text{
  margin: 2% 5% 0 0;
}
/* キャラクター画像部分 */
.character_img{
  width: 60%;
  text-align: center;
}
/* キャラクター概要部分 */
.character_caption{
  width: 40%;
  color: #FBD353;
}
.character_caption h2{
  font-weight: 700;
}

.character_caption_text{
  margin:   2% 5%;
}

.character_caption_text p{
  margin: 3rem 0 0 1rem;
  line-height: 1.5;
  color: #fff;
}
/* キャラクタースケジュール部分 */
.character_schedule{
  max-width: 500px;
  min-width: 320px;
  width: 100%;
  margin: 4% auto 2% auto;
  font-family: "Noto Sans", sans-serif;

  background-image: url(../img/IC.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.schedule_text{
  width: 50%;
  margin: 0 auto;
  padding: 5% 0;
  color: white;
}
.schedule_h4{
  letter-spacing: 1rem;
  padding-left: 1rem;
  text-align: center;
  font-weight: bold;
  color: #FBD353;
}

.schedule_text dl{
  max-width: 350px;
  margin: 0 auto;
}

.schedule_text dt{
  width: 30%;
  padding: 6px 30px;
  font-weight: 500;
  border-bottom: solid 1px #FBD353;
}

.schedule_text dd{
  width: 70%;
  padding: 5px 0;
  font-weight: 500;
  border-bottom: solid 1px #FBD353;
}

.sns_logo{
  width: 100%;
  height: 30px;
  margin: 1% 0;
  text-align: center;
}

.sns_logo a{
  margin: 0 1%;
}

footer{
    text-align: center;
    margin: 1% 0;
}

@media only screen and (max-width: 1200px){
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  body{
    height: auto;
  }
  main{
    margin: 20px;
    height: 100%;
}
header{
  display: flex;
  height: 100%;
  justify-content: center;
}
header a{
  text-align: center;
}
header img{
  width: 50%;
}
  .character_img{
    width: 100%;
    margin-top: 5%;
  }
  
  .character_caption{
    width: 100%;
  }
  .character_text{
    margin: 2% 5% 0 5%;
    text-align: center;
  }
  .character_caption_text p{
    margin: 1.5rem 0 1.5rem 1rem;
    font-size: 1rem;
  }
  .schedule_text{
    width: 100%;
    text-align: center;
  }

  .schedule_text dl{
    width: 200px;
  }
  
  .schedule_text dt{
    width: 20%;
    padding: 5px 0;
    font-weight: 500;
  }
  
  .schedule_text dd{
    width: 80%;
    padding: 4px 0;
    font-weight: 500;
  }
  
}

@media only screen and (max-width: 700px){
  .schedule_h4{
    letter-spacing: 0.5rem;
    padding-left:0.5rem;
  }  
  .schedule_text{
    width: 100%;
    text-align: center;
    font-size: 0.5rem;
    padding: 3% 0 5% 0;
  }

  .schedule_text dl{
    width: 150px;
    margin: 0 auto;
  }
  
  .schedule_text dt{
    width: 20%;
    padding: 5px 0;
    font-weight: 500;
    border-bottom: solid 1px #FBD353;
  }
  
  .schedule_text dd{
    width: 80%;
    padding: 4px 0;
    font-weight: 500;
    border-bottom: solid 1px #FBD353;  
  }

}