@charset "utf-8";
body,div,dl,dt,dd,ul,ol,li,p,h1,h2,h3,h4,h5,h6,th,td,pre,code,blockquote,form,fieldset,legend,input,textarea,figcaption,figure{margin:0;padding:0}
table{border-collapse:collapse;border-spacing:0}
fieldset,img{border:0}
address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal}
li{list-style:none}
caption,th{text-align:left}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}
q:before,q:after{content:''}
abbr,acronym{border:0;font-variant:normal}
sup{vertical-align:text-top}
sub{vertical-align:text-bottom}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}
input,textarea,select{font-size:100%;}
legend{color:#FFF}
hr{display:none}
img{max-width: 100%;vertical-align: middle;}
select,input,button,textarea{font-size:99%}
table{font-size:inherit;font:100%;border-collapse:collapse;border-spacing:0}
pre,code,kbd,samp,tt{font-family:monospace;font-size:108%;line-height:100%}
article,aside,details,figcaption,figure,footer,header,hgroup,hr,menu,nav,section,main{display:block}*{margin:0;padding:0;box-sizing:border-box;max-height:999999px;outline:none;}*:focus{outline: none;}
button{background-color:transparent;border:none;cursor:pointer;outline:none;padding:0;}
* {box-sizing: border-box;}
/*-----------------------------------------------
 * Bace
 * Modal
 * Header
 * Parts
-------------------------------------------------*/
/*-----------------------------------------------
 * Bace
-------------------------------------------------*/

/* fontの設定 */
/* * Font: Torono Glitch Serif (瀞ノグリッチ明朝)
 * License: SIL Open Font License 1.1
 * Author: Amazusa Rei (あまずさ鴒)
 */
  @font-face {
  font-family: 'Torono Glitch Serif'; 
  src: url('../fonts/Torono Glitch Serif.woff2') format('woff2');
  font-display: swap;
}

:root{
	/* color */
	--txtColor: #0C0519;
	--mainColor: #FB2F5A;
  --subColor: #CE0000;
	--gradationColor: linear-gradient(90deg,rgba(251, 47, 90, 1) 0%, rgba(67, 0, 10, 1) 100%); /* メイングラデ */
	--btnColor: linear-gradient(90deg,rgba(255, 93, 178, 1) 0%, rgba(176, 11, 39, 1) 100%); /* ボタンbgカラー */
	--btnTxtColor: #fff; /* ボタンテキストカラー */
	--bgColor: #FFFFFF; /* ローディングアニメちらつき防止用 com_bg.jpgに近い色を設定 */
  --contentColor: rgba(255,255,255,.3);

	/* font */
  --titleFont: 'Torono Glitch Serif', serif;
	--mainFont: "Noto Serif JP", serif;

	/* 変化速度 */
	--speed: all, .3s, ease, .3s;
}
html {
	font-size: 62.5%; /* 基準を10pxに */
	scroll-behavior: smooth;
}
body {
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-family: var(--mainFont);
	font-feature-settings: "palt";
	font-weight: 500;
	font-size: 1.6em; /* 16px ここだけem指定 */
  color: var(--txtColor);
  line-height: 1.6;
	word-wrap: break-word;
	/*overflow-x: hidden;*/
	position: relative;
}
body::before {
	width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  content: '';
  background-image: url(../img/bg02.jpg);
  background-size: 50%;
}

.pc { 
	display: block; 
}
.sp { 
	display: none; 
}
a { 
	color: var(--subColor); 
	transition: var(--speed);
}
a:hover { 
	opacity: .7; 
}
/* ScrollBar Setting */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
::-webkit-scrollbar-track {
  border-radius: 4px;
  background: #fff;
}
::-webkit-scrollbar-thumb {
	background: var(--mainColor);
	border-radius: 4px;
	margin: 2px;
	box-shadow: none;
}
html{
	scrollbar-color: var(--mainColor) #fff;
	scrollbar-width: thin;
}
/*loading時のちらつき sliderの計算に不具合が出るので保留*/
/*#top,#top-en,#top-fr,footer {
	display: none;
}*/

/*-----------------------------------------------
 * 共通
-------------------------------------------------*/
.h2-title-area {
  display: block;
  text-align: center;
  margin: 0 0 20px;
}
.cont-h2 {
	font-size: 6.6rem;
	font-family: var(--titleFont);
	background: var(--gradationColor);
	text-align: center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.cont-h2-wh {
	font-size: 6.6rem;
	font-family: var(--titleFont);
	color: #fff;
	text-align: center;
  padding: 0 0 30px;
  box-sizing: border-box;
}


/*-----------------------------------------------
 * header
-------------------------------------------------*/
.js-menu {
	width: 100px;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 6;
	cursor: pointer;
	transition: var(--speed);
	background-image: url(../img/menu_on.png);
	background-repeat: no-repeat;
	background-size: contain;
}
.js-menu:hover {
	filter: brightness(1.07);
} 
.js-menu.open img {
	opacity: 0;
}
.header-inner {
	display: none;
	width: 100vw;
	height: 100vh;
	position: fixed;
	z-index: 5;
	background-image: url(../img/bg02.jpg);
  background-size: 50%;
  overflow-y: scroll;
}
.menu-logo {
	max-width: 350px;
	margin: 40px auto;
}
.js-menu-list {
	display: flex;
	flex-wrap: wrap;
	max-width: 1000px;
	margin: auto;
}
.js-menu-list li {
	width: calc(100% / 3);
	font-size: 3.2rem;
	font-weight: 600;
	letter-spacing: .2rem;
	text-align: center;
}
.js-menu-list a {
	display: inline-block;
	font-family: var(--titleFont);
	color: var(--txtColor);
	text-decoration: none;
	padding: .4em;
}
.js-menu-list a.cs {
	opacity: .5;
}
.js-menu-list a.cs::hover {
	opacity: .5;
}
.js-menu-list:last-child {
  margin-bottom: 40px;
}
.x-link {
	text-align: center;
	margin-top: 1.5em;
}

/*-----------------------------------------------
 * TOP
-------------------------------------------------*/
#js-loading {
	width: 100vw;
	height: 100vh;
	background-image: url(../img/bg02.jpg);
  background-size: 50%;
	position: fixed;
	z-index: 10;
}
.loading-logo {
	position: relative;
	top: calc((100vh - 200px) / 2);/* ロゴの高さ分を引く */
	text-align: center;
	animation: logoAnime 3.5s ease 0s;
}
.loading-logo picture {
	display: inline-block;
	width: 500px;
}
@keyframes logoAnime {
	from {
		opacity: 0;
		transform: scale(.9);
	}
	to {
		opacity: 1;
		transform: scale(1.0);
	}
}

.kvArea {
	position: relative;
  background-color: #fff;
  width: 100%;
  overflow: hidden;
}
.title-logo {
  top: 10px;
  width: 36%;
	max-width:  430px;
	position: absolute;
  top: 30px;
  left: 20px;
  z-index: 1;
  opacity: 0;
}
/* キービジュアル */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.hero_slide .slick-dotted {
	position: relative;
  width: 100%;
}
.hero_slide .slick-dots {
	position: absolute;
  width: 0;
	left: -17%;
  top: 170px;
  display: table;
}
.hero_slide .slick-dots li {
	width: 100px;
  height: 95px;
	background-color: #fff;
	margin: 0 10px 20px;
	border: solid 2px var(--txtColor);
	cursor: pointer;
	overflow: hidden;
  z-index: 1;
}
#js_hero .slick-list .slick-track {
  display: flex;
}
@media (max-width: 767px) {
	.hero_slide .slick-dots li {
		width: max(12vw, 40px);
		margin-bottom: 10px;
    height: auto;
    margin: 0 5px 20px;
	}
	.hero_slide .slick-dots {
    z-index: 1;
    text-align: right;
    z-index: 1;
		top: 20px;
    left: auto;
    width: auto;
  }
}
.hero_slide .slick-dots li.slick-active {
	cursor: default;
}
.hero_slide .slick-dots img {
	transition: var(--speed);
}
.slick-dots li.slick-active {
  background-color: rgba(255,255,255,.5);
}
.slick-dots li.slick-active img {
	opacity: .4;
}
.slick-dots li:not(.slick-active):hover img {
	transform: scale(1.1);
}
#story .slick-dots li:not(.slick-active):hover img,
#goods-detail .slick-dots li:not(.slick-active):hover img {
	transform: scale(1.0);
}
.hero_slide {
  z-index: -1;
}
@media (min-width: 761px) {
	.hero {
		display: flex;
	}
	.hero_slide {
		/* width: calc(100vw - 80px - 200px);*/
    margin-inline-start: auto;
    margin: 0 0 0 15%;
	}
  .hero_slide {
    width: 73%;        /* 元の li width 34% をここに移動 */
    position: relative;
    z-index: 0;        /* 必要に応じて */
  }
}
.kv-single .slick-dots {
	display: none;
}

