@charset "utf-8";
/* ▼▼▼CSS初期化▼▼▼------------------------------------------------------------ */

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{
    margin:0;padding:0;
}
table{
    border-collapse:collapse;border-spacing:0;
}
fieldset,img{ border:0; }
address,caption,cite,code,dfn,em,strong,th,var{
    font-style:normal;font-weight:normal;
}
li { list-style:none; } caption,th{ text-align:left; }
h1,h2,h3,h4,h5,h6{
    font-size:100%;font-weight:normal;
}
q:before,q:after{ content:''; }
abbr,acronym{ border:0;font-variant:normal; }
sup{ vertical-align:text-top; }
sub{ vertical-align:text-bottom; }
input,textarea,select{ font-family:inherit;font-size:inherit;font-weight:inherit; }
input,textarea,select{ *font-size:100%; }
legend{ color:#000; }

/* ------------------------------------------------------------------------- */

body {
	background-color:#fff;
	font-size: 16px;
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	text-align:center ;
	margin:0 auto; 
    -webkit-text-size-adjust: 100%;
}
p {
	font-size:100%;
	line-height: 1.5em;
	color: #333;
	margin:0;
	text-align: left;
}
p a:link {
	text-decoration: underline;
	color: #333;
}
p a:visited {
	text-decoration: underline;
	color: #333;
}
p a:hover {
	color: #3cb035;
	text-decoration: underline;
}
p.nondeco {
	font-size:100%;
	line-height: 1.8em;
	color: #333;
	margin:0;
	text-align: left;
}
p.nondeco a:link {
	text-decoration: none;
	color: #333;
}
p.nondeco a:visited {
	text-decoration: none;
	color: #333;
}
p.nondeco a:hover {
	color: #3cb035;
	text-decoration: none;
}
.right {
	text-align:right;
}
.center {
	text-align:center;
}
/* font 大きく*/
.large_18px {
	font-size: 113%;
}
.large_21px {
	font-size: 132%;
}
.large_24px{
	font-size: 150%;
}
.large_36px{
	font-size: 225%;
}
/* font 小さく */
.small_14px {
	font-size: 88%;
}
.small_12px {
	font-size: 75%;
}
.small_12px_lhs {
	font-size: 75%;
	line-height:1.2em;
}
.bolder {
	font-weight:bolder;
}
.leftmargin2em {
	margin-left:2em;
}
.leftmargin4em {
	margin-left:4em;
}
.rightmargin025em {
	margin-right:0.25em;
}
.green {
 	color: #3cb035;
}
.white {
 	color: #ffffff;	
}
.red {
 	color: #ff0000;	
}
.mr3 {
	margin-right:3px;
}
.mr10 {
	margin-right:10px;
}
.mt10{
	margin-top:10px;
}
.mt20{
	margin-top:20px;
}
.mt30{
	margin-top:30px;
}
.mb10{
	margin-bottom:10px;
}
.mb20{
	margin-bottom:20px;
}
.mb30{
	margin-bottom:30px;
}
.mb40{
	margin-bottom:40px;
}
.mb50{
	margin-bottom:50px;
}
.mb1{
	margin-bottom:1em;
}
.ml20{
	margin-left:20px;
}
.text-align_left{
	text-align: left;
}
/* ▼▼▼img_hover▼▼▼---------------------------------------------------------- */
a.hover_img{
    background-color:#fff; /*背景に白を設定*/
    display:block; /*ブロック化重要！*/
    }
a.hover_img img{
    transition:all 0.3s ease;
    }
a:hover.hover_img img{
    opacity: 0.7;
    filter: alpha(opacity=70);
    }

/* ▼▼▼クリアフィックス▼▼▼---------------------------------------------------------- */
.clearfix:before,
.clearfix:after {
    content:"";
    display:table;
}
.clearfix:after {
    clear:both;
}
.clearfix {
    zoom:1;
}
/* ▼▼▼ダミーの箱▼▼▼---------------------------------------------------------- */
.dammy_box{
	width:1000px;
	background:rgba(47,45,179,1.00);
	margin: 60px auto 0;
	height:2000px;
}
/* ▼▼▼ヘッダー▼▼▼---------------------------------------------------------- */
#header {
	width:1000px;
	height:100px;
	margin:0 auto;
	padding:20px 0;
}
.header_left {
	float:left;
	height:100px;
	background-image:url(../img/img_logo.png);
	background-repeat: no-repeat;
	background-size:100px 100px;
	padding-left:125px;
}
.header_right {
	float:right;
	width:250px;
}
/* ▼▼▼ナビゲーション▼▼▼---------------------------------------------------------- */
#nav {
	width: 100%;
	height:50px ;
	margin: 0 auto;
	}
.nav_container {
	width:1000px;
	height:50px ;
	background:#3cb035;
	margin: auto;
}
.nav {
	float:left;
	font-size: 113%;
	line-height: 50px;
	}
