@charset "utf-8";

/* ------------------------------------ */
/* ファーストビュー */
/* ------------------------------------ */
#fv {
	height: 100vh;
	padding-top: 100px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #000;
	overflow: hidden;
	z-index: 1;
	min-height: 730px;
}

#fv::before,
#fv::after {
	content: "";
	width: 100%;
	height: 222px;
	position: absolute;
	left: 0;
	z-index: 2;
}

#fv::before {
	top: 0;
	background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 78%);
}

#fv::after {
	bottom: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 78%);
}

.fvBg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.fvBg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: bottom;
	font-family: 'object-fit: cover; object-position: bottom;';
}

.fvBgItem {
	position: absolute;
	z-index: 3;
}

#fvBgItem1 {
	width: 21.927vw;
	bottom: 45%;
	left: 6%;
}

#fvBgItem2 {
	width: 26.823vw;
	bottom: 13%;
	right: 0;
}

#fvBgItem3 {
	width: 33.542vw;
	bottom: 0;
	left: 0;
}

#fvBgItem4 {
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	text-align: center;
}

#fvBgItem4 img {
	height: 100%;
}

.fvLogo {
	margin-bottom: 10px;
	z-index: 3;
}

.fvCatch {
	margin-bottom: 10px;
	z-index: 3;
}

.fvInfo {
	padding-top: 40px;
	padding-bottom: 40px;
	margin-bottom: 20px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	z-index: 3;
}

.fvInfo::before,
.fvInfo::after {
	content: "";
	width: 790px;
	height: 32px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background: no-repeat center center / contain;
}

.fvInfo::before {
	top: 0;
	background-image: url(../../img/top/fv_info_line_top.png);
}

.fvInfo::after {
	bottom: 0;
	background-image: url(../../img/top/fv_info_line_bottom.png);
}

.fvInfoAccess {
	margin-right: 0;
	display: flex;
	align-items: center;
}

.fvInfoAccessText {
	margin-right: 10px;
}

.fvInfoAccessLink {
	width: 40px;
	height: 40px;
	font-size: 1.2rem;
	font-family: 'Roboto', sans-serif;
	line-height: 40px;
	font-weight: 700;
	text-align: center;
	color: #ffffff;
	background-color: #20870f;
	transition: 0.3s ease-in-out;
	border: 1px solid #FFF;
}

.fvInfoAccessLink:hover {
	opacity: 0.7;
}

.fvAnniv {
	width: 145px;
	position: absolute;
	top: 35px;
	left: 30px;
	z-index: 10;
}

.fvBtn {
	margin-bottom: 20px;
	position: relative;
	z-index: 3;
}

.fvBtn .btn.registration {
	padding: 0.2em 4em;
	color: #ffffff;
	background-color: #dc291a;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0;
	font-size: 2.2rem;
}

.fvBtn .btn.registration span {
	font-size: 2.6rem;
}

