@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
-------------------------------------------------*/
:root{
	/* color */
	--txtColor: #000000;
	--mainColor: #691BCF; /* 見出しカラー */
	--subColor: #C2233F; /* character CV、リンクテキストカラー */
	--btnColor: #691BCF; /* ボタンbgカラー */
	--btnTxtColor: #fff; /* ボタンテキストカラー */
	--contentColor: rgba(255,255,255,.8); /* character背景等　透過背景 */
	--contentColor0: rgba(255,255,255,0); /* Storyタイトルの透過帯用 */
	--bgColor: #FFFFFF; /* ローディングアニメちらつき防止用 com_bg.jpgに近い色を設定 */


	/* font */
	--mainFont: 'm-plus-1c','M PLUS 1p', serif;

	/* 変化速度 */
	--speed: all, .3s, ease, .3s;

	/* ボーダー */
	--border: solid 4px #691BCF; /* INTRODUCTION, STAFF/CASTのボーダー 無しの場合は「none;」を入れる */
}
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/bg.jpg);
  animation: bgAnime 40s linear infinite;
}
@keyframes bgAnime {
  from {
      background-position: top left
  }

  to {
      background-position: 450px -424px
  }
}
.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;
}*/

/*-----------------------------------------------
 * 共通
-------------------------------------------------*/
.cont-h2 {
	font-size: 6.6rem;
	font-family: var(--mainFont);
	color: var(--mainColor);
	text-align: center;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.cont-h2::before,
.cont-h2::after{
  content: '';
	background-image: url(../img/h2_star.svg);
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  padding: 0 10px 0 20px;
  box-sizing: border-box;
}



/*-----------------------------------------------
 * header
-------------------------------------------------*/
.js-menu {
	width: 100px;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 3;
	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: 2;
	background-image: url(../img/bg.jpg);
  animation: bgAnime 40s linear infinite;
  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(--mainFont);
	font-weight: 900;
	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/bg.jpg);
	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: 430px;
}
@keyframes logoAnime {
	from {
		opacity: 0;
		transform: scale(.9);
	}
	to {
		opacity: 1;
		transform: scale(1.0);
	}
}

.kvArea {
	position: relative;
}
.kv {
	width: 72%;
	margin: 0 0 0 auto;
  text-align: right;
}
.title-logo {
  top: 10px;
  width: 36%;
	max-width:  430px;
	position: absolute;
  top: 30px;
  left: 20px;
  z-index: 1;
}
/* キービジュアル */

.hero_slide .slick-dotted {
	position: relative;
}
.hero_slide .slick-dots {
	position: absolute;
  width: 25%;
	top: 10px;
	right: 13%;
}

.hero_slide .slick-dots li {
	width: 100px;
  height: 100px;
	background-color: #fff;
	margin: 0 10px 20px;
	border: solid 3px var(--mainColor);
	cursor: pointer;
	overflow: hidden;
  z-index: 1;
}
#js_hero .slick-list .slick-track {
  display: flex;
}
#js_hero .slick-list .slick-track li {
  width: 80%!important;
}
@media (max-width: 767px) {
	.hero_slide .slick-dots li {
		width: max(10vw, 40px);
		margin-bottom: 10px;
    height: auto;
	}
	.hero_slide .slick-dots {
		top: 13vw;
		right: -5px;
    z-index: 1;
	}
}

@media (max-width: 767px) {
  .hero_slide .slick-dots {
      text-align: right;
      z-index: 1;
      right: 
      0;
    }
    .hero_slide .slick-dots {
		top: 16vw;
  }
}
.hero_slide .slick-dots li.slick-active {
	cursor: default;
}
.hero_slide .slick-dots img {
	transition: var(--speed);
}
.slick-dots li.slick-active {
  background-color: #fff;
}
.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 {
		/* navとonair分を引く */
		width: calc(100vw - 80px - 200px);
    margin: 0 0 0 auto;
	}
  #js_hero .slick-list .slick-track li {
    min-width: 50% !important;
  }
}
.kv-single .slick-dots {
	display: none;
}