.pc-onair {
	position: absolute;
	top: 150px;
	right: 30px;
  z-index: 1;
}
.pc-onair img {
  max-height: 420px;
}

.bannerArea {
	position: absolute;
	top: 420px;
	left: 30px;
  z-index: 1;
}
.banner-list {
	width: 300px;
	margin-bottom: 20px;
}
.js-fixed-banner {
	display: none;
	max-width: 160px;
	position: fixed;
	bottom: 40px;
	left: 40px;
	z-index: 1;
}
.anime-bnr-01 {
  display: none;
}

/* PV */

#pv{
  aspect-ratio:16 / 5;
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

#pv a {
	display: block;
	width: 100%;
  height: 100%;
  padding-bottom: 40%;
	transition: var(--speed);
}
#pv a:hover {
	opacity: 1;
}
#pv .pv-innr .pv-movie-innr {
  max-height: 500px;
  width: 100vw;
  position: relative;
}
#pv .pv-innr .pv-movie-innr a::before {
  content: '';
  background: rgba(255,93,178);
  mix-blend-mode: hard-light;
  z-index: 1;
  height: 100%;
  width: 100vw;
  position: absolute;
}
#pv .pv-innr .pv-movie-innr .iframe-box {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden; /* 横はみ出しを隠す */
}
#pv .pv-innr .pv-movie-innr .iframe-box iframe {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 120%; 
  height: 120%; 
  transform: translate(-50%, -50%);
}
.play {
  position: absolute;
  top: 50%;  
  left: 50%;  
  transform: translate(-50%, -50%); 
  width: 80%; 
  height: auto;
  max-width: 100%; 
  max-height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
#js-pv-modal {
	display: none;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	z-index: 10;
	background-image: url(../img/bg02.jpg);
  background-size: 50%;
}
.youtube {
	width: min(90vw, 1000px);
	position: absolute;
	top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
	margin: auto;
}
.youtube-inner {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.youtube-inner iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}
#js-close {
	position: absolute;
  background-image: url(../img/close.svg);
  background-repeat: no-repeat;
  background-size: 50px;
  width: 50px;
  height: 50px;
	top: -60px;
	right: 0;
	cursor: pointer;
}
#js-close:hover {
	opacity: .7;
}

/*NEWS*/
section.news-only,
#character,
#staffcast {
	padding: 80px 0;
  box-sizing: border-box;
}
 section.news-only {
	width: 100%;
	margin: auto;
  padding: 40px 10px 60px;
  box-sizing: border-box;
  background-color: #332E3D;
  position: relative;
  overflow: hidden;
}
.news-bg-left,
.news-bg-right {
  position: absolute;
  width: 20%;
  top: -12%;
}
.news-bg-left {
  left: 0;
}
.news-bg-right {
  right: 0;
}
.news-bg-left img,
.news-bg-right img {
  width: 100%;
}
.news-inner {
  margin: 0 auto;
	max-width: 900px;
}
.news-list {
	border-top: solid 1px #fff;
  box-sizing: border-box;
  z-index: 2;
  position: relative;
}
.news-list:last-child {
	border-top: solid 1px #fff;
	border-bottom: solid 1px #fff;
  box-sizing: border-box;
  z-index: 2;
  position: relative;
}
.news-list a {
	display: block;
	padding: 20px 30px;
  box-sizing: border-box;
	color: #fff;
	text-decoration: none;
  font-weight: 900;
  font-size: 1.8rem;
}
.news-list a:hover {
	background-color: var(--contentColor);
}
.news-date {
	display: inline-block;
	color: var(--mainColor);
  font-size: 14px;
  font-weight: 800;
}
#top-news .more-btn a,
.disc-detail-inner .more-btn a,
.benefit-list .more-btn a {
	display: block;
	align-items: center;
	width: 320px;
  padding: 12px 0;
  box-sizing: border-box;
	text-align: center;
	color: #fff;
	background: var(--btnColor);
  font-size: 18px;
	border-radius: 100px;
  font-weight: 800;
	text-decoration: none;
  margin: 40px auto 0;
}

