@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: #fff;
	--mainColor: #FF3FF9; /* 見出しカラー */
	--subColor: #3EB8FF; /* character CV、リンクテキストカラー */
	--btnColor: #77FF5E; /* ボタンbgカラー */
	--btnTxtColor: #000; /* ボタンテキストカラー */
	--contentColor: rgba(0,0,0,.3); /* character背景等　透過背景 */
	--contentColor0: rgba(255,255,255,0); /* Storyタイトルの透過帯用 */
	--bgColor: #000; /* ローディングアニメちらつき防止用 com_bg.jpgに近い色を設定 */


	/* font */
	--mainFont: "M PLUS 1p", sans-serif;
	--headFont: "Noto Sans JP", sans-serif; /* 見出し用、フォントによってfont-sizeやmargin-bottomの調整が必要かもしれません */

	/* 変化速度 */
	--speed: all, .3s, ease, .3s;

	/* ボーダー */
	--border: solid 2px #FF3FF9; /* 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: 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/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:  430px;
	position: absolute;
}
.title-logo.jp {
	width:  150px;
	top: 50px;
	left: 80px;
}
.top-onair {
	max-width: 800px;
	position: absolute;
	top: 500px;
	right: 0;
}
.bannerArea {
	position: absolute;
	top: 300px;
	left: 30px;
}
.bannerArea.jp {
	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-family: var(--headFont);
	color: var(--mainColor);
	text-align: center;
}
#pv .cont-h2 {
	width: 100%;
	text-align: center;/* positionだと綺麗に中央にならなかったのでテキストで中央指定 */
	color: #fff;
	position: absolute;
	top: 20px;
	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;
	border-image: linear-gradient(135deg, #FF3FF9, #3EB8FF) 1;
}
.news-list:first-of-type {
	border-top: solid 1px;
	border-image: linear-gradient(135deg, #FF3FF9, #3EB8FF) 1;
}
.news-list a {
	display: block;
	padding: 2.5em .8em;
	font-weight: 700;
	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;
	font-weight: 700;
	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 {
	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;
	border-top: var(--border);
	border-bottom: var(--border);
}
#introduction .cont-h2 {
	margin-bottom: .2em;
}
.intro-inner {
	max-width: 800px;
	margin: 0 auto 1.5em;
	text-shadow: 0 0 7px #000;
}
.intro-txt-em {
	font-family: var(--headFont);
	display: block;
	font-size: 3.2rem;
	color: var(--subColor);
	margin-bottom: 1.5em;
}

/* 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: #000;
	border: solid 1px var(--btnColor);
	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: var(--btnColor);
}
#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);
	border: 2px solid;
	border-image:  linear-gradient(135deg, #FF3FF9, #3EB8FF) 1;
	padding: 30px 30px 30px 430px;
	margin-top: 80px;
}
.chara-name {
	font-family: var(--headFont);
	font-size: 3.6rem;
	color: var(--subColor);
	margin-bottom: .5em;
}
.chara-cv {
	font-family: var(--headFont);
	font-size: 2.1rem;
	color: var(--subColor);
	margin-bottom: 1em;
}
.chara-txt {
	margin-bottom: 1em;
	text-shadow: 0 0 7px #000;
}
.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;
	border-top: var(--border);
}
#staffcast .cont-h2 {
	margin-bottom: .5em;
}
#staff {
	margin-bottom: 80px;
}
.staffcast-list {
	display: flex;
	flex-wrap: wrap;
	max-width: 800px;
	margin: auto;
	text-shadow: 0 0 7px #000;
}
#cast .staffcast-list {
	max-width: 600px;
}
.staffcast-list div {
	margin-bottom: 2em;
}
#staff .staffcast-list div {
	width: calc(100% / 3);
}
#staff .staffcast-list div:first-of-type {
	width: 100%;
} 
#cast {
	margin-bottom: 30px;
}
#cast .staffcast-list div {
	width: 50%;
}
#cast h3 {
	display: inline-block;
	width: 8em;
	font-size: 1.8rem;
	color: #fff;
	border: solid 1px #fff;
	padding: .1em 0;
	margin-bottom: 2em;
}
#cast h3:last-of-type {
	margin-top: 3em;
}
.staffcast-list dt {
	color: var(--subColor);
	font-family: var(--headFont);
}
.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) / 2);
}
#page-top a {
	position: relative;
	display: block;
	width: 45px;
	height: 45px;
	background-color: #000;
	border-radius: 100px;
	border: solid 4px var(--btnColor);
}
#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(--btnColor) 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);
}
.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;
	border-image:  linear-gradient(135deg, #FF3FF9, #3EB8FF) 1;
	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(--subColor);
	background-color: var(--contentColor);
	border: solid 1px var(--subColor);
	border-radius: 5px;
	text-decoration: none;
	padding: .4em 1em .6em;
	margin: 0 7px 10px;
}
.js-nav-list.active {
	background-color: var(--subColor);
	color: #000;
}
.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 {
	font-weight: 700;
	color: var(--subColor);
}
.onair-point {
	display: inline-block;
	background-color: var(--mainColor);
	color: #000;
	font-weight: 700;
	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);
	color: var(--btnColor);
	border: solid 1px var(--btnColor);
	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(--btnColor);
  position: absolute;
  right: 0;
  bottom: 0;
}
.ondemand-list a:hover {
	color: #000;
	background-color: var(--btnColor);
}
.nolink {
	color: var(--txtColor);
	border-color: var(--txtColor);
}
.icon-only::before {
	content: '独占';
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	font-size: 1.8rem;
	font-weight: 700;
	background-color: var(--mainColor);
	color: #000;
	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: #000;
	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(--subColor);
	border: solid 1px var(--subColor);
	border-radius: 5px;
	text-decoration: none;
	text-align: center;
	padding: .7em;
	margin: .2em;
}
.goods-nav a.active {
	background-color: var(--subColor);
	color: #000;
}
.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: #000;
	border: solid 2px var(--btnColor);
}
.goods-list-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.goods-list-title {
	height: calc(100% - (1000px / 3 - 1em )); /* 画像の高さ分を引く */
	background-color: var(--btnColor);
	color: #000;
	padding: .5em .7em;
	border: solid 2px var(--btnColor);
	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: #000;
  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: #000;
	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: #000;
	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;
}

