@charset "utf-8";

@import "reset.css";
@import "utility.css";
@import "exvalidation.css";
@import "animations.css";
@import "animate.css";
@import "skins/flat/red.css";

/* webフォント検索用 */
.FFDINWebProMedium { font-family: FFDINWebProMedium; }
.HelveticaNeueLTPro-Th { font-family: HelveticaNeueLTPro-Th; }
.HelveticaNeueLTPro-Roman { font-family: HelveticaNeueLTPro-Roman; }

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * html/body
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

*, *:after, *:before {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/* リンクなどの要素をタップした時の色を消す */
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 長押しした際に表示されるポップアップメニューを消す */
* {
    -webkit-touch-callout: none;
}

/* 行頭禁則文字 */
* {
	word-break: break-word;
	word-wrap: break-word;
}

body {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #000000;
	line-height: 1.5;
	font-family: "neue-haas-grotesk-display","dnp-shuei-gothic-gin-std", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic","Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3","Meiryo","ＭＳ Ｐゴシック","MS PGothic", sans-serif;
	font-size: 14px;
	color: #ffffff;
}

.is-ie body {
	font-family: "dnp-shuei-gothic-gin-std", "Meiryo","ＭＳ Ｐゴシック","MS PGothic", sans-serif;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * display
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.disp {
	display: block !important;
}

.disp-none {
	display: none !important;
}

.disp-table {
	display: table !important;
}

.disp-inline {
	display: inline !important;
}

.disp-inline-block {
	display: inline-block !important;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * visibility
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.visibility-hidden {
	visibility: hidden !important;
}

.visibility-visibile {
	visibility: visible !important;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * article/section
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

article {
	position: relative;
	z-index: 0;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	background: #000000;
}

section {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

.section-inner1200 {
	position: relative;
	width: 1200px;
	margin: 0 auto;
	padding: 0;
}

.section-inner1000 {
	position: relative;
	width: 1000px;
	margin: 0 auto;
	padding: 0;
}

.section-inner-narrow {
	position: relative;
	width: 800px;
	margin: 0 auto;
	padding: 50px;
}

.section-inner-wide {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * common parts
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.link-btn-blue {
	position: relative;
	display: inline-block;
	width: 300px;
	height: 60px;
	margin: 0;
	padding: 0;
	background: #0033ff;
	box-shadow: 0 0 5px #000000;
	text-align: center;
	line-height: 60px;
	font-size: 16px;
	color: #ffffff !important;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.link-btn-blue.wide {
	width: auto;
	padding: 0 60px;
}

.link-btn-blue:hover {
	color: #ffffff !important;
}

.link-btn-blue:before {
	content: "";
	position: absolute;
	top: 23px;
	right: 20px;
	width: 30px;
	height: 8px;
	background: url('../images/icon-link-btn-arrow-white.svg') 0 0 no-repeat;
	background-size: 30px 8px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.link-btn-blue:hover:before {
	right: 10px;
}

blockquote {
	width: 90%;
	margin: 20px auto;
	padding: 30px;
	background: #fafafa;
	line-height: 1.5em;
	border: 3px solid #dddddd;
	border-radius: 6px;
}

.atten {
	position: relative;
    margin: 20px auto;
    padding: 30px;
	border-radius: 4px;
	border: 1px solid #555555;
	background: rgba(255,255,255,0.2);
	font-size: 12px;
}

.caution {
	vertical-align:super;
	font-size:10px;
}

.day {
	font-size: 1.8em;
	font-family: 'HelveticaNeueLTPro-Roman', Roboto, Arial, sans-serif;
	font-weight: normal;
	font-style: normal;
}

.remarks {
    font-size: 0.8em;
    font-weight: lighter;
}

.dwf-num {
	font-family: 'HelveticaNeueLTPro-Bd', sans-serif;
	font-weight: normal;
	font-style: normal;
}

.lock {
    overflow: hidden;
}

.modal-content {
	display: none;
    position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 50%;
}

.modal-overlay {
    z-index: 10000;
    position: fixed;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 120%;
	background-color: rgba(0,0,0,0.9);
	opacity: 0;
}

.modal-wrap {
    z-index: 11000;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.modal-close {
	display: block;
	position: absolute;
	top: -10px;
	right: -60px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 30px;
	text-align: center;
	cursor: pointer;
}

.modal-close img {
	width: 26px;
	height: 26px;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=password] {
	clear: both;
	overflow: auto;
	width: 200px;
	height: 40px;
	margin: 0;
	padding: 0 5px;
	font-size: 14px;
}

label {
	padding-left: 7px;
	cursor: pointer;
}

textarea {
	clear: both;
	width: 400px;
	margin: 0;
	padding: 10px;
	resize: none;
	font-size: 14px;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=password],
textarea {
  	outline: none;
  	border: none;
	border: 1px solid #dddddd;
	border-radius: 3px;
	box-shadow: inset 0 0 3px #cccccc;
	background: #ffffff;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
	transition: all 0.3s;
}
 
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
textarea:focus {
	box-shadow: 0px 0px 5px #7bc1f7;
	background: #dbeefd;
}

.radio-button {
	display: block;
	margin-bottom: 10px;
}

:placeholder-shown { color: #999999; }

/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder { color: #999999; }

/* Firefox 18- */
:-moz-placeholder { color: #999999; }

/* Firefox 19+ */
::-moz-placeholder { color: #999999; }

/* IE 10+ */
:-ms-input-placeholder { color: #999999; }

select {
	-moz-appearance: none;
  	-webkit-appearance: none;
  	appearance: none;
	width: 150px;
	height: 30px;
	padding: 0 5px;
	line-height: 30px;
	border: 1px solid #dddddd;
	border-radius: 3px;
	background: #eeeeee;
	text-align: left;
	font-size: 14px;
	color: #333333;
}

.button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-o-appearance: none;
	-ms-appearance: none;
	display: inline-block;
	outline: none;
	border: none;	
	line-height: 1;
	vertical-align: middle;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
  	-ms-transition: all 0.3s;
  	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.submit {
	margin: 40px 0;
	text-align: center;
}

.submit button {
	outline:none;
	width: 150px;
	height: 40px;
	border: none;
	background: #5c646f;
	font-family: "neue-haas-grotesk-display","dnp-shuei-gothic-gin-std", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic","Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3","Meiryo","ＭＳ Ｐゴシック","MS PGothic", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 16px;
	color: #ffffff;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.submit button.small {
	width: auto;
	height: auto;
	border-radius: 0;
	background: none;
	font-size: 14px;
}

.is-ie .submit button {
	font-family: "Meiryo","ＭＳ Ｐゴシック","MS PGothic", sans-serif;
}

.submit button:hover {
	background: #454b53;
}

.submit button.small:hover {
	background: none;
}

.submit button:disabled {
	background: #5c646f;
	color: #7c8693;
}

.form-required {
	color: #f438ff;
	font-weight: lighter;
}

.str-count-wrap {
	position: relative;
	width: 100%;
	margin-bottom: 5px;
	text-align: right;
}

.str-count {
	margin-left: 10px;
	font-size: 18px;
	font-weight: bold;
	color: #cccccc;
}

.str-count-subscript {
	font-size: 12px;
	color: #cccccc;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * final page
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/*------------------------- final event page ------------------------- */
.final-mv {
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	height: 100vh;
	background: #000000;
}

@media (max-width: 1280px) {	
	.final-mv {
		position: relative;
		top: auto;
		left: auto;
		z-index: 1;
		height: 650px;
	}
}

.final-mv video[poster] {
	object-fit: cover;
}

.main-visual-loader-logo {
	position: absolute;
	width: 100%;
	height: 100vh;
}

.main-visual-loader-logo span {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 7;
	width: 250px;
	height: 250px;
	margin: auto;
	text-align: center;
}

.main-visual-loader-logo span img {
	width: 250px;
	height: 250px;
}

.main-visual-loader-logo-cover {
	position: absolute;
	width: 100%;
	height: 100vh;
}

.main-visual-loader-logo-cover span {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 8;
	width: 250px;
	height: 250px;
	margin: auto;
	text-align: center;
}

.main-visual-loader-logo-cover span img {
	width: 250px;
	height: 250px;
	-webkit-animation: anime-gateway 0.7s infinite linear;
	animation: anime-gateway 0.7s infinite linear;
}

@-webkit-keyframes anime-gateway {
	0% { 
		-webkit-transform: scale(1);
	} 
	100% { 
		-webkit-transform: scale(0);
	}
}

@keyframes anime-gateway {
	0% { 
		transform: scale(1);
	} 
	100% { 
		transform: scale(0);
	}
}

.final-mv-overlay {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.2) url('../images/dot.png') 0 0 repeat;
}

#final-main-visual-movie {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.final-mv-head {
	display: none;
	position: absolute;
	top: 35px;
	left: 35px;
	z-index: 10;
	width: 70px;
	height: 27px;
}

.final-mv-contents-wrap {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 4;
	width: 100%;
	height: 100%;
}

.final-mv-contents-inner {
	display: table;
	width: 100%;
	height: 100%;
}

.final-mv-contents {
	display: table-cell;
	position: relative;
	width: 100%;
	height: 100%;
	padding-bottom: 70px;
	vertical-align: middle;
	text-align: center;
}

.final-mv-day {
	margin: 0;
	width: 100%;
	text-align: center;
	line-height: 1;
	font-family: 'HelveticaNeueLTPro-Th',  Arial, sans-serif;
	font-size: 40px;
	color: #ffffff;
}

.final-mv-day span {
	margin-left: 10px;
	font-size: 24px;
}

.final-mv-day.small {
	font-size: 30px;
}

.final-mv-day.small span {
	font-size: 20px;
}

.final-mv-invitees {
	margin-top: 10px;
	margin-bottom: 50px;
	text-align: center;
}

.final-mv-invitees span {
	display: inline-block;
	border: 1px solid #ffffff;
	padding: 5px 50px;
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
}

.main-visual-scroll-arrow-text {
	display: none;
	position: absolute;
	z-index: 6;
	bottom: 73px;
	left: 51.5%;
	margin: 0;
	letter-spacing: 1px;
	font-family: 'HelveticaNeueLTPro-Roman', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 9px;
	text-align: end;
	color: #ffffff;
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	-moz-transform-origin: left top;
	-webkit-transform-origin: left top;
	-o-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
}

.is-ie .main-visual-scroll-arrow-text {
	left: 52%;
}

.main-visual-scroll-arrow {
	display: none;
	overflow: hidden;
	position: absolute;
	z-index: 6;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 90px;
	margin: 0 auto;
	background-color: rgba(255,255,255,0.3);
}

.main-visual-scroll-arrow::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 1px;
	height: 90px;
	margin: 0 auto;
	background-color: #ffffff;
	-webkit-animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
	animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
}

@-webkit-keyframes sdl {
	0% {
		-webkit-transform: scale(1, 0);
		-webkit-transform-origin: 0 0;
	}
	35% {
		-webkit-transform: scale(1, 1);
		-webkit-transform-origin: 0 0;
	}
	35.1% {
		-webkit-transform: scale(1, 1);
		-webkit-transform-origin: 0 100%;
	}
	70%, 100% {
		-webkit-transform: scale(1, 0);
		-webkit-transform-origin: 0 100%;
	}
}

@keyframes sdl {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	35% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	35.1% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
	70%, 100% {
		transform: scale(1, 0);
		transform-origin: 0 100%;
	}
}

.final-content {
	position: relative;
	z-index: 2;
	background: rgba(0,0,0,0.8);
	color: #ffffff;
}

.final-content a {
	color: #ff2ecf;
}

.final-content a:hover {
	color: #ff2ecf;
}

#final-content01 {
	margin-top: 100vh;
}

@media (max-width: 1280px) {	
	#final-content01 {
		margin-top: 0;
	}
}

.final-apply-btn {
	display: none;
	position: fixed;
	bottom: 10px;
	right: 0;
	z-index: 100;
	width: 70px;
	height: 250px;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	border-top: 1px solid #0033ff;
	border-left: 1px solid #0033ff;
	border-bottom: 1px solid #0033ff;
	background: rgba(0,51,255,0.5);
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
	transition: all 0.2s;
}

.final-apply-btn:hover {
	box-shadow: 0 0 20px #0033ff;
}

/*
.final-apply-btn.fixed {
	
}
*/

.final-apply-btn a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	font-size: 14px;
	line-height: 70px;
	color: #ffffff;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	-webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
	transition: all 200ms linear;
}

.final-apply-btn a:hover {
	color: #ffffff;
	opacity: 0.7;
}

.final-apply-btn a span {
	font-family: 'HelveticaNeueLTPro-Bd', sans-serif;
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
}

.final-content-catch {
	margin-top: 50px;
	margin-bottom: 50px;
	text-align: center;
}

.final-content-catch img {
	width: 600px;
}

.final-content-copy {
	position: relative;
	margin-bottom: 50px;
	text-align: center;
	letter-spacing: 3px;
	font-size: 18px;
	font-weight: bold;
	color: #ffffff;
	/*-webkit-transform: skewX(-10deg);
	transform: skewX(-10deg);*/
}

.is-ie .final-content-copy {
	background: none;
}

.final-content-description {
	text-align: center;
	font-size: 16px;
}

.final-sns {
	margin: 100px auto 0;
	text-align: center;
}

.final-sns span {
	display: inline-block;
	height: 50px;
	line-height: 50px;
	font-family: 'HelveticaNeueLTPro-Roman', sans-serif;
	font-weight: normal;
	font-style: normal;
	font-size: 18px;
	color: #ffffff;
}

.is-ie .final-sns span {
	background: none;
}

.final-sns a {
	display: inline-block;
	position: relative;
	width: 50px;
	height: 50px;
	margin-left: 30px;
	padding-top: 6px;
	border-radius: 50%;
	background: rgba(255,255,255,0.7);
	text-decoration: none;
	text-align: center;
	line-height: 42px;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}

.final-sns a:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 5;
	width: 60px; 
	height: 60px;
	margin-top: -30px;
	margin-left: -30px;
	border-radius: 50%;
	border:1px solid #ffffff;
  	-webkit-animation: pulsate 1.5s ease-in-out infinite;
  	-moz-animation: pulsate 1.5s ease-in-out infinite;
  	-ms-animation: pulsate 1.5s ease-in-out infinite;
  	-o-animation: pulsate 1.5s ease-in-out infinite;
  	animation: pulsate 1.5s ease-in-out infinite;
}

.final-sns a img {
	width: 36px;
	height: 36px;
}

@-webkit-keyframes pulsate {
	from {
		-webkit-transform: scale(1);
		opacity: 1.0;
	}
	95% {
		-webkit-transform: scale(1.3);
		opacity: 0;
	}
	to {
		-webkit-transform: scale(1);
		opacity: 0;
	}
}

@-moz-keyframes pulsate {
	from {
		-moz-transform: scale(1);
		opacity: 1.0;
	}
	95% {
		-moz-transform: scale(1.3);
		opacity: 0;
	}
	to {
		-moz-transform: scale(1);
		opacity: 0;
	}
}

@-ms-keyframes pulsate {
	from {
		-ms-transform: scale(1);
		opacity: 1.0;
	}
	95% {
		-ms-transform: scale(1.3);
		opacity: 0;
	}
	to {
		-ms-transform: scale(1);
		opacity: 0;
	}
}

@-o-keyframes pulsate {
	from {
		-o-transform: scale(1);
		opacity: 1.0;
	}
	95% {
		-o-transform: scale(1.3);
		opacity: 0;
	}
	to {
		-o-transform: scale(1);
		opacity: 0;
	}
}

@keyframes pulsate {
	from {
		transform: scale(1);
		opacity: 1.0;
	}
	95% {
		transform: scale(1.3);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 0;
	}
}

.final-content h2 {
	position: relative;
	margin: 80px auto 80px;
	text-align: center;
	letter-spacing: 2px;
	font-size: 20px;
	font-weight: bold;
	color: #0033ff;
}

.final-content h2 > .en {
	letter-spacing: -1px;
	font-family: 'HelveticaNeueLTPro-Bd', sans-serif;
	font-weight: normal;
	font-style: normal;
	font-size: 70px;
	color: #0033ff;
}

#final-event-sns {
	display: table;
	width: auto;
	margin: 0 auto 30px;
	text-align: center;
}

div.final-event-sns-btn {
	display: table-cell;
	width: auto;
	margin: 0;
	padding: 0 5px;
	vertical-align: top;
}

.link-btn-grey-small {
	position: relative;
	margin-left: 10px;
	padding: 5px 5px 5px 15px;
	border: 1px solid rgba(115,125,139,0.8);
	border-radius:2px;
	background: rgba(115,125,139,0.5);
	text-decoration: none;
	font-size: 10px;
	color: #ffffff !important;
	cursor:pointer;
}

.link-btn-grey-small:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 5px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	background: url('../images/icon-popup-white.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 8px 8px;
}

.link-btn-grey-small:hover {
	opacity: 0.7;
}

.final-event-link {
	text-decoration: underline;
	color: #FF864F !important;
}

.final-event-link:hover {
	color: #FF864F !important;
	text-decoration: underline;
}

.final-table {
	position: relative;
	width: 100%;
	margin: 0;
}

.final-table-left-td {
	position: relative;
	width: 30%;
	padding: 20px 0;
	font-weight: bold;
	font-size: 16px;
}

.final-table-left-td:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 1px;
	width: 100%;
	background: #0033ff;
}

.final-table-left-td2 {
	position: relative;
	width: 110px;
	padding: 20px 0;
	font-weight: bold;
	color: #0033ff;
}

.final-table-left-td2:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 1px;
	width: 100%;
	background: #0033ff;
}

.final-table-left-td2.non-gla:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 1px;
	width: 100%;
	background: #0033ff;
}

.final-table-left-td2 img {
	position: relative;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	/*box-shadow: 0 0 0 2px #0ae8f6;*/
}

.final-table-right-td {
	position: relative;
	width: 70%;
	padding: 20px 0;
}

.final-table-right-td:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 1px;
	width: 100%;
	background: #0033ff;
}

.final-table-right-td2 {
	position: relative;
	width: 270px;
	height: 200px;
	padding: 20px 30px 20px 10px;
	vertical-align: top;
}

.final-table-right-td2:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 1px;
	width: 100%;
	background: #0033ff;
}

.final-table-right-td3 {
	position: relative;
	width: 270px;
	padding: 20px 30px 20px 10px;
	vertical-align: top;
}

.final-table-right-td3:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 1px;
	width: 100%;
	background: #0033ff;
}

