@charset "UTF-8";
/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	line-height: 1;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	color: #fff;
	font-family: 'Roboto','Noto Sans JP', sans-serif;

}


#f-nav ul li a{
	font-family: "Helvetica Neue" , Helvetica,sans-serif;
}

.ticker-txt p{
	font-family: 'Roboto','Noto Sans JP',sans-serif;
	font-weight: 700;
}
.btn-footer a{
	font-family: 'Roboto','Noto Sans JP',sans-serif;
	font-weight: 700;	
}

.entry-list-txt strong,
#entry-header h3 span{
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
}

a{
	color: #fff;
	text-decoration: none;
}
li{
	list-style-type: none;
}
img{
	vertical-align: bottom;
}

.cf:after{
	content: "";
	display: block;
	clear: both;
	visibility: hidden;
}


.no-scroll{
	overflow: hidden;
}




@keyframes ticker {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-50%, 0);
  }
}

@keyframes tickerR {
  0% {
    transform: translate(-50%, 0);
    visibility: visible;
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes stamp {
  0%   {transform: scale(1)}
  5%  {transform: scale(1.2)}
  10%  {transform: scale(1)}
  100% {transform: scale(1);}
}
@keyframes stampon {
  0%   {transform: scale(1)}
  5%  {transform: scale(1.2)}
  10%  {transform: scale(1)}
  100% {transform: scale(1);}
}


@keyframes bal_shake {    
    0% {transform:translateY(0px);}
    50% {transform:translateY(-10px);}
    100% {transform:translateY(0px);}
}




.motion-r{
	opacity: 0;
	-webkit-transform: translateX(100px);
	-ms-transform: translateX(100px);
	-o-transform: translateX(100px);
	transform: translateX(100px);
}
.motion-rw{
	opacity: 0;
	-webkit-transform: translateX(200px);
	-ms-transform: translateX(200px);
	-o-transform: translateX(200px);
	transform: translateX(200px);
}
.motion-r.on,
.motion-rw.on{
	opacity: 1;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition: opacity 300ms ease,transform 300ms ease;
	-o-transition: opacity 300ms ease,transform 300ms ease;
	transition: opacity 300ms ease,transform 300ms ease;
}

.motion-l{
	opacity: 0;
	-webkit-transform: translateX(-100px);
	-ms-transform: translateX(-100px);
	-o-transform: translateX(-100px);
	transform: translateX(-100px);
}
.motion-lw{
	opacity: 0;
	-webkit-transform: translateX(-200px);
	-ms-transform: translateX(-200px);
	-o-transform: translateX(-200px);
	transform: translateX(-200px);
}
.motion-l.on,
.motion-lw.on{
	opacity: 1;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition: opacity 300ms ease,transform 300ms ease;
	-o-transition: opacity 300ms ease,transform 300ms ease;
	transition: opacity 300ms ease,transform 300ms ease;
}


.motion-up{
	opacity: 0;
	-webkit-transform: translateY(100px);
	-ms-transform: translateY(100px);
	-o-transform: translateY(100px);
	transform: translateY(100px);

}
.motion-up.on{
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: opacity 300ms ease,transform 300ms ease;
	-o-transition: opacity 300ms ease,transform 300ms ease;
	transition: opacity 300ms ease,transform 300ms ease;
}


.motion-jump{
	opacity: 0;
	-webkit-transform: translateY(100px);
	-ms-transform: translateY(100px);
	-o-transform: translateY(100px);
	transform: translateY(100px);

}
.motion-jump.on{
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: opacity 300ms ease,transform 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
	-o-transition: opacity 300ms ease,transform 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transition: opacity 300ms ease,transform 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}




.motion-in{
	opacity: 0;

}
.motion-in.on{
	opacity: 1;
	-webkit-transition: opacity 300ms ease;
	-o-transition: opacity 300ms ease;
	transition: opacity 300ms ease;
}



.motion-bound{
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);

}
.motion-bound.on{
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);

	-webkit-transition: transform 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
	-o-transition: transform 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transition: transform 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}



.grid-effect-1 span i{
	background: url(../img/common/effect_raiden.png) 50% 100% no-repeat;
	background-size: 100% 100%;
}
.grid-effect-2 span:nth-child(2) i{
	background: url(../img/common/effect_dq.png) 50% 100% no-repeat;
	background-size: 100% 100%;
}
.grid-effect-2 span:nth-child(3) i{
	background: url(../img/common/effect_dq2.png) 50% 100% no-repeat;
	background-size: 100% 100%;
}
.grid-effect-3 span i{
	background: url(../img/common/effect_onpu.png) 50% 100% no-repeat;
	background-size: 100% 100%;
}
.grid-effect-4 span i{
	background: url(../img/common/effect_focus.png) 50% 100% no-repeat;
	background-size: 100% 100%;
}	
.grid-effect-5 span i{
	background: url(../img/common/effect_heart.png) 50% 100% no-repeat;
	background-size: 100% 100%;
}
.grid-effect-6 span i{
	background: url(../img/common/effect_exclamation.png) 50% 100% no-repeat;
	background-size: 100% 100%;
}
.grid-effect-mv span i{
	background: url(../img/common/effect_raiden.png) 50% 100% no-repeat;
	background-size: 100% 100%;
}



/*--- grid-effect-1 カミナリ---*/
.grid-effect-1 span{
	position: absolute;
	display: block;
}
.grid-effect-1 span:nth-child(1){
	top: -40px;
	left: 0;
	width: 100%;
	text-align: center;
	-webkit-transform-origin: top center;
	-moz-transform-origin: top center;
	-ms-transform-origin: top center;
	-o-transform-origin: top center;
	transform-origin: top center;
}
.grid-effect-1 span:nth-child(1) img{
	height: 100px;
	width: auto;
}
.grid-effect-1 span:nth-child(2){
	bottom: -25px;
	right: 10px;
	width: 40px;
	height: 78px;
}
.grid-effect-1 span:nth-child(3){
	bottom: -25px;
	left: 10px;
	width: 40px;
	height: 78px;
}
.grid-effect-1 span i{
	display: block;
	width: 40px;
	height: 78px;
}

.grid-effect-1 span:nth-child(2) i{
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}
.grid-effect-1 span:nth-child(3) i{
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);	
}
/*- grid-w - */
.grid-w .grid-effect-1 span:nth-child(1){
	top: -80px;
}
.grid-w .grid-effect-1 span:nth-child(2){
	bottom: -55px;
}
.grid-w .grid-effect-1 span:nth-child(3){
	bottom: -55px;
}
/*- grid-s - */
.grid-s .grid-effect-1 span:nth-child(1),
.grid-sm .grid-effect-1 span:nth-child(1){
	top: -50px;
}
.grid-s .grid-effect-1 span:nth-child(2),
.grid-sm .grid-effect-1 span:nth-child(2){
	bottom: -40px;
	right: -10px;
}
.grid-s .grid-effect-1 span:nth-child(3),
.grid-sm .grid-effect-1 span:nth-child(3){
	bottom: -40px;
	left: -10px;
}
/*- grid-v - */	
.grid-v .grid-effect-1 span:nth-child(1){
	top: -50px;
}
.grid-v .grid-effect-1 span:nth-child(2){
	bottom: -40px;
	right: -15px;
}
.grid-v .grid-effect-1 span:nth-child(3){
	bottom: -40px;
	left: -15px;
}
/*- entry- */
.entry-obj .grid-effect-1 span img{
	height: 100px;
	width: auto;
}
.entry-obj .grid-effect-1 span i{
	display: block;
	width: 40px;
	height: 78px;
	background-size: 100% 100%;
}	
.entry-obj .grid-effect-1 span:nth-child(1){
	top: -10px;
	left: 40px;
	width: 100%;
	text-align: center;
}
.entry-obj .grid-effect-1 span:nth-child(2){
	bottom: 0;
	right: 0;
	width: 40px;
	height: 78px;
}
.entry-obj .grid-effect-1 span:nth-child(3){
	bottom: 20px;
	left: -10px;
	width: 40px;
	height: 78px;
}


