@charset "UTF-8";
/* CSS Document */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}

/*--------------------
共通
---------------------*/
body {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
	font-weight: 500;
  line-height: 1.5;
  background-color: #fff;
  overflow-y: scroll;
}
img {
  max-width: 100%;
  height: auto;
	vertical-align: bottom;
}
.mainSite {
  width: 100%;
  padding: 0;
  margin: 0;
}
.wrapper {
  position: relative;
  text-align: center;
}
.wrapper::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("../img/bg.jpg") center/cover no-repeat;
  z-index: -1;
}
section {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  padding: 5% 0;
}
.inner {
  width: 60%;
	min-width: 900px;
  margin: 0 auto;
  position: relative;
 
}
h1.midashi_title{
    color: #fff;
    text-align: center;
    font-size: 2rem;
    margin: 0 auto 5%;
    line-height: 1;
}
h1.midashi_title img{
    max-width: inherit;
    height: 3vw;
}
.text{
color: #fff;
text-align: justify;
text-align-last: left;
}

/*--------------------
LOADING
---------------------*/

.loading_wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: #000;
}
.logo {
width: 10%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 30px;
  text-align: center;
  z-index: 1000;
  opacity: 0;
}


/*--------------------
TRAILER
--------------------*/
.trailer{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 998;
    opacity: 0;
    display:none;
}

.trailer.on{
	animation-name: TfadeInAnime;
  animation-duration: 0.5s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes TfadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.trailer.off{
	animation-name: TfadeOutAnime;
  animation-duration: 0.5s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes TfadeOutAnime {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.trailer_overlay{
    position: fixed;
    top: 0;
    width: 100%;
   height: 100%;
    background: #000;
    opacity: 1;
    z-index: 999999997;
    
}

.close_btn{
      position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
  z-index: 999999999;
  cursor: pointer;
  transition: .7s;
}
.close_btn:hover{
transition: .7s;
opacity: .7;
}
.close_btn_inner{
position: relative;
width: 100%;
height: 100%;
}

.close_btn_inner::before,
.close_btn_inner::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: block;
  width: 30px;
  border-top: 3px solid #ffffff;
}
 
.close_btn_inner::before {
      transform: translate(-50%, -50%) skewY(-45deg);
}
 
.close_btn_inner::after {
     transform: translate(-50%, -50%) skewY(45deg);
}

.trailer.on .trailer_overlay{
    opacity: 1;
}

.trailer .trailer_inner{
    position: absolute;
    top: calc(50% - 40px);
    left: 50%;
    transform: translate(-50%, -50%) scale(1, 1);
    width: 60%;
    aspect-ratio: 16 / 9;
    z-index: 999999998;
    height: auto;
    box-sizing: content-box;
}

.trailer .trailer_tab{
    position: absolute;
    color: #fff;
    top: 100%;
    display:flex;
    width: 100%;
    justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 10px;
	z-index: 999999998;
}

.trailer .trailer_tab li{
    display: flex;
    justify-content: center;
    width: calc(50% - 2.5px);
    padding: 10px;
    font-weight: bold;
    background: #fff;
    color: #000;
    margin: 0 5px 5px 0;
    font-size: 14px;
    line-height: 1;
    flex-wrap: wrap;
    border: 1px solid #fff;
    box-sizing: border-box;
    letter-spacing: 0.05rem;
    text-align: center;
}
.trailer_tab li:nth-child(2n){
	margin: 0 0 5px;
}
.trailer .trailer_tab li:last-child{
    width: 100%;
    margin: 0;
}
.trailer_tab li.f_act{
	cursor: pointer;
	
	background: rgba(0, 0, 0, 0.8);
    color: #fff;
}

.trailer_tab li.f_act:hover{
   
}
#youtube1{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1,1);
    opacity: 1;
	z-index: 2;
}

.trailer.on #youtube1{
    transform: scale(1,1);
    opacity: 1;
}


.youtube_wrapper{
		width: 48%;
	
	}
.youtube_wrapper:first-child{
		margin-right: 4%;
	}