.final-table-center-td {
	width: 100%;
	padding: 20px 0;
}

.final-table .bbnone {
	border-bottom: none;
}

.final-table-timeline {
	width: 100%;
	margin: 0;
	border: none;
}

.final-table-timeline th {
	width: 20%;
	padding: 5px 0;
}

.final-table-timeline td {
	width: 80%;
	padding: 5px 0;
}

.final-presen-title {
	display: inline-block;
	margin-bottom: 10px;
	line-height: 1.5;
	font-weight: bold;
	font-size: 16px;
  }
}

.final-presen-name {
	margin-bottom: 0;
	line-height: 1;
}

.final-name-en {
	font-family: 'HelveticaNeueLTPro-Roman', sans-serif;
	font-weight: normal;
	font-style: normal;
	font-size: 11px;
}

.final-movie-btn {
	position: absolute;
	bottom: 20px;
	left: 10px;
	display: inline-block;
	width: 120px;
	height: 30px;
	padding-left: 22px;
	border-radius: 4px;
	border: 1px solid rgba(115,125,139,0.8);
	background: rgba(115,125,139,0.5);
	line-height: 28px;
	text-align: center;
	font-size: 12px;
	color: #ffffff !important;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
	transition: all 0.3s;
}

.final-movie-btn:before {
	content: "";
	position: absolute;
	top: 7px;
	left: 6px;
	width: 18px;
	height: 14px;
	background: url('../images/final/icon-video.png') 0 0 no-repeat;
	background-size: 18px 14px;
}

