@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
/**********************************/
/* 骨組み（全体背景）****************/
/**********************************/
body{
	font-family: 'Noto Sans JP', sans-serif;
	color:#002059;
	text-align: center;

	background-image: url(../img/bg_section.png);
	background-position: center center;
	background-repeat: repeat;
	background-attachment: fixed;
	background-size: cover;
}
@media screen and (max-width: 767px) {
	body{
		background-image: url(../img/bg_section_sp.png);
		width: 100%;
	}
}
/**********************************/
/* 基礎部分 ************************/
/**********************************/
.sec_main{
	background-image: url(../img/bg_section.png);
	padding-bottom:100px;

	background-size:auto;
	background-repeat: repeat;
	background-position: center center;
	margin-top:0;

}
@media screen and (max-width: 767px) {
	.sec_main{
		margin-top:0;
		padding: 0;
		width: 100%;
	}
}
/**********************************/
/* ヘッダー ***********************/
/**********************************/
header {
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	padding: 10px 40px;
	box-sizing: border-box;
	background: #007dc5; 
/*	background-color: transparent;*/
}
header .inner {
	color: #ffffff;
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
}
/*
.logo {
	position: relative;
	margin: 0;
	padding: 0;
	font-size: 200%;
	font-weight: bold;
	text-align: left;
	padding: 2%;
}
*/
/* header-navi */
/*
header .navi {
	margin: 0 0 0 auto;
	padding: 0;
	font-size: 14px;
	font-weight: bold;
	display: flex;
	list-style: none;
}
header .navi li {
	margin: 5px 0 5px 40px;
}
header .navi li:first-child {
	margin-left: 0;
}
header .navi li a {
	display: block;
	box-sizing: border-box;
	text-decoration: none;
	color: #333;
}
header .navi li a:hover {
	text-decoration: underline;
}
*/
/* add css  */

#header.scroll {
	position: fixed;
/*	background-color: transparent;*/
	background: rgba(0, 125, 197,0.8);
	animation-name: anime;
	animation-duration: 0.3s;
	border-bottom: 5px solid #ffffff;
}
@keyframes anime {
	0% {
	  opacity: 0;
	}
	100% {
	  opacity: 1;
	}
}
@media screen and (max-width: 767px) {
	header {
		padding: 0;
	}
	header .inner img {
		max-width: 50%;
		height: auto;
	}
	header .inner .logo {
		font-size: 100%;
	}
}

/* ハンバーガー ***********************/
.logo_gogo {
	display:block;
	margin:0;
	font-size: 140%;
	font-weight: bold;
	text-align: left;
	width: 300px;
}
nav{
	width: 100%;
	height: 70px;
	position: relative;
	background-color: transparent;
}
.drawer{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	position: relative;
	height: 70px;
	font-size: 90%;
	padding: 0;
}

/*ナビゲーション部分*/
.menu ul li {
	margin: 5px 0 5px 40px;
}
.menu ul li a {
    display:block;
    font-weight:bold;
    padding: 10px;
    border-bottom: 1px dotted #CCC;
	color:#ffffff;
	text-decoration:none;
}
.menu ul li a:hover {
	background-color:rgba(0,0,0,0.5);
	color:#CCC;
	text-decoration : underline;	
}
.menu{
	opacity: 1;
	z-index: 999;
	position: relative;
	text-align:center;
	/* background-color:rgba(255,255,255,0.5);*/
	background-color:#005BAC;
	transition: .5s ease;/*滑らかに表示*/
		-webkit-transform: translateX(-105%);
	transform: translateX(-105%);/*左に隠しておく*/
}

/*OPEN時の動き*/
.menu.open {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);/*中身を表示（右へスライド）*/
}
   
/*トグルボタンのスタイルを指定*/
.Toggle {
	display: block;
	position: fixed;    /* bodyに対しての絶対位置指定 */
	width: 42px;
	height: 42px;
	cursor: pointer;
	z-index: 3;
	right:15px;
}
.Toggle span {
	display: block;
	position: absolute;
	width: 50px;
	border-bottom: solid 4px #ffffff;
	-webkit-transition: .35s ease-in-out; /*変化の速度を指定*/
	-moz-transition: .35s ease-in-out;    /*変化の速度を指定*/
	transition: .35s ease-in-out;     /*変化の速度を指定*/

}
.Toggle span:nth-child(1) {
	top:5px;
}
.Toggle span:nth-child(2) {
	top: 18px;
}
.Toggle span:nth-child(3) {
	top: 32px;
}
.Toggle.active span:nth-child(1) {
	top: 18px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
	top: 18px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}
   