.youtube_inner{
position: relative;
 padding-bottom: 56.25%;
  overflow: hidden;
	
}
.youtube_inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ytp-cued-thumbnail-overlay-image {
    filter: none;
    -webkit-filter: none;
}
/*--------------------
ANIMATION
---------------------*/

.js-animation {
  opacity: 0;
  visibility: hidden;
  transition: all 2s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transition: all 2s;
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeOut {
  animation-name: fadeOutAnime;
  animation-duration: 2s;
 
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fadeOutAnime {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
	display: none;
  }
}


/*-------------------
MENU
--------------------*/
header {
 opacity: 0;
  position: fixed;
  z-index: 299;
  translate: none;
}

nav.header_nav {
position: fixed;
    top: 0;
    right: 5%;
    width: 100%;
    z-index: 300;

}
.nav_inner {
  display: flex;
  display: -webkit-flex;
  -webkit-justify-content: center;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  height: 60px;
  margin: 0 auto;
}
nav.header_nav ul {
    display: -webkit-flex;
    justify-content: flex-end;
    padding: 2% 0 0;
    width: auto;
    vertical-align: middle;
    box-sizing: border-box;
    z-index: 300;
    align-items: center;
}
nav.header_nav ul li {
vertical-align: middle;
    padding: 0 2% 0 0;
}

nav.header_nav ul li a {
  display: block;
  transition: 0.8s;
  color: #fff;
  font-family: "dnp-shuei-nmincho-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(14px, 2vw, 18px);
}
nav.header_nav ul li a:hover {
  color: #E51A1D;
  transition: 0.8s;
}

nav.header_nav ul li a img{
       height: 2vw;
    min-height: 28px;
    max-width: inherit;
	filter: drop-shadow(0 0 5px #000);
}
.sns_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sns_icon a {
  transition: .7s;
  color: #fff;
}
nav.header_nav ul.sns_wrap li a img {
      height: 26px !important;
    max-width: inherit;
}
.sns_icon a:hover {
  transition: .7s;
}
.twitter {
  margin: 0 10px 0 0;
}
nav.header_nav ul.sns_wrap {
    height: auto;
    line-height: inherit;
	       width: 80px;
}
nav.header_nav ul.sns_wrap li {
    margin: 0 10% 0 0;
    height: auto;
    line-height: inherit;
}
nav.header_nav ul.sns_wrap li:last-child {
    margin: 0 auto;
}
nav.header_nav ul.sns_wrap li a{
display: flex;
}
.sns_icon{
	    width: 30px;
}



/*--------------------
TOP
---------------------*/

section.top{
	width: 100%;
	position: relative;	
	padding: 0;
}
.top .inner{
    width: 100%;
    height: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0;	
	z-index: 6;
}
.top_main{
	opacity: 0;
}
.cmt_bnr{
	position: absolute;
    bottom: 5%;
    right: 5%;
    width: 10%;
	opacity: 0;
}
.cmt_bnr a{
	transition: .7s;
}
.cmt_bnr a:hover{
	transition: .7s;
	opacity: .7;
}

#overlay, #overlay-2 {
    position: absolute;
	z-index: 5;
	width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
	background-image: linear-gradient(45deg, rgba(0,0,0,.3) 20%, rgba(0,0,0,.5) 20%);
    background-size: 3px 3px;
	    opacity: 0.8;
}
#video-area, #video-area-2 {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
#video, #video-2 {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100vh;
  min-height: 100%;
  min-width: 100%;
}
.video-overlay {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  /*background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.6) 100%, rgba(0, 0, 0, .8) 100%);*/
  background-size: 3px 3px;
}

.mvtk_wrap{
	    margin: 0 auto;
}

/*--------------------
NEWS
---------------------*/

.news{
background-color: #000;
position: relative;
z-index: 1;
    padding: 3% 0;
}
.news::before{
content: "";
display: block;
position: absolute;
top: 0; 
left: 0;
width: 100%;
height: 100%;
opacity: .5;
mix-blend-mode: multiply;
z-index: 2;
}
.news .inner{
width: 50%;
position: relative;
z-index: 3;
}


