@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: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}
@media screen and (max-width: 767px) {
	body{
		background-image: url(../img/bg_section_sp.png);
	}
}

/**********************************/
/* 基礎部分 ************************/
/**********************************/
.wapper{
	max-width: 1200px;
	margin: 0 auto;
}
.sec_main{

	background-size:10%;
	background-repeat:no-repeat;
	background-position: reft;
	padding-bottom:100px;
	margin-top:20px;
	z-index: -99;
}
@media screen and (max-width: 767px) {
	.sec_main{
		margin-top:0;
		background-repeat:no-repeat;
		padding: 0;
	}
}
/**********************************/
/* 文字装飾                        */
/**********************************/
.txstyle_big{
	font-size: 300%;
}
.txstyle_large{
	font-size: 200%;
}
.txstyle_middle{
	font-size: 150%;
}
.txstyle_bold{
	font-weight: bold;
}
.txstyle_circle{
	position: relative;
	display: inline-block;
	width: 50px;
	height: 50px;
	background: #002059;
	border-radius: 50%;
	text-align: center;
}
.txstyle_circle span {
	position: absolute;
	display: inline-block;
	left: 0;
	top: 45%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	color:#ffffff;
	font-size: 100%;
	font-weight: bold;
	width :50px;
	text-align:center;
}
.txstyle_pink{
	color:#e7467d;
}
.txstyle_center{
	text-align: center;
}

@media screen and (max-width: 767px) {
	.txstyle_big{
		font-size: 180%;
	}
	.txstyle_circle{
		width: 50px;
		height: 50px;
	}
	.txstyle_circle span {
		left: 0;
		top: 50%;
		font-size: 90%;
		width :50px;
	}
}

/**********************************/
/* ヘッダー ***********************/
/**********************************/
header {
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	padding: 10px 40px;
	box-sizing: border-box;
	background: #005BAC; 
/*	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,91,172,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: row;
	align-items: center;
	justify-content: space-between;
	position: relative;
	height: 70px;
	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: 1252px) {
	header::after{
		display:none;
	} 
   nav{
		display: flex;
		flex-direction: column;
	}
	.logo_gogo{
		font-size: 200%;
		width: 500px;
   }
   .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{
	margin-top: 100px;
/*	border-top: 50px solid #00a1e9;
	background:#EBF6F9;*/
	color:#ffffff;
	text-shadow:1px 1px 0 #e60013, -1px -1px 0 #e60013,
	-1px 1px 0 #e60013, 1px -1px 0 #e60013,
	0px 1px 0 #e60013,  0-1px 0 #e60013,
	-1px 0 0 #e60013, 1px 0 0 #e60013;
}
.footer_inner{
	margin-top: 100px;
	padding:200px 10px 50px 0 ;
	position:relative;
/*	background: #EBF6F9;*/
	background-image: url(../img/bg_footer.png);
	width: 100vw;
	height: 100%;
/*	background-position: center center;*/
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-size: cover;
}
.footer_inner img:hover{
	opacity: 0.5 ;
}
.footer_pref{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
	margin: 20px 10px 0 10px;
}
.footer_pref .logo{
	display: flex;
	height: 60px;
	padding: 5px;
	text-align: center;
	align-items: center;
	background-color: #ffffff;
	border: 1px solid #cfcfcf;
}
.footer_pref img{
	width: 100%;
}
.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 60px 0 ;
		position:relative;
		background-position: center center;
}
	.footer_pref{
		display: none;
		/*
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 10px;
		margin: 20px 10px 0 10px;
		text-align: center;
		*/
	}
	.footer_pref .logo{
		width: 100%;
		display: flex;
		justify-content: center;
	}
	.footer_pref img{
		width: 70%;
		margin: auto;
		display: block;
	}
	.footer_jimu{
		font-size:80%;
	}
}

/**********************************/
/* 追従メニュー ******************/
/**********************************/
.side_title{
	position: fixed;
	background-size: cover;
	left: 0;
	width: 100vw;
	opacity: 0.5;
	z-index: 0;
}
.side_title div{
	margin-bottom:5px;
}

.side_menu{
	position: fixed;
	top: 12%;
	right: 0;
	width: 50px;
	z-index: 999;
}
.side_menu div{
	margin-bottom:10px;
}
.side_menu img:hover{
	opacity: 0.5 ;
}
.side_menu_sp{
	position: fixed;
	bottom:5px;
	width: 100%;
	padding: 0 10px;
	z-index: 99;
}
.side_menu_sp div{
	width: 30%;
	display:inline-block;
	margin:0 auto;
}


@media screen and (max-width: 767px) {
	.side_menu{
		display:none;
	}
	.side_menu_sp{
		display:block;
	}
}

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

/* サブタイトル１（縁取り文字） */
:root {
	--outline : #EC6E66;
}
.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;
}

