@charset "utf-8";

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

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

#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;
}

#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: 60px;
}

.fvCatch {
	margin-bottom: 50px;
}

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

.fvInfo::before,
.fvInfo::after {
	content: "";
    width: 860px;
    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: 20px;
	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;
}

.fvInfoAccessLink:hover {
	opacity: 0.7;
}

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

/* ローディングアニメーション */
.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: 100px;
	padding-bottom: 60px;
	position: relative;
}

#aboutTitle {
	width: 580px;
	height: 116px;
	margin-right: auto;
	margin-left: auto;
	padding-bottom: 10px;
	font-size: 3rem;
	background: url(../../img/top/about_title_frame.png) no-repeat center center / contain;
}

#aboutTitle::before {
	width: 70px;
	height: 68px;
	margin-right: 15px;
}

.sectionHeading span {
	margin-top: 20px;
}

.aboutText {
	margin-bottom: 50px;
	font-size: 2rem;
	line-height: 2;
	text-align: center;
}

.aboutMovie {
	padding-top: 56.25%;
	position: relative;
}

.aboutMovie > iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.gallery {
	padding-top: 65px;
	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;
}

/* ------------------------------------ */
/* 九州の産業 */
/* ------------------------------------ */
#export {
	padding-top: 85px;
	padding-bottom: 100px;
	background-color: #fff;
}

#exportTitle {
	margin-bottom: 25px;
	text-align: center;
}

#exportTitle img {
	transform: translateX(-30px);
}

#exportContent {
	position: relative;
}

#exportData {
	text-align: center;
}

#exportData img {
    margin-top: -140px;
	transform: translateX(70px);
}

.exportImage {
	position: absolute;
}

.exportImage.exportImage1 {
	top: 0;
	left: -40px;
}
.exportImage.exportImage2 {
	top: 0;
	right: -30px;
}
.exportImage.exportImage3 {
	bottom: -10px;
	left: -40px;
}
.exportImage.exportImage4 {
	bottom: -10px;
	right: -30px;
}

#export .anno {
	padding-top: 30px;
	text-align: right;
}

/* ------------------------------------ */
/* モノづくりフェアの強みは？ */
/* ------------------------------------ */
#strength {
	overflow: hidden;
}

#strengthTitle {
	font-size: 4.2rem;
	margin-bottom: 150px;
}

.strengthListItem {
	margin: 0 calc(50% - 50vw) 160px;
	padding: 60px calc(50vw - 50%);
	position: relative;
	z-index: 0;
}

.strengthListItem::before {
	content: "";
	width: 94%;
    height: calc(100% - 40px);
    min-width: 1040px;
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
	background: rgb(79,196,94);
	background: linear-gradient(90deg, #0099dd 0%, #0063ad 50%, #010d4e 100%);
	z-index: -1;
}

.strengthListItem:nth-child(1):before {
	background: url(../../img/top/strength_bg1.jpg) no-repeat left bottom / cover;
}

.strengthListItem:nth-child(2):before {
	background: url(../../img/top/strength_bg2.jpg) no-repeat left bottom / cover;
}

.strengthListItem:nth-child(3):before {
	background: url(../../img/top/strength_bg3.jpg) no-repeat left bottom / cover;
}


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

.strengthListImg {
    width: calc(55.5% + 50vw - 500px);
    max-width: calc(50% + 60px);
	height: 560px;
	position: absolute;
	top: -80px;
    right: 0;
	z-index: -1;
}

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

.strengthListImg p {
    padding-top: 10px;
    font-size: 1.6rem;
	text-align: center;
    color: #ffffff;
}

.strengthListNum {
	display: block;
	margin-bottom: 20px;
}

.strengthListTitle {
	margin-bottom: 20px;
	font-size: 3rem;
	font-weight: 700;
	letter-spacing: 0.075em;
	line-height: 2.2;
}

.strengthListTitle > span {
	padding: 10px 20px 10px 30px;
	color: #ef4c81;
	background-color: #fff;
}

.strengthListTitle > span.strengthListTitleLg {
	font-size: 4.4rem;
	letter-spacing: 0.1em;
}

.strengthListText {
	width: 415px;
	font-size: 1.9rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.9;
	color: #ffffff;
}

.strengthListQA {
	padding-top: 30px;
}

.strengthListQALabel {
	width: fit-content;
	padding: 0 14px;
	display: block;
	font-size: 1.8rem;
	font-weight: 700;
	color: #fff;
	border: 1px solid #fff;
}

.strengthListQAContent {
	display: flex;
	align-items: flex-end;
}

.strengthListQAContentQ {
	font-size: 3.2rem;
	font-weight: 700;
	font-feature-settings: normal;
	letter-spacing: 0.02em;
	line-height: calc(38 / 32);
	color: #fff;
}

.strengthListQAContentA {
	margin-left: 50px;
	position: relative;
	font-size: 8.8rem;
	font-weight: 700;
	line-height: 1;
	color: #f9ff54;
}

.strengthListQAContentA::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -32px;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 16px solid #fff;
}