.fvBtn .btn.registration::after {
	content: "";
	width: 27px;
	height: 27px;
	margin-left: 10px;
	background: url(../../img/common/icon_arrow1.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	-webkit-transform: translate(0, 3px);
	transform: translate(0, 3px);
}

.fvCompanyLogo {
	position: relative;
	z-index: 3;
}

/* ローディングアニメーション */
.fadeIn {
	animation-name: fadeIn;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.slideUp {
	animation-name: slideUp;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes slideUp {
	0% {
		transform: translateY(20px);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.slideToRight {
	animation-name: slideToRight;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes slideToRight {
	0% {
		transform: translateX(-40px);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

.slideToLeft {
	animation-name: slideToLeft;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes slideToLeft {
	0% {
		transform: translateX(40px);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}


.delay01 {
	animation-delay: 0.8s;
}

.delay02 {
	animation-delay: 0.9s;
}

.delay03 {
	animation-delay: 1.0s;
}

.delay04 {
	animation-delay: 1.2s;
}

.delay05 {
	animation-delay: 2.2s;
}

@media screen and (max-height: 750px),
(max-width: 1200px) {
	/* #fv {
		height: auto;
	}

	#fvBgItem1 {
		width: 263px;
	}

	#fvBgItem2 {
		width: 322px;
	}

	#fvBgItem3 {
		width: 402px;
	} */
}

/* ------------------------------------ */
/* モノづくりフェアとは？ */
/* ------------------------------------ */
#about {
	padding-top: 180px;
	padding-bottom: 80px;
	/* margin-bottom: 80px; */
	position: relative;
	background: url(../../img/top/about_bg.png) center bottom no-repeat #f6fbff;
	background-size: contain;
}

#aboutMainTit {
	font-size: 4.2rem;
	text-align: center;
	padding-bottom: 30px;
	color: #0a0246;
}

#aboutMainTit .strong {
	color: #c800a5;
	font-weight: bold;
}

#aboutMainTit .large {
	font-size: 5rem;
	font-weight: bold;
}

#aboutMovieWrap {
	margin-bottom: 50px;
	display: flex;
	flex-wrap: wrap;
	gap: 45px;
}

#aboutTxtWrap {
	width: 460px;
}


#aboutTitle {
	padding-bottom: 10px;
}

.aboutText {
	font-size: 1.6rem;
	line-height: 1.8;
	text-shadow: 0px 0px 6px rgba(255, 255, 255, 1);
}

#aboutMovie {
	flex: 1;
	position: relative;
}

#aboutMovie > iframe {
	width: 100%;
	height: 278px;
}

.gallery {
	display: flex;
	flex-wrap: wrap;
}

.galleryItem {
	width: calc(16.6666% - 24px * 5 / 6);
	margin-right: 24px;
	margin-bottom: 24px;
	position: relative;
}

.galleryItem:nth-child(6n) {
	margin-right: 0;
}

.galleryItem::after {
	content: "";
	width: 21px;
	height: 21px;
	position: absolute;
	top: 6px;
	left: 6px;
	background: url(../../img/top/icon_gallery.svg) no-repeat center center / contain;
	z-index: 1;
}


.mfp-close {
	top: 0;
	font-size: 100px;
	opacity: 1;
	transition: all 0.3s;
}

.mfp-close:active {
	top: 16px;
}

.mfp-close:hover {
	opacity: 0.65;
}

.mfp-figure:after {
	height: calc(100% - 60px * 2);
	top: 60px;
}

img.mfp-img {
	padding: 60px 0;
}

.mfp-bottom-bar {
	margin-top: -50px;
}

.mfp-arrow {
	opacity: 1;
	transition: all 0.3s;
}

.mfp-arrow:hover {
	opacity: 0.65;
}

.mfp-arrow:after {
	border-top-width: 60px;
	border-bottom-width: 60px;
	top: -45px;
}

.mfp-arrow-right:after {
	border-left: 73px solid #FFF;
	margin-left: -20px;
}

.mfp-arrow-left:after {
	border-right: 73px solid #FFF;
	margin-left: 35px;
}

/* ----------------------------------- */
/* ガイドブックと会場MAP */
/* ----------------------------------- */
#documentIn {
	padding: 80px 0 80px;
	margin-bottom: 100px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
	border-top: 10px solid #211488;
	border-bottom: 10px solid #211488;
	background: #FFF;
}

.docwrap {
	width: 50%;
	padding: 0 1%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	gap: 30px;
}

.docTitWrap {
	padding: 20px 31px;
	display: inline-block;
	border: 1px solid #211488;
	text-align: center;
}

.docTit {
	padding-bottom: 0.3em;
	font-size: 3.2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #211488;
}

.docTitAnno {
	padding-bottom: 10px;
	font-size: 1.2rem;
	color: #9d1717;
	font-weight: 700;
}

.docImg img {
	max-height: 520px;
}

.docImg a {
	transition: all 0.3s ease-in-out 0s;
}

.docImg a:hover {
	opacity: 0.7;
}

.downloadBtn {
	padding: 0.6em 2.4em 0.6em 1.8em;
	font-size: 1.5rem;
	border-radius: 60px;
}

.downloadBtn::after {
	width: 18px;
	height: 18px;
	right: 10px;
}

/* ------------------------------------ */
/* 出展コーナー */
/* ------------------------------------ */
#corner {
	padding-top: 140px;
	margin-top: -140px;
}

#cornerTitle {
	font-size: 4.2rem;
}

.cornerWrap {
	padding-top: 5vw;
	padding-bottom: 15vw;
	position: relative;
}

.cornerImg {
	text-align: center;
}

.cornerImg img {
	width: 80.833vw;
}

.cornerList {
	position: absolute;
	border-width: 1px;
	border-style: solid;
	transition: all 0.3s ease-in-out 0s;
}

.cornerList:hover {
	transform: scale(1.2);
}

.cornerListTitle {
	position: relative;
	display: block;
	padding: 15px 20px;
	font-size: 2.1rem;
	font-weight: 700;
	letter-spacing: 0.075em;
	color: #ffffff;
	padding: 0.781vw 2.083vw 0.781vw 1.042vw;
	font-size: 1.094vw;
}

