@charset "utf-8";

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%;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	font-family:'Noto Sans JP', sans-serif;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}


form#mail_form {
	width: 100%;
	margin: 50px auto;
	padding: 10px 0;
	border-radius: 7px;
	line-height: 1.8;
	position: relative;
}

/*form#mail_form::after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    background: #e2e2e2a8;
    top: 0;
    left: 0;
}*/

form#mail_form dl {
	width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
	flex-direction: column;
}

form#mail_form dl dt {
	position: relative;
	padding: 0;
	text-align: left;
	margin-bottom: .5em;
}

form#mail_form dl dd {
	margin-bottom: 1em;
}
#mail_form dt {
	display: inline-block;
	margin-right: 1em;
	font-size: 100%;
}

form#mail_form dl dt:first-child,
form#mail_form dl dt:first-child + dd {
	border: none;
}

form#mail_form dl dt span:last-child {
background: #314dea;
background: -webkit-linear-gradient(left, #314dea 15%, #9455dc 40%, #ec5d57 70%, #ec5d57 100%);
background: linear-gradient(to left, #314dea 15%, #9455dc 40%, #ec5d57 70%, #ec5d57 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display: inline-block;
font-size: 73%;
padding-left: 1em;
}

/* -- for JavaScript ここから -------------------------------------------------------------------------------- */
.inq-wrap {
	width: 1180px;
	max-width: 100%;
	margin: 10em auto 0;
	color: #333;
}
.inq-wrap .inq-cap {
	width: 1080px;
	max-width: 90%;
	margin: 0 auto;
	padding: 2em;
	background: rgb(255, 255, 255,.7);
	line-height: 1.8;
}
.inq-wrap::before {
	content: "";
    position: absolute;
    width: 81vw;
    height: 41vw;
    background: url(../../css/img/inquery.svg) no-repeat;
    background-size: contain;
    z-index: -1;
    top: -17em;
    left: -2vw;
}
form#mail_form dl dt .required,
form#mail_form dl dt .optional {
	position: absolute;
    color: #ffffff;
    padding: 0px 5px;
    bottom: -89%;
    left: -1%;
    font-size: 80%;
    line-height: 1.5;
}

form#mail_form dl dt .required {
	background: #d9534f;
	border: 1px solid #d43f3a;
}

form#mail_form dl dd .error_blank,
form#mail_form dl dd .error_format,
form#mail_form dl dd .error_match {
	display: block;
	color: #ff0000;
	margin-top: 3px;
}


span.loading {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border-top: 5px solid rgba( 255, 255, 255, 0.2 );
	border-right: 5px solid rgba( 255, 255, 255, 0.2 );
	border-bottom: 5px solid rgba( 255, 255, 255, 0.2 );
	border-left: 5px solid #ffffff;
	-webkit-transform: translateZ( 0 );
	-ms-transform: translateZ( 0 );
	transform: translateZ( 0 );
	-webkit-animation: load-circle 1.0s linear infinite;
	animation: load-circle 1.0s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -30px;
	margin-left: -30px;
}

@-webkit-keyframes load-circle {
	0% {
		-webkit-transform: rotate( 0deg );
		transform: rotate( 0deg );
	}
	100% {
		-webkit-transform: rotate( 360deg );
		transform: rotate( 360deg );
	}
}

@keyframes load-circle {
	0% {
		-webkit-transform: rotate( 0deg );
		transform: rotate( 0deg );
	}
	100% {
		-webkit-transform: rotate( 360deg );
		transform: rotate( 360deg );
	}
}


/* -- for JavaScript ここまで -------------------------------------------------------------------------------- */


form#mail_form input[type="text"],
form#mail_form input[type="email"],
form#mail_form input[type="tel"],
form#mail_form input[type="address"] {
	background: #e1e1e1;
}

form#mail_form input[type="text"]:focus,
form#mail_form input[type="email"]:focus,
form#mail_form input[type="tel"]:focus,
form#mail_form textarea:focus {
	box-shadow: 0px 0px 5px #55ccff;
    border: none;
    background: #ffffff;
}

form#mail_form ul li input[type="radio"],
form#mail_form ul li input[type="checkbox"] {
	margin-right: 10px;
}

form#mail_form ul li:first-child input[type="radio"],
form#mail_form ul li:first-child input[type="checkbox"] {
	margin-top: 0px;
}

form#mail_form select {
	font-size: 100%;
	margin-top: 10px;
	padding: 7px 2%;
    border: 1px solid #cccccc;
    font-family: inherit;
    line-height: normal;
}

form#mail_form textarea {
	display: block;
	height: 200px;
	resize: vertical;
	border: none;
	background: #e1e1e1;
	-webkit-appearance: none;
	font-size: 100%;
}


form#mail_form ul {
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
}
form#mail_form .inq-list li {
	width: 26em;
}

