@charset "utf-8";
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
	Reset Section
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
html, body, h1, h2, h3, h4, h5, h6,
div, p, span, strong, small, a,
ol, ul, li, dl, dt, dd,
table, caption, th, td,
input, select, textarea,
figure, figcaption, time {
		margin: 0;
		padding: 0;
		z-index: 20;
		box-sizing: border-box;
		animation-fill-mode: both;
}
address, caption, cite, code, dfn, em, strong, th, i {
		font-style: normal;
		font-weight: normal;
}

html {
		height: 100%;
		font-size: 56.25%; /* 0.9 */
		font-weight: normal;
		font-family:
			"fontAwesome",
			"Noto Serif JP", serif;
		line-height: 150%;
		text-size-adjust: 100%;
		-webkit-text-size-adjust: 100%;
		font-feature-settings : "palt";
		overflow: auto;
}
@media all and (-ms-high-contrast:none){
	*::-ms-backdrop, html {

		font-family:
			"fontAwesome",
			"Noto Serif JP", serif;
	}
}
@media screen and (min-width: 640px) {
    html {
			font-size: 62.5%;
    }
}

body {
		min-width: 100%;
		min-height: 100%;
		font-size: 1.8rem;
		line-height: 27px;
		background-repeat: repeat;
		background-size: 25px 40px;
}
@media screen and (min-width: 640px) {
    html {
			font-size: 62.5%;
    }
}

h1, h2, h3, h4, h5, h6 {
		font-size: 100%;
		font-weight: 600;
}

img, video {
		width /***/: auto;
		height: auto;
		max-width: 100%;
		border: 0;
		vertical-align: bottom;
		-ms-interpolation-mode: bicubic;
}

a {
		color: #239dda;
		text-decoration: none;
		will-change: color;
		-webkit-transition: color 0.2s linear;
		transition: color 0.2s linear;
}
a:hover {
		color: #0068b7;
		text-decoration: none;
}

table {
		border-collapse: collapse;
		border-spacing: 0;
}

ul {
		list-style-type: none;
		list-style-position: outside;
}
ul:after {
		content: "";
		height: 0;
		display: block;
		clear: both;
}
ol li {
		list-style-type: none;
		list-style-position: outside;
}

caption, th {
		font-weight: 600;
		text-align: left;
}




/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
	Base Section
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
html {
}
body {
		color: #666;
		background-color:#fafafc;
		position: relative;
}

#wrapper {
		width: 100%;
		overflow: hidden;
}

div.inner {
		padding: 0px;
		position: relative;
}

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

	div.inner {
		max-width: 1280px;
		min-width: 980px;
		padding: 0px;
		margin: 0 auto;
	}
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
	Base Section - Extend
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* Anchor Action */
@media screen and (min-width: 640px) {
	a.over {
			opacity: 1.0;
			will-change: opacity;
			-webkit-transition: opacity 0.2s linear;
			transition: opacity 0.2s linear;
			display: block;
	}
	a.over:hover {
			opacity: 0.6;
	}

	a.littleup {
			will-change: transform;
			-webkit-transition: transform 0.1s linear;
			transition: transform 0.1s linear;
			display: block;
	}
	a.littleup:hover {
			-webkit-transform: translateY(-5px);
			transform: translateY(-5px);
	}
}


