<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*------------------------------------------------------------------------------
 ANCHORS
 -------------------------------------------------------------------------------*/

a:link,
a:visited,
a:hover,
a:active	{ color: #fc3f69; text-decoration: none; }

/*------------------------------------------------------------------------------
 FONTS
 -------------------------------------------------------------------------------*/

body, input, select, textarea, table, th, td, li ,a {
	font-family: Ryumin Regular KL,Ryumin Bold KL,"游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif,Helvetica;
}
body, input, select, textarea {
	font-size: 1.2rem;
	*font-size: 75%;
	color: #57117a;
	line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight:normal;
}
strong, em {
	font-style: normal;
	font-weight: bold;
}

/*------------------------------------------------------------------------------
 BODY
 -------------------------------------------------------------------------------*/
html {
    height: 100%;
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
}
body {
	overflow-y: scroll;
	*overflow-y: visible;
	height:100%;
	min-height: 100%;
	background-color: #202020;
/*	background:url("../img/bg.jpg") repeat left top;*/
}

body::before {
	background-image: url("../img/bg_body.png");
	position: fixed;
	display: block;
	width: 100vw;
	height: 100vh;
	background-position: center top;
	background-repeat: repeat;
	content: '';
	z-index: -999;
}

.site-header.change-color {
  background-color: #202020; /*スクロールしたあとのヘッダー背景色*/
  transition: 0.3s;
}


.pc {
	display: block!important;
}

.sp {
	display: none!important;
}

/*ページ内リンクずれ修正*/
.jump_point {
	padding-top: 66vh;
	margin-top: -66vh;
}

/*------------------------------------------------------------------------------
 WRAPPER
 -------------------------------------------------------------------------------*/
#wrapper {
	height:100%;
	margin: 0;
	padding: 0;
}

body &gt; #wrapper {
	height:auto;
}

#container {
	margin:0 auto;
	
}


/*------------------------------------------------------------------------------
 HEADER
 -------------------------------------------------------------------------------*/
.header {
	padding: 12px 0 11px;
	position: fixed;
	z-index: 1000;
	width: 100%;
	border-image-slice: 1;
	background: url(../img/line_header.png) repeat-x;
}



/* 
** The Header Media Queries **
** Tweak as per your needs **
*/
.brand {
  display: inline-block;
  font-weight: bold;
  font-size: 20px; 
/*  margin: 1rem 0;*/
}


.brand img{
	width: 15.399vw;
	min-width: 250px;
}

.nav__wrapper {
	display: inline-flex;
	align-items: center;
}

.site-header {
}

.site-header__wrapper {
  text-align: center; 
  } 

.site-header__wrapper {
  padding-top: 3.1rem;
/*  padding-bottom: 1rem; */
}

.nav__item a {
     display: flex;
    justify-content: center;
}

.nav__book a {
    background: url("../img/nav_book_hover.png?v=230725_1") no-repeat;
	background-size : 70%;
	background-position-x : center;
	transition: background-color 1s;
}

.nav__audiobook a {
    background: url("../img/nav_audiobook_hover.png?v=230725_1") no-repeat;
	background-size : 70%;
	background-position-x : center;
	transition: background-color 1s;
}
.nav__dramacd a {
    background: url("../img/nav_dramacd_hover.png?v=230725_1") no-repeat;
	background-size : 70%;
	background-position-x : center;
	transition: background-color 1s;
}
.nav__goods a {
    background: url("../img/nav_goods_hover.png?v=230725_1") no-repeat;
	background-size : 70%;
	background-position-x : center;
	transition: background-color 1s;
}
.nav__special a {
    background: url("../img/nav_special_hover.png?v=230725_1") no-repeat;
	background-size : 70%;
	background-position-x : center;
	transition: background-color 1s;
}

.nav__book a img, .nav__audiobook a img, .nav__dramacd a img, .nav__goods a img, .nav__special a img {
	width :70%

}


 
.nav__book a:hover img,
.nav__audiobook a:hover img,
.nav__dramacd a:hover img,
.nav__goods a:hover img,
.nav__special a:hover img {
/*    visibility: hidden ;*/
    display: inline-block;
	animation: fadeout-anim 0.1s linear forwards;
	background-color: transparent; /* IE6対応 */
}

@keyframes fadeout-anim {
	100% {
		opacity: 0;
	}
}


.nav__toggle {
  display: none;
}

.nav &gt; ul &gt; li{
	padding: 4px 20px 11px 20px;
	position: relative;
}

.nav &gt; ul &gt; li:first-of-type {
	border-left: none;
}

.nav &gt; ul &gt; li::before {
	content: "";
	position: absolute;
	top: 20px;
	left: 0;
	width: 7px;
	height: 55px;
	background-image: url("../img/line_menu.png");
	background-repeat: no-repeat;
	background-position: center center;
}

.nav &gt; ul &gt; li:first-of-type::before {
	background-image: none;
}

.header.HeightMin{
    padding-bottom: 146px;
    padding-top: 12px;
    top: -100px;
    /* height: 100%; */
    z-index: 999;
    height: 3.43vw;
    animation: DownAnime 0.7s forwards;
    background-color: #202020;
	box-shadow: 0px 3px 5px #000;
}
/*ヘッダー動き詳細*/
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