@media (min-width: 891px) {
	.hero_line {
		width: 100%;
		writing-mode: vertical-rl;
		text-orientation: upright;
	}
}
.pc-onair {
	position: absolute;
	top: 106px;
	right: 20px;
  z-index: 1;
}
.pc-onair img {
  max-height: 600px;
}

.bannerArea {
	position: absolute;
	top: 250px;
	left: 30px;
  z-index: 1;
}
.banner-list {
	width: 280px;
	margin-bottom: 10px;
}
.js-fixed-banner {
	display: none;
	max-width: 160px;
	position: fixed;
	bottom: 40px;
	left: 40px;
	z-index: 1;
}

/*星の装飾*/
.star-area {
  position: absolute;
  width: 30%;
  height: 90%;
  z-index: 1;
}
.star-solid-p,
.star-solid-r,
.star-slash-r,
.star-purple {
  position: absolute;
}
.star-solid-p {
  top: 35%;
  right: 19%;
}
.star-solid-p img {
  animation: floating-y 1.4s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
.star-slash-r {
  top: 40%;
  right: 2%;
}
.star-slash-r img {
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(4%);
  }
  100% {
    transform: translateY(-10%);
  }
}
.star-solid-r {
  bottom: 24%;
  left: 46%;
}
.star-solid-r img {
  animation: floating-y 1.4s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
.star-purple {
  bottom: 0%;
  left: 2%;
}
.star-purple img {
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(4%);
  }
  100% {
    transform: translateY(-10%);
  }
}

/* PV */

#pv{
  aspect-ratio:16 / 5;
	mask-image: url(../img/pv_bg.svg);
	mask-repeat: no-repeat;
	mask-position: 0 0;
	mask-size: cover;
	/* Chrome, Safari用 */
	-webkit-mask-image: url(../img/pv_bg.svg);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 0 0;
	-webkit-mask-size: cover;
  width: 100%;
  max-height: 560px;
  margin-top: -200px;
}

.cont-h2-wh {
	font-size: 5.8rem;
	font-family: var(--mainFont);
	color: #FCE300;
	text-align: center;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.cont-h2-wh::before,
.cont-h2-wh::after{
  content: '';
	background-image: url(../img/h2_star_fff.svg);
  background-repeat: no-repeat;
  padding: 0 10px 0 20px;
  box-sizing: border-box;
  width: 50px;
  height: 42px;
}

#pv .pv-innr {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  min-height: 20vw;
  max-height: 54vw;
  position: relative;
}
#pv h2{
  position: absolute;
  z-index: 2;
  top: 10%;
  left: 50%;
  transform: translateX(-40%);
}
#pv a {
	display: block;
	width: 100%;
  height: 100%;
  padding-bottom: 56.25%;
	position: relative;
	transition: var(--speed);
}
#pv a:hover {
	opacity: 1;
	filter: brightness(.9);
}
#pv .pv-innr .pv-movie-innr {
  max-height: 560px;
  width: 100vw;
  position: relative;
}
#pv .pv-innr .pv-movie-innr a::before {
  content: '';
  background: rgba(105,27,207,0.6);
  mix-blend-mode: hard-light;
  z-index: 1;
  height: 100vh;
  width: 100vw;
  position: absolute;
}
#pv .pv-innr .pv-movie-innr iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  margin: 0;
  max-width: none !important;
  max-height: none !important;
}
.play {
  position: absolute;
  top: 5%;  
  left: 52%;  
  transform: translate(-50%, 253%); 
  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: 3;
	background-image: url(../img/bg.jpg);
  animation: bgAnime 40s linear infinite;
}
.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;
}
.news-inner {
  margin: 0 auto;
}
 section.news-only {
	width: 100%;
	max-width: 900px;
	margin: auto;
  padding: 40px 10px 60px;
  box-sizing: border-box;
}
.news-list {
	border: solid 4px var(--mainColor);
  border-radius: 5px;
  margin: 0 0 20px;
  background-color: var(--contentColor);
}
.news-list a {
	display: block;
	padding: 10px 20px;
  box-sizing: border-box;
	color: var(--txtColor);
	text-decoration: none;
  font-weight: 900;
  font-size: 18px;
}
.news-list a:hover {
	background-color: var(--contentColor);
}
.news-date {
	display: inline-block;
	color: var(--subColor);
  font-size: 14px;
  font-weight: 900;
}
#top-news .more-btn a,
.benefit-list .more-btn a {
	display: block;
	align-items: center;
	width: 300px;
  padding: 10px 0;
  box-sizing: border-box;
	text-align: center;
	color: #fff;
	background-color: var(--mainColor);
  font-size: 18px;
  font-weight: 900;
	border-radius: 100px;
	text-decoration: none;
  margin: 40px auto 0;
}

