@charset "UTF-8";



/***　共通タグ設定　***/
html{
	scroll-behavior: smooth;
}
body {
	margin: 0;
	padding: 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	line-height: 1.8;
	min-width: 1000px;
}
p{
	margin: 0;
	padding: 0;
}
img{
	vertical-align: bottom;
}
a{
	text-decoration: none;
}
a[name]{
	scroll-margin-top: 86px;
}
div{
	box-sizing: border-box;
}
li{
	list-style-type: none;
}

.width_1000{
	width: 1000px;
	margin: 0 auto;
}
.strong_bold{
	font-size: 23px;
	font-weight: 700;
	line-height: 1;
}
.bold{
	font-weight: 700;
}
.attention_text{
	font-size: 23px;
	font-weight: 700;
	color: #DF514E;
	line-height: 1;
}
.notice_text{
	font-size: 12px;
}
.text_center{
	text-align: center;
}
.flex_center{
	display: flex;
	justify-content: center;
	align-items: center;
}


.content_title{
	height: 36px;
	font-size: 23px;
	line-height: 1;
	font-weight: 700;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 2px;
	border-radius: 18px;
}

.bk_color_blue{
	background-color: #1E6293;
}
.bk_color_orange{
	background-color: #DF514E;
}
.bk_color_gray{
	background-color: #666666;
}
.color_blue{
	color: #1E6293;
}
.color_orange{
	color: #DF514E;
}
.color_white{
	color: white;
}

.pc_hidden{
	display: none;
}
.phone_hidden{
	display: block;
}


/*** header ***/
#top_header{
	display: flex;
	justify-content: space-around;
	background-color: black;
	position: sticky;
	top: 0;
	z-index: 99;
}
.header_logo{
	margin-right: 30px;
	
	img{
		width: 323px;
		height: 56px;
		margin: 12px;
	}
}

nav#header_menu_block{
	display: flex;
	justify-content: space-between;
	align-items:stretch;
}

#header_menu_block div{
	width: 120px;
	a{
		display: flex;
		justify-content: center;
		align-items:center;
		width: 100%;
		height: 100%;
		color: white;
	}
	&.header_menu_item:hover label a, a:hover{
		background-color: #DF514E;
		transition-duration: 0.2s;
	}
}
.header_menu_item{
	position: relative;
}
div.header_submenu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 280px !important;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	z-index: 10;
	
	a{
		background-color: gray;
		justify-content: flex-start !important;
		padding: 8px;
		padding-left: 18px;
		border-bottom: solid 1px white;
	}
	a:last-child{
		border-bottom: none;
	}
}
div.right_submenu{
	left: auto;
	right: 0;
}
.header_menu_item:hover .header_submenu {
	max-height: 600px;
}

a.link_out{
	color: #666666 !important;
	pointer-events: none;
}


/***　アコーディオンメニュー ***/
.menu_sub_toggle {
	display: none;
}
.navToggle{
	display: none;
}
.material-symbols-outlined{
	display: none !important;
}




/*** common_area ***/
#common_area{
	position: relative;
	margin-top: 32px;
	padding: 32px 0;
	background-color: #EEF3F4;
	background-image: url("../img/common_area_back.png");
	background-repeat: no-repeat;
	background-position: calc(50% + 460px) bottom;

}

.secretariat_block{
	margin-top: 18px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	
	div:first-child{
		margin-right: 32px;
	}
}
.block_center{
	width: 45%;
	margin: 18px auto 0 auto;
}
.secretariat_button{
	margin: 0 auto;
}
.secretariat_button a{
	display: inline-block;
	padding: 8px 48px;
	margin: 0 32px;
	color: white;
	background-color: #DF514E;
	
	&:hover{
		opacity: 0.7;
	}
}

.mail_block{
	margin-top: 16px;
	margin-bottom: 32px;
	border: solid 1px #DF514E;
	padding: 16px;
}
.mail_title{
	font-size: 23px;
	font-weight: 700;
}

.banner_table{
	margin-top: 18px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	grid-row-gap: 8px;
	margin-bottom: 32px;
	
	a:hover{
		opacity: 0.7;
	}
}
.site_list{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 18px;
	
	div{
		width: 32%;
		margin-right: 1%;
	}
	
	a,a:visited{
		color: #333333;
	}
	
	a:hover{
		text-decoration: underline;
	}
}