/* アピールタイトル（丸枠内に文字） */
.circle_head {	
	position: relative;
	display: inline-block;
	width: 150px;
	height: 150px;
	background: #EC6E66;
	border-radius: 30px;
	border: 5px solid #ffffff;
	margin: 20px;
}
.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 :140px;
	text-align:center;
	line-height: 1em;
}

/* 特典の画像 */
.tokuten_img {	
	position: relative;
	display: inline-block;
	width: 500px;
	border-radius: 30px;
	border: 5px solid #ffffff;
	margin: 10px;
}

@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;
	}
	/* アピールタイトル（丸枠内に文字） */
	.circle_head {	
		width: 90px;
		height: 90px;
		border-radius: 20px;
		margin: 5px;
	}
	.circle_head span {
		font-size: 20px;
		width :80px;
	}
	.tokuten_img {	
		width: 95%;
		border-radius: 20px;
	}
}

/**********************************/
/* 事業内容（画像の上）**************/
/**********************************/
.img_over_text{
	position: relative;
}
.img_over_text p{
	position: absolute;
	width: 80%;
	top:70%;
	left: 50%;
	text-align: left;
   -ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-60%,-50%);
	color: #005BAC;
	font-size: 140%;
	background-color:rgba(255,255,255,0.7);
}
@media screen and (max-width: 767px) {
	.img_over_text p{
		top:70%;
		left: 60%;
		width: 90%;
		font-size: 120%;
	}
}

/**********************************/
/* 大枠                           */
/**********************************/
.main_info_block{
	margin-top: -100px;
	padding-top: 5px;
	z-index: -99;
}
.info_block{
	margin-top:50px;
	padding: 50px 20px;
	font-weight: bold;
	width:100%;
	background-color:rgba(255, 255, 255, 0.9);
	border-radius: 30px;
	z-index: -99;
}
/* 企業詳細異情報のタイトル（企業名） */
.info_title{
	margin-top: 50px;
	margin-bottom: -100px;
	font-size: 250%;
	font-weight: bold;
	color:#fff100;
	width:100%;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color:#002059;
	border-radius: 30px 30px 0 0;
	position: relative;
	z-index: 99;
}
.info_head_catch1{
	margin-top:20px;
	padding: 10px;
	width:100%;
	text-align: center;
	font-size: 150%;
	background-color:#ffe6e6;
	border-radius: 10px;
}
.info_head_catch2{
	margin-top:10px;
	padding: 10px;
	width:100%;
	text-align: center;
	font-size: 120%;
	background-color:#ffe6e6;
	border-radius: 10px;
}

@media screen and (max-width: 767px) {
	.main_info_block{
		margin-top: -30px;
	}
	.info_block{
		padding: 20px 10px;
	}
	.info_title{
		font-size: 180%;
		padding: 5px 15px;
	}
	.info_head_catch1{
		margin-top:50px;
	}
}

/**********************************/
/* 開催日程枠                      */
/**********************************/
.schedule_info_block{
	margin:0 auto;
	margin-top:20px;
	padding: 10px;
	width:100%;
	text-align: left;
	font-size: 1.5em;
}
.schedule_info_detail{
	padding: 10px;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.schedule_info_detail{
		padding: 10px 0 10px 10px;
		text-align: left;
	}
}

/**********************************/
/* タイトル                        */
/**********************************/
h1 {
	padding: .5em;
	background-color: #ffe6e6;
	border-bottom: solid 3px #ff5a5f; 
	font-size: 1em;
	font-weight: bold;
}

/**********************************/
/* ボタン *************************/
/**********************************/
a.btn_entry {
	display: flex;
	color: #fff;
	background-color: #EC6E66;
	border-top: 4px solid #ffffff;
	border-bottom: 4px solid #ffffff;
	border-left: 4px solid #ffffff;
	font-weight: bold;
	font-size: 150%;
	text-decoration: none;
	align-items: center;
	width: 100%;
	padding: 10px;
	writing-mode: vertical-rl;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}
a.btn_entry:hover {
	color: #EC6E66;
	background: #ffffff;
	border: 2px solid #EC6E66;
}
a.btn_entry_fin {
	display: inline-block;
	width: 100%;
	max-width: 350px;
	color: #EC6E66;
	border: 2px solid #EC6E66;
	background: #d2d1d1;
	margin: 20px 0;
	padding: 1em 2em;
	font-size: 130%;;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	transition: 0.3s;
	border-radius: 10px;
}
a.btn_entry_sp {
	display: inline-block;
	width: 100%;
	color: #f5f5f5;
	border: 4px solid #ffffff;
	background: #EC6E66;
	margin: 10px 0;
	padding: 1rem 1rem;
	font-size: 120%;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	transition: 0.3s;
	border-radius: 30px;
}
a.btn_entry_sp:hover {
	color: #EC6E66;
	background: #ffffff;
	border: 2px solid #EC6E66;
}
/* 企業詳細のボタン */
a.btn_company {
	display: block;
	text-align: center;
	align-items: center;
	text-decoration: none;
	margin: auto;
	font-weight: bold;
	border-radius: 0.3rem;
	border-bottom: 7px solid #0686b2;
	background: #27acd9;
	color: #fff;
}
a.btn_company:hover {
	margin-top: 6px;
	border-bottom: 1px solid #0686b2;
	color: #fff;
}

