@charset "utf-8";

/*
******************************************************************
* MJP common.css
******************************************************************
*/
html.Has-modal {
	overflow: hidden !important;
	width: auto;
}
html {
	background: none;
}
body {
	overflow: hidden;
	color: #4b4b4b;
	line-height: 1.6;
	word-wrap: break-word;
}


/*** loading ***/
#loading {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: #000;
}
.loading-wrap {
	position: relative;
	max-width: 436px;
	width: 80%;
	width: 436px;
	background: #111;
}
.loading-message-box {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.loading-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #d20a0a;
}
.loading-text-start .loading-bg {
	animation: loading-message .4s ease-in-out forwards;
}
.loading-text-end .loading-bg {
	animation: loading-message_end .4s ease-in-out forwards;
}
.loading-hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
/*.loading-start {
	opacity: 0;
}*/
.loading-start-active .loading-start,
.loading-end-active .loading-end {
	opacity: 1;
}
.loading-dammy-img {
	opacity: 0;
}
.loading-parts {
	/*overflow: hidden;*/
	position: absolute;
	width: 100%;
	/*height: 100%;*/
	line-height: 0;	
}
.loading-top {
	height: 19px;
	top: -30px;
	background: url(../img/bg_loading-bar-top.png) repeat-x 0 0;
	background-size: 100% auto;
	animation: loading-bar_top 100s linear forwards;
}
.loading-bottom {
	bottom: -45px;
	width: 100%;
	height: 34px;
	background: url(../img/bg_loading-bar-bottom.png) repeat-x 0 0;
	background-size: 100% auto;
	animation: loading-bar_bottom 100s linear forwards;
}
.loading-bar-cover {
	position: absolute;
	z-index: 1;
	top: -5px;
	left: -7%;
	width: 100%;
	height: 20px;
	background: #000;
	display: block;
}
.cover-top {
	transform: skewX(-44deg);
	/*animation: loading-bar_top_cover 4s linear forwards;*/
}
.loading-start .cover-top {
	width: 75%;
	transition: .5s;
}
.loading-end .cover-top {
	width: 50%;
	transition: .5s;
}
.cover-bottom001,
.cover-bottom002,
.cover-bottom003 {
	left: auto;
  right: -7%;
  width: 60%;
}
.cover-bottom001 {
	top: 0;
	height: 5px;
	/*animation: loading-bar_bottom_cover001 4s linear forwards;*/
}
.cover-bottom002 {
	top: 5px;
  height: 20px;
	/*animation: loading-bar_bottom_cover002 3.5s linear forwards;*/
}
.loading-start .cover-bottom001,
.loading-start .cover-bottom002 {
	width: 30%;
	transition: .5s;
}
.loading-end .cover-bottom001 {
	width: 0;
	transition: .5s;
}
.cover-bottom003 {
	top: 23px;
  height: 12px;
}
.loading-bottom-messeage {
	opacity: 0;
	max-width: 103px;
	top: 3px;
	left: 10px;
}
.loading-bottom-start-message,
.loading-end .loading-bottom-end-message {
	opacity: 1;
}
.loading-bottom-start-message {
	animation: loading-start-brink 3s linear infinite;
}
.loading-end .loading-bottom-end-message {
	animation: loading-end-brink .3s linear .5s forwards;
}
.loading-end .loading-bottom-start-message {
	opacity: 0;
}
.loading-start-set,
.loading-end-set {
	opacity: 0;
}
.loading-text-start .loading-start-set,
.loading-text-end .loading-end-set {
	opacity: 1;
	transition-delay: .4s;
}
.loading-text-end .loading-start-set {
	display: none;
}
@media screen and (max-width: 767px) {
	.loading-wrap {
		transform: scale(0.6);
	}
	.loading-bottom-messeage {
		top: 2px;
	}
}
/**animation propaty settings***/
/*@keyframes show {
	  0% {transform: scaleY(0);}
	 50% {
	 	transform: scaleY(1);
	 	opacity: 1;
	 }
	 60% {opacity: 0.2}
	 65% {opacity: 1}
	 70% {opacity: 0.2}
	 75% {opacity: 1}
	 80% {opacity: 0.2}
	 85% {opacity: 1}
	100% {opacity: 1}
}*/
/*@-webkit-keyframes show {
	  0% {transform: scaleY(0);}
	 50% {
	 	transform: scaleY(1);
	 	opacity: 1;
	 }
	 60% {opacity: 0.2}
	 65% {opacity: 1}
	 70% {opacity: 0.2}
	 75% {opacity: 1}
	 80% {opacity: 0.2}
	 85% {opacity: 1}
	100% {opacity: 1}
}*/
@keyframes loading-message {
	0% {
		width: 100%;
	}
	50% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}