.cornerListTitle::after {
	content: "";
	width: 1.25em;
	height: 1.25em;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0.521vw;
	background: url(../../img/top/icon_arrow_circle.svg) no-repeat center center / contain;
}

.cornerListText {
	padding: 0.521vw 0.781vw;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 2;
	background-color: rgba(255, 255, 255, 0.8);
	font-size: 0.885vw;
}

.cornerListText .attention {
	color: #cc3000;
}

.cornerListText .new {
	display: inline-block;
	margin-left: 0.5em;
	padding: 0.3em 0.4em;
	font-size: 0.75vw;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
	text-indent: 0;
	color: #cc3000;
	background-color: #fff600;
}

/* リストのスタイル */
.list li {
	margin-bottom: 0.25em;
	padding-left: 1em;
	text-indent: -1em;
}


.list li::before {
	content: "・";
	margin-right: 0.1em;
}

/* 個別調整 */
.cornerList1 {
	border-color: #d81211;
	top: 20.833vw;
	left: 7.5vw;
}

.cornerList1 .cornerListTitle {
	background-color: #d81211;
}

.cornerList1 .list li::before {
	color: #d81211;
}

.cornerList2 {
	border-color: #950086;
	top: -0.417vw;
	left: 20.833vw;
}

.cornerList2 .cornerListTitle {
	background-color: #950086;
}

.cornerList2 .list li::before {
	color: #950086;
}

.cornerList3 {
	border-color: #f48400;
	top: 3.75vw;
	right: 23.75vw;
}

.cornerList3 .cornerListTitle {
	background-color: #f48400;
}

.cornerList3 .list li::before {
	color: #f48400;
}

.cornerList4 {
	border-color: #00a135;
	top: 35.417vw;
	left: 27.083vw;
}

.cornerList4 .cornerListTitle {
	background-color: #00a135;
}

.cornerList4 .list li::before {
	color: #00a135;
}

.cornerList5 {
	border-color: #00399c;
	top: 30.833vw;
	right: 27.5vw;
}

.cornerList5 .cornerListTitle {
	background-color: #00399c;
}

.cornerList5 .list li::before {
	color: #00399c;
}

.cornerList6 {
	border-color: #ef4c81;
	top: 25.833vw;
	right: 3.333vw;
}

.cornerList6 .cornerListTitle {
	background-color: #ef4c81;
}

.cornerList6 .list li::before {
	color: #ef4c81;
}

/* ----------------------------------- */
/* 特別セミナー */
/* ----------------------------------- */
#seminar {
	padding-top: 140px;
	margin-top: -140px;
	padding-bottom: 100px;
}

#eventTit span {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
}

#eventTit span::after {
	content: "";
	width: 72px;
	height: 48px;
	background: url(../../img/common/icon_tit_event.png) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
}

#eventList {
	padding-bottom: 100px;
}

#eventList li:not(:last-child) {
	padding-bottom: 30px;
}

#eventList a {
	transition: all 0.3s ease-in-out 0s;
}

#eventList a:hover {
	opacity: 0.7;
}

.eventBnr {
	padding-top: 100px;
	margin-top: -100px;
	position: relative;
}

#event3 {
	z-index: 1;
}

#event3Btn {
	position: absolute;
	bottom: 130px;
	left: 36px;
}

#event3Link {
	position: absolute;
	bottom: 60px;
	left: 36px;
}

#event3Link a {
	color: #007ec2;
	text-decoration: underline;
}

#event3Link a:hover {
	text-decoration: none;
}

#seminarTit .icon {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

#seminarTit .icon::after {
	content: "";
	width: 61px;
	height: 47px;
	background: url(../../img/common/icon_tit_seminar.png) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
}

#seminarTit .sub {
	margin-top: 10px;
	font-size: 1.2rem;
	display: block;
	border: 1px solid #211488;
}

#seminarList {
	margin-bottom: 50px;
}

.seminarItem {
	padding: 30px 30px 40px;
	background: #FFF;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
}

.seminarItem:not(:last-child) {
	margin-bottom: 35px;
}

.seminarItemTit {
	padding-bottom: 15px;
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #b30000;
}

#e1 .seminarItemTit {
	color: #1bc1ff;
}

#z1 .seminarItemTit {
	color: #ab61a7;
}

.seminarItemInfo {
	padding-bottom: 18px;
	display: flex;
}

.seminarNum {
	width: 100px;
	background: #b30000;
	color: #FFF;
	font-size: 2.4rem;
	letter-spacing: 0.05em;
	font-weight: 700;
	line-height: 2.5;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

#e1 .seminarNum {
	background: #1bc1ff;
}

#z1 .seminarNum {
	background: #ab61a7;
}