.disc-detail-inner .more-btn a {
  margin: 20px auto 0;

}
/* 文字が流れるエリア */
.txt-movie-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  background-color: #FCE300;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--txtColor);
  position: relative;
}
.txt-movie-wrapper {
  display: flex;
  animation: loop-text 28s linear infinite;
}
.txt-movie-wrapper-re {
  display: flex;
  animation: loop-text 28s linear infinite reverse;/*逆方向に流れる*/
}
.double-content {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 800;
  white-space: nowrap;
  
}
@keyframes loop-text {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* INTRODUCTION */
#introduction {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 0.1px;
    padding-bottom: 0.1px;
}
/* パララックス */
.parallax-bg01,
.parallax-bg02 {
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
    will-change: transform;
}
.parallax-bg01 {
    height: 110vw;
}
.parallax-bg02 {
  mix-blend-mode: multiply;
}
.introduction-innr {
  padding: 120px 0 100px;
  box-sizing: border-box;
}
.parallax-bg01 img,
.parallax-bg02 img {
    width: 100%;
    object-fit: cover;
}
.parallax-bg02 img {
    height: 100%;
}
.intro-tape-top,
.intro-tape-bottom {
  position: absolute;
  width: 100%;
}
.intro-tape-top {
  top: 0;
}
.intro-tape-bottom {
  bottom: 0;
}
#introduction .cont-h2 {
	margin-bottom: .2em;
}
.intro-inner {
  z-index: 1;
	max-width: 660px;
	margin: 1em auto 1.5em;
  color: #fff;
  line-height: 1.8;
  line-break: strict;
  font-family: var(--mainFont);
  text-align: center;
}
.intro-txt-em {
	font-family: var(--titleFont);
	display: block;
	font-size: 3.0rem;
	color: #fff;
	margin-bottom: 1.6em;
  font-weight: 500;
}
.intro-txt-ex {
	font-size: 1.8rem;
  font-family: var(--mainFont);
  line-height: 2.4;
}

/* CHARACTER */
#character {
  padding: 40px 0 80px;
  box-sizing: border-box;
}
.h2-title-area h2 {
  text-align: center;
}
#character .h2-title-area {
  margin: 0;
}
.chara-area {
	max-width: 960px;
	margin: auto;
  padding: 0 20px;
  box-sizing: border-box;
}
#js-chara-slider {
	display: flex;
	justify-content: space-between;
}
#character .slick-dots {
	width: 70px;
	position: relative;
	order: -1;
	display: flex;
	flex-direction: column;
  flex-wrap: wrap;
  height: 450px;
  margin-top: 100px;
  z-index: 1;
}
#character .slick-dots li {
	width: 70px;
	height: 70px;
	background-color: #fff;
	border: solid 2px var(--txtColor);
	border-radius: 5px;
	margin: 0;
	margin-bottom: 20px;
  margin-right: 20px;
  overflow: hidden;
}
#character .slick-dots li:nth-child(4){
  display: block;
}
#character .slick-dots li img {
	transition: var(--speed);
}
#character .slick-dots li:hover {
	opacity: .7;
}
#character .slick-dots li.slick-active img {
	opacity: .9;
}
#character .slick-dots li.slick-active {
  background-color: var(--mainColor);
	border: solid 2px var(--mainColor);
}
#character .slick-list {
	width: calc(100% - 70px - 40px);
}
#character .slick-track {
	height: 750px;
}
.chara-cont {
	position: relative;
}
.full-body {
	width: 370px;
	position: absolute;
	left: 0;
}
.char-detail {
	padding: 30px 30px 30px 50%;
	margin-top: 80px;
}

.chara-info {
  padding: 32px 20px 0;
  box-sizing: border-box;
  margin: 0 0 20px;
}
.card-area {
  position: relative;
  max-width: 450px;
  border-radius: 10px;
  background-image: url(../img/card-bg.png);
  overflow: hidden;
  border: 5px solid var(--txtColor);
  margin: 0 auto 20px;
}
.card-innr {
  padding: 10px;
  margin: 0 auto;
}
.card-title {
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding-bottom: 5px;
  box-sizing: border-box;
  border-bottom: 2px solid #fff;
  align-items: center;
}
.card-title h3 {
  font-family: var(--titleFont);
	font-size: 3.2rem;
}
.chara-cv {
	font-family: var(--mainFont);
	font-size: 1.8rem;
	color: #fff;
  margin: 8px 0 10px;
  font-weight: 700;
}
.card-explanation {
  background-color: rgba(255,255,255,.8);
  padding: 15px 10px 10px;
  box-sizing: border-box;
  border-radius: 5px;
  margin: 10px 0 0;
}
.chara-txt {
	margin-bottom: 1em;
  font-weight: 600;
  color: var(--txtColor); 
  font-size: 1.6rem;
}
.attribute {
  width: 35px;
}
.chara-face {
	margin: 0 auto;
}
.close-buttons {
  display: flex;
  gap: 5px;
}

.close-buttons img {
  width: 12px;
  height: 12px;
}

.chara-window-content {
  background-color: #fff;
  height: calc(100% - 50px);
  padding: 15px;
}


/* STAFF CAST */
#staffcast {
	text-align: center;
	background-image: url(../img/staff_bg.jpg);
  background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
  padding: 80px 20px;
  box-sizing: border-box;
}

#staff {
	margin-bottom: 80px;
}
.staff-list {
	display: flex;
	flex-wrap: wrap;
	max-width: 980px;
	margin: auto;
  padding: 30px 60px 20px;
  box-sizing: border-box;
}
#staff .staff-list .name-list {
	width: calc(100% / 3);
  display: flex;
  text-align: center;
  justify-content: center;
}

#cast .cast-list .name-list {
	width: calc(100% / 2);
  display: flex;
  justify-content: center;
}

#staff .staff-list div.name-list:nth-child(-n+2) {
	width: 50%;
  display: block;
  text-align: center;
  margin: 0 auto 30px; 
} 
#staff .staff-list .name-list .staff-center {
  display: inline-block;
  text-align: center;
} 
#staff .staff-list .name-list {
  text-align: left;
  margin-bottom: 30px;
}
#cast {
	margin-bottom: 30px;
}
#cast .cast-box {
	max-width: 980px;
	margin: 0 auto 40px;
}
#cast h3 {
	display: inline-block;
	width: 100%;
	font-size: 1.8rem;
	color: #fff;
  font-weight: 800;
	padding: .4em 0;
  box-sizing: border-box;
  margin: 0 0 20px;
  font-size: 20px;
}
.cast-list-01,
.cast-list-02,
.cast-list-03 {
	margin: auto;
  box-sizing: border-box;
  text-align: center;
  padding: 0 0 25px;
}
.cast-list-01 {
  display: inline-block;
}
.cast-list-01 .name-list {
  margin: 0 auto;
  padding-bottom: 10px;
  box-sizing: border-box;
}
.cast-list-02 .name-list {
  width: calc(100% / 5.5);
  padding-bottom: 10px;
  padding: 0 0 10px 2%;
  box-sizing: border-box;
  display: inline-block;
}
.cast-list-03 .name-list {
  width: calc(100% / 4.5);
  padding: 0 0 10px 2%;
  box-sizing: border-box;
  display: inline-block;
}
.cast {
  text-align: left;
  margin-bottom: 30px;
  padding: 0 5px;
  box-sizing: border-box;
}
.cast_chara {
	color: #FCE300;
	font-family: var(--mainFont);
  font-weight: 800;
  font-size: 1.5rem;
  text-align: center;
}
.cast_name {
	font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
}
.cast_comment {
	display: none;
}
.cast_name_txt, 
.cast_name_btn {
	display: inline-block;
	vertical-align: middle;
}
.cast_name_txt {
	font-size: min(5vw, 2.1rem);
}
.cast_name_txt br,
.comment_head_name br {
	display: none;
}
.cast_name_btn {
	width: 25px;
	height: 25px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url('../img/bubble.svg');
}
.cast-description {
	font-size: .8em;
}