/*--- grid-effect-2 ダブルクォーテーション---*/
.grid-effect-2 span{
	position: absolute;
	display: block;
}
.grid-effect-2 span:nth-child(1){
	top: -20px;
	right: -30px;
	width: 100%;
	text-align: right;
	-webkit-transform-origin: top right;
	-moz-transform-origin: top right;
	-ms-transform-origin: top right;
	-o-transform-origin: top right;
	transform-origin: top right;
}
.grid-effect-2 span:nth-child(1) img{
	height: 100px;
	width: auto;
}
.grid-effect-2 span:nth-child(2){
	top: 0px;
	left: 0px;
	width: 45px;
	height: 35px;
}
.grid-effect-2 span:nth-child(3){
	bottom: 0px;
	right: 0px;
	width: 45px;
	height: 35px;
}
.grid-effect-2 span i{
	display: block;
	width: 45px;
	height: 35px;
}
/*- grid-s - */
.grid-s .grid-effect-2 span:nth-child(1),
.grid-sm .grid-effect-2 span:nth-child(1){

}
.grid-s .grid-effect-2 span:nth-child(2),
.grid-sm .grid-effect-2 span:nth-child(2){
}
.grid-s .grid-effect-2 span:nth-child(3),
.grid-sm .grid-effect-2 span:nth-child(3){
}
/*- grid-v - */	
.grid-v .grid-effect-2 span:nth-child(1){
}
/*- entry- */
.entry-obj .grid-effect-2 span img{
	height: 100px;
	width: auto;
}
.entry-obj .grid-effect-2 span i{
	display: block;
	width: 45px;
	height: 35px;
}	
.entry-obj .grid-effect-2 span:nth-child(1){
	top: -30px;
	left: 0;
	width: 100%;
	text-align: right;
}
.entry-obj .grid-effect-2 span:nth-child(2){
	top: 70px;
	left: 0;
	width: 45px;
	height: 35px;
}
.entry-obj .grid-effect-2 span:nth-child(3){
	bottom: 20px;
	right: 0;
	width: 45px;
	height: 35px;
}


/*--- grid-effect-3 音符--*/
.grid-effect-3 span{
	position: absolute;
	display: block;
}
.grid-effect-3 span:nth-child(1){
	top: -20px;
	left: -20px;
	width: 100%;
	text-align: left;
	-webkit-transform-origin: top left;
	-moz-transform-origin: top left;
	-ms-transform-origin: top left;
	-o-transform-origin: top left;
	transform-origin: top left;
}
.grid-effect-3 span:nth-child(1) img{
	height: 110px;
	width: auto;
}
.grid-effect-3 span:nth-child(2){
	top: 0;
	right: 0;
	width: 40px;
	height: 58px;
}
.grid-effect-3 span:nth-child(3){
	bottom: -15px;
	left: 0;
	width: 40px;
	height: 58px;
}
.grid-effect-3 span i{
	display: block;
	width: 40px;
	height: 58px;
}
/*- grid-s - */
.grid-s .grid-effect-3 span:nth-child(1),
.grid-sm .grid-effect-3 span:nth-child(1){
}
.grid-s .grid-effect-3 span:nth-child(2),
.grid-sm .grid-effect-3 span:nth-child(2){
}
.grid-s .grid-effect-3 span:nth-child(3),
.grid-sm .grid-effect-3 span:nth-child(3){
}
/*- grid-v - */
.grid-v .grid-effect-3 span:nth-child(1){
}

/*- entry- */
.entry-obj .grid-effect-3 span img{
	height: 110px;
	width: auto;
}
.entry-obj .grid-effect-3 span i{
	display: block;
	width: 50px;
	height: 73px;
}
.entry-obj .grid-effect-3 span:nth-child(1){
	top: -10px;
	left: 0;
}
.entry-obj .grid-effect-3 span:nth-child(2){
	top: 30px;
	right: 0;
}
.entry-obj .grid-effect-3 span:nth-child(3){
	bottom: 30px;
	left: -10px;
}




/*--- grid-effect-4 Focus---*/
.grid-effect-4 span{
	position: absolute;
	display: block;
}
.grid-effect-4 span:nth-child(1){
	top: -50px;
	left: -30px;
	width: 100%;
	text-align: left;
	-webkit-transform-origin: top left;
	-moz-transform-origin: top left;
	-ms-transform-origin: top left;
	-o-transform-origin: top left;
	transform-origin: top left;
}
.grid-effect-4 span:nth-child(1) img{
	height: 140px;
	width: auto;
}
.grid-effect-4 span:nth-child(2){
	top: -10px;
	right: -20px;
	width: 61px;
	height: 50px;
}
.grid-effect-4 span:nth-child(3){
	bottom: -10px;
	left: -20px;
	width: 61px;
	height: 50px;
}
.grid-effect-4 span i{
	display: block;
	width: 61px;
	height: 50px;
}	
.grid-effect-4 span:nth-child(3) i{
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);	
}
/*- grid-s - */
.grid-s .grid-effect-4 span:nth-child(1),
.grid-sm .grid-effect-4 span:nth-child(1){
}
.grid-s .grid-effect-4 span:nth-child(2),
.grid-sm .grid-effect-4 span:nth-child(2){
}
.grid-s .grid-effect-4 span:nth-child(3),
.grid-sm .grid-effect-4 span:nth-child(3){
}
/*- grid-v - */	
.grid-v .grid-effect-4 span:nth-child(1){
}
.grid-v .grid-effect-4 span:nth-child(2){
}
.grid-v .grid-effect-4 span:nth-child(3){
}
/*- entry- */
.entry-obj .grid-effect-4 span img{
	height: 140px;
	width: auto;
}
.entry-obj .grid-effect-4 span i{
	display: block;
	width: 61px;
	height: 50px;
}
.entry-obj .grid-effect-4 span:nth-child(1){
	top: -40px;
	left: -10px;
}
.entry-obj .grid-effect-4 span:nth-child(2){
	top: 50px;
	right: -20px;
}
.entry-obj .grid-effect-4 span:nth-child(3){
	bottom: 20px;
	left: -20px;
}



/*--- grid-effect-5 ハート---*/
.grid-effect-5 span{
	position: absolute;
	display: block;
}
.grid-effect-5 span:nth-child(1){
	top: -20px;
	right: -20px;
	width: 100%;
	text-align: right;
	-webkit-transform-origin: top right;
	-moz-transform-origin: top right;
	-ms-transform-origin: top right;
	-o-transform-origin: top right;
	transform-origin: top right;
}
.grid-effect-5 span:nth-child(1) img{
	height: 100px;
	width: auto;
}
.grid-effect-5 span:nth-child(2){
	bottom: -10px;
	left: -10px;
	width: 43px;
	height: 41px;
}
.grid-effect-5 span i{
	display: block;
	width: 43px;
	height: 41px;
}
/*- grid-s - */
.grid-s .grid-effect-5 span:nth-child(1),
.grid-sm .grid-effect-5 span:nth-child(1){
}
.grid-s .grid-effect-5 span:nth-child(2),
.grid-sm .grid-effect-5 span:nth-child(2){
}
/*- grid-v - */	
.grid-v .grid-effect-5 span:nth-child(1){
}
/*- entry- */
.entry-obj .grid-effect-5 span img{
	height: 100px;
	width: auto;
}
.entry-obj .grid-effect-5 span i{
	display: block;
	width: 43px;
	height: 41px;
}
.entry-obj .grid-effect-5 span:nth-child(1){
	top: -10px;
	right: -20px;
}
.entry-obj .grid-effect-5 span:nth-child(2){
	bottom: 20px;
	left: 0px;
}





/*--- grid-effect-6 びっくり---*/
.grid-effect-6 span{
	position: absolute;
	display: block;
}
.grid-effect-6 span:nth-child(1){
	top: -20px;
	left: -20px;
	width: 100%;
	text-align: left;
	-webkit-transform-origin: top left;
	-moz-transform-origin: top left;
	-ms-transform-origin: top left;
	-o-transform-origin: top left;
	transform-origin: top left;
}
.grid-effect-6 span:nth-child(1) img{
	height: 90px;
	width: auto;
}
.grid-effect-6 span:nth-child(2){
	bottom: -10px;
	right: -10px;
	width: 42px;
	height: 53px;
}
.grid-effect-6 span i{
	display: block;
	width: 42px;
	height: 53px;
}
/*- grid-s - */	
.grid-s .grid-effect-6 span:nth-child(1),
.grid-sm .grid-effect-6 span:nth-child(1){
}
.grid-s .grid-effect-6 span:nth-child(2),
.grid-sm .grid-effect-6 span:nth-child(2){
}
/*- grid-v - */	
.grid-v .grid-effect-6 span:nth-child(1){
}
/*- entry- */
.entry-obj .grid-effect-6 span img{
	height: 90px;
	width: auto;
}
.entry-obj .grid-effect-6 span i{
	display: block;
	width: 42px;
	height: 53px;
}
.entry-obj .grid-effect-6 span:nth-child(1){
	top: 10px;
	left: 0;
}
.entry-obj .grid-effect-6 span:nth-child(2){
	bottom: 20px;
	right: 0;
}