.seminarInfo {
	width: calc(100% - 100px);
	padding: 7px 15px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background: #eeeeee;
	gap: 5px 40px;
	font-size: 1rem;
}

.seminarInfo dl {
	display: flex;
	align-items: center;
	column-gap: 10px;
}

.seminarInfo dt {
	width: 60px;
	padding: 3px 5px;
	background: #FFF;
	font-weight: 500;
	text-align: justify;
	text-align-last: justify;
}

.seminarInfo dd {
	font-size: 1.2rem;
}

.seminarInfo .date {
	width: 100%;
}

.date dd {
	font-size: 2.2rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	color: #b30000;
}

#e1 .date dd {
	color: #1bc1ff;
}

#z1 .date dd {
	color: #ab61a7;
}

.date dd span {
	font-size: 1.8rem;
}

.seminarItemContent {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 2%;
}

.speakerItemWrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	row-gap: 21px;
}

.speakerItemWrap .speaker {
	flex-grow: 1;
}

.speaker {
	padding: 16px;
	border: 1px solid #dcdcdc;
	flex-basis: auto;
}

.liquid {
	flex: 1;
}

.speakerTit {
	padding: 0 0 0 0.5em;
	margin-bottom: 20px;
	font-size: 1.6rem;
	border-left: 4px solid #000;
	font-weight: 700;
	line-height: 1.35;
	color: #000;
}

.speakerSubTit {
	padding: 0;
	margin-bottom: 10px;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.35;
	color: #000;
}

.speakerHead {
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #211488;
	margin-bottom: 2px;
}

.speakerList {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 5%;
}

#a3 .speakerList {
	gap: 0 5%;
}

.speakerList li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 10px;
}

.name {
	font-size: 2.2rem;
}

.name.dot {
	padding-left: 20px;
	text-indent: -20px;
}

.name.dot::before {
	content: "";
	width: 15px;
	height: 15px;
	background: #999;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
	border-radius: 100vw;
	-webkit-transform: translate(0, -2px);
	transform: translate(0, -2px);
}

.name.small {
	font-size: 1.92rem;
}

.name.strong {
	color: #fc7676;
	font-weight: bold;
}

.anno {
	padding: 20px 20px 0;
	text-align: right;
}

.detail:not(.liquid) {
	padding-top: 20px;
}

.seminarItemInfo ~ .detail {
	padding-top: 0;
}

.detail p {
	letter-spacing: 0.1em;
}

.detail a {
	letter-spacing: 0;
}

.detail a:hover {
	text-decoration: underline;
}

.detail .tit {
	color: #b20218;
	font-weight: bold;
}

.seminarBtn {
	padding-top: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 25px;
}

/* .seminarBtn .btn4 {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f48400;
} */

.seminarBtnLast {
	text-align: center;
}

.seminarBtnLast .cvTxt1 {
	font-size: 2.2rem;
}

.seminarBtnLast .cvTxt2 {
	font-size: 2.6rem;
}

.bold {
	font-weight: 700;
}

.txt1 {
	padding-bottom: 1.4em;
}

.txt2 {
	padding-bottom: 1.2em;
	margin-bottom: 1.2em;
	border-bottom: 1px solid #dcdcdc;
}

.full {
	width: 100%;
}

.half {
	width: 49%;
}

.middle {
	width: 40%;
}

.hideContent {
	padding-top: 20px;
	position: relative;
	height: auto;
	overflow: hidden;
}

.hideContent .detail {
	padding-top: 0;
}

.more {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30px;
	padding-top: 70px;
	text-align: center;
	line-height: 30px;
	background: linear-gradient(to bottom, rgb(255, 255, 255, 0) 0%, rgb(255, 255, 255, 1) 70%);
	cursor: pointer;
}

.open .more {
	/* background: transparent; */
	display: none;
}