@media (max-width: 890px) {
	.cast_name_btn {
		width: 25px;
		height: 25px;
	}
}
/*アコーディアン*/
.l_comment {
  position: relative;
	width: 800px;
  display: flex;
  align-items: flex-start;
  vertical-align: middle;
	margin: auto;
	padding: 2.5em;
	background-color: #fff;
	border-radius: 10px;
  border: 4px solid var(--mainColor);
}
.comment_head_name.pc-staff-br br {
	display: block;
}
@media (max-width: 890px) {
	.l_comment {
		padding: 2em 1.1em;
    width: 100%;
	}
	.comment_head_name br {
		display: block;
	}
}
@media (min-width: 891px) {
	.comment {
		display: flex;
		justify-content: space-between;
	}
	.comment-img {
		width: calc(50% - 2.5em);
	}
	.comment-img + .comment-r-content {
		width: 50%;

	}
}

.comment_head {
	margin-bottom: 2em;
  font-weight: 900;
  text-align: left;
}
.comment_head_chara {
	font-size: 2.1rem;
	color: var(--subColor);
}
.comment_head .cast_name_txt {
	font-size: clamp(32px, 7vw, 40px);
}
.comment_body_txt {
	max-height: 350px;
	overflow-y: scroll;
	line-height: 1.8;
  font-weight: 700;
  text-align: left;
  overflow: hidden;
}
@media (max-width: 890px) {
	.modal:has(.cast_comment) {
		height: 100vh;
		overflow: scroll;
	}
	.cast_comment {
		padding: 2em 0 1.5em;
	}
	.modal_inner:has(.cast_comment) + .modal_close {
		position: static;
	}
	.l_comment {
		width: min(92vw, 600px);
    margin: 40px 0 0;
	}
	.comment-img {
		padding: 0 1.8em;
		margin-bottom: 1.5em;
	}
	.comment_body_txt {
		max-height: 100%;
		padding: 0 1.8em;
	}
	.comment_head {
		padding: 0 1.8em;
		margin-bottom: 1.5em;
	}
}

/*-----------------------------------------------
 *  MODAL
-------------------------------------------------*/
.cast_comment {
	display: none;
	width: 100%;
	height: 100vh;
	position: fixed !important;
	top: 0;
  left: 0;
	z-index: 3;
	background-image: url(../img/bg02.jpg);
  background-size: 50%;
  /*overflow-y: scroll;*/
}

.cast_comment.is-active {
    opacity: 1;
    visibility: visible;
    display: block;
    vertical-align: middle;
}
.cast-comment-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto; 
}

.js_close_modal_btn {
	position: absolute;
  background-image: url(../img/close.svg);
  background-repeat: no-repeat;
  background-size: 50px;
  width: 50px;
  height: 50px;
	top: 0;
	right: -70px;
	cursor: pointer;
  z-index: 5;
}
.js_close_modal_btn:hover {
	opacity: .7;
}
@media (max-width: 767px) {
  .cast-comment-box  {
   margin: 0 auto 100px;
   display: flex;
   align-items: flex-start;
   max-height: 80vh;
  }
  .js_close_modal_btn {
    background-size: 35px;
    width: 35px;
    height: 35px;
    z-index: 5;
    top: -44px;
    right: 0;
  }
}
.cast-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
	background-image: url(../img/bg02.jpg);
  background-size: 50%;
}
@media (max-width: 767px) {
  .cast-modal {
  overflow-y: scroll;
  }
}


/*-----------------------------------------------
 * footer
-------------------------------------------------*/
footer {
	padding: 60px 0 35px;
	text-align: center;
	position: relative;
  background-color:  var(--txtColor);
}
#page-top {
	position: absolute;
	top: -20px;
	right: 30px;
}
#page-top a {
	position: relative;
	display: block;
	width: 45px;
	height: 45px;
	background-color: #fff;
	border-radius: 100px;
	border: solid 2px var(--subColor);
}
#page-top a::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -12px;
  margin-left: -12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width:  0 12px 20px 12px;
  border-color: transparent transparent var(--subColor) transparent;
  transition: var(--speed);
}
#page-top a:hover {
	opacity: 1;
}
#page-top a:hover::before {
	opacity: .7;
}
.footer-banner ul {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}
.footer-banner li {
	width: 250px;
	margin: 0 10px;
}
.footer-banner li img {
  border: 1px solid #fff;
}
.sns p {
	font-family: var(--titleFont);
	font-size: 1.8rem;
	color: #fff;
	margin-bottom: 5px;
}
.sns ul {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}
.sns li {
	margin: 0 10px;
}
.copyright {
	color: #fff;
	font-size: 1.4rem;
}