/* New Action */
.new:before{
    content: "";
    width: 60px;
    height: 35px;
    background-image: url(../_img/new.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    position: absolute;
		display: block;
    z-index: 50;
}
.new_g:before{
    content: "";
    width: 60px;
    height: 35px;
    background-image: url(../_img/new_g.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    position: absolute;
		display: block;
    z-index: 50;
}
.new_m:before {
    content: "";
    width: 90px;
    height: 50px;
    background-image: url(../_img/new_m.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    position: absolute;
		display: block;
    z-index: 50;
}
.new_m2:before {
    content: "";
    width: 90px;
    height: 50px;
    background-image: url(../_img/new_m2.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    position: absolute;
		display: block;
    z-index: 50;
}
.new_t{
	margin: 0;
	color: #f66e9e;
	font-size: 1.5rem;
	font-weight: bold;
}
.new_i:before{
    content: "";
    width: 60px;
    height: 31px;
    background-image: url(../_img/new_i.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    position: absolute;
		display: block;
    z-index: 50;
}
.new:before,
.new_g:before,
.new_m:before,
.new_m2:before,
.new_t,
.new_i:before {
    animation-name: new;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}
@-webkit-keyframes new {
	0%  {
        opacity: 1;
    }
	50%  {
        opacity: 0;
    }
	100% {
        opacity: 1;
    }
}
@keyframes new {
	0%  {
        opacity: 1;
    }
	50%  {
        opacity: 0;
    }
	100% {
        opacity: 1;
    }
}
@media screen and (min-width: 640px) {
	.new:before {
	    content: "";
	    width: 90px;
	    height: 50px;
		}
	.new_g:before {
		  content: "";
		  width: 125px;
		  height: 69px;
		}
	.new_i:before {
			content: "";
			width: 90px;
			height: 47px;
		}
}

/* Lead Twitter */
a.leadTwitter {
		padding: 0 15px;
		background-color: #00ACED;
		border-radius: 20px;
		color: #FFF;
		text-shadow: none;
		display: inline-block;
}
a.leadTwitter:before {
		content: "\f099 ";
		margin-right: 5px;
}




/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
	Loader Section
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#loader {
		width: 100%;
		height: 100%;
		background-color: #FFF;
		position: fixed;
		z-index: 200;
		top: 0;
		left: 0;

		opacity: 1.0;
		will-change: opacity;
		-webkit-transition: opacity 0.2s linear;
		transition: opacity 0.2s linear;
}


#loader div {
		margin: auto;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
}

#loader.checked {
		pointer-events: none;
}
#wrapper.on #loader.checked {
		opacity: 0.0;
}

#loader #loader_icon,
#loader #loader_icon:before,
#loader #loader_icon:after {
	display: none;
  border-radius: 50%;
}
#loader #loader_icon {
  color: #666;
  font-size: 11px;
  text-indent: -99999em;
  position: absolute;
	top: 0;
	bottom:0;
	right:0;
	left:0;
  width: 10em;
  height: 10em;
  box-shadow: inset 0 0 0 5px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
#loader #loader_icon:before,
#loader #loader_icon:after {
  position: absolute;
  content: '';
}
#loader #loader_icon:before {
  width: 5.2em;
  height: 10.2em;
  background: #fff;
  border-radius: 10.2em 0 0 10.2em;
  top: -0.1em;
  left: -0.1em;
  -webkit-transform-origin: 5.1em 5.1em;
  transform-origin: 5.1em 5.1em;
  -webkit-animation: load2 2s infinite ease 1.5s;
  animation: load2 2s infinite ease 1.5s;
}
#loader #loader_icon:after {
  width: 5.2em;
  height: 10.2em;
  background: #fff;
  border-radius: 0 10.2em 10.2em 0;
  top: -0.1em;
  left: 4.9em;
  -webkit-transform-origin: 0.1em 5.1em;
  transform-origin: 0.1em 5.1em;
  -webkit-animation: load2 2s infinite ease;
  animation: load2 2s infinite ease;
}
@-webkit-keyframes load2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#loader #check {
		width: 100%;
		height: 474px;
		padding: 30px 0;
		background-color: #FFF;
		font-size: 1.6rem;
		text-align: center;
		z-index: 30;
		display: none;
}

#loader #check {
		width: 100%;
		height: 474px;
		padding: 30px 0;
		background-color: #FFF;
		font-size: 1.6rem;
		text-align: center;
		z-index: 30;
		display: none;
}

#loader #check img{
	margin-bottom: 40px;
}

#loader #check p {
		padding: 0 10px;
		margin-bottom: 40px;
}
#loader #check p strong {
		font-weight: bold;
}
#loader #check p a {
		width: 30%;
		margin: 0 5% 20px;
		padding: 10px 0;
		background-color:#b2c0cd;
		color: #fff;
		text-decoration: none;
		display: inline-block;

		opacity: 1.0;
		will-change: background-color;
		-webkit-transition: background-color 0.2s linear;
		transition: background-color 0.2s linear;
}
#loader #check p a:hover {
		background-color:#239bba;
}

@media screen and (min-width: 640px) {
	#loader #check {
		height: 474px;
		padding: 30px 0;
		font-size: 18px;
		line-height: 27px;
		display: none;
	}

}