.more:before {
	border-right: 3px solid #0288d1;
	border-top: 3px solid #0288d1;
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	transition: all 0.5s;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

.active .more:before {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.hideBtn {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.hideBtn span {
	padding: 10px 40px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	border: 1px solid #000;
	cursor: pointer;
	transition: all 0.3s ease-in-out 0s;
}

.hideBtn span:hover {
	background: #000;
	color: #FFF;
}

.hideBtn span::after {
	content: "";
	width: 15px;
	height: 15px;
	background: url(../../img/common/icon_arrow3.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
	border: 1px solid #000;
	border-radius: 1000vw;
}

.hideBtn span.active::after {
	transform: rotate(180deg);
}

.hideBtn span:hover::after {
	border: 1px solid #FFF;
}

/* -------------------------------------------------- */
/* 開催にあたって */
/* -------------------------------------------------- */
#introductionIn {
	padding: 100px 0;
	background: url(../../img/top/outline_bg.jpg) center center no-repeat #211488;
	background-size: cover;
	background-attachment: fixed;
}

#introTop {
	padding-bottom: 100px;
}

.introContFigure {
	padding-bottom: 50px;
}

.introContTxt {
	font-size: 1.8rem;
	color: #FFF;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
	line-height: 2.2;
	font-weight: 500;

}

#introOutline {
	background: #FFF;
	padding: 100px 50px 50px 50px;
}

.outlineAccessLink {
	width: 40px;
	height: 40px;
	margin-left: 30px;
	display: inline-block;
	font-size: 1.2rem;
	font-weight: 900;
	letter-spacing: 0.03em;
	line-height: 40px;
	text-align: center;
	color: #ffffff;
	background-color: #211488;
	transition: 0.3s ease-in-out;
}

.outlineAccessLink:hover {
	opacity: 0.7;
}

.table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}

.table th,
.table td {
	height: 70px;
	padding: 15px 40px;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	border-top: 1px solid #9e9e9e;
	border-bottom: 1px solid #9e9e9e;
	vertical-align: middle;
}

.table th {
	width: 24.2%;
	font-weight: 700;
	text-align: left;
}

.table th .textSm {
	font-size: 0.875em;
}

.table td {
	line-height: 1.75;
}

.table td span {
	display: inline-block;
	vertical-align: middle;
}

.table tr:last-child th,
.table tr:last-child td {
	border-bottom: none;
	padding-bottom: 0;
}


/* ----------------------------------- */
/* 事前来場登録の流れ */
/* ----------------------------------- */
#flowIn {
	padding: 100px 0;
	margin-bottom: 100px;
	background: #f6fbff;
}

#flowTit {
	margin-bottom: 50px;
	font-size: 4.2rem;
	font-weight: 700;
	text-align: center;
	line-height: 1;
	color: #211488;
}

#flowTit .sub {
	padding: 8px 78px;
	margin-bottom: 0.5em;
	font-size: 1.9rem;
	color: #e52626;
	background: #ffde00;
	display: inline-block;
	border-radius: 40px;
	vertical-align: top;
}

#flowTit .strong {
	letter-spacing: 0.1em;
	border-bottom: 5px solid #211488;
}

.flowTxt {
	padding-bottom: 1em;
	font-size: 1.6rem;
	letter-spacing: 0.15em;
	font-weight: 500;
}

.anno {
	margin-bottom: 1em;
	padding: 15px;
	background: #f6f6f6;
	text-align: left;
}

.flowTxt .small{
	font-size: 1.3rem;
}

.flowTxt .strong.red {
	color: #e52626;
}

.flowTxt .strong.blue {
	color: #211488;

}

.flowTxt .link {
	color: #e52626;
}

.flowTxt .link:hover {
	text-decoration: underline;
}

.flowTxt.cen {
	text-align: center;
}

#registrationWrap {
	padding-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
}

.registration.ok {
	width: 49%;
	padding: 20px;
	background: #FFF;
	border: 1px solid #e52626;
}

.registration.ng {
	width: 49%;
	padding: 20px;
	background: #FFF;
	border: 1px solid #211488;
}

.registration h3.ok {
	margin-bottom: 10px;
	padding: 10px 20px;
	background: #e52626;
	font-weight: bold;
	font-size: 2rem;
	color: #FFF;
	text-align: center;
}

.registration h3.ng {
	margin-bottom: 10px;
	padding: 10px 20px;
	background: #211488;
	font-weight: bold;
	font-size: 2rem;
	color: #FFF;
	text-align: center;
}

.registrationBtn {
	padding: 0.5em 3.5em 0.5em 2.5em;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.075em;
	text-align: center;
	background-repeat: no-repeat;
	background-position: right 1em center;
	background-size: 1.375em;
	border: 2px solid #fff;
	border-radius: 30px;
	transition: 0.3s ease-in-out;
	color: #ffffff;
	background-color: #dc291a;
	background-image: url(../../img/common/icon_chevron_contact.svg);
	transition: all 0.3s ease-in-out 0s;
}

.registrationBtn.blue {
	background-color: #211488;
	background-image: url(../../img/common/icon_seminar_all.svg);
	background-size: 22px;
}

.registrationBtn:hover {
	opacity: 0.7;
}


.cardNone {
	padding: 10px;
	background: #ffff00;
	color: #000;
	font-size: 1.4rem;
	font-weight: bold;
}