.more-btn a {
	display: block;
	align-items: center;
	width: 300px;
  padding: 10px 0;
  box-sizing: border-box;
	text-align: center;
	color: var(--mainColor);
	background-color: #fff;
  border: 3px solid var(--mainColor);
  font-size: 18px;
  font-weight: 900;
	border-radius: 100px;
	text-decoration: none;
  margin: 40px auto 0;
}

/* INTRODUCTION */
#introduction {
	background-image: url(../img/introduction_bg.svg);
	background-repeat: no-repeat;
	background-size: cover;
  background-position: center;
	font-size: 2.0rem;
	font-weight: 900;
	text-align: center;
  padding: 60px 0 100px;
  box-sizing: border-box;
  position: relative;
  overflow-x: hidden;
}

#introduction .cont-h2 {
	margin-bottom: .2em;
}
.intro-inner {
	max-width: 660px;
	margin: 1em auto 1.5em;
  color: #fff;
  line-height: 1.8;
  line-break: strict;
}
.intro-txt-em {
	font-family: var(--mainFont);
	display: block;
	font-size: 3.0rem;
	color: #fff;
	margin-bottom: 1.5em;
}
/**/
.parallax-section {
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  bottom: 0;
}
.parallax-item[data-direction="left"] {
    transform: translateX(-100px);
}
.parallax-item[data-direction="right"] {
    transform: translateX(100px);
}
.parallax-item {
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s ease-out;
  margin: 20px 20px 0;
  max-width: 18%;
  flex-shrink: 0;
}
.parallax-item img {
  display: block; /* 画像の下の余白をなくす */
  max-width: 100%; /* 親要素からはみ出さない */
  height: auto; /* アスペクト比を維持 */
}
/* --- 各方向の初期オフセット --- */
.parallax-item[data-direction="left"] {
  transform: translateX(-100px); /* 左から来る画像は左にオフセット */
}

.parallax-item[data-direction="right"] {
  transform: translateX(100px); /* 右から来る画像は右にオフセット */
}
/* --- アニメーション後の状態 (画面内、不透明) --- */
/* JavaScriptによってこのクラスが追加されます */
.parallax-item.is-visible {
  opacity: 1; /* 不透明 */
  transform: translateX(0); /* オフセットをなくす */
}


/* CHARACTER */
#character {
  padding: 80px 0;
  box-sizing: border-box;
}
.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: static;
	order: -1;
	display: flex;
	flex-direction: column;
}
#character .slick-dots li {
	width: 70px;
	height: 70px;
	background-color: var(--contentColor);
	border: solid 4px var(--mainColor);
	border-radius: 5px;
	margin: 0;
	margin-bottom: 20px;
  overflow: hidden;
}
#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-image: url(../img/character-bg.png);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: center;
	border: solid 4px var(--subColor);
}
#character .slick-list {
	width: calc(100% - 70px - 40px);
}
#character .slick-track {
	height: 750px;
}
.chara-cont {
	position: relative;
}
.full-body {
	width: 420px;
	position: absolute;
	left: 0;
}
.char-detail {
	border-radius: 10px;
	background-color: var(--contentColor);
	padding: 30px 30px 30px 50%;
	margin-top: 80px;
}