#page-top{
	padding: 0 0 2vw;
	text-align: right;
}
	#page-top img{
		width: 6%;
	}

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
/*------------------------------------------------------------------------------
 CONTENTS
 -------------------------------------------------------------------------------*/

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

#mv {
	margin: 0 auto;
	padding-top: 230px;
	text-align: center;
    z-index:-9999;
}

#mv .mv__body {
    position: relative;
    margin: 0 auto;
    text-align: center;
	max-width: 1120px;
	max-height: 683px;
	padding: 0 0 65px;
}

#mv .mv__body img{
	width: 100%;
}
.mv_height{
	height: 1px;
}
p a{
	transition: filter 0.3s ease;
}
.dramacd-btn a,.dramacd_set-btn a,.goods-btn a,.p-btn a,.twitter__body a,.menu_dramacd li a,#page-top a,#page-back a,ul.icon-sns_list a{
	
	transition: all 0.5s 0s ease;
}

.dramacd-btn a:hover,.dramacd_set-btn a:hover,.goods-btn a:hover,.p-btn a:hover,.twitter__body a:hover,.menu_dramacd li a:hover,#page-top a:hover,#page-back a:hover,ul.icon-sns_list a:hover{
	
	filter: brightness(1.10);
}


h2{
	text-align: center;
}
h2 img{
	width: 12.65vw;
	max-width: 243px;
}

.contents{
	width: 1120px;
	margin: 0 auto;
}

.information{
	background-image: url("../img/bg_info.png");
    background-position: center top;
	background-size: contain;
    background-repeat: no-repeat;
	height: 57vw;
    padding: 9.5625vw 0 0;
	margin-bottom: 2.9875vw;
/*	max-width: 1920px;*/
	margin: 0 auto;
}

.news__body h2 span {
    display: none;
}
h2 span {
    display: none;
}
.twitter__body{
	width: 100%;
    box-sizing: border-box;
	    text-align: center;
}

.news {
    padding-top: 28px;
    display: block; 
/*    max-width: 900px;*/
    margin:0 auto;
    margin-bottom:30px;
}


.news__body {
/*    background-color: #fff;*/
    border-radius: 4px;
    box-sizing: border-box;
    padding:18px;
}

.news__body h2 {
    
    padding:0.56875vw 0 0.9895833333333333vw;
    margin-bottom:0.78125vw;
}


.news_inner {
	width: 100%;
    max-width: 1084px;
    height: 13.55vw;
    min-height: 100px;
    overflow-y: scroll;
    font-size: 14px;
}

.news_inner ul li {
	font-size: 2.5625rem;
	line-height: 213%;
	list-style: none;
	background-image: url("../img/line_news.svg");
	background-position: center top;
	background-repeat: repeat-x;
	color: #111111;
	/*	padding-bottom: 0.35vw;*/
	background-color: #fafafa;
	
}

.news_inner ul li a {
	color: #00afeb;
	
}

.news_inner ul li a:hover {
	border-bottom: solid 1px #00afeb;
	
}

.twitter__body h2 {
    
    padding:0.9vw 0 0.3vw;
    margin-bottom:0.78125vw;
}

.twitter_inner {
    max-width: 1120px;
	width: 100%;
	margin: 0 auto;
	max-height: 300px;
	height: 10%;
}


.twitter__body_sp{
	display: none;
}


/*小さめサイズのモニタ調整用*/
@media screen and (max-width:1536px){
	.twitter__body{
	display: none;
	}
	.twitter__body_sp{
	display: block;
    padding:0.9vw 0 0.3vw;
    margin-bottom:0.78125vw;;
	text-align: center;
	}
	.twitter__body_sp h2 {
		padding: 0.2vw 0 0.3vw;
		margin-bottom:0.78125vw;
	}
	
	
	.news_inner ul li {
	font-size: 1.85625rem;
	line-height: 213%;
	list-style: none;
	background-image: url("../img/line_news.svg");
	background-position: center top;
	background-repeat: repeat-x;
	color: #111111;
	/*	padding-bottom: 0.35vw;*/
	
	}
	.news__body {
    padding: 10px 0 ;
	}
	
	
	.news_inner {
    width: 100%;
    max-width: 1084px;
    height: 5.550000000000001vw;
    min-height: 90px;
    overflow-y: scroll;
    font-size: 14px;
	}
	
}

.btn_follow{
	padding: 1.52vw 0 0.3vw;
	text-align: center;
	display: inline-block;
}

.btn_follow img {
   width: 18.65vw;
    max-width: 362px;
}


.comicalize{
	max-width: 1298px;
	width: 67.60416666666667vw;
	margin: 0 auto 1.4875vw;
}
.comicalize__body{
	background-image: url("../img/frame_comic.png");
	background-position: center top;
	background-repeat: no-repeat;
	
    background-size: contain;
    padding: 0 0 96px;
}

.comicalize__body h2{
	padding: 3.23vw 0  0.88vw;
}

.comicalize__body h2 img {
    width: 50.65vw;
    max-width: 979px;
}


.bn__comicalize__body{
	display: flex;
    justify-content: center;
    align-items: center;
	
}
.bn__comicalize__body p{
	margin: 0 0.5729166666666666vw;
}
.bn__comicalize__body p img{
	width: 26vw;
	max-width: 490px;
}

.stage{
	width: 66vw;
	max-width: 1250px;
	margin: 0 auto;
	
}
.stage__body p img{
	width: 66vw;
	max-width: 1250px;
	padding-bottom: 2.3729vw;
}

