@charset "utf-8";
@media print {
	body {
		zoom: 83%;
	}
}

/* ボディ */
body{
	font-family:"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",'メイリオ',Meiryo,Helvetica,Arial,Sans-serif;
	font-size: 14px;
	background-color: #fff;
	color: #303030;
}

body a{
	text-decoration: none;
}

/* ポインタホバー時に半透明にする */
.hover_opacity a:hover{
	opacity:0.8;
	filter: alpha(opacity=80);        /* ie lt 8 */
	-ms-filter: "alpha(opacity=70)";  /* ie 8 */
	-moz-opacity:0.8;                 /* FF lt 1.5, Netscape */
	-khtml-opacity: 0.8;              /* Safari 1.x */
	zoom: 1;
}

/* container 幅を合わせる */
.container{
	margin: 0 auto;
	width: 810px;
	padding: 0 20px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/* ヘッダー-------------------------------------- */
header{
	margin: 0 auto;
	width: 100%;
	background-color: #fafafa;
	overflow: hidden;
}

header #sentence{
	padding-top: 5px;
	font-size: 10px;
	-webkit-transform:scale(0.8);
	display:inline-block;
	-webkit-margin-start: -40px;
	font-weight: normal;
}

header #title img{
	max-width: 300px;
	margin-top: 10px;
	margin-bottom: 10px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

header .header_in{
	position: relative;
}

header #tel{
	width: 220px;
	height: 80px;
	padding-top: 5px;
	padding-left: 10px;
	padding-right: 10px;
	background-color: #cc0008;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	position: absolute;
		top: 0;
		right: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;

}

header #tel span{
	display: block;
	color: #fff;
	font-size: 21px;
	margin-top: 3px;
	font-weight: bold;
}

header #tel .tel_in{
	width: 100%;
	height: 40px;
	background-color: #fff14e;
	border-radius: 4px;
	font-weight: bold;
	text-align: left;
	font-family:"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",'メイリオ',Meiryo,Helvetica,Arial,Sans-serif;
}

/*  phone_iconの設定 */
header #tel img{
	width: 25px;
	float: left;
	margin-right: 5px;
}

header #tel .tel_in img{
	margin: 3px;
	width: 35px;
	float: left;
}

header #tel .tel_in p{
	padding-top: 8px;
	margin-top: 5px;
	color: #303030;
}



/* メニューここから */
/* メニューの背景部分（メニュー選択部分と同じデザイン） */
#nav_container{
	width: 100%;
	/* ↓グラデーション */
	background: #123949;
	background-image: -moz-linear-gradient(top, #194e64 0%, #123949 50%, #0b242e 50%, #123949 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #194e64), color-stop(0.50, #123949), color-stop(0.50, #0b242e), color-stop(1, #123949));
	box-shadow: 1px 0px 0px rgba(225,225,225,0.1) inset,
        			-1px 0px 0px rgba(225,225,225,0.1) inset,
					0px 1px 1px rgba(0,0,0,0.1) inset,
					0px -1px 1px rgba(0,0,0,0.3) inset,
					0px 1px 3px #0b242e;
}

