@charset "utf-8";

/*
******************************************************************
* MJP common.css
******************************************************************
*/
html.Has-modal {
	overflow: hidden !important;
	width: auto;
}
html {
	background: none;
}
body {
	overflow: hidden;
	min-width: 1130px;
	color: #4b4b4b;
	line-height: 1.6;
	word-wrap: break-word;
}


/*** loading ***/
#loading {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    background: #000;
}
.loading-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 500px;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
/**loading main start**/
.loading-main {
	width: 500px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.txt-box {
	text-align: center;
/*animation: txt-anime 3s linear infinite;*/
}
/*txt animation*/
.loading-txt-list li {
  display: inline-block;
  /*margin: 0 -.05em;*/
  animation: loading-txt 1s infinite;
}
.loading-txt-list li:nth-child(2) {
	margin-left: 0px;
  animation-delay: .1s;
}
.loading-txt-list li:nth-child(3) {
	margin-left: 5px;
  animation-delay: .2s;
}
.loading-txt-list li:nth-child(4) {
	margin-left: 5px;
  animation-delay: .3s;
}
.loading-txt-list li:nth-child(5) {
	margin-left: 3px;
  animation-delay: .4s;
}
.loading-txt-list li:nth-child(6) {
	margin-left: 9px;
  animation-delay: .5s;
}
.loading-txt-list li:nth-child(7) {
	margin-left: 7px;
  animation-delay: .6s;
}
.loading-txt-list li:nth-child(8) {
	margin-left: 8px;
  animation-delay: .7s;
}
@keyframes loading-txt {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
}

.loding-chara-box {
	text-align: center;
}

/**loading main end**/

/*sp adjuster*/
/*.device-sp .loading-inner {
	max-width: 100%;
	-webkit-animation: loading-wait 0.3s linear forwards;
	animation: loading-wait 0.3s linear forwards;
	animation-delay: 0.3s;
}*/
/*@keyframes hopping {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}*/
/*.device-sp .loading-txt-list > li > img {
	height: 70px;
}
.device-sp .loding-chara-box > img:first-child {
	height: 90px;
}
.device-sp .loding-chara-box > img:last-child {
	height: 300px;
}*/

/*** 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;
}


/*
******************************************************************
* 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);
}