@charset "utf-8";

html, body {
  width:100%;
  height:auto;
  min-height:100%;
  background: #fff;
	font-family: "游明朝",YuMincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝E","メイリオ",Meiryo,sans-serif;
  /*font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;*/
	font-size: 14px;
	line-height: 1.75;
}

a,
a img {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
	outline: none;
	text-decoration: none;
}

img {
	display: block;
	width: 100%;
}

.pc {
	display: block;
}
.sp {
	display: none;
}

@media only screen and (max-width:800px) {
	html, body {
		font-size: 13px;
	}
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
}



.wrapper {
	position: relative;
  width:100%;
  min-height:100vh;
	z-index: 0;
}

.inner {
	width: 94%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 3% 0 2%;
}

@media only screen and (max-width:800px) {
	.inner {
		width: 94%;
		max-width: 1000px;
		margin: 0 auto;
		padding: 8% 0 7%;
	}
}


header {
	position: relative;
	width: 100%;
	/*max-width: 1600px;*/
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
}

.mv {
	width: 100%;
	margin: 0;
}

.academy {
	position: absolute;
	top: -2.5%;
	left: 35%;
	width: 67%
}

.gg {
	position: absolute;
	top: 13%;
	left: 56%;
	width: 41%
}

.bn_online {
	position: absolute;
	top: 2%;
	left: 1.25%;
	width: 15%;
	transition: 0.25s;
}
.bn_online:hover {
	transform: scale(1.1);
}

header h1 {
	position: absolute;
	/* top: 22%; */
	top: 20%;
	left: 59%;
	width: 32%;
}

header h2 {
	position: absolute;
	top: 22%;
	left: 41%;
	width: 4.25%;
}

.roadshow {
	position: absolute;
	/* top: 54%; */
	top: 50%;
	left: 61%;
	width: 28%;
}

.menuWrap {
	position: absolute;
	/* top: 64%; */
	top: 59%;
	left: 56.5%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 38%;
}

.menu {
	position: relative;
	display: block;
	width: 48%;
	line-height: 2.75em;
	letter-spacing: 0.2em;
	color: #bf890a;
	font-family: 'Vidaloka', serif;
	font-size: 22px;
	text-align: center;
	border:1px solid #bf890a;
}

.menu .text {
	position: relative;
  color: #bf890a;
  -webkit-transition: color .25s linear;
  transition: color .25s linear;
	z-index: 2;
}
.menu .border, .menu .top, .menu .left, .menu .bottom, .menu .right {
  transition: all .15s ease-out;
  -webkit-transition: all .15s ease-out;
  background-color: #bf890a;
  position: absolute;
}
.menu .top, .menu .left {
  left: 0;
  top: 0;
}
.menu .bottom, .menu .right {
  right: 0;
  bottom: 0;
}
.menu .right, .menu .left {
  width: 2px;
  height: 0%;
}
.menu .bottom, .menu .top {
  height: 2px;
  width: 0%;
}
.menu::after {
  content: '';
  transition: all .25s ease-out;
  -webkit-transition: all .25s ease-out;
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  width: 0px;
  height: 0px;
  background-color: #bf890a;
}
.menu:hover .text {
  color: #fff;
}
.menu:hover > .bottom, .menu:hover .top {
  width: 100%;
}
.menu:hover > .right, .menu:hover .left {
  height: 100%;
}
.menu:hover::after {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.mv-tw {
	position: absolute;
	top: 15px;
	left: 15px;
	display: block;
	width: 70px;
	transition: 0.25s;
}
.mv-tw:hover {
	transform: scale(1.1);
}

.tw {
	position: absolute;
	top: 69.5%;
	left: 73%;
	display: none;
	width: 5%;
	transition: 0.25s;
}
.tw:hover {
	transform: scale(1.1);
}

.maincast {
	position: absolute;
	/* top: 80%; */
	top: 67%;
	left: 64.75%;
	width: 22%;
}

.caststaff {
	position: absolute;
	/* top: 90%; */
	top: 77%;
	left: 62.75%;
	width: 26%;
}

.mv-banner {
	position: absolute;
	top: 85.5%;
	left: 27%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
  align-items: baseline;
	width: 70%;
}

.mv-banner-item {
	width: 20%;
	margin: 0 1%;
}
.mv-banner-item:last-of-type {
  width: 40%;
}
.mv-banner-item img {
	transition: 0.25s;
}

.mv-banner-item:hover img {
	opacity: 0.8;
}

.grd {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 150%;
	background: rgb(255,255,255);
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 70%, rgba(255,255,255,0) 100%);
	z-index: 3;
}