.chara-info {
	background-image: url(../img/char_detail_bg.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
  min-height: 250px;
  padding: 32px 20px 0;
  box-sizing: border-box;
  margin: 0 0 20px;
}
.chara-window {
  position: relative;
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 5px 7px 0px var(--subColor);
  overflow: hidden;
  border: 5px solid var(--mainColor);
  margin: 0 auto 20px;
}

.chara-window-header {
  background-color: var(--mainColor);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 5px 15px;
  outline: solid 1px var(--mainColor);
  border-radius: 0;
}

.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;
}

.chara-name {
	font-family: var(--mainFont);
	font-size: 3.2rem;
	color: var(--mainColor);
  font-weight: 900;
}
.chara-cv {
	font-family: var(--mainFont);
	font-size: 2.1rem;
	color: var(--subColor);
	margin-bottom: 5px;
  font-weight: 900;
}
.chara-txt {
	margin-bottom: 1em;
  font-weight: 600;
  font-size: 17px;
}
.chara-face {
	margin: 0 auto;
}
/* STAFF CAST */
#staffcast {
	text-align: center;
	background-image: url(../img/staff_bg.jpg);
	background-repeat: 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;
  background-color: #fff;
  border-radius: 10px;
  border: 4px solid var(--mainColor);
  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:first-of-type {
	width: 100%;
  display: block;
  text-align: center;
  margin: 0 auto 30px; 
} 
#staff .staff-list .name-list .staff-center,
#cast .cast-list .name-list {
  display: inline-block;
  text-align: center;
} 

.name-list {
  text-align: left;
  margin-bottom: 30px;
}
#cast {
	margin-bottom: 30px;
}
#cast .cast-box {
  border: 4px solid var(--mainColor);
  background-color: #fff;
  border-radius: 10px;
	max-width: 980px;
	margin: 0 auto 40px;
}
#cast h3 {
	display: inline-block;
	width: 100%;
	font-size: 1.8rem;
	color: #fff;
  background-color: var(--mainColor);
  font-weight: 900;
	padding: .4em 0;
  box-sizing: border-box;
  margin: 0 0 20px;
  font-size: 20px;
}
#cast h3::before,
#cast h3::after{
  content: '';
  display: inline-block;
  width: 48px;
  height: 15px;
  background-image: url(../img/xxx_icon.png);
  background-size: contain;
  vertical-align: middle;
  margin: 0 15px;
  background-repeat: no-repeat;
}
.cast-list {
	display: flex;
	flex-wrap: wrap;
	margin: auto;
  box-sizing: border-box;
  padding: 20px 60px 20px;
  box-sizing: border-box;
  text-align: center;
}
.cast {
  text-align: left;
  margin-bottom: 30px;
  padding: 0 5px;
  box-sizing: border-box;
}
div.name-list:last-child,
div.cast:last-child{
  margin-bottom: 10px;
}
.cast_chara {
	color: var(--subColor);
	font-family: var(--mainFont);
  font-weight: 900;
  font-size: 1.5rem;
}
.cast_name {
	font-size: 1.8rem;
  font-weight: 900;
}
.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: 35px;
	height: 35px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url('../img/bubble.svg');
}
.cast-description {
	font-size: .8em;
}
@media (max-width: 1200px) {

}
@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: 30px 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: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
  left: 0;
	z-index: 3;
	background-image: url(../img/bg.jpg);
  animation: bgAnime 40s linear infinite;
  overflow-y: scroll;
}

.cast_comment.is-active {
    opacity: 1;
    visibility: visible;
    display: block;
    vertical-align: middle;
}
.cast-comment-box {
  position: relative;
  display: flex;
  justify-content: flex-end;
  vertical-align: middle;
  align-items: center;
  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;
   align-items: flex-start;
  }
  .js_close_modal_btn {
    background-size: 35px;
    width: 35px;
    height: 35px;
    z-index: 5;
    top: -44px;
    right: 0;
  }
}


