@charset "UTF-8";
/* ----------------------------------------------------------------------------------------
固定css
-------------------------------------------------------------------------------------------- */
a {
 display: block;
}
a.opacity:hover {
 opacity: .6;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.totop a {
	display: none!important;
}
/* ----------------------------------------------------------------------------------------
813px以上の固定css(PC)
-------------------------------------------------------------------------------------------- */
@media screen and (min-width: 813px) {
.sp {
  display: none;
 }
 .pc {
  display: block;
 }
.home {
  position: fixed;
  top: 15px;
  left: 15px;
  width: 20%;
  max-width: 140px;
  z-index: 1000;
}
}
/* ----------------------------------------------------------------------------------------
今回追加した813px以上のcss(PC)
-------------------------------------------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
main {
  position: relative;
  z-index: 0;
  font-size: 16px;
	background: url( "../images/bg_live.webp") no-repeat center center/100% auto,linear-gradient(90deg,rgba(209, 209, 209, 1) 0%, rgba(240, 240, 240, 1) 50%, rgba(222, 222, 222, 1) 100%);
  background-attachment: fixed;
  color: #3d3d3d;
	line-height: 1.2;
}
/*----------------------------------------------------------------
汎用
----------------------------------------------------------------*/
.logona {
	font-family: "vdl-logona", sans-serif;
	font-weight:bold;
	font-style: normal;
}
.tx_orange {
	color: #ff5c00;
}
.small {
	font-size: 75%;
}
.big {
	font-size: 150%;
}
.bold {
	font-weight: 700;
}
.bg_orange {
	background-color: #ff5c00;
	color: #fff;
}
.tac {
	text-align: center;
}
.ls5 {
	letter-spacing: 5px;
}
.ls0 {
	letter-spacing: 0;
}
.p15 {
	padding: 15px 0;
}
/*----------------------------------------------------------------
flex
----------------------------------------------------------------*/
.flex_box {
	display: flex;
}
.flex_box.js {
	display: flex;
	justify-content: space-between;
}
.flex_box.jc {
	display: flex;
	justify-content: center;
}
.flex_box.ac {
	display: flex;
	align-items: center;
}
.w30 {
	width: 30%;
	margin-right: 5%;
}
.w45 {
	width: 45%;
	margin-right: 5%;
}
.w50 {
	width: 50%;
}
.w65 {
	width: 65%;
}
.w75 {
	width: 75%;
	margin: auto;
}
/*----------------------------------------------------------------

----------------------------------------------------------------*/
h1 {
  width: 100%;
	text-align: center;
}
h1 img {
	width: 70%;
}
main h2 {
  text-align: center;
	font-weight: bold;
	padding-bottom: 40px;
	font-family: "vdl-logona", sans-serif;
	font-size: 36px;
	letter-spacing: 5px;
	font-style: italic;
}
/*----------------------------------------------------------------
bg
----------------------------------------------------------------*/
.inner_wrap {
	padding: 60px 0;
}
.orange_wrap {
	background: linear-gradient(126deg,rgba(240, 69, 17, 1) 0%, rgba(245, 147, 56, 1) 50%, rgba(240, 89, 38, 1) 100%);
	color: #fff;
	position: relative;
}
.paper_wrap::before {
	content: "";
	display: inline-block;
	background: url("../images/ghost.webp") no-repeat center/100%;
	width: 100px;
	height: 123px;
	position: absolute;
	bottom: 10%;
	left: 5%;
	z-index: 0;
}
.paper_wrap::after {
	content: "";
	display: inline-block;
	background: url("../images/ghost_right.webp") no-repeat center/100%;
	width: 100px;
	height: 123px;
	position: absolute;
	top: 10%;
	right: 5%;
	z-index: 0;
}
.orange_wrap::before {
	content: "";
	display: inline-block;
	background: url("../images/ghost_02.webp") no-repeat center/100%;
	width: 100px;
	height: 123px;
	position: absolute;
	top: 10%;
	left: 15%;
}
.orange_wrap::after {
	content: "";
	display: inline-block;
	background: url("../images/ghost_02_right.webp") no-repeat center/100%;
	width: 100px;
	height: 123px;
	position: absolute;
	bottom: 10%;
	right: 15%;
}
.paper_wrap {
	background: url("../images/bg_paper.webp") repeat-y top center/100% auto #e7e7e7;
	position: relative;
}
/*----------------------------------------------------------------
BTN
----------------------------------------------------------------*/
.btn {
	position: relative;
}
.btn.ghost a::before {
	content: "";
	display: inline-block;
	background: url("../images/ghost.webp") no-repeat center/100%;
	width: 80px;
	height: 98px;
	position: absolute;
	top: -50px;
	left: -100px;
}
.btn.ghost a::after {
	content: "";
	display: inline-block;
	background: url("../images/ghost_right.webp") no-repeat center/100%;
	width: 70px;
	height: 86px;
	position: absolute;
	bottom: -20px;
	right: -100px;
}
.btn a {
	display: block;
	max-width: 400px;
	margin: auto;
	padding: 20px 0;
	text-align: center;
	border-radius: 100px;
	background-color: #ff5c00;
	color: #fff;
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 3px;
	position: relative;
	z-index: 10;
}
span.arrow {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	background: url("../images/arrow.webp") no-repeat center/35px;
	display: inline-block;
	width: 35px;
	height: 35px;
}
.btn a:hover .arrow {
	transition: transform .3s cubic-bezier(.59,-0.01,.26,.9);
	transform:translateY(-50%) scale(1.2);
}
/*----------------------------------------------------------------
TOP
----------------------------------------------------------------*/
.sns_list {
	display: flex;
	justify-content: flex-end;
	padding:0;
	background-color: #fff;
	width: 100%;
}
.sns_list li {
	max-width: 50px;
	margin-right: 4%;
	font-size: 12px;
	text-align: center;
	color: #fff;
}
.sns_list li :last-of-type{
	margin-right: 0;
}
.sns_list li a img {
	width: 100%;
	margin: auto;
	display: block;
	border-radius: 5px;
}
.sns_list li a:hover {	
	transform:translateY(5px);
	transition: 0.2s all ease-in;
}
.menu {
	display: flex;
	justify-content: center;
	text-align: center;
	font-weight: 700;
	padding-top: 40px;
}
.menu li {
	margin-right: 70px;
	font-family: "vdl-logona", sans-serif;
	font-style: normal;
	font-weight: bold;
	letter-spacing: 3px;
	border: 3px	solid #ed3434;
	border-radius: 5px;
	padding: 10px 10px 10px 12px;
	font-size: 18px;
	background-color: rgba(255,255,255,0.5);
	box-shadow: 0 0 8px rgba(0,0,0,0.2)
}
.menu li:last-of-type {
	margin-right:0;
}
.menu li:hover {	
	transform:translateY(5px);
	transition: 0.2s all ease-in;
}
.top_date {
	text-align: center;
	font-size: 30px;
	font-weight: 900;
	padding:50px 0;
	line-height: 1.8;
	text-shadow:2px 2px 0 rgba(255,179,130,0.1);
}
.lead_tx {
	text-align: center;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.8;
	padding:60px 0 60px;
}
.lead_inn {
	display: inline;
	background-color: #ff5c00;
	font-size: 30px;
	color: #fff;
	letter-spacing: 5px;
}
.pop {	
	max-width: 400px;
	position: fixed;
	right: 0;
	bottom: 115px;
	z-index: 999;
}
.pop a {
	position: relative;
	z-index: 999;
}
/*----------------------------------------------------------------
TRAILER
----------------------------------------------------------------*/
.youtube {
  width:700px;
  aspect-ratio:16/9;
	margin: auto;
}
iframe {
  width: 100%;
  height: 100%;
}
video {
	width: 100%;
  height: 100%;
}
/*----------------------------------------------------------------
STORY
----------------------------------------------------------------*/
#story.inner_wrap {	
	text-align: center;
}
.story_tx {
	line-height: 1.8;
}
/*----------------------------------------------------------------
CAST
----------------------------------------------------------------*/
.cast_list {
	display: flex;
	flex-wrap: wrap;
  width:75%; 
	margin: 0 auto 30px;
}
.cast_wrap {
	width: 45%;
	margin-right: 5%;
}
.cast_wrap:nth-of-type(2n) {
	margin-right: 0;
}
.cast_wrap:nth-of-type(n+3) {
	margin-top: 50px;
}
.cast_name {
	color: #ff5c00;
	font-size: 24px;
	font-style: italic;
}
.real_name {
	font-size: 16px;
	color: #3d3d3d;
	display: inline-block;
	padding-left: 10px;
}
.cast_discription {
	padding: 15px 0;
	border-bottom: 1px solid #ff5c00;
	margin-bottom: 15px;
}
.works_wrap {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
}
.works_ttl {
	padding-bottom: 10px;
	padding-left: 15px;
	align-content: center;
	position: relative;
}
.works_ttl::before{
	display: inline-block;
	content: "";
	width: 4px;
	height: 18px;
	background-color: #ff5c00;
	margin-right: 10px;
	position: absolute;
	top: 0;
	left: 0;
}
/*----------------------------------------------------------------
DIAGRAM
----------------------------------------------------------------*/
.diagram_img {
	max-width: 1000px;
	width: 80%;
	margin: auto;
}
/*----------------------------------------------------------------
CAMPAIGN
----------------------------------------------------------------*/
.cp_ttl {
	font-size: 32px;
	font-weight: 800;
	text-align: center;
	line-height: 160%;
	padding-bottom: 20px;
}
.cp_img {
	max-width: 1000px;
	margin: auto;
	width: 80%;
}
.cp_list {
	background-color:rgba(229,240,255,0.4);
	max-width: 1000px;
	margin: 50px auto 30px;
	padding: 20px;
}
.cp_list.attention {
	margin: 30px auto 60px;
	padding: 20px;
	font-size: 14px;
}
.cp_list li {
	text-indent: -1.5em;
	margin-left: 1.5em;
	padding: 5px 0;
}
.cp_list.attention li {
	text-indent: -1.0em;
	margin-left: 1.0em;
	padding: 3px 0;
}
.cp_list .att_tx {
	text-indent: -1.0em;
	margin-left: 1.0em;
	font-size: 14px;
	padding: 3px 0;
}
.cp_list .list_ttl {
	border-bottom: 1px solid #324170;
	font-weight: 600;
	font-size: 20px;
	text-indent: 0;
	margin-left:0;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.cp_list li a {
	text-decoration: underline;
	color: #ff4f9d;
	display: inline;
}
.cp_wrap {
	margin-bottom: 100px;
}
/*----------------------------------------------------------------
おすすめ作品
----------------------------------------------------------------*/
#contents h2 {
	font-size: 30px;
}
.contents_list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
	width: 75%;
	margin: 50px auto 0;
}
.content {
	width:24%;
	margin-right: 1%;
	text-align: center;
	font-size: 14px;
}
.content:nth-of-type(4n) {
	margin-right: 0;
}
.content:nth-of-type(n+5) {
	margin-top: 4%;
}
.contents_copy {
	padding-top: 30px;
}
/*----------------------------
追従
----------------------------*/
.lp_cta_fixed.is-fixed {
  padding: .5em;
  text-align: center;
  width: 100%;
  background-color:rgba(21,21,21,0.7);
  position: fixed;
  bottom: 0;
  left: 0;
  font-weight: 700;
	display: block;
  }