@media only screen and (max-width:1600px) {
	.menu {
		font-size: 1.25vw;
	}
}

@media only screen and (max-width:800px) {	
	header {
		width: 100%;
		min-width: 100%;
		padding: 74% 0 0;
	}
	
	.mv {
		margin: -106% 0 0;
	}

	.academy {
		position: absolute;
		top: -2%;
		left: -8%;
		width: 118%
	}
	
	.gg {
		position: absolute;
		top: 6.25%;
		left: 1.75%;
		width: 96.5%
	}
	
	.bn_online {
		position: absolute;
		top: 17.5%;
		left: 19%;
		width: 62%;
	}
	.bn_online:hover {
		transform: scale(1);
	}

	header h1 {
		position: relative;
		top: 0;
		left: 0;
		width: 75%;
		margin: -5% auto 0;
	}

	header h2 {
		position: absolute;
		top: 23.5%;
		/*top: 29%;*/
		left: 76%;
		width: 9%;
	}

	.roadshow {
		position: relative;
		top: 0;
		left: 0;
		width: 78%;
		margin: 5% auto;
	}
	
	.menuWrap {
		position: relative;
		top: 0;
		left: 0;
		width: 72%;
		margin: 10% auto 1%;
	}

	.menu {
		margin: 1% auto;
		font-size: 3.5vw;
		line-height: 3.25em;
	}
	
	.tw {
		display: block;
		position: relative;
		top: 0;
		left: 0;
		width: 18%;
		margin: 0 auto 5%;
	}
	.tw:hover {
		transform: scale(1);
	}

	.mv-tw {
		display: none;
	}

	.maincast {
		position: relative;
		top: 0;
		left: 0;
		width: 68%;
		margin: 5% auto;
	}

	.caststaff {
		position: relative;
		top: 0;
		left: 0;
		width: 78%;
		margin: 5% auto;
	}

	.mv-banner {
		position: relative;
		top: auto;
		left: auto;
		justify-content: center;
		width: 100%;
		margin: 0 0 10% 0;
	}
	
	.mv-banner-item,
  .mv-banner-item:last-of-type {
		width: 64%;
    margin: 10px 0;
		/* margin: 0 10px; */
	}

}

.ft {
	background: #fff;
}

.billing {
	width: 80%;
	margin: 5% auto 0;
}


@media only screen and (max-width:800px) {
	/*h3 {
		width: 86%;
		margin: 0 auto;
	}*/

	.billing {
		width: 94%;
		margin: 5% auto 0;
	}
}


nav {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 1.5em 0;
	background: #8c0d75;
}

nav a {
	position: relative;
	display: inline-block;
	padding: 0 1.5em;
	font-family: 'Vidaloka', serif;
	font-size: 20px;
	color: #fff;
	border-left: 1px solid #bf890a;
}
nav a:first-of-type {
	border: none;
}
nav a::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 0;
	height: 100%;
	background: rgba(0,0,0,.5);
	transition: .25s;
	z-index: 1;
}
nav a:hover::after {
	width: 100%;
}
nav a p {
	position: relative;
	z-index: 2;
}

section .wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

section h2 {
	font-family: 'Vidaloka', serif;
	font-size: 56px;
	font-weight: 400;
	text-align: center;
}

@media only screen and (max-width:800px) {
	nav {
		justify-content: flex-start;
		padding: 0 3%;
	}
	nav a {
		display: block;
		width: 43%;
		margin: 0 3.5%;
		padding: 0;
		text-align: center;
		font-size: 5vw;
		line-height: 2.5em;
		border-left: none;
		border-top: 1px solid #bf890a;
	}
	nav a:nth-of-type(1),
	nav a:nth-of-type(2) {
		border: none;
	}
	nav a::after {
		display: none;
	}
	section h2 {
		font-size: 8vw;
	}
}

.bnArea {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 1.5em 0;
	background: #8c0d75;
}

.bnArea a {
	position: relative;
	display: inline-block;
	margin: 0.5em 1em;
	width: 25%;
	max-width: 200px;
}
.bnArea a:hover {
	transform: scale(1.1);
}

@media only screen and (max-width:800px) {
	.bnArea a {
		width: 48%;
		margin: 0.25em 1%;
	}
	.bnArea a:hover {
		transform: scale(1);
	}
}