#nav_menu{
	margin: 0 auto;
	width: 810px;
	height: 40px;
	overflow: hidden;
}

	#nav_menu li{
		float: left;
		text-align: center;
		width: 15.6666%;　/* ナビメニューのボタンの幅（トップページ6%を引いた94%をボタンの数で割る） */
	}
	
	#nav_menu li:first-child{
		width: 6%;　/* トップページボタンの幅 */
	}
	
	/* 	home_iconの設定 */
	#nav_menu li:first-child img{
		width: 20px;
		height: 18px;
		margin-top: 11px;
	}
	
	/* 	facebook_iconの設定 */
	#nav_menu li:last-child img{
		width: 14px;
		margin-top: 13px;
		margin-right: 8px;
	}
	
	#nav_menu li a{
		text-align: center;
		display: block;
		line-height: 40px;
		background: #123949;
		text-decoration: none;
		font-size: 12px;
		font-weight: normal;
		color: #fff;
		/* ↓テキストに影 */
		text-shadow:0 -1px 0px #010405,0 1px 0px #081920;
		/* ↓グラデーション */
		background-image: -moz-linear-gradient(top, #194e64 0%, #123949 50%, #0b242e 50%, #123949 100%);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #194e64), color-stop(0.50, #123949), color-stop(0.50, #0b242e), color-stop(1, #123949));
		/* ↓手の込んだボーダー */
		border-left:1px solid #050e13;
		box-shadow: 1px 0px 0px rgba(225,225,225,0.1) inset,
        			-1px 0px 0px rgba(225,225,225,0.1) inset,
					0px 1px 1px rgba(0,0,0,0.1) inset,
					0px -1px 1px rgba(0,0,0,0.3) inset,
					0px 1px 3px #0b242e;
	}
	
	#nav_menu li a:hover{
		background: #0f2e3b;
		background-image: -moz-linear-gradient(top, #0f2e3b 0%, #0b242e 50%, #081920 50%, #0b242e 100%);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #0f2e3b), color-stop(0.50, #0b242e), color-stop(0.50, #081920), color-stop(1, #0b242e));
	}
	
	#nav_menu li:first-child a{
		font-size: 20px;
	}
	
	/* 一番右端の線 */
	#nav_menu li:last-child a{
		border-right:1px solid #050e13;
		/* ↓グラデーション */
		background-image: -moz-linear-gradient(top, #194e64 0%, #123949 50%, #0b242e 50%, #123949 100%);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #06c39e), color-stop(0.50, #05a283), color-stop(0.50, #048169), color-stop(1, #05a283));
		/* ↓手の込んだボーダー */
		border-left:1px solid #050e13;
		box-shadow: 1px 0px 0px rgba(225,225,225,0.1) inset,
        			-1px 0px 0px rgba(225,225,225,0.1) inset,
					0px 1px 1px rgba(0,0,0,0.1) inset,
					0px -1px 1px rgba(0,0,0,0.3) inset,
					0px 1px 3px #0b242e;
	}
	
	#nav_menu li:last-child a:hover{
		background: #0f2e3b;
		background-image: -moz-linear-gradient(top, #0f2e3b 0%, #0b242e 50%, #081920 50%, #0b242e 100%);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #048169), color-stop(0.50, #03604e), color-stop(0.50, #023f33), color-stop(1, #03604e));
	}



/* ページ共通設定 コンテンツ------------------------------------- */
.midashi h2{
	padding-top:35px;
	font-size: 29px;
	color: #fff;
}

.midashi h2 span{
	margin-right: 3px;
	font-size: 14px;
	background-color: #ea0000;
	padding: 5px;
	border: solid 2px #fff;
	border-radius: 5px;
}

.midashi_bg{
	height: 80px;
	background-color: #123949;	
}

.midashi img{
	width: 50px;
	margin-top: 8px;
	margin-right: 15px;
	float: left;
}

.dropshadow{
	box-shadow: inset 0px 5px 5px rgba(0, 0, 0, 0.5);
}

.contents{
	margin: 0 auto;
	width: 100%;
	overflow: hidden;
}

/* 全体の文字行間 */
.contents p{
	line-height: 1.3em;
	letter-spacing: 0.1em;
}

.contents img{
	max-width: 100%;
	height: auto;
}

.contents_bg{
	background-color: #FAFAFA;
	width: 100%;
	height: 100%;
}

.contents_1{
	overflow: hidden;
}

/* トップページ ------------------------------*/
.top .contents_1{
	padding-top: 20px;
	width: 810px;
	height: 350px;
}

.contents_1-1{
	width: 400px;
	float: left;
}

.contents_1-2{
	width: 350px;
	float: right;
}

.contents_1-2 img{
	width: 95%;
}

.contents_2{
	clear: both;
	width: 100%;
	overflow: hidden;
	padding-bottom: 20px;
}

.contents_2 .reason{
	width: 740px;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	border: solid 1px #b0b0b0;
	box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.2);
	background-color: #fff;
	border-radius: 10px;
}

.contents_2 .reason_sentence{
	float: left;
	width: 68%;
}

.contents_2 .reason h3{
	font-size: 25px;
}

.contents_2 .reason p{
	margin-top: 20px;
}

.contents_2 .reason p span{
	color: #c01f1f;
	font-weight: bold;
}