@media screen and (min-width: 767px) {
	header::after{
		display:none;
	} 
   nav{
		display: flex;
		height: 70px;
		flex-direction: row;
	}
	.drawer{
		flex-direction: row;
	}
	.logo_gogo{
		font-size: 200%;
		width: 700px;
   }
   .Toggle{
		display: none;
	}
	.menu{
		z-index: 999;
		width: 100%;
		background-color: transparent;
		margin-top:0;
		-webkit-transform: translateX(0);
		transform: translateX(0);
   }
   .menu ul{
		height: 70px;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		align-items: center;
   }
   .menu ul li a{
		padding: 0 1em;
		border-bottom: none;
   }
   .menu ul li a:hover
   {
		background-color:transparent;
   }
}

/**********************************/
/* フッター ***********************/
/**********************************/
footer{
/*	border-top: 20px solid #005BAC;*/
	background:#01bdf2;
	color:#ffffff;
}
.footer_inner{
	padding:0 0 50px 0 ;
	position:relative;
	background: #01bdf2;
}
.footer_inner img:hover{
	opacity: 0.5 ;
}
.footer_pref{
	padding: 50px 0;
	background:#01bdf2;
}
.footer_shusai{
	font-size:130%;
	font-weight: 800;
}
.footer_jimu{
	font-size:110%;
}
.footer_copy{
	font-size:110%;
	margin-top:60px;
}
.footer_top{
	content: '';
	display: block;
	position: absolute;
	bottom: 30px;
	right: 30px;
}

@media screen and (max-width: 767px) {
	.footer_inner{
		padding:0 0 130px 0 ;
		position:relative;
	}
		.footer_jimu{
		font-size:80%;
	}
}