#flowImg {
	padding-bottom: 25px;
}

#step {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.66%;
}

#step li {
	width: 24.5%;
	background: #FFF;
	border: 1px solid #b5b5b5;
	padding: 1.6%;
	position: relative;
}

#step li::after {
	content: "";
	width: 38px;
	height: 38px;
	background: url(../../img/top/icon_step.svg) 0 0 / contain no-repeat;
	position: absolute;
	top: 50%;
	right: -22px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	z-index: 5;
}

#step li:last-child::after {
	display: none;
}

.stepTit {
	width: 80px;
	height: 80px;
	padding-top: 5px;
	margin: 0 auto;
	font-size: 1.6rem;
	background: #ffde00;
	color: #211488;
	text-align: center;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	border-radius: 100vw;
	line-height: 1;
}

.stepTit span {
	font-size: 3.5rem;
}

.stepImg {
	width: 100%;
	height: 190px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.stepBtn a:hover {
	opacity: 0.7;
}

.stepTxt {
	font-size: 1.3rem;
	letter-spacing: 0.1em;
	font-weight: 500;
}

.stepTxt .spaceTop {
	padding-top: 0.5em;
	display: inline-block;
}

/* -------------------------------------------------- */
/* 会場アクセス */
/* -------------------------------------------------- */
#access {
	padding-top: 140px;
	margin-top: -140px;
	margin-bottom: 160px;
}

#accessIn {
	padding: 80px;
	border: 1px solid #211488;
}

.accessArea {
	margin-bottom: 100px;
}

.guideHead {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 40px;
}

.guideHead dt {
	width: 66px;
	padding: 5px 0 7px;
	background: #211488;
	font-size: 1.6rem;
	line-height: 1;
	letter-spacing: .05em;
	text-align: center;
	color: #FFF;
}

.guideHead dd {
	width: calc(100% - 66px);
	margin-top: -7px;
	padding-left: 18px;
	font-size: 2.9rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: .05em;
	color: #000;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.guideHead dd span {
	font-size: 2rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: .05em;
	color: #000;
	font-weight: 500;
}

.guideHead .placeAdd {
	margin-left: 20px;
	display: inline-block;
	font-size: 1.8rem;
	font-weight: normal;
	color: #333;
	vertical-align: 2px;
}

.imgArea {
	margin-bottom: 30px;
	display: flex;
	justify-content: space-between;
	column-gap: 4.8%;
}

.imgAreaBox {
	width: 47.6%;
}

.venueImg {
	margin-bottom: 15px;
}

.venueImg img {
	width: 100%;
}

.venueCap {
	font-size: 1.5rem;
	letter-spacing: .05em;
	line-height: 1;
	text-align: center;
}

.rootTxt {
	color: #333;
}

.trafficBlock {
	display: flex;
	justify-content: space-between;
	background-color: #F7F7F7;
	margin-bottom: 80px;
	padding: 35px 32px;
	column-gap: 40px;
}

.trafficBox {
	width: 440px;
}

.trafficTtl {
	margin-bottom: 18px;
	padding-bottom: 14px;
	font-size: 2.2rem;
	font-weight: 900;
	line-height: 1.0;
	border-bottom: 2px solid #211488;
}

.trafficTxtBox {
	margin-bottom: 20px;
	padding: 7px 10px;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.1em;
	color: #A40000;
	background-color: #FFFFFF;
	border: 1px solid #a40000;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.trafficTxtBox span {
	font-weight: 900;
}

.accArrow {
	margin: 0 3px;
	display: inline-block;
	vertical-align: -2px;
}

.busTit {
	margin-bottom: 1em;
	color: #660095;
	font-size: 2.6rem;
	font-weight: bold;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.busTit span {
	display: flex;
	align-items: center;
	justify-content: center;
}

.busTit span:after {
	content: "";
	width: 40px;
	height: 20px;
	margin: 0 0.25em;
	background: url(../../img/top/bus_arrow.svg) 0 0 no-repeat;
	background-size: contain;
	display: flex;
	align-items: center;
	justify-content: center;
}

.trafficDes dl {
	margin-bottom: 20px;
	display: flex;
}

.trafficDes dl:nth-last-of-type(1) {
	margin-bottom: 0;
}

.trafficDes dt,
.trafficDes dd {
	line-height: 1.5;
	letter-spacing: .15em;
}

.trafficDes dt {
	padding-left: 26px;
	width: 139px;
	font-size: 1.6rem;
	font-weight: 700;
}

.trafficDes dt.bus {
	background: url(../../img/top/icon_bus.png) left top 2px no-repeat;
}

.trafficDes dt.taxi {
	background: url(../../img/top/icon_taxi.png) left top 2px no-repeat;
}

.trafficDes dt.subway {
	background: url(../../img/top/icon_subway.png) left top no-repeat;
}

.trafficDes dd {
	font-size: 1.4rem;
	font-weight: 500;
}

.trafficDes dd .small {
	padding-left: 1em;
	font-size: 1.3rem;
	font-weight: normal;
	display: inline-block;
	max-width: 300px;
}

.trafficImg {
	width: calc(100% - 470px);
}

.trafficImg img {
	width: 100%;
}


/* 無料シャトルバス時刻表 */
/* -------------------------------------------------- */
#timeTableWrap {
	padding-top: 100px;
	margin-top: -100px;
}