/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
	Header Section
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#header {
		background-color: #fafafc;
		color: #8b8e9c;
		padding:10px;
		position: fixed;
		z-index: 30;
		width: 100%;
}

#header{
	opacity: 0.0;
}

#wrapper.on #header{
		opacity: 1.0;
}

#header img.logo{
		float: left;
		width: 150px;

		will-change: opacity;
		-webkit-transition: opacity 0.2s linear;
		transition: opacity 0.2s linear;
}
#header img.logo:hover{
  opacity: 0.7;
}

#header .nav_wrap.open {
  display: block;
}

#header .nav_wrap.close {
  display: none;
}

#header .nav_btn {
	display: block;
	cursor: pointer;
}
#header .nav_wrap {
	position: fixed;
	left: 0;
	top: 0;
	display: none;
	z-index: 10;
	background-color: rgba(255, 255, 255, 0.9);
	width: 100%;
	height: 100%;
}

#header ul.nav {
	height: auto;
	text-align: center;
	position: absolute;
	overflow-x: hidden;
	overflow-y: auto;
	min-width: 200px;
	top: 50%;
  left: 50%;
  -webkit-transform : translate(-50%,-50%);
  transform : translate(-50%,-50%);
}

#header ul.nav li {
	display: block;
	margin-bottom: 20px;
}

#header ul.nav li:last-child {
	margin-bottom: 0px;
}

#header ul.nav a {
	font-size: 2rem;
	color: #8B8E9C;
	text-shadow:0px 0px 3px #fff;
	letter-spacing: 2px;

	will-change: color;
	-webkit-transition: color 0.2s linear;
	transition: color 0.2s linear;
}
#header ul.nav a i {
	font-size: 2.4rem;
}
#header ul.nav a:hover {
	color:#239dda;
}


#header .nav_btn,
#header .nav_btn span {
	display: inline-block;
	transition: all 0.4s;
	box-sizing: border-box;
}
#header .nav_btn {
	margin: 3px 0px;
	float: right;
	z-index: 20;
	position: relative;
	width: 50px;
	height: 27px;
}
#header .nav_btn span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #8B8E9C;
}
#header .nav_btn span:nth-of-type(1) {
	top: 0;
}
#header .nav_btn span:nth-of-type(2) {
	top: 12px;
}
#header .nav_btn span:nth-of-type(3) {
	bottom: 0;
}
#header .nav_btn.active span:nth-of-type(1) {
	-webkit-transform: translateY(12px) rotate(-25deg);
	transform: translateY(12px) rotate(-25deg);
}
#header .nav_btn.active span:nth-of-type(2) {
	opacity: 0;
}
#header .nav_btn.active span:nth-of-type(3) {
	-webkit-transform: translateY(-12px) rotate(25deg);
	transform: translateY(-12px) rotate(25deg);
}


@media screen and (min-width: 640px) {
#header {
	padding:10px 20px;
}

#header .nav_btn {
	display: none;
}

#header ul.nav {
	height: 100%;
	position: relative;
	top: auto;
	left: auto;
	-webkit-transform :none;
	transform : none;
}

#header ul.nav a {
	text-shadow: none;
    font-size: 1.4rem;
}
#header ul.nav a i {
    font-size: 1.8rem;
}

#header ul.nav li {
    display: inline-block;
    margin: 0 10px;
}

#header .nav_wrap{
	float: right;
	margin: 5px 0px;
	display: block !important;
	position: static;
	left: auto;
	top: auto;
	z-index: auto;
	background-color: transparent;
	width: auto;
	height: auto;
}

}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
	Content Section
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#content {
	position: relative;
}
#content h2 {
		height: 300px;
		min-width: 640px;
		margin-bottom: -220px;
		background-repeat: no-repeat;
		background-position: center top;
}

@media screen and (min-width: 640px) {
	#content h2 {
		margin-bottom: -200px;
	}
	#content h2 span {
		max-width: 1280px;
		min-width: 980px;
		padding: 10px 20px 0;
		margin: 0 auto;
		display: block;
	}
}




/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
	Footer Section
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#footer {
		color: #666;
		position: relative;
}

#footer {
	opacity: 0.0;
}

#wrapper.on #footer {
	padding-top: 20px;
		background-color: #fafafc;
		opacity: 1.0;
}