/*-----------------------------------------------
 * CAMPAIGNS
-------------------------------------------------*/
/* footer-cp */
footer.cp .logo {
	margin: auto;
	width: 300px;
}

/* cp1 */
#cp1.lower {
	position: relative;
	padding: 0;
	width: 100%;
	background: #000;
}

#cp1.lower::before {
	content: "";
	position: fixed;
	bottom: 0;
	display: block;
	width: 100%;
	height: 70%;
	background-image: url(../img/cp/cp_bg_1.jpg);
	background-size: 100%;
	background-position: bottom;
	background-repeat: no-repeat;
}

#cp1.lower article{
	position: relative;
	z-index: 1;
	margin:auto;
	padding: 80px 0;
	max-width: 500px;
	background: #000;
}

#cp1 .count {
	margin: 0 auto 20px;
	font-size: 20px;
	text-align: center;
}

#cp1 .intro {
	text-align: center;
}

#cp1 .intro .logo {
	margin: 30px auto;
	width: 90%;
}

#cp1 .intro p {
	margin: 20px;
	font-size: 24px;
}

#cp1 .intro span {
	color: #000;
	font-size: 1.5em;
	font-weight: 700;
	-webkit-text-stroke: 4px #FFF564;
	paint-order: stroke;
	text-shadow: 0px 0px 15px #FFF564;
}

#cp1 .next {
	display: block;
	margin: 20px;
	padding: 0.7em;
	color: #000;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	background: #FFF564;
	border-radius: 5px;
}

#cp1 .link_af {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 50px 20px 20px;
	padding: 0.7em;
	color: #fff;
	text-align: center;
	text-decoration: none;
	border: 1px solid #fff;
	border-radius: 5px;
}

/* cp2 */
#cp2.lower {
	position: relative;
	padding: 0;
	width: 100%;
	background: #000;
}

#cp2.lower::before {
	content: "";
	position: fixed;
	bottom: 0;
	display: block;
	width: 100%;
	height: 70%;
	background-image: url(../img/cp/cp_bg_2.jpg);
	background-size: 100%;
	background-position: bottom;
	background-repeat: no-repeat;
}