@keyframes loading-message_end {
	0% {
		width: 100%;
	}
	50% {
		width: 0%;
	}
	100% {
		width: 0%;
	}
}
@keyframes loading-start-brink {
	0% {
		opacity: 1;
	}
	25% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	75% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes loading-end-brink {
	0% {
		opacity: 1;
	}
	25% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	75% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes loading-bar_top {
	0% {
		background: url(../img/bg_loading-bar-top.png) repeat-x 0 0;
		background-size: 100% auto;
	}
	100% {
		background: url(../img/bg_loading-bar-top.png) repeat-x -4000px 0;
		background-size: 100% auto;
	}
}
@keyframes loading-bar_bottom {
	0% {
		background: url(../img/bg_loading-bar-bottom.png) repeat-x 0 0;
		background-size: 100% auto;
	}
	100% {
		background: url(../img/bg_loading-bar-bottom.png) repeat-x 4000px 0;
		background-size: 100% auto;
	}
}
@keyframes loading-bar_top_cover {
	0% {
		width: 100%;
	}
	100% {
		width: 0;
	}
}
@keyframes loading-bar_bottom_cover001 {
	0% {
		width: 60%;
	}
	100% {
		width: 0;
	}
}
@keyframes loading-bar_bottom_cover002 {
	0% {
		width: 60%;
	}
	100% {
		width: 30%;
	}
}

/*@keyframes progressbar {
	0%{width: 0;}
	60%{width: 30%;}
	70%{width: 40%;}
	100%{width: 55%;}
}*/

/*.loading_wrap .loading {
	width: 500px;
	height: 142px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	background: url(../img/ld_base.png) 0 0 no-repeat;
}
.loading_wrap .loading_inner {
	position: relative;
	width: 500px;
	height: 142px;
}
.loading_wrap .message {
	width: 164px;
	height: 101px;
	position: absolute;
	z-index: 51;
	top: 5px;
	right: 0;
	left: 0;
	margin: auto;
	background: url(../img/ld_window.png) 0 0 no-repeat;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
	transform: scaleY(0);
}
.loading_wrap .message > div {
	width: 142px;
	height: 79px;
	margin: 10px 11px;
	background: url(../img/ld_ms01.png) 0 0 no-repeat;
}
.loading_wrap .EVALOAD_start .message {
	opacity: 1;
	animation:show 1s ease 0s 1 normal;
	-webkit-animation:show 1s ease 0s 1 normal;
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	transform: scaleY(1);
}
.loading_wrap .EVALOAD_loaded .message {
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	transform: scaleY(1);
}*/
/*.loading_wrap .EVALOAD_loaded .message > div {background-image: url(../img/ld_ms02.png);}*/
/*.loading_wrap .bar {
	width: 0%;
	height: 46px;
	position: absolute;
	top: 32px;
	background: url(../img/ld_bar.png) left center repeat;
	-webkit-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
.loading_wrap *[class^="graph0"] {
	width: 500px;
	height: 142px;
	position: absolute;
}
.loading_wrap *[class^="graph0"] > * {
	position: absolute;
	-webkit-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
.loading_wrap .graph01 > * {
	position: relative;
	width: 0px;
	max-width: 250px;
	height: 3px;
	background: #f9cc2f;
}
.loading_wrap .graph01 .g01 {top: 103px;}
.loading_wrap .graph01 .g02 {top: 112px;}
.loading_wrap .graph01 .g03 {top: 122px;}
.loading_wrap .graph02 > * {
	bottom: 5px;
	width: 35px;
	height: 35px;
	background: url(../img/ld_graph.png) 0 0 no-repeat;
	-webkit-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}
.loading_wrap .graph02 > .g01 {right: 0}
.loading_wrap .graph02 > .g02 {right: 45px}*/

/*** loading end ***/

/*
******************************************************************
* #modal video
******************************************************************/
#mdl-box {
	position: fixed;
	z-index: 1100;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#mdl-box .mdl-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
}

#mdl-box #mdl-plr {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -270px;
	margin-left: -480px;
}
#mdl-box .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -326px;
	margin-left: 303px;
}
#mdl-box .btn a {
	display: block;
	width: 179px;
	height: 50px;
	text-indent: -9999px;
	background-image: url(../img/v_close.png);
	background-position: 0 top;
}
#mdl-box .btn a:hover {
	background-position: 0 bottom;
}
@media screen and (max-width: 959px) {
	#mdl-box {
		background: #000;
	}
	#mdl-box .mdl-sp-outer {
		/*position: absolute;
		margin-top: 0;
		margin-left: 0;
    width: 100% !important;
    height: 50% !important;
    transform: translate(-50%,-50%);*/
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 0;
    margin-left: 0;
    max-width: 590px;
    /*width: 100% !important;
    height: 50% !important;*/
    width: 100vw !important;
    max-height: 335px;
    height: 57vw !important;
    transform: translate(-50%,-50%);
	}
	#mdl-box #mdl-plr {
		position: relative !important;
		top: 50% !important;
		left: 50% !important;
		margin-top: 0;
		margin-left: 0;
    width: 100% !important;
    /*height: 40% !important;*/
    height: 100% !important;
    transform: translate(-50%,-50%);
    /*transform: translate(0,0);*/
	}
	#mdl-box #mdl-plr:before {
		position: absolute;
		top: -10px;
		left: ;
	}
	.video-js .vjs-tech {
		top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	}
	.vjs-default-skin .vjs-control-bar {
		width: 100%;
	}
	#mdl-box .btn {
		top: -30px;
    left: auto;
    right: 10px;
    margin: 0;
	}
	#mdl-box .btn a {
		width: 90px;
    height: 26px;
    background-image: url(../img/v_close-sp.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
	}
	/*.device-iPad #mdl-box .btn a,
	.device-iPhone #mdl-box .btn a {
		width: 90px;
    height: 25px;
    background-size: 100% auto;
	}*/
}
@media screen and (max-height: 500px) {
    #mdl-box .mdl-sp-outer {
    	max-width: 440px;
			max-height: 245px;
    }
}