.final-movie-btn:hover {
	color: #ffffff !important;
	opacity: 0.7;
}

.finalist-movie-wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
}

.finalist-movie-wrap:before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 16:9 */
}

.finalist-movie {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 0 1px rgba(255,46,207,1);
}

.finalist-movie-link {
	display: inline-block;
	width: auto;
	position: absolute;
	left: 50%;
	bottom: -40px;
	margin: 0 auto;
	text-align: center;
	-moz-transform: translateX(-50%);
	-webkit-transform:  translateX(-50%);
	-o-transform:  translateX(-50%);
	-ms-transform:  translateX(-50%);
	transform:  translateX(-50%);
}

.final-page-top {
	position: relative;
	z-index: 2;
	overflow: hidden;
	width: 100%;
	padding: 0;
	border-top: 1px solid #222222;
	background: #000000;
}

.final-page-top > a {
	display: block;
	position: relative;
	width: 100%;
	height: 80px;
	margin: 0 auto;
	padding-top: 20px;
	text-align: center;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}

.final-page-top > a img {
	width: 36px;
	height: 23px;
}

.final-page-top a:after {
	content: "PAGE TOP";
	position: absolute;
	top: 0;
	left: 50%;
	width: 100%;
	height: 100%;
	margin-left: -50%;
	padding-top: 53px;
	line-height: 1;
	text-align: center;
	font-size: 12px;
	font-family: 'HelveticaNeueLTPro-Roman', sans-serif;
	font-weight: normal;
	font-style: normal;
	color: #0033ff;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}

.final-page-top > a:hover {
	padding-top: 15px;
}

.footer-final {
	position: relative;
	z-index: 2;
	border-top: 1px solid #222222;
	background: #000000;
	color: #ffffff;
}

.footer-final-content {
	display: table;
	width: 1000px;
	margin: 0 auto;
}

.final-footer-logo {
	display: table-cell;
	width: 50%;
	height: 200px;
	vertical-align: middle;
}

.final-footer-logo.w100 {
	width: 100%;
	text-align: center;
}

.final-footer-sns {
	display: table-cell;
	width: 50%;
	height: 200px;
	vertical-align: middle;
	text-align: right;
}

.final-footer-sns span {
	display: inline-block;
	height: 50px;
	line-height: 50px;
	font-family: 'HelveticaNeueLTPro-Roman', sans-serif;
	font-weight: normal;
	font-style: normal;
	color: #ffffff;
}

.final-footer-sns a {
	display: inline-block;
	position: relative;
	width: 50px;
	height: 50px;
	margin-left: 30px;
	padding-top: 6px;
	border-radius: 50%;
	background: rgba(255,255,255,0.7);
	text-decoration: none;
	text-align: center;
	line-height: 42px;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}

.final-footer-sns a:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 5;
	width: 60px; 
	height: 60px;
	margin-top: -30px;
	margin-left: -30px;
	border-radius: 50%;
	border:1px solid #ffffff;
  	-webkit-animation: pulsate 1.5s ease-in-out infinite;
  	-moz-animation: pulsate 1.5s ease-in-out infinite;
  	-ms-animation: pulsate 1.5s ease-in-out infinite;
  	-o-animation: pulsate 1.5s ease-in-out infinite;
  	animation: pulsate 1.5s ease-in-out infinite;
}

