@charset "utf-8";

.pc_only { display: block; }
.tablet_only { display: block; }
.sp_only { display: none; }

@media print, screen and (max-width: 981px) {

	.pc_only { display: block; }
	.tablet_only { display: none; }
	.sp_only { display: none; }

}
@media print, screen and (max-width: 768px) {

	.pc_only { display: none; }
	.sp_only { display: block; }

}





/* ヘッダー */
header {
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100px;
	background: #fff;
}
header #contents-header {

}
header #contents-header .contents-header-logo {
	position: absolute;
	top: 14px;
	left: 20px;
	width: 260px;
	height: auto;
}
header #contents-header .contents-header-menu-block {
	position: absolute;
	top: 32.5px;
	right: 20px;
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
	width: fit-content;
	height: auto;
}
.header-menu-link-wrap {
	display: flex;
	width: fit-content;
	height: auto;
}
.header-menu-link {
	display: inline-flex;
	width: fit-content;
	height: auto;
	margin: 0 5px;
	font-size: 15px;
	font-weight: 700;
}
.header-menu-link a {
	color: #000;
	text-decoration: none;
}
.header-menu-link a:hover {
	color: #cf000e;
	text-decoration: underline;
}

.header-menu-exhibitors-wrap {
	display: flex;
	width: fit-content;
	height: 28px;
	margin: 0 10px;
	font-size: 14px;
	font-weight: 400;
	line-height: 26px;
	background: #684a29;
	border-radius: 20px;
}
.header-menu-exhibitors-wrap a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0 10px;
	text-decoration: none;
	color: #fff;
}

.header-menu-sns-wrap {
	display: flex;
	width: 135px;
	height: auto;
}
.header-menu-sns-link {
	display: inline-flex;
	width: 35px;
	height: 35px;
	margin: 0 5px;
}

#header-global-menu {
		display: none;
}

@media print, screen and (max-width: 980px) {

	header {
		position: fixed;
		z-index: 999;
		width: 100%;
		height: 75px;
		background: #fff;
	}

	header #contents-header .contents-header-logo {
		position: absolute;
		top: 10px;
		left: 15px;
		width: 200px;
		height: auto;
	}
	
	header #contents-header .contents-header-menu-block {
		display: none;
	}

	#header-global-menu {
		display: inline-flex;
		flex-direction: row;
		align-items: center;
		align-content: center;
		justify-content: center;
		flex-wrap: nowrap;
	}

	#global-menu .global-menu-wrapper {
		position: absolute;
		top: -10px;
		right: 0;
	}
	#global-menu .global-menu-wrapper li {
		font-size: 1.1rem; 
	}
	#global-menu .global-menu-wrapper li a {
		padding: 8px 0;
	}

	#global-menu-btn {
		position: absolute;
		top: 15px;
		right: 15px;
		width: 40px;
		height: 40px;
		cursor: pointer;
	}

	#global-menu {
		width: 100%;
		/*width: 400px;*/
		height: auto;
		background-color: rgba( 255,255,255, 0.9 );
		position: fixed;
		top: 15px;
		right: 0;
		z-index: 100;
		transform: translate(120%);
		transition: all .3s;
	}
	#global-menu.open {
		transform: translate(0);
	}

	.global-menu-background {
		position: fixed;
		top: 75px;
		right: 0;
		content: "";
		display: block;
		width: 0;
		height: 0;
		background-color: rgba( 255,255,255, 0.9 );
		border-top: 10px solid #cf000e;
		z-index: 99;
		opacity: 0;
		transition: opacity 0.5s;
	}
	.global-menu-background.open {
		width: 100%;
		/*width: 400px;*/
		height: 100%;
		opacity: 1;
	}

	.global-menu-open {
		width: 100%;
		height: auto;
	}

	.global-menu-close {
		display: none;
		z-index: 101;
		padding-top: 12px;
	}

	.global-menu-close-btn {
		position: absolute;
		top: 0px;
		right: 15px;
		width: 40px;
		height: 40px;
		margin: 0;
		padding: 0;
		cursor: pointer;
		z-index: 101;
		transition: opacity 0.5s;
	}

	#global-menu .global-menu-wrapper {
		position: absolute;
		top: 70px;
		right: 0;
		width: 100%;
		height: auto;
		margin: 0 auto;
		padding: 0;
		display: flex; 
		flex-wrap: wrap;
		/*border-top: 1px solid #fff;*/
	}
	#global-menu .global-menu-wrapper li {
		display: flex; 
		flex-direction: column;
		flex-wrap: nowrap;
		align-content: center;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: auto; 
		margin: 0;
		padding: 0;
		font-size: 1.5rem; 
		font-weight: 500; 
		text-align: center; 
		color: #ffffff; 
		/*border-bottom: 1px solid #fff;*/
		overflow: hidden;
	}
	#global-menu .global-menu-wrapper li a {
		display: block;
		width: 100%;
		height: 100%;
		padding: 10px 0;
		color: #000;
		text-decoration: none;
	}
	#global-menu .global-menu-wrapper li:hover a {
		color: #cf000e;
	}

}
@media print, screen and (max-width: 768px) {

	header {
		position: fixed;
		z-index: 999;
		width: 100%;
		height: 60px;
		background: #fff;
	}

	header #contents-header .contents-header-logo {
		position: absolute;
		top: 10px;
		left: 10px;
		width: 150px;
		height: auto;
	}
	
	header #contents-header .contents-header-menu-block {
		display: none;
	}

	#header-global-menu {
		display: inline-flex;
		flex-direction: row;
		align-items: center;
		align-content: center;
		justify-content: center;
		flex-wrap: nowrap;
	}

	#global-menu .global-menu-wrapper {
		position: absolute;
		top: -10px;
		right: 0;
	}
	#global-menu .global-menu-wrapper li {
		font-size: 1.1rem; 
	}
	#global-menu .global-menu-wrapper li a {
		padding: 8px 0;
	}

	#global-menu-btn {
		position: absolute;
		top: 10px;
		right: 10px;
		width: 35px;
		height: 35px;
		cursor: pointer;
	}

	#global-menu {
		width: 100%;
		/*width: 400px;*/
		height: auto;
		background-color: rgba( 255,255,255, 0.9 );
		position: fixed;
		top: 10px;
		right: 0;
		z-index: 100;
		transform: translate(120%);
		transition: all .3s;
	}
	#global-menu.open {
		transform: translate(0);
	}

	.global-menu-background {
		position: fixed;
		top: 60px;
		right: 0;
		content: "";
		display: block;
		width: 0;
		height: 0;
		background-color: rgba( 255,255,255, 0.9 );
		border-top: 10px solid #cf000e;
		z-index: 99;
		opacity: 0;
		transition: opacity 0.5s;
	}
	.global-menu-background.open {
		width: 100%;
		/*width: 400px;*/
		height: 100%;
		opacity: 1;
	}

	.global-menu-open {
		width: 100%;
		height: auto;
	}

	.global-menu-close {
		display: none;
		z-index: 101;
		padding-top: 12px;
	}

	.global-menu-close-btn {
		position: absolute;
		top: 0px;
		right: 10px;
		width: 35px;
		height: 35px;
		margin: 0;
		padding: 0;
		cursor: pointer;
		z-index: 101;
		transition: opacity 0.5s;
	}

	#global-menu .global-menu-wrapper {
		position: absolute;
		top: 60px;
		right: 0;
		width: 100%;
		height: auto;
		margin: 0 auto;
		padding: 0;
		display: flex; 
		flex-wrap: wrap;
		/*border-top: 1px solid #fff;*/
	}
	#global-menu .global-menu-wrapper li {
		display: flex; 
		flex-direction: column;
		flex-wrap: nowrap;
		align-content: center;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: auto; 
		margin: 0;
		padding: 0;
		font-size: 1.5rem; 
		font-weight: 500; 
		text-align: center; 
		color: #ffffff; 
		/*border-bottom: 1px solid #fff;*/
		overflow: hidden;
	}
	#global-menu .global-menu-wrapper li a {
		display: block;
		width: 100%;
		height: 100%;
		padding: 10px 0;
		color: #000;
		text-decoration: none;
	}
	#global-menu .global-menu-wrapper li:hover a {
		color: #cf000e;
	}

}