.strengthListQAContentA .textSm {
	font-size: 6.8rem;
}

.strengthListLink {
	margin-top: 30px;
}

.strengthListLink .btnArrowAccent {
	padding: 0.5em 3.5em 0.5em 1.9em;
	font-size: 2rem;
	background-size: 1.1em;
	border: none;
}

/* ------------------------------------ */
/* 出展コーナー */
/* ------------------------------------ */
#corner {}

#cornerTitle {
	font-size: 4.2rem;
}

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

.cornerImg {
	text-align: center;
}

.cornerImg img {
	width: 80.833vw;
}

.cornerList {
	position: absolute;
	border-width: 1px;
	border-style: solid;
}

.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;
	transition: 0.3s ease-in-out;
}

.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;
}

.cornerListTitle:hover {
	opacity: 0.7;
}

.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 .new {
	display: inline-block;
    margin-left: 0.5em;
	padding: 0.3em 0.4em;
    font-size: 0.811vw;
	font-weight: 700;
	letter-spacing: 0.05em;
    line-height: 1;
    text-indent: 0;
	color: #cc3000;
	background-color: #fff600;
	border: 1px solid currentColor;
}

/* リストのスタイル */
.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;
}

/* ------------------------------------ */
/* 出展料金・セミナー */
/* ------------------------------------ */
#priceSeminarTitle {
	font-size: 4rem;
}

.priceSeminarWrap {
	display: flex;
	justify-content: space-between;
}

.priceSeminarItem {
	width: 49.5%;
	overflow: hidden;
}

.priceSeminarLink {
	padding: 7.292vw 2.083vw;
	display: block;
	position: relative;
}

.priceSeminarLink::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #000000;
	opacity: 0.5;
	transition: 0.3s ease-in-out;
}

.priceSeminarLink:hover::after {
	opacity: 0.2;
}

.priceSeminarLinkImg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.priceSeminarLinkImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	font-family: 'object-fit: cover;';
	transition: 0.3s ease-in-out;
}

.priceSeminarLink:hover .priceSeminarLinkImg img {
	transform: scale(1.1);
}

.priceSeminarLinkBtn {
	width: 480px;
	max-width: 100%;
	height: 95px;
	margin: auto;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 2.3rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	background: #fff url(../../img/common/icon_chevron_main.svg) no-repeat right 20px center / 32px;
	border: 2px solid #211488;
	border-radius: 48px;
	box-shadow: 6px 6px 0 #211488;
	z-index: 1;
}

.priceSeminarLinkBtn span {
	font-size: 1.5rem;
	color: #211488;
}

/* ------------------------------------ */
/* ガイドブック */
/* ------------------------------------ */
#guidebook {}

#guidebookWrap {
	position: relative;
	background-color: #fffcdb;
	border: 2px solid #f6ab00;
}