.stage__body h2{
	padding-bottom: 1.5729vw;
}

/*---------------------------------------------------
 BOOKS
 ----------------------------------------------------*/
.ttl_novel,.ttl_goods,.ttl_dramacd,.ttl_audiobook,.ttl_special{
	background-color: #fff;
	padding: 12px 0 0px;
}

h2.ttl_novel img {
	width: 23vw;
	max-width: 305px; 
}

.ttl_comic{
	background-color: #fff;
	padding: 12px 0 0px;
	margin: 61px 0 0;
}

h2.ttl_comic img {
	width: 20vw;
	max-width: 365px; 
}
.list_book{
	padding-top: 290px;
}

.list_book__body{
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: space-around;
	margin: 45px 0 0;
	
}

.book{
	width: 33%;
	text-align: center;
	margin:  0 0 35px;
}

.book .cover{
	width: 330px;
	height: 431px;
	box-sizing: border-box;
	border-style: solid;
	border-image-source: url("../books/img/frame_book.png");
	border-image-slice: 53 51 54 51;
	border-image-width: 53px 51px 54px 51px;
	border-image-repeat: stretch;
	background-clip: content-box;
	background-color: black;
	border-width: 53px 51px 54px 51px;
	color: white;
}
.vol{
	
}

.p-btn{
	padding: 10px 0;
}


/*---------------------------------------------------
 GOODS
 ----------------------------------------------------*/
.ttl_goods{
	background-color: #fff;
	padding: 12px 0 0px;
}

h2.ttl_goods img {
    width: 20vw;
    max-width: 319px;
}
.list_goods{
	padding-top: 290px;
}

.list_goods__body{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: space-around;
	margin: 45px 0 0;
}

.goods{
	width: 45%;
    text-align: center;
    margin: 0 0 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.goods .cover{
	width: 523px;
	height: 403px;
	height: auto;
	box-sizing: border-box;
	border-style: solid;
	border-image-source: url("../goods/img/frame_goods.png");
	border-image-slice: 51 51 51 52;
	border-image-width: 51px 51px 51px 52px;
	border-image-repeat: stretch;
	background-clip: content-box;
	background-color: black;
	border-width: 51px 51px 51px 52px;
	color: white;
}
.name_goods img{
	width: 32.703125vw;
	max-width: 437px;
}

.goods-btn{
	padding: 10px 0;
}

/*---------------------------------------------------
 DRAMACD AUDIOBOOK
 ----------------------------------------------------*/

.list_dramacd{
	padding-top: 378px;;
}

.list_dramacd__body{
	background-image: url("../dramacd/img/bg_dramacd_pc.png");
	background-size: initial;
	background-position: center;
	padding: 132px 0;
	background-repeat: no-repeat;
	margin: 2vw 0 4vw;
	
}


.contents__dramacd{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: space-around;
	width: 1120px;
	margin: 0 auto;
}



h2.ttl_dramacd img {
    width: 26vw;
    max-width: 437px;
}

h2.ttl_audiobook img {
	    width: 36vw;
    max-width: 557px;
}

.dramacd__img{
	
}
.dramacd-btn {
	text-align: center;
	padding: 0 0 10px;
}
.dramacd-btn img, p.audiobook-btn img{
	width: 23vw;
	max-width: 334px;
}

.audiobook-btn {
	text-align: center;
	padding: 10px 0 5px;
}

.dramacd__txt{
	
}

.menu_dramacd{
	padding: 30px 0;
}

.menu_dramacd li{
	padding-bottom: 10px;
}

.list_dramacd_set__body{
	text-align: center;
	margin: 0 auto;
	position: relative;
	    padding-bottom: 75px;
}
.list_dramacd_set__body img {
    margin: 0 auto;
    max-width: 100%;
}

.dramacd_set-btn{
	position: absolute;
    right: 34%;
    left: 34%;
	bottom: 166px;
}

/*---------------------------------------------------
 DRAMACD_CONTENTS
 ----------------------------------------------------*/

.list_dramacd__comment__body{
	background-color: rgb(32 32 32 / 75%);
	background-image: url("../dramacd/img/line_dramacd_sp.png"),
					  url("../dramacd/img/line_dramacd_sp.png");
	background-repeat:repeat-x,
					 repeat-x;
	background-size: initial;
	background-position:center top,
						center bottom;
	margin: 6vw 0 5vw;
	padding: 3vw 0 4vw;
	
}

.contents__dramacd__comment{
	width: 1120px;
	margin: 0 auto;
}


.comment_box {
    margin-bottom: 20px;
}

.cast_comment_box {
	padding-top: 2.2vw;
    padding-bottom: 2.2vw;
    display: flex;
    border-bottom:1px solid #c9a063;
	justify-content: space-between;
	align-content: space-around;
}

.comment_txt {
    margin-left:15px;    
}

.comment_txt p {
        font-size: 1.85625rem;
        color:#fff;
        line-height: 165%;
        margin-bottom: 21px;
}

.comment_txt p.cast_name {
	font-size: 2.55625rem;
	font-weight: bold;
	color:#c9a063;
	margin-top:5px;
	margin-bottom: 10px;
}

.comment_box {
	margin-bottom: 20px;
    }

 .read {
	font-size: 2.15625rem;
	text-align: center;
	color:#fff;
	font-weight: bold;
	margin-bottom: 2vw;
	line-height: 150%;
}


.question {
	background:#fff;
	color: #202020;
	font-size: 1.85625rem;
	padding:10px;
	margin-bottom: 1vw;  
    line-height: 150%;
}


.question p span {
	font-weight: bold;
}

.cast_photo{
	margin: 0 20px 0 0;
}
.justification_comment {
	margin-left: 1em!important;
	text-indent: -1em;
}


.sample_box {
	margin: 15px auto 66px;
	padding: 10px;
	width: 70%;
}
.sample_box p {
	font-size: 1.85625rem;
	color: #fff;
	margin: 5px 0 8px;
	text-align: center;
}

.youtube {
	position: relative;
	padding-top: 56.25%;
	margin: 0 auto;
}
.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

#page-back{
	padding: 0 0 2vw;
	text-align: left;
	padding: 2.25vw 2.25vw 0 0;
}