@media screen and (min-width: 767px) {
	a.btn_entry_sp {
		display:none;
	}
}

@media screen and (max-width: 767px) {
	a.btn_entry{
		display:none;
	}
	/*
	a.btn_entry_sp {
		width: 90%;
		font-size: 100%;
		border-radius: 10px;
		padding: 1rem 1rem;
		writing-mode: horizontal-tb;
	}
	*/

}
/**********************************/
/*　　動画掲載			           */
/**********************************/
.movie_block{
	margin:0 auto;
	padding: 10px;
	width:100%;
	height: 100%;
	display: flex;
	justify-content:center;
}
.movie_block .youtube {
	padding: 5px;
	flex:1;
	width:49%;
	height: 49%;
	aspect-ratio: 16/9;
}
@media screen and (max-width: 767px) {
	.movie_block{
		width:100%;
		height: 120%;
	}
}

/*=====================================
a.PDFリンク
=====================================*/
a[href$=".pdf"]:before {
	content:" ";
	display: inline-block;
	width: 24px;
	height: 24px;
	vertical-align: middle;
	background: url(../img/Adobe_PDF_file_icon_24x24.png) no-repeat;
  }
/*=====================================
a.Excelリンク
=====================================*/
a[href$=".xlsx"]:before {
	content:" ";
	display: inline-block;
	width: 24px;
	height: 24px;
	vertical-align: middle;
	background: url(../img/1486565571-microsoft-office-excel_81549.png) no-repeat;
}

/* チラシダウンロード ******************/
.flyer_dw_link{
	padding: 7px;
	font-size: 20px;
	margin-top:10px;
	margin-bottom:10px;
	color: darkblue;
}
.flyer_dw_link a:hover{
	padding: 7px;
	font-size: 20px;
	border: solid #005BAC 2px;
	color: darkblue;
	text-decoration: none;
	background: #f4babd;
	width: 100%;
	border-radius: 10px;
}
@media screen and (max-width: 767px) {
	.flyer_dw_link{
		font-size: 16px;
	}
	
	.flyer_dw_link a:hover{
		font-size: 16px;
	}
}

/**********************************/
/* 出展企業テーブル（トップ一覧情報）*/
/**********************************/
.company_info_table{
	table-layout: fixed;
	font-size:100%;
	width: 100%;
	color:#002059;
	text-align: center;
	border: 1px #002059 solid;
}
.company_info_table th{
	background-color:#ffe6e6;
	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;
}
/* 企業情報詳細テーブル */
.company_detail_table{
	width: 100%;
	border: 0px #ffffff solid;
}
.company_detail_table td{
	padding : 5px;
	border: 0px #ffffff solid;
	text-align: left;
	line-height: 1.5em;
}
.company_detail_table td:first-child {
	width: 100px;
}
/* 採用を希望する雇用形態の表記 */
.text_recruit_type {
	margin: 5px ;
    padding: 0.2em 0.2em;
    background: #cae9fa;
    box-shadow: 0px 0px 0px 5px #cae9fa;
    border: dashed 2px #ffc3c3;
    border-radius: 8px;
}
.text_recruit_type p {
    margin: 0; 
    padding: 0;
}
@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:#f5bbbb;
	}
	.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;
	}

	.company_detail_table td:first-child {
		width: 100%;
	}
}

/**********************************/
/* 出展企業テーブル（トップ一覧情報）*/
/**********************************/
.recrute_info_table{
	table-layout: fixed;
	font-size:80%;
	width: 100%;
	color:#002059;
	text-align: center;
	border: 1px #002059 solid;
}
.recrute_info_table th{
	background-color:#ffe6e6;
	border: 1px #002059 solid;
	padding : 2px;
	font-weight: bold;
	width: 300px;
}
.recrute_info_table td{
	padding : 10px;
	text-align: left;
	border: 1px #002059 solid;
	line-height: 1.5em;
}
.recrute_info_table td:last-child {
	text-align: left;
}

@media screen and (max-width: 767px) {
	.recrute_info_table .thead {
		display: none;
	}
	.recrute_info_table tr{
		width: 100%;
	}
	.recrute_info_table th{
		display:block;
		width: 100%;
	}
	.recrute_info_table td{
		display:block;
		width: 100%;
		text-align: left;
		word-wrap:break-word;
	}
	.recrute_info_table td:first-child{
		font-weight: bold;
		text-align: center;
		background-color:#f5bbbb;
	}
	.recrute_info_table td:before {
		content: attr(data-label);
		float: left;
		font-weight: bold;
		margin-right: 10px;
	}
	.recrute_info_table td:last-child{
		text-align: left;
	}
	
}