.final-footer-sns a img {
	width: 36px;
	height: 36px;
}

.final-copyright {
	position: relative;
	clear: both;
	padding: 15px 0;
	width: 100%;
	border-top: 1px solid #222222;
	background: #000000;
}

.final-copyright-inner {
	display: table;
	position: relative;
	width: 1000px;
	height: 40px;
	margin: 0 auto;
	line-height: 40px;
	font-size: 12px;
}

.footer-tokyo-logo {
	display: table-cell;
	width: 200px;
	margin: 0; 
	padding: 0;
	vertical-align: middle;
}

.footer-etic-logo {
	display: table-cell;
	width: 200px;
	margin: 0; 
	padding: 0;
	vertical-align: middle;
}

small.copyright  {
	display: table-cell;
	width: 600px;
	text-align: right;
	font-family: 'HelveticaNeueLTPro-Roman', Roboto, Arial, sans-serif;
	font-weight: normal;
	font-style: normal;
	font-size: 10px;
	color: #ffffff;
}

.final-app-logo {
	margin: 50px auto;
	text-align: center;
}

.final-app-title {
	margin-bottom: 50px;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}

.final-app-invitees {
	margin-bottom: 50px;
	text-align: center;
}

.final-app-invitees span {
	display: inline-block;
	border: 1px solid #ffffff;
	padding: 5px 50px;
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
}

.address-org-final {
	width: 100%;
	margin: 20px auto;
	padding: 30px;
	border: 1px solid #0033ff;
	border-radius: 4px;
	background: rgba(0,51,255,0.5);
	line-height: 1.5;
	color: #ffffff;
}

.address-org-final a {
	color: #ff2ecf;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 *Google reCAPTCHA
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.g-recaptcha {
	margin: 40px auto 0;
	width: 300px;
}