* {
    margin: 0;
    padding: 0;
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
table {
	padding: 0;
	margin: 0;
	border-collapse: collapse;
	border-spacing: 0;
}
body {
	margin: 0 auto;
	background-image: url("../img/img_bg.jpg");
	background-position: top center;
	background-size: 100%;
	background-repeat: no-repeat;
	background-color: #000;
    font-family: "メイリオ", Meiryo, "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
}
a {
	text-decoration: none;
	color: #ecc681;
}
a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
	transition: all 0.5s ease 0s;
}
a img {
	border-style: none;
}
img {
	vertical-align: bottom;
}
.center {
	text-align: center !important;
}
.clearfix {
	zoom: 1;
}
.clearfix:after {
	display: block;
	clear: both;
	content: "";
}
/* Margin
------------------------------------------*/
.margin10 {
	margin-bottom: 10px !important;
}
.margin20 {
	margin-bottom: 20px !important;
}
.margin30 {
	margin-bottom: 30px !important;
}
.margin40 {
	margin-bottom: 40px !important;
}
.margin50 {
	margin-bottom: 50px !important;
}
.margin75 {
	margin-bottom: 75px !important;
}
.margin100 {
	margin-bottom: 100px !important;
}
.margintop20 {
	margin-top: 20px !important;
}
.margintop30 {
	margin-top: 30px !important;
}
@media screen and (max-width:500px) {
	.margin10 {
		margin-bottom: 1% !important;
	}
	.margin20 {
		margin-bottom: 2.5% !important;
	}
	.margin30 {
		margin-bottom: 5% !important;
	}
	.margin40 {
		margin-bottom: 7.5% !important;
	}
	.margin50 {
		margin-bottom: 10% !important;
	}
	.margin75 {
		margin-bottom: 12.5% !important;
	}
	.margin100 {
		margin-bottom: 15% !important;
	}
}
/* WRAPPER
------------------------------------------*/
#wrapper_top {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
#wrapper {
	width: 100%;
	margin: 75px auto 0;
	box-sizing: border-box;
}
@media screen and (max-width:500px) {
	#wrapper {
		margin: 15% auto 0;
	}
}
/* CONTENTS
------------------------------------------*/
.contents {
	width: 100%;
	max-width: 650px;
	margin: 0 auto;
	padding: 0 30px;
	box-sizing: border-box;
}
h1 {
	width: 70%;
	max-width: 600px;
	margin: 0 auto;
}
h1 img {
	width: 100%;
	margin: 0;
}
h2 {
	width: 100%;
	margin: 0 auto;
	padding: 0 0 30px;
	text-align: center;
	font-size: 20px;
	line-height: 1.5em;
	font-weight: bold;
	color: #FFF;
	position: relative;
}
h2::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 1px;
	margin: 0 auto;
	text-align: center;
	background-image: -webkit-linear-gradient(left, transparent, #FFF 25%, #FFF 75%, transparent);
	background-image: -o-linear-gradient(left, transparent, #FFF 25%, #FFF 75%, transparent);
	background-image: linear-gradient(to right, transparent, #FFF 25%, #FFF 75%, transparent);
}
h2 span {
	margin: 0 0 10px;
	text-align: left;
	font-size: 80%;
	line-height: 1.6em;
	font-weight: normal;
	color: #999;
}
.text {
	width: 100%;
	margin: 0 auto;
	text-align: left;
	font-size: 16px;
	line-height: 1.8em;
	font-weight: normal;
	color: #FFFFFF;
}
.box {
	width: 100%;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
	border: 1px solid #333;
}
.formbox {
	width: 100%;
	/*max-width: 450px;*/
	margin: 0 auto 20px;
}
.formbox input[type="text"] {
	width: 100%;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
	border: 1px solid #000;
	font-size: 20px;
	text-align: center;
}
.entry_btn {
	width: 100%;
	/*max-width: 450px;*/
	margin: 0 auto;
	position: relative;
}
.entry_btn input[type="button"],
.entry_btn input[type="submit"] {
	width: 100%;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
	display: block;
	position: relative;
	border: #FFF 1px solid;
	color: #FFF;
	background: transparent;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
	transition: all .3s;
}
.entry_btn::before {
	content: '';
	position: absolute;
	bottom: 47%;
	right: 30px;
	width: 50px;
	height: 1px;
	background: #FFF;
	transition: all .3s;
}
.entry_btn::after {
	content: '';
	position: absolute;
	bottom: calc(47% + 4px);
	right: 29px;
	width: 12px;
	height: 1px;
	background: #FFF;
	transform: rotate(45deg);
	transition: all .3s;
}
.entry_btn input[type="button"]:hover {
	border: #AAA 1px solid;
}
.entry_btn:hover::before {
	right: 20px;
	background: #AAA;
}
.entry_btn:hover::after {
	right: 19px;
	background: #AAA;
}
.entry_btn.off {
	opacity: 0.2;
	cursor: unset;
}
.entry_btn.off::before {
	display: none
}
.entry_btn.off::after {
	display: none
}
.entry_btn.qbtn input[type="button"] {
	border: #cf9a39 1px solid;
	color: #000;
	background-image: linear-gradient(90deg, rgba(203, 157, 62, 1), rgba(248, 241, 213, 1) 50%, rgba(203, 157, 62, 1));
	z-index: 0;
}
.entry_btn.qbtn::before {
	background: #000;
	z-index: 1;
}
.entry_btn.qbtn::after {
	background: #000;
	z-index: 1;
}
@media screen and (max-width:500px) {
	.contents {
		padding: 0 20px;
	}
h2 {
	padding: 0 0 5%;
}
	.text {
		font-size: 14px;
	}
	.formbox input[type="text"] {
		padding: 12px 20px;
		font-size: 18px;
	}
	.entry_btn input[type="button"] {
		padding: 12px 20px;
		font-size: 18px;
	}
	.entry_btn.qbtn input[type="button"] {
		padding: 18px 20px;
	}
	.entry_btn::before {
		right: 15px;
		width: 25px;
	}
	.entry_btn::after {
		right: 14px;
		width: 10px;
	}
	.entry_btn:hover::before {
		right: 10px;
	}
	.entry_btn:hover::after {
		right: 9px;
	}
}
/* ENTRY NAME
------------------------------------------*/

.entry-company {
	font-size: 18px;
	line-height: 1.4em;
	color: #FFF;
}
.entry-name {
	font-size: 40px;
	line-height: 1.4em;
	font-weight: bold;
	color: #FFF;
}
.entry-guest_id {
	font-size: 20px;
	line-height: 1.4em;
	color: #FFF;
}

/* Main Presentation
------------------------------------------*/
.timetable_main {
	width: 100%;
	margin: 0;
	padding: 0;
}
.timetable_main li {
	width: 100%;
	margin: 0 0 10px 0;
	padding: 10px 12px;
	box-sizing: border-box;
	list-style-type: none;
	display: flex;
	box-sizing: border-box;
	border: 1px solid #333;
}
.timetable_main .time {
	width: 90px;
	height: 24px;
	margin: 2px 10px 0 0;
	padding: 3px;
	background-color: #FFF;
	text-align: center;
	font-size: 18px;
	line-height: 1em;
	font-weight: bold;
	color: #000;
	box-sizing: border-box;
}
.timetable_main .program {
	width: 100%;
	margin: 0;
	padding: 3px;
	text-align: left;
	font-size: 18px;
	line-height: 1.4em;
	font-weight: bold;
	color: #FFF;
}
.timetable_main .program span {
	margin: 5px 0 0;
	text-align: left;
	font-size: 70%;
	line-height: 1.6em;
	font-weight: normal;
	color: #999;
	display: block;
}
@media screen and (max-width:500px) {
	.timetable_main li {
		margin: 0 0 2.5% 0;
	}
	.timetable_main .time {
		width: 80px;
		height: 22px;
		font-size: 16px;
	}
	.timetable_main .program {
		font-size: 16px;
	}
}
/* Brand Presentation
------------------------------------------*/
.accordion {}
.accordion_toggle {
	display: none;
}
.accordion_Label {
	padding: 20px 20px 15px;
	border: 1px solid #333;
	border-bottom: none;
	color: #FFF;
	display: flex;
}
.accordion_Label .check {
	width: 38px;
	margin: 0 15px 0 0;
}
.accordion_Label .groupname {
	font-size: 18px;
	line-height: 1.2em;
	text-align: left;
	font-weight: bold;
}
.accordion_Label .brandname span {
	font-size: 70%;
	font-weight: normal;
	color: #999;
}
.accordion_Label::before {
	content: "＋";
	font-size: 24px;
	line-height: 1;
	position: absolute;
	top: calc(50% - 12px);
	right: 15px;
	font-weight: normal;
}
.accordion_Label, .accordion_requirements {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.accordion_Label:hover {
	cursor: pointer;
}
.accordion_Label:hover::before {
	transform: rotate(180deg);
	transition: all 0.5s;
}
.accordion_requirements {
	height: 0;
	margin-bottom: 10px;
	padding: 0 20px;
	overflow: hidden;
	border: 1px solid #333;
	border-top: none;
	color: #FFF;
}
.accordion_toggle:checked + .accordion_Label + .accordion_requirements {
	height: auto;
	padding: 0 20px 20px;
	transition: all .3s;
}
.accordion_toggle:checked + .accordion_Label::before {
	content: "－";
}
.accordion_requirements .timetable_brand {
	width: 100%;
	margin: 0;
	padding: 0;
}
.accordion_requirements .timetable_brand li {
	display: flex;
	margin: 0 0 12px 0;
}
.accordion_requirements .timetable_brand li .time {
	display: flex;
	align-items: center;
	margin: 0 10px 0 0;
	padding: 2px 5px 0px;
	text-align: center;
	font-size: 18px;
	line-height: 1.4em;
	font-weight: bold;
	color: #FFF;
	border: 1px solid #333;
	box-sizing: border-box;
	list-style-type: none;
	justify-content: flex-start;
}
.accordion_requirements .timetable_brand li .brandname {
	padding: 4px 5px 0px;
	font-size: 16px;
	line-height: 1.4em;
	color: #FFF;
}
.accordion_requirements .timetable_brand li .brandname a {
	color: #FFF;
}
.accordion_requirements .notice {
	margin: 10px 0 15px;
	font-size: 12px;
	line-height: 1.4em;
	font-weight: normal;
	color: #999;
}
.accordion_requirements .question {
	position: relative;
	width: 100%;
	height: 40px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1em;
	list-style-type: none;
	align-items: center;
	vertical-align: top;
	cursor: pointer;
	box-sizing: border-box;
	background:  linear-gradient(90deg, rgba(200, 200, 200, 1), rgba(255, 255, 255, 1) 50%, rgba(200, 200, 200, 1));
	transition: all .2s ease-in;
}
.accordion_requirements .question a {
	display: block;
	position: absolute;
	top: 12px;
	left: 15px;
	width: 100%;
	height: 100%;
	color: #000;
}
.accordion_requirements .question::before {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 20px;
	height: 1px;
	background: #000;
}
.accordion_requirements .question::after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 6px;
	height: 6px;
	border-right: 1px solid #000;
	border-top: 1px solid #000;
	transform: rotate(45deg);
}
@media screen and (max-width: 500px) {
	.accordion_Label {
		padding: 15px 15px 10px;
	}
	.accordion_Label .check {
		width: 30px;
	}
	.accordion_Label .brandname {
		font-size: 16px;
	}
	.accordion_Label::before {
		font-size: 22px;
		top: calc(50% - 11px);
		right: 10px;
	}
	.accordion_requirements {
		margin-bottom: 2.5%;
		padding: 0 15px;
	}
	.accordion_toggle:checked + .accordion_Label + .accordion_requirements {
		padding: 0 15px 15px;
	}
	.accordion_requirements .timetable_brand li {
		margin: 0 5px 5px 0;
		font-size: 16px;
	}
	.accordion_requirements h3 {
		font-size: 12px;
	}
	.accordion_requirements .question {
		height: 40px;
		font-size: 14px;
	}
	.accordion_requirements .question a {
		top: 14px;
		left: 12px;
	}
}
@media screen and (max-width: 380px) {
	.accordion_Label .brandname {
		font-size: 14px;
	}
}
/* Party
------------------------------------------*/

.party {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #cf9a39;
}
.party h5 {
	width: 100%;
	padding: 15px 0;
	box-sizing: border-box;
	background-image: linear-gradient(90deg, rgba(203, 157, 62, 1), rgba(248, 241, 213, 1) 50%, rgba(203, 157, 62, 1));
	font-size: 18px;
	line-height: 1.4em;
	font-weight: bold;
	color: #000;
	text-align: center;
}
.party p {
	width: 100%;
	padding: 15px 20px;
	box-sizing: border-box;
	font-size: 16px;
	line-height: 1.8em;
	color: #FFF;
}

/* Questionnaire
------------------------------------------*/
.questionnaire {
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
	border: 1px solid #333;
}
.questionnaire h4 {
	font-size: 18px;
	line-height: 1.4em;
	font-weight: bold;
	color: #FFF;
	padding: 0 0 15px;
	margin: 0 0 15px;
	border-bottom: 1px solid #333;
}
.questionnaire h4 p {
	font-size: 150%;
	margin: 0 0 5px;
	color: #999;
	font-weight: normal;
	font-family: Arial, Helvetica, "sans-serif";
}
.questionnaire h4 span {
	font-size: 70%;
}
.questionnaire h4 span.required {
	font-size: 70%;
	color: red;
}
.questionnaire label {
	position: relative;
	cursor: pointer;
	padding-left: 40px;
	text-align: left;
	font-size: 18px;
	line-height: 1.4em;
	font-weight: normal;
	color: #FFF;
	display: block;
	margin: 0 0 20px;
}
.questionnaire label:last-child {
	margin: 0;
}
.questionnaire label::before, .questionnaire label::after {
	content: "";
	display: block;
	border-radius: 50%;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
}
.questionnaire label::before {
	background-color: #fff;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	left: 5px;
}
.questionnaire label::after {
	background-color: #cf9a39;
	border-radius: 50%;
	opacity: 0;
	width: 16px;
	height: 16px;
	left: 7px
}
.questionnaire label.square::before, .questionnaire label.square::after {
	border-radius: 0;
}
.questionnaire input:checked + label::after {
	opacity: 1;
}
.questionnaire .visually-hidden {
	position: absolute;
	white-space: nowrap;
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	overflow: hidden;
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
}
.questionnaire textarea {
	width: 100%;
	padding: 15px;
	text-align: left;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: normal;
}
.alert {
    color: red;
    list-style: none;
	margin-bottom: 30px !important;
}
@media screen and (max-width:500px) {
	.questionnaire {
		padding: 15px;
	}
	.questionnaire h4 {
		font-size: 16px;
	}
	.questionnaire label {
		padding-left: 35px;
		font-size: 16px;
		margin: 0 0 15px;
	}
	.questionnaire label::before {
		width: 18px;
		height: 18px;
	}
	.questionnaire label::after {
		width: 14px;
		height: 14px;
	}
	.questionnaire textarea {
		padding: 10px;
		font-size: 16px;
	}
}
/* FOOTER
------------------------------------------*/
#footer {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	padding: 100px 0;
	box-sizing: border-box;
	text-align: center;
	position: relative;
	color: #666;
}
/*#footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 1px;
	margin: 0 auto;
	text-align: center;
	background-image: -webkit-linear-gradient(left, transparent, #FFF 25%, #FFF 75%, transparent);
	background-image: -o-linear-gradient(left, transparent, #FFF 25%, #FFF 75%, transparent);
	background-image: linear-gradient(to right, transparent, #FFF 25%, #FFF 75%, transparent);
}*/
#footer .logo {
	width: 50%;
	max-width: 220px;
	margin: 0 auto;
}
#footer .logo img {
	width: 100%;
	margin: 0;
}
#footer .small {
	font-size: 80%;
	color: #333;
}
#footer a {
	color: #333;
}
@media screen and (max-width:500px) {
	#footer {
		padding: 20% 0;
	}
}