.review {
	position: relative;
	background: url("../img/full/review_bg_pc.jpg") center center no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.review h2 {
	position: absolute;
	top: 10%;
	right: 5%;
	width: 20%;
}

.review .wrap {
	width: 40%;
	margin: 0 0 0 5%;
	padding: 6% 0;
}

.review .wrap div:nth-of-type(1) {
	width: 40%;
	margin-left: 3%;
}
.review .wrap div:nth-of-type(2) {
	width: 30%;
	margin-top: 3%;
}
.review .wrap div:nth-of-type(3) {
	width: 34%;
	margin: -5% 0 0 41%;
}
.review .wrap div:nth-of-type(4) {
	width: 41%;
	margin-top: -5%;
}
.review .wrap div:nth-of-type(5) {
	width: 42%;
}
.review .wrap div:nth-of-type(6) {
	width: 36%;
	margin: -4% 0 0 34%;
}
.review .wrap div:nth-of-type(7) {
	width: 36%;
	margin-top: -3%;
}
.review .wrap div:nth-of-type(8) {
	width: 33%;
	margin-top: -3%;
}
.review .wrap div:nth-of-type(9) {
	width: 44%;
	margin: -4% 0 0 30%;
}
.review .wrap div:nth-of-type(10) {
	width: 37%;
	margin-top: -3%;
}
.review .wrap div:nth-of-type(11) {
	width: 40%;
	margin-top: -3%;
}


@media only screen and (max-width:800px) {
	.review {
		padding: 0 0 100%;
		background: url("../img/full/review_bg_sp.jpg") center top no-repeat;
		background-size: 100% auto;
		background-attachment: scroll;
	}

	.review h2 {
		position: relative;;
		top: 0;
		right: 0;
		width: 75%;
		margin: 18% auto 0;
	}

	.review .wrap {
		width: 90%;
		margin: 0 auto;
		padding: 16% 0 0;
	}

	.review .wrap div:nth-of-type(1) {
		width: 61%;
		margin-left: 0;
	}
	.review .wrap div:nth-of-type(2) {
		width: 45%;
		margin-top: -2%;
		margin-left: 55%;
	}
	.review .wrap div:nth-of-type(3) {
		width: 52%;
		margin: -2% 0 0 0;
	}
	.review .wrap div:nth-of-type(4) {
		width: 66.5%;
		margin-top: -2%;
		margin-left: 33.5%;
	}
	.review .wrap div:nth-of-type(5) {
		width: 62.5%;
		margin: -2% 0 0 0;
	}
	.review .wrap div:nth-of-type(6) {
		width: 55%;
		margin: -2% 0 0 45%;
	}
	.review .wrap div:nth-of-type(7) {
		width: 59%;
		margin-top: -2%;
	}
	.review .wrap div:nth-of-type(8) {
		width: 53%;
		margin: -2% 0 0 47%;
	}
	.review .wrap div:nth-of-type(9) {
		width: 67%;
		margin: -2% 0 0 0;
	}
	.review .wrap div:nth-of-type(10) {
		width: 59%;
		margin: -2% 0 0 41%;
	}
	.review .wrap div:nth-of-type(11) {
		width: 58.5%;
		margin-top: -2%;
	}
}


.intro {
	position: relative;
	background: #8c0d75;
}

.intro h2 {
	position: absolute;
	top: 2%;
	left: 10%;
	width: 85%;
}
.intro h2 div:nth-of-type(2){
	width: 72%;
	margin: 2% 0 0 28%;
}

.intro .ph {
	width: 50%;
}

.intro .sliderWrap {
	width: 50%;
	height: 75%;
	margin-top: 18%;
	padding: 0 5%;
}

.intro .slide {
	overflow: hidden;
	font-size: 18px;
	color: #fff;
}

.intro h3 {
	margin:0 0 1em;
	font-size: 125%;
	letter-spacing: -0.05em;
}

@media only screen and (max-width:1280px) {
	.intro .slide {
		font-size: 1.4vw;
	}
}

@media only screen and (max-width:800px) {
	.intro .ph {
		width: 100%;
	}
	
	.intro .sliderWrap {
		width: 100%;
		margin-top: 0;
		padding-bottom: 5%;
	}

	.intro h2 {
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		margin: 0 auto 5%;
		padding: 5% 0 0;
	}
	.intro h2 div:nth-of-type(1){
		width: 90%;
		margin: 0 auto;
	}
	.intro h2 div:nth-of-type(2){
		width: 100%;
		margin: 3% 0 0;
	}
	
	.intro .slide {
		font-size: 14px;
	}
	
}


.judy {
	position: relative;
	background: #000 url("../img/full/judy_bg_pc.jpg") left 75% center no-repeat;
	background-size: cover;
	background-attachment: fixed;
	overflow: hidden;
}

.judy .img {
	position: relative;
	width: 50%;
}

.judy .tx {
	position: absolute;
	top: 0;
	left: 8%;
	width: 48%;
	padding: 4%;
	box-sizing: border-box;
	color: #fff;
	font-size: 14px;
	line-height: 2;
	background: rgba(0,0,0,.8);
}

.judy h2 {
	margin: 0 0 1em;
	font-size: 20px;
	text-align: left;
}

@media only screen and (max-width:1400px) {
	.judy .tx {
		font-size: 1vw;
	}
}

@media only screen and (max-width:800px) {
	.judy {
		height: 230vw;
		background: #000 url("../img/full/judy_bg_sp.jpg") left 75% center no-repeat;
		background-size: 100% auto;
	}

	.judy .tx {
		top: 12%;
		left: 6%;
		width: 88%;
		height: 96vw;
		padding: 3%;
		font-size: 3vw;
		line-height: 2;
	}
	
	.judy h2 {
		font-size: 140%;
	}
}


.cast {
	position: relative;
	padding: 80px 0;
	color: #fff;
	background: #000;
}

.cast #canv {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	background-color: #000;
	background-image: url('../img/full/cast_bg_star2.jpg');
	background-repeat: no-repeat;
	background-position: center 0;
	background-size: cover;
	z-index: 1;
}