/*-----------------------------------------------
 * footer
-------------------------------------------------*/
footer {
	padding: 60px 0 35px;
	text-align: center;
	position: relative;
  background-color:  var(--mainColor);
}
#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 4px 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;
}
.sns p {
	font-family: var(--headFont);
	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;
}
.wp-pagenavi {
	text-align: center;
}
.wp-pagenavi .current,
.wp-pagenavi .page {
	padding: .5em .9em;
	margin: 0 7px;
	border: solid 3px var(--subColor);
	border-radius: 50px;
  font-weight: 900;
}
.wp-pagenavi .current {
	color: var(--btnTxtColor);
	background-color: var(--subColor);
}
.wp-pagenavi .page {
	color: var(--subColor);
	background-color: var(--contentColor);
	text-decoration: none;
}
/*-----------------------------------------------
 * NEWS DETAIL
-------------------------------------------------*/
#news-detail article,
#goods-detail article .goods-detail-cont,
#special-detail article {
	background-color: var(--contentColor);
	border-radius: 5px;
	padding: 2em;
	margin-bottom: 80px;
}
.article-title {
	border-bottom: solid 2px var(--txtColor);
  padding-bottom: 1em;
  margin-bottom: 2em;
}
.article-title h3 {
	font-size: 2.1rem;
	font-weight: 900;
}
.article-title .news-date {
  color: var(--subColor);
}
.article-content figure {
	margin-bottom: 1.5em;
}
.article-content p {
	margin-bottom: 1em;
  font-weight: 700;
}
.lower .more-btn a {
	position: static;
}
.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: 2.5em;
}
.js-nav-list {
	display: inline-block;
	color: var(--subColor);
	background-color: var(--contentColor);
	border: solid 3px var(--subColor);
	border-radius: 10px;
	text-decoration: none;
	padding: .4em 1em .6em;
	margin: 0 7px 10px;
  font-weight: 900;
}
.js-nav-list.active {
	background-color: var(--subColor);
	color: #fff;
}
.story-title {
	font-family: var(--mainFont);
	font-weight: 900;
	display: inline-block;
	font-size: 3.2rem;
	background: linear-gradient(90deg,var(--contentColor0) 0%, var(--contentColor) 20%, var(--contentColor) 80%,var(--contentColor0) 100%);
	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: 230px;
	height: 130px;
	margin: 0 7px;
	transition: var(--speed);
}
.js-story-slider .slick-dots li {
	filter: brightness(.7);
}


#story .slick-slide img {
  display: block;
  border-radius: 10px;
  border: 4px solid var(--mainColor);
}
.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);
}
.js-story-slider .slick-dots li img {
  border-radius: 8px;
}
.story-txt-area {
	background-color: var(--contentColor);
	border-radius: 5px;
	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);
	border-radius: 10px;
	padding: 2em;
  box-sizing: border-box;
	margin-bottom: 80px;
  border: 3px solid var(--mainColor);
}
#onair section.deregula {
  background-color: #FFE1F8;
  border-radius: 10px;
	margin-bottom: 80px;
	padding: 1em 2em 2em;
  box-sizing: border-box;
  border: none;
}
#onair section h3.onair-deregula {
	font-size: 4rem;
	font-family: var(--mainFont);
	color: var(--txtColor);
	margin: 0 auto .2em;
  font-weight: 900;
  text-align: center;
}
.deregula-lists {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--mainFont);
  font-weight: 900;
}
.deregula-item {
  background-color: #fff;
  border: 3px solid var(--mainColor);
  border-radius: 10px;
  width: 40%;
  margin: 10px 10px 20px;
}
.deregula-item  dt {
  display: block;
 background-color: var(--mainColor);
 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: 700;
  font-size: 14px;
  text-align: left;
}
.onair-detail,
.streaming-detail {
	font-size: 2.1rem;
	margin-bottom: 1.5em;
}
.cont-h3 {
	font-size: 6rem;
	font-family: var(--mainFont);
	color: var(--mainColor);
	margin-bottom: .2em;
  font-weight: 900;
}
.cont-h3-music {
	font-size: 4rem;
	font-family: var(--mainFont);
	color: var(--txtColor);
	margin-bottom: .2em;
  font-weight: 900;
}
.streaming-list:not(:last-of-type) {
	margin-bottom: 40px;
}
.onair-list div {
	display: flex;
	margin-bottom: .5em;
}
.onair-list dt {
	width: 20%;
	color: var(--subColor);
  font-weight: 900;
}
#onair h4 {
	color: var(--subColor);
  font-weight: 900;
}
.onair-point {
	display: inline-block;
	background-color: var(--subColor);
	color: #fff;
	padding: 0 .6em .1em;
	border-radius: 5px;
	margin: 0 0 20px;
  font-weight: 900
}
.ondemand-list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}
.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 2px var(--txtColor);
	padding: .7em;
	margin: .2em;
  border-radius: 4px;
	position: relative;
  font-weight: 900;
  color: var(--txtColor) !important ;
}

