@charset "UTF-8";

:root{
	--color-primary: #ee7800;
	--color-primary-rgb: 238,120,0;
	--color-primary-contrast: #fff;
	--color-primary-contrast-rgb: 255,255,255;
	--color-secondary: #22ac38;
	--color-secondary-rgb: 34,172,56;
	--color-accent: #fff000;
	--color-accent-rgb: 255,240,0;
	--color-txt: #000;
	--color-txt-rgb: 0,0,0;
	--color-gray: #f5f5f5;
	--color-gray-rgb: 245,245,245;
	--transition-default: all 0.4s ease; 
}


/* !foundation */
/* --------------------------- */
html,body {
	-webkit-font-feature-settings: "kern" 1, "palt" 1;
	font-feature-settings: "kern" 1, "palt" 1;
	-webkit-font-variant-ligatures:none;
	font-variant-ligatures:none;
}
body {
	color: var(--color-txt);
	background-color: var(--color-primary-contrast);
	text-align: center;
}
* {
	box-sizing: border-box;
}
a,
a img {
	color: var(--color-primary);
	transition: var(--transition-default);
}
a img {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
a:visited {
	color: rgba(var(--color-primary-rgb), .875);
}
a:hover {
	color: var(--color-secondary);
	text-decoration: none;	
}
a:hover img {
	opacity: 0.6;
}
a.noborder {
	text-decoration: none;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
hr {
	border: 0;
	height: 1px;
	background-image: linear-gradient(90deg, rgba(var(--color-primary-rgb),0) 0%, rgba(var(--color-primary-rgb),.5) 50%, rgba(var(--color-primary-rgb),0) 100%);
	margin: 5rem auto;
	clear: both;
}
.btn,
.btn:visited {
	width: fit-content;
	display: block;
	text-align: center;
	text-decoration: none;
	border: solid 2px var(--color-primary);
	box-shadow: 0 0 0 2px rgba(var(--color-primary-rgb), .5);
	padding: 0.5em 1.5em 0.625em;
	color: var(--color-primary);
	background: var(--color-primary-contrast);
	margin: 1rem auto;
	border-radius: 100vmax;
}
.btn:hover {
	background: var(--color-primary);
	border-color:  var(--color-primary);
	color: var(--color-primary-contrast);
}
label.btn {
	transition: var(--transition-default);
	cursor: pointer;
}
.btnWrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	
	.btn {
		width: 100%;
	}
}

/* material
--------------------------- */
.clearFloat {
	clear: both;
}
.alignleft {
	float: left;
	margin: 0.375em 1.75em 1.75em 0;
}
.alignright {
	float: right;
	margin: 0.375em 0 1.75em 1.75em;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0.375em auto;
	text-align: center!important;
}
.sp, .checkEl, .toggle, .spNavBg {
	display: none;
}
.flexCont {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
ul[class],ol[class] {
	list-style: none;
	margin: 0 auto;
	padding: 0;
}
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {
	clear: both;
}
.tate {
	-webkit-font-feature-settings: 'palt' 0;
	font-feature-settings: 'palt' 0;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
/* !font */
/* --------------------------- */
.wf-noto-r, body {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}
.wf-abril, .topInfoTitle, .eventDay {
	font-family: "Abril Fatface", serif;
	font-weight: 400;
	font-style: normal;
}

.txtSdw {
	text-shadow: 0 0 40px rgba(var(--color-accent-rgb),.9),0 0 30px rgba(var(--color-accent-rgb),.9),0 0 20px rgba(var(--color-accent-rgb),.9),0 0 10px rgba(var(--color-accent-rgb),.9);
}
.txtSdwMin {
	text-shadow: 0 0 20px rgba(var(--color-accent-rgb),.9),0 0 15px rgba(var(--color-accent-rgb),.9),0 0 10px rgba(var(--color-accent-rgb),.9),0 0 5px rgba(var(--color-accent-rgb),.9);
}
.capsS {
	font-size: 0.8em;
}
.capsL {
	font-size: 1.5em;
}
.shadow {
	filter: drop-shadow(0 0 20px rgba(var(--color-primary-rgb), .875));
}
/* !header */
/* --------------------------- */
.topHeader {
	height: 9.225vw;
	background: url('../imgs/top_header_bg.jpg') center top no-repeat;
	background-size: cover;
}
.gHeader {
	width: 100%;
	height: 80px;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 0;
	left: 0;
	background: var(--color-primary-contrast);
	box-shadow: 0 4px 8px 0 rgba(var(--color-txt-rgb), .25);
	z-index: 1000;
}
.siteTitle {
	margin: 0;
	line-height: 1;
}
.gNav {
	margin: 0;
}
ul.gNavList {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: clamp( 0.625rem, 1.125vw ,1.125rem );
	
	li {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		
		&:not(:first-of-type)::before {
			content: "";
			display: block;
			width: 1px;
			height: 1em;
			background: var(--color-txt);
			margin: 0 0.5em;
		}
		
		a, a:visited {
			display: block;
			padding: 1em 0.75em;
			color: var(--color-txt);
			text-decoration: none;
		}
		a:hover,
		.about &:nth-of-type(1) a,
		.exhibitors ul.gNavList > &:nth-of-type(2) > a,
		.event ul.gNavList > &:nth-of-type(3) a,
		.stamprally ul.gNavList > &:nth-of-type(4) a,
		.access ul.gNavList > &:nth-of-type(6) a {
			color: var(--color-primary);
			background-color: var(--color-gray);
			border-radius: 0.25em;
		}
		
		&.nolink a {
			opacity: 0.25;
			pointer-events: none;
		}
		
		ul.gNavListChild {
			font-size: 0.875em;
			white-space: nowrap;
			position: absolute;
			left: 57.5%;
			top: 100%;
			width: fit-content;
			opacity: 0;
			pointer-events: none;
			background-color: var(--color-primary-contrast);
			border-radius: 0 0 0.5rem 0.5rem;
			translate: -50% 0;
			
			li {
				display: block;
				&:not(:first-of-type)::before {
					display: none;
				}
				
				a, a:visited {
					display: block;
					padding: 0.75em 1em;
					color: var(--color-txt);
					text-decoration: none;
				}
			}
		}
		&:hover ul.gNavListChild {
			opacity: 1;
			pointer-events: auto;
			transition: opacity 0.4s ease;
		}
		&:last-of-type ul.gNavListChild {
			left: auto;
			right: 0;
			translate: 0 0;
		}
	}
}
main {
	padding-top: 3rem;
	min-height: 50lvh;
}

/* !top */
/* --------------------------- */
.topHero {
	margin: 0 auto;
}
.heroCatch {
	line-height: 1;
	margin: 0 auto 2rem;
}
.heroTitle {
	line-height: 1;
	margin: 0 auto 2rem;
}
.topHeroInfo {
	position: relative;
	margin: 0 auto 2rem;
	background-color: var(--color-accent);
	width: 1170px;
	max-width: 90vw;
	padding: 1.5rem 0 1rem;
}
.topHeroInfo::before,
.topHeroInfo::after,
.topHeroPlace::before,
.topHeroPlace::after,
.topRelation::before,
.topRelation::after,
.topRelation dd::before,
.topRelation dd::after {
	content: "";
	display: block;
	width: 2rem;
	height: 2rem;
	position: absolute;
}
.topHeroInfo::before,
.topRelation::before {
	border-top: solid 2px #000;
	border-left: solid 2px #000;
	top: -1px;
	left: -1px;
}
.topHeroInfo::after,
.topRelation::after {
	border-top: solid 2px #000;
	border-right: solid 2px #000;
	top: -1px;
	right: -1px;
}
.topHeroPlace::before,
.topRelation dd::before {
	border-bottom: solid 2px #000;
	border-left: solid 2px #000;
	bottom: -1px;
	left: -1px;
}
.topHeroPlace::after,
.topRelation dd::after {
	border-bottom: solid 2px #000;
	border-right: solid 2px #000;
	bottom: -1px;
	right: -1px;
}
.topHeroDate {
	display: block;
	line-height: 1;
	margin: 0 auto 1.125rem;
}
.topHeroPlace {
	margin: 0 auto;
}
.topInfo {
	display: flex;
	justify-content: flex-start;
	background: var(--color-gray);
}
.topInfoTitle {
	background-color: var(--color-primary);
	color: var(--color-primary-contrast);
	font-weight: normal;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 1.5em;
	font-size: 1.25em;
	line-height: 1;
	margin: 0;
}
ul.topInfoList {
	width: 100%;
	height: 100%;
	font-size: 1em;
	line-height: 1.5;
	text-align: left;
	padding: 0.5rem 1rem;
	transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
	
	li {
		margin-bottom: 0.25em;
		text-indent: -1em;
		padding-left: 1em;
		
		&::before {
			content: "▶︎";
			color: var(--color-primary);
			display: inline-block;
			scale: 0.66;
			text-indent: 0;
		}
	}
}

.topMainImg {
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 100%;
	height: 46.85vw;
}
.topSlideMain, 
.topExhibitors {
	width: 100%;
	height: 46.85vw;
	margin: 0 auto 1.5rem;
}
.swiper-slide {
	width: 100%;
	height: 100%;
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: cover;
}
.slide1 {
	background-image: url('../imgs/top_slide_01.jpg');
}
.slide2 {
	background-image: url('../imgs/top_slide_02.jpg');
}
.topSlideMain .swiper-button-next {
	right: 0.25rem;
}
.topSlideMain .swiper-button-prev {
	left: 0.25rem;
}
.topSlideMain .swiper-button-next::after, .topSlideMain .swiper-button-prev::after,
.topExhibitors .swiper-button-next::after, .topExhibitors .swiper-button-prev::after {
	font-size: 1.5rem;
	color: var(--color-primary-contrast);
}
.topExhibitorSlide {
	height: 46.85vw;
	a {
		width: 100%;
		height: 100%;
		display: block;
		position: relative;
	}
	.exhibitorListName {
		position: absolute;
		left: 0;
		bottom: 0;
		background: rgba(var(--color-txt-rgb), .5);
		color: var(--color-primary-contrast);
		width: 100%;
		padding: 0.5em;
		margin: 0;
	}
	.exhibitorListThumb {
		height: 100%;
		border-radius: 0;
		aspect-ratio: auto;
		display: flex;
		justify-content: center;
		align-items: center;
		
		img {
			width: 100%;
			object-fit: contain;
			aspect-ratio: 3 / 2;
		}
	}
	.topExhibitorSlideBg {
		width: 100%;
		height: 100%;
		overflow: hidden;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0.5;
		img {
			width: 100%;
			height: 100%;
			filter: blur(8px);
			object-fit: cover;
			scale: 1.1;
		}
		z-index: -1;
	}
}
.topSlideSub {
	width: 50vw;
	height: 46.85vw;
	img {
		width: 100%;
	}
}
.topIntro {
	padding: 2rem 0;
	margin: 0 auto 1.5rem;
}
.topIntroTxt {
	font-size: 1.125em;
	line-height: 1.944;
	font-weight: 700;
	margin: 0 auto 2.625em;
}
ul.topIntroPoint {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0.9375rem;
	width: 1170px;
	max-width: 90vw;
	margin: 0 auto;
	figure {
		margin: 0;
		position: relative;
	}
	figcaption {
		position: absolute;
		rotate: -15deg;
		li:nth-of-type(1) figure & {
			top: 1rem;
			left: 0;
		}
		li:nth-of-type(2) figure & {
			top: 1.5rem;
			left: -1.5rem;
		}
		li:nth-of-type(3) figure & {
			bottom: -1.5rem;
			right: 2rem;
			line-height: 3.5;
			text-align: right;
			img:last-of-type {
				margin-right: -3rem;
			}
		}
	}
}
.topRelation {
	width: 1170px;
	max-width: 90vw;
	margin: 0 auto 4em;
	position: relative;
	background-color: var(--color-gray);
	padding: 1.5rem;
	font-size: 1em;
	line-height: 1.9375;
	dt {
		margin: 0 0 0.5em;
	}
	dd {
		margin: 0;
	}
}
ul.topRelationList {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.25rem 1.5rem;
	li::before {
		content: "●";
	}
}
.topExperience {
	width: 100%;
	padding: 2.75rem 0 3.375rem;
	background: url('../imgs/top_experience_bg.jpg') center center no-repeat;
	background-size: cover;
}
.topExperienceTitle {
	line-height: 1;
	margin: 0 auto 2rem;
}

/* !footer */
/* --------------------------- */
.gFooter {
	background-color: var(--color-gray);
	padding-top: 3rem;
}
.footerTitle {
	line-height: 1;
	margin: 0 auto 2rem;
}
ul.snsList {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	margin: 0 auto 1.625rem;
}
.footerInfo {
	width: 1000px;
	max-width: 90vw;
	display: grid;
	grid-template-columns: 9em auto;
	gap: 0.5em 0;
	margin: 0 auto 0.5em;
	padding-top: 1.125rem;
	font-size: 0.875em;
	line-height: 1.75;
	text-align: left;
	font-weight: 400;
	position: relative;
	&::before {
		content: "";
		width: 98.9375vw;
		height: 1px;
		background: var(--color-txt);
		position: absolute;
		top: 0;
		left: 50%;
		translate: -50% 0;
	}
	dt {
		margin: 0;
		&::before {
			content: "●";
		}
	}
	dd {
		margin: 0;
	}
}
.footerNotice {
	width: 1000px;
	max-width: 90vw;
	margin: 0 auto 1.5em;
	font-size: 0.875em;
	line-height: 1.75;
	text-align: left;
	font-weight: 400;
}
.copyright {
	background: #646464;
	color: var(--color-primary-contrast);
	padding: 0.5em 0;
	margin: 0;
	font-size: 1em;
	line-height: 1;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
	font-weight: 400;
}
.stickyNav {
	position: fixed;
	top: 90%;
	right: 0;
	translate: 0 -100%;
	z-index: 1000;
}
.btnContact,
.btnContact:visited {
	position: relative;
	display: block;
	font-size: 1.375em;
	line-height: 1;
	min-width: 2em;
	background: var(--color-secondary);
	color: var(--color-primary-contrast);
	padding: 0.75em 0.5em 2.25em;
	&:hover {
		background-color: var(--color-primary);
		color: var(--color-primary-contrast);
	}
	&::before,
	&::after {
		content: "";
		display: flex;
		justify-content: center;
		align-items: center;
		width: 1.2em;
		height: 1.2em;
		background: rgba(var(--color-primary-contrast-rgb), .3);
		border-radius: 50%;
		position: absolute;
		left: 50%;
		bottom: 0.75rem;
		translate: -50% 0;
	}
	&::after {
		background: url('../imgs/icon_arrow.svg') center left no-repeat;
		background-size: 87.5% auto;
	}
	.btnContact + & {
		margin-top: 0.75rem;
	}
}

/* !lower */
/* --------------------------- */
.pageHeading {
	width: min(800px, 90vw);
	min-height: 320px;
	margin: 0 auto 3rem;
	background: url('../imgs/page_heading_bg.jpg') center center no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 0.75em;
	position: relative;
	
	.pageHeadingTxt {
		position: absolute;
		bottom: 0.5em;
		left: 50%;
		translate: -50% 0;
		width: 100%;
	}
	
	.event & {
		width: min(1200px, 90vw);
	}
}
.pageTitle {
	font-size: 2.75em;
	line-height: 1;
	margin: auto;
	background-color: rgba(var(--color-primary-contrast-rgb), .75);
	width: 100%;
	padding: 0.125em 0 0.25em;
}
.pageHeadingTxt {
	font-size: 0.875em;
	line-height: 1;
	text-shadow: 0 0 6px rgba(0,0,0,.5);
	margin: auto auto 1em;
	color: var(--color-primary-contrast);
}

/* !about */
/* --------------------------- */
.aboutContent {
	width: min(800px, 90vw);
	margin: 4.5rem auto;
}
.aboutTitle {
	font-size: 2em;
	line-height: 1;
	background-color: var(--color-secondary);
	color: var(--color-primary-contrast);
	margin: 0 auto 0.75em;
	padding: 0.375em 0 0.5em;
	position: relative;
	border-radius: 0 0.375em 0 0.375em;
	
	&::before, &::after {
		content: "";
		width: 1em;
		height: 1em;
		position: absolute;
	}
	&::before {
		border-top: solid 2px var(--color-txt);
		border-left: solid 2px var(--color-txt);
		top: -1px;
		left: -1px;
	}
	&::after {
		border-right: solid 2px var(--color-txt);
		border-bottom: solid 2px var(--color-txt);
		right: -1px;
		bottom: -1px;
	}
}
.aboutSubtitle {
	width: fit-content;
	font-size: 1.5em;
	line-height: 1;
	margin: 0 auto 1em;
	padding: 0.25em 1em 0.375em;
	background: var(--color-accent);
	
	* + & {
		margin-top: 1.5em;
	}
}
.aboutCatch {
	font-size: 1.25em;
	text-align: left;
	margin: 0 auto 0.75em;
}
.aboutTxt,
ul.aboutList,
ol.aboutList {
	font-size: 1.125em;
	line-height: 1.8125;
	text-align: left;
	margin: 0 0 1.5em;
	
	strong {
		color: var(--color-primary);
	}
	counter-reset: aboutNum;
}
ul.aboutList>li {
	padding-left: 1em;
	text-indent: -1em;
	
	&::before {
		content: "";
		display: inline-block;
		width: 1em;
		height: 1em;
		background-color: var(--color-txt);
		border-radius: 50%;
		scale: 0.666;
		vertical-align: -0.1em;
	}
}
ol.aboutList>li {
	counter-increment: aboutNum;
	padding-left: 1em;
	text-indent: -1em;
	
	&::before {
		content: counter(aboutNum)"．";
		display: inline-block;
		width: 1em;
		height: 1em;
		text-indent: 0;
	}
}
.aboutGreetWrap {
	display: grid;
	grid-template-columns: 1fr 180px;
	gap: 1.5rem;
	
	figure {
		margin: 0;
		
		figaption {
			display: block;
			margin: .5em 0 0;
			font-size: 0.875em;
			line-height: 1.375;
			
			b {
				font-size: 1.5em;
			}
		}
	}
}
.aboutExhibitor {
	margin: 0 auto 1.5rem;
	
	dt {
		font-size: 0.875em;
		line-height: 1;
		font-weight: 700;
		margin: 0 0 0.5em;
		background: var(--color-gray);
		padding: 0.5em 0 0.625em;
	}
	dd {
		margin: 0 0 1em;
		font-size: 1em;
		line-height: 1.666;
		text-align: left;
	}
}
.aboutEvent {
	
	dt {
		width: 8.5em;
		margin: 0 0 0.5em;
		padding: 0.375em 0.5em 0.5em;
		background-color: #00a5e3;
		color: #fff;
		text-align: left;
		
		&:nth-of-type(2) {
			background-color: #ec7aac;
		}
		&:nth-of-type(3) {
			background-color: #009944;
		}
		&:nth-of-type(4) {
			background-color: #ee7800;
		}
		
		dd + & {
			margin-top: 1.5em;
		}
	}
	dd {
		margin: 0;
		padding-left: 1.5em;
		text-align: left;
		font-size: 0.875em;
		line-height: 1.625;
		
		b {
			font-size: 1.25em;
		}
	}
}
ul.flyerList {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	
	img {
		box-shadow: 4px 4px 16px rgba(var(--color-txt-rgb), .15);
	}
}

/* !exhibitor */
/* --------------------------- */
.exhibitor main {
	padding-top: 0;
}
.exhibitorFloorMap {
	width: 100%;
	aspect-ratio: 16 / 9;
	margin: 0 auto 4.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
	background: url('../imgs/top_experience_bg.jpg') center center no-repeat;
	background-size: cover;
	padding-bottom: 3rem;
	
	&::before {
		content: "";
		width: 100%;
		height: 100%;
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		backdrop-filter: blur(8px);
	}
	
	.pageTitle {
		margin: 1em auto auto;
		background: var(--color-accent);
		position: relative;
	}
	
	img {
		position: relative;
		margin: 3rem auto auto;
		max-width: 90%;
		border-radius: 3rem;
	}
}
.exhibitorFloorMapWrap {
	width: min(800px, 100%);
	margin: 0 auto 1.5rem;
	border: solid 2px var(--color-txt);
	border-radius: 1.5rem;
	overflow: hidden;
}
.exhibitorArea {
	margin: 0 auto 4.5rem;
	
	.eventHeading {
		position: sticky;
		top: 6rem;
		z-index: 100;
	}
	.eventHeading::before,
	.eventHeading::after,
	.eventHeadingTitle::before,
	.eventHeadingTitle::after {
		width: 1.5rem;
		height: 1.5rem;
	}
}
ul.exhibitorList {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem 2.25rem;
	width: min(1200px, 90%);
	margin: 0 auto;
	
	li {
		display: grid;
		grid-template-rows: subgrid;
		grid-row: span 2;
		gap: 0;
	}
	
	a, a:visited {
		display: block;
		text-decoration: none;
		color: var(--color-txt);
	}
	a:hover {
		color: var(--color-secondary);
	}
}
.exhibitorListThumb {
	width: 100%;
	aspect-ratio: 3 / 2;
	border-radius: 1.25rem;
	overflow: hidden;
	margin: 0 auto 0.75rem;
	
	img {
		width: 100%;
		aspect-ratio: 3 / 2;
		object-fit: cover;
	}
	
	a:hover & img {
		scale: 1.15;
		opacity: 1;
	}
}
.exhibitorListName {
	font-size: 1.375em;
	line-height: 1.25;
	text-align: left;
	margin: 0 0 0.25em;
	display: flex;
	justify-items: flex-start;
	align-items: center;
	gap: 0.5rem;
	
	span {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-shrink: 0;
		width: 1.75em;
		height: 1.75em;
		font-size: 0.875em;
		line-height: 1;
		background-color: var(--color-secondary);
		border-radius: 50%;
		color: var(--color-primary-contrast);
	}
}
ul.exhibitorListTag {
	width: 100%;
	font-size: 0.875em;
	line-height: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	padding: 0.5rem 0 0.5rem 1.75rem;
	position: relative;
	gap: 0.375rem;
	border-bottom: solid 1px rgba(var(--color-txt-rgb), .25);
	
	&::before {
		font-family: "Font Awesome 5 Free";
		line-height: 1;
		font-weight: 900;
		content: "\f02c";
		color: rgba(var(--color-txt-rgb), .5);
		position: absolute;
		top: 50%;
		left: 0.25rem;
		translate: 0 -50%;
	}
	
	a {
		text-decoration: none;
		display: block;
		background-color: var(--color-primary-contrast);
		border-radius: 100vmax;
		padding: 0.25em 0.5em 0.375em;
		box-shadow: 0 0 0 1px rgba(var(--color-txt-rgb), .1);
		
		&:hover {
			box-shadow: 0 0 0 1px rgba(var(--color-secondary-rgb), .5);
		}
		
		span {
			opacity: 0.5;
		}
	}
}
.exhibitorDetailHeader {
	position: relative;
	width: min(1200px, 90%);
	margin: 0 auto 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: solid 1px rgba(var(--color-txt-rgb), .25);
}
.exhibitorDetailHeaderTitle {
	font-size: 1.25em;
	line-height: 1;
	font-weight: 200;
	margin: 0 auto 0 0;
	padding: 1rem 1rem 1rem 0;
	border-right: solid 1px rgba(var(--color-txt-rgb), .25);
}
.exhibitorDetailHeaderPlace {
	font: 1em;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin: 0 0 0 auto;
}
.exhibitorDetailTxt {
	font-size: 1.25em;
	line-height: 1.75;
	text-align: justify;
	letter-spacing: 0.1em;
	font-weight: 200;
	margin: 0 0 1em;
}
.exhibitorDetailWrap {
	width: min(1200px, 90%);
	margin: 0 auto 4.5rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: row-reverse;
	gap: 3rem;
}
.exhibitorDetailImg {
	width: 53.333%;
	flex-shrink: 0;
	img {
		display: block;
		border-radius: 0.75rem;
		margin-bottom: 1.5rem;
	}
}
ul.exhibitorContactList {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	font-size: 2em;
	line-height: 1;
	margin: 0 auto 1rem;
	
	a {
		text-decoration: none;
		color: var(--color-secondary);
		display: flex;
		justify-content: center;
		align-items: center;
		width: 1.8em;
		height: 1.8em;
		border-radius: 50%;
		background: var(--color-gray);
		box-shadow: 0 0 0 1px rgba(var(--color-txt-rgb), .25);
		transition-duration: 0.1s;
	}
	a:hover {
		background: rgba(var(--color-secondary-rgb), .15);
		box-shadow: 0 0 0 2px rgba(var(--color-secondary-rgb), .5);
		
		i {
			scale: 1.1;
		}
	}
}
.exhibitorDetailOutline {
	margin: 0;
	width: 100%;
	font-size: 1.125em;
	line-height: 1.666;
	text-align: left;
	display: grid;
	grid-template-columns: 5em auto;
	gap: 0.5rem 0;
	
	dt {
		font-size: 0.875em;
		letter-spacing: 0.125em;
		margin: 0;
		padding: 0.125em 0 0.5rem;
		border-bottom: solid 1px rgba(var(--color-txt-rgb), .25);
		color: rgba(var(--color-txt-rgb), .5);
		font-weight: 700;
	}
	dd {
		margin: 0;
		padding-bottom: 0.5rem;
		border-bottom: solid 1px rgba(var(--color-txt-rgb), .25);
	}
}
.exhibitorDetailNav {
	width: min(1200px, 90%);
	margin: 0 auto 4.5rem;
}

.postBody {
	width: min(960px, 90vw);
	text-align: left;
	margin: 0 auto 4.5rem;
	line-height: 1.5;
	
	h1 {
		font-size: 2.5em;
		line-height: 1.25;
		margin: 0.5em auto 1em;
	}
	
	h2 {
		font-size: 2em;
		line-height: 1.25;
		margin: 0.5em auto 1em;
	}
	
	h3 {
		font-size: 1.5em;
		line-height: 1.375;
		margin: 0.5em auto 1em;
	}
	
	h4 {
		font-size: 1.25em;
		line-height: 1.375;
		margin: 0.5em auto 1em;
	}
	
	h5 {
		font-size: 1.1125em;
		line-height: 1.375;
		margin: 0.5em auto 1em;
	}
	
	h6 {
		font-size: 1em;
		line-height: 1.375;
		margin: 0.5em auto 1em;
	}
	
	p {
		font-size: 1em;
		line-height: 1.875;
		margin: 1em auto 1.5em;
	}
	
	figure {
		margin: 0 auto 1.5rem;
	}
	
	ul.wp-block-list {
		list-style: disc;
		font-size: 1em;
		line-height: 1.625;
		margin: 1em auto 1.5em;
		padding-left: 1.5em;
		
		li {
			margin-bottom: 0.25em;
		}
	}
}

/* !event */
/* --------------------------- */
.eventHeading {
	position: relative;
	margin: 0 auto 2rem;
	background-color: var(--color-accent);
	width: 1200px;
	max-width: 90vw;
	padding: 1.5rem 0 1.625rem;
}
.eventHeading::before,
.eventHeading::after,
.eventHeadingTitle::before,
.eventHeadingTitle::after {
	content: "";
	display: block;
	width: 2rem;
	height: 2rem;
	position: absolute;
}
.eventHeading::before {
	border-top: solid 2px #000;
	border-left: solid 2px #000;
	top: -1px;
	left: -1px;
}
.eventHeading::after {
	border-top: solid 2px #000;
	border-right: solid 2px #000;
	top: -1px;
	right: -1px;
}
.eventHeadingTitle::before {
	border-bottom: solid 2px #000;
	border-left: solid 2px #000;
	bottom: -1px;
	left: -1px;
}
.eventHeadingTitle::after {
	border-bottom: solid 2px #000;
	border-right: solid 2px #000;
	bottom: -1px;
	right: -1px;
}
.eventHeadingTitle {
	margin: 0 auto;
	font-size: 2em;
	line-height: 1.25;
}
.eventHeadingPlace {
	font-size: 1.25em;
	line-height: 1;
	font-weight: 700;
	width: fit-content;
	margin: 0.75em auto 0;
	padding: 0.5em 1em 0.625em;
	border-radius: 100vmax;
	background-color: var(--color-txt);
	color: var(--color-primary-contrast);
}
.eventListContent {
	width: min(1200px, 90vw);
	margin: 0 auto 3rem;
	
	.aboutEvent {
		display: grid;
		grid-template-columns: 8em 1fr;
		gap: 0.5rem 1.5rem;
		
		dt {
			dd + & {
				margin-top: 0;
			}
		}
		
		dd {
			padding: 0;
		}
	}
}
.eventTimetable {
	margin: 0 auto 3rem;
	position: relative;
	width: min(1200px, 90vw);
}
.eventWrap {
	width: min(1200px, 90vw);
	margin: 4.5rem auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
}
.eventDetail {
	width: min(1200px, 90vw);
	margin: 0 auto 3rem;
	position: relative;
	background-color: rgba(var(--color-primary-contrast-rgb), 1);
	border-radius: 1rem;
	padding: 0 1.5rem 3rem;
	
	&:has(.btnMore) {
		padding-bottom: 4.5rem;
	}
	
	.btnMore {
		width: 15em;
		max-width: 90%;
		position: absolute;
		bottom: 0;
		left: 50%;
		translate: -50% 0;
	}
}
.eventDay {
	width: fit-content;
	display: block;
	background: var(--color-primary);
	margin: 0 auto 0.25em;
	font-size: 2.5em;
	line-height: 1;
	color: var(--color-primary-contrast);
	padding: 0.125em 0.25em;
	border-radius: 0 0 0.25em 0.25em;
	letter-spacing: 0.05em;
	text-indent: 0.05em;
	
	.capsS {
		font-size: 0.5em;
	}
}
.eventTime {
	display: block;
	font-size: 1.25em;
	line-height: 1;
	font-weight: 700;
	margin: 0 auto 0.75em;
}
.eventPlace {
	width: fit-content;
	font-size: 1.25em;
	line-height: 1;
	font-weight: 700;
	margin: 0 auto 0.75em;
	background: var(--color-accent);
	padding: 0.25em 1em 0.3125em;
	border-radius: 100vmax;
}
.eventTitle {
	font-size: 1.375em;
	line-height: 1.375;
	font-weight: 900;
	margin: 0 0 0.75em;
	min-height: 3em;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.eventImgWrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	
	.eventOutline + & {
		margin-top: 3rem;
	}
	
	&.threeImg {
		grid-template-columns: 1fr 1fr 1fr;
	}
}
.eventImg {
	display: block;
	margin: 0 auto 1rem;
	border-radius: 0.5rem;
	
	.eventImgWrap & {
		width: 100%;
	}
	
	&.imgShadow {
		filter: drop-shadow(2px 2px 8px rgba(var(--color-txt-rgb), .25));
	}
}
.eventCatch {
	width: min(800px, 90vw);
	font-size: 1.25em;
	line-height: 1.375;
	text-align: left;
	margin: 0 auto 0.75em;
}
.eventTxt{
	width: min(800px, 90vw);
	font-size: 1em;
	line-height: 1.666;
	text-align: justify;
	margin: 0 auto 1em;
}
.eventOutline {
	width: min(800px, 90vw);
	margin: 0 auto;
	
	dt {
		width: fit-content;
		min-width: 10em;
		background: rgba(var(--color-secondary-rgb), .25);
		font-size: 0.875em;
		line-height: 1;
		padding: 0.25em 0 0.375em;
		margin: 0 auto 0.5em;
		border-radius: 0.25em;
		
		dd + & {
			margin-top: 1em;
		}
	}
	dd {
		margin: 0;
		line-height: 1.5;
		
		ul {
			width: fit-content;
			margin-inline: auto;
			text-align: left;
			
			li {
				margin-bottom: 0.5em;
			}
		}
	}
}
.btnMore {
	width: 100%;
}
.modalWrap {
	width: 100vw;
	height: 100lvh;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	pointer-events: none;
	opacity: 0;
	display: none;
	
	.checkEl:checked ~ & {
		display: flex;
		opacity: 1;
		pointer-events: auto;
		transition: opacity 0.3s ease 0.1s;
		
		@starting-style {
			opacity: 0;
		}
	}
}
.modalCont {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 800px;
	max-width: 90vw;
	max-height: 85lvh;
	background: var(--color-primary-contrast);
	border-radius: 1.5rem;
	box-shadow: 4px 4px 16px rgba(var(--color-txt-rgb), .875);
	z-index: 100;
	position: relative;
}
.modalBg {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	background: rgba(var(--color-txt-rgb), .875);
}
.modalTitle {
	font-size: 1.5em;
	line-height: 1.25;
	margin: 0 auto;
	background-color: rgba(var(--color-primary-rgb), .25);
	width: 100%;
	border-radius: 1.5rem 1.5rem 0 0;
	padding: 0.5em 1em 0.625em;
}
.modalBody {
	width: 100%;
	max-height: 80lvh;
	overflow-y: auto;
	padding: 1.5rem;
}
.modalTxt {
	font-size: 1em;
	line-height: 1.666;
	text-align: justify;
	margin: 0 0 1em;
}
.modalEventPhoto {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin: 0 auto 1.5rem;
	
	img {
		border-radius: 0.75rem;
	}
}
.modalClose {
	font-size: 1.5em;
	line-height: 1;
	font-weight: 900;
	color: var(--color-primary-contrast);
	position: absolute;
	top: 0;
	right: 0;
	width: 1.75em;
	height: 1.75em;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--color-primary);
	border-radius: 50%;
	cursor: pointer;
	transition: scale 0.4s ease;
	translate: 50% -50%;
	z-index: 1000;
	
	&:hover {
		scale: 1.1;
	}
}

/* !access */
/* --------------------------- */
.accessMap {
	width: 100%;
}
.accessInfoTitle {
	font-size: 1.5em;
	line-height: 1.25;
	margin: 0 auto 0.5em;
}
.accessInfoTxt {
	font-size: 0.875em;
	line-height: 1.5;
	margin: 0 auto 1em;
}
.access {
	.aboutTxt {
		text-align: center;
	}
}
.accessNotice {
	margin: 0 auto;
	border: solid 2px var(--color-secondary);
	padding: 0 1.5em 0.5em;
	border-radius: 0.75rem;
	
	dt {
		width: fit-content;
		font-size: 1.25em;
		line-height: 1;
		padding: 0 1em;
		background-color: var(--color-primary-contrast);
		margin: -0.5em auto 1em;
	}
	dd {
		margin: 0;
		
		p {
			font-size: 0.875em;
			line-height: 1.666;
			text-align: justify;
		}
	}
}

.stamprallyCont {
	width: min(1170px, 90vw);
	margin: 0 auto 5rem;
}
.stamprallyTitle {
	margin: 3rem auto;
}
.stamprallyTxt {
	font-size: 1.125em;
	line-height: 1.75;
	font-weight: 700;
	margin: 0 auto 1.5em;
}
.stamprallyNotice {
	border: solid 1px var(--color-txt);
	max-width: 940px;
	margin: 0 auto;
	padding: 2.375rem 1.5rem;
	
	dt {
		width: fit-content;
		font-size: 1.375em;
		line-height: 1;
		font-weight: 700;
		margin: 0 auto 1.5em;
		position: relative;
		
		&::after {
			content: "";
			display: block;
			width: 110%;
			height: 0.625em;
			background-color: var(--color-accent);
			translate: -5% -0.25em;
			position: absolute;
			z-index: -1;
		}
	}
	dd {
		margin: 0 auto;
		font-size: 1.125em;
		line-height: 1.75;
	}
}

/* !sp */
/* --------------------------- */
@media screen and (max-width:767px) {
	/* !sp common */
	/* --------------------------- */
	.floatLeft,
	.floatRight,
	.alignleft,
	.alignright {
		display: block;
		text-align: center;
		float: none;
		margin: 16px auto;
	}
	.nosp {
		display: none;
	}
	.sp {
		display: block;
	}
	.flexCont {
		display: block;
	}
	.btnWrap {
		grid-template-columns: 1fr;
		margin-top: 1rem;
		
		.btn {
			margin: 0 auto;
			max-width: 90%;
		}
	}
	/* !sp layout */
	/* --------------------------- */
	html {
		font-size: 3.5vw;
	}
	main {
		padding-top: 1.5rem;
	}
	/* !sp header */
	/* --------------------------- */
	.topHeader {
		margin-bottom: 1rem;
	}
	.gHeader {
		height: 3.5rem;
		padding: 0 0.5rem 0 1rem;
	}
	.siteTitle {
		max-width: 33%;
	}
	.gNav {
		width: 100%;
		position: fixed;
		top: 3.5rem;
		left: 0;
		translate: 100% 0;
		transition: translate 0.3s ease;
		background-color: var(--color-primary-contrast);
		pointer-events: none;
		
		#menu:checked ~ .gHeader & {
			translate: 0 0;
			pointer-events: auto;
		}
	}
	ul.gNavList {
		width: 100%;
		flex-direction: column;
		font-size: 1.25rem;
		border-top: solid 1px var(--color-txt);
		
		li {
			width: 100%;
			flex-direction: column;
			
			&:not(:first-of-type)::before {
				width: 100%;
				height: 1px;
			}
			
			a {
				width: 100%;
			}
			
			ul.gNavListChild {
				border-top: solid 1px rgba(var(--color-txt-rgb),.25);
				position: relative;
				top: auto;
				left: auto;
				translate: 0 0;
				display: grid;
				grid-template-columns: 1fr 1fr 1fr;
				opacity: 1;
				pointer-events: auto;
			}
		}
	}
	.toggle {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		gap: 0.5rem;
		width: 2.5rem;
		height: 2.5rem;
		
		.bar {
			display: block;
			width: 66%;
			height: 1px;
			background-color: var(--color-txt);
			transition: scale 0.3s ease, rotate 0.3s ease, translate 0.3s ease;
			
			#menu:checked ~ .gHeader & {
				scale: 0 1;
			}
			#menu:checked ~ .gHeader &:first-of-type {
				rotate: 45deg;
				scale: 1;
				translate: 0 0.575rem;
			}
			#menu:checked ~ .gHeader &:last-of-type {
				rotate: -45deg;
				scale: 1;
				translate: 0 -0.575rem;
			}
		}
	}
	.spNavBg {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100lvh;
		background-color: rgba(var(--color-txt-rgb), 0);
		z-index: 500;
		pointer-events: none;
		transition: background-color 0.4s ease;
		
		#menu:checked ~ & {
			background-color: rgba(var(--color-txt-rgb), .75);
			pointer-events: auto;
		}
	}
	
	/* !sp top */
	/* --------------------------- */
	.heroCatch {
		max-width: 90vw;
		margin-bottom: 1.25rem;
	}
	.heroTitle {
		max-width: 96vw;
		margin-bottom: 1.25rem;
	}
	.topHeroInfo::before,
	.topHeroInfo::after,
	.topHeroPlace::before,
	.topHeroPlace::after,
	.topRelation::before,
	.topRelation::after,
	.topRelation dd::before,
	.topRelation dd::after {
		content: "";
		display: block;
		width: 1.25rem;
		height: 1.25rem;
		position: absolute;
	}
	.topHeroDate {
		max-width: 90%;
		margin-bottom: 0.75em;
	}
	.topHeroPlace {
		max-width: 77.5%;
	}
	.topInfoTitle {
		padding: 0 0.5em;
		font-size: 0.625em;
	}
	ul.topInfoList {
		font-size: 0.75em;
		padding: 0 0.5rem;
	}
	.topMainImg {
		grid-template-columns: 1fr;
		height: auto;
	}
	.topSlideMain {
		height: 93.7vw;
		margin-bottom: 0;
	}
	.topExhibitors {
		height: 66.66667vw;
		margin-bottom: 0;
	}
	.topExhibitorSlide {
		height: auto;
		.exhibitorListThumb {
			img {
				object-fit: cover;
			}
		}
	}
	.topExhibitorSlideBg {
		display: none;
	}
	.topSlideSub {
		width: 100%;
		height: 93.7vw;
	}
	.topIntroTxt {
		font-size: 1em;
	}
	ul.topIntroPoint {
		grid-template-columns: 1fr;
		max-width: 80vw;
		gap: 1.5rem;
		figcaption {
			li:nth-of-type(1) figure & {
				max-width: 55%;
			}
			li:nth-of-type(2) figure & {
				max-width: 90%;
			}
			li:nth-of-type(3) figure & {
				bottom: -1.5rem;
				right: 2rem;
				line-height: 3.5;
				text-align: right;
				img:last-of-type {
					margin-right: -3rem;
				}
			}
		}
	}
	ul.topRelationList {
		gap: 0.5em;
		line-height: 1.625;
		text-align: left;
		justify-content: flex-start;
		li {
			text-indent: -1em;
			padding-left: 1em;
		}
	}
	.topExperience {
		padding: 2rem 1.5rem 2.5rem;
	}
	.topExperienceTitle {
		max-width: 80%;
	}
	/* !sp footer */
	/* --------------------------- */
	.footerTitle {
		max-width: 66vw;
	}
	.footerInfo {
		padding-right: 1.25em;
	}
	.footerNotice {
		line-height: 1.666;
		padding-left: 1em;
		text-indent: -1em;
	}
	.copyright {
		padding: 0.625em 0 0.875em;
	}
	.btnContact {
		font-size: 1.25em;
	}
	/* !sp lower */
	/* --------------------------- */
	.pageHeading {
		aspect-ratio: 4 / 3;
		min-height: 100%;
		height: 100%;
	}
	.pageTitle {
		font-size: 2.5em;
	}
	.pageHeadingTxt {
		line-height: 1.375;
	}
	.aboutGreetWrap {
		grid-template-columns: 1fr;
	}
	/* !sp event */
	/* --------------------------- */
	.eventWrap {
		grid-template-columns: 1fr;
	}
	.eventDetail {
		padding: 0 0 3rem;
	}
	.eventTxt,
	.eventOutline {
		width: 100%;
	}
	/* !sp exhibitor */
	/* --------------------------- */
	.exhibitorFloorMap img {
		max-width: 100%;
		border-radius: 0;
	}
	.exhibitorFloorMapWrap {
		border-right: none;
		border-left: none;
		border-radius: 0;
	}
	.exhibitorArea {
		
		.eventHeading {
			top: 4.5rem;
			font-size: 0.75em;
			padding: 1rem 0 1.25rem;
		}
		.eventHeading::before,
		.eventHeading::after,
		.eventHeadingTitle::before,
		.eventHeadingTitle::after {
			width: 1rem;
			height: 1rem;
		}
	}
	ul.exhibitorList {
		grid-template-columns: repeat(1, 1fr);
		max-width: 80%;
	}
	.exhibitorDetail {
		
		.eventHeading {
			position: sticky;
			top: 4.5rem;
			font-size: 0.75em;
			padding: 1rem 0 1.25rem;
		}
		.eventHeading::before,
		.eventHeading::after,
		.eventHeadingTitle::before,
		.eventHeadingTitle::after {
			width: 1rem;
			height: 1rem;
		}
	}
	.exhibitorDetailWrap {
		flex-direction: column-reverse;
	}
	.exhibitorDetailImg {
		width: 100%;
	}
	.exhibitorDetailTxt {
		font-size: 1.125em;
	}
	.exhibitorDetailOutline {
		font-size: 1em;
	}
	.stamprallyPageTitle {
		max-width: 95vw;
		margin-inline: auto;
	}
	.stamprallyTxt {
		font-size: 1em;
		line-height: 1.666;
	}
	.stamprallyNotice {
		padding: 2rem 1rem;
		
		dd {
			font-size: 0.875em;
			line-height: 1.666;
		}
	}
}