.cast .front {
	position: relative;
	z-index: 2;
}

.cast h2 {
	margin: 0 0 0.5em;
}

.cast .front > .wrap {
	width: 90%;
	max-width: 1280px;
	margin: 0 auto;
}

.cast .sizel {
	display: block;
	width: 32%;
	color: #fff;
}
.cast .sizes {
	width: 65.5%;
}
.cast .sizes > a {
	display: block;
	width: 48%;
	margin: 0 0 7.25%;
	color: #fff;
	text-decoration: none;
}

.cast a .ph {
	overflow: hidden;
}

.cast a .ph img {
	transition: 0.25s;
}
.cast a:hover .ph img {
	transform: scale(1.1);
}

.cast h3 {
	margin: 0.25em 0 0;
	font-size: 24px;
	font-weight: 400;
	line-heiht: 1em;
	text-align: center;
}
.cast .chara {
	margin: -0.5em 0 0;
	font-size: 12px;
	line-heiht: 1em;
}
.cast .en {
	font-family: 'Vidaloka', serif;
	font-size: 14px;
}

@media only screen and (max-width:1400px) {
	.cast h3 {
		font-size: 2vw;
	}
	.cast .chara {
		font-size: 0.9vw;
	}
	.cast .en {
		font-size: 1.2vw;
	}
}

@media only screen and (max-width:800px) {
	.cast {
		padding: 5% 0;
	}
	.cast .sizel {
		width: 60%;
		margin: 0 auto 5%;
	}
	.cast .sizes {
		width: 100%;
	}
	.cast h3 {
		font-size: 3vw;
		line-heiht: 1em;
	}
	.cast .chara {
		font-size: 1.25vw;
		line-heiht: 1em;
	}
	.cast .en {
		font-size: 1.75vw;
		line-heiht: 1em;
	}
}


.staff {
	position: relative;
	padding: 100px 0 22%;
	background-color: #fff;
	background-image: url('../img/full/staff_ph2.png'), url('../img/full/staff_bg1.jpg'), url('../img/full/staff_bg2.jpg');
	background-repeat: no-repeat, no-repeat, no-repeat;
	background-position: center bottom 2.5%, center top, center bottom 5%;
	background-size: 30% auto, 100% auto, 100% auto;
}

.staff h2 {
	color: #bf890a;
}

.staff .director,
.staff > .wrap {
	width: 90%;
	max-width: 1280px;
	margin: 0 auto;
	color: #231815;
}

.staff .director {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 5em;
	border-top: 1px solid #bf890a;
}
.staff .director dl {
	padding: 0;
}
.staff .director .ph {
	width: 25%;
}
.staff .director .tx {
	width: 72%;
	padding-top: 1em;
}

.staff h3 {
	margin: 0 0 1em;
	font-size: 24px;
	font-weight: 400;
	color: #bf890a;
}
.staff h3 p {
	display: inline-block;
	font-size: 70%;
}
.staff h3 .en {
	font-family: 'Vidaloka', serif;
	font-size: 58.4%;
}

.staff .wrap > div {
	width: 47%;
}

.staff dl {
	border-top: 1px solid #bf890a;
	margin-bottom: 5em;
	padding: 1em 0 0;
}