#page-back img{
	width: 15%;
}

.icon_new {
	color:#fff;
	font-size:1.0em;
	background-color: #01afea;
	padding: 2.5px 8px 3px;
	font-weight:bold;
	margin-left: 10px;
}

/*---------------------------------------------------
 SPECIAL
 ----------------------------------------------------*/
h2.ttl_special img {
	width: 29vw;
	max-width: 400px;
}

.special_box{
    border-top:1px solid #c9a063;
/*
	background-image: url(../dramacd/img/line_dramacd_sp.png);
    background-position: center top;
    background-repeat: repeat-x;
*/
	padding: 50px 20px;
}
.special_box:first-child{
    margin-top: 50px;
}

.special_box h3{
	font-size: 1.85625rem;
	color: #fff;
	
}

.special_box h3 span.date{
	color: #c9a063;
	font-weight: bold;
	margin-right: 20px;
}

ul.icon-sns_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	
}


ul.icon-sns_list li{
	margin: 10px 10px;
	width: 22%;
}
ul.icon-sns_list li img{
	width: 100%;
}


.icon-sns_list{
	
}

.special_date_justification{
	margin-left: 6em;
	text-indent: -6em;

}


	

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

.footer__body {
    display: flex;
    align-items: center;
    flex-direction: column;
   padding: 8px 10px 12px;
    background-color: #c9a063;
    position: relative;
    font-size: 1.45rem;
}

.copy {
    height: 30px;
}

.nav-global {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 1.5em;
    list-style-type: none;
	margin: 0;
    padding: 0.5em 0 0;
}

.nav-global a {
	color: #111111;
	font-weight: bold;
}

.nav-global a:hover {
	opacity: 0.7;
}

.nav-global .twitter {
    margin-right: 7px;
    display: block;
    width: 20px;
	height: 33px;
}

.nav-global .logo_footer {
    margin-right: 7px;
    display: block;
    width: 80px;
    height: 33px;
}

.footer__line{
	height: 7px;
	width: 100vw;
    background-color: #c9a063;
	    margin-bottom: 10px;
}

/*------------------------------------------------------------------------------
タブレット スマートフォン用の記述
 -------------------------------------------------------------------------------*/