/*-----------------------------------------------
 * NEWS
-------------------------------------------------*/
.lower-logo {
	position: absolute;
	width: clamp(160px, 20%, 250px);
  top: 10px;
  left: 5px;
}
.lower {
	padding: 80px 0;
	min-height: calc(100vh - 320px);
}
.lower .cont-h2 {
	margin-bottom: .2em;
}
.content {
	width: min(calc(100% - 30px), 1000px);
	margin: auto;
}
#news ul,
.goods-list,
.disc-list {
	margin-bottom: 80px;
}
#news .news-list {
  border-top: solid 1px var(--txtColor);
  padding: 0;
}
#news .news-list:last-child{
  border-bottom: solid 1px var(--txtColor);
}
#news .news-list a {
    color: var(--txtColor);
    text-decoration: none;
    font-weight: 600;
    padding: 25px 30px;
}
.wp-pagenavi {
	text-align: center;
}
.wp-pagenavi .current,
.wp-pagenavi .page {
	padding: .5em .9em;
	margin: 0 7px;
	border: solid 2px var(--txtColor);
	border-radius: 50px;
  font-weight: 800;
}
.wp-pagenavi .current {
	color: #fff;
	background-color: var(--txtColor);
}
.wp-pagenavi .page {
	color: var(--txtColor);
	background-color: var(--contentColor);
	text-decoration: none;
}
/*-----------------------------------------------
 * NEWS DETAIL
-------------------------------------------------*/
#news-detail article,
#story .content,
#goods-detail article .goods-detail-cont,
#music .content,
#special-detail article {
	background-color: var(--contentColor);
	border-radius: 5px;
	padding: 2em;
	margin-bottom: 60px;
}
.article-title {
	border-bottom: solid 2px var(--txtColor);
  padding-bottom: 1em;
  margin-bottom: 2em;
}
.article-title h3 {
	font-size: 2.1rem;
	font-weight: 800;
}
.article-title .news-date {
  color: var(--mainColor);
  padding: 0 0 10px;
}
.article-content figure {
	margin-bottom: 1.5em;
}
.article-content p {
	margin-bottom: 1em;
  font-weight: 600;
}
.lower .more-btn a {
	position: static;
}
#news-detail .more-btn a {
  display: block;
	align-items: center;
	width: 300px;
  padding: 10px 0;
  box-sizing: border-box;
	text-align: center;
	color: var(--txtColor);
	background-color: var(--contentColor);
  border: 2px solid var(--txtColor);
  font-size: 18px;
  font-weight: 800;
	border-radius: 100px;
	text-decoration: none;
  margin: 0 auto 80px;
}
.wp-block-embed-youtube .wp-block-embed__wrapper {
	position: relative;
	padding-top: 56.25%;
}
.wp-block-embed-youtube iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
/* youtube非公開用 */
#news-detail .youtube {
	width: 100%;
	padding-top: 56.25%;
	position: relative;
	margin: 1.5em auto;
	transform: none;
	-webkit-transform: none;
	top: 0;
	left: 0;
}
#news-detail iframe[src*="youtu"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
/*-----------------------------------------------
 * STORY
-------------------------------------------------*/
.js-story-cont {
	display: none;
	text-align: center;
}
.js-story-cont.active {
	display: block;
  animation-name: fadeIn;
  animation-fill-mode:forwards;
  animation-duration:1s;
}
@keyframes fadeIn{
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.story-nav {
	display: flex;
	justify-content: center;
	margin-bottom: 0.5em;
}
.js-nav-list {
	display: inline-block;
	color: var(--subColor);
	background-color: var(--contentColor);
	border: solid 2px var(--subColor);
	text-decoration: none;
	padding: .4em 1em .6em;
	margin: 0 7px 10px;
  font-weight: 600;
}
.js-nav-list.active {
	background-color: var(--subColor);
	color: #fff;
}
.story-title {
	font-family: var(--titleFont);
	display: inline-block;
	font-size: 3.4rem;
	padding: 0 3em;
	margin-bottom: 1em;
}
.title-num {
	margin-right: .5em;
}
.js-story-slider.slick-slider,
.js-goods-slider.slick-slider {
	margin-bottom: 2.5em;
}
.js-story-slider .slick-list,
.js-goods-slider .slick-list {
	margin-bottom: 1em;
}
.js-story-slider .slick-dots,
.js-goods-slider .slick-dots {
	position: static;
}
.js-story-slider .slick-dots li,
.js-goods-slider .slick-dots li {
	width: 210px;
	height: 110px;
	margin: 0 7px;
	transition: var(--speed);
}
.js-story-slider .slick-dots li {
	filter: brightness(.7);
}


#story .slick-slide img {
  display: block;
}
.js-story-slider .slick-dots li:hover,
.js-story-slider .slick-dots li.slick-active,
.js-goods-slider .slick-dots li:hover,
.js-goods-slider .slick-dots li.slick-active  {
	filter: brightness(1);
}
.story-txt-area {
	text-align: left;
	padding: 2em;
	margin-bottom: 2em;
  font-weight: 700;
}
.story-txt {
	margin-bottom: 1.5em;
}
.story-staffList {
	display: flex;
	flex-wrap: wrap;
}
.story-staffList div {
	display: flex;
	margin-right: 1.5em;
}
/*-----------------------------------------------
 * ON AIR
-------------------------------------------------*/
#onair section,
#special section,
.disc-detail-cont {
	background-color: var(--contentColor);
  padding: 2em;
  box-sizing: border-box;
	margin-bottom: 80px;
}
#onair section.deregula {
  background-color: #F89FB2;
	margin-bottom: 80px;
	padding: 1em 2em 2em;
  box-sizing: border-box;
  border: none;
}
#onair section h3.onair-deregula {
	font-size: 4rem;
	font-family: var(--titleFont);
	color: var(--txtColor);
	margin: 0 auto .2em;
  text-align: center;
}
.deregula-lists {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--mainFont);
  font-weight: 800;
}
.deregula-item {
  background-color: #fff;
  width: 40%;
  margin: 10px 10px 20px;
}
.deregula-item  dt {
  display: block;
 background-color: var(--txtColor);
 color: #fff;
 padding: 10px 0;
 box-sizing: border-box;
 text-align: center;
 margin: 0 auto 20px;
 font-size: 2.3rem;
}
.deregula-item  dd {
  color:  var(--txtColor);
  padding: 0 0 20px;
  text-align: center;
  font-size: 18px;
}
.deregula-em {
  color: var(--subColor);
  font-size: 20px;
}
.deregula-caution-area {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
.deregula-caution {
  font-weight: 600;
  font-size: 14px;
  text-align: left;
}
.onair-detail,
.streaming-detail {
	font-size: 2.1rem;
	margin-bottom: 1.5em;
}
.cont-h3 {
	font-size: 4.8rem;
	font-family: var(--titleFont);
	background: var(--gradationColor);
	text-align: center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: .3em;
}
.cont-h3-music {
	font-size: 4rem;
	font-family: var(--titleFont);
  color: var(--txtColor);
  margin-bottom: .3em;
}
.streaming-list:not(:last-of-type) {
	margin-bottom: 40px;
}
.streaming-title {
  font-size: 1.2em;
  font-weight: 600;
  color: var(--mainColor);
  padding-bottom: .3em;
}
.streaming-list  p{
  font-weight: 700;
}
.onair-list div {
	display: flex;
	margin-bottom: .5em;
}
.onair-list dt {
	width: 20%;
	color: var(--subColor);
  font-weight: 800;
}
#onair h4 {
	color: var(--subColor);
  font-weight: 800;
}
.onair-point {
	display: inline-block;
	background-color: var(--subColor);
	color: #fff;
	padding: 0 .6em .1em;
	margin: 0 0 15px;
  font-weight: 800
}
.ondemand-list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
}
.ondemand-list li {
	width: calc(100% / 3);
}
.ondemand-list a,
.nolink {
	height: calc(100% - .4em);
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	text-align: center;
	line-height: 1.4;
	background-color: var(--contentColor);
	border: solid 1px var(--txtColor);
	padding: .7em;
	margin: .2em;
	position: relative;
  font-weight: 700;
  color: var(--txtColor) !important ;
}

.ondemand-list a:hover {
	background-color: var(--txtColor);
  color: #fff!important;
	border: solid 1px var(--txtColor);
  opacity: inherit!important;
}
.nolink {
	border-color: var(--txtColor);
}