.lp_cta_fixed .point_cp {
  text-decoration: underline;
  font-size: 16px;
  padding-bottom: 10px;
}
.btn_wrap {
  display: flex;
  margin: auto;
  justify-content: center;
}
.btn.fix::before {
  display: none;
}
.btn.fix a {
   padding: 24px 0;
   font-size: 18px;
   margin: 0 20px 0 0;
	 border: 0;
	 letter-spacing: 0;
	 width: 500px;
}
.btn.fix.lemino a {
  background: linear-gradient(90deg, rgba(255,168,49,1) 0%, rgba(255,40,135,1) 100%);
  padding: 12px;
	color: #fff;
	margin: 0;
}
.btn.fix a .s_text {
  font-size: 14px;
}

/* ----------------------------------------------------------------------------------------
今回追加した812px以下のcss(SP)
-------------------------------------------------------------------------------------------- */
@media screen and (max-width: 812px) {
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.wrapper::before {
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100vh;
	background: url("../images/bg_live_sp.webp") no-repeat top center/100% 100% ,linear-gradient(90deg,rgba(209, 209, 209, 1) 0%, rgba(240, 240, 240, 1) 50%, rgba(222, 222, 222, 1) 100%);
}
main {
  background: none;
  font-weight: 400;
}
/*----------------------------------------------------------------
flex
----------------------------------------------------------------*/
.flex_box {
	flex-direction: column;
}
.flex_box.js {
	flex-direction: column;
}
.flex_box.jc {
	flex-direction: column;
}
.flex_box.ac {
	flex-direction: column;
}
.w30 {
	width: 100%;
	margin-right: 0;
}
.w45 {
	width: 100%;
	margin-right: 0;
}
.w50 {
	width: 100%;
}
.w65 {
	width: 100%;
}
.w75 {
	width: 100%;
	margin: auto;
}
h1 {
  width: 100%;
	background: none;
}
h1 img {
	width: 100%;
	margin: auto;
}
main h2 {
	padding-bottom: 40px;
	font-size: 32px;
}
/*----------------------------------------------------------------
bg
----------------------------------------------------------------*/
.inner_wrap {
	padding: 60px 0;
}
.paper_wrap {
	background: url("../images/bg_paper_sp.webp") repeat-y top center/100% auto #e7e7e7;
}
.orange_wrap::before {
	width: 70px;
	height: 86px;
	position: absolute;
	top: 10px;
	left: 20px;
}
.orange_wrap::after {
	width: 50px;
	height: 62px;
	position: absolute;
	bottom: 0;
	right: 5px;
}
.paper_wrap::before,.paper_wrap::after {
	content: "";
	display: none;
}
/*----------------------------------------------------------------
BTN
----------------------------------------------------------------*/
.btn.ghost a::before {
	width: 30px;
	height: 37px;
	top: -20px;
	left: -25px;
}
.btn.ghost a::after {
	width: 40px;
	height: 49px;
	bottom: -40px;
	right: -30px;
}
.btn a {
	width: 300px;
	padding: 12px 0;
	font-size: 16px;
	font-weight: 600;
}
span.arrow {
	right: 10px;
	background: url("../images/arrow.webp") no-repeat center/25px;
	display: inline-block;
	width: 25px;
	height: 25px;
}
/*----------------------------------------------------------------
TOP
----------------------------------------------------------------*/
.top_date {
	font-size:20px;
	padding:20px 0;
	line-height: 1.5;
}
.lead_img {
	width: 90%;
	margin: 40px auto 0;
}
.lead_tx {
	font-size: 16px;
	line-height: 35px;
	padding:20px 0 30px;
}
.lead_inn {
	font-size: 20px;
	letter-spacing: 0;
}
.pop {	
	width: 70%;
	bottom: 100px;
	z-index: 999;
	/*animation: fuwafuwa 2s ease-in-out infinite alternate; */
}
/*----------------------------------------------------------------
TRAILER
----------------------------------------------------------------*/
.youtube {
  width:90%;
	padding-bottom: 15px;
}
/*----------------------------------------------------------------
STORY
----------------------------------------------------------------*/
#story.inner_wrap p {	
	padding: 0 15px;
}
.story_tx {
	font-size: 14px;
}
/*----------------------------------------------------------------
CAST
----------------------------------------------------------------*/
.cast_list {
  width:90%; 
	flex-direction: column;
}
.cast_wrap {
	width: 100%;
	margin-right: 0;
}
.cast_wrap .flex_box.js.ac {
	flex-direction: row;
}
.cast_wrap .flex_box.js.ac .w30 {
	width: 40%;
}
.cast_wrap .flex_box.js.ac .w65 {
	width: 58%;
}
.cast_wrap:nth-of-type(2n) {
	margin-right: 0;
}
.cast_wrap:nth-of-type(n+2) {
	margin-top: 50px;
}
.cast_name {
	font-size: 20px;
}
.real_name {
	font-size: 14px;
	padding-left: 30px;
}
.cast_discription {
	padding: 10px 0;
	margin-bottom: 10px;
	font-size: 14px;
}
.works_wrap {
	font-size: 12px;
	color: #555;
}
.works_ttl {
	padding-bottom: 5px;
	padding-left: 15px;
}
.works_ttl::before{
	display: inline-block;
	content: "";
	width: 4px;
	height: 18px;
	background-color: #ff5c00;
	margin-right: 10px;
	position: absolute;
	top: 0;
	left: 0;
}
.flex_box.poster {
	flex-direction: row;
	flex-wrap: wrap;
	width: 90%;
	justify-content: center;
}
.flex_box.poster li {
	width: 48%;
	margin-right: 2%;
	margin-top: 2%;
}
.flex_box.poster li:nth-of-type(2n) {
	margin-right: 0;
}
.flex_box.poster li:last-of-type(2n) {
	margin-right: 0;
}
/*----------------------------------------------------------------
DIAGRAM
----------------------------------------------------------------*/
.diagram_img {
	width: 90%;
}
/*----------------------------------------------------------------
CAMPAIGN
----------------------------------------------------------------*/
.cp_ttl {
	font-size: 20px;
	padding-bottom: 20px;
}
.cp_img {
	width: 90%;
}
.cp_list {
	background-color:rgba(229,240,255,0.4);
	width: 90%;
	margin: 20px auto 30px;
	padding: 20px;
}
.cp_list li {
	padding: 5px 0;
}
.cp_list .list_ttl {
	font-size: 18px;
	padding-bottom: 8px;
	margin-bottom: 8px;
}
.btn.cp a {
	font-size: 16px;
	letter-spacing: 0;
}
/*----------------------------------------------------------------
おすすめ作品
----------------------------------------------------------------*/
#recomend.inner_wrap {
	width: 100%;
}
#recomend h2 {
	font-size: 24px;
}
#recomend .flex_box.w75 {
	width: 90%;
}
.contents_list {
	width: 90%;
	margin: auto;
}
.content {
	width:48%;
	font-size: 14px;
	font-weight: 500;
	line-height: 120%;
}
.content:nth-of-type(2n) {
	margin-right: 0;
}
.content:nth-of-type(3n) {
	margin-right: 2%;
}
.content:nth-of-type(n+3) {
	margin-top: 6%;
}
.contents_copy {
	padding: 30px 10px 0;
	font-size: 12px;
}
.copy {
	text-align: center;
	padding-bottom: 20px;
}
/*----------------------------------------------------------------
追従
----------------------------------------------------------------*/
.lp_cta_fixed .point_cp {
  font-size: 12px;
  padding-bottom: 5px;
}
.btn_wrap {
  display: flex;
  width: 98%;
  margin: auto;
  justify-content: space-between;
}
.btn.fix {
  width:100%;
}

