@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: #1A1A1A;
	--mainColor: #FF5457; /* 見出しカラー */
	--subColor: #FF5C1A; /* character CV、リンクテキストカラー */
	--btnColor: #1A1A1A; /* ボタンbgカラー */
	--btnTxtColor: #fff; /* ボタンテキストカラー */
	--contentColor: rgba(255,255,255,.5); /* character背景等　透過背景 */
	--contentColor0: rgba(255,255,255,0); /* Storyタイトルの透過帯用 */
	--bgColor: #FFFFFF; /* ローディングアニメちらつき防止用 com_bg.jpgに近い色を設定 */


	/* font */
	--mainFont: 'Noto Sans JP', sans-serif;
	--headFont: 'Livvic', sans-serif; /* 見出し用、フォントによってfont-sizeやmargin-bottomの調整が必要かもしれません */

	/* 変化速度 */
	--speed: all, .3s, ease, .3s;

	/* ボーダー */
	--border: dotted 5px #02C3E6; /* 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 {
	content: "";
	width: 100vw;
	height: 100vh;
	background-image: url(../img/com_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	position: fixed;
	inset: 0;
	z-index: -1;
}
.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;
}*/

/*-----------------------------------------------
 * header
-------------------------------------------------*/
.js-menu {
	width: 100px;
	position: fixed;
	top: 8px;
	right: 8px;
	z-index: 4;
	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: 3;
	background-image: url(../img/com_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.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(--headFont);
	font-weight: 700;
	color: var(--txtColor);
	text-decoration: none;
	padding: .4em;
}
.js-menu-list a.cs {
	opacity: .5;
}
.js-menu-list a.cs::hover {
	opacity: .5;
}
.x-link {
	text-align: center;
	margin-top: 1.5em;
}

/*-----------------------------------------------
 * TOP
-------------------------------------------------*/
#js-loading {
	width: 100vw;
	height: 100vh;
	background-image: url(../img/com_bg.jpg);
	background-color: var(--bgColor);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: fixed;
	z-index: 10;
}
.loading-logo {
	position: relative;
	top: calc((100vh - 280px) / 2);/* ロゴの高さ分を引く */
	text-align: center;
	animation: logoAnime 2.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);
	}
}
.langSwitch {
	position: fixed;
	top: 5px;
	right: 120px;
	z-index: 1;
	background-color: var(--contentColor);
	padding: .1em .9em;
	border-radius: 10em;
}
#top-en .langSwitch,
#top-fr .langSwitch {
	right: 10px;
}
.langSwitch,
.langSwitch a {
	color: var(--txtColor);
} 
.langSwitch a {
	padding: .3em;
}
.langSwitch .select {
	text-decoration: none;
	pointer-events: none;
}
.kvArea {
	position: relative;
	margin-bottom: 100px;
}
.kv {
	width: max(65vw,900px);
	margin: auto;
}
.title-logo {
	width:  400px;
	position: absolute;
	top: 60px;
	left: 28px;

}
.top-onair {
	max-width: 800px;
	position: absolute;
	top: 500px;
	right: 0;
}
.bannerArea {
    position: absolute;
    top: 250px;
    right: 20px;
    left: auto;
}
.banner-list {
	width: 280px;
	margin-bottom: 10px;
}
.js-fixed-banner {
	display: none;
	max-width: 160px;
	position: fixed;
	bottom: 40px;
	left: 40px;
	z-index: 1;
}