/*--- grid-effect-mv ---*/
.grid-effect-mv span{
	position: absolute;
	display: block;
	width: 40px;
	height: 78px;
}
.grid-effect-mv span:nth-child(1){
	top: -25px;
	left: 10px;
}
.grid-effect-mv span:nth-child(2){
	top: -25px;
	right: 10px;
}
.grid-effect-mv span:nth-child(3){
	bottom: -25px;
	right: 10px;
}
.grid-effect-mv span:nth-child(4){
	bottom: -25px;
	left: 10px;
}
.grid-effect-mv span i{
	display: block;
	width: 40px;
	height: 78px;
}	
.grid-effect-mv span:nth-child(1) i{
	-webkit-transform: rotate(-60deg);
	-ms-transform: rotate(-60deg);
	-o-transform: rotate(-60deg);
	transform: rotate(-60deg);
}
.grid-effect-mv span:nth-child(2) i{
	-webkit-transform: rotate(20deg);
	-ms-transform: rotate(20deg);
	-o-transform: rotate(20deg);
	transform: rotate(20deg);
}
.grid-effect-mv span:nth-child(3) i{
	-webkit-transform: rotate(120deg);
	-ms-transform: rotate(120deg);
	-o-transform: rotate(120deg);
	transform: rotate(120deg);	
}
.grid-effect-mv span:nth-child(4) i{
	-webkit-transform: rotate(200deg);
	-ms-transform: rotate(200deg);
	-o-transform: rotate(200deg);
	transform: rotate(200deg);	
}
.grid-s .grid-effect-mv span:nth-child(1){
	top: -80px;
	left: -20px;
}
.grid-s .grid-effect-mv span:nth-child(2){
	top: -80px;
	right: -20px;
}
.grid-s .grid-effect-mv span:nth-child(3){
	bottom: -80px;
	right: -20px;
}
.grid-s .grid-effect-mv span:nth-child(4){
	bottom: -80px;
	left: -20px;
}



#specialmovie .grid-effect,
#series .grid-effect,
#voices .grid-effect,
#question .grid-effect{
	opacity: 1;
}





#gnav .nav-top span:nth-child(1){
	background: url(../img/common/nav_top.png) 10px 50% no-repeat;
	background-size: auto 100%;
}
#gnav .nav-top span:nth-child(2){
	background: url(../img/common/nav_top_on.png) 10px 50% no-repeat;
	background-size: auto 100%;
}
#gnav .nav-100voices span:nth-child(1){
	background: url(../img/common/nav_100voices.png) 10px 50% no-repeat;
	background-size: auto 100%;
}
#gnav .nav-100voices span:nth-child(2){
	background: url(../img/common/nav_100voices_on.png) 10px 50% no-repeat;
	background-size: auto 100%;
}
#gnav .nav-question span:nth-child(1){
	background: url(../img/common/nav_question.png) 10px 50% no-repeat;
	background-size: auto 100%;
}
#gnav .nav-question span:nth-child(2){
	background: url(../img/common/nav_question_on.png) 10px 50% no-repeat;
	background-size: auto 100%;
}
#gnav .nav-specialmovie span:nth-child(1){
	background: url(../img/common/nav_specialmovie.png) 10px 50% no-repeat;
	background-size: auto 100%;
}
#gnav .nav-specialmovie span:nth-child(2){
	background: url(../img/common/nav_specialmovie_on.png) 10px 50% no-repeat;
	background-size: auto 100%;
}

.wrap{
	width: 100%;
	overflow: hidden;
}

.contents{
	position: relative;
	z-index: 10;
}