.btn.fix a {
  margin-top: 0;
  width: 98%;
  margin-bottom: 0;
  font-size: 12px;
  padding: 20px 0;
}
.btn.fix.lemino a {
  padding: 8px 0;
}
.btn.fix a .s_text {
  font-size: 9px;
}
/* ----------------------------------------------
ハンバーガーメニュー
------------------------------------------------*/
#nav-drawer {
  position: relative;
}
.nav-unshown {
  display:none;/*チェックボックス等は非表示に*/
}
/*アイコンのスペース*/
#nav-open {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 50px;
  height:50px;
  right: 10px;
  top: 10px;
  z-index: 99999;
	background-color: #ff5c00;
	border-radius: 100%;
}
/*ハンバーガーの形をCSSで表現*/
#nav-open span,
#nav-open span:before,
#nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 20px;/*長さ*/
  background:  #fff;
  display: block;
  content: '';
  cursor: pointer;
  transition: 0.5s;
  z-index: 9999;
  border-radius: 20px;
}
#nav-open span:before {
  bottom: 7px;
}
#nav-open span:after {
  top: 7px;
}
/* アイコンがクリックされたら真ん中の線を透明にする */
#nav-input:checked ~ #nav-open span {
  background: rgba(255, 255, 255, 0);
  box-shadow: none;
}
/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#nav-input:checked ~ #nav-open span::before {
  bottom: 0;
  transform: rotate(225deg);
}
#nav-input:checked ~ #nav-open span::after {
  top: 0;
  transform: rotate(-225deg);
}  
/*閉じる用の薄黒箇所*/
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #555;
  opacity: 0;
  transition: .3s ease-in-out;
}
/*メニューの中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 90%;
  max-width: 300px;
  height: 100vh;
  background:#555;
  transition: .3s ease-in-out;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  color: #fff;
}
.nav_item {
  text-align: center;
  font-size: 20px;
  padding: 100px 20px 0;
  position: relative;
}
.nav_item::before {
  display: inline-block;
  content: "";
  background: url("../images/paint.webp") no-repeat center center/100% auto;
  width: 80%;
  height: 200px;
  position: absolute;
  bottom: -300px;
  left: 30px;
}
.nav_item li{
	border-bottom:1px dashed #333;
	padding-bottom: 15px;
	margin: 0 0 15px;
}
.nav_item li:last-of-type{
	border-bottom:0 dashed #000c23;
}
.nav_item li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
}
.nav_item li a span {
  font-family: "gooddog-new", sans-serif,Optima;
	font-weight: 400;
	font-style: normal;
	font-size: 30px;
}
.hum_sns {
	text-align: center;
}
.hum_sns li a {
	max-width: 80px;
	margin: auto;
}
/*チェックがついたら表示させる*/
#nav-input:checked ~ #nav-close {
  opacity: .5;
  display: block;
}
#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
	height: 100vh;
}
.header_menu{
 display: flex;
 display: -moz-flex;
 display: -o-flex;
 display: -webkit-flex;
 display: -ms-flex;
 flex-direction: row;
 -moz-flex-direction: row;
 -o-flex-direction: row;
 -webkit-flex-direction: row;
 -ms-flex-direction: row;
}
}
@media screen and (max-width: 370px) {
	.btn::before {
	display: none;
}
}
/* ----------------------------------------------------------------------------------------
812px以下の固定css(SP)
-------------------------------------------------------------------------------------------- */
@media screen and (max-width: 812px) {
 .common_footer_wrapper .footer_inner {
  width: 93%!important;
 }
 /*ユーザーエージェント出し分け用*/
.iphone .android_show, .iphone .pc_show {display:none;}
.android .iphone_show, .android .pc_show {display:none;}
.pc .iphone_show, .pc .android_show {display:none;}
.pc .visible .iphone_show, .pc .visible .android_show {display:block;}
body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic", Helvetica, sans-serif;
  }
 .sp {
  display: block;
 }
 .pc {
  display: none;
 }
 .home {
  position: fixed;
  top: 14px;
  left: 10px;
  width: 20%;
  max-width: 130px;
  z-index: 1000;
 }
}