/* フッター */
footer {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	margin: 60px 0;
	background: #fff;
}

#contents-footer {

}
.contents-footer-block {
	width: fit-content;
	margin: auto;
}
.contents-footer-wrap {
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
	max-width: 915px;
	width: 100%;
	height: auto;
	margin: 0 auto 10px auto;
}
.footer-subject {
	display: inline;
	width: 100px;
	height: 24px;
	margin-right: 20px;
	padding: 0;
	font-size: 13px;
	font-weight: 500;
	text-align: center;
	color: #fff;
	background: #6f5435;
}
.footer-subject-2 {
	display: inline;
	width: 100px;
	height: 24px;
	margin-right: 20px;
	padding: 0;
	font-size: 13px;
	font-weight: 500;
	text-align: center;
	color: #fff;
	background: #004098;
}
.footer-item {
	display: inline-flex;
	flex-wrap: wrap;
    flex-direction: row;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
	width: calc(100% - 120px);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
}
.contents-footer-logo {
	width: 420px;
	height: auto;
	margin: 40px auto 10px;
}
.op-c-name {
	font-size: 20px;
	font-weight: 700;
}
.op-c-address {
	font-size: 13px;
	font-weight: 400;
}
.op-c-tel {
	font-size: 30px;
	font-family: "oswald", sans-serif;
	font-weight: 600;
	font-style: normal;
}

.footer-companies {
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
	width: 100%;
	height: auto;
	margin: auto;
}
.footer-companies-1 {
	display: inline-flex;
	width: 82px;
	font-weight: 400;
}
.footer-companies-2 {
	display: inline-flex;
	width: calc(100% - 82px);
}


.footer-contact-block {

}
.footer-contact-1 {
	width: fit-content;
	margin-bottom: 5px;
	padding: 8px 16px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	color: #004098;
	border: 2px solid #004098;
	border-radius: 20px;
}
.footer-contact-2 {
	width: fit-content;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	color: #000;
}



@media print, screen and (max-width: 980px) {

	.contents-footer-wrap {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-content: flex-start;
		justify-content: flex-start;
		align-items: flex-start;
		width: 90%;
		height: auto;
		margin: 0 auto 10px auto;
	}
	.footer-subject {
		display: inline;
		width: 100px;
		height: 24px;
		margin-right: 20px;
		padding: 0;
		font-size: 13px;
		font-weight: 500;
	}
	.footer-subject-2 {
		display: inline;
		width: 100px;
		height: 24px;
		margin-right: 20px;
		padding: 0;
		font-size: 13px;
		font-weight: 500;
	}
	.footer-item {
		display: inline-flex;
		flex-wrap: wrap;
		flex-direction: row;
		align-content: flex-start;
		justify-content: flex-start;
		align-items: flex-start;
		width: 100%;
		margin: 10px 0 15px 0;
		font-size: 14px;
		font-weight: 400;
		line-height: 1.5;
	}
	.contents-footer-logo {
		width: 70%;
		height: auto;
		margin: 40px auto 10px;
	}


	.footer-companies {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-content: flex-start;
		justify-content: flex-start;
		align-items: flex-start;
		width: 100%;
		height: auto;
		margin: auto;
	}
	.footer-companies-1 {
		display: inline-flex;
		width: 82px;
		font-weight: 400;
	}
	.footer-companies-2 {
		display: inline-flex;
		width: 100%;
	}


}








/* 共通 */
#main {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	padding-top: 100px;
}

.contents-block-title {
	font-size: 48px;
	font-family: "changeling-neo-stencil", sans-serif;
	font-weight: 700;
	font-style: normal;
}
.contents-block-title-2 {
	font-size: 48px;
	font-weight: 700;
	font-style: normal;
}