.news_wrap {
    width: 100%;
    margin: 8% auto 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;

}
.news h1.midashi_title{
    margin: 0 5% 0 auto;
}
.news_date{
 color: #F7FBFC;
    display: block;
    text-align: left;
    width: auto;
    margin: 0 10px 0 0;
}
.news_title {
     /*width: 90%;*/
	width: 100%;
    margin: 0 auto;
    line-height: 1;
	text-align: left;
	color: #F7FBFC;
}



.viewall{
    text-align: right;
    font-size: 14px;
    position: relative;
    width: 150px;
    margin: 0 0 0 auto;
}
a.nor{
color: #fff;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    transition: .7s;
    position: relative;
    display: block;
}
a.nor:hover{
  transition: .7s;
  opacity: .6;
}

ul.ulblogtitle{
width: 100%;
margin: 0 auto 1%;
}

ul.ulblogtitle li{
    width: 100%;
    border-bottom: 1px solid #fff;
    padding: 0 0 10px 0;
    margin: 0 auto 5%;
    box-sizing: border-box;
}
ul.ulblogtitle li a{
	transition: .7s;
	display: flex;
    justify-content: flex-start;
    align-items: center;
	font-size: clamp(14px, 1vw, 16px);
}

ul.ulblogtitle li a:hover .news_title, ul.ulblogtitle li a:hover .news_date{
	transition: .7s;
	color: #fff;
}
.arrow {
position: absolute;
    display: inline-block;
    bottom: 25%;
    right: 10%;
    width: 30px;
    height: 2px;
    margin: 0 0 0 24px;
    border-radius: 9999px;
    background-color: #fff;
}

.arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 12px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 2px) 50%;
}


/*--------------------
MOVIE
---------------------*/

section.movie{
	position: relative;
}
section.movie::before{
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.4;
}
.movie .inner{
	position: relative;
	z-index: 2;
}

.movie_wrap{
display: flex;
overflow: hidden;
}
ul.trailer_list{
      width: 80%;
    margin: 0 auto;
    display: flex;
        justify-content: center;
    align-items: center;
  }
  li.trailer_item{
    width: 80%;
    margin: 0 auto;
  }
   li.trailer_item:last-child{
  margin: 0;
  }