/* PV */
#pv {
	height: 400px;
	position: relative;
}
.cont-h2 {
	font-size: 9.6rem;
	font-weight: 700;
	font-family: var(--headFont);
	background: linear-gradient(356deg,rgba(239, 0, 92, 1) 0%, rgba(239, 0, 92, 1) 43%, rgba(255, 92, 26, 1) 43%, rgba(255, 92, 26, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: center;
}
#pv .cont-h2 {
	width: 100%;
	text-align: center;/* positionだと綺麗に中央にならなかったのでテキストで中央指定 */
	color: #fff;
	position: absolute;
	top: 40px;
	z-index: 1;
	pointer-events: none;
}
#pv img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#pv a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	transition: var(--speed);
}
#pv a:hover {
	opacity: 1;
	filter: brightness(.9);
}
.play {
	position: absolute;
	top: calc((100% - 100px) / 2);
	left: calc((100% - 100px) / 2);
}
.play::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -26px;
	margin-left: -16px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 26px 0 26px 45px;
	border-color: transparent transparent transparent #fff;
}
#js-pv-modal {
	display: none;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	z-index: 3;
	background-image: url(../img/com_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.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;
	top: 30px;
	right: 30px;
	cursor: pointer;
	padding: 30px 0;
}
#js-close:hover {
	opacity: .7;
}
#js-close span {
	display: block;
	width: 80px;
  height: 2px;
  background-color: #fff;
  transform: rotate(45deg);
}
#js-close span:last-of-type {
	transform: rotate(-45deg);
} 

/* TOP update */
#update {
	display: flex;
	width: max(90vw, 1200px);
	margin: 0 auto;
}
#update section {
	display: flex;
	flex-direction: column;
	width: 50%;
}
#update section.news-only {
	width: 100%;
	max-width: 900px;
	margin: auto;
}
#update .cont-h2 {
	margin: 50px auto .2em;
}
.news-inner,
.twitter-inner {
	width: calc(100% - 50px);
	position: relative;
	padding-bottom: 160px;
	margin: auto;
}
.news-list {
	border-bottom: solid 1px var(--txtColor);
}
.news-list:first-of-type {
	border-top: solid 1px var(--txtColor);
}
.news-list a {
	display: block;
	padding: 2.5em .8em;
	color: var(--txtColor);
	text-decoration: none;
}
.news-list a:hover {
	background-color: var(--contentColor);
}
.news-date {
	display: inline-block;
	color: var(--mainColor);
	margin-bottom: .5em;
}
.more-btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 250px;
	height: 50px;
	text-align: center;
	color: var(--btnTxtColor);
	background-color: var(--btnColor);
	border-radius: 5px;
	text-decoration: none;
	position: absolute;
	bottom: 70px;
	left: calc((100% - 250px) / 2 );
}
.twitterFrame {
	background-color: var(--contentColor);
	border-radius: 10px;
	padding: 10px;
}

/* INTRODUCTION */
#introduction,
#character,
#staffcast,
#comic {
	padding: 80px 0;
}
#introduction {
	background-image: url(../img/intro_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	font-size: 2.1rem;
	/* font-weight: 600; */
	text-align: center;
	position: relative;
	overflow: hidden;
}
#introduction .cont-h2 {
	margin-bottom: .2em;
}
.intro-inner {
	color: #fff;
	max-width: 800px;
	margin: 0 auto 1.5em;
}
.intro-txt-em {
	font-family: "DotGothic16", sans-serif;
	display: block;
	font-size: 3.2rem;
	margin-bottom: 1.5em;
	animation: tilt 1s ease-in-out;
}

@keyframes tilt {
  0% {
    transform: rotate(0deg) scale(1); 
  }
  20% {
    transform: rotate(5deg) scale(0.95); /* 右に5度傾き、95%に縮小 */
  }
  40% {
    transform: rotate(-5deg) scale(0.95); /* 左に5度傾き、95%に縮小 */
  }
  60% {
    transform: rotate(3deg) scale(0.98); /* 右に3度傾き、98%に縮小 */
  }
  80% {
    transform: rotate(-3deg) scale(0.98); /* 左に3度傾き、98%に縮小 */
  }
  100% {
    transform: rotate(0deg) scale(1); /* 初期状態に戻る */
  }
}