@media print, screen and (max-width: 980px) {

	#main {
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		height: auto;
		padding-top: 75px;
	}

}
@media print, screen and (max-width: 768px) {

	#main {
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		height: auto;
		padding-top: 60px;
	}

	.contents-block-title {
		font-size: 28px;
		font-family: "changeling-neo-stencil", sans-serif;
		font-weight: 700;
		font-style: normal;
	}
	.contents-block-title-2 {
		font-size: 26px;
		font-weight: 700;
		font-style: normal;
	}


}




/* TOP */
#top-wrapper {
	position: relative;
	width: 100%;
	height: auto;
	margin: auto;
}



/* コンテンツ */

#contents-wrapper {
	z-index: 1;
	position: relative;
	width: 100%;
	height: auto;
	padding: 0;
	background-image: url(../img/home/bk.png);
	background-repeat: repeat;
	background-position: center center;
	background-size: 33px 33px;
}



/* BLOCK 1 (トピックス) */

#contents-wrapper-1 {
	z-index: 1;
	position: relative;
	max-width: 980px;
	width: 100%;
	height: auto;
	margin: 0 auto 60px auto;
}

.topics-index-block {
	width: 100%;
	border-top: 1px solid #b4afa7;
}
.topics-index-wrap {
	display: flex;
	flex-wrap: nowrap;
    flex-direction: row;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
	width: 100%;
	padding: 20px 0;
	border-bottom: 1px solid #b4afa7;
}
.topics-index-date {
	display: inline-flex;
	width: 10%;
	font-weight: 700;
}
.topics-index-category {
	display: inline-flex;
	align-content: center;
    align-items: center;
	justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
	width: 16%;
	margin: 0 2%;
	color: #cf000e;
	background: #fff;
	border-radius: 30px;
}
.topics-index-title {
	display: inline-flex;
	width: 70%;
}



@media print, screen and (max-width: 1080px) {

	#contents-wrapper-1 {
		width: 90%;
	}

	.topics-index-date {
		display: inline-flex;
		width: 90px;
	}
	.topics-index-category {
		display: inline-flex;
		justify-content: center;
		width: 200px;
		margin: 0 2%;
		color: #cf000e;
		background: #fff;
		border-radius: 30px;
	}
	.topics-index-title {
		display: inline-flex;
		width: 100%;
	}

}
@media print, screen and (max-width: 768px) {

	.topics-index-wrap {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		align-content: flex-start;
		align-items: flex-start;
		justify-content: flex-start;
		width: 100%;
		padding: 20px 0;
		border-bottom: 1px solid #b4afa7;
	}

	.topics-index-date {
		display: inline-flex;
		width: 90px;
	}
	.topics-index-category {
		display: inline-flex;
		justify-content: center;
		width: 140px;
		margin: 0 2%;
		font-size: 14px;
		color: #cf000e;
		background: #fff;
		border-radius: 30px;
	}
	.topics-index-title {
		display: inline-flex;
		width: 100%;
		margin-top: 5px;
		font-size: 14px;
		line-height: 1.35;
	}


}



/* BLOCK 2 (プログラム) */

#contents-wrapper-2 {
	z-index: 1;
	position: relative;
	max-width: 980px;
	width: 100%;
	height: auto;
	margin: 0 auto 60px auto;
	padding: 0;
}

#contents-wrapper-2 .program-contents-block {
	width: calc(100% - 40px);
	margin-bottom: 30px;
	padding: 20px;
	background-image: linear-gradient(90deg, #008ccf, #004098);
	border-radius: 10px;
}
#contents-wrapper-2 .program-contents-title {
	width: 100%;
	padding-bottom: 10px;
	font-size: 44px;
	font-family: "changeling-neo-stencil", sans-serif;
	font-weight: 700;
	font-style: normal;
	line-height: 1;
	text-align: center;
	color: #fff;
}
#contents-wrapper-2 .program-contents-title-jp {
	width: 100%;
	padding-bottom: 10px;
	font-size: 28px;
	font-weight: 700;
	font-style: normal;
	line-height: 1;
	text-align: center;
	color: #fff;
}
#contents-wrapper-2 .program-contents-title-sub {
	width: 100%;
	font-size: 16px;
	font-weight: 700;
	font-style: normal;
	text-align: center;
	color: #fff;
}
#contents-wrapper-2 .program-contents-wrap {
	width: 100%;
}
#contents-wrapper-2 .program-contents-comingsoon {
	width: 100%;
	padding: 60px 0;
	font-size: 24px;
	font-family: "changeling-neo", sans-serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	color: #fff;
}



.event-contents-block {
	display: block;
	width: calc(49% - 30px);
	margin: 0 0 20px 0;
	padding: 30px 15px;
	background: #fff;
	border-radius: 20px;
}
.event-contents-block:nth-child(odd) {
	margin-right: 1%;
}
.event-contents-block:nth-child(even) {
	margin-left: 1%;
}