.ondemand-list a:hover {
	background-color: var(--mainColor);
  color: #fff!important;
	border: solid 2px var(--mainColor);
  opacity: inherit!important;
}
.nolink {
	border-color: var(--txtColor);
}

/*-----------------------------------------------
 * MUSIC
-------------------------------------------------*/
#music .content {
  border: 4px solid var(--mainColor);
	border-radius: 10px;
}
#music section {
	background-color: var(--contentColor);
  box-sizing: border-box;
}
.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(--headFont);
	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;
	background-color: var(--subColor);
	color: #fff;
	border-radius: 4px;
	text-align: center;
  padding: 3px 0;
  box-sizing: border-box;
}
.music-staffList dd {
	width: calc(100% - 6.5em);
	padding-left: 1em;
}
.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 3px var(--mainColor);
  border-radius: 15px;
  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 );
  border-radius: 15px;
  margin: 10px 0;
}
.special-list-img {
	/* PC以上ではcontent内はwidth:1000px */
	height: calc((850px / 3) - 1em );
  border-radius: 15px;
  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: 900;
	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-color: var(--mainColor);
  font-size: 18px;
  font-weight: 900;
	border-radius: 100px;
	text-decoration: none;
  margin: 40px auto 0;
}
/*-----------------------------------------------
 * Blu-ray&DVD DETAIL
-------------------------------------------------*/
.disc-detail-cont {
  border: none;
  margin-bottom: 0;
  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: 900;
	border-bottom: solid 2px var(--txtColor);
	padding-bottom: .8em;
	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-weight: 900;
	color: var(--mainColor);
	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;
}
.has-btn .more-btn {
	margin-top: 3em;
}
.benefit-title {
	font-size: 3.1rem;
	font-weight: 900;
	text-align: center;
  color: var(--mainColor);
  margin-bottom: 1em;
  text-align: left;
}
.shop {
	border-bottom: solid 2px 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(--subColor);
	color: #fff;
	border-radius: 4px;
	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-radius: 8px;
  border: 3px solid var(--mainColor);
}
.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 2px var(--txtColor);
}

.comics-txt {
  border: 3px solid var(--mainColor);
  background-color: #fff;
  border-radius: 10px;
  font-weight: 900;
  text-align: center;
  width: 100%;
  margin: 0 auto 30px;
}
.comics-txt-title {
  color: #fff;
  font-size: 14px;
  padding: 5px 0;
  background-color: var(--mainColor);
}
.comics-txt-detile {
  color: var(--txtColor);
  font-size: 2.8rem;
  padding: 5px 0;
  box-sizing: border-box;
}
.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;
	}

	/*-----------------------------------------------
	 * disc DETAIL
	-------------------------------------------------*/

}