form#mail_form ul li label:hover {
	cursor: pointer;
}


form#mail_form input#name_1,
form#mail_form input#name_2,
form#mail_form input#read_1,
form#mail_form input#read_2 {
	width: 49%;
	padding-top: 1.5em;
}
form#mail_form input#name_1,
form#mail_form input#read_1 {
	margin-right: 2%;
}
form#mail_form input#postal {
	width: 30%;
	padding-top: 1.5em;
}
form#mail_form input#company,
form#mail_form input#phone,
form#mail_form input#schedule,
form#mail_form input#mail_address,
form#mail_form input#mail_address_confirm,
form#mail_form input#address,
form#mail_form textarea {
	width: 100%;
	padding-top: 1.5em;
}
form#mail_form dd.name {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

form#mail_form input#postal + a {
	display: inline-block;
	padding: 5px 15px;
	border: 1px solid #46b8da;
	background: #5bc0de;
	font-size: 100%;
	color: #ffffff;
	text-decoration: none;
}

form#mail_form input#postal + a:hover {
	cursor: pointer;
	background: #31b0d5;
	border: 1px solid #269abc;
}

form#mail_form p#form_submit {
	width: 100%;
	margin: 0 auto;
	padding: 15px 0;
	border: none;
}
.li-head {
	font-weight: bold;
}

form#mail_form input[type="button"] {
	padding: 13px 41px;
	background: #333;
    font-size: 150%;
    color: #ffffff;
    -webkit-appearance: none;
	transition: .5s;
}

form#mail_form input[type="button"]:hover {
	cursor: pointer;
	background: #f35900;
	transition: .5s;
}


dd ul.radio li {
	margin-right: 1em;
}

/* 送信完了画面 */
.send {
	margin: 10em auto 3em auto;
}

#key_wrap #keyVisual .videoBox {
    background: url(../img/event20230707-pcbg.jpg) no-repeat center;
    background-size: cover;
}
.movie-page .eventDtl-ttl-wrap {
	    top: 5vh;
}
.movie-page .eventDtl-ttl {
	margin: 0;
	line-height: 1;
	font-size: 14vw;
    font-family: 'Cormorant Infant';
    font-weight: 900;
    text-shadow: 0 0 10px rgb(255 255 255 / 50%);
}
.movie-page .eventDtl-date {
    font-family: 'Noto Serif JP';
	font-size: 2.5vw;
}
.eventDtl {
    margin: 0 1em 0em;
    display: flex;
    color: #222;
    padding-bottom: 3rem;
}
.eventDtl-right .live-ttl {
	position: relative;
	font-size: 200%;
    width: 90%;
}
.eventDtl-right .live-ttl::before {
    position: absolute;
    content: "";
    width: 40%;
    height: 3px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    background: #314dea;
    background: -webkit-gradient(linear, right top, left top, color-stop(15%, #314dea), color-stop(40%, #9455dc), color-stop(70%, #ec5d57), to(#ec5d57));
    background: -o-linear-gradient(right, #314dea 15%, #9455dc 40%, #ec5d57 70%, #ec5d57 100%);
    background: linear-gradient(to left, #314dea 15%, #9455dc 40%, #ec5d57 70%, #ec5d57 100%);
}

#key_wrap #keyVisual .videoBox .video-bg {
	opacity: .6;
}

/* -- responsive ----------------------------------------------------------------------------------------------------------------- */

/* 1000pixel start */
@media screen and ( max-width: 1000px ) {

form#mail_form {
	width: 95%;
	font-size: 100%;
}

form#mail_form dl dt {
	font-weight: normal;
}


form#mail_form input[type="text"],
form#mail_form input[type="email"],
form#mail_form input[type="tel"] {
	margin-top: 0px;
}

form#mail_form input#postal + a {
	padding: 6px 15px 5px;
}

form#mail_form input#form_submit_button {
	margin-left: 0;
}

form#mail_form select {
	font-size: 16px;
	margin-top: 0;
}
form#mail_form input#postal {
	width: 55%;
}

}
/* 1000pixel end */

@media screen and ( max-width: 768px ) {
	form#mail_form dl dt {
		line-height: 1.4;
	}
form#mail_form .inq-list li {
	width: 100%;
}
.inq-wrap::before {
	top: -2em;
}
form#mail_form dl dt span:last-child {
	display: table;
}
form#mail_form dl dt .required, form#mail_form dl dt .optional {
    bottom: -63%;
}
#key_wrap #keyVisual .videoBox {
    background: url(../img/event20230707-spbg.jpg) no-repeat center;
	background-size: cover;
}
.con-wrap .content {
    margin-top: 0em;
}
.movie-page .eventDtl-ttl-wrap {
}
.movie-page .eventDtl-ttl {
	line-height: 1;
}
.movie-page .eventDtl-date {
	font-size: 5vw;
}
}