.event-contents-t1 {
	width: fit-content;
	margin: 0 auto 20px;
	padding: 2px 20px 5px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	color: #fff;
	background: #004098;
	border-radius: 10px;
}
.event-contents-t2 {
	width: fit-content;
	margin: 0 auto 10px;
	padding: 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	color: #000;
}
.event-contents-t3 {
	width: fit-content;
	padding: 5px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	background: #004098;
	border-radius: 10px;
}
.event-contents-t4 {
	width: fit-content;
	margin: 15px auto 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	color: #000;
}
.event-contents-t4-1 {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 24px;
	font-weight: 800;
}
.event-contents-t4-2 {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 24px;
	font-weight: 700;
}
.event-contents-t5 {
	display: flex;
	width: 100%;
	margin: 15px 0;
	padding: 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13.5px;
	font-weight: 400;
	line-height: 1.4;
	color: #000;
}
.event-contents-t5-1 {
	display: inline-flex;
	width: 17px;
}
.event-contents-t5-2 {
	display: inline-flex;
	width: calc(100% - 17px);
}
.event-contents-t5b {
	display: flex;
	width: 100%;
	margin: 1px 0 0 0;
	padding: 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13.5px;
	font-weight: 400;
	line-height: 1.4;
	color: #000;
}
.event-contents-t5b-1 {
	display: inline-flex;
	width: 17px;
}
.event-contents-t5b-2 {
	display: inline-flex;
	width: calc(100% - 17px);
}
.event-contents-t6 {
	width: 100%;
	padding: 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13.5px;
	font-weight: 400;
	line-height: 1.4;
	color: #000;
}
.event-contents-t7 {
	width: 100%;
	padding: 15px 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
	color: #000;
}
.event-contents-t8 {
	width: 100%;
	padding: 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
	color: #000;
}
.event-contents-t9-1 {
	width: fit-content;
	margin: 40px auto 0;
	padding: 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 26px;
	font-weight: 800;
	line-height: 1.4;
	text-align: center;
	color: #004098;
}
.event-contents-t9-2 {
	width: fit-content;
	margin: 40px auto 0;
	padding: 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 26px;
	font-weight: 800;
	line-height: 1.4;
	text-align: center;
	color: #cf000e;
}
.event-contents-t9-1-s {
	font-size: 60%;
}
.event-contents-t10 {
	width: 100%;
	margin: 0;
	padding: 0 0 10px 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13.5px;
	font-weight: 400;
	line-height: 1.4;
	text-align: left;
	color: #000;
	border-bottom: 2px solid #b4afa7;
}
.event-contents-t10b {
	width: 100%;
	margin: 0 0 30px 0;
	padding: 0 0 10px 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13.5px;
	font-weight: 400;
	line-height: 1.4;
	text-align: left;
	color: #000;
	border-bottom: 2px solid #b4afa7;
}
.event-contents-t11 {
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	text-align: left;
	color: #000;
}


.event-contents-p1 {
	width: 150px;
	height: auto;
	margin: 20px auto;
}
.event-contents-p2 {
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: center;
	width: 100%;
	margin: 15px 0;
}
.event-contents-p2-1 {
	width: 200px;
	height: auto;
	margin: 0 5px;
}

.event-contents-day {
	display: flex;
	flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
	width: 100%;
	margin: 10px auto;
}
.event-contents-d1 {
	display: inline-flex;
	width: fit-content;
	margin: 0 10px;
	padding: 2px 10px 6px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.3;
	color: #fff;
	background: #004098;
}
.event-contents-d2 {
	display: inline-flex;
	width: fit-content;
	margin: 0 10px;
	padding: 2px 10px 6px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.3;
	color: #fff;
	background: #cf000e;
}
.event-contents-dd1 {
	display: inline-flex;
	width: fit-content;
	margin: 0 10px;
	padding: 2px 10px 6px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 32px;
	font-weight: 800;
	line-height: 1.3;
	color: #fff;
	background: #004098;
}
.event-contents-dd2 {
	display: inline-flex;
	width: fit-content;
	margin: 0 10px;
	padding: 2px 10px 6px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 32px;
	font-weight: 800;
	line-height: 1.3;
	color: #fff;
	background: #cf000e;
}



.event-contents-timetable {
	width: 100%;
	margin: 15px 0;
}
.event-contents-s1 {
	width: 100%;
	padding: 10px 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.3;
	text-align: center;
	color: #000;
	background: #efefef;
	border-top: 2px solid #b4afa7;
	border-bottom: 2px solid #b4afa7;
}
.event-contents-s2 {
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
	width: 100%;
	border-bottom: 2px solid #b4afa7;
}
.event-contents-s2-1 {
	width: 35%;
}
.event-contents-s2-1-1 {
	width: fit-content;
	margin: auto;
	padding: 2px 15px 4px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.3;
	text-align: center;
	color: #fff;
	background: #684a29;
}
.event-contents-s2-2 {
	width: 65%;
}
.event-contents-s2-2-1 {
	width: calc(100% - 15px);
	padding: 10px 0 10px 15px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
	text-align: left;
	border-bottom: 2px dashed #b4afa7;
}
.event-contents-s2-2-2 {
	width: calc(100% - 15px);
	padding: 10px 0 10px 15px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
	text-align: left;
}
.event-contents-s3 {
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
	width: 100%;
	border-bottom: 2px solid #b4afa7;
}
.event-contents-s3-2 {
	width: 90%;
}
.event-contents-s3-2-1 {
	width: calc(100% - 15px);
	padding: 10px 0 10px 15px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
	text-align: left;
	border-bottom: 2px dashed #b4afa7;
}
.event-contents-s3-2-2 {
	width: calc(100% - 15px);
	padding: 10px 0 10px 15px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
	text-align: left;
}
.event-contents-s3-2-1c {
	width: calc(100% - 15px);
	padding: 10px 0 10px 15px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
	border-bottom: 2px dashed #b4afa7;
}
.event-contents-s3-2-2c {
	width: calc(100% - 15px);
	padding: 10px 0 10px 15px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
}
.event-contents-s3-3 {
	width: 98%;
}
.event-contents-s3-3-2c {
	width: calc(100% - 15px);
	padding: 10px 0 10px 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
}
.event-contents-s3-3-2d {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
}