#footer ul.share {
		width: 210px;
		margin: 0 auto;
}
#footer ul.share li {
		width: 70px;
		text-align: center;
		float: left;
}
#footer ul.share li a {
		border-radius: 5px;
		display: inline-block;
}

ul.share li a {
		width: 30px;
		height: 30px;
		color: #FFF;
		text-decoration: none;
		text-align: center;
		display: block;

		opacity:1.0;
		will-change: opacity;
		-webkit-transition: opacity 0.2s linear;
		transition: opacity 0.2s linear;
}

ul.share li a:hover {
		opacity:0.8;
}
ul.share li a.twitter {
		color:#cfcfcf;
}
ul.share li a.twitter:before {
		content: "\f099";
		font-size: 30px;
		font-family: "fontAwesome";
		line-height: 30px;
}
ul.share li a.facebook {
		color:#cfcfcf;
}
ul.share li a.facebook:before {
		content: "\f082";
		font-size: 30px;
		font-family: "fontAwesome";
		line-height: 30px;
}
ul.share li a.line {
		color:#cfcfcf;
}
ul.share li a.line:before {
	content: "";
	display: inline-block;
	width: 30px;
	height: 30px;
	background-image: url(../_img/line.png);
	background-size: contain;
	vertical-align: middle;
	background-repeat: no-repeat;
}

#footer p {
		width: 130px;
		margin: 0 auto;
		padding: 0 0 15px;
		text-align: center;
		position: relative;
}

#footer p a {
		width: 120px;
		display: inline-block;
}
#footer p small {
		padding: 10px 0 0;
		font-size: 1.3rem;
		display: block;
}
#footer p small:before {
		content: "\f1f9";
		margin-right: 5px;
}

@media screen and (min-width: 640px) {
	#footer {
	}
	#footer p {
		width: 150px;
	}
}




/*━━━━━━━━━━━━━━━━━━━━
▼ Form Section
━━━━━━━━━━━━━━━━━━━━━*/
/*━━━━━━━━━━━━━━━━━━━━
▼ Form
━━━━━━━━━━━━━━━━━━━━━*/