#guidebookTitle {
	padding: 15px;
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: 0.075em;
	text-align: center;
	background-color: #ffe100;
}

#guidebookTitle .textSm {
	font-size: 3rem;
}

#guidebookContent {
	padding: 40px 85px;
	display: grid;
	grid-template-columns: 438px auto;
	gap: 20px 30px;
}

#guidebookText {
	grid-column: 1 / 3;
	padding-right: 240px;
	font-size: 1.8rem;
	line-height: calc(30 / 18);
}

#guidebookImg1 {
	position: absolute;
	top: 0;
	right: 50px;
}

#guidebookOption {
	grid-column: 1 / 2;
	background-color: #fff;
}

#guidebookOptionTitle {
	padding: 10px;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	color: #fff;
	background-color: #f48400;
}

#guidebookOptionTextWrap {
	padding: 10px 30px 20px;
}

#guidebookOptionText1 {
	margin-bottom: 15px;
	font-size: 2.4rem;
	font-weight: 700;
}

#guidebookOptionText1::before {
	content: "●";
	font-size: 1.4rem;
	margin-right: 0.5em;
	vertical-align: 4px;
}

#guidebookOptionText1 .yen {
	color: #dc291a;
}

#guidebookOptionText1 .textLg {
	font-size: 3rem;
}

#guidebookOptionText1 .textSm {
	font-size: 1.6rem;
}

#guidebookOptionText2 {
	font-size: 1.6rem;
	line-height: calc(28 / 16);
}

#guidebookImg2 {
	grid-column: 2 / 3;
}

#guidebookImg2 figcaption {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 5px;
}

/* ------------------------------------ */
/* 会場について */
/* ------------------------------------ */
#place {
}

.placeHead {
	margin-bottom: 80px;
	display: flex;
	justify-content: space-between;
}

.placeHeadTextWrap {
	width: 45%;
}

.placeHeadText1 {
	margin-bottom: 15px;
}

.placeHeadText2 {
	margin-bottom: 5px;
}

.placeHeadText3 {
	font-size: 4.8rem;
	font-weight: 700;
	letter-spacing: 0.085em;
}

.placeHeadImgWrap {
	width: 53%;
	display: flex;
	justify-content: space-between;
}

.placeHeadImg img {
	margin-bottom: 5px;
}

.placeHeadImg p {
	font-size: 1.8rem;
	letter-spacing: 0.075em;
}

.placeFeature {
	margin-bottom: 100px;
	display: flex;
	justify-content: space-between;
}

.placeFeatureImg {
	flex-shrink: 0;
}

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

.placeFeatureList {
	margin-left: 40px;
	flex-grow: 1;
}

.placeFeatureListItem {
	display: flex;
}

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

.placeFeatureListIcon {
	margin-right: 15px;
	flex-shrink: 0;
}

.placeFeatureListText {
	font-size: 2.5rem;
	letter-spacing: 0.075em;
}

.placeFeatureListTextLg {
	font-size: 3.4rem;
	letter-spacing: 0.1em;
	color: #211488;
}

.placeFeatureListText .cautionMark::after {
	content: "※";
	font-size: 1.4rem;
}

.placeFeatureListText .caution {
	margin-top: 10px;
	font-size: 1.6rem;
}

#placeEntry {
	padding: 50px calc(50% + 60px) 50px 60px;
	position: relative;
	background-color: #e4f5ff;
	z-index: 1;
}
#placeEntry::before {
	content: "";
	width: calc(50% + 60px);
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background: #e4f5ff url(../../img/top/place4.jpg) no-repeat left center / cover;
	z-index: -1;
}

#placeEntryLabel {
	margin-bottom: 10px;
	padding: 5px;
	display: block;
	font-size: 2.1rem;
	text-align: center;
	color: #ffffff;
	background-color: #47a5e7;
	border-radius: 20px;
}

#placeEntryTitle {
	margin-bottom: 10px;
	font-size: 2.7rem;
	line-height: 1.57;
}

#placeEntryText {
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	line-height: 1.875;
}