/* CHARACTER */
.chara-area {
	max-width: 960px;
	margin: auto;
}
#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: #fff;
	border: solid 1px #f3f3f3;
	border-radius: 5px;
	margin: 0;
	margin-bottom: 20px;
	transition: var(--speed);
}
#character .slick-dots li:hover {
	opacity: .7;
}
#character .slick-dots li.slick-active {
	background-color: #FEFFD5;
	border: 1px solid #fdff9c;
}
#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 430px;
	margin-top: 80px;
}
.chara-name {
	font-size: 3.6rem;
	font-weight: 800;
	color: var(--subColor);
	margin-bottom: .5em;
}
.chara-cv {
	font-size: 2.1rem;
	font-weight: 600;
	color: var(--subColor);
	margin-bottom: 1em;
}
.chara-txt {
	margin-bottom: 1em;
}
.chara-face {
	margin-left: -20px;
}
/* STAFF CAST */
#staffcast {
	text-align: center;
	background-image: url(../img/staffcast_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#staffcast .cont-h2 {
	margin-bottom: .5em;
}
#staff {
	margin-bottom: 80px;
}
.staffcast-list {
	font-weight: 600;
	display: flex;
	flex-wrap: wrap;
	max-width: 800px;
	margin: auto;
}
#cast .staffcast-list {
	max-width: 600px;
}
.staffcast-list div {
	margin-bottom: 2em;
}
#staff .staffcast-list div {
	width: calc(100% / 3);
}
#staff .staffcast-list div:nth-of-type(1) {
	width: 50%;
	margin-bottom: 0.4em;
} 
#staff .staffcast-list div:nth-of-type(2) {
	width: 50%;
	margin-bottom: 0.4em;
} 
@media screen and (min-width:768px){ 
	#staff .staffcast-list div:nth-of-type(1) {
		position: relative;
		left: 100px;
	} 
	#staff .staffcast-list div:nth-of-type(2) {
		position: relative;
		right: 100px;
	} 
}

#staff .staffcast-list div:nth-of-type(3) {
	width: 100%;
	padding: 0 2em;
	margin-bottom: 4em;
} 
#staff .staffcast-list div:nth-of-type(3) dt {
	display: none;
} 
#staff .staffcast-list div:nth-of-type(3) dd {
	font-size: 1.4rem;
	font-weight: 400;
} 
#cast {
	margin-bottom: 30px;
}
#cast .staffcast-list div {
	width: 50%;
}
#cast h3 {
	display: inline-block;
	width: 8em;
	font-size: 1.8rem;
	color: var(--mainColor);
	border: solid 1px var(--mainColor);
	padding: .1em 0;
	margin-bottom: 2em;
}
#cast h3:last-of-type {
	margin-top: 3em;
}
.staffcast-list dt {
	color: #FF5457;
}
.staffcast-list dd {
	font-size: 1.8rem;
}

/*-----------------------------------------------
 * footer
-------------------------------------------------*/
footer {
	background-image: url(../img/footer_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 60px 0 35px;
	text-align: center;
	position: relative;
}
#page-top {
	position: absolute;
	top: -20px;
	left: calc((100% - 45px) / 1.1);
}
#page-top a {
	position: relative;
	display: block;
	width: 45px;
	height: 45px;
	background-color: #fff;
	border-radius: 100px;
	border: solid 4px #1A1A1A;
}
#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 #1A1A1A 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(120px, 20%, 250px);
	margin: 8px 12px;
}
@media screen and (min-width:768px){ 
	.lower-logo {
		margin: 8px 32px;
	}
}