@media print, screen and (max-width: 1080px) {

	#contents-wrapper-2 {
		width: 90%;
	}


	.event-contents-s3-2 {
		width: 90%;
	}

	.event-contents-s3-3 {
		width: 98%;
	}

}
@media print, screen and (max-width: 980px) {

	.event-contents-block {
		display: block;
		width: 100%;
		margin: 0 0 20px 0;
		padding: 30px 15px;
		background: #fff;
		border-radius: 20px;
	}
	.event-contents-block:nth-child(odd) {
		margin-right: 0;
	}
	.event-contents-block:nth-child(even) {
		margin-left: 0;
	}

}
@media print, screen and (max-width: 768px) {

	#contents-wrapper-2 .program-contents-title {
		width: 100%;
		padding-bottom: 10px;
		font-size: 26px;
		font-family: "changeling-neo-stencil", sans-serif;
		font-weight: 700;
		font-style: normal;
		line-height: 1;
		text-align: center;
		color: #fff;
	}
	#contents-wrapper-2 .program-contents-title-jp {
		width: 100%;
		padding-bottom: 10px;
		font-size: 24px;
		font-weight: 700;
		font-style: normal;
		line-height: 1;
		text-align: center;
		color: #fff;
	}


	.event-contents-block {
		display: block;
		width: 100%;
		margin: 0 0 20px 0;
		padding: 20px 15px;
		background: #fff;
		border-radius: 20px;
	}

	.event-contents-t1 {
		width: fit-content;
		margin: 0 auto 20px;
		padding: 2px 20px 5px;
		font-size: 20px;
		font-weight: 700;
		line-height: 1.4;
	}
	.event-contents-t2 {
		width: fit-content;
		margin: 0 auto 10px;
		padding: 0;
		font-size: 22px;
		font-weight: 700;
		line-height: 1.4;
	}
	.event-contents-t3 {
		width: fit-content;
		padding: 5px;
		font-size: 17px;
		font-weight: 700;
		line-height: 1;
	}
	.event-contents-t4 {
		width: fit-content;
		margin: 15px auto 0;
		font-size: 16px;
		font-weight: 600;
		line-height: 1.4;
	}
	.event-contents-t4-1 {
		font-size: 22px;
	}
	.event-contents-t4-2 {
		font-size: 20px;
	}
	.event-contents-t5 {
		display: flex;
		width: 100%;
		margin: 15px 0;
		padding: 0;
		font-size: 13px;
		font-weight: 400;
		line-height: 1.4;
	}
	.event-contents-t5-1 {
		display: inline-flex;
		width: 17px;
	}
	.event-contents-t5-2 {
		display: inline-flex;
		width: calc(100% - 17px);
	}
	.event-contents-t6 {
		width: 100%;
		padding: 0;
		font-size: 13px;
		font-weight: 400;
		line-height: 1.4;
	}
	.event-contents-t7 {
		width: 100%;
		padding: 15px 0;
		font-size: 15px;
		font-weight: 400;
		line-height: 1.4;
		text-align: center;
	}
	.event-contents-t8 {
		width: 100%;
		padding: 0;
		font-size: 14px;
		font-weight: 400;
		line-height: 1.4;
		text-align: center;
	}
	.event-contents-t9-1 {
		width: 100%;
		margin: 30px auto 0;
		padding: 0;
		font-size: 19px;
		line-height: 1.3;
	}
	.event-contents-t9-2 {
		width: 100%;
		margin: 30px auto 0;
		padding: 0;
		font-size: 19px;
		line-height: 1.3;
	}
	.event-contents-t11 {
		width: 100%;
		font-size: 13.5px;
		font-weight: 400;
		line-height: 1.4;
	}


	.event-contents-p1 {
		width: 120px;
		height: auto;
		margin: 20px auto;
	}
	.event-contents-p2 {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-content: flex-start;
		justify-content: center;
		align-items: center;
		width: 100%;
		margin: 15px 0;
	}
	.event-contents-p2-1 {
		width: 48%;
		height: auto;
		margin: 0 1%;
	}


	.event-contents-day {
		display: flex;
		flex-wrap: nowrap;
		align-content: center;
		justify-content: center;
		align-items: center;
		width: 100%;
		margin: 10px auto;
	}
	.event-contents-d1 {
		display: inline-flex;
		width: fit-content;
		margin: 0 5px;
		padding: 2px 10px 6px;
		font-size: 16px;
		line-height: 1.3;
	}
	.event-contents-d2 {
		display: inline-flex;
		width: fit-content;
		margin: 0 5px;
		padding: 2px 10px 6px;
		font-size: 16px;
		line-height: 1.3;
	}
	.event-contents-dd1 {
		display: inline-flex;
		width: fit-content;
		margin: 0 10px;
		padding: 2px 10px 6px;
		font-size: 25px;
	}
	.event-contents-dd2 {
		display: inline-flex;
		width: fit-content;
		margin: 0 10px;
		padding: 2px 10px 6px;
		font-size: 25px;
	}


	.event-contents-timetable {
		width: 100%;
		margin: 15px 0;
	}
	.event-contents-s1 {
		width: 100%;
		padding: 8px 0;
		font-size: 17px;
		font-weight: 800;
		line-height: 1.3;
		text-align: center;
	}
	.event-contents-s2 {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-content: center;
		justify-content: center;
		align-items: center;
		width: 100%;
	}
	.event-contents-s2-1 {
		width: 90%;
	}
	.event-contents-s2-1-1 {
		width: fit-content;
		margin: 10px auto 0;
		padding: 2px 15px 4px;
		font-size: 17px;
		font-weight: 800;
		line-height: 1.3;
		text-align: center;
	}
	.event-contents-s2-2 {
		width: 90%;
	}
	.event-contents-s2-2-1 {
		width: calc(100% - 0px);
		padding: 8px 0 8px 0;
		font-size: 17px;
		font-weight: 600;
		line-height: 1.3;
		text-align: center;
	}
	.event-contents-s2-2-2 {
		width: calc(100% - 0px);
		padding: 8px 0 8px 0;
		font-size: 17px;
		font-weight: 600;
		line-height: 1.3;
		text-align: center;
	}
	.event-contents-s3 {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-content: center;
		justify-content: center;
		align-items: center;
		width: 100%;
	}
	.event-contents-s3-2 {
		width: 90%;
	}
	.event-contents-s3-2-1 {
		width: calc(100% - 0px);
		padding: 8px 0 8px 0;
		font-size: 17px;
		font-weight: 600;
		line-height: 1.3;
		text-align: center;
	}
	.event-contents-s3-2-2 {
		width: calc(100% - 0px);
		padding: 8px 0 8px 0;
		font-size: 17px;
		font-weight: 600;
		line-height: 1.3;
		text-align: center;
	}
	.event-contents-s3-2-1c {
		width: calc(100% - 0px);
		padding: 8px 0 8px 0;
		font-size: 17px;
		font-weight: 600;
		line-height: 1.3;
		text-align: center;
	}
	.event-contents-s3-2-2c {
		width: calc(100% - 0px);
		padding: 8px 0 8px 0;
		font-size: 17px;
		font-weight: 600;
		line-height: 1.3;
		text-align: center;
	}
	.event-contents-s3-3-2c {
		width: calc(100% - 0px);
		padding: 8px 0 8px 0;
		font-size: 17px;
		font-weight: 600;
		line-height: 1.3;
		text-align: center;
	}
	.event-contents-s3-3-2d {
		font-size: 15px;
		font-weight: 600;
		line-height: 1.3;
	}

}