.common_background{
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0;
}

.download_form_button{
	position: absolute;
	right: 8px;
	bottom: -48px;

	a{
		padding: 12px 36px;
		font-size: 20px;
		line-height: 1;
		text-align: center;
		color: white;
		background-color: #51B642;
		border-radius: 18px;
	}
	a:hover{
		filter: brightness(120%);
	}
}


.common_contact_title{
	color: rgb(1,138,156);
	background-color: rgb(253,211,91);
}




/*** footer ***/
div#footer{
	font-size: 12px;
	background-color: black;
	color: white;
	padding: 24px;
	
	div{
		width: 1000px;
		margin: 0 auto;
		text-align: right;
	}
	
	a,a:visited{
		color: white !important;
	}
}


#to_top{
	position: fixed;
	right: 45px;
	bottom: 95px;
	
	&:hover{
		opacity: 0.7;
	}
}





/*** index ***/

.top_img{
	width: 100%;
	
	img{
		width: 100%;
	}
}
.top_img_under{
	background-color: black;
	margin: 0;
}

.eary_discount{
	width: 340px;
	height: 100px;
	margin-left: 24px;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	color: white;
	background-color: #D6006F;
	
	&:hover{
		filter: brightness(120%);
	}
}
.eary_discount a{
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;

}
.download_document{
	width: 340px;
	height: 100px;
	margin-left: 24px;

	a{
		width: 100%;
		height: 100%;
		font-size: 28px;
		font-weight: 700;
		line-height: 1.2;
		text-align: center;
		color: white;
		background-color: #51B642;
	}
	a:hover{
		filter: brightness(120%);
	}
}
/*
.news_line{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 32px;
}

.news_line_title{
	background-color: #1E6293;
	color: white;
	padding: 16px 56px;
	border-bottom: solid 1px #1E6293;
	white-space: nowrap;
}

.news_line_content{
	padding: 16px;
	border-bottom: solid 1px #1E6293;
	width: 100%;
}
*/

.news_title{
	height: 36px;
	font-size: 23px;
	font-weight: 700;
	line-height: 1.56;
	color: white;
	text-align: center;
	width: 240px;
	background-color: #1E6293;
}

.news_area{
	background-color: #F1F1F2;
	border: solid 1px #9FA0A0;
	margin-top: 18px;
	margin-bottom: 32px;
	padding: 9px 16px;
	
	ul{
		margin: 0;
		padding: 0;
	}
	li a{
		display: flex;
		justify-content: flex-start;
		align-items: center;
		color: black;
	}
	li a:hover{
		text-decoration: underline;
	}
	div:first-child{
		padding-right: 18px;
	}
}


/*** 個別ページ ***/
.margin_top_32{
	margin-top: 32px;
}
.content_block{
	margin-top: 18px;
}

.overview_table li{
	display: flex;
	justify-content: flex-start;
	
	div:first-child{
		display: flex;
		align-items: flex-start;
		margin-right: 32px;
		width: 96px;
		font-weight: 700;
	}
}

.banner_link{
	width: 850px;
	display: block;
	margin: 0 auto;
	
	img{
		max-width: 100%;
	}
}


.img_description{
	font-size: 12px;
	text-align: center;
	margin-top: 16px;
}




.matching_block{
	display: flex;
	justify-content: space-between;
	align-items: stretch;

	img{
		margin-right: 18px;
	}
}
.system_term_block{
	text-align: center;
	padding: 16px;
	margin-top: 18px;
	border: solid 1px #DF514E;
}

.content_sub_title{
	/*color: #1E6293;
	border: solid 1px #1E6293;*/
	color: white;
	background-color: #2197BC;
}

.entry_button_block{
	display: flex;
	justify-content: space-around;
	align-items: center;
	
}
.entry_button{
	background-color: #DF514E;
	width: 288px;
	height: 61px;
	border-radius: 30.5px;

	&:hover{
		opacity: 0.7;
	}
	
	a{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		color: white;
		font-size: 23px;
		font-weight: 700;
		line-height: 100%;
	}
}
ol.number_list {
	margin: 0;
	margin-top: 23px;
	margin-left: -1em;
	
	li{
		list-style: inherit;
	}
}
.blue_text{
	color: #1E6293;
}