/*-----------------------------------------------
 * MUSIC
-------------------------------------------------*/
.music-detail {
	padding: 2em 3em 0;
  box-sizing: border-box;
}
.music-detail .music-inner {
	display: flex;
	flex-wrap: wrap;
}
.music-jacket {
	width: 40%;
}
.music-info {
	font-size: 1.6rem;
	width: 50%;
	padding-left: 3em;
}
.music-title {
	font-family: var(--mainFont);
	font-weight: 700;
	font-size: 3.2rem;
	color: var(--mainColor);
	margin-bottom: 1em;
}
.music-staffList div {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1em;
}
.music-staffList dt,
.disc-info-inner dt,
.goods-info-inner dt {
	width: 6.5em;
	color: #fff;
	text-align: center;
  padding: 3px 0;
  box-sizing: border-box;
  font-size: 1.4rem;
}
.music-staffList dt {
  background: var(--gradationColor);
}
.disc-info-inner dt,
.goods-info-inner dt{
	background-color: var(--txtColor);
}
.music-staffList dd {
	width: calc(100% - 6.5em);
	padding-left: 1em;
  font-weight: 600;
}
.music-inner {
	font-size: 2.1rem;
	margin-bottom: 1.5em;
}
.music-streaming {
	padding: 0 3em 2em;
  box-sizing: border-box;
}
/*-----------------------------------------------
 * GOODS,Blu-ray&DVD
-------------------------------------------------*/
.goods-list,
.disc-list,
.special-list {
	display: flex;
	flex-wrap: wrap;
  justify-content: flex-start;
}
.goods-list-item,
.disc-list-item,
.special-list-item  {
	width: calc(100% / 3.1);
	border: solid 2px var(--txtColor);
  background-color: var(--contentColor);
  margin: 0 2px 10px;
}
.goods-list-item a,
.disc-list-item a,
.special-list-item a {
	display: block;
	height: calc(100% - 1em);/* margin分を引く */
	text-decoration: none;
	margin: .5em;
}
.goods-list-img,
.disc-list-img {
	/* PC以上ではcontent内はwidth:1000px */
	height: calc((950px / 3) - 1em );
  margin: 10px 0;
}
.special-list-img {
	/* PC以上ではcontent内はwidth:1000px */
	height: calc((850px / 3) - 1em );
  margin: 10px 0;
}
.goods-list-img img,
.disc-list-img img,
.special-list-img img  {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.goods-list-title,
.disc-list-title,
.special-list-title {
	height: calc(100% - (1000px / 3 - 1em )); /* 画像の高さ分を引く */
	color: var(--txtColor);
  font-weight: 800;
	padding: .5em .7em;
	border-top: none;
}
.goods-detail-cont .more-btn a {
	display: block;
	align-items: center;
	width: 300px;
  padding: 10px 0;
  box-sizing: border-box;
	text-align: center;
	color: #fff;
	background: var(--btnColor);
  font-size: 18px;
  font-weight: 800;
	border-radius: 100px;
	text-decoration: none;
  margin: 60px auto 0;
}
.back-btn-area .more-btn a {
  display: block;
	align-items: center;
	width: 300px;
  padding: 10px 0;
  box-sizing: border-box;
	text-align: center;
	color: var(--txtColor);
	background-color: var(--contentColor);
  border: 2px solid var(--txtColor);
  font-size: 18px;
  font-weight: 800;
	border-radius: 100px;
	text-decoration: none;
  margin: 0 auto 80px;
}
/*-----------------------------------------------
 * Blu-ray&DVD DETAIL
-------------------------------------------------*/
.disc-detail-cont {
  border: none;
  margin-bottom: 40px;
  padding: 2em 2em 4em;
}
.disc-detail-inner {
	margin-bottom: 0;
}
.disc-detail-inner + .benefit {
	margin-top: 3em;
}
.disc-title {
	font-size: 2.1rem;
	font-weight: 800;
	border-bottom: solid 2px var(--txtColor);
	padding-bottom: .8em;
	margin-top: 1.5em;
	margin-bottom: 1.5em;
  font-weight: 900;
}
.disc-info {
	display: flex;
	flex-wrap: wrap;
}
.disc-img {
	width: 45%;
}
.disc-info-inner {
	width: 55%;
	padding-left: 2em;
}
.goods-release,
.disc-release {
	font-size: 2.1rem;
	font-family: var(--titleFont);
	color: var(--subColor);
	margin-bottom: 1em;
}
.disc-info-list div,
.goods-info-list div {
	margin-bottom: 1em;
  font-weight: 700;
}
.disc-info-list .horizontal,
.goods-info-list .horizontal {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
.disc-info-list dt,
.goods-info-list dt {
	width: 6em;
	margin-bottom: .5em;
}
.horizontal dt {
	margin-bottom: 0;
}
.horizontal dd {
	width: calc(100% - 6em);
	padding-left: 1em;
  font-weight: 600;
}
.has-btn .more-btn {
	margin-top: 3em;
}
.benefit-title {
	font-size: 3.1rem;
	font-family: var(--titleFont);
	background: var(--gradationColor);
	text-align: center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 1em;
}
.shop {
	border-bottom: solid 1px var(--txtColor);
	padding-bottom: 1em;
	margin-bottom: 3em;
}
.shop:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 1em;
}
.shop-name {
	display: inline-block;
	font-size: 1.8rem;
	font-weight: 900;
	background-color: var(--txtColor);
	color: #fff;
	padding: 5px 10px;
  box-sizing: border-box;
	margin-bottom: 1em;
}
.benefit-list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 2em;
  position: relative;
}
.benefit-img {
	width: 45%;
}
.benefit-info {
	width: 55%;
	padding-left: 2em;
}
.benefit-item-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin: .5em 0 1em;
}
.benefit-info.no-img {
	width: 100%;
	padding-left: 0;
}
.shop .more-btn {
  margin: 0 auto;
  text-align: center;
}

#goods-detail .slick-slide img {
  margin: 0 auto;
  max-height: 600px;
}
#goods-detail .js-goods-slider .slick-dots li {
  width: 200px;
  height: calc((670px / 3) - 1em);
  border: 2px solid var(--txtColor);
}
.js-goods-slider .slick-dots li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(.7);
}

/*-----------------------------------------------
 * COMICS
-------------------------------------------------*/
#comics .content {
  text-align: center;
}
.comics-list {
	display: flex;
	flex-wrap: wrap;
  justify-content: flex-start;
}
.comics-list-item {
	width: calc(100% / 4);
  margin: 0 0 20px;
}
.comics-list-img {
  width: 94%;
  margin: 0 auto;
}
.comics-list-img img {
	width: 100%;
	border: solid 1px var(--txtColor);
}
.special-txt-area {
  padding: 0 15px 20px;
  box-sizing: border-box;
}
.special-img-area {
  padding: 0 15px 40px;
  box-sizing: border-box;
  text-align: center;
}