@media only screen and (max-width:800px) {
	.staff {
		padding: 5% 0 60%;
		background-image: url('../img/full/staff_ph2.png'), url('../img/full/staff_bg1.jpg'), url('../img/full/staff_bg2.jpg');
		background-repeat: no-repeat, no-repeat, no-repeat;
		background-position: center bottom 30px, center top, center bottom 50px;
		background-size: 70% auto, 100% auto, 100% auto;
	}
	
	.staff .director {
		margin-bottom: 0;
		border-top: 0;
	}
	.staff .director dl,
	.staff .director dt {
		width: 100%;
	}
	.staff .director .ph {
		width: 50%;
	}
	.staff .director .tx {
		width: 100%;
		padding-top: 1em;
	}
	.staff .director h3 {
		width: 100%;
	}
	.staff h3 {
		font-size: 4.5vw;
	}
	.staff dt h3 {
		font-size: 4.25vw;
	}
	
	.staff .wrap > div {
		width: 100%;
	}
	
	.staff dl {
		margin-bottom: 0;
	}
	.staff dt {
		position: relative;
		width: 100%;
		cursor: pointer;
	}
	.staff dt::after {
		content: "＋";
		position: absolute;
		top: 50%;
		right: 0;
		font-size: 4vw;
		color: #bf890a;
		transform: translateY(-50%);
	  -webkit- transform: translateY(-50%);
	}
	.staff dt.open::after {
		content: "－";
	}
	.staff dd {
		/*height: 0;
		overflow: hidden;
		transition: .5s;*/
		display: none;
	}
	.staff dt.open + dd {
		/*height: auto;*/
		padding: 0 0 1em;
	}
}






.modalWrap {
	display: none;
}

.profmodal {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 5%;
	box-sizing: border-box;
	background-color: #fff;
	background-image: url('../img/full/modal_bg1.jpg'), url('../img/full/modal_bg2.jpg');
	background-repeat: no-repeat, no-repeat;
	background-position: center top, center bottom;
	background-size: 100% auto, 100% auto;
}

.profmodal .ph {
	width: 35%;
}
.profmodal.yoko .ph {
	width: 42%;
}
.profmodal .tx {
	width: 60%;
}
.profmodal.yoko .tx {
	width: 54%;
}

.profmodal h1 {
	margin: 0;
	padding: 0;
	font-size: 24px;
	font-weight: 400;
	line-height: 1em;
}
.profmodal h2 {
	margin: 0.5em 0 0;
	padding: 0;
	font-size: 12px;
	font-weight: 400;
	line-height: 1em;
}
.profmodal h3 {
	margin: 1em 0 2em;
	padding: 0;
	font-family: 'Vidaloka', serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1em;
}


@media only screen and (max-width:800px) {
	.profmodal {
		display: block;
		min-height: 90vh;
		padding: 8% 5% 5%;
	}
	.profmodal .ph {
		width: 60%;
		margin: 0 auto 1em;
	}
	.profmodal.yoko .ph {
		width: 90%;
		margin: 0 auto 1em;
	}
	.profmodal .tx {
		width: 100%;
	}
	.profmodal.yoko .tx {
		width: 100%;
	}
	.profmodal h1,
	.profmodal h2,
	.profmodal h3 {
		text-align: center;
	}
}


/*-----------------------------------------
** streaming
-----------------------------------------*/

#streaming {
	padding:40px 0 30px;
  color: #fff;
  background: #8c0d75;
}
#streaming p.center{
	text-align: center;
	font-size: 24px;
	font-weight: bold;
}

ul.streaming-logo{
	padding: 0;
	letter-spacing: -.4em;
	text-align: center;
	width: 90%;
  max-width: 1400px;
	margin: 0 auto 0;
	font-size: 12px;
}
ul.streaming-logo li{
  margin: 0.8% 0.75% 0;
  padding: 0;
  width: 12.25%;
	display:inline-block;
	list-style:none;
	letter-spacing: normal;
}
ul.streaming-logo li a{
	margin:0;
	padding: 5px 0;
	width:100%;
	display:block;
	border:#ddd 1px solid;
	text-align:center;
	background:#fff;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
}
ul.streaming-logo img {
	display: block;
}
#streaming p{
  display: block;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
	letter-spacing: normal;
}
#streaming p.left{
	text-align: left;
}
#streaming p.right{
  margin: 0 auto 1em;
	text-align: right;
}

@media only screen and (max-width:800px) {
  ul.streaming-logo li{
    width: 18%;
  }
}

@media only screen and (max-width:640px) {
  ul.streaming-logo li{
    width: 23%;
  }
}

@media only screen and (max-width:480px) {
  ul.streaming-logo li{
    width: 31%;
  }
}