.top .contents_2 img{
	float: right;
	max-width: 200px;
	height: auto;
	margin-right: 20px;
	border-radius: 100px;
}

/* メインビジュアル関係 */
.movie{
	position: relative;
	width: 100%;
	height: 400px;
	background-image: url(../img/bg_dot.png);
	overflow: hidden;
}

.movie video{
	position: absolute;
	top: 0;
	right: 0;
	z-index: -100;
	min-width: 100%;
	height: auto;
}

.main_visual{
	position: relative;
	margin: 0 auto;
	max-width: 810px;
	height: 400px;
	padding: 0px 20px;
	z-index: 1;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

img.sodan_click{
	position: absolute;
	bottom: 20px;
	right: 40px;
	max-width: 250px;
}

img.catch_copy{
	position: absolute;
	top: 50px;
	left: 20px;
	max-width: 550px;
}

.bg_gray{
	height: 40px;
	background-color: #e1e1e1;
}


/* フッター-------------------------------------- */
footer{
	width: 100%;
	height: 100px;
	background-color: #123949;
	text-align: center;
}

footer .container{
	padding-top: 40px;
}

footer small{
	font-size: 12px;
	color: #fff;
	margin: 0 auto;
}


/* 研修概要ページ--------------------------------- */
.kenshu .contents_1{
	overflow: hidden;
	margin-bottom: 40px;
}

.kenshu .hajime{
	margin-top: 50px;
}

.kenshu .kenshu_sentence{
	margin-top: 10px;
	padding: 20px;
	margin-bottom: 50px;
	overflow: hidden;
	border: solid 1px #b0b0b0;
	box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.2);
	background-color: #fff;
	border-radius: 10px;
}

.kenshu .kenshu_sentence span{
	font-weight: bold;
	color: #c01f1f;
}

.kenshu .kenshu_sentence .big_font{
	font-size: 18px;
	font-weight: bold;
}

.kenshu .kenshu_sentence img{
	width: 200px;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-right: 10px;
}

.kenshu .kenshu_sentence li{
	font-size: 18px;
	margin-top: 15px;
	margin-bottom: 15px;
	margin-left: 40px;
}

.nagare_container{
	margin-top: 50px;	
}

.nagare{
	margin-top: 20px;
	height: 100px;
	clear: both;
}

.nagare h4{
	font-size: 20px;
	margin-bottom: 5px;
}

.nagare_sentence{
	padding-top: 20px;
	padding-left: 20px;
	overflow: hidden;
}

.step{
	width: 100px;
	height: 100px;
	float: left;
	background-color: blue;
	display: inline-block;
	position: relative;
	text-align: center;
	line-height: 100px;
}

.step::after{
	content: "";
	display: inline-block;
	border-top: 20px solid transparent;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-top-color: red;
	position: absolute;
	left: 0;
	top: 100px;
	z-index: 2;
}