.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 {
	margin-bottom: 80px;
}
.wp-pagenavi {
	text-align: center;
}
.wp-pagenavi .current,
.wp-pagenavi .page {
	padding: .5em 1em;
	margin: 0 7px;
	border: solid 1px var(--btnColor);
	border-radius: 5px;
}
.wp-pagenavi .current {
	color: var(--btnTxtColor);
	background-color: var(--btnColor);
}
.wp-pagenavi .page {
	color: var(--btnColor);
	background-color: var(--contentColor);
	text-decoration: none;
}
/*-----------------------------------------------
 * NEWS DETAIL
-------------------------------------------------*/
#news-detail article,
#onair section,
#music section,
#special section,
.goods-detail-cont {
	background-color: var(--contentColor);
	border-radius: 5px;
	padding: 2em;
	margin-bottom: 80px;
}
.article-title {
	border-bottom: solid 1px var(--txtColor);
  padding-bottom: 1em;
  margin-bottom: 2em;
}
.article-title h3 {
	font-size: 2.1rem;
	font-weight: 700;
}
.article-content figure {
	margin-bottom: 1.5em;
}
.article-content p {
	margin-bottom: 1em;
}
.lower .more-btn a {
	position: static;
	margin-left: calc((100% - 250px) / 2);
}
.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(--mainColor);
	background-color: var(--contentColor);
	border: solid 1px var(--mainColor);
	border-radius: 5px;
	text-decoration: none;
	padding: .4em 1em .6em;
	margin: 0 7px 10px;
}
.js-nav-list.active {
	background-color: var(--mainColor);
	color: #fff;
}
.story-title {
	font-family: var(--headFont);
	font-weight: 700;
	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 {
	margin-bottom: 2.5em;
}
.js-story-slider .slick-list {
	margin-bottom: 1em;
}
.js-story-slider .slick-dots {
	position: static;
}
.js-story-slider .slick-dots li {
	width: 230px;
	height: 130px;
	margin: 0 7px;
	filter: brightness(.7);
	transition: var(--speed);
}
.js-story-slider .slick-dots li:hover,
.js-story-slider .slick-dots li.slick-active {
	filter: brightness(1);
}
.story-txt-area {
	background-color: var(--contentColor);
	border-radius: 5px;
	text-align: left;
	padding: 2em;
	margin-bottom: 2em;
}
.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-detail,
.streaming-detail {
	font-size: 2.1rem;
	margin-bottom: 1.5em;
}
.cont-h3 {
	font-size: 6rem;
	font-family: var(--headFont);
	color: var(--mainColor);
	margin-bottom: .2em;
}
.streaming-list:not(:last-of-type) {
	margin-bottom: 2.5em;
}
.onair-list div {
	display: flex;
	margin-bottom: .5em;
}
.onair-list dt {
	width: 20%;
	color: var(--subColor);
}
#onair h4 {
	color: var(--subColor);
}
.onair-point {
	display: inline-block;
	background-color: var(--mainColor);
	color: #fff;
	padding: 0 .6em .1em;
	border-radius: 5px;
	margin-top: .5em;
}
.ondemand-list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 1.5em;
}
.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(--subColor);
	padding: .7em;
	margin: .2em;
	position: relative;
}
.ondemand-list a::after {
	content: '';
	display: inline-block;
  width: 15px;
  height: 15px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background-color: var(--subColor);
  position: absolute;
  right: 0;
  bottom: 0;
}
.ondemand-list a:hover {
	color: #fff;
	background-color: var(--subColor);
}
.nolink {
	border-color: var(--txtColor);
}
.icon-only::before {
	content: '独占';
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	font-size: 1.8rem;
	background-color: var(--mainColor);
	color: #fff;
	border-radius: 50%;
	position: absolute;
	top: -15px;
	left: -15px;
}
/*-----------------------------------------------
 * MUSIC
-------------------------------------------------*/
.music-detail .music-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 1.5em;
}
.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,
.goods-info-inner dt {
	width: 6.5em;
	background-color: var(--subColor);
	color: #fff;
	border-radius: 2px;
	text-align: center;
}
.music-staffList dd {
	width: calc(100% - 6.5em);
	padding-left: 1em;
}
.music-inner {
	font-size: 2.1rem;
	margin-bottom: 1.5em;
}
.music-karaoke .ondemand-list {
	margin-top: 0;
}
.music-karaoke .ondemand-list div {
	width: 50%;
	display: flex;
	align-items: center;
}
.music-karaoke .ondemand-list dt {
	width: 40%;
}
.music-karaoke .ondemand-list dd {
	padding-left: 1em;
}
/*-----------------------------------------------
 * GOODS
-------------------------------------------------*/
.goods-nav {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 2.5em;
}
.goods-nav li {
	width: calc(100% / 4);
}
.goods-nav a {
	display: block;
	background-color: var(--contentColor);
	color: var(--mainColor);
	border: solid 1px var(--mainColor);
	border-radius: 5px;
	text-decoration: none;
	text-align: center;
	padding: .7em;
	margin: .2em;
}
.goods-nav a.active {
	background-color: var(--mainColor);
	color: #fff;
}
.goods-list {
	display: flex;
	flex-wrap: wrap;
}
.goods-list-item {
	width: calc(100% / 3);
}
.goods-list-item a {
	display: block;
	height: calc(100% - 1em);/* margin分を引く */
	text-decoration: none;
	margin: .5em;
}
.goods-list-img {
	/* PC以上ではcontent内はwidth:1000px */
	height: calc((1000px / 3) - 1em );
	background-color: #fff;
	border: solid 2px var(--subColor);
}
.goods-list-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.goods-list-title {
	height: calc(100% - (1000px / 3 - 1em )); /* 画像の高さ分を引く */
	background-color: var(--subColor);
	color: #fff;
	padding: .5em .7em;
	border: solid 2px var(--subColor);
	border-top: none;
}
/*-----------------------------------------------
 * GOODS DETAIL
-------------------------------------------------*/
.goods-detail-inner {
	margin-bottom: 2em;
}
.goods-detail-inner + .benefit {
	margin-top: 5em;
}
.goods-title {
	font-size: 2.1rem;
	font-weight: 700;
	border-bottom: solid 1px var(--txtColor);
	padding-bottom: .8em;
	margin-bottom: 1.5em;
}
.goods-info {
	display: flex;
	flex-wrap: wrap;
}
.goods-img {
	width: 45%;
}
.goods-info-inner {
	width: 55%;
	padding-left: 2em;
}
.goods-release {
	font-size: 2.1rem;
	font-weight: 700;
	color: var(--mainColor);
	margin-bottom: 1em;
}
.goods-info-list div {
	margin-bottom: 1em;
}
.goods-info-list .horizontal {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
.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: 2.1rem;
	font-weight: 700;
	text-align: center;
  background-color: var(--mainColor);
  color: #fff;
  padding: 1em;
  border-radius: 3px;
  margin-bottom: 3em;
}
.shop {
	border-bottom: solid 1px var(--subColor);
	padding-bottom: 3em;
	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: 700;
	background-color: var(--subColor);
	color: #fff;
	border-radius: 2px;
	padding: .1em 1em;
	margin-bottom: 1em;
}
.benefit-list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 2em;
}
.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-top: 3em;
} 