/* ------------------------------------ */
/* レセプション */
/* ------------------------------------ */
#reception {}

#receptionInner {
	padding: 80px 80px 50px;
	position: relative;
	background: url(../../img/top/reception_bg.svg) no-repeat center center / cover;
	z-index: 1;
}

#receptionInner::before {
	content: "";
	width: calc(100% - 60px);
	height: calc(100% - 60px);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	z-index: -1;
}

#receptionHead {
	margin-bottom: 30px;
	padding-bottom: 15px;
	border: 19px solid #fff;
	border-image: url(../../img/top/reception_frame.svg);
	border-image-slice: 19;
}

#receptionHeadLabel {
	width: fit-content;
	margin: -30px auto 10px;
	padding-inline: 40px;
	font-size: 2.1rem;
	font-weight: 700;
	color: #fff;
	background-color: #ef4c81;
	border-radius: 5px;
}

#receptionHeadTitle {
	margin-bottom: 5px;
	font-size: 4.2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-align: center;
	color: #426eda;
}

#receptionHeadText {
	font-size: 1.8rem;
	line-height: calc(26 / 18);
	letter-spacing: 0.05em;
	text-align: center;
}

#receptionImgList {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

#receptionImgCaption {
	padding-top: 5px;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	text-align: right;
}

/* ------------------------------------ */
/* お弁当・キッチンカー */
/* ------------------------------------ */
#lunch {
	padding-bottom: 100px;
}

#lunchTitle {
	font-size: 4rem;
}

#lunchText {
	margin-bottom: 40px;
	font-size: 2rem;
	text-align: center;
}

#lunchImgList {
	display: flex;
	gap: 40px;
}

#lunchImgList li {
	flex: 1;
}

.lunchImgText {
	width: fit-content;
	margin-bottom: 20px;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	background-color: #211488;
}

#lunchImgCaption {
	padding-top: 5px;
	font-size: 1.4rem;
	text-align: right;
}

/* ------------------------------------ */
/* 去年の情報 */
/* ------------------------------------ */
#lastyear {
	padding-top: 80px;
	margin-top: -80px;
}

#lastyearContent {
	padding-top: 90px;
	padding-bottom: 100px;
	background: url(../../img/top/lastyear_data_bg.jpg) no-repeat center center / cover;
}

.lastyearLogo {
	margin-bottom: 55px;
	text-align: center;
}

.lastyearLogo span {
	padding: 5px 10px;
	margin-right: 20px;
	display: inline-block;
	font-size: 3rem;
	font-weight: bold;
	color: #FFF;
	border: 3px solid #FFF;
	vertical-align: middle;
}

.lastyearLogo img {
	margin-top: -10px;
	vertical-align: middle;
}

