@charset "utf-8";

/* 共通パーツ */
html, body{
	width:100%;
	height:100%;
	font-family: 'Noto Sans JP', sans-serif;
}
html{overflow-y: scroll;font-size: 625%;}

a:link {color: #636363;text-decoration: none;}
a:visited {color: #636363;text-decoration: none;}
a:hover{cursor: pointer;text-decoration: none; color: #C2C2C2; transition: all .3s ease-out;}

.font-Serif{font-family: 'Noto Serif JP', serif;}
.both{clear:both;}
.block{display: block;}
.nodisp{
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	height: 0;
}
.nowrapEN{white-space: nowrap;}
.caution{
	padding-top: 10px;
    font-size: .12rem;
    line-height: 1.6em;
}
.center{text-align: center;}
.right{text-align: right;}
.strong{font-weight: 900;}
.underline{text-decoration: underline !important;}
.flexbox{
	position: relative;
	margin: 0 auto;
	display:-webkit-box;
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flexbetween{justify-content: space-between;}
.flexaround{justify-content: space-around;}
.flexcenter{justify-content:center;}
.flexstart{justify-content:flex-start;}
.flexaligncenter{align-items: center;}
.flexalignstart{align-items: flex-start;}
.flexalignend{align-items: flex-end;}
.flexstretch{align-content: stretch;}
.flexbox .box{
	position: relative;
	margin: 0;
	width: 100%;
	box-sizing: border-box;
}

img{
	max-width: 100%;
	height: auto;
    display: block;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
	image-rendering: auto;
}
/* chrome opera */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
	body {
		image-rendering: -webkit-optimize-contrast;
	}
}
svg {vertical-align:bottom;max-width: 100%;}
img[src$=".svg"] {width: 100%;}

iframe[name="google_conversion_frame"] { position: absolute; top: 0; }

body{
	position: relative;
	width: 100%;
	color: #1a1a1e;
	background-color: #ffffff;
	font-size: .14em;
	font-weight: 400;
	line-height: 1.7em;
	font-feature-settings: "halt" 1;
	word-wrap: break-word;
	z-index: -10;
}

section{
	position: relative;
	margin: 0 auto;
	padding: 0;
}

#wrap{position: relative;width: 100% !important; margin:0 auto; padding:0;overflow: hidden;opacity: 0;}
	
.MainWrap{
	position: relative;
	margin: 0 auto;
	opacity: 0;
	transition: opacity .5s ease-out;
}

/* nav */
nav{
	position: fixed;
	top:0;
	left: 0;
	transform: translateX(calc(100% + 20px));
	width: 100%;
	height: auto;
	min-height: 100vh;
	background: rgb(13,3,19);
	background: linear-gradient(0deg, rgba(13,3,19,1) 0%, rgba(230,24,116,1) 100%);
	opacity: .93;
	overflow-y: scroll;
	transition: all .2s ease-out;
	z-index: 1000;
}
nav.disp{transform:translateX(0);}
.navWrap{
	position: absolute;
	top:40%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
}
.nav{
	position: relative;
	margin: 0 auto;
	width: calc(100% - 80px);
}
.nav div{
	position: relative;
	margin: 0 auto 20px auto;
}
.navSns{
	position: relative;
	margin: 30px auto;
	width: calc(100% - 80px);
}
.navSns div{
	position: relative;
	margin: 0 25px 10px 0;
}
.nav div svg{height: 20px; width: auto;}
.navSns div img{width: 25px; height: auto;}
.nav div:last-child, .navSns div:last-child{margin: 0 0 10px 0;}
.nav div.Btnmovie, .nav div.Btnintro{cursor: pointer;}

/* menu */
.menubar{
	position: fixed;
	top:0;
	left: 0;
	height: 45px;
	width: 100%;
	background-color: #ffffff;
	z-index: 1999;
}
.menubar a{
	position: fixed;
	top:10px;
	left: 50%;
	transform: translateX(-50%);
	height: 25px;
	display: inline-block;
	width: auto;
}
.menubar a img{
	position: relative;
	height: 100%;
	width: auto;
}
.btn_menu{
	position: fixed;
	top:0;
	right: 0;
	display: block;
	padding: 12px 8px 0 8px;
	width: 28px;
	height: 32px;
    z-index: 2000;
    transition: all .3s ease-out;
	line-height: 1;
}
.btn_win{
	position: fixed;
	top:0;
	right: 0;
	display: block;
	padding: 12px 8px 0 8px;
	width: 28px;
	height: 32px;
    z-index: 19000;
    transition: all .3s ease-out;
	line-height: 1;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 30px;
  height: 18px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgb(238,7,121);
  background: linear-gradient(90deg, rgba(238,7,121,1) 0%, rgba(41,18,127,1) 100%);
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 8px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger span:nth-of-type(1) {
  -webkit-animation: menu-bar01 .75s forwards;
  animation: menu-bar01 .75s forwards;
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(8px) rotate(45deg);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu-trigger span:nth-of-type(2) {
  transition: all .25s .25s;
  opacity: 1;
}
.menu-trigger span:nth-of-type(3) {
  -webkit-animation: menu-bar02 .75s forwards;
  animation: menu-bar02 .75s forwards;
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-8px) rotate(-45deg);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 .75s forwards;
  animation: active-menu-bar01 .75s forwards;
	background: rgb(118,26,72);
background: linear-gradient(90deg, rgba(118,26,72,1) 0%, rgba(41,18,127,1) 100%);
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(8px) rotate(45deg);
  }
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-animation: active-menu-bar03 .75s forwards;
  animation: active-menu-bar03 .75s forwards;
	background: rgb(118,26,72);
background: linear-gradient(90deg, rgba(118,26,72,1) 0%, rgba(41,18,127,1) 100%);
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* page TOP */
.gotop{
	position: relative;
	margin: 20px auto 0 auto;
	padding: 7px 0;
	background-color: #25449c;
	display: block;
}
.gotop::after{
	position: absolute;
	top: 50%;
	right: 7px;
	transform: translateY(-50%);
	display: block;
	content: '';
	width: 15px;
	height: 15px;
	background-image: url("../img/common/arrow.svg");
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: contain;
}
.gotop img{
	position: relative;
	margin: 0 auto;
	width: auto;
	height: 15px;
}


/* modal */
.modal{
	position: fixed;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(17,11,30,0.98);
	z-index: 3001;
}
.modal01{
	position: fixed;
	top:0;
	left: 0;
	width: 100%;
	height: calc(100% - 40px);
	padding-bottom: 60px;
	background-color: rgba(17,11,30,0.98);
	z-index: 3000;
	display: none;
	overflow-y: scroll;
}
.modal02{
	position: fixed;
	top:0;
	left: 0;
	width: 100%;
	height: calc(100% - 40px);
	padding-bottom: 60px;
	background-color: rgba(17,11,30,0.98);
	z-index: 3000;
	display: none;
	overflow-y: scroll;
}
.modal .closeWin, .modal01 .closeWin, .modal02 .closeWin{
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
}
.modal .btnClose, .modal01 .btnClose, .modal02 .btnClose{
	position: fixed;
	top:0;
	right: 0;
	width: 60px;
	height: 60px;
	cursor: pointer;
	z-index: 3002;
}
.modal .btnClose span, .modal01 .btnClose span, .modal02 .btnClose span{
	position: absolute;
	top:50%;
	left: 50%;
	width: 40px;
	height: 1px;
	background-color: #929292;
}
.modal .btnClose span:nth-child(1), .modal01 .btnClose span:nth-child(1), .modal02 .btnClose span:nth-child(1){transform: translate(-50%,-50%) rotate(45deg);}
.modal .btnClose span:nth-child(2), .modal01 .btnClose span:nth-child(2), .modal02 .btnClose span:nth-child(2){transform: translate(-50%,-50%) rotate(-45deg);}
.modalCont{
	position: relative;
	top:50%;
	left: 50%;
	width: auto;
	height: auto;
	max-width: 960px;
	transform: translate(-50%, -50%);
}
.modalCont .movieList{
	position: relative;
	margin: 0 auto 10px auto;
	width: 100%;
	max-width: 960px;
}
.modalCont .movieList .BtnM{
	position: relative;
	margin: 0 5px 10px 5px;
	padding: 5px 0;
	background-color: #939393;
	border: solid 1px #939393;
	width: calc(50% - 20px);
	max-width: 180px;
	text-align: center;
	color: #ffffff;
	cursor: pointer;
	font-size: .11rem;
	transition: all .3s ease-out;
}
.modalCont .movieList .BtnM:hover{opacity: .8;}
.modalCont .movieList .BtnM.disp{background-color: #ffffff;color: #222222;}
.modalIntro{
	position: relative;
	top:80px;
	left: 50%;
	width: calc(100% - 60px);
	height: auto;
	max-width: 680px;
	max-height: calc(100% - 200px); 
	transform: translateX(-50%);
}
.modalIntro .introBg{position: relative;}
.modalIntro .introBg img{width: 100%; }
.modalIntro .introTxt{
	position: absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70%;
	height: auto;
	opacity: 0;
}
/* movie */
.movieWrap{
    position: relative;
    margin: 0 auto;
	width: calc(100% - 40px);
	max-width: 800px;
	background-color: #000000;
}
.movie{
	position: relative;
	margin:0 auto;
	width: 100%;
	height: 0;
	padding-top: 56.25%;
}
.movie iframe{
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* history */
.modalhistory{
	position: relative;
	top:30px;
	left: 50%;
	width: calc(100% - 20px);
	height: auto;
	padding-bottom: 50px;
	max-width: 1000px;
	transform: translateX(-50%);
}
.modalhistory .ttl{
	position: relative;
	margin: 0 auto 10px auto;
	max-width: 600px;
}
.modalhistory .prevList{
	position: relative;
	margin: 0 auto;
}
.modalhistory .prevList li{
	position: relative;
	margin: 0 15px 20px 15px;
	width: calc(100% - 20px);
	max-width: 390px;
	padding: 0;
	border-radius: 20px;
	border-right: solid 5px #707070;
	border-bottom: solid 5px #707070;
	background-color: #ffffff;
}
.modalhistory .prevList li h2{
	position: relative;
	margin: 20px auto 0 auto;
	font-weight: 700;
	color: #870e74;
	font-size: .18rem;
	padding-bottom: 5px;
	text-align: center;
}
.modalhistory .prevList li:nth-child(1) h2{color: #870e74;}
.modalhistory .prevList li:nth-child(2) h2{color: #7E02A8;}
.modalhistory .prevList li:nth-child(3) h2{color: #332B91;}
.modalhistory .prevList li:nth-child(4) h2{color: #DA0161;}
.modalhistory .prevList li .catchT{
	position: relative;
	color: #ffffff;
	font-style: italic;
	font-weight: 500;
	font-size: .16rem;
	line-height: 1.4em;
	border-top-left-radius: 17px;
	border-top-right-radius: 17px;
	text-align: center;
	padding: 10px;
}
.modalhistory .prevList li:nth-child(1) .catchT{background-color: #870e74;}
.modalhistory .prevList li:nth-child(2) .catchT{background-color: #7E02A8;}
.modalhistory .prevList li:nth-child(3) .catchT{background-color: #332B91;}
.modalhistory .prevList li:nth-child(4) .catchT{background-color: #DA0161;}
.modalhistory .prevList li .about{
	position: relative;
	margin: 10px auto;
	width: calc(100% - 20px);
}
.modalhistory .prevList li .about .aboutImg{
	position: relative;
	font-size: .12rem;
	line-height: 1.4em;
	width: calc(100% - 20px);
}
.modalhistory .prevList li .about .aboutImg img{
	position: relative;
	width: calc(100% - 80px);
	max-width: 200px;
	margin: 0 auto 10px auto;
}
.modalhistory .prevList li .about .aboutImg span{
	position: relative;
	display: block;
	margin: 0 auto;
	width: calc(100% - 20px);
}
.modalhistory .prevList li .about .aboutTxt{
	position: relative;
	margin: 20px auto 10px auto;
	width: calc(100% - 20px);
}
.modalhistory .prevList li .prevImg{
	position: relative;
	width: calc(100% - 40px);
	margin: 0 auto 40px auto;
}

.modalhistory .prevList li:last-child .about .aboutTxt{margin: 20px auto 0 auto;}
.modalhistory .prevList li:last-child .aboutTxt .prevImg{width: 100%; margin: 20px auto;}
.modalhistory .streamList{
	position: relative;
	margin: 30px auto;
	border-right: solid 5px #707070;
	border-bottom: solid 5px #707070;
	background-color: #ffffff;
	width: calc(100% - 40px);
	max-width: 1000px;
	border-radius: 20px;
}
.modalhistory .streamList .ttl{
	position: relative;
	margin: 0 auto;
	padding: 20px;
	background-color: #24071C;
	color: #ffffff;
	font-style: italic;
	font-weight: 700;
	font-size: .22rem;
	text-align: center;
	border-top-left-radius: 18px;
	border-top-right-radius: 18px;
	max-width: 1000px;
}
.modalhistory .streamList ul{
	position: relative;
	margin: 10px auto 0 auto;
	width: calc(100% - 10px);
	max-width: 980px;
}
.modalhistory .streamList ul li{
	position: relative;
	margin: 0 0 40px 0;
	width: 100%;
}
.modalhistory .streamList ul li .ImgBox{
	position: relative;
	margin: 0 auto;
	width: 100%;
	height: 80px;
	text-align: center;
}
.modalhistory .streamList ul li.ponycanyon .ImgBox{height: 96px;}
.ImgBox img{
	position: absolute;
	display: block;
	top:50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 28px;
	width: auto;
}
.ponycanyon .ImgBox img{height: 101px;}
.lemino .ImgBox img{height: 57px;}
.amazon .ImgBox img{height: 47px;}
.appletv .ImgBox img{height: 45px;}
.googleplay .ImgBox img{height: 30px;}
.jcom .ImgBox img{height: 23px;}
.rakuten .ImgBox img{height: 44px;}
.videomarket .ImgBox img{height: 25px;}
.terasa .ImgBox img{height: 44px;}
.crankin .ImgBox img{height: 21px;}
.hikari .ImgBox img{height: 23px;}
.milplus .ImgBox img{height: 40px;}
.musiclp .ImgBox img{height: 44px;}
.watcha .ImgBox img{height: 36px;}
.youtube .ImgBox img{height: 30px;}

.modalhistory .streamList ul li ul.btn_mov{
	position: relative;
	width: 100%;
}
.modalhistory .streamList ul li ul.btn_mov li{
	position: relative;
	margin: 0 2px 10px 2px;
	width: 65px;
	border-radius: 100px;
	padding: 1px 0;
}
.modalhistory .streamList ul li ul.btn_mov li:nth-child(1){background-color: #B20078;}
.modalhistory .streamList ul li ul.btn_mov li:nth-child(2){background-color: #7E02A8;}
.modalhistory .streamList ul li ul.btn_mov li:nth-child(3), .modalhistory .streamList ul li ul.btn_mov li.chapter3{background-color: #332B91;}
.modalhistory .streamList ul li ul.btn_mov li:nth-child(4){background-color: #DA0161;}
.modalhistory .streamList ul li ul.btn_mov li.all{background-color: #9D26ED;width: 220px;}

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


/* ----- pc ----- */
@media screen and (min-width: 799px) {
		
	.sp{ display: none; }
	.pc{ display: block; }
    
    body{font-size: .16em;background-size: auto auto;}

	/* nav */
	#menu{
		position: fixed;
		top: 0;
		left: 0;
		height: 0;
		width: 240px;
		background: rgb(13,3,19);
		background: linear-gradient(0deg, rgba(13,3,19,1) 0%, rgba(230,24,116,1) 100%);
		z-index: 999;
		scrollbar-width: none;
		transition: all .2s ease-out .5s;
	}
	.menuInner{
		position: fixed;
		top: 140px;
		left: 0;
		right: 0;
		bottom: 0;
		overflow-y: auto;
		height: 100%;
		width: 240px;
		scrollbar-width: none;
	}
	.menuInner::-webkit-scrollbar{display:none;}
	nav{
		position: relative;
		top:auto;
		left: auto;
		height: auto;
		min-height: auto;
		margin: 0 auto;
		transform: translateX(0);
		background: none;
		opacity: 1;
		z-index: 1000;
		scrollbar-width: none;
	}
	nav::-webkit-scrollbar{display:none;}
	.navWrap{
		position: relative;
		top:auto;
		left: auto;
		margin: 0 auto;
		transform: translateY(0);
	}
	.nav{width: calc(100% - 60px);}
	.navSns{
		margin: 20px auto 0 auto;;
		width: calc(100% - 60px);
	}
	.navSns div{margin: 0 10px 0 0;}
	.nav div{margin: 0 0 10px 0;}
	.nav div:last-child, .navSns div:last-child{margin: 0;}
	.nav div svg{height: 18px; width: auto;padding: 0;margin: 0;}
	.navWrap .navi{opacity: 0;transform: translateX(-30px);}
	.nav .navi:hover path{fill: #0C0940;transition: all .3s ease-out;}
	.navSns img:hover{opacity: .5;transition: all .3s ease-out;}
	.top{
		position: relative;
		margin: 12px auto 20px auto;
		width: 140px;
		opacity: 0;
		transition: opacity .5s ease-out .9s;
	}
	.top img{width: 140px;height: auto;display: block;}

	.modalhistory .streamList{width: 100%;}
	.modalhistory .streamList ul li{
		width: calc(33% - 5px);
		margin: 0 5px 50px 5px;
		max-width: 310px;
	}
	.modalhistory .streamList ul li .ImgBox{height: 100px;}
	.ImgBox img{height: 32px;}

	.ponycanyon .ImgBox img{height: 100px;}
	.lemino .ImgBox img{height: 55px;}
	.amazon .ImgBox img{height: 46px;}
	.appletv .ImgBox img{height: 48px;}
	.googleplay .ImgBox img{height: 32px;}
	.jcom .ImgBox img{height: 24px;}
	.rakuten .ImgBox img{height: 50px;}
	.videomarket .ImgBox img{height: 32px;}
	.terasa .ImgBox img{height: 52px;}
	.crankin .ImgBox img{height: 24px;}
	.hikari .ImgBox img{height: 26px;}
	.milplus .ImgBox img{height: 44px;}
	.musiclp .ImgBox img{height: 44px;}
	.watcha .ImgBox img{height: 40px;}
	.youtube .ImgBox img{height: 33px;}

	.modalCont .movieList .BtnM{font-size: .14rem;}

}

@media screen and (min-width: 890px) {
	.modalhistory .prevList li h2{
		font-size: .22rem;
		padding-bottom: 10px;
	}
	.modalhistory .prevList li .catchT{
		font-size: .18rem;
		line-height: 1.6em;
	}
	.modalhistory .prevList li .about{
	position: relative;
	margin: 10px auto;
	width: calc(100% - 60px);
}
	.modalhistory .prevList li .prevImg{width: calc(100% - 60px);}
/*	.modalhistory .prevList li:last-child{
		margin: 0 0 20px 0;
		max-width: calc(100% - 180px);
	}
	.modalhistory .prevList li:last-child .aboutImg{margin: 0; width: 30%;}
	.modalhistory .prevList li:last-child .about .aboutImg img{
		width: calc(100% - 40px);
		max-width: 300px;
	}
	.modalhistory .prevList li:last-child  .about .aboutTxt{margin: 0; width: calc(70% - 40px);}
	.modalhistory .prevList li:last-child .aboutTxt .prevImg{width: calc(100% - 100px);margin: 20px auto;}*/
	.modalhistory .prevList li .about{margin: 20px auto;}
}