/*-----------------------------------------------
 * special
-------------------------------------------------*/
.present-txt {
	font-size: 2.1rem;
	margin-bottom: 1.5em;
}
.cont-h4 {
	font-size: 2.8rem;
	font-family: var(--headFont);
	color: var(--subColor);
	margin-bottom: .2em;
}
.icon-present-detail{
  padding: 0 0 40px 0;
  box-sizing: border-box;
}
ul.download-area{
  display: flex;
  flex-wrap: wrap;
}
ul.download-area li.icon-box{
  width: calc(100% / 4);
  padding: 10px;
  box-sizing: border-box;
  margin: 0 0 20px 0;
}
.icon-image-area img{
  width: 100%;
  border-radius: 200px;
  border: 1px solid rgba(0, 0, 0, .04);
}
a.download-btn{
  display: block;
  width: 100%;
  padding: .22em .2em .3em;
  box-sizing: border-box;
  margin: 10px 0 0;
  background-color: var(--btnColor);
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  font-size: 2.05rem;
}
a.download-btn span{
  padding: 0 2px 0 0;
  box-sizing: border-box;
  vertical-align: text-bottom;
}
a.download-btn span img{
  width: 11%;
  vertical-align: middle;
}


@media screen and (min-width:768px){ 
	body,
	.header-inner {
		min-width: 1200px;
	}
	.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;
	}

	/*-----------------------------------------------
	 * GOODS DETAIL
	-------------------------------------------------*/
	.has-btn .more-btn a,
	.shop .more-btn a {
		margin-left: 0;
	}
}