.nav li {
	list-style: none;
	float: left;
	}
.nav li a {
	text-decoration: none;
	height: 50px;
	color: #fff;
	padding: 0 10px;
	display: block;
	-webkit-transition: all .1.5s;
    transition: all 0.5s;
}
.nav li a:hover:not(.active) {
	color: #fff;
	background: #44c53c;
}
.nav li a.active {
	color: #fff;
	background: #44c53c;
}
.nav li a:visited {
	color: #fff;
}

/* サブナビゲーション */
.nav li ul {
	display: none;
	position: absolute;
	z-index:2;
}
.nav li ul li {
	float: none;
}
.nav li ul li a {
	color:#fff;
	text-align:left;
	padding: 5px 10px;
	background: rgba(90,90,90,0.85);
}
.fixed {
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 10000;
}
/* ▼▼▼フッター▼▼▼---------------------------------------------------------- */
#footer {
	width:100%;
	min-width:1000px;
}
.footer {
	width:100%;
	background-color:rgba(238,238,238,1.00)
}
.footer_container{
	width:1000px;
	margin:auto;
	padding:40px 0;
}
.footer_container_left {
	float:left;
	width:480px;
}
.footer_container_left_list {
	float:left;
	width:200px;
	margin:0 40px 0 0;
}
.footer_container_left_list li{
	list-style-type: none;
}
.footer_container_left_list p {
	line-height:2em;
	color: #333;
	margin:0;
	text-align: left;
}
.footer_container_left_list p a:link {
	text-decoration: none;
	color: #333;
}
.footer_container_left_list p a:visited {
	text-decoration: none;
	color: #333;
}
.footer_container_left_list p a:hover {
	color: #3cb035;
	text-decoration: underline;
}
.footer_container_left_banner {
	float:left;
	width:480px;
	hight:100px;
	padding:40px 0 0 0;
}
.footer_container_right {
	float:right;
	width:250px;
}
.footer_container_right_text{
	margin-top:15px;
}
#copyright{
	width:100%;
	height:50px ;
	background:#3cb035;
	margin: 0 auto;
	color:#fff;
	line-height:50px;
}
/* ▼▼▼ページトップへのボタン▼▼▼---------------------------------------------------------- */
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 80%;
}
#page-top a {
    background: rgba(90,90,90,0.85);
    text-decoration: none;
    color: #fff;
    width: 100px;
    padding: 30px 0;
    text-align: center;
    display: block;
    border-radius: 5px;
}
#page-top a:hover {
    text-decoration: none;
    background: rgba(153,153,153,0.85);
}
/* ▼▼▼ボディ▼▼▼---------------------------------------------------------- */
#mainimg{
	width:1000px;
	height:400px;
	margin:0 auto;
}
.top_banner_wrappper{
	width:1000px;
	height:100px;
	margin:0 auto;
}
.top_banner{
	width:500px;
	height:100px;
	float:left;
}
#contents_container{
	width:1000px;
	margin: 50px auto 120px;
}
.top_news{
	width:900px;
	margin:0 auto;
}
.top_news_title {
	border-bottom: 1px solid #3cb035;
}
.top_news_contents {
	width: 900px;
	padding:20px 0px;
}
.top_news_contents dl {
	margin-left: 0px;
}
.top_news_contents dt,dd {
	padding: 0px;
}
.top_news_contents dt {
	list-style-type: none;
	clear: left;
	float: left;
	width: 120px;
	padding-bottom: 1em;
	text-align: left;
}
.top_news_contents dd {
	margin-left: 120px;
	padding-bottom: 1em;
}
.contents_wrapper{
	width:1000px;
	margin-top:50px;
}
.contents_main_titlebar{
	width:1000px;
	height:70px;
	background-color: #eef3e0;
	border-bottom: 3px solid #3cb035;
}
.contents_main_titlebar p{
	color:#3cb035f;
	line-height: 70px;
	padding-left:10px;
}
.contents_titlebar{
	width:1000px;
	height:40px;
	background-color: #3cb035;
}
.contents_titlebar p{
	color:#fff;
	line-height: 40px;
	padding-left:10px;
}
.contents_box{
	margin-top:30px;
}
.contents_box_95{
	margin-left:5%;
	width:95%;
}
.contents_box_half{
	float:left;
	margin-left:50px;
	width:450px;
}
.contents_subtitlebar{
	border-left: 5px solid #3cb035;
	border-bottom: 1px solid #3cb035;
	padding-left:5px;
}
ul.topnumlist  {
  position: relative;
  margin: 20px 0 0 25px;
  padding: 0
}
ul.topnumlist li  {
  list-style: none;
  list-style-position: outside;
  margin: 0;
  padding-left: 1.25em
}
ul.topnumlist li span {
  position: absolute;
  left: 0;
  margin: 0
}
.top_flow_box {
	float:left;
	width:20%;
	margin-left:5%;
}
.tfb_titlebar {
	line-height:25px;
	background-color:#66cccc;
	margin-bottom:10px;
}
.tfb_menu {
	line-height:25px;
	margin-bottom:10px;
}
.img_box_right{
	float:right;
	margin-left:50px;
}
table#company {
	width:100%;
	border-top: 1px solid #3cb035;
	border-collapse: collapse;
}
table#company th,td {
	padding:1em;
	border-bottom: 1px solid #3cb035;
}
table#company th {
	width:20%;
	background-color: #eef3e0;
	border-right: 1px solid #3cb035;
}
table#company td {
	border-right: none;
}
.area_map_half {
	float:left;
	width:45%;
	padding:0 2%;
}
.area_map_half2 {
	float:left;
	width:45%;
	padding:0 2%;
	border-left:1px solid #ccc;
}
ul.privacylist  {
	position: relative;
	margin: 10px 0 0 20px;
	padding: 0
}
ul.privacylist li  {
	list-style: disc;
	list-style-position: outside;
	margin: 0;
}
.voices_img {
	float:left;
	width:200px;
}
.voices_text {
	float:right;
	width:50%;
}
.voices_text_line {
	border-bottom:1px dotted #333;
}
table#priceline {
	width:100%;
	border-top: 1px solid #3cb035;
	border-collapse: collapse;
	margin: 20px 0 10px;
}
table#priceline th,td {
	padding:0.5em;
	border-bottom: 1px solid #3cb035;
}
table#priceline th {
	width:26.6%;
	background-color: #eef3e0;
}
table#priceline td {
	border-right: none;
}
table#pricetable {
	width:100%;
	border-top: 1px solid #3cb035;
	border-left: 1px solid #3cb035;
	border-collapse: collapse;
	margin: 5px 0 20px;
}
table#pricetable th,td {
	padding:0.5em;
	border-right: 1px solid #3cb035;
	border-bottom: 1px solid #3cb035;
}
table#pricetable th {
	text-align: center;
	font-weight: bolder;
	color:#3cb035;
	width:26.6%;
	background-color: #eef3e0;
}
table#pricetable td {
	text-align: center;
	width:14%;
}
table#pricetable_86 {
	width:85.5%;
	border-top: 1px solid #3cb035;
	border-left: 1px solid #3cb035;
	border-collapse: collapse;
	margin: 5px 0 20px;
}
table#pricetable_86 th,td {
	padding:0.5em;
	border-right: 1px solid #3cb035;
	border-bottom: 1px solid #3cb035;
}
table#pricetable_86 th {
	text-align: center;
	font-weight: bolder;
	color:#3cb035;
	width:26.6%;
	background-color: #eef3e0;
}
table#pricetable_86 td {
	text-align: center;
	width:14%;
}
.video_box {
	float:left;
	width:450px;
	margin:0 0 50px 50px;
}
.recruit_btn {
	float:left;
	display: block;
	width:44%;
	margin-left:5%;
	border:1px solid #3cb035;
}
.recruit_btn--title{
	text-align: left;
	font-size:120%;
	font-weight:bolder;
	color:#3cb035;
	padding:10px;
background: -webkit-linear-gradient(bottom, rgba(221,221,221,1) 0%, rgba(255,255,255,1) 100%);
background: -o-linear-gradient(bottom, rgba(221,221,221,1) 0%, rgba(255,255,255,1) 100%);
background: linear-gradient(to top, rgba(221,221,221,1) 0%, rgba(255,255,255,1) 100%);
}
.recruit_btn--comment{
	text-align: left;
	color:#333;
	padding:10px;
}
.btn,
a.btn,
button.btn {
display: inline-block;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-transition: all 0.3s;
transition: all 0.3s;
text-align: center;
vertical-align: middle;
text-decoration: none;
}
.btn--kwsk,
a.btn--kwsk {
	color: #fff;
	padding: 0.3em 1em;
	background-color: rgba(153,153,153,1.0);
}
.btn--kwsk:hover,
a.btn--kwsk:hover {
  color: #fff;
  background: rgba(153,153,153,0.85);
}
.recruitlist li{
    list-style-type: none;
    position: relative;
    padding-left: 0.8em;
	color:#333;
    }
.recruitlist li:before {
    width: 8px;
    height: 8px;
    display: block;
    position: absolute;
    left: 0;
    top: 0.5em;
    content: "";
    background: #555;
    }
table.recruitline {
	width:100%;
	border-top: 1px solid #3cb035;
	border-collapse: collapse;
	margin: 0px 0 10px;
}
table.recruitline th,td {
	padding:0.5em;
	border-bottom: 1px solid #3cb035;
}
table.recruitline th {
	width:15%;
	background-color: #eee;
}
table.recruitline td {
	border-right: none;
}
.recruitlist--num li{
    list-style-type:decimal;
    position: relative;
	margin-left:20px;
	color:#333;
    }