#timeTable {
	padding: 60px;
	margin-bottom: 80px;
	background: #f6fbff;
}

#timeTable .sectionHeading {
	margin-bottom: 0.7em;
}

.busCaution {
	padding: 18px 50px;
	margin-bottom: 30px;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.4;
	color: #C20024;
	border: 1px solid #C20024;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background: #FFF;
}

.timeTableCap {
	margin-bottom: 10px;
	padding: 3px 0 3px 32px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .11em;
	background: url("../../img/top/icon_circle.svg") no-repeat left center;
}

.timeTableBlock {
	width: 100%;
	padding: 24px 22px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 20px;
	border: 1px solid #211488;
	background: #FFF;
}

.timeTableBlock:not(:last-child) {
	margin-bottom: 55px;
}

.timeTableBlock:last-child {
	margin-bottom: 41px;
}

.timeTableReady {
	width: 398px;
	height: 230px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.timeTableItem {
	width: 398px;
}

.timeTableItem * {
	text-align: center;
}

/*-- Time table --*/
.timeTableHead {
	width: 60px;
	background-color: #211488;
	font-size: 1.7rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: #fff;
	writing-mode: vertical-lr;
}

.timeTableHead span {
	text-combine-upright: all;
	font-size: 1.8rem;
	padding-right: 4px;
}




.timeTable {
	width: 100%;
	/* display: table; */
	display: flex;

}

.timeTable * {
	text-align: center;
}

.timeTableHead {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.timeTable table {}

.bgYellow {
	background: #FFF799 !important;
}

.timeTable th,
.timeTable td {
	padding: 7px 0;
	font-size: 1.3rem;
	line-height: 1;
	text-align: center;
	border-left: 1px solid #C9C9C9;
	border-bottom: 1px solid #C9C9C9;
	background: #FFF;
}

.timeTable th {
	font-weight: 700;
	letter-spacing: 0;
	background-color: #EAE9E0;
}

.timeTable td:last-child {
	border-right: 1px solid #C9C9C9;
}

#hakata th,
#hakata td {
	width: calc(338px / 7);
	padding: 9px 0;
}

#marinemesse {
	flex: 1;
}

#marinemesse th,
#marinemesse td {
	width: calc(338px / 10);
	padding: 9px 0;
}

.timeTable .tableHead {
	padding: 7px 0;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.15em;
	color: #FFF;
	border-left: 1px solid;
	border-right: 1px solid;
	background-color: #191057;
	border-left-color: #191057;
	border-right-color: #191057;
}

.tableKome {
	margin-top: 10px;
	text-align: right;
}

.tableKomeTxt {
	display: inline-block;
	padding: 2px 7px;
	font-size: 1.1rem;
	letter-spacing: 0.15em;
}

.mapImg {
	width: calc(100% - 418px);
}

.mapImg h4 {
	padding-bottom: 5px;
	font-weight: bold;
	color: #211488;
}

.mapImg p {
	padding-bottom: 10px;
	font-size: 1.2rem;
}

.mapImg img {
	width: 100%;
}

/*-- Caution --*/
.cautionArea {
	padding: 20px;
	background: #ffe200;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.cautionArea::before {
	content: "";
	width: 41px;
	height: 37px;
	background: url(../../img/top/icon_caution02.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
}

.cautionTxt {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: .09em;
	color: #000;
}

/* キッチンカー */
#cateringIn {
	padding: 60px;
	background: #f6fbff;
}

#cateringDesc {
	height: 100%;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-size: 1.8rem;
	line-height: 2;
}

.catering {
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
	margin-bottom: 20px;
}

.catering:last-child {
	margin-bottom: 0;
}

.cateringCon {
	width: 49%;
	background: #FFF;
}

.cateringCon.none {
	background: none;
}

.cateringTit {
	padding: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background: #211488;
	color: #FFF;
	font-weight: bold;
	font-size: 2rem;
	gap: 10px;
}