/*
******************************************************************
* video.js
******************************************************************/
#mdl-box .vjs-default-skin .vjs-slider-handle {
	background: #00f1ff;
}
#mdl-box .vjs-default-skin .vjs-play-progress {
	background: #017279;
}
#mdl-box .vjs-default-skin .vjs-volume-level {
	background: #017279;
}


/*
******************************************************************
* .modal-video
******************************************************************/
.modal-video {
    background-color: rgba(0,0,0,0.8);
}
.modal-video-movie-wrap {
    margin-top: 56px;
}
.modal-video-close-btn {
	display: block;
	position: absolute;
	top: -56px;
	right: 0;
	z-index: 2;
	width: 179px;
	height: 50px;
	text-indent: -9999px;
	background: url(../img/v_close.png) no-repeat top 0 left 0;
	background-size: 100%;
	cursor: pointer;
}
.modal-video-close-btn:hover {
	background-position: top -50px left 0;
}

.modal-video-close-btn:hover:not(:target) {
	background-position: top -51px left 0\9;/*IE9用*/
}

.modal-video-close-btn:before,
.modal-video-close-btn:after {
	content: none;
}


/*
******************************************************************
* utility
******************************************************************/
/* 要素アクション */
*[data-sf] {
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

*[data-sf="slide-top"] {
	-webkit-transform: translate(0, 100px);
	transform: translate(0, 100px);
}
*[data-sf="slide-left"] {
	-webkit-transform: translate(-300px, 0);
	transform: translate(-300px, 0);
}
*[data-sf="slide-right"] {
	-webkit-transform: translate(300px, 0);
	transform: translate(300px, 0);
}

*.animated[data-sf="fade-in"] {
	opacity: 1;
}
*.animated[data-sf="slide-top"],
*.animated[data-sf="slide-left"],
*.animated[data-sf="slide-right"] {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}