.step::before{
	content: "";
	display: inline-block;
	border-top: 20px solid transparent;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-top-color: #fafafa;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
}
.step1_color{background-color: #d1f8ea;}
.step1_color::before{display: none}
.step1_color::after{border-top-color: #d1f8ea;}
.step2_color{background-color: #a5f1d7;}
.step2_color::after{border-top-color: #a5f1d7;}
.step3_color{background-color: #79eac3;}
.step3_color::after{border-top-color: #79eac3;}
.step4_color{background-color: #4de3af;}
.step4_color::after{border-top-color: #4de3af}
.step5_color{background-color: #30dea2;height: 110px;}
.step5_color::after{display: none}

.step p{
	margin-top: 45px;
}

.kenshu .contents_2{
	overflow: hidden;
	margin-bottom: 40px;
}

.service_container{
	margin-top: 80px;
}

.service{
	height: 100px;
	margin-top: 20px;
	overflow: hidden;
	clear: both;
}

.service img{
	float: left;
}

.service_sentence{
	padding-top: 10px;
	padding-left: 10px;
	overflow: hidden;
}

.cost_container{
	margin-top: 80px;
}

.cost_container li{
	font-size: 22px;
	margin-top: 40px;
	margin-bottom: 20px;
	margin-left: 30px;
}

.cost_container li span{
	background-color: #ff7e7e;
	font-weight: bold;
	padding: 13px;
	border-radius: 5px;
}


/* 助成金の種類のページ--------------------------------- */

.josei .contents_1{
	overflow: hidden;
	margin-bottom: 40px;
}

.josei_sentence{
	margin-top: 20px;
	margin-bottom: 30px;
	overflow: hidden;
}

.contents_1 h3{
	margin-bottom: 20px;
	padding-left: 10px;
	font-size: 28px;
	border-left: solid 8px  #a51b1b;
}

.josei h4{
	margin-top: 20px;
	margin-bottom: 10px;
	font-size: 18px;
}

.josei table{
	width: 760px;
	border: solid 1px #464646;
}

.josei table th{
	height: 30px;
	vertical-align: middle;
	background-color: #efefef;
	border: solid 1px #464646;
	padding: 3px;
}

.josei table td{
	height: 150px;
	vertical-align: middle;
	background-color: #fff;
	padding: 5px;
}

.josei table th:nth-child(-n+3){
	width: 160px;
}

.josei table td:nth-child(-n+3){
	text-align: center;
}

.josei .career_sentence{
	margin-top: 20px;
}

.josei #career_keisei{
	margin-top: 50px;
}

.josei #career_keisei .course{
	margin-left: 10px;
}

.josei #career_up{
	margin-top: 50px;
}

.josei #career_keisei table,
#career_up table{
	width: 760px;
}

.josei #career_keisei table tr,
#career_up table tr{
	height: 50px;
}

.josei #career_keisei th:nth-child(1){
	width: 170px;
}

.josei #career_keisei th:nth-child(2){
	width: 90px;
}

.josei #career_keisei table td,
#career_up table td{
	height: 50px;
	text-align: left;
}

.josei #career_keisei table td.center{
	text-align: center;
}

.josei #career_up th:nth-child(1){
	width: 100px;
}

span.kome{
	display: block;
	margin-top: 5px;
	font-size: 10px;
}