@media screen and (max-width:1220px){
	
	
	/*----------------------------------------------------------
	 HEADER
	 -----------------------------------------------------------*/
	
		.header {
		padding: 12px 0 11px;
		position: fixed;
		z-index: 1000;
		width: 100%;
		border-image-slice: 1;
		background: url(../img/line_header_sp.png) repeat-x;
		background-size: contain;
	}
	
		.nav &gt; ul &gt; li::before {
		content: "";
		position: absolute;
		top: 7px;
		left: 0;
		width: 5px;
		height: 8.933vw;
		background-image: url("../img/line_menu_sp.png");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
	}
	
		.header.HeightMin{
		padding-bottom: 30.6vw;
		padding-top: 1.4vw;
		top: -100px;
		/* height: 100%; */
		z-index: 999;
		height: 0px;
		animation: DownAnime 0.7s forwards;
		background-color: #202020;
		box-shadow: 0px 3px 5px #000;
	}

	/* 
	** The Header Media Queries **
	** Tweak as per your needs **
	*/
	.brand {
	  display: inline-block;
	  font-weight: bold;
	  font-size: 20px; 
		margin: 0.33rem 0 0;
	}
	.brand img{
		width: 56.399vw;
	}

	.nav__wrapper {
	display: inline-flex;
	align-items: center;
	}
	.site-header {
	}

	.site-header__wrapper {
	  text-align: center; 
	  } 

	.site-header__wrapper {
		  padding-top: 0.86rem;
	  padding-bottom: 1rem; 
	}

	.nav__item a {
		 display: flex;
		justify-content: center;
		margin: 0 auto;
	}

	.nav__book a {
		background: url("../img/nav_book_hover.png") no-repeat;
		background-size: contain;
		width: 80%;
		transition: background-color 1s;
	}

	.nav__audiobook a {
		background: url("../img/nav_audiobook_hover.png") no-repeat;
		background-size: contain;
		width: 80%;
		transition: background-color 1s;
	}
	.nav__dramacd a {
		background: url("../img/nav_dramacd_hover.png") no-repeat;
		background-size: contain;
		width: 80%;
		transition: background-color 1s;
	}
	.nav__goods a {
		background: url("../img/nav_goods_hover.png") no-repeat;
		background-size: contain;
		width: 80%;
		transition: background-color 1s;
	}
/*	ページ実装前（グレーアウト時）*/
	.nav__special img {
		width: 80%;
	}
	.nav__special a {
		background: url("../img/nav_special_hover.png") no-repeat;
		background-size: contain;
		width: 80%;
		transition: background-color 1s;
	}
	
	.nav__book a img,
	.nav__audiobook a img,
	.nav__dramacd a img,
	.nav__goods a img,
	.nav__special a img{
		width: 100%;
	}
 
	.nav__book a:hover img,
	.nav__audiobook a:hover img,
	.nav__dramacd a:hover img,
	.nav__goods a:hover img,
	.nav__special a:hover img {
		display: inline-block;
		background-color: transparent; /* IE6対応 */
		animation: fadeout-anim 0.1s linear forwards;
	}
	
	.nav &gt; ul &gt; li {
    padding: 4px 10px 16px 10px;
    position: relative;
}
	#mv {
    margin: 0 auto;
    padding-top: 33vw;
    text-align: center;
    z-index: -9999;
}
	/*slick画像の右側に余白ができてしまうことの対策*/
	#mv .mv__body{
  	overflow: hidden;
	}
	/*----------------------------------------------------------
	 CONTENTS
	 -----------------------------------------------------------*/
	
	.contents {
    width: 100%;
    margin: 0 auto;
	}
	
	.news_inner ul li {
	font-size: 1.85625rem;
	line-height: 213%;
	list-style: none;
	background-image: url("../img/line_news.png");
	background-position: center top;
		background-size: contain;
	background-repeat: repeat-x;
	color: #111111;
	/*	padding-bottom: 0.35vw;*/
	
	}
	
	h2 img {
    width: 23.65vw;
    max-width: 190px;
	}
	
	.news_inner {
    width: 100%;
    max-width: 1084px;
    height: 13.524vw;
    min-height: 13.524vw;
    overflow-y: scroll;
    font-size: 14px;
	}
	

	.information{
		background-image: url(../img/bg_info.png);
		background-position: center top;
		background-size: cover;
		background-repeat: no-repeat;
		/* height: 108.46666666666667vw; */
		    padding: 6.5625vw 6.5625vw 10.5625vw;
		margin-bottom: 2.9875vw;
		/* max-width: 1920px; */
		margin: 0 auto;
	}
	
	.twitter__body_sp h2 {
		padding: 0.4vw 0 1vw;
		margin-bottom:0.78125vw;
	}
	.btn_follow{
	    padding: 0.5vw 0 0.3vw;
	text-align: center;
	display: block;
	}

	.btn_follow img {
	width: 32.65vw;
    max-width: 303px;
	}
	
	.comicalize {
	max-width: 100%;
	width: 100vw;
	margin: 4.466666666666667vw auto 4.4875vw;
	}
	.comicalize__body {
	padding: 0 0 7.8vw;
	}
	.bn__comicalize__body p img {
		width: 37.6vw;
	}
	
	.comicalize__body h2 {
    padding: 4.43vw 0 1.4vw;
	}
	
	.comicalize__body h2 img {
		width: 74.65vw;
		max-width: 979px;
	}
	
	.stage__body h2 {
    padding-bottom: 2.5728999999999997vw;
	}
	
	.stage {
    width: 95.5vw;
	}
	
	.stage__body p img {
	width: 95.5vw;
	padding-bottom: 3.8729vw;
	}
	#page-top img{
		width: 8%;
	}
	
	
	/*---------------------------------------------------
	 BOOKS
	 ----------------------------------------------------*/

	h2.ttl_novel img {
		width: 38vw;
		max-width: 305px; 
	}

	.ttl_comic{
		background-color: #fff;
		padding: 13px 0 0px;
		margin: 0px 0 0;
	}

	h2.ttl_comic img {
		width: 46vw;
		max-width: 365px;
	}
	.list_book{
		padding-top: 32.952vw;
	}

	.list_book__body{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-content: space-around;
		margin: 45px 0 0;
	}

	.book{
		width: 45%;
		text-align: center;
		margin:  0 0 35px;
	}

	.book .cover{
		width: 100%;
		max-width: 370px;
		height: auto;
		box-sizing: border-box;
		border-style: solid;
		border-image-source: url("../books/img/frame_book.png");
		border-image-slice: 53 51 54 51;
		border-image-width: 53px 51px 54px 51px;
		border-image-repeat: stretch;
		background-clip: content-box;
		background-color: black;
		border-width: 53px 51px 54px 51px;
		color: white;
	}
	.vol img{
		width: 20.703125vw;
		max-width: 159px;
	}

	.p-btn{
		padding: 10px 0;
	}
	.p-btn img{
		width: 34.375vw;
		max-width: 264px;
	}
	
	
	/*---------------------------------------------------
	 GOODS
	 ----------------------------------------------------*/
	.ttl_goods{
	background-color: #fff;
	padding: 12px 0 0px;
	}

	h2.ttl_goods img {
	width: 40vw;
	max-width: 295px;
	}
	
	.list_goods{
		padding-top: 32.952vw;
	}

	.list_goods__body{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-content: space-around;
		margin: 45px 0 0;
	}

	.goods{
		width: 50%;
		text-align: center;
		margin:  0 0 35px;
	}

	.goods .cover{
		width: 392px;
		height: auto;
		box-sizing: border-box;
		border-style: solid;
		border-image-source: url("../goods/img/frame_goods_sp.png");
		border-image-slice: 38 38 38 39;
		border-image-width: 38px 38px 38px 39px;
		border-image-repeat: stretch;
		background-clip: content-box;
		background-color: black;
		border-width: 38px 38px 38px 39px;
		color: white;
	}
	.name_goods img{
		width: 32.703125vw;
		max-width: 437px;
	}

	.goods-btn{
		padding: 10px 0;
	}
	.goods-btn img{
		width: 34.375vw;
		max-width: 264px;
	}
	
	
	/*---------------------------------------------------
	 DRAMACD AUDIOBOOK
	 ----------------------------------------------------*/
	
	h2.ttl_dramacd img {
		width: 38vw;
		max-width: 305px; 
	}

	.list_dramacd{
		padding-top: 378px;;
	}

	.list_dramacd__body{
		background-color: #202020;
		background-image: url("../dramacd/img/line_dramacd_sp.png"),
						  url("../dramacd/img/line_dramacd_sp.png");
		background-repeat:repeat-x,
					 	 repeat-x;
		background-size: initial;
		background-position:center top,
							center bottom;
		margin: 6vw 0 10vw;
		padding: 6vw 0 4vw;
	}


	.contents__dramacd{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-content: space-around;
		width: 93%;
		margin: 0 auto;
	}


	h2.ttl_dramacd img {
		width: 54vw;
    max-width: 435px;
	}
	h2.ttl_audiobook img {
    width: 69vw;
    max-width: 517px;
}

	.dramacd__img img,.audiobook__img img{
		width: 48vw;

	}
	.dramacd-btn {
		text-align: center;
		padding: 0 0 10px;
	}
	.dramacd-btn img, p.audiobook-btn img{
		width: 29vw;
		max-width: 334px;
	}
	.audiobook-btn {
	text-align: center;
	padding: 7px 0 10px;
	}
	
	
	.dramacd__txt img{
		width: 43vw;

	}

	.menu_dramacd{
		padding: 30px 0;
	}

	.menu_dramacd li{
		padding-bottom: 10px;
	}

	.list_dramacd_set__body{
		text-align: center;
		margin: 0 auto;
		position: relative;
		padding-bottom: 13vw;
	}
	.list_dramacd_set__body img {
		margin: 0 auto;
		max-width: 100%;
	}

	.dramacd_set-btn{
		position: absolute;
		right: 34%;
		left: 34%;
		bottom: 20vw;
		width: 35vw;
	}
	
	/*---------------------------------------------------
	DRAMACD_CONTENTS
	----------------------------------------------------*/
	
	.contents__dramacd__comment{
		width: 93%;
	}
	
	span.new-line_sp{
		display: block;
	}
	
	.sample_box p {
		text-align: left;
	}
	
	
	/*----------------------------------------------------------
	 FOOTER
	 -----------------------------------------------------------*/
	.footer__body {
    font-size: 1.20rem;
}
	
	.nav-global {
    	gap: 0 1.5em;
		padding: 0.7em 0 0.7em;
		line-height: 2.0rem;
	}
	
	.nav-global .twitter {
    margin-right: 0;
    height: 22px;
}
	.nav-global .logo_footer {
    margin-right: 0;
    height: 22px;
}
	
}