.lastyearInfo {
	margin-bottom: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.lastyearData {
	width: 450px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	flex-shrink: 0;
}

.lastyearData dt {
	width: 130px;
	margin-right: 20px;
	font-size: 2.9rem;
	font-weight: 700;
	letter-spacing: 0.075em;
	color: #ffffff;
}

.lastyearData dd {
	width: 300px;
	text-align: right;
}

.lastyearData dt:not(:last-of-type),
.lastyearData dd:not(:last-of-type) {
	margin-bottom: 20px;
}

.lastyearBanner {
	width: 520px;
	margin-left: 30px;
	background-color: #ffffff;
}

.lastyearBanner a {
	transition: 0.3s ease-in-out;
}

.lastyearBanner a:hover {
	opacity: 0.7;
}

.lastyearList {
	display: flex;
	justify-content: space-between;
}

.lastyearListItem {
	width: 29%;
}

.lastyearListLink {
	padding: 20px;
	display: block;
	background-color: rgba(0, 0, 0, 0.15 );
	border: 2px solid #7bd2ff;
	transition: 0.3s ease-in-out;
}

.lastyearListText {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.075em;
	text-align: center;
	color: #ffffff;
}

.lastyearListText::before {
	content: "";
	width: 100%;
	height: 70px;
	margin-bottom: 5px;
	display: block;
	display: flex;
	justify-content: center;
	align-items: center;
	background: no-repeat center center / auto;
	transition: 0.3s ease-in-out;
}

.lastyearListItem:nth-child(1) .lastyearListText:before {
	background-image: url(../../img/top/lastyear_data_icon1.svg);
}
.lastyearListItem:nth-child(2) .lastyearListText:before {
	background-image: url(../../img/top/lastyear_data_icon2.svg);
}
.lastyearListItem:nth-child(3) .lastyearListText:before {
	background-image: url(../../img/top/lastyear_data_icon3.svg);
}

.lastyearListText::after {
	content: "";
	width: 12px;
	height: 15px;
	margin-left: 10px;
	display: inline-block;
	background: url(../../img/common/icon_arrow_lightblue.svg) no-repeat center center / contain;
	transition: 0.3s ease-in-out;
}

.lastyearListText span {
	margin-left: 5px;
	padding: 5px 8px;
	display: inline-block;
	font-size: 1.3rem;
	line-height: 1;
	border: 1px solid #ffffff;
	vertical-align: middle;
}

.lastyearListLink:hover {
	background-color: #7bd2ff;
}

.lastyearListItem:nth-child(1) .lastyearListLink:hover .lastyearListText:before {
	background-image: url(../../img/top/lastyear_data_icon1_hover.svg);
}
.lastyearListItem:nth-child(2) .lastyearListLink:hover .lastyearListText:before {
	background-image: url(../../img/top/lastyear_data_icon2_hover.svg);
}
.lastyearListItem:nth-child(3) .lastyearListLink:hover .lastyearListText:before {
	background-image: url(../../img/top/lastyear_data_icon3_hover.svg);
}

.lastyearListLink:hover .lastyearListText::after {
	background-image: url(../../img/common/icon_arrow_white.svg);
}

/* ------------------------------------ */
/* 数字で見るモノづくりフェア */
/* ------------------------------------ */
#data {}

#dataTitle {
	font-size: 4.2rem;
}

.dataSubTitle {
	margin-bottom: 40px;
	padding: 12px 180px;
	position: relative;
	font-size: 2.6rem;
	letter-spacing: 0.1em;
	text-align: center;
	background-color: #ffffff;
}

.dataSubTitle span {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	font-size: 1.6rem;
	letter-spacing: 0.075em;
	color: #333333;
}

.visitorsImg img {
	transform: translateX(13px);
}

/* ------------------------------------ */
/* 来場者の声 */
/* ------------------------------------ */
#voice {
	padding-top: 100px;
	padding-bottom: 30px;
}

#voiceTitle {
	font-size: 4rem;
}

.voiceWrap {
	position: relative;
}

.voiceWrap::before,
.voiceWrap::after {
	content: "";
	width: 120px;
	height: 360px;
	position: absolute;
	bottom: -2px;
	background: no-repeat center bottom / contain;
}

.voiceWrap::before {
	left: -150px;
	background-image: url(../../img/top/voice_img1.svg);
}

.voiceWrap::after {
	right: -130px;
	background-size: 111px 355px;
	background-image: url(../../img/top/voice_img2.svg);
}

@media screen and (max-width: 1200px) {
	.voiceWrap::before,
	.voiceWrap::after {
		bottom: -15px;
	}
	
	.voiceWrap::before {
		left: -100px;
	}
	
	.voiceWrap::after {
		right: -90px;
	}
}

.voice {
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	line-height: 1.3333;
	background-position: left center;
}

.voiceListItem {
	min-height: 70px;
	padding: 5px 5px 5px 20px;
}

/* ------------------------------------ */
/* 広告バナー */
/* ------------------------------------ */
#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;
}

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

.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.4rem;
	font-weight: 700;
}

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

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

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

.exhibitListText.letterSpacing {
	font-size: 1.2rem;
	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;
	}

}