@media screen and (max-width:767px){ 
	html { 
		font-size: 52%;
	}
	body::before {
		background-image: url(../img/com_bg_s.jpg);
	}
	.body-fix {
		overflow: hidden;
	}
	.sp { display: block; }
	.pc { display: none; }
	/* ScrollBar Setting */
	::-webkit-scrollbar {
		width: 3px;
		height: 3px;
	}
	/*-----------------------------------------------
	 * header
	-------------------------------------------------*/
	.js-menu {
		max-width: 50px;
	}
	.menu-logo {
		width: 60vw;
		margin: 10px auto;
	}
	.header-inner {
		background-image: url(../img/com_bg_s.jpg);
	}
	.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
	-------------------------------------------------*/
	#js-loading {
		background-image: url(../img/com_bg_s.jpg);
	}
	.loading-logo picture {
		width: 90vw;
	}
	.langSwitch {
		right: 60px;
	}
	.kvArea {
		margin-bottom: 30px;
	}
	.kv {
		width: 100%;
	}
	.title-logo {
		width: 140px;
		top: 8px;
		left: 0;
	}
	.top-onair {
		top: 106.5vw;
	}
	.bannerArea {
		position: static;
		margin-top: 20px;
	}
	.banner-list {
		padding: 0 20px;
	}
	.banner-lists .slick-dots li button:before {
		content: "";
		height: 6px;
		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;
	}

	
	/* PV */
	#pv {
		height: 180px;
	}
	.cont-h2 {
		font-size: 5.5rem;
	}	
	#pv .cont-h2 {
		text-align: left;
		top: 0;
		padding-left: 15px;
	}
	.play {
		top: calc((100% - 50px) / 2);
		left: calc((100% - 50px) / 2);
	}
	.play svg {
		width: 50px;
		height: 50px;
	}
	.play::before {
		margin-top: -12px;
		margin-left: -8px;
		border-width: 12px 0 12px 22px;
	}
	#js-close {
		top: auto;
		right: calc((100% - 80px) / 2);
		bottom: 20vh;
	}
	#js-pv-modal {
		background-image: url(../img/com_bg_s.jpg);
	}
	/* UPDATE */
	#update {
		width: 100%;
		flex-wrap: wrap;
	}
	#update section {
		width: 100%;
	}
	#update .cont-h2 {
		margin: 30px auto .2em;
	}
	.news-inner,
	.twitter-inner {
		width: calc(100% - 30px);
		padding-bottom: 140px;
	}
	.more-btn a {
		bottom: 50px;
	}
	/* INTRODUCTION */
	#character,
	#staffcast,
	#comic {
		padding: 50px 15px;
	}
	#introduction {
		padding: 50px 15px 260px;
	}
	#introduction {
		font-size: 1.8rem;
		background-image: url(../img/intro_bg_s.jpg);
	}
	.intro-inner {
		width: calc(100% - 50px);
	}
	.intro-txt-em {
		font-size: 2.7rem;
	}
	/* CHARACTER */
	#js-chara-slider {
		flex-wrap: wrap;
	}
	#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;
	}
	#character .slick-list {
		width: 100%;
	}
	.full-body {
		width: 90%;
		position: static;
		margin: auto;
	}
	.char-detail {
		position: relative;
		z-index: 1;
		padding: 20px;
		margin-top: -150px;
		-webkit-backdrop-filter: blur(3px);
		backdrop-filter: blur(3px);
	} 
	.chara-info {
		text-shadow: 0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 10px #fff,0 0 10px #fff,0 0 20px #fff,0 0 20px #fff,0 0 20px #fff,0 0 30px #fff,0 0 30px #fff;
	}
	.chara-face {
		margin-left: auto;
	}
	/* STAFF CAST */
	#staffcast {
		background-image: url(../img/staffcast_bg_s.jpg);
	}
	#staff {
		margin-bottom: 30px;
	}
	#staff .staffcast-list div {
		width: 50%;
		padding: 0 .5em;
	}
	#cast .staffcast-list div {
		padding: 0 .5em;
	}
	/*-----------------------------------------------
	 * footer
	-------------------------------------------------*/
	footer {
		background-image: url(../img/footer_bg_s.jpg);
	}
	.footer-banner ul {
		padding: 0 5px;
	}
	.jp ul {
		align-items: center;
	}
	#page-top {
		top: -18px;
		left: calc((100% - 40px) / 1.1);
	}
	#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,
	.goods-list {
		margin-bottom: 50px;
	}
	/*-----------------------------------------------
	 * NEWS DETAIL
	-------------------------------------------------*/
	#news-detail article,
	#onair section,
	#music section,
  #special section {
		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 {
		display: flex;
	}
	.js-story-slider .slick-dots li {
		width: auto;
		height: auto;
	}
	.js-story-slider .slick-dots li:first-of-type {
		margin-left: 0;
	}
	.js-story-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-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
	-------------------------------------------------*/
	.goods-nav li {
		width: 50%;
	}
	.goods-list-item {
		width: 50%;
	}
	.goods-list-img {
		height: calc((100vw - 30px) / 2 - 1em);
	}
	.goods-list-title {
		height: calc(100% - (((100vw - 30px) / 2 ) - 1em));
	}
	/*-----------------------------------------------
	 * GOODS DETAIL
	-------------------------------------------------*/
	.goods-title {
		font-size: 1.8rem;
	}
	.goods-img,
	.goods-info-inner,
	.benefit-img,
	.benefit-info {
		width: 100%;
	}
	.goods-info-inner,
	.benefit-info {
		padding-left: 0;
	}
	.goods-img,
	.benefit-img {
		margin-bottom: 1.5em;
	}
	.shop-name {
		margin-bottom: .2em;
	}
	.goods-detail-inner + .benefit {
		margin-top: 2em;
	}
	.benefit-title {
		margin-bottom: 2em;
	}
	.benefit-info {
		order: -1;
	}

  /*-----------------------------------------------
	 * SPECIAL
	-------------------------------------------------*/
  .special-cont h3.cont-h3 {
		line-height: 1.4;
	}
  ul.download-area li.icon-box{
    width: calc(100% / 2);
    padding: 8px;
  }
}