.trailer_pop_btn{
	    margin: 0 auto;
    width: 100%;
	filter: drop-shadow(0 0 5px #fff);
	box-sizing: border-box;
	    background: #000;
	position: relative;
	z-index: 1;
}

.trailer_pop_btn a{
    display: flex;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    position: relative;
    z-index: 5;
    text-align: center;
    justify-content: center;
    align-items: center;
	    overflow: hidden;
}
.trailer_pop_btn a::before{
content: "";
    position: absolute;
    background-image: url(../img/youtube_social_icon_red.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10%;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    display: block;
    right: 0;

}
.trailer_pop_btn iframe{
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    line-height: 1;
}

.movie_midashi{
    color: #fff;
    margin: 10px 0 0 0;
	    letter-spacing: 0.5rem;
		text-align: center;
}




/*--------------------
INTRO
---------------------*/

section.intro{
	width: 100%;
	background-image: url("../img/intro_bg.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}
.intro .text{
	color: #9d220a;
}

h2.lead_01{
	width: 55%;
	margin: 0 auto 2%;
}
h2.lead_02 {
    width: 78%;
    margin: 5% auto 2%;
}

ul.intro_img{
	display: flex;
	width: 100%;
	    margin: 5% auto 0;
}
ul.intro_img li{
width: calc(100% / 3);
    margin: 0 1% 0 0;
    filter: drop-shadow(0 0 10px #fff);
}
ul.intro_img li:last-child{
	margin: 0;
}

/*--------------------
STORY
---------------------*/

.story .inner{
	z-index: 10;
}

.story_main_wrap{
	width: 100%;
	position: relative;
}

.story_copy_01{
position: absolute;
    top: 50%;
    left: 15%;
    width: 25%;
    filter: drop-shadow(0 0 5px #000);
}
.story_copy_02{
position: absolute;
    bottom: 20%;
    right: 15%;
    width: 30%;
    filter: drop-shadow(0 0 5px #000);
}


/*--------------------
Character
---------------------*/


ul.character_list{
	display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}
li.character_list_item{
	width: calc(100% / 3);
	margin: 0 5% 0 0;
}
.character_img_wrap{
	position: relative;
}
.cast_name{
	width: 15%;
	position: absolute;
	bottom: 5%;
	right: 5%;
}

li.character_list_item:nth-child(1) .cast_name, li.character_list_item:nth-child(3) .cast_name{
	left: 5%;
}
.chara_name_wrap{
	    margin: 5% 0 3%;
}
.chara_info{
	        color: #e44d21;
    font-size: clamp(16px, 1.5vw, 20px);
    text-align: left;
    font-weight: bold;
}
.chara_name{
	    color: #e44d21;
	font-size: clamp(18px, 2vw, 24px);
	 text-align: left;
    font-weight: bold;
}
.chara_name span.kana{
	    color: #e44d21;
	font-size: clamp(14px, 1.6vw, 18px);
    font-weight: bold;
}

section.character .text{
	color: #9d220a;
}
.point{
	color: #9d220a;
	font-size: 20px;
	margin: 5% auto;
	text-align: center;
}
.other_billimg{
	margin: 0 auto 5%;
    width: 65%;
}



/*--------------------
Staff
---------------------*/

section.staff {
    padding: 0 0 5% 0;
}

.staff ul li{
	    width: 7%;
    margin: 0 auto 4%;
}
.staff ul li:last-child{
    margin: 0 auto;
}
section.billing_s{
	padding: 0 0 5% 0;
}

.billing{
	width: 65%;
	margin: 0 auto;
}

/*--------------------
COMMENT
---------------------*/

ul.cmt_list li{
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.cmt_img{
	    width: 20%;
    margin: 0 5% 5% 0;
}
.cmt_text{
	width: 65%;
	text-align: justify;
	text-align-last: left;
}
.cmt_name{
	font-size: clamp(18px, 1.2vw, 22px);
    font-weight: bold;
    margin: 0 auto 3%;
}
.cmt_name span{
	font-size: clamp(16px, 1vw, 20px);
}

/*--------------------
FOOTER
---------------------*/


/*--------------------
GB SNS
---------------------*/
.gb_sns_area{
border-top: 1px solid #fff;
background-color: #000;
}

.gb_sns_area .inner{
align-items: center;
    padding: 2% 0;
    display: flex;
   justify-content: flex-end;
    width: 40%;
}
.gb_logo{
        width: 50%;
		    text-align: left;
}
.gb_logo img{
        width: 45%;
}
.officialsns {
    color: #fff;
    width: 25%;
    display: flex;
    align-items: center;
    margin: 0 5% 0 0;
}
ul.gb_sns_list{
display: flex;
width: 20%;
}
ul.gb_sns_list li{
	margin: 0 10% 0 0;
}
ul.gb_sns_list li:last-child{
	margin: 0;
}



@media screen and (max-width: 1200px) {
	.news .inner {
    width: 70%;
}
}

@media screen and (max-width: 1080px) {
	.inner{
		min-width: inherit;
	}
}

@media screen and (max-width: 768px) {

.wrapper{
margin: 50px auto 0;
}
section{
padding: 0;
}
.inner {
    width: 80%;
	
    margin: 0 auto;
    padding: 15% 0;
}
h1.midashi_title  {
        margin: 0 0 10%;
}
h1.midashi_title img {
        max-width: inherit;
        height: 13vw;
        max-height: 50px;
    }

/*--------------------
LOADING
---------------------*/

.logo {
width: 30%;
}
	
/*--------------------
TRAILER
---------------------*/
	
	.trailer .trailer_inner {
           top: 40%;
    width: 90%;
}

/*-------------------
MENU
--------------------*/
header{
height: 50px;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
}
nav.header_nav{
z-index: 777;
    position: fixed;
    top: inherit;
    left: inherit;
    width: 100%;
}
.sns_icon{
        width: 25px;
        position: absolute;
        top: 50%;
        left: 5%;
        transform: translate(0, -50%);
        z-index: 779;
    }

  /*hamburger-menu*/
  .menu_bg {
width: 100%;
        height: 50px;
        background-color: #000;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 779;
  }
  .menu {
        height: 15px;
        position: absolute;
        top: 50%;
        right: 5%;
        width: 30px;
        z-index: 779;
        cursor: pointer;
        transform: translate(0, -50%);
  }
  .menu__line {
    background: #fff;
    display: block;
    height: 2px;
    position: absolute;
    transition: transform .3s;
    width: 100%;
  }
  .menu__line--top {
    top: 0;
  }
  .menu__line--center {
    top: 50%;
    transform: translateY(-50%);
  }
  .menu__line--bottom {
    bottom: 0;
  }
  .menu__line--top.active {
    top: 8px;
    transform: rotate(40deg);
  }
  .menu__line--center.active {
    transform: scaleX(0);
  }
  .menu__line--bottom.active {
    bottom: 5px;
    transform: rotate(-40deg);
  }
  /*gnav*/
  .gnav {
    background-color: #000;
    background-repeat: no-repeat;
    background-size: cover;
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    overflow: auto;
    width: 100%;
    z-index: 778;
  }
  .gnav__wrap {
flex-direction: column;
        align-items: center;
        display: flex;
        justify-content: center;
        height: calc(100% - 50px);
        min-height: inherit;
        bottom: 0;
        position: absolute;
        left: 0;
        width: 100%;
  }
  .gnav__menu__item {
    width: 100%;
    height: 5vh;
    vertical-align: middle;
    line-height: 5vh;
    margin: 0 auto;
  }
  .gnav__menu__item:last-child {
    border: none;
  }
  .gnav__menu__item a {
    color: #fff;
    font-size: clamp(18px, 6vw, 22px);
    font-weight: 700;
    text-decoration: none;
    transition: .5s;
    cursor: default;
    padding: 0;
    width: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	text-align: left;
  }

     nav.header_nav ul.gnav__menu {
        width: 60%;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: left;
		 padding: 0;
  }
  nav.header_nav ul.gnav__menu li {
    text-align: center;
	padding: 0 0 10%;
  }


  nav.header_nav ul.gnav__menu li:first-child {
    border-left: none;
  }
  nav.header_nav ul.gnav__menu li img {
	   height: 10vw;
        max-height: 35px;
  }

nav.header_nav ul li a {
    text-align: center;
	}


  
  /*humberger-menuここまで*/

/*--------------------
TOP
---------------------*/
section.top {
    height: auto;
	}
.cmt_bnr{
	position: inherit;
    bottom: inherit;
    right: inherit;
    width: 100%;
	margin: 0 auto 10%;
}
	.top_main {
		opacity: 0;
    height: auto;
}
.top_main img {
    height: auto;
	max-width: 100%;
	}
	.date_wrap {
    bottom: 5%;
	}
	.date {
    width: 50%;
	        max-width: 350px;
	}
	.roadshow {
    font-size: 3vw;
	    margin: 2% auto 4%;
	}
	.theater_name {
    width: 100%;
	}
.theater_btn {
    margin: 5% auto;
	}
	
.mvtk_wrap{
	    margin: 0 auto 10%;
}	
/*--------------------
NEWS
---------------------*/
	
.news{
padding: 0;
}
	.news .inner {
    width: 80%;
    padding: 10% 0;
}
.news_wrap {
        margin: 0 auto;
        flex-direction: column;
        align-items: center;
	}
.news h1.midashi_title{
          margin: 0px 0px 10%;
        width: 100%;
}
	ul.ulblogtitle li a {
    flex-direction: column;
		font-size: clamp(14px, 4vw, 16px);
	}
	.news_date {
    width: 100%;
    margin: 0 0 5px;
	}
	.news_title {
    width: 100%;
    margin: 0 0 3%;
	line-height: inherit;
}
	
/*--------------------
MOVIE
---------------------*/
	
	 .movie .inner {
        padding: 8% 0 10%;
	}

	ul.trailer_list {
    width: 100%;
	}
	li.trailer_item {
    width: 100%;
	}
	
/*--------------------
INTRO
---------------------*/
	
	.intro_main{
		overflow: hidden;
	}
	
	.intro_main_inner{
		    width: 165%;
    margin: 0 auto;
    transform: translateX(-50%);
    left: 49%;
    position: relative;
	}
h2.lead_01 {
    width: 85%;
    margin: 0 auto 8%;
}
	h2.lead_02 {
    width: 100%;
    margin: 10% auto 8%;
}
ul.intro_img {
    margin: 10% auto 0;
	flex-wrap: wrap;
}
	ul.intro_img li {
    width: 49%;
    margin: 0 2% 2% 0;
	}
	ul.intro_img li:nth-child(2n) {
    margin: 0 0 2% 0;
	}
	ul.intro_img li:nth-child(3) {
    margin: 0 2% 0 0;
	}
	ul.intro_img li:nth-child(4) {
    margin: 0;
	}
	
	
/*--------------------
STORY
---------------------*/
	
	.story_copy_01 {
    position: absolute;
    top: 3%;
    left: 15%;
    width: 25%;
    filter: drop-shadow(0 0 5px #000);
}
	.story_copy_02 {
    position: absolute;
    top: 38%;
    right: 15%;
    width: 22%;
		filter: drop-shadow(0 0 5px #000);
	}
	
	    .story_copy_03 {
        position: absolute;
        bottom: 3%;
        left: 15%;
        width: 15%;
        filter: drop-shadow(0 0 5px #000);
	}


/*--------------------
Character
---------------------*/
	
	ul.character_list {
    flex-direction: column;
	}
	li.character_list_item {
    width: 90%;
    margin: 0 auto 10%;
}
	
	.chara_name {
    font-size: clamp(18px, 5vw, 24px);
	}
	.point {
    margin: 10% auto;
	}
	.other_billimg {
    margin: 0 auto 10%;
    width: 80%;
}

	.chara_name_wrap {
    margin: 8% 0 5%;
}
/*--------------------
Staff
---------------------*/
	section.staff {
    padding: 0;
}
	    .staff .inner {
        padding: 0;
    }
	.staff ul li {
    width: 20%;
    margin: 0 auto 10%;
}
.billing {
    width: 100%;
    margin: 0 auto;
}
	
	section.billing_s {
    padding: 0;
}
	
	
/*--------------------
COMMENT
---------------------*/
	
	.comment .inner{
		    padding: 15% 0 0;
	}
	
	ul.cmt_list li {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
	margin: 0 auto 15%;
	}
	ul.cmt_list li:last-child {
	margin: 0 auto;
	}
	.cmt_img {
    width: 60%;
    margin: 0 auto 10%;
}
	.cmt_text {
    width: 90%;
	}
	
/*--------------------
GB SNS
---------------------*/
	.gb_sns_area .inner {
    flex-direction: column;
    align-items: center;
    padding: 10% 0;
    display: flex;
    justify-content: flex-end;
    width: 80%;
}
.gb_logo {
            width: 75%;
        max-width: 300px;
    text-align: center;
    margin: 0 auto 5%;
}
.gb_logo img {
    width: 60%;
}
.officialsns {
    color: #fff;
    width: 40%;
	max-width: 200px;
    display: flex;
    align-items: center;
    margin: 0 auto 7%;
	}
ul.gb_sns_list {
    width: 40%;
	        max-width: 200px;
	}

}

@media screen and (max-width: 500px) {
	
/*--------------------
TOP
---------------------*/
	
		.name{
	font-size: clamp(20px, 6vw, 24px);
	}
	.character_name{
font-size: clamp(18px, 1.4vw, 20px);
	
}
.name span.kana {
    font-size: clamp(14px, 1.2vw, 16px);
	}
	
	
	
	}






@media (orientation: landscape) and (max-width: 960px){
/*デバイスが横向き、画面の横幅が 767px 以下の場合の記述*/

}
	
	
	
	