@media screen and (max-width:768px){
	
	.pc {
		display: none !important;
	}

	.sp {
		display: block !important;
	}
	
	.brand img {
	min-width: 56.399vw;
	}
	
	
	#mv .mv__body{
	padding: 0;
	}

	.information{
		height: 72.466vw;
		background-image: url(../img/bg_info_sp_t2.png);
		background-size: cover;
		padding: 0 1.5625vw;
		margin-bottom: 4.9874vw;
	}
	
	.news_inner ul li {
		font-size: 3vw;
		padding: 0 8px;
	}
	
 

	.container_news {
		width: 100%;
	}

	.container_news .information {
		margin: 0 15px;
	}

	.information__body {
		box-sizing: border-box;
		width: 100%;
		margin: 0 auto;
	}

	.news_contents {
        width: 100%;
    }
	
	.news__body {
    padding: 36px 0 10px;
	}

	.footer {
		width: 100%;
		text-align: center;
		padding: 0;
		padding-top: 20px;
	}
	
	h3 img{
		    width: 41%;
		margin: 0 auto;
	}
	
	#introduction{
	background-size: cover;
	padding: 5.46875vw 0 0px;
	z-index: 9;
}
	#introduction h3{
	padding-bottom: 3.43vw;
	text-align: center;
}
	.catch_introduction{
	font-size: 2.96875vw;
	    padding-bottom: 0.96vw;
	text-align: center;
	letter-spacing: 0.03em;
}
	.txt_introduction{
	    font-size: 2.03125vw;
		padding: 0 0 50px 15vw;
	    display: inline-block;
	    width: 72%;
	    line-height: 200%;
	    margin: 0 auto;
	    letter-spacing: 0.085em;
}

	.footer__body {
		display: block;
		padding: 0;
	}

	.footer_menu li {
		float: none;
	}
	
	.kikan_info h3::before {
	height: 8.5vw;
	}
	
	
	/*コミックス既刊リストタイトル下罫線*/
	.line_comics h3::before {
		height: 10.9vw;
	}
	
	
	.nav-global {
    	flex-direction: column;
		line-height: 2.1rem;
	}
	#page-top img{
		width: 10%;
	}
	.news__body {
		padding: 16px 0 10px;
		}
	
	
	/*---------------------------------------------------
	 GOODS
	 ----------------------------------------------------*/

	.goods{
		width: 100%;
		text-align: center;
		margin:  0 0 35px;
	}

	.goods .cover{
		width: 392px;
		height: auto;
		box-sizing: border-box;
		border-style: solid;
		border-image-source: url("../goods/img/frame_goods_sp.png");
		border-image-slice: 38 38 38 39;
		border-image-width: 38px 38px 38px 39px;
		border-image-repeat: stretch;
		background-clip: content-box;
		background-color: black;
		border-width: 38px 38px 38px 39px;
		color: white;
	}
	.name_goods img{
		padding: 1vw 0 1vw;
		width: 71.703125vw;
		max-width: 448px;
	}
	
	/*---------------------------------------------------
	 DRAMACD AUDIOBOOK
	 ----------------------------------------------------*/

	.list_dramacd{
		padding-top: 378px;;
	}

	.list_dramacd__body{
		background-color: #202020;
		background-image: url("../dramacd/img/line_dramacd_sp.png"),
						  url("../dramacd/img/line_dramacd_sp.png");
		background-repeat:repeat-x,
					 	 repeat-x;
		background-size: initial;
		background-position:center top,
							center bottom;
		margin: 6vw 0 10vw;
		padding: 6vw 0 4vw;
	}


	.contents__dramacd{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-content: space-around;
		width: 93%;
		margin: 0 auto;
		flex-direction: column;
	}

	.dramacd__img img{
		    width: 100%;
		max-width: 713px;
		    padding: 2vw 0 7vw;

	}
	.audiobook__img img {
    width: 95.06vw;
    max-width: 713px;
    padding: 2vw 0 7vw;
}
	
	
	.dramacd-btn {
		text-align: center;
		padding: 0 0 10px;
	}
	.dramacd-btn img,.dramacd__txt p.audiobook-btn img {
		width: 100%;
		width: 44.26vw;
	}
	.dramacd__txt img{
		    width: 100%;
		max-width: 654px;

	}
	.dramacd__txt p{
	text-align: center;
}

	.menu_dramacd{
		padding: 3.90625vw 0 2.6041vw;
		display: flex;
		justify-content: space-around;
	}

	.menu_dramacd li{
		padding-bottom: 10px;
	}
	
	.menu_dramacd li img {
		max-width: 44vw;
}

	.list_dramacd_set__body{
		text-align: center;
		margin: 0 auto;
		position: relative;
		padding-bottom: 13vw;
	}
	.list_dramacd_set__body img {
		margin: 0 auto;
		max-width: 100%;
	}

	.dramacd_set-btn{
		position: absolute;
		right: 28%;
		left: 28%;
		bottom: 20vw;
		width: 44.26vw;
	}
	
	/*---------------------------------------------------
	DRAMACD_CONTENTS
	----------------------------------------------------*/
	.cast_comment_box {
		padding-bottom:10px;
		display: block;
	}
	.comment {
		padding: 0 15px;
	}

	.comment_box {
		padding: 3px 0 15px;
		/*background-color: #fff;*/
		margin-bottom: 20px;
	}
	.comment_txt p.cast_name {
		text-align: center;
		font-size: 3.5vw;
	}
	.comment_txt p {
		font-size: 3vw;
	}
	.read {
		font-size: 3.2vw;
	}

	.question {
	/* background-color:transparent; */
	border: none;
	padding: 2vw 2vw 3vw;
	margin-bottom:10px;
	font-size: 3vw;
	}

	.cast_photo {
	margin: 3vw 20px 3vw;
	text-align: center;
	}

	.contents__dramacd__comment{
		width: 100%;
	}

	#page-back{
	text-align: center;
	padding: 2.25vw 0 4.25vw 0;
	}
	#page-back img{
		width: 36%;
	}

	.sample_box {
		margin: 34px auto 85px;
		padding: 10px;
		width: 90%;
	}

	.sample_box p {
		font-size: 13.5px;
		color: #fff;
		margin: 5px 0 10px;
		font-weight: bold;
	}

	.youtube {
		position: relative;
		width: 100%;
		padding-top: 56.25%;
	}

	.youtube iframe {
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
	}
	
	
	/*---------------------------------------------------
	 SPECIAL
	 ----------------------------------------------------*/

	.special_box h3{
	font-size: 14px;
	
	}
	
	.special_date_justification {
	margin-left: 6.2em;
	text-indent: -5.8em;
	}
	
	.special_box:first-child{
	margin-top: 35px;
	}
	
	.special_box{
	padding: 31px 10px;
	width: 88%;
	margin: 0 auto;
	}
	
	#page-back img{
		width: 25%;
	}
	
	h2.ttl_special img {
	width: 54vw;
	max-width: 400px;
	}

	
}