@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;
	}
  .slick-list{
    padding-top: 25px;
    box-sizing: border-box;
  }

	.kvArea {
		margin-bottom: 30px;
	}
	.kv {
		width: 100%;
	}
	.title-logo {
		width: 40%;
    left: 5px;
    top: 5px;
	}
	.top-onair {
		top: 106.5vw;
	}
  .sp-onair {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 70%;
    z-index: 1;
  } 
  .star-area {
    width: 100%;
    height: 70%;
  }
	.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;
  }
  .kvArea .hero_slide #js_hero {
    padding-top: 26px;
    box-sizing: border-box;
  }

  .star-solid-p {
  top: 50%;
  left: 7%;
  width: 8%;
  }
  .star-slash-r {
    top: 58%;
    left: 2%;
    right: inherit;
    width: 20%;
  }
  .star-solid-r {
    top: 36%;
    right: 10%;
    width: 10%;
    bottom: inherit;
    left: inherit;
  }
  .star-purple {
    top: 55%;
    right: 0;
    width: 20%;
    bottom: inherit;
    left: inherit;
  }

	/* PV */
    #pv {
      margin-top: 0;
    }
    .cont-h2,
    .cont-h2-wh {
      font-size: 4.5rem;
    }	
    
  .cont-h2::before,
  .cont-h2::after,
  .cont-h2-wh::before,
  .cont-h2-wh::after {
    width: 28px;
    height: 28px;
    margin: 0 10px;
    padding: 0;
    background-size: 100%;
  }

  #pv h2 {
    top: 4%;
    left: 48%;
  }
  #pv a {
    top: 0;
  }
  .play {
    top: 50%;
    left: 53%;
    transform: translate(-50%, -32%);
  }
	.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 {
		width: calc(100% - 30px);
		padding-bottom: 20px;
	}
	.more-btn a {
		bottom: 50px;
	}
	/* INTRODUCTION */
	#introduction{
		padding: 30px 15px 130px;
  }
	#character{
		padding: 50px 15px;
	}
  #staffcast {
		padding: 50px 20px;
	}
	#introduction {
		font-size: 1.8rem;
	}
	.intro-inner {
		width: calc(100% - 50px);
	}
	.intro-txt-em {
		font-size: 2.4rem;
	}
  .parallax-section {
    justify-content: center;
  }
  .parallax-item {
    max-width: 20%;
  }
	/* 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 .slick-dots {
		width: 100%;
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: center;
		margin-bottom: 20px;
	}
	#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;
		-webkit-backdrop-filter: blur(3px);
		backdrop-filter: blur(3px);
	} 
  .chara-txt {
    font-size: 16px;
  }
	/* STAFF CAST */
	#staff {
		margin-bottom: 30px;
	}
  #staff .staff-list div.name-list:first-of-type,
  #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-list {
    display: block;
    text-align: left;
  }
  .staff-list {
    padding: 40px 25px 20px;
  }
  .cast-list {
    padding: 25px;
  }
  .cast_name_txt {
	font-size: min(5vw, 2rem);
}
	/*-----------------------------------------------
	 * 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,
	#music section,
  #goods-detail article .goods-detail-cont,
  #special section,
  #special-detail article {
		padding: 1.5em;
		margin-bottom: 50px;
	}
	.article-title h3 {
		font-size: 1.8rem;
	}
	/*-----------------------------------------------
	 * 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;
	}
	.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%;
	}
	.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);
}
	/*-----------------------------------------------
	 * 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;
	}
  .shop .more-btn {
    margin: 0 auto;
    position: initial;
  } 
  #disc-detail .more-btn a {
    margin: 10px auto 0;
  }
  .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:620px){ 
  #introduction{
		padding: 30px 15px 130px;
  }
  .parallax-item {
    max-width: 26%;
  }
}
@media screen and (max-width:520px){ 
  .parallax-item {
    max-width: 30%;
  }
  .intro-inner {
    margin: 0 auto;
    width: inherit;
  }

}
@media screen and (max-width:420px){ 
    .cont-h2, .cont-h2-wh {
      font-size: 4.0rem;
  }
}

@media screen and (max-width:400px){ 
  .parallax-item {
    max-width: 30%;
  }
}


@media screen and (min-width: 768px) and (max-width: 1024px)  {
.pc-onair {
	width: 25%;
}
.hero_slide .slick-dots li{
  width: 80px;
  height: 80px;
}
.hero_slide .slick-dots {
  width: 20%;
  right: 20%;
}
}