/*━━━━━━━━━━━━━━━━━━━━
▼ Animation [fadeIn]
━━━━━━━━━━━━━━━━━━━━━*/
@keyframes fadeIn {
	0%  {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeOut {
	0%  {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

/*━━━━━━━━━━━━━━━━━━━━
▼ Animation [fadeIn Little]
━━━━━━━━━━━━━━━━━━━━━*/
@keyframes fadeInUpLittle {
	0%  {
		transform: translateY(20px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes fadeInRightLittle {
	0%  {
		transform: translateX(-20px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes fadeInLeftLittle {
	0%  {
		transform: translateX(20px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}




/*━━━━━━━━━━━━━━━━━━━━
▼ Animation [jump]
━━━━━━━━━━━━━━━━━━━━━*/
@keyframes jump {
	0%  {
		-webkit-transform: translateY(0px) scale(1.0, 1.0);
		transform: translateY(0px) scale(1.0, 1.0);
	}
	4%  {
		-webkit-transform: translateY(-20px) scale(1.0, 1.1);
		transform: translateY(-20px) scaleY(1.0, 1.1);
	}
	8%  {
		-webkit-transform: translateY(0px) scale(1.0, 1.0);
		transform: translateY(0px) scale(1.0, 1.0);
	}
	12%  {
		-webkit-transform: translateY(10px) scale(1.1, 0.9);
		transform: translateY(10px) scale(1.1, 0.9);
	}
	16%  {
		-webkit-transform: translateY(0px) scale(1.0, 1.0);
		transform: translateY(0px) scale(1.0, 1.0);
	}
	100% {
		-webkit-transform: translateY(0px) scale(1.0, 1.0);
		transform: translateY(0px) scale(1.0, 1.0);
	}
}




/*━━━━━━━━━━━━━━━━━━━━
▼ Animation [slideshow]
━━━━━━━━━━━━━━━━━━━━━*/
.opmovie {
    display: block;
    position: relative;
		z-index: 20;
}
.opmovie:before {
    content: "";
    width: inherit;
    height: 0;
    padding-top: 56.25%;
    background-color: #FFF;
    position: relative;
    z-index: 30;
    top: 0;
    left: 0;
    opacity: 0.0;
    display: block;

    -webkit-transition:
        opacity 0.2s ease;
    transition:
        opacity 0.2s ease;
}
a.opmovie:hover:before {
    opacity: 0.15;
}

a.opmovie:after {
    content: "\f04b";
    width: 55px;
    height: 60px;
    margin: auto;
    padding-left: 5px;
    border: solid 1px rgba( 255, 255, 255, 0.5 );
    border-radius: 100%;
    background-color: rgba( 35, 157, 218, 0.8 );
    color: #FFF;
    font-size: 30px;
    font-family: "fontAwesome";
    line-height: 60px;
    text-align: center;
    position: absolute;
    z-index: 50;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
		text-shadow: none;

    opacity: 1.0;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}
a.opmovie:hover:after {
    opacity: 0.7;
    transform: scale(1.2);
}
.opmovie img {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
}


.slideshow {
    display: block;
    position: relative;
		z-index: 20;
}
.slideshow:before {
    content: "";
    width: inherit;
    height: 0;
    padding-top: 56.25%;
    background-color: #FFF;
    position: relative;
    z-index: 30;
    top: 0;
    left: 0;
    opacity: 0.0;
    display: block;

    -webkit-transition:
        opacity 0.2s ease;
    transition:
        opacity 0.2s ease;
}
a.slideshow:hover:before {
    opacity: 0.15;
}

a.slideshow:after {
    content: "\f04b";
    width: 150px;
    height: 100px;
    margin: auto;
    padding-left: 10px;
    border: solid 1px rgba( 255, 255, 255, 0.5 );
    border-radius: 10px;
    background-color: rgba( 255, 100, 100, 0.8 );
    box-shadow:
        0 0 10px rgba( 255, 100, 100, 0.8 ),
        0 0 20px rgba( 255, 255, 255, 0.8 ) inset;
    color: #FFF;
    font-size: 50px;
    font-family: "fontAwesome";
    line-height: 100px;
    text-align: center;
    position: absolute;
    z-index: 50;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    opacity: 0.2;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}
a.slideshow:hover:after {
    opacity: 1.0;
    transform: scale(1.2);
}
.slideshow img {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
}

#wrapper.on .slideshow img {
    -webkit-animation-name: slideshow;
    animation-name: slideshow;
    -webkit-animation-duration: 15s;
    animation-duration: 15s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
#wrapper.on .slideshow img:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
#wrapper.on .slideshow img:nth-child(2) {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}
#wrapper.on .slideshow img:nth-child(3) {
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}
#wrapper.on .slideshow img:nth-child(4) {
    -webkit-animation-delay: 9s;
    animation-delay: 9s;
}
#wrapper.on .slideshow img:nth-child(5) {
    -webkit-animation-delay: 12s;
    animation-delay: 12s;
}

@-webkit-keyframes slideshow {
	0%  {
        opacity: 1;
        z-index: 0;
    }
	1%  {
        opacity: 1;
        z-index: 1;
    }
	20% {
        opacity: 1;
        z-index: 2;
    }
	30% {
        opacity: 0;
        z-index: 2;
    }
	50% {
        opacity: 0;
        z-index: 2;
    }
	100%{
        opacity: 0;
        z-index: 0;
    }
}
@keyframes slideshow {
	0%  {
        opacity: 1;
        z-index: 0;
    }
	1%  {
        opacity: 1;
        z-index: 1;
    }
	20% {
        opacity: 1;
        z-index: 2;
    }
	30% {
        opacity: 0;
        z-index: 2;
    }
	50% {
        opacity: 0;
        z-index: 2;
    }
	100%{
        opacity: 0;
        z-index: 0;
    }
}




/*━━━━━━━━━━━━━━━━━━━━
▼ IE11
━━━━━━━━━━━━━━━━━━━━━*/
@media all and (-ms-high-contrast:none){
  *::-ms-backdrop,
	#toplink a {
		width: 100%
	}
}

.slick_list{
	box-sizing: border-box;
}





.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index:100;
    height: 100vh;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
}

.modal__content img{
    display: block;
    margin: 0 auto;
    text-align: center;
    max-height: 80vh;
    max-width: 80vh;
}
.modal__content a{
    display: block;
    margin: 0 auto;
    text-align: center;
}

#content #opmovie .opmovie_wrap a {
    border: none !important;
}