@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-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);
}


@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;
		text-align: center;
		color: #fff;
		background: #6f5435;
	}
	.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: 180px;
		margin: 0 2%;
		color: #cf000e;
		background: #fff;
		border-radius: 30px;
	}
	.topics-index-title {
		display: inline-flex;
		width: 100%;
		margin-top: 5px;
	}


}



/* 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-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;
}


@media print, screen and (max-width: 1080px) {

	#contents-wrapper-2 {
		width: 90%;
	}

}
@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;
	}

}



/* 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: 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: 50%;
	height: auto;
	margin: auto;
}
.contents-3-2-1 {
	width: 70%;
	height: auto;
}



@media print, screen and (max-width: 1080px) {

}
@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-1 {
		width: 70%;
		height: auto;
		padding: 30px 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%;
	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;
		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;
	}

}