/* BLOCK 2 (STAGE) */

.program-stage-block {
	z-index: 9;
	position: relative;
	width: 96%;
	height: auto;
	margin: 30px auto;
	padding: 0;
	display: flex; 
	flex-wrap: wrap;
}
.program-stage-block li {
	display: inline-block; 
	width: calc((100% - 41px) / 3);
	height: auto; 
	margin: 0 20px 0 0;
	padding: 0; 
	overflow: hidden;
}
.program-stage-block li:nth-child(3n) {
	margin: 0 0 0 0; 
}

.stage-guest-2m {
	z-index: 9;
	position: relative;
	width: 90%;
	height: auto;
	margin: 10px auto 5px;
	padding: 0;
	display: flex; 
	flex-wrap: wrap;
}
.stage-guest-2m li {
	display: inline-block; 
	width: calc((100% - 11px) / 2);
	height: auto; 
	margin: 0 10px 0 0;
	padding: 0; 
	overflow: hidden;
}
.stage-guest-2m li:nth-child(2n) {
	margin: 0 0 0 0; 
}

.program-stage-p1 {
	width: 100%;
	height: auto;
	margin: auto;
}
.program-stage-p2 {
	width: 90%;
	height: auto;
	margin: auto;
}
.program-stage-p3 {
	width: 80%;
	height: auto;
	margin: auto;
}
.program-stage-p4 {
	width: 70%;
	height: auto;
	margin: auto;
}
.program-stage-p5 {
	width: 60%;
	height: auto;
	margin: auto;
}
.program-stage-p6 {
	width: 50%;
	height: auto;
	margin: auto;
}


.program-stage-t1 {
	width: fit-content;
	margin: 20px auto 0px;
	padding: 7px 15px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: #000;
	background: #fff;
	border-radius: 20px;
}
.program-stage-t2 {
	width: fit-content;
	margin: 10px auto;
	padding: 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 30px;
	font-weight: 800;
	line-height: 1.4;
	text-align: center;
	color: #fff;
}
.program-stage-t3 {
	width: fit-content;
	margin: 10px auto 5px;
	padding: 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 26px;
	font-weight: 900;
	line-height: 1.4;
	text-align: center;
	color: #fff100;
}
.program-stage-t4 {
	width: fit-content;
	margin: 5px auto;
	padding: 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
	color: #fff;
}


.stage-timetable-wrap {
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
	width: 100%;
	margin: 60px auto 10px;
}


@media print, screen and (max-width: 768px) {

	.program-stage-block li {
		display: inline-block; 
		width: 100%;
		height: auto; 
		margin: 0 0 30px 0;
		padding: 0; 
		overflow: hidden;
	}
	.program-stage-block li:nth-child(3n) {
		margin: 0 0 0 0; 
	}


	.program-stage-t1 {
		width: fit-content;
		margin: 15px auto 0px;
		padding: 5px 15px;
		font-size: 14px;
	}
	.program-stage-t2 {
		width: fit-content;
		margin: 10px auto;
		padding: 0;
		font-size: 24px;
	}
	.program-stage-t3 {
		width: fit-content;
		margin: 10px auto 5px;
		padding: 0;
		font-size: 20px;
	}
	.program-stage-t4 {
		width: fit-content;
		margin: 5px auto;
		padding: 0;
		font-size: 14px;
	}

}



/* BLOCK 2 (Race Track) */

.racetrack-contents-wrap {
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
	width: 100%;
	margin: 30px auto 10px;
}




/* BLOCK 2 (BOOTH) */

.booth-contents-wrap {
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
	max-width: 940px;
	margin: 30px auto;
}
.booth-contents-block {
	display: inline-flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
	width: 49%;
}
.booth-contents-block:nth-child(1) {
	margin-right: 1%;
}
.booth-contents-block:nth-child(2) {
	margin-left: 1%;
}

.booth-title {
	width: 100%;
	padding-bottom: 10px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 24px;
	font-weight: 800;
	line-height: 1;
	text-align: center;
	color: #fff;
}

table.booth-exhibitor-list-1 {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #fff100;
}
table.booth-exhibitor-list-1 th {
	white-space: nowrap;
	padding: 10px 5px;
	vertical-align: top;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.2;
	color: #000;
	/*
	background: rgba(255,241,0, 0.4);
	border: 1px solid #fff100;
	*/
	background: rgba(255,255,255, 1);
	border: 1px solid #004098;
}
table.booth-exhibitor-list-1 td {
	padding: 7px 5px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	color: #000;
	/*border: 1px solid #fff100;*/
	background: rgba(255,255,255, 0.8);
	/*background: #eee7db;*/
	border: 1px solid #004098;
}
table.booth-exhibitor-list-1 .category {
	vertical-align: middle;
	text-align: center;
	white-space: nowrap;
}
table.booth-exhibitor-list-1 .exhibitor {
	vertical-align: top;
	/*white-space: nowrap;*/
}

@media print, screen and (max-width: 768px) {

	.booth-contents-block {
		display: inline-flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-content: flex-start;
		justify-content: flex-start;
		align-items: flex-start;
		width: 100%;
	}
	.booth-contents-block:nth-child(1) {
		margin-right: 0%;
		margin-bottom: 30px;
	}
	.booth-contents-block:nth-child(2) {
		margin-left: 0%;
	}

	.booth-title {
		width: 100%;
		padding-bottom: 10px;
		font-size: 24px;
	}


	table.booth-exhibitor-list-1 th {
		padding: 8px 5px;
		vertical-align: top;
		font-size: 15px;
	}
	table.booth-exhibitor-list-1 td {
		padding: 5px 5px;
		font-size: 14px;
	}


}



/* BLOCK 2 (Race Track) */

.others-contents-wrap {
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
	width: 100%;
	margin: 30px auto 10px;
}




/* BLOCK 3 (地図) */

#contents-wrapper-3 {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: row;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 0;
	background-color: #eee7db;
}

.contents-3-1 {
	position: relative;
	z-index: 2;
	display: inline-flex;
	width: 50%;
	height: 610px;
	margin: auto;
	padding: 0;
}
.contents-3-1 iframe {
	position: absolute;
	width: 100%;
	height: 100%;
}

.contents-3-2 {
	display: inline-flex;
	flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
	width: 50%;
	height: auto;
	margin: auto;
}
.contents-3-2-0 {
	width: 70%;
	height: auto;
}
.contents-3-2-0-1 {
	width: 100%;
    padding-bottom: 10px;
    font-size: 68px;
    font-family: "changeling-neo-stencil", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    text-align: left;
    color: #000;
}
.contents-3-2-0-1-2 {
	font-size: 120px;
	color: #004098;
}
.contents-3-2-0-1-3 {
	font-size: 24px;
	color: #004098;
}
.contents-3-2-0-1-4 {
	font-size: 120px;
	color: #cf000e;
}
.contents-3-2-0-1-5 {
	font-size: 24px;
	color: #cf000e;
}

.contents-3-2-1 {
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
	width: 70%;
	height: auto;
	margin: 15px 0;
}
.contents-3-2-1-1 {
	display: inline-flex;
	flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100px;
    margin: 0 10px;
    padding: 2px 10px 6px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
	text-align: center;
    color: #fff;
    background: #000;
}
.contents-3-2-1-2 {
	display: inline-flex;
	flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
	width: calc(100% - 140px);
	margin: 0 0 0 10px;
	padding: 0;
	font-family: "Noto Sans JP", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    text-align: left;
	color: #000;
}
.contents-3-2-1-3 {
	display: block;
	width: 100%;
	padding: 10px 0 0 0;
	font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
	color: #000;
}

.contents-3-2-2 {
	width: 70%;
	padding: 20px 0;
}
.contents-3-2-2-1 {
	display: inline-flex;
    width: fit-content;
    margin: 0 10px;
    padding: 2px 10px 6px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    background: #000;
}
.contents-3-2-2-2 {
	width: 96%;
	margin: 10px 0 10px auto;
	padding: 0 0 5px 0;
	font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
	color: #000;
	border-bottom: 1px solid #000;
}
.contents-3-2-2-3 {
	width: 96%;
	margin: 0 0 0 auto;
    padding: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    color: #000;
}
.contents-3-2-2-3 a {
	color: #cf000e;
}



@media print, screen and (max-width: 1520px) {

	.contents-3-2-0 {
		width: 80%;
		height: auto;
	}

	.contents-3-2-1 {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-content: flex-start;
		justify-content: flex-start;
		align-items: flex-start;
		width: 80%;
		height: auto;
		margin: 15px 0;
	}

	.contents-3-2-2 {
		width: 80%;
		padding: 20px 0;
	}

}
@media print, screen and (max-width: 1320px) {

	.contents-3-2-0 {
		width: 90%;
		height: auto;
	}

	.contents-3-2-1 {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-content: flex-start;
		justify-content: flex-start;
		align-items: flex-start;
		width: 90%;
		height: auto;
		margin: 15px 0;
	}

	.contents-3-2-2 {
		width: 90%;
		padding: 20px 0;
	}

}
@media print, screen and (max-width: 1180px) {

	.contents-3-2-0-1 {
		width: 100%;
		padding-bottom: 10px;
		font-size: 54px;
	}
	.contents-3-2-0-1-2 {
		font-size: 100px;
		color: #004098;
	}
	.contents-3-2-0-1-3 {
		font-size: 22px;
		color: #004098;
	}
	.contents-3-2-0-1-4 {
		font-size: 100px;
		color: #cf000e;
	}
	.contents-3-2-0-1-5 {
		font-size: 22px;
		color: #cf000e;
	}

	.contents-3-2-1-1 {
		width: 100px;
		margin: 0 10px;
		padding: 2px 10px 6px;
		font-size: 22px;
	}
	.contents-3-2-1-2 {
		width: calc(100% - 140px);
		margin: 0 0 0 10px;
		font-size: 30px;
	}
	.contents-3-2-1-3 {
		font-size: 16px;
	}

	.contents-3-2-2-1 {
		font-size: 22px;
	}
	.contents-3-2-2-2 {
		width: 96%;
		font-size: 16px;
	}
	.contents-3-2-2-3 {
		width: 96%;
		font-size: 14px;
	}

}
@media print, screen and (max-width: 980px) {

	.contents-3-1 {
		position: relative;
		z-index: 2;
		display: inline-flex;
		width: 50%;
		height: 650px;
		margin: auto;
		padding: 0;
	}

	.contents-3-2-0-1 {
		width: 100%;
		padding-bottom: 10px;
		font-size: 44px;
	}
	.contents-3-2-0-1-2 {
		font-size: 90px;
		color: #004098;
	}
	.contents-3-2-0-1-3 {
		font-size: 20px;
		color: #004098;
	}
	.contents-3-2-0-1-4 {
		font-size: 90px;
		color: #cf000e;
	}
	.contents-3-2-0-1-5 {
		font-size: 20px;
		color: #cf000e;
	}

	.contents-3-2-1 {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-content: flex-start;
		justify-content: flex-start;
		align-items: flex-start;
		width: 90%;
		height: auto;
		margin: 10px 0;
	}
	.contents-3-2-1-1 {
		width: fit-content;
		margin: 0 10px;
		padding: 2px 10px 6px;
		font-size: 20px;
	}
	.contents-3-2-1-2 {
		width: 100%;
		margin: 10px 0 0 10px;
		font-size: 26px;
	}
	.contents-3-2-1-3 {
		width: 100%;
		padding: 5px 0 0 0;
		font-size: 15px;
	}

	.contents-3-2-2-1 {
		font-size: 20px;
	}
	.contents-3-2-2-2 {
		width: 96%;
		font-size: 16px;
	}
	.contents-3-2-2-3 {
		width: 96%;
		font-size: 14px;
	}

}
@media print, screen and (max-width: 768px) {

	#contents-wrapper-3 {
		position: relative;
		z-index: 1;
		display: flex;
		flex-wrap: wrap;
		align-content: center;
		justify-content: center;
		align-items: center;
		flex-direction: row;
		width: 100%;
		height: auto;
		margin: 0 auto;
		padding: 0;
		background-color: #eee7db;
	}

	.contents-3-1 {
		position: relative;
		z-index: 2;
		display: inline-flex;
		width: 100%;
		height: 400px;
		margin: auto;
		padding: 0;
	}
	.contents-3-1 iframe {
		position: absolute;
		width: 100%;
		height: 100%;
	}

	.contents-3-2 {
		display: inline-flex;
		flex-wrap: wrap;
		flex-direction: row;
		align-content: center;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: auto;
		margin: auto;
	}
	.contents-3-2-0-1 {
		width: 100%;
		padding-bottom: 10px;
		font-size: 38px;
		text-align: center;
	}
	.contents-3-2-0-1-2 {
		font-size: 68px;
		color: #004098;
	}
	.contents-3-2-0-1-3 {
		font-size: 18px;
		color: #004098;
	}
	.contents-3-2-0-1-4 {
		font-size: 68px;
		color: #cf000e;
	}
	.contents-3-2-0-1-5 {
		font-size: 18px;
		color: #cf000e;
	}

	.contents-3-2-1 {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-content: flex-start;
		justify-content: flex-start;
		align-items: flex-start;
		width: 90%;
		height: auto;
		margin: 10px 0;
	}
	.contents-3-2-1-1 {
		width: fit-content;
		margin: 0 10px;
		padding: 2px 10px 6px;
		font-size: 18px;
	}
	.contents-3-2-1-2 {
		width: 100%;
		margin: 10px 0 0 10px;
		font-size: 26px;
	}
	.contents-3-2-1-3 {
		width: 100%;
		padding: 5px 0 0 0;
		font-size: 15px;
	}

	.contents-3-2-2-1 {
		font-size: 18px;
	}
	.contents-3-2-2-2 {
		width: 98%;
		font-size: 16px;
	}
	.contents-3-2-2-3 {
		width: 98%;
		font-size: 14px;
	}


}


/* BLOCK 4 (チラシ) */

.flyer-contents-block {
	display: block;
	width: 70%;
	margin: 20px auto;
	padding: 0;
}

@media print, screen and (max-width: 768px) {

	.flyer-contents-block {
		width: 85%;
		margin: 15px auto;
		padding: 0;
	}

}





/* BLOCK 11 (事業者向け) */

#contents-wrapper-11 {
	z-index: 1;
	position: relative;
	max-width: 980px;
	width: 100%;
	height: auto;
	margin: 0 auto 60px auto;
	padding: 40px 0 60px 0;
}

.exhibitor-info-block {
	width: 100%;
	margin-top: 10px;
	border-top: 1px solid #b4afa7;
}
.exhibitor-info-wrap {
	display: flex;
	flex-wrap: nowrap;
    flex-direction: row;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
	width: calc(100% - 20px);
	padding: 20px 10px;
	background-color: rgba(255,255,255, 0.6);
	border-bottom: 1px solid #b4afa7;
}
.exhibitor-info-title {
	display: inline-flex;
	/*width: 50%;*/
	width: 100%;
	font-weight: 700;
}
.exhibitor-info-pdf {
	display: inline-flex;
	align-content: center;
    align-items: center;
	justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
	width: 25%;
}
.exhibitor-info-word {
	display: inline-flex;
	align-content: center;
    align-items: center;
	justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
	width: 25%;
}

@media print, screen and (max-width: 1080px) {

	#contents-wrapper-11 {
		width: 90%;
	}

}
@media print, screen and (max-width: 768px) {

	.exhibitor-info-wrap {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		align-content: flex-start;
		align-items: flex-start;
		justify-content: flex-start;
		width: calc(100% - 20px);
		padding: 20px 10px;
		background-color: rgba(255,255,255, 0.6);
		border-bottom: 1px solid #b4afa7;
	}
	.exhibitor-info-title {
		display: inline-flex;
		flex-wrap: wrap;
        flex-direction: row;
        align-content: flex-start;
        justify-content: flex-start;
        align-items: flex-start;
		width: 100%;
		margin-bottom: 10px;
		font-weight: 700;
	}
	.exhibitor-info-pdf {
		display: inline-flex;
		align-content: center;
		align-items: center;
		justify-content: center;
		flex-wrap: nowrap;
		flex-direction: row;
		width: 50%;
		font-size: 14px;
	}
	.exhibitor-info-word {
		display: inline-flex;
		align-content: center;
		align-items: center;
		justify-content: center;
		flex-wrap: nowrap;
		flex-direction: row;
		width: 50%;
		font-size: 14px;
	}

}