/* style overwrite */
#introduction .cont-h2 {
	background: #fff;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.snap_bg_1 {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 400px;
	animation: sway 2s infinite alternate;
}

.snap_bg_2 {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 340px;
	animation: sway 2s infinite alternate;
}

@keyframes sway {
  0% {
    transform: translateX(0); /* 初期位置 */
  }
  50% {
    transform: translateX(20px); /* 右に10px移動 */
  }
  100% {
    transform: translateX(0); /* 初期位置に戻る */
  }
}

@media screen and (max-width:768px){ 
	.snap_bg_1 {
		width: 240px;
		z-index: 2;
	}

	.snap_bg_2 {
		width: 200px;
		z-index: 1;
	}
}

.full-body{
	-webkit-mask: url(../img/mask-3.png) repeat-x 0 0 / auto 300%; 
	mask: url(../img/mask-3.png) repeat-x 0 0 / auto 300%;
	-webkit-transition: -webkit-mask-position 1.3s ease .2s;
	transition: mask-position 1.3s ease .2s; 
}
.slick-current .full-body {
	-webkit-mask-position: 0 100%;
	mask-position: 0 100%;
}

#comic img {
	display: block;
	margin: 0 auto;
}

@media screen and (min-width:768px){ 
	#comic img {
		width: 70%;
	}
}

.menuList_disable {
	opacity: 0.5;
	pointer-events: none;
}