@media screen and (min-width: 751px) {

	body {
		font-size: 14px;
		width: 100%;
		background: #000;
	}
	.inner{
		margin: auto;
		max-width: 936px;
		padding: 0 20px;
		box-sizing: border-box;
	}
	.contents-header{
		height: 210px;
		background: #fff;
	}
	.contents-inner{
		padding: 20px 0 0;
	}

	.section-header {
		height: 66px;	
	}
	.section-header .section-title{
		height: 100%;
	}

	.ignore-pc{
		display: none;
	}

	
	.header-txt{
		position: relative;
		margin: auto;
		max-width: 1480px;
		padding: 0 1.35%;
		box-sizing: border-box;
	}
	.header-txt-inner{
		position: relative;
		margin: auto;
		max-width: 1480px;
		box-sizing: border-box;
	}
	.lower .header-txt-inner{
		padding: 0 0 0 100px;
	}	
	#top .header-txt-inner{
		background: #e60012;
	}
	.header-txt img{
		width: 100%;
		height: auto;
	}

	#top #footer-section{
		padding: 30px 0 0;
	}
	.footer-txt{
		position: relative;
		margin: auto;
		max-width: 1480px;
		padding: 0 1.35%;
		box-sizing: border-box;
	}
	.footer-txt-inner{
		position: relative;
		margin: auto;
		max-width: 1480px;
		box-sizing: border-box;
	}
	.footer-txt img{
		width: 100%;
		height: auto;
	}





	/* ticker-txt
	--------------------------------------------------------*/

	.ticker-txt{
		position: relative;
	}	
	.ticker-txt p{
		font-size: 76px;
		vertical-align: middle;
	}
	.ticker-txt p em{
		font-size: 100px;
		vertical-align: middle;
	}
	.ticker-txt p i{
		vertical-align: middle;
	}
	.ticker-txt p span{
		line-height: 1;
		padding: 0 0 0 10px;
	}
	.ticker-txt p strong{
		color: #e60012;
		vertical-align: middle;
	}
	.ticker-txt p em strong{
		vertical-align: top;
	}
	.ticker-title{
		position: relative;
	}
	.ticker-title-top p{
		padding: 10px 0;
		line-height: 1;
		font-size: 90px;
	}
	.ticker-title-top p span{
		line-height: 1;
		padding: 8px 6px;
	}
	.ticker-title-top p{
		background: #e60012;
		color: #000;
	}	
	.ticker-title-top p strong{
		color: #fff;
	}	
	.ticker-title-low p{
		padding: 10px 0;
		line-height: 1;
		font-size: 100px;
	}
	.ticker-title-low p em{
		font-size: 130px;
		vertical-align: middle;
	}
	.ticker-title-low p{
		color: #fff;
	}	
	.ticker-title-low p strong{
		color: #e60012;
	}	



	.grid .ticker-txt p{
		color: #000;
	}
	.grid-l .ticker-txt p,
	.grid-m .ticker-txt p{
		font-size: 46px;
	}
	.grid-s .ticker-txt p,
	.grid-sm .ticker-txt p,
	.grid-w .ticker-txt p,
	.grid-v .ticker-txt p{
		font-size: 30px;
	}

	.ticker-btn .ticker-txt p{
		color: #000;
		font-size: 71px;
		height: 70px;
		line-height: 70px;
		text-align: left;
	}
	.ticker-btn .ticker-txt p span{
		line-height: 1;
		font-weight: 700;
	}	


	/* effect
	--------------------------------------------------------*/
	
	.grid-effect{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 0;
		pointer-events: none;
		z-index: 100;
	}
	.entry-obj .grid-effect{
		opacity: 1;
	}
	.grid .grid-effect.onmouse,
	.grid .grid-effect.on{
		opacity: 1;
	}
	.grid .grid-effect.shake,
	.entry-obj .grid-effect.shake,
	.movie-box .grid-effect.shake{
		animation: bal_shake 100ms linear 2;
	}
	.grid-wrap.hide .grid-effect{
		display: none;
	}

	.entry-obj-box{
		position: absolute;
		bottom: -90px;
		right: -90px;
	}

	.entry-obj .grid-effect-box{
		position: absolute;
		top:0;
		width: 180px;
		height: 350px;
		-webkit-transform-origin: top center;
		-moz-transform-origin: top center;
		-ms-transform-origin: top center;
		-o-transform-origin: top center;
		transform-origin: top center;
	}
	.entry-obj .entry-fig-box{
		position: relative;
		top: 20px;
		-webkit-transform-origin: top center;
		-moz-transform-origin: top center;
		-ms-transform-origin: top center;
		-o-transform-origin: top center;
		transform-origin: top center;
	}

	.entry-obj{
		position: relative;
		right: 0;
		top: 0;
		width: 180px;
		z-index: 50;
		-webkit-transform-origin: top right;
		-moz-transform-origin: top right;
		-ms-transform-origin: top right;
		-o-transform-origin: top right;
		transform-origin: top right;
	}
	.entry-obj figure{
		position: relative;
		text-align: center;
		height: 350px;
		width: auto;
	}
	.entry-obj figure img{
		position: absolute;
		left: -10px;
		top: 50%;
		margin-top: -80px; 
		height: 190px;
		width: auto;
	}


	/* nav
	--------------------------------------------------------*/


	.nav-inner{
		position: fixed;
		top: 60px;
		right: 0;
		width: calc(25% + 44px);
		width: -webkit-calc(25% + 44px);
		height: 100%;
		z-index: 100;
		border-top: 5px solid #000;
		background: #fff;
		-webkit-transform: translateX(100%);
		-ms-transform: translateX(100%);
		-o-transform: translateX(100%);
		transform: translateX(100%);
		-webkit-transition: transform 200ms ease;
		-o-transition: transform 200ms ease;
		transition: transform 200ms ease;
		box-sizing: border-box;

	}
	.gnav-wrap.on .nav-inner{
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);		
	}

	#gnav{
		min-width: 380px;
	}
	#gnav li{
		position: relative;
	}
	#gnav li + li{
		border-top: 5px solid #000;
	}
	#gnav li:last-child{
		border-bottom: 5px solid #000;
	}
	#gnav li a{
		position: relative;
		display: block;
		width: 350px;
		padding: 25px 0 25px 44px;
		height: 36px;
		-webkit-transform-origin: top left;
		-moz-transform-origin: top left;
		-ms-transform-origin: top left;
		-o-transform-origin: top left;
		transform-origin: top left;
	}


	#gnav li a span{
		display: block;
		width: 100%;
		height: 36px;
		text-indent: -9999px;
	}
	#gnav li a span{
		position: absolute;
	}
	#gnav li a span:nth-child(1){
		z-index: 20;
	}
	#gnav li a span:nth-child(2){
		z-index: 10;
		display: none;
	}
	#gnav li.nav-question a,
	#gnav li.nav-question a span{
		height: 42px;
	}
	#gnav li a:hover span:nth-child(1),
	#gnav li.active a span:nth-child(1){
		display: none;
	}
	#gnav li a:hover span:nth-child(2),
	#gnav li.active a span:nth-child(2){
		display: block;
	}
	#gnav li:hover,
	#gnav li.active{
		background: #e60012;
	}
	#gnav li a:before{
		content: "";
		position: absolute;
		width: 0;
		height: 0;
		top: 50%;
		left: 20px;
		margin: -8px 0 0;
		border-style: solid;
		border-width: 8px 0 8px 12px;
		border-color: transparent transparent transparent #000;
	}
	#gnav li a:hover:before,
	#gnav li.active :before{
		border-color: transparent transparent transparent #fff;
	}




	.btn-nav-open{
		position: fixed;
		top: 0;
		right: 0;
		width: 60px;
		height: 60px;
		background: #000;
		z-index: 2600;
	}
	.btn-nav-open a{
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
	}
	.btn-nav-open i{
		position: absolute;
		display: block;
		margin: auto;
		left: 0;
		right: 0;
		width: 36px;
		height: 8px;
		background: #fff;
	}
	.btn-nav-open i:nth-child(1){
		top: 12px;
	}
	.btn-nav-open i:nth-child(2){
		top: 50%;
		margin-top: -4px;
	}
	.btn-nav-open i:nth-child(3){
		bottom: 12px;
	}



	.btn-nav-close{
		position: absolute;
		top: 0;
		right: 0;
		width: 60px;
		height: 60px;
		z-index: 2700;
		background: #fff;
		display: none;
	}
	.btn-nav-close a{
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
	}
	.btn-nav-close.on{
		display: block;
	}
	.btn-nav-close i{
		position: absolute;
		display: block;
		top: 50%;
		left: 50%;
		margin: -4px 0 0 -18px;
		width: 36px;
		height: 8px;
		background: #000;
	}
	.btn-nav-close i:nth-child(1){
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.btn-nav-close i:nth-child(2){
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);

	}




	.btn-popup-close{
		position: absolute;
		right: 0;
		width: 60px;
		height: 60px;
		z-index: 150;
		background: #fff;
	}
	.btn-popup-close i{
		position: absolute;
		display: block;
		top: 50%;
		left: 50%;
		margin: -4px 0 0 -18px;
		width: 36px;
		height: 8px;
		background: #000;
	}
	.btn-popup-close i:nth-child(1){
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.btn-popup-close i:nth-child(2){
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);

	}


	/* header
	--------------------------------------------------------*/
	#gheader{	
		position: relative;
		width: 100%;
		height: 60px;
		z-index: 4500;
	}
	#gheader .header-inner{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 60px;
		background: #fff;
		z-index: 2500;
	}
	#gheader h1{
		position: relative;
		left: 13px;
		height: 60px;
	}
	#gheader h1 a{
		display: block;
		width: 237px;
		height: 60px;
	}
	#gheader h1 a span{
		display: block;
		height: 60px;
		text-indent: -9999px;
		background: url(../img/common/logo_fujitsu_fmv.png) 0 50% no-repeat;
		background-size: 237px 46px;
	}



	/* grid
	--------------------------------------------------------*/
	
	.grid-container{
		position: relative;
		z-index: 10;
	}
	.grid-container.ease{
		-webkit-transition: height 300ms ease;
		-o-transition: height 300ms ease;
		transition: height 300ms ease;
	}
	.grid-wrap.hide{
		overflow: hidden;
	}
	.grid-wrap.ease{
		-webkit-transition: height 300ms ease;
		-o-transition: height 300ms ease;
		transition: height 300ms ease;
	}
	.grid-box{
		margin: auto;
		width: 1480px;
		-webkit-transform-origin: top left;
		-moz-transform-origin: top left;
		-ms-transform-origin: top left;
		-o-transform-origin: top left;
		transform-origin: top left;
	}
	


	.layout-1{
		position: relative;
		height: 859px;
	}
	.layout-2{
		position: relative;
		height: 1148px;
	}
	.layout-3{
		position: relative;
		height: 564px;
	}
	.layout-4{
		position: relative;
		height: 1752px;
		z-index: 10;
	}

	.layout-1 ul,
	.layout-2 ul,
	.layout-3 ul,
	.layout-4 ul{
		position: relative;
	}


	.grid figure img{
		width: 100%;
		height: auto;
	}
	.grid{
		position: absolute;
	}
	.grid-inner{
		position: relative;
		overflow: hidden;
		width: 100%;
	}
	.grid-s{
		width: 272px;
		height: 272px;
	}
	.grid-m{
		width: 564px;
		height: 564px;
	}
	.grid-sm{
		width: 272px;
		height: 272px;
	}
	.grid-l{
		width: 856px;
		height: 564px;
	}
	.grid-ls{
		width: 856px;
		height: 564px;
	}
	.grid-lm{
		width: 856px;
		height: 564px;
	}
	.grid-w{
		width: 564px;
		height: 273px;
	}
	.grid-v{
		width: 272px;
		height: 856px;
	}
	.grid-v a.bg-motion1{
		background: url(../img/common/bg_motion1.png) 0 0 no-repeat;
	}
	.grid-v a.bg-motion1:hover{
		background: url(../img/common/bg_motion1_on.png) 0 0 no-repeat;
	}
	.grid-v a.bg-motion2{
		background: url(../img/common/bg_motion2.png) 0 0 no-repeat;
	}
	.grid-v a.bg-motion2:hover{
		background: url(../img/common/bg_motion2_on.png) 0 0 no-repeat;
	}
	.grid-v a.bg-motion3{
		background: url(../img/common/bg_motion3.png) 0 0 no-repeat;
	}
	.grid-v a.bg-motion3:hover{
		background: url(../img/common/bg_motion3_on.png) 0 0 no-repeat;
	}
	.grid-v a.bg-motion4{
		background: url(../img/common/bg_motion4.png) 0 0 no-repeat;
	}
	.grid-v a.bg-motion4:hover{
		background: url(../img/common/bg_motion4_on.png) 0 0 no-repeat;
	}

	.grid a{
		position: relative;
		display: block;
	}
	.grid a figure img{
		-webkit-transition: transform 200ms ease;
		-o-transition: transform 200ms ease;
		transition: transform 200ms ease;
	}
	.grid a:hover figure img{
		-webkit-transform: scale(1.1);
		-ms-transform: scale(1.1);
		-o-transform: scale(1.1);
		transform: scale(1.1);
	}
	.grid-v a:hover figure img{
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}


	/* feature
	--------------------------------------------------------*/
	.lower #feature{
		padding-top: 20px;
	}
	.feature-box{
		position: relative;
		margin: auto;
		width: 1120px;
		height: 600px;
		z-index: 100;
	}
	.feature-inner-box{
		height: 600px;
		-webkit-transform-origin: top left;
		-moz-transform-origin: top left;
		-ms-transform-origin: top left;
		-o-transform-origin: top left;
		transform-origin: top left;
	}
	.feature-box .feature-fig-box{
	}
	.feature-box .feature-fig-box figure{
		position: absolute;
	}
	.feature-box .feature-fig-box figure:nth-child(1){
		top: 20px;
		left: 10px;
	}
	.feature-box .feature-fig-box figure:nth-child(2){
		top: 20px;
		left: 195px;
	}
	.feature-box .feature-fig-box figure:nth-child(3){
		top: 20px;
		left: 400px;
	}
	.feature-box .feature-txt{
		position: absolute;
		right: -20px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.feature-box .feature-txt figure.move{
		animation: stamp 3000ms ease infinite;
	}
	.feature-box .feature-txt figure a{
		display: block;
	}
	.feature-box .feature-txt figure.onmouse{
		animation: stampon 3000ms ease 1;
	}




	/* footer
	--------------------------------------------------------*/

	#gfooter{
		position: relative;
		padding: 50px 0;
		width: 100%;
	}
	#gfooter .footer-inner{
		position: relative;
		margin: 60px auto 0;
		padding: 0 80px;
		max-width: 1050px;
		text-align: left;
		box-sizing: border-box;
	}
	#gfooter .footer-inner .note-list li{
		display: inline-block;
		font-size: 12px;
	}
	#gfooter .footer-inner .note-list li + li{
		margin: 0 0 0 25px;
	}
	#gfooter .footer-inner p{
		margin: 20px 0 0;
		font-size: 12px;
		color: #fff;
	}

	#intel-footer{
		color: #181818;
		background: #fff;
		font-size: 16px;
	}
	#intel-footer section{
		max-width: 1200px;
		width: 94%;
		margin: auto;
	}

	#intel-footer dl{
		padding: 20px 0;
		display: table;
	}
	#intel-footer dl dt {
		width: 50%;
	}
	#intel-footer dl dt img {
		vertical-align: middle;
	}

	#intel-footer dl dt span{
		margin: 0 0 0 35px;
		font-size: 1.1em;
		letter-spacing: 0.1em;
		display: inline-block;
		font-weight: bold;
		font-family: Arial, 'メイリオ', Meiryo, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', Osaka, 'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', sans-serif;
	}
	#intel-footer dl dt,
	#intel-footer dl dd {
		display: table-cell;
		vertical-align: middle;
	}
	#intel-footer dl dd {
		display: table-cell;
		vertical-align: middle;
		line-height: 140%;
	}
	#intel-footer dl dd.cap {
		font-size: 0.7em;
		font-family: Arial, 'メイリオ', Meiryo, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', Osaka, 'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', sans-serif;
	}



	.nav-sns{
		position: absolute;
		right: 80px;
		top: 0;
		height: 50px;
		font-size: 0;
	}
	.nav-sns li{
		display: inline-block;
	}
	.nav-sns li + li{
		margin: 0 0 0 15px;
	}
	.nav-sns li a{
		display: block;
		width: 50px;
		height: 50px;
		-webkit-transition: opacity ease 300ms;
		-o-transition: opacity ease 300ms;
		transition: opacity ease 300ms;
	}
	.nav-sns li:nth-child(1) a{
		background: url(../img/common/icon_tw.png) 50% 50% no-repeat;
		background-size: 100% 100%;
	}
	.nav-sns li:nth-child(2) a{
		background: url(../img/common/icon_fb.png) 50% 50% no-repeat;
		background-size: 100% 100%;
	}
	.nav-sns li a:hover{
		opacity: 0.7;
	}




	/* btn cointact
	--------------------------------------------------------*/	


	.btn-contact{
		position: relative;
		margin: auto;
		max-width: 890px;
		height: 105px;
		overflow: hidden;
	}
	.btn-contact a{
		position: absolute;
		display: block;
		width: 100%;
		height: 100%;
		background: #e60012;
	}
	.btn-contact a span{
		position: relative;
		display: block;
		max-width: 890px;
		height: 100%;
		text-indent: -9999px;
	}
	.btn-contact a:nth-child(1){
		z-index: 20;
	}
	.btn-contact a:nth-child(1) span{
		background: url(../img/common/btn_contact.png) 50% 50% no-repeat;
	}
	.btn-contact a:nth-child(2){
		background: #fff;
		z-index: 10;
	}
	.btn-contact a:nth-child(2) span{
		background: url(../img/common/btn_contact_on.png) 50% 50% no-repeat;
	}
	.btn-contact:hover a:nth-child(1){
		opacity: 0;
	}

	/* btn more
	--------------------------------------------------------*/	

	.btn-more{
		margin: auto;
		width: 500px;
		height: 70px;
		overflow: hidden;
	}

	.btn-more.on{
		display: block;
	}
	.btn-more.off{
		display: none;
	}

	.btn-more a{
		display: block;
		width: 100%;
		height: 100%;
		text-indent: -9999px;
		background: #fff;
	}
	.btn-more a:hover{
		background: #e60012;
	}
	.btn-more a span{
		display: block;
		width: 100%;
		height: 100%;
	}
	.btn-more a span{
		background: url(../img/common/btn_more.png) 50% 50% no-repeat;
		background-size: auto 100%;
	}



	/* btn back
	--------------------------------------------------------*/	
	.btn-back{
		position: absolute;
		top: 0;
		left: 0;
		width: 100px;
		height: 100%;
		z-index: 10;
		background: #000;
	}
	.btn-back a{
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
		background: url(../img/common/arrow_l.png) 20px 50% no-repeat;
	}


	/* btn top
	--------------------------------------------------------*/	

	.footer-link{
		display: flex;
		margin: 70px auto 0;
		max-width: 890px;
		flex-wrap: wrap;

	}
	#top .footer-link{
		display: none;
	}
	.btn-footer{
		width: 50%;
		height: 70px;
		overflow: hidden;
		box-sizing: border-box;
	}
	.btn-footer:nth-child(1){
		width: 100%;
	}
	.btn-footer:nth-child(2){
		padding: 0 10px 0 0;
	}
	.btn-footer:nth-child(3){
		padding: 0 0 0 10px;
	}
	.btn-footer:nth-child(n+2){
		margin: 20px 0 0;
	}

	.btn-footer.on{
		display: block;
	}
	.btn-footer.off{
		display: none;
	}
	.btn-footer a{
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
		background: #fff;
		color: #000;
		text-indent: -9999px;
		line-height: 70px;
		text-align: center;
		font-size: 70px;
	}
	.btn-footer a span{
		display: block;
		width: 100%;
		height: 100%;
	}
	.btn-footer a:hover{
		background: #e60012;
	}
	.btn-top a span{
		background: url(../img/common/btn_top.png) 50% 50% no-repeat;
		background-size: auto 100%;
	}
	.btn-100voices a span{
		background: url(../img/common/btn_100voices.png) 50% 50% no-repeat;
		background-size: auto 100%;
	}
	.btn-specialmovie a span{
		background: url(../img/common/btn_specialmovie.png) 50% 50% no-repeat;
		background-size: auto 100%;
	}
	.btn-question a span{
		background: url(../img/common/btn_question.png) 50% 50% no-repeat;
		background-size: auto 100%;
	}

	.footer-link-fmv{
		margin: 70px auto 0;
		max-width: 890px;
	}
	.footer-link-fmv .btn-footer{
		width: 100%;
	}

	.footer-link-fmv .btn-fmv a{
		background: #e60012;
	}
	.footer-link-fmv .btn-fmv a:hover{
		background: #fff;
	}
	.footer-link-fmv .btn-fmv a span{
		background: url(../img/common/btn_fmv.png) 50% 50% no-repeat;
		background-size: auto 100%;
	}
	.footer-link-fmv .btn-fmv a:hover span{
		background: url(../img/common/btn_fmv_on.png) 50% 50% no-repeat;
		background-size: auto 100%;
	}



	/* btn pt
	--------------------------------------------------------*/	
	.btn-pt{
		position: fixed;
		bottom: 0;
		right: 0;
		width: 70px;
		height: 70px;
		z-index: 1000;
		opacity: 0;
		-webkit-transition: opacity ease 300ms;
		-o-transition: opacity ease 300ms;
		transition: opacity ease 300ms;
	}
	.btn-pt.on{
		opacity: 1;
	}
	.btn-pt.set{
		position: absolute;
		bottom: 20px;
		right: 0;
	}
	.btn-pt a{
		position: relative;
		display: block;
		width: 70px;
		height: 70px;
		background: #fff;
	}
	.btn-pt a:after{
		content: "";
		position: absolute;
		display: block;
		margin: auto;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		width: 48px;
		height: 40px;
		background: url(../img/common/btn_pt.png) 50% 50% no-repeat;
		background-size: 100% 100%;

		-webkit-transition: transform ease 300ms;
		-o-transition: transform ease 300ms;
		transition: transform ease 300ms;
	}
	.btn-pt a:hover:after{
		-webkit-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		-o-transform: translateY(-10px);
		transform: translateY(-10px);
	}	





	/* popup
	--------------------------------------------------------*/

	.popup{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(255,255,255,.95);
		z-index: 5000;
		padding: 0 20px;
		display: none;
		box-sizing: border-box;
	}
	.popup-wrap{
		position: relative;
		width: 100%;
		height: 100%;
	}
	.popup-box{
		position: absolute;
		left: 50%;
		top: 50%;
		width: 100%;
		max-width: 980px;
		-webkit-transform: translate(-50%,-50%);
		-ms-transform: translate(-50%,-50%);
		-o-transform: translate(-50%,-50%);
		transform: translate(-50%,-50%);
	}
	
	.popup .movie{
		position: relative;
		padding-top: 56.25%;
	}
	.popup .movie iframe{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}


	.play-movie{
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
	}
	.play-movie .icon-play{
		position: absolute;
		content: "";
		margin: auto;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		width: 109px;
		height: 109px;	
		display: block;
		z-index: 100;
	}
	.play-movie .icon-play:before{
		position: absolute;
		content: "";
		display: block;
		margin: auto;
		width: 109px;
		height: 109px;
		border-radius: 55px;
		border: 4px solid #000;
		background: #fff;
		box-sizing: border-box;
		z-index: 20;
	}
	.play-movie .icon-play:after{
		position: absolute;
		content: "";
		display: block;
		left: 50%;
		top: 50%;
		margin: -22.5px 0 0 -15px;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 22.5px 0 22.5px 35px;
		border-color: transparent transparent transparent #000;
		z-index: 30;
	}
	.play-movie:hover .icon-play:before{
		background: #e42113;
	}



}