/**********************************/
/* 文字装飾                        */
/**********************************/
.txstyle_big{
	font-size: 300%;
}
.txstyle_large{
	font-size: 200%;
}
.txstyle_middle{
	font-size: 150%;
}
.txstyle_small{
	font-size: 80%;
}
.txstyle_bold{
	font-weight: bold;
}
.txstyle_circle{
	position: relative;
	display: inline-block;
	width: 35px;
	height: 35px;
	background: #002059;
	border-radius: 50%;
}
.txstyle_circle span {
	position: absolute;
	display: inline-block;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	color:#ffffff;
	font-size: 150%;
	font-weight: bold;
	width :35px;
	text-align:center;
}
.txstyle_pink{
	color:#e7467d;
}
.txstyle_center{
	text-align: center;
}
.txstyle_reverse{
  background-color: #01bdf2;
  color: #fff;
  padding: 0 0.1em;
}
.text_uline {
  background: linear-gradient(transparent 70%, #fff101 30%);
  padding: 0 0.1em;
}

@media screen and (max-width: 767px) {
	.txstyle_middle{
		font-size: 120%;
	}
	.txstyle_reverse{
		font-size: 120%;
	}
}

/**********************************/
/* 事業タイトル（画像の上）**********/
/**********************************/
.img_over_head{
	position: relative;
	margin-top: 10px;
}

/* サブタイトル１（縁取り文字） */
:root {
	--outline : #007dc5;
}
.img_over_head p {
	font-size: 50px;
	font-weight: bold;
	color: #ffffff;
	text-shadow: var(--outline) 5px 0 0, var(--outline) 2.83487px 0.981584px 0, var(--outline) 2.35766px 1.85511px 0, var(--outline) 1.62091px 2.52441px 0, var(--outline) 0.705713px 2.91581px 0, var(--outline) -0.287171px 2.98622px 0, var(--outline) -1.24844px 2.72789px 0, var(--outline) -2.07227px 2.16926px 0, var(--outline) -2.66798px 1.37182px 0, var(--outline) -2.96998px 0.42336px 0, var(--outline) -2.94502px -0.571704px 0, var(--outline) -2.59586px -1.50383px 0, var(--outline) -1.96093px -2.27041px 0, var(--outline) -1.11013px -2.78704px 0, var(--outline) -0.137119px -2.99686px 0, var(--outline) 0.850987px -2.87677px 0, var(--outline) 1.74541px -2.43999px 0, var(--outline) 2.44769px -1.73459px 0, var(--outline) 2.88051px -0.838247px 0;
}
/* サブタイトル２（中抜き文字） */
.text2_over_head {
	font-size: 30px;
	font-weight: bold;
	color: #ffffff;
	text-shadow: var(--outline) 1px 0 0, var(--outline) 2.83487px 0.981584px 0, var(--outline) 2.35766px 1.85511px 0, var(--outline) 1.62091px 2.52441px 0, var(--outline) 0.705713px 2.91581px 0, var(--outline) -0.287171px 2.98622px 0, var(--outline) -1.24844px 2.72789px 0, var(--outline) -2.07227px 2.16926px 0, var(--outline) -2.66798px 1.37182px 0, var(--outline) -2.96998px 0.42336px 0, var(--outline) -2.94502px -0.571704px 0, var(--outline) -2.59586px -1.50383px 0, var(--outline) -1.96093px -2.27041px 0, var(--outline) -1.11013px -2.78704px 0, var(--outline) -0.137119px -2.99686px 0, var(--outline) 0.850987px -2.87677px 0, var(--outline) 1.74541px -2.43999px 0, var(--outline) 2.44769px -1.73459px 0, var(--outline) 2.88051px -0.838247px 0;
}
/* サブタイトル３（中抜き文字） */
.text3_over_head {
	text-align: left;
	padding: 20px 20px;
	font-size: 100%;
	font-weight: bold;
	color: #ffffff;
	text-shadow: var(--outline) 1px 0 0, var(--outline) 2.83487px 0.981584px 0, var(--outline) 2.35766px 1.85511px 0, var(--outline) 1.62091px 2.52441px 0, var(--outline) 0.705713px 2.91581px 0, var(--outline) -0.287171px 2.98622px 0, var(--outline) -1.24844px 2.72789px 0, var(--outline) -2.07227px 2.16926px 0, var(--outline) -2.66798px 1.37182px 0, var(--outline) -2.96998px 0.42336px 0, var(--outline) -2.94502px -0.571704px 0, var(--outline) -2.59586px -1.50383px 0, var(--outline) -1.96093px -2.27041px 0, var(--outline) -1.11013px -2.78704px 0, var(--outline) -0.137119px -2.99686px 0, var(--outline) 0.850987px -2.87677px 0, var(--outline) 1.74541px -2.43999px 0, var(--outline) 2.44769px -1.73459px 0, var(--outline) 2.88051px -0.838247px 0;
}

/* アピールタイトル（丸枠内に文字） */
.circle_head {	
	position: relative;
	display: inline-block;
	width: 150px;
	height: 100px;
	border-radius: 20%;
	background: #f3753b;
}
.circle_head span {
	position: absolute;
	display: inline-block;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	color:#ffffff;
	font-size: 30px;
	font-weight: bold;
	width :150px;
	text-align:center;
}

@media screen and (max-width: 767px) {
	.img_over_head{
		margin-top: 10px;
	}
	/* サブタイトル１（縁取り文字） */
	.img_over_head p {
		font-size: 30px;
	}
	/* サブタイトル２（中抜き文字） */
	.text2_over_head {
		font-size: 20px;
	}
	/* サブタイトル３（中抜き文字） */
	.text3_over_head {
		font-size: 100%;
	}
	/* アピールタイトル（丸枠内に文字） */
	.circle_head {	
		width: 80px;
		height: 80px;
	}
	.circle_head span {
		font-size: 20px;
		width :80px;
	}
}

/**********************************/
/* 中見出し                        */
/**********************************/
.middle_head {
	font-size: 150%;
	font-weight: bold;
	color:#002059;
	text-align: left;
}
h2 {
	position: relative;
	padding: 5px 26px 5px 42px;
	background: #01bdf2;
	font-size: 150%;
	font-weight: bold;
	color: #ffffff;
	margin-left: -33px;
	line-height: 1.3;
	border-bottom: solid 3px #007ec5;
/*	z-index:-2;*/
}
h2:before {
	position: absolute;
	content: '';
	left: -2px;
	top: -2px;
	width: 0;
	height: 0;
	border: none;
	border-left: solid 40px white;
	border-bottom: solid 79px transparent;
/*	z-index: -1;*/
}
h2:after {
	position: absolute;
	content: '';
	right: -3px;
	top: -7px;
	width: 0;
	height: 0;
	border: none;
	border-left: solid 40px transparent;
	border-bottom: solid 79px white;
	z-index: -1;
}

/**********************************/
/* 大枠                           */
/**********************************/
.top_info_block{
	margin-top: -150px;
	background-color:#ffffff;
	height:100px;
	border-radius: 50%;
}
.main_info_block{
	margin-top: -50px;
	padding-top: 5px;
	background-color:#ffffff;
	z-index: -99;
}
.info_block{
	padding: 50px 20px;
	font-weight: bold;
	width:100%;
	background-color:#ffffff;
	border-radius: 30px;
}
@media screen and (max-width: 767px) {
	.top_info_block{
		margin-top: -70px;
		height:100px;
	}
	.main_info_block{
		margin-top: -50px;
	}
	.info_block{
		margin-top:5px;
		padding: 0 2px;
	}
}
/**********************************/
/* ポイント枠                      */
/**********************************/
.point_info_block{
	margin:0 auto;
	margin-top:20px;
	margin-bottom: 20px;
	padding: 10px;
	width:100%;
}
.point_info_table{
	table-layout: fixed;
	font-size:100%;
	width: 100%;
	text-align: center;
	border: 1px #7EA0D3 solid;
}
.point_info_table td{
	padding : 10px;
	text-align: left;
	border: 1px #7EA0D3 solid;
	line-height: 1.5em;
}
.point_info_table td img{
    width:auto;
    height:auto;
    max-width:100%;
    max-height:100%;
}
@media screen and (max-width: 767px) {
	.point_info_table td{
		display:block;
	}
}
/**********************************/
/* 開催日程枠                      */
/**********************************/
.schedule_info_block{
	margin:0 auto;
	margin-top:20px;
	margin-bottom: 20px;
	padding: 10px;
	width:100%;
	text-align: left;
}
.schedule_info_table{
	table-layout: fixed;
	font-size:100%;
	width: 100%;
	text-align: center;
	border: 1px #007dc5 solid;
}
.schedule_info_table th{
	background-color:#007dc5;
	border-color : #40bde8;
	color:#fefefe;
	border: 1px #40bde8 solid;
	padding : 2px;
	font-size: 150%;
	font-weight: bold;
}
.schedule_info_table td{
	padding : 10px;
	text-align: left;
	border: 1px #40bde8 solid;
	line-height: 1.5em;
}
.schedule_info_detail_left{
	padding: 10px;
	text-align: left;
	padding-left: 20%;

}
@media screen and (max-width: 767px) {
	.schedule_info_table th{
		display:block;
	}
	.schedule_info_table td{
		display:block;
	}
	.schedule_info_detail_left{
		padding-left: 5%;

	}
}
/*-------------------------------------------------------- */
/**********************************/
/* ボタン *************************/
/**********************************/
a.btn_entry {
	display: inline-block;
	width: 100%;
	max-width: 350px;
	color: #ffffff;
	border: 2px solid #007dc5;
	background: #007dc5;
	margin: 20px 0;
	padding: 1em 0;
	font-size: 130%;;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	transition: 0.3s;
	border-radius: 10px;
}
a.btn_entry:hover {
	color: #007dc5;
	background: #ffffff;
	border: 2px solid #007dc5;
}
a.btn_entry_fin {
	display: inline-block;
	width: 100%;
	max-width: 350px;
	color: #002059;
	border: 2px solid #007dc5;
	background: #d2d1d1;
	margin: 20px 0;
	padding: 1em 0;
	font-size: 130%;;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	transition: 0.3s;
	border-radius: 10px;
}

/**********************************/
/* 出展企業のアコーディオン表示用    */
/**********************************/
/* Acordion Faq */
.tab {
	position: relative;
	margin-bottom: 1px;
	width: 100%;
	color: #fff;
	overflow: hidden;
}
input {
	position: absolute;
	opacity: 0;
	z-index: -1;
}
label {
	position: relative;
	display: block;
	padding: 0 0 0 1em;
	background: #000;
	font-weight: bold;
	cursor: pointer;
	color:#ffffff;
	background-color: #007dc5;
	font-size: 130%;
}
.tab-content {
	max-height: 0;
	overflow: hidden;
	-webkit-transition: max-height .35s;
	-o-transition: max-height .35s;
	transition: max-height .35s;
	color: #002059;
}
.tab-content p {
	margin: 1em;
}
/* :checked */
input:checked ~ .tab-content {
	max-height: 100%;
}
/* Icon */
label::after {
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	width: 3em;
	height: 3em;
	text-align: center;
	-webkit-transition: all .35s;
	-o-transition: all .35s;
	transition: all .35s;
}
input[type=checkbox] + label::after {
	content: "+";
}
input[type=radio] + label::after {
	content: "\25BC";
}
input[type=checkbox]:checked + label::after {
	transform: rotate(315deg);
}
input[type=radio]:checked + label::after {
	transform: rotateX(315deg);
}

/**********************************/
/* 出展企業テーブル                */
/**********************************/
.company_info_table{
	table-layout: fixed;
	font-size:100%;
	width: 100%;
	color:#002059;
	text-align: center;
	border: 1px #002059 solid;
	margin-bottom: 20px;
}
.company_info_table th{
	background-color:#c3e1f3;
	border: 1px #002059 solid;
	padding : 2px;
	font-weight: bold;
	width: 50px;
}
.company_info_table td{
	padding : 10px;
	text-align: left;
	border: 1px #002059 solid;
	line-height: 1.5em;
	text-align: left;
}
.company_info_table td:last-child {
	text-align: left;
}
@media screen and (max-width: 767px) {
	/* 火曜コース */
	.company_info_table .thead {
		display: none;
	}
	.company_info_table tr{
		width: 100%;
	}
	.company_info_table td{
		display:block;
		width: 100%;
		text-align: left;
	}
	.company_info_table td:first-child{
		font-weight: bold;
		text-align: center;
		background-color:#c3e1f3;
	}
	.company_info_table td:before {
		content: attr(data-label);
		float: left;
		font-weight: bold;
		margin-right: 10px;
	}
	.company_info_table td:last-child{
		text-align: left;
	}
}