#cp2.lower article {
	position: relative;
	z-index: 1;
	margin:auto;
	padding: 80px 0;
	max-width: 500px;
	background: #000;
}

#cp2 h2 .img_wrapper {
	margin: auto;
	width: 90%;
}

#cp2 .scene {
	margin: 200px auto;
	position: relative;
}

#cp2 .dialogue1,
#cp2 .dialogue2,
#cp2 .dialogue3,
#cp2 .dialogue4,
#cp2 .dialogue5
 {
	position: absolute;
}

#cp2 .dialogue1,
#cp2 .dialogue3
 {
	width: 100px;
	top: -130px;
	right: 20px;
}

#cp2 .dialogue2 {
	width: 100px;
	bottom: -130px;
	left: 20px;
}

#cp2 .dialogue4 {
	width: 100px;
	bottom: -200px;
	left: 20px;
}

#cp2 .dialogue5 {
	width: 100px;
	bottom: -130px;
	right: 20px;
}

#cp2 h3 {
	margin: 20px;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}

#cp2 ul {
	padding: 15px;
	background: #737583;
	display: grid;
	gap: 10px;
	grid-template-columns: 1fr 1fr;
}

#cp2 li img {
	width: 100%;
	aspect-ratio: 300 / 290;
}

#cp2 li a:hover {
	opacity: 1;
	filter: brightness(1.5);
}

/* result */
#result.lower {
	position: relative;
	padding: 0;
	width: 100%;
	background: #000;
}

#result.lower::before {
	content: "";
	position: fixed;
	bottom: 0;
	display: block;
	width: 100%;
	height: 70%;
	background-image: url(../img/cp/cp_bg_2.jpg);
	background-size: 100%;
	background-position: bottom;
	background-repeat: no-repeat;
}

#result.lower article {
	position: relative;
	z-index: 1;
	margin:auto;
	padding: 0 0 80px;
	max-width: 500px;
	background: #000;
}

#result section {
	margin: 40px 0;
}

#result section:first-child {
	margin: 0;
}

.resultOp video {
	width: 100%;
}

#result h2 {
	margin: 20px auto;
	font-size: 30px;
	font-weight: 700;;
	text-align: center;
}

#result h2 span {
	padding: 0 10px;
	color: #000;
	font-size: 1.5em;
	background: #FF3FF9;
}

#result p {
	margin: 20px;
	font-size: 24px;
	text-align: center;
}

#result h3 {
	margin: 20px;
	color: #FFF564;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}

#result .profile {
	margin: 50px auto;
	width: 80%;
}

.thumbnail {
	margin: 20px;
}

.thumbnail img {
	border: 2px solid #fff;
	border-image: linear-gradient(115deg, #3EB8FF, #FF3FF9) 1;
}

#result .link_af {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px;
	padding: 1.5em;
	color: #000;
	font-size: 24px;
	font-weight: 700;;
	text-align: center;
	background: #FFF564;
	border-radius: 5px;
	text-decoration: none;
}

#result .back {
	display: block;
	margin: 50px 20px 20px;
	padding: 0.7em;
	color: #fff;
	text-align: center;
	border: 1px solid #fff;
	border-radius: 5px;
	text-decoration: none;
}

@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;
	}
	.title-logo.jp {
		width: 70px;
		top: 20px;
		left: 20px;
	}
	.top-onair {
		top: 106.5vw;
	}
	.bannerArea,
	.bannerArea.jp {
		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: center;
		top: 0;
	}
	.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 */
	#introduction,
	#character,
	#staffcast {
		padding: 50px 15px;
	}
	#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.4rem;
	}
	/* 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) / 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,
	.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;
  }

  /*-----------------------------------------------
 	* CAMPAIGNS
	-------------------------------------------------*/
	/* cp1 */
	#cp1 .intro p {
		font-size: 20px;
	}

	/* result */
	#result h2 {
		font-size: 22px;
	}
	#result p {
	font-size: 18px;
	}
	#result h3 {
		font-size: 16px;
	}
	#result .link_af {
		font-size: 18px;
	}
}