@media screen and (max-width:950px){
  .shop .more-btn {
    right: 7%;
}
 }
 @media screen and (max-width:890px){ 
  	.js-menu-list li {
		width: 100%;
	}
  .star-solid-p {
    top: 28%;
  }
  .star-slash-r {
    width: 50%;
  }
  .star-purple {
    width: 50%;
    bottom: 14%;
  }
}
@media screen and (min-width:768px){ 
	.news-inner,
	.twitter-inner {
		height: 100%;
	} 
	/*-----------------------------------------------
	 * FOOTER
	-------------------------------------------------*/
	.sns.jp img {
		max-width: 26px;
		max-height: 26px;
	}
	.jp .icon-x img {
		max-width: 21px;
		max-height: 21px;
	}

}
@media screen and (max-width:1399px){ 
  .play {
    top: 45%;
    transform: translate(-50%, -70%);
  }
}
@media screen and (max-width:1100px){ 
  .play {
    top: 38%;
    transform: translate(-50%, -110%);
  }
}
@media screen and (max-width:767px){ 
	html { 
		font-size: 52%;
	}
	.body-fix {
		overflow: hidden;
	}
	.sp { display: block; }
	.pc { display: none; }
	/* ScrollBar Setting */
	::-webkit-scrollbar {
		width: 3px;
		height: 3px;
	}
	/*-----------------------------------------------
	 * header
	-------------------------------------------------*/
	.js-menu {
		max-width: 50px;
	}
  .header-inner {
    top: 0;
    padding-top: 50px;
    box-sizing: border-box;
  }


	.menu-logo {
		width: 60vw;
		margin: 10px auto;
	}
	.header-scroll-sp {
		/*height: 100%;*/
		height: 100svh;
		overflow-y: scroll;
	}
	.js-menu-list li {
		width: 100%;
		font-size: 2.5rem;
	}
	.x-link img {
		width: 26px;
		height: 26px;
	}

	/*-----------------------------------------------
	 * TOP
	-------------------------------------------------*/
	.loading-logo picture {
		width: 90vw;
	}
	.kv {
		width: 100%;
	}
	.title-logo {
		width: 50%;
    left: 5px;
    top: 5px;
	}
	.top-onair {
		top: 106.5vw;
	}
  .sp-onair {
    position: absolute;
    bottom: 21%;
    left: 0;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    z-index: 1;
  } 
	.bannerArea {
		position: static;
		margin-top: -20px;
	}
	.banner-list {
		padding: 0 20px;
	}
	.banner-lists .slick-dots li button:before {
		content: "";
		height: 10px;
    width: 10px;
		background-color: var(--contentColor);
		opacity: 1;
		border-radius: 10em;
	}
	.banner-lists .slick-dots li.slick-active button:before {
		background-color: var(--mainColor);
	}
	.js-fixed-banner {
		max-width: 100px;
		bottom: 30px;
		left: 10px;
	}
  .kvArea .bannerArea .slick-slider .slick-list .slick-track .slick-slide img {
    margin: 0 auto !important;
  }
  .bannerArea .banner-lists .slick-list {
    padding-top: 38px;
  }

	/* PV */
  #pv {
    margin-top: 0;
    aspect-ratio: 16 / 8;
  }
  .cont-h2,
  .cont-h2-wh {
    font-size: 4.6rem;
  }	
  #pv a {
    top: 0;
  }
  .play {
    top: 25%;
    left: 53%;
    transform: translate(-50%, -70%);
  }
	.play img {
		width: 50px;
		height: 50px;
	}
	#js-close {
		top: -50px;
		right: 0;
    background-size: 35px;
    width: 35px;
    height: 35px;
	}
	/* NEWS */
  section.news-only {
    padding: 40px 20px 60px;
  }
  .news-inner {
    z-index: 1;
    position: relative;
  }
  .news-bg-left, .news-bg-right {
    width: 50%;
    top: 0;
  }
  .news-bg-left {
    left: -50px;
  }
  .news-bg-right {
    right: 0px;
  }
  .news-list a {
    padding: 10px 5px;
    font-size: 1.6rem;
  }
  .news-date {
    font-size: 1.4rem;
  }
	.more-btn a {
		bottom: 50px;
	}
  #top-news .more-btn a {
    width: 100%;
  }
	/* INTRODUCTION */
	#introduction{
		padding: 30px 15px 50px;
		font-size: 1.8rem;
  }
  .intro-tape-top,
  .intro-tape-bottom {
    left: 0;
    width: 150%;
    left: -20%;
  }
  .parallax-bg01 {
    height: 175vh;
  }
  .parallax-bg02 {
    height: 100vh;
  }
  .parallax-bg01 img {
    height: 100%;
  }
  .introduction-innr {
    padding: 50px 0 30px;
  }
	#character{
		padding: 50px 15px;
	}
  #staffcast {
		padding: 50px 20px;
	}
	.intro-inner {
		width: inherit;
	}
	.intro-txt-em {
		font-size: 2.4rem;
	}
	/* CHARACTER */
  .chara-window {
    max-width: 500px;
  }
	#js-chara-slider {
		flex-wrap: wrap;
    margin: 0 auto;
	}
  #character .slick-slide img {
  display: block;
  margin: 0 auto;
  }
  #character .full-body img {
  margin: 0 auto;
  }
	#character .slick-dots {
		width: 100%;
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: center;
    height: 0;
    margin-top: 0;
	}
	#character .slick-dots li {
		width: 60px;
		height: 60px;
		margin-bottom: auto;
		margin: 5px;
	}
	#character .slick-track {
		height: auto;
    margin: 0 auto;
	}
	#character .slick-list {
		width: 100%;
    margin: 0 auto;
	}
  .chara-area {
    margin: 0 auto;
    padding: 0;
  }
	.full-body {
		width: 100%;
		position: static;
		margin: auto;
	}
	.char-detail {
		position: relative;
		z-index: 1;
		padding: 20px 10px;
		margin-top: -150px;
	} 
  .chara-txt {
    font-size: 16px;
  }
	/* STAFF CAST */
	#staff {
		margin-bottom: 30px;
	}
  #staff .staff-list div.name-list:nth-child(-n+2),
  #staff .staff-list .name-list, 
  #cast .cast-list div.cast {
    width: 100%;
    margin: 0 0 20px;
    text-align: left;
    justify-content: flex-start;
  }
  #staff .staff-list .name-list .staff-center, 
  #cast .cast-list .name-list {
    text-align: left;
  }
  .staff-list,
  .cast-box {
    display: block;
    text-align: left;
    padding: 0px 15px;
  }
  .cast-list-01, .cast-list-02, .cast-list-03 {
    text-align: left;
  }
  .cast-list-01 {
    display: block;
  }
  .cast-list-02 .name-list {
    width: calc(100% / 2.5);
    padding: 0 0 10px;
    margin-right: 25px;
  }
  .cast-list-03 .name-list {
    width: 100%;
    padding: 0 0 10px;
  }
  .cast_name_txt {
	font-size: min(5vw, 2rem);
}
.cast_chara {
  text-align: left;
}
.cast_name {
  text-align: left;
}
	/*-----------------------------------------------
	 * footer
	-------------------------------------------------*/
  .footer-banner {    
    margin: 0 auto;
    text-align: center;
    display: block;
	}
	.footer-banner ul {
		padding: 0 20px;
    display: inline-block;
    margin-bottom: 10px;
	}
  .footer-banner li {
    width: 100%;
    margin: 0 0 15px;
  }
	.jp ul {
		align-items: center;
	}
	#page-top {
		top: -18px;
		left: calc((100% - 40px) / 2);
	}
	#page-top a {
		width: 40px;
		height: 40px;
	}
	#page-top a::before {
		margin-top: -10px;
    margin-left: -10px;
    border-width: 0 10px 16px 10px;
	}
	/*-----------------------------------------------
	 * NEWS
	-------------------------------------------------*/
	.lower {
		min-height: calc(100vh - 285px);
		padding: 70px 0 50px;
	}
	.lower .cont-h2 {
		margin-bottom: .2em;
	}
	#news ul,
	.disc-list {
		margin-bottom: 50px;
	}
	/*-----------------------------------------------
	 * NEWS DETAIL
	-------------------------------------------------*/
	#news-detail article,
	#onair section,
  #goods-detail article .goods-detail-cont,
  #special section,
  #special-detail article {
		padding: 1.5em;
		margin-bottom: 50px;
	}
  #music section {
		padding: 0;
		margin-bottom: 50px;
  }
	.article-title h3 {
		font-size: 1.8rem;
	}
  .article-content {
    padding-top: 15px;
    box-sizing: border-box;
  }
	/*-----------------------------------------------
	 * STORY
	-------------------------------------------------*/
	.story-nav {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.story-title {
		font-size: 2.4rem;
	}
	.js-story-slider .slick-dots,
  .js-goods-slider .slick-dots {
		display: flex;
	}
	.js-story-slider .slick-dots li,
  .js-goods-slider .slick-dots li {
		width: auto;
		height: auto;
	}
	.js-story-slider .slick-dots li:first-of-type,
  .js-goods-slider .slick-dots li:first-of-type {
		margin-left: 0;
	}
  
	.js-story-slider .slick-dots li:last-of-type,
  .js-goods-slider .slick-dots li:last-of-type {
		margin-right: 0;
	}
	.story-staffList div {
		width: 100%;
		margin-right: 0;
	}
	.story-staffList dt {
		flex-shrink: 0;
	}
	/*-----------------------------------------------
	 * ON AIR 
	-------------------------------------------------*/
	.cont-h3 {
		font-size: 4.5rem;
    text-align: left;
    line-height: 1.5;
	}
	.onair-detail, 
	.streaming-detail {
		font-size: 1.8rem;
	}
  #onair section.deregula {
    padding: 20px;
  }
  .deregula-lists {
    display: block;
  }
  .deregula-item {
    width: 100%;
    margin: 10px auto 20px;
  }
  .deregula-caution-area {
    width: 100%;
  }
	.onair-list div {
		flex-wrap: wrap;
	}
	.onair-list dt {
		width: 100%;
	}
	.ondemand-list li {
		width: 50%;
	}
	.icon-only::before {
		width: 35px;
		height: 35px;
		font-size: 1.6rem;
	}
	/*-----------------------------------------------
	 * MUSIC
	-------------------------------------------------*/
	.music-inner {
		font-size: 1.8rem;
	}
	.music-jacket {
		width: 100%;
		margin-bottom: 1.5em;
	}
	.music-info {
		width: 100%;
		padding-left: 0;
	}
	.music-title {
		font-size: 2.4rem;
	}
	.music-staffList div:last-of-type {
		margin-bottom: 0;
	}
	.music-karaoke .ondemand-list div {
		width: 100%;
	}
	/*-----------------------------------------------
	 * GOODS、Blu-ray&DVD
	-------------------------------------------------*/
	.goods-list-item,
  .disc-list-item,
  .special-list-item {
		width: 48%;
	}
  .article-title {
    margin-bottom: 0;
  }
  .goods-detail-cont .more-btn a {
    margin: 10px auto;
  }
	.disc-list-img {
		height: calc((100vw - 30px) / 2 - 1em);
	}
	.disc-list-title {
		height: calc(100% - (((100vw - 30px) / 2 ) - 1em));
	}

  #goods-detail .js-goods-slider .slick-dots li {
  height: calc((340px / 3) - 1em);
  }
  .goods-info-inner .more-btn a {
    width: 100%;
  }
  .back-btn-area .more-btn a,
  #news-detail .more-btn a {
    margin: 0 auto 40px;
  }
	/*-----------------------------------------------
	 * disc DETAIL
	-------------------------------------------------*/
	.disc-title {
		font-size: 1.8rem;
	}
	.disc-img,
	.disc-info-inner,
	.benefit-img,
	.benefit-info {
		width: 100%;
	}
	.disc-info-inner,
	.benefit-info {
		padding-left: 0;
	}
	.disc-img,
	.benefit-img {
		margin-bottom: 1.5em;
	}
	.shop-name {
		margin-bottom: .2em;
	}
	.disc-detail-inner + .benefit {
		margin-top: 2em;
	}
	.benefit-title {
		margin-bottom: 10px;
	}
	.benefit-info {
		order: -1;
	}
  .benefit-info p {
    padding-bottom: 10px;
    box-sizing: border-box;
  }
  .shop .more-btn {
    margin: 0 auto;
    position: initial;
    display: contents;
  } 
  #disc-detail .more-btn a {
    margin: 10px auto 0;
    width: 100%;
  }
  .goods-release {
   margin-top: 15px; 
  }
 .goods-list-img, 
 .disc-list-img {
  height: calc((950px / 5) - 1em);
 }
  .special-list-img {
  height: calc((900px / 5) - 4em);
 }

 .js-goods-slider.slick-slider {
	margin-bottom: 0.5em;
}

  /*-----------------------------------------------
 * COMICS
-------------------------------------------------*/
.comics-list {
  justify-content: flex-start;
}
.comics-list-item {
	width: calc(100% / 3);
  margin: 0 0 10px;
}
.comics-txt-title {
  padding: 5px;
}
.comics-txt-detile {
  font-size: 24px;
  padding: 5px;
}
.special-txt-area {
  padding: 0 0 20px;
}
.special-img-area {
  padding: 0 0 40px;
}
}
@media screen and (max-width: 400px){
  .play {
    top: 22%;
  }
  .introduction-innr .cont-h2-wh {
    font-size: 4.2rem;
  }
}