/*------------------------------------------------------------------------------
スマートフォン用の記述
 -------------------------------------------------------------------------------*/

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

	.information{
/*
		height: 155.46666666666667vw;
		padding: 0 1.5625vw;
		margin-bottom: 4.987499999999997vw;
*/
	}
	
	.news_inner ul li {
    font-size: 3vw;
	}
	
	
	#mv {
    margin: 0 auto;
    padding-top: 37vw;
    text-align: center;
    z-index: -9999;
}
	

	#footer {
		padding: 38px 0 41px;
	}

	.footer_inner {
		flex-direction: column;
		text-align: center;
		padding: 0;
	}

	#copyright {
		font-size: 1.5rem;
		margin-bottom: 4px;
	}
	#copyright img {
    width: 80%
	}

	.logo &gt; a &gt; img {
		max-width: 88px;
	}
	
	
	.box_wrap {
		width: 100%;
		flex-wrap: wrap;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		justify-content: flex-start;
		
	}
	
	
	/*---------------------------------------------------
	 BOOKS
	 ----------------------------------------------------*/

	h2.ttl_novel img {
		width: 38vw;
		max-width: 305px; 
	}

	.ttl_comic{
		background-color: #fff;
		padding: 13px 0 0px;
		margin: 0px 0 0;
	}

	h2.ttl_comic img {
		width: 46vw;
		max-width: 365px;
	}
	.list_book{
		padding-top: 35.952vw;
	}

	.list_book__body{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-content: space-around;
		margin: 5.90625vw 0 0;
	}

	.book{
		width: 48%;
		text-align: center;
		margin:  0 0 35px;
	}

	.book .cover{
		width: 100%;
		max-width: 247px;
		height: auto;
		box-sizing: border-box;
		border-style: solid;
		border-image-source: url("../books/img/frame_book_sp.png");
		border-image-slice: 38 38 39 38;
		border-image-width: 38px 38px 39px 38px;
		border-image-repeat: stretch;
		background-clip: content-box;
		background-color: black;
		border-width: 38px 38px 39px 38px;
		color: white;
	}
	.vol img{
		width: 25.703125vw;
		max-width: 159px;
	}
	
	.p-btn img {
		width: 42.375vw;
		max-width: 264px;
	}

	.p-btn{
		padding: 2.951vw 0;
	}
	
	
	
	/*---------------------------------------------------
	 GOODS
	 ----------------------------------------------------*/

	.goods{
		width: 98%;
		text-align: center;
		margin:  0 auto 35px;
	}
	.list_goods{
		padding-top: 35.952vw;
	}

	.goods .cover{
		width: 98%;
		height: auto;
		box-sizing: border-box;
		border-style: solid;
		border-image-source: url("../goods/img/frame_goods_sp.png");
		border-image-slice: 38 38 38 39;
		border-image-width: 38px 38px 38px 39px;
		border-image-repeat: stretch;
		background-clip: content-box;
		background-color: black;
		border-width: 38px 38px 38px 39px;
		color: white;
	}
	.name_goods img{
		padding: 3vw 0 1vw;
		width: 91.703125vw;
		max-width: 448px;
	}
	
	
	.goods-btn img {
		width: 70vw;
		max-width: 275px;
	}

	.goods-btn{
		padding: 2.951vw 0;
	}
	
	
	/*---------------------------------------------------
	 DRAMACD
	 ----------------------------------------------------*/

	h2.ttl_dramacd img {
		width: 56vw;
		max-width: 305px;
	}
	
	.list_dramacd{
		padding-top: 35.952vw;
	}


	.contents__dramacd{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-content: space-around;
		width: 93%;
		margin: 0 auto;
		flex-direction: column;
	}

	.dramacd__img img{
		    width: 100%;
		max-width: 713px;
		    padding: 2vw 0 7vw;

	}
	.dramacd-btn,.dramacd__txt p.audiobook-btn img  {
		text-align: center;
		padding: 0 0 10px;
	}
	.dramacd-btn img,.dramacd__txt p.audiobook-btn img{
		width: 29vw;
		max-width: 334px;
	}
	.dramacd__txt img{
		    width: 100%;
		max-width: 654px;

	}
	.dramacd__txt p{
	text-align: center;
}

	.menu_dramacd{
		padding: 3.90625vw 0 2.6041vw;
		display: flex;
		justify-content: space-around;
	}

	.menu_dramacd li{
		padding-bottom: 10px;
	}
	
	.menu_dramacd li img {
    max-width: 44vw;
}

	.list_dramacd_set__body{
		text-align: center;
		margin: 0 auto;
		position: relative;
		padding-bottom: 13vw;
	}
	.list_dramacd_set__body img {
		margin: 0 auto;
		max-width: 100%;
	}

	.dramacd_set-btn{
		position: absolute;
		right: 24%;
		left: 24%;
		bottom: 20vw;
		width: 53vw;
	}
	.dramacd-btn img,.dramacd__txt p.audiobook-btn img {
		width: 100%;
    max-width: 53.64vw;
	}
	
	.list_dramacd__comment__body{
	padding: 5vw 0 4vw;
	}
	
	.read {
		    margin-bottom: 3vw;
	}
	.comment_txt p,.question {
    font-size: 14px;
	}
	.comment_txt p.cast_name,.read {
    font-size: 16px;
	}
	
	/*---------------------------------------------------
	 SPECIAL
	 ----------------------------------------------------*/
	h2.ttl_special img {
	width: 57vw;
	max-width: 400px;
}
	ul.icon-sns_list li{
		margin: 10px 8px;
		width: 45%;
	}
	ul.icon-sns_list li img{
		width: 100%;
	}
		
	
}
</pre></body></html>