@media screen  and (min-width: 751px) and (max-width: 840px) {


	#gfooter .footer-inner .note-list li{
		display: block;
	}
	#gfooter .footer-inner .note-list li + li{
		margin: 10px 0 0;
	}


}




@media screen  and (min-width: 751px) and (max-width: 1100px) {


	/* footer
	--------------------------------------------------------*/

	#intel-footer dl{
		display: block;
	}

	#intel-footer dl dt,
	#intel-footer dl dd {
		width: 100%;
		text-align: center;
		display: block;
		vertical-align: middle;
		line-height: 1.8;
	}
	#intel-footer dl dd {
		margin: 40px 0 0;
	}

}








@media screen and (max-width: 750px) {


	.ignore-sp{
		display: none;
	}
	body {
		width: 100%;
		background: #000;
	}
	.inner{
		margin: auto;
		max-width: 936px;
		padding: 0 30px;
		box-sizing: border-box;
	}
	.contents-header{
		height: 60px;
		background: #fff;
	}
	.contents-inner{
		padding: 7.5px 0 0;
	}

	.section-header {
		height: 32px;	
	}
	.section-header .section-title{
		height: 100%;
	}


	.header-txt{
		position: relative;
		padding: 15px 0;
	}
	.header-txt-inner{
		position: relative;
		margin: auto;
		max-width: 1480px;
		box-sizing: border-box;
	}
	.lower .header-txt-inner{
		padding: 0 0 0 55px;
	}	
	#top .header-txt{
		padding: 10px 0;
		background: #e60012;
	}
	.header-txt img{
		width: 100%;
		height: auto;
	}
	#top #footer-section{
		padding: 25px 0 0;
	}
	.footer-txt{
		position: relative;
		margin: auto;
		max-width: 1480px;
		padding: 0 1.35%;
		box-sizing: border-box;
	}
	.footer-txt-inner{
		position: relative;
		margin: auto;
		max-width: 1480px;
		box-sizing: border-box;
	}
	.footer-txt img{
		width: 100%;
		height: auto;
	}


	/* ticker-txt
	--------------------------------------------------------*/

	.ticker-txt{
		position: relative;
	}	
	.ticker-txt p{
		font-size: 38px;
	}
	.ticker-txt p em{
		font-size: 48px;
		vertical-align: middle;
	}
	.ticker-txt p i{
		vertical-align: middle;
	}
	.ticker-txt p span{
		line-height: 1;
		padding: 0 6px;
	}
	.ticker-txt p strong{
		color: #e60012;
		vertical-align: middle;
	}
	.ticker-txt p em strong{
		vertical-align: top;
	}
	.ticker-title{
		position: relative;
	}
	.ticker-title-top p{
		padding: 6px 0;
		line-height: 1;
		font-size: 46px;
	}	
	.ticker-title-top p{
		background: #e60012;
		color: #000;
	}
	.ticker-title-top p span{
		line-height: 1;
		padding: 15px 6px;
	}
	.ticker-title-top p strong{
		color: #fff;
	}	
	.ticker-title-low p{
		padding: 20px 0;
		line-height: 1;
		font-size: 46px;
	}
	.ticker-title-low p em{
		font-size: 60px;
		vertical-align: middle;
	}
	.ticker-title-low p{
		color: #fff;
	}	
	.ticker-title-low p strong{
		color: #e60012;
	}	




	.grid .ticker-txt p{
		color: #000;
	}
	.grid-l .ticker-txt p,
	.grid-m .ticker-txt p{
		font-size: 40px;
	}
	.grid-s .ticker-txt p,
	.grid-w .ticker-txt p,
	.grid-v .ticker-txt p{
		font-size: 24px;
	}

	.ticker-btn .ticker-txt p{
		color: #000;
		font-size: 35px;
		height: 35px;
		line-height: 35px;
		text-align: left;
	}
	.ticker-btn .ticker-txt p span{
		line-height: 1;
		font-weight: 700;
	}	


	/* effect
	--------------------------------------------------------*/
	
	.grid-effect{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 50;
		opacity: 0;
		pointer-events: none;
		z-index: 10000;
	}

	.layout ul + ul{
		display: none;
	}

	.entry-obj .grid-effect{
		opacity: 1;
	}
	.grid .grid-effect.onmouse,
	.grid .grid-effect.on{
		opacity: 1;
	}	
	.grid .grid-effect.shake,
	.entry-obj .grid-effect.shake,
	.movie-box .grid-effect.shake{
		animation: bal_shake 100ms linear 2;
	}
	.grid-wrap.hide .grid-effect{
		display: none;
	}


	.entry-obj{
		position: relative;
		right: 0;
		top: -20px;
		width: 350px;
		z-index: 50;

		-webkit-transform-origin: top right;
		-moz-transform-origin: top right;
		-ms-transform-origin: top right;
		-o-transform-origin: top right;
		transform-origin: top right;

	}

	.grid-effect-box{
		position: absolute;
		top:0;
		width: 350px;
		height: 450px;
		-webkit-transform-origin: top left;
		-moz-transform-origin: top left;
		-ms-transform-origin: top left;
		-o-transform-origin: top left;
		transform-origin: top left;
	}
	.entry-fig-box{
		-webkit-transform-origin: top left;
		-moz-transform-origin: top left;
		-ms-transform-origin: top left;
		-o-transform-origin: top left;
		transform-origin: top left;
	}


	.entry-obj-box{
		position: absolute;
		bottom: -60px;
		right: 0;
		width: 50%;
		-webkit-transform: translateY(100%);
		-ms-transform: translateY(100%);
		-o-transform: translateY(100%);
		transform: translateY(100%);
	}

	.entry-obj figure{
		position: relative;
		text-align: center;
		height: 450px;
		width: auto;
	}
	.entry-obj figure img{
		position: absolute;
		left: 50%;
		top: 50%;
		margin: -120px 0 0 -150px; 
		width: 400px;
		height: 294px;
	}

	.entry-obj .grid-effect-1 span:nth-child(1){
		top: -20px;
		left: 50px;
	}
	.entry-obj .grid-effect-1 span:nth-child(2){
		bottom: 0;
		right: 10px;
	}
	.entry-obj .grid-effect-1 span:nth-child(3){
		bottom: 30px;
		left: 30px;
	}

	.entry-obj .grid-effect-2 span:nth-child(1){
		top: -30px;
		left: 0;
	}
	.entry-obj .grid-effect-2 span:nth-child(2){
		top: 70px;
		left: 10px;
	}
	.entry-obj .grid-effect-2 span:nth-child(3){
		bottom: 20px;
		right: 10px;
	}

	.entry-obj .grid-effect-3 span:nth-child(1){
		top: -10px;
		left: 10px;
	}
	.entry-obj .grid-effect-3 span:nth-child(2){
		top: 10px;
		right: 0;
	}
	.entry-obj .grid-effect-3 span:nth-child(3){
		bottom: 30px;
		left: 10px;
	}

	.entry-obj .grid-effect-4 span:nth-child(1){
		top: -40px;
		left: 10px;
	}
	.entry-obj .grid-effect-4 span:nth-child(2){
		top: 20px;
		right: 0;
	}
	.entry-obj .grid-effect-4 span:nth-child(3){
		bottom: 30px;
		left: 20px;
	}

	.entry-obj .grid-effect-5 span:nth-child(1){
		top: -30px;
		right: -20px;
	}
	.entry-obj .grid-effect-5 span:nth-child(2){
		bottom: 30px;
		left: 20px;
	}

	.entry-obj .grid-effect-6 span:nth-child(1){
		top: 10px;
		left: 20px;
	}
	.entry-obj .grid-effect-6 span:nth-child(2){
		bottom: 20px;
		right: 20px;
	}

	/* nav
	--------------------------------------------------------*/


	.gnav-wrap.on .nav-inner{
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);		
	}



	.nav-inner{
		position: fixed;
		top: 50px;
		right: 0;
		width: 300px;
		height: 100%;
		z-index: 100;
		box-sizing: border-box;
		border-top: 3px solid #000;
		overflow: auto;
		background: #fff;
		-webkit-transform: translateX(100%);
		-ms-transform: translateX(100%);
		-o-transform: translateX(100%);
		transform: translateX(100%);
		-webkit-transition: transform 200ms ease;
		-o-transition: transform 200ms ease;
		transition: transform 200ms ease;

	}
	#gnav{
		-webkit-transform-origin: top left;
		-moz-transform-origin: top left;
		-ms-transform-origin: top left;
		-o-transform-origin: top left;
		transform-origin: top left;
	}
	#gnav ul{
		width: 1200px;
	}
	#gnav li{
		position: relative;
	}
	#gnav li + li{
		border-top: 3px solid #000;
	}
	#gnav li:last-child{
		border-bottom: 3px solid #000;
	}

	#gnav li a{
		display: block;
		width: 100%;
		padding: 12px 0 12px 20px;
		height: 26px;
	}
	#gnav li a span{
		display: block;
		width: 100%;
		height: 26px;
		text-indent: -9999px;
	}




	#gnav li a span{
		position: absolute;
	}
	#gnav li a span:nth-child(1){
		z-index: 20;
	}
	#gnav li a span:nth-child(2){
		z-index: 10;
		display: none;
	}
	#gnav li.nav-question a,
	#gnav li.nav-question a span{
		height: 31px;
	}
	#gnav li.active a span:nth-child(1){
		display: none;
	}
	#gnav li.active a span:nth-child(2){
		display: block;
	}
	#gnav li.active{
		background: #e60012;
	}
	#gnav li a:before{
		content: "";
		position: absolute;
		width: 0;
		height: 0;
		top: 50%;
		left: 13px;
		margin: -4px 0 0;
		border-style: solid;
		border-width: 4px 0 4px 6px;
		border-color: transparent transparent transparent #000;
	}
	#gnav li.active :before{
		border-color: transparent transparent transparent #fff;
	}


	.btn-nav-open{
		position: fixed;
		top: 0;
		right: 0;
		width: 50px;
		height: 50px;
		background: #000;
		z-index: 2600;

	}
	.btn-nav-open a{
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
	}
	.btn-nav-open i{
		position: absolute;
		display: block;
		margin: auto;
		left: 0;
		right: 0;
		width: 25px;
		height: 6px;
		background: #fff;
	}
	.btn-nav-open i:nth-child(1){
		top: 13px;
	}
	.btn-nav-open i:nth-child(2){
		top: 50%;
		margin-top: -3px;
	}
	.btn-nav-open i:nth-child(3){
		bottom: 13px;
	}



	.btn-nav-close{
		position: absolute;
		top: 0;
		right: 0;
		width: 50px;
		height: 50px;
		z-index: 2700;
		background: #fff;
		display: none;
	}
	.btn-nav-close a{
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
	}
	.btn-nav-close.on{
		display: block;
	}
	.btn-nav-close i{
		position: absolute;
		display: block;
		top: 50%;
		left: 50%;
		margin: -3px 0 0 -13px;
		width: 26px;
		height: 6px;
		background: #000;
	}
	.btn-nav-close i:nth-child(1){
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.btn-nav-close i:nth-child(2){
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);

	}




	.btn-popup-close{
		position: absolute;
		top: 14px;
		right: 15px;
		width: 22px;
		height: 22px;
		z-index: 150;
		background: #fff;
	}
	.btn-popup-close i{
		position: absolute;
		display: block;
		top: 50%;
		left: 50%;
		margin: -3px 0 0 -13px;
		width: 26px;
		height: 6px;
		background: #000;
	}
	.btn-popup-close i:nth-child(1){
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.btn-popup-close i:nth-child(2){
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);

	}





	/* header
	--------------------------------------------------------*/
	#gheader{	
		position: relative;
		width: 100%;
		height: 50px;
		z-index: 2500;
	}
	#gheader .header-inner{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 50px;
		background: #fff;
		z-index: 2700;
	}
	#gheader h1{
		position: relative;
		left: 13px;
		height: 50px;
	}
	#gheader h1 a{
		display: block;
		width: 191px;
		height: 50px;
	}
	#gheader h1 a span{
		display: block;
		height: 50px;
		text-indent: -9999px;
		background: url(../img/common/logo_fujitsu_fmv.png) 0 50% no-repeat;
		background-size: auto 37px;
	}



	/* grid
	--------------------------------------------------------*/
	
	.grid-container{
		position: relative;
		z-index: 10;
	}
	.grid-container.ease{
		-webkit-transition: height 300ms ease;
		-o-transition: height 300ms ease;
		transition: height 300ms ease;
	}
	.grid-wrap.hide{
		overflow: hidden;
	}
	.grid-wrap.ease{
		-webkit-transition: height 300ms ease;
		-o-transition: height 300ms ease;
		transition: height 300ms ease;
	}
	.grid-box{
		width: 1480px;
		-webkit-transform-origin: top left;
		-moz-transform-origin: top left;
		-ms-transform-origin: top left;
		-o-transform-origin: top left;
		transform-origin: top left;
	}
	


	.layout-1{
		position: relative;
		height: 859px;
	}
	.layout-2{
		position: relative;
		height: 1700px;
	}
	.layout-3{
		position: relative;
		height: 477px;
	}
	.layout-4{
		position: relative;
		height: 2206px;
		z-index: 10;
	}

	.layout-1 ul,
	.layout-2 ul,
	.layout-3 ul,
	.layout-4 ul{
		position: relative;
	}


	.grid figure img{
		width: 100%;
		height: auto;
	}

	.grid{
		position: absolute;
	}
	.grid-inner{
		position: relative;
		overflow: hidden;
		width: 100%;
	}
	.grid-s{
		width: 230px;
		height: 230px;
	}
	.grid-m{
		width: 475px;
		height: 475px;
	}
	.grid-sm{
		width: 475px;
		height: 475px;
	}
	.grid-l{
		width: 720px;
		height: 475px;
	}
	.grid-ls{
		width: 230px;
		height: 230px;
	}
	.grid-lm{
		width: 475px;
		height: 475px;
	}
	.grid-w{
		width: 490px;
		height: 230px ;
	}
	.grid-v{
		width: 230px;
		height: 720px;
	}
	.grid-v a.bg-motion1{
		background: url(../img/common/bg_motion1.png) 0 0 no-repeat;
		background-size: 100% auto;
	}
	.grid-v a.bg-motion2{
		background: url(../img/common/bg_motion2.png) 0 0 no-repeat;
		background-size: 100% auto;
	}
	.grid-v a.bg-motion3{
		background: url(../img/common/bg_motion3.png) 0 0 no-repeat;
		background-size: 100% auto;
	}
	.grid-v a.bg-motion4{
		background: url(../img/common/bg_motion4.png) 0 0 no-repeat;
		background-size: 100% auto;
	}


	.grid a{
		position: relative;
		display: block;
	}


	.grid .grid-title{
	  position: absolute;
	  top: 0;
	  left: 0;
	  padding: 10px 0;
	  background: #fff;
	  opacity: 0;
	}



	/* feature
	--------------------------------------------------------*/

	.lower #feature{
		padding-top: 20px;
	}

	.feature-box{
		position: relative;
		margin: auto;
		height: 700px;
		z-index: 100;
	}
	.feature-inner-box{
		height: 700px;
		-webkit-transform-origin: top left;
		-moz-transform-origin: top left;
		-ms-transform-origin: top left;
		-o-transform-origin: top left;
		transform-origin: top left;
	}
	.feature-box .feature-fig-box{
	}
	.feature-box .feature-fig-box figure{
		position: absolute;
	}
	.feature-box .feature-fig-box figure img{
		width: 100%;
		height: auto;
	}
	.feature-box .feature-fig-box figure:nth-child(1){
		width: 165px;
		top: 20px;
		left: 70px;
	}
	.feature-box .feature-fig-box figure:nth-child(2){
		width: 175px;
		top: 20px;
		left: 280px;
	}
	.feature-box .feature-fig-box figure:nth-child(3){
		width: 165px;
		top: 20px;
		left: 545px;
	}
	.feature-box .feature-txt{
		position: absolute;
		right: -20px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.feature-txt img{
		width: 100%;
	}
	.feature-box .feature-txt figure.move{
		animation: stamp 3000ms ease infinite;
	}




	/* footer
	--------------------------------------------------------*/

	#gfooter{
		padding: 0 0 10px;
		width: 100%;
	}
	#gfooter .footer-inner{
		position: relative;
		margin: 30px 10px 0;
		text-align: left;
	}
	#gfooter .footer-inner .note-list li{
		font-size: 11px;
	}
	#gfooter .footer-inner .note-list li + li{
		margin: 10px 0 0;
	}
	#gfooter .footer-inner p{
		margin: 30px 0 0;
		font-size: 12px;
		color: #fff;
	}

	#intel-footer{
		color: #181818;
		background: #fff;
		font-size: inherit;
/*		font-size: 11px;
*/	}
	#intel-footer section{
		margin: 0 15px;
	}
	#intel-footer dl{
		padding: 20px 0;
/*		display: table;
*/
	}

	#intel-footer dl dt img {
		width: 100px;
		vertical-align: middle;
	}
	#intel-footer dl dt span{
		margin: 15px 0 0;
		font-size: 1.1em;
		letter-spacing: 0.1em;
		line-height: 1.5;
		display: block;
		font-weight: bold;
		font-family: Arial, 'メイリオ', Meiryo, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', Osaka, 'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', sans-serif;
	}
	#intel-footer dl{
	}
	#intel-footer dl dt{
		text-align: center;
		display: block;
	}
	#intel-footer dl dd {
		width: 100%;
		display: block;
		vertical-align: middle;
	}
	#intel-footer dl dd {
		margin: 20px 0 0;
		line-height: 1.8;
	}
	#intel-footer dl dd.cap {
		width:90%;
		font-size: 0.7em;
		font-family: Arial, 'メイリオ', Meiryo, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', Osaka, 'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', sans-serif;
	}

	.nav-sns{
		position: absolute;
		top: 0;
		right: 0;
		height: 40px;
		font-size: 0;
	}
	.nav-sns li{
		display: inline-block;
	}
	.nav-sns li + li{
		margin: 0 0 0 12px;
	}
	.nav-sns li a{
		display: block;
		width: 40px;
		height: 40px;
	}
	.nav-sns li:nth-child(1) a{
		background: url(../img/common/icon_tw.png) 50% 50% no-repeat;
		background-size: 100% 100%;
	}
	.nav-sns li:nth-child(2) a{
		background: url(../img/common/icon_fb.png) 50% 50% no-repeat;
		background-size: 100% 100%;
	}







	/* btn cointact
	--------------------------------------------------------*/	

	.btn-contact{
		margin: 0 8px;
		height: 50px;
		overflow: hidden;
	}
	.btn-contact a{
		position: relative;
		margin: auto;
		max-width: 340px;
		display: block;
		background: #e60012;

	}
	.btn-contact a span{
		position: relative;
		display: block;
		height: 100%;
		text-indent: -9999px;
		height: 50px;
		background: url(../img/common/btn_contact.png) 50% 50% no-repeat;
		background-size: auto 32px;
	}
	.btn-contact a:nth-child(2){
		display: none;
	}



	/* btn more
	--------------------------------------------------------*/	

	.btn-more{
		margin: 10px auto 0;
		width: 250px;
		height: 35px;
		overflow: hidden;
	}

	.btn-more.on{
		display: block;
	}
	.btn-more.off{
		display: none;
	}
	.btn-more a{
		display: block;
		width: 100%;
		height: 100%;
		text-indent: -9999px;
		background: #fff;
	}
	.btn-more a span{
		display: block;
		width: 100%;
		height: 100%;
	}
	.btn-more a span{
		background: url(../img/common/btn_more.png) 50% 50% no-repeat;
		background-size: auto 100%;
	}


	/* btn back
	--------------------------------------------------------*/
	
	.btn-back{
		position: absolute;
		left: 0;
		top: 0;
		width: 55px;
		height: 100%;
		z-index: 10;
		background: #000;
	}
	.btn-back a{
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
		background: url(../img/common/arrow_l.png) 15px 50% no-repeat;
		background-size: 25px 30px;
	}


	/* btn top
	--------------------------------------------------------*/	

	#top .btn-top{
		display: none;
	}

	#top .footer-link{
		display: none;
	}

	.footer-link{
		margin: 25px auto 0;
		max-width: 280px;		
	}
	.btn-footer{
		height: 35px;
		overflow: hidden;
	}
	.btn-footer + .btn-footer{
		margin-top: 8px;
	}
	.btn-footer.on{
		display: block;
	}
	.btn-footer.off{
		display: none;
	}
	.btn-footer a{
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
		color: #000;
		line-height: 35px;
		text-align: center;
		text-indent: -9999px;
		font-size: 35px;
		background: #fff;
	}
	.btn-footer a span{
		display: block;
		width: 100%;
		height: 100%;
	}
	.btn-top a span{
		background: url(../img/common/btn_top.png) 50% 50% no-repeat;
		background-size: auto 100%;
	}
	.btn-100voices a span{
		background: url(../img/common/btn_100voices.png) 50% 50% no-repeat;
		background-size: auto 100%;
	}
	.btn-specialmovie a span{
		background: url(../img/common/btn_specialmovie.png) 50% 50% no-repeat;
		background-size: auto 100%;
	}
	.btn-question a span{
		background: url(../img/common/btn_question.png) 50% 50% no-repeat;
		background-size: auto 100%;
	}

	.footer-link-fmv{
		margin: 25px auto 0;
		max-width: 280px;	
	}
	.footer-link-fmv .btn-fmv a{
		background: #e60012;
	}
	.footer-link-fmv .btn-fmv a span{
		background: url(../img/common/btn_fmv.png) 50% 50% no-repeat;
		background-size: auto 100%;
	}


	/* btn pt
	--------------------------------------------------------*/	
	.btn-pt{
		position: fixed;
		bottom: 40px;
		right: 0;
		width: 40px;
		height: 40px;
		z-index: 1000;
		opacity: 0;
		-webkit-transition: opacity ease 300ms;
		-o-transition: opacity ease 300ms;
		transition: opacity ease 300ms;
	}
	.btn-pt.on{
		opacity: 1;
	}
	.btn-pt a{
		position: relative;
		display: block;
		width: 40px;
		height: 40px;
		background: #fff;
	}
	.btn-pt a:after{
		content: "";
		position: absolute;
		display: block;
		margin: auto;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		width: 24px;
		height: 20px;
		background: url(../img/common/btn_pt.png) 50% 50% no-repeat;
		background-size: 100% 100%;

		-webkit-transition: transform ease 300ms;
		-o-transition: transform ease 300ms;
		transition: transform ease 300ms;
	}




	/* popup
	--------------------------------------------------------*/

	.popup{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(255,255,255,.95);
		z-index: 5000;
		padding: 0 10px;
		display: none;
		box-sizing: border-box;
	}
	.popup-wrap{
		position: relative;
		width: 100%;
		height: 100%;
	}
	.popup-box{
		position: absolute;
		left: 50%;
		top: 50%;
		width: 100%;
		max-width: 980px;
		-webkit-transform: translate(-50%,-50%);
		-ms-transform: translate(-50%,-50%);
		-o-transform: translate(-50%,-50%);
		transform: translate(-50%,-50%);
	}
	
	.popup .movie{
		position: relative;
		padding-top: 56.25%;
	}
	.popup .movie iframe{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

	.play-movie{
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
	}
	.play-movie .icon-play{
		position: absolute;
		content: "";
		margin: auto;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		width: 80px;
		height: 80px;	
		display: block;
		z-index: 100;
	}
	.play-movie .icon-play:before{
		position: absolute;
		content: "";
		display: block;
		margin: auto;
		width: 80px;
		height: 80px;
		border-radius: 55px;
		border: 3px solid #000;
		background: #fff;
		box-sizing: border-box;
		z-index: 20;
	}
	.play-movie .icon-play:after{
		position: absolute;
		content: "";
		display: block;
		left: 50%;
		top: 50%;
		margin: -16px 0 0 -10px;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 16px 0 16px 25px;
		border-color: transparent transparent transparent #000;
		z-index: 30;
	}


}