/* 企業情報ページ---------------------------------------- */
	/* 企業情報ページナビ */
	nav.kigyo_nav{
		margin-top: 30px;
		margin-bottom: 50px;
		overflow: hidden;
	}
	
	nav.kigyo_nav li a{
		float: left;
		display: block;
		width: 140px;
		height: 40px;
		font-size: 1.2em;
		text-align: center;
		background-color: #123949;
		color: #fff;
		line-height: 40px;
		border-radius: 4px;
		background-image: -moz-linear-gradient(#123949 0%, #051217 100%);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #123949), color-stop(1, #051217));
		background-image: linear-gradient(#123949 0%, #051217 100%);
		margin-left: 5px;
		text-decoration: none;
		list-style: none;
	}
	
.kigyo .contents_1,
.kigyo_enkaku .contents_1{
	overflow: hidden;
	margin-bottom: 40px;
}

table.info_table{
	width: 760px;
	border: solid 1px #464646;
}

table.info_table th,td{
	border: solid 1px #464646;
}

table.info_table tr{
	height: 30px;
}

table.info_table th{
	width: 20%;
	vertical-align: middle;
	background-color: #dbe2eb;
}

.kigyo_enkaku table.info_table th{
	width: 15%;
}

table.info_table td{
	vertical-align: middle;
	background-color: #fff;
	padding: 10px;
}

table.info_table p{
	margin-top: 3px;
	margin-bottom: 3px;
	margin-left: 10px;
}

table.info_table img{
	margin-top: 10px;
	margin-left: 10px;
}

table.info_table a{
	text-decoration: none;
}

/* 企業理念のページ */
.kigyo_rinen .contents_1{
	overflow: hidden;
	margin-bottom: 40px;
}

.rinen{
	margin-bottom: 50px;
}

.rinen,.life{
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 50px;
	margin-top: 20px;
	border: solid 1px #b0b0b0;
	overflow: hidden;
	box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.2);
	background-color: #fff;
	border-radius: 10px;
}

.rinen,.life ul{
	font-size: 18px;
	font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	line-height: 1.7em;
	letter-spacing: 0.1em;
}

.rinen li,
.life li{
	margin-top: 20px;
	margin-bottom: 20px;
}

.rinen ul{color: #ff7d0c;}
.life ul{color: #5bb335;}
.rinen span,.life span{
	color: #303030;
}

/* カリキュラムページ-------------------------------- */

.kako h3{
	margin-top: 40px;
}

.kako h3 span{
	font-size: 15px;
}

.kako h4{
	margin-top: 30px;
	padding: 10px;
	display: block;
	background-color: #ffbcbc;
	font-size: 18px;
}

.kako table td li{
	margin-left: 30px;
	margin-top: 5px;
	margin-bottom: 5px;
}

.kako table{
	width: 760px;
	border: solid 1px #464646;
	margin-top: 10px;
}

.kako table th,td{
	border: solid 1px #464646;
	padding: 10px;
}

.kako table tr{
	height: 30px;
}

.kako table th{
	width: 20%;
	vertical-align: middle;
	background-color: #dbe2eb;
}

.kako table td{
	vertical-align: middle;
	background-color: #fff;
	padding: 10px;
}

.kako table p{
	margin-top: 3px;
	margin-bottom: 3px;
	margin-left: 10px;
}

.kako table th span{
	margin-top: 2px;
	font-size: 10px;
}

.kako #career_keisei{
	margin-bottom: 50px;
}

.cost_link{
	margin-top: 10px;
	font-size: 20px;
}

/* カリキュラムナビ */
	nav.kako_nav{
		margin-top: 30px;
		margin-bottom: 50px;
		overflow: hidden;
	}
	
	nav.kako_nav li a{
		float: left;
		display: block;
		width: 230px;
		height: 40px;
		font-size: 1.1em;
		text-align: center;
		background-color: #123949;
		color: #fff;
		line-height: 40px;
		border-radius: 4px;
		background-image: -moz-linear-gradient(#123949 0%, #051217 100%);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #123949), color-stop(1, #051217));
		background-image: linear-gradient(#123949 0%, #051217 100%);
		margin-left: 5px;
		text-decoration: none;
		list-style: none;
	}

/* お問い合わせページここから---------------------------------------- */
.access_sentence p{
	margin-top: 30px;
}

.access h3{
	margin-top: 50px;
}

.access_mailform .red{
	color: red;
}

/* メールフォームここから */
.access_mailform{
	width: 760px;
	padding-top: 50px;
	padding-bottom: 50px;
	padding-left: 100px;
	padding-right: 100px;
	margin-bottom: 50px;
	overflow: hidden;
	box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.2);
	background-color: #fff;
	border-radius: 10px;
	border: solid 1px #b0b0b0;
	
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}


.access_mailform ul{
	list-style: none;
	clear: both;
}

.access_mailform li{
	float: left;
	height: 30px;
	margin-top: 10px;
	/* 以下リスト内中央揃え */
	overflow: hidden;
	display: -webkit-box; /* safari, Chrome */
	display: -moz-box;    /* Firefox */
	display: -o-box;      /* Opera */
	display: -ms-box;     /* IE */
	-webkit-box-align: center; /* safari, Chrome対応 */
	-moz-box-align: center;    /* Firefox対応 */
	-o-box-align: center;      /* Opera対応 */
	-ms-box-align: center;     /* IE対応 */
}


.access_mailform .list_left{
	width: 23%;
	background: #eaeaea;
	padding-left: 10px;
}

.access_mailform .list_right{
	width: 72%;
	padding-left: 10px;
}

.access_mailform .mailform_taishosha li{
	height: 40px;
}

.access_mailform .mailform_naiyo li{
	min-height:150px;
	height: 100%;
}

.soshin{
	clear: both;
	margin: 50px 0px 0px 210px;
}


/* ポップアップウィンドウ */
/* common setting */
.popup {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #fff;
    overflow: hidden;
    z-index: 10000;
    border-radius: 5px;
    border: solid 1px #b0b0b0;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
	background-color: #fff;
}

.popup_inner {
    padding: 15px;
}

.close{
	padding-bottom: 10px;
	text-align: right;
	color: #919191;
}

.close a{
	font-size: 12px;
	color: #919191;
}

/* individual setting */
#popup1 {
    width: 300px;
}