.cateringTit::before {
	content: "";
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
}

.iconBento::before {
	width: 30px;
	height: 22px;
	background: url(../../img/top/icon_bento.svg) 0 0 no-repeat;
}

.iconRestaurant::before {
	width: 25px;
	height: 23px;
	background: url(../../img/top/icon_restaurant.svg) 0 0 no-repeat;
}

.iconKitchencar::before {
	width: 26px;
	height: 20px;
	background: url(../../img/top/icon_kitchen-car.svg) 0 0 no-repeat;
}

.cateringDetail {
	padding: 20px;
	font-weight: 500;
}

.cateringDetail span {
	padding-left: 4.75em;
}

/* ------------------------------------ */
/* 広告バナー */
/* ------------------------------------ */
#exhibit {
	padding-bottom: 100px;
}

#exhibitTitle {
	margin-bottom: 0;
	font-size: 4rem;
	margin-bottom: 40px;
}

.exhibitSort {
	margin-bottom: 20px;
	font-size: 1.3rem;
	text-align: right;
}

.exhibitListWrap {
	padding: 40px;
	background: rgb(158, 158, 158);
	background: linear-gradient(90deg, #9e9e9e 0%, #e4e4e4 12%, #adadad 25%, #e4e4e4 50%, #adadad 75%, #e4e4e4 87%, #9e9e9e 100%);
}

.exhibitList {
	padding: 30px;
	display: flex;
	flex-wrap: wrap;
	background: #FFF;
}

.exhibitListItem {
	width: calc(20% - 5px * 4 / 5);
	margin-bottom: 30px;
	margin-right: 5px;
}

.exhibitListItem:nth-child(5n) {
	margin-right: 0;
}

.exhibitListLink {
	display: block;
	color: #333333;
	transition: 0.3s ease-in-out;
}

.exhibitListLink:hover {
	opacity: 0.7;
}

.exhibitListLogo {
	height: 200px;
	margin-bottom: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ffffff;
	border: 1px solid #ebeef4;
}

.exhibitListName {
	margin-bottom: 5px;
	font-size: 1.3rem;
	font-weight: 700;
}

.exhibitListName.small {
	margin: 12px 0 7px;
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.3;
}

.exhibitListName.small2 {
	margin: 0 0 6px;
	font-size: 1.1rem;
	font-weight: 700;
}

.exhibitListText {
	font-size: 1rem;
	letter-spacing: 0.075em;
}

.exhibitListText.letterSpacing {
	font-size: 1rem;
	letter-spacing: 0.05em;
}

.exhibitListText.small {
	font-size: 1rem;
	letter-spacing: 0.075em;
}

/* 出店募集キャンセル待ち */
/* ----------------------------------- */
#stop {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

#stop::after {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

#stopIn {
	width: 1000px;
	max-width: 90%;
	padding: 50px;
	background: #FFF;
	border-radius: 20px;
	position: relative;
}

.stopTit {
	margin-bottom: 30px;
	font-size: 30px;
	font-weight: bold;
	background: #d73737;
	color: #FFF;
	text-align: center;
}

#stopIn p {
	font-size: 1.7rem;
	line-height: 1.6;
}

#stopIn p span {
	color: #d73737;
	font-weight: bold;
}

.closeBtn {
	width: 60px;
	height: 60px;
	border-radius: 60px;
	background: #d73737;
	position: absolute;
	top: -70px;
	right: 0;
	cursor: pointer;
}

.closeBtn::before {
	content: "";
	width: 40px;
	height: 3px;
	background: #FFF;
	transform: rotate(45deg);
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: 0 0 0 -20px;
}

.closeBtn::after {
	content: "";
	width: 40px;
	height: 3px;
	background: #FFF;
	transform: rotate(-45deg);
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: 0 0 0 -20px;
}

p#announce {
	padding-top: 30px;
	font-size: 2.6rem;
	color: #09b600;
	text-align: center;
}

/* 大規模商談会 */
/* ----------------------------------- */
#businessMeetingWrap {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

#closeBg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	display: block;
	cursor: pointer;
}

#businessMeeting {
	position: relative;
	z-index: 2;
}

#businessMeeting a {
	transition: all 0.3s ease-in-out 0s;
}

#businessMeeting a:hover {
	opacity: 0.8;
}

#businessMeetingClose {
	position: absolute;
	top: -25px;
	right: 0;
	cursor: pointer;
	z-index: 2;

}

@media screen and (max-height: 800px) {
	#businessMeeting > img {
		width: 98vh;
	}

}