.plan_block{
	position: relative;
}
.plan div{
	margin-bottom: 16px;
	margin-left: -1em;
}
.eg_discount_block{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border: solid 2px #DF514E;
	margin-bottom: 18px;
	
	div:first-child{
		padding: 4px 12px;
		margin-right: 18px;
		font-size: 23px;
		font-weight: 700;
		line-height: 1.2;
	}
	div{
		padding-top: 3px;
	}
}
.plan_illust_01{
	position: absolute;
	top: 50px;
	right: 60px;
}
.plan_illust_02{
	position: absolute;
	bottom: 0;
	right: 160px;
}

.eg_request_block{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	
	>div{
		width: 48%;
	}
}
.cancel_table{
	border: solid 1px black;
	border-spacing: 0;
	border-collapse: collapse;
	margin: 8px auto;
	td{
		width: 40%;
		border: solid 1px black;
		text-align: center;
		padding: 12px;
	}
}

.result_table{
	border: solid 1px black;
	border-spacing: 0;
	border-collapse: collapse;

	th{
		color: white;
		background-color: #838689;
		border: solid 1px black;
	}
	td{
		border: solid 1px black;
		text-align: center;
		padding: 19px 0;
	}
}


.questionnaire_block{
	display: flex;
	justify-content: space-around;
	align-items: stretch;
	flex-wrap: wrap;
	border: solid 1px #1E6293;
	padding: 32px;
	
	.questionnaire_title{
		width: 50%;
		font-size: 23px;
		font-weight: 700;
		line-height: 1;
		color: #1E6293;
		text-align: center;
		margin-top: 48px;
	}
	.questionnaire_title:first-child,.questionnaire_title:nth-child(2){
		margin-top: 0;
	}
	img{		margin-top: 18px;
	}
	.dummy{
		content: "";
		width: 50%;
	}
	
}

.voice_block{
	position: relative;
	width: 45%;
	padding: 16px;
	margin-top: 38px;
	
	img{
		position: absolute;
		bottom: 0;
		right: -12px;
	}
}
.exhibitor{
	background-color: #CBD1E1;
	
	span{
		color: #1E6293;
	}
}
.visitors{
	background-color: #F6CFC4;

	span{
		color: #DF514E;
	}
}
.joint_exhibitor{
	text-align: right;
}

.exhibitor_prototyping{
	color: #008B9C;
	background-color: #FDD35C;
	font-weight: 700;
	text-align: center;
	margin-top: 14px;
	padding: 4px 0;
	line-height: 1;
}

.exhibitor_prototyping_list{
	column-count: 3;
	list-style-position: inside;
	list-style: none;
	padding: 0;
	margin: 0;
	
	li{
		margin-bottom: 8px;
		padding-left: 12px;
	}
	li:nth-child(odd){
		background-color: #FEF6DE;
	}
}


.exhibitor_3d{
	color: white;
	background-color: #DF514E;
	font-weight: 700;
	text-align: center;
	margin-top: 14px;
	padding: 4px 0;
	line-height: 1;
}

.exhibitor_3d_list{
	column-count: 3;
	list-style-position: inside;
	list-style: none;
	padding: 0;
	margin: 0;

	li{
		margin-bottom: 8px;
		padding-left: 12px;
		background-color: #FFE8DD;
	}
	li:nth-child(odd){
	}
}

.exhibitor_minute{
	color: #FDD35C;
	background-color: #008B9C;
	font-weight: 700;
	text-align: center;
	margin-top: 14px;
	padding: 4px 0;
	line-height: 1;
}

.exhibitor_minute_list{
	column-count: 3;
	list-style-position: inside;
	list-style: none;
	padding: 0;
	margin: 0;

	li{
		margin-bottom: 8px;
		padding-left: 12px;
	}
	li:nth-child(odd){
		background-color: #E5F3F5;
	}
}

.download_document_block{
	display: flex;
	justify-content: space-between;
}

.download_button{
	background-color: #DF514E;
	width: 288px;
	height: 61px;
	border-radius: 30.5px;

		display: flex;
		justify-content: center;
		align-items: center;
		color: white;
		font-size: 23px;
		font-weight: 700;
		line-height: 100%;
	
	&:hover{
		opacity: 0.7;
	}
}

.access_root{
	margin-top: 12px;
	img{
		margin: 8px 0;
	}
}
.map{
	width: 1000px;
	height: 450px;
}












