@charset "utf-8";

#all{
  width: 100%;
  overflow-x: hidden;
}

header{
  display: block;
  width: 100%;

}
header img {
  display: block;
  width: 80px;
  float: left;
  margin-left: 20px;
}
/*ハンバーガーメニューに関するCSS */

/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 10px;
  z-index: 10; /* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #fff;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
/* /* アイコンがクリックされたらメニューを表示 */

#drawer_input:checked ~ .nav_content {
left: 0;  
}
#drawer_input:checked ~ .character_list {
  display: none;  
  }
   /* メニューを画面に入れる */

/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 9;
  background: rgba(100, 100, 100, 0.5);
  transition: 0.5s;
  padding-top: 40px;
}


.nav_content ul{
  padding-top: 55px;
}

.nav_item a {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 40px;
  list-style: none;
}

#main_visual {
  display: block;
  width: 100%;
  margin: 40px  0 -40px 0;
}

#main {
  margin-left: 0 auto;
  width: 100%;
  padding: 2%;
}
#all {
  width: 100%;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

#contents{
  z-index: 1;
}

h2{
    margin-top: 30px;
}
.gotop {
  position: absolute;
  top: -20px;
  right: 10px;
}

#sub {
  width: 100%;
  float: left;
  margin: 30px;
}
.profile{
  width: 80%;
  margin: -10px 0 30px 0;

}
.profile img{
  float: left;
  width: 100px;
  margin-right: 20px;
}

.profile dd{
  
  display: block;
  text-align: left;
  padding-top: 0px;

}
section {
  float: left;
}
#gotop{
  position: fixed;
  bottom: 15px;
  right: 20px;
}
footer {
  width: 100%;
  height: auto;
  font-family: 'Noto Sans JP', sans-serif;
}
footer p {
  font-size: 0.5em;
  line-height: 1.5em;
}
/* キャラクター */
#characters_area {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.characters_box {
  margin: 5px;
}

/* すとーりー */

.comic_box{
display: flex;
flex-direction: column;
justify-content: left;
align-items: center;
}

.comic_tmn {
  width: 90%;
  height: auto;
  margin-bottom: 20px;
}
.comic_text {

width: 100%;
}
/* キャラシート */

.character_list {
  width: 100%;
  height: auto;
  background-color:rgba(0,0, 0, 0.7);
  
  padding: 0;
  position: fixed;
  z-index: 8;
  left: 0px;
  top: 10px; 
 }

 .off{
  display: none;
 }
.character_list li {
  list-style: none;
  display: inline-block;
  margin-left: 10px;
  line-height: 50px;
}

.character_list a {
  color: white;
  line-height: 1em;
  display: block;
 
}




.characters_img{
  width: 100%;
}

#characters_seat .charapage_area h2:first-child{
    margin-top: 50px;
}


/* まんがページ */
.comic_contents_box {
    margin-top: 30px;
    height: 500px;
    overflow: scroll;
  }

  /* 拡大漫画ページ */
  #big_comic_box {
    width: 100%;
    margin: 2%;
  }
  #big_comic_box img {
    display: block;
    width: 98%;
  }
  