@charset "UTF-8";

/* すべてのページに適用される */
html{
	overflow-y: scroll;
	overflow-x:hidden;
}
body{
	font-size:14px;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, Verdana, Meiryo, "M+ 1p", sans-serif;
	display: block;
	margin:0;
}


	@media(max-width:767px){
	    body {
	        font-size: 12px;
	    }
	}

*{
	
	margin: 0;
	padding: 0;
	line-height:1.6;
	letter-spacing:0.4px;
        font-weight: normal;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

.u-cf:after{
	content:".";
	display: block;
	height:0;
	clear: both;
	visibility: hidden;
}
a {
	text-decoration: none;
	       
}
img{
	max-width: 100%;
	height: auto;
}

a:hover img.hoverImg{
	opacity:0.8;
	filter:alpha(opacity=80);
	-ms-filter: “alpha( opacity=80 )”;
	transition: 0.7s;
}


/*---------------------------追加CSS---------------------------------*/
h2{margin:28px;}
#main p{margin:19px 0;}
.title p{margin:19px 0;}
.text{margin:19px 0;}
//#main img{margin:16px;}
h3{margin:28px 0;}
#wrap{
	position:relative;
	top:20px;}
/*---------------------------追加CSS---------------------------------*/


/* すべてのページに適用 - ヘッダー - */
.header {
	width:1100px;
	margin:0 auto 4px;
	
}
.u-cf{
	display: block;
	min-height: 1%;
}

.header .logo {
	float: left;
	width: 174px;
	margin: 25px 0 0;
}
.header .header-01{
	float: right;
	text-align:right;
	margin:0 0 -5px;
	width:920px;
}
.header .header-01 .header-02{
	width:626px;
	float: right;
}
.header .header-01 .header-02 h1{
	font-size: 12px;
	color: #9c9c9c;
	float: left;
	width: 272px;
	margin: 10px 16px 0 0;
}

.header .header-01 .header-02 .header-03{
	text-align: center;
	float: left;
	width: 221px;
	margin: 0 20px 0 0;
}
.header .header-01 .header-02 .header-03 a{
	padding: 5px 0 6px;
	background-color: #0059c6;
	display: block;
	color: #fff;
	font-size: 14px;
	
}
.header .header-01 .header-02 .header-03 img{
	margin:0px 10px 0 0;
	vertical-align: sub;
}
.header .header-01 .header-02 .header-04{
	text-align:center;
	float: left;
	width: 97px;
}
.header .header-01 .header-02 .header-04 a{
	padding: 6px 0 6px;
	background-color: #2b2b2b;
	display:block;
	color:#fff;
	font-size: 14px;
}
.header .header-05{
	text-align: right;
	clear: both;
}
.header .header-05 p {
	float: right;
	width: 400px;
	color:#000;
	font-size: 34px;
	font-weight: bold;
}
.header .header-05 img {
	margin: 0 10px 0 0 ;
	vertical-align: baseline;
}
	@media(max-width:767px){
		.header {
			width:100%;
		}
		.header .logo {
			float:none;
			margin: 25px 0 0 3%;
				}
		.header .header-01 .header-02 h1{
			display:none;
		}
		.header .header-01 .header-02 .header-03{
			display:none;	
		}
		.header .header-01 .header-02 .header-04{
			display:none;	
		}
		.header .header-01 .header-02 .header-04 a{
			display:none;	
		}
		.header .header-05 p {
			display:none;
		}
		.header .header-05 img {
			display:none;
		}
	}
/* すべてのページに適用 - ナビ - */
.nav-menu {
	width: 920px;
	float: right;
	margin: 10px 0 0;
}

.nav-menu li{
	text-align: center;
	display: inline-block;
}
.nav-menu li:first-child a{
	border-right: 1px solid #dfdfdf;
	border-left: 1px solid #dfdfdf;
}
.nav-menu li a{
	font-size: 19px;
	color: #230000;
	padding: 3px 14px;
}
.nav-menu li a{
	font-size: 19px;
	color: #230000;
	padding: 3px 14px;
	border-right: 1px solid #dfdfdf;
}
.nav-menu ul li ul{ 
	position:absolute; display:none;
	background-color:#fff;
	margin-left:-5px;	
}
.nav-menu ul li ul li { 
	display:block;
} 
.nav-menu ul li ul li:first-child a{
 	border-style: none;
}
.nav-menu ul li ul li a { border-style: none;}
.nav-menu ul li a:hover{
	color:#ff6f00;
}
.navToggle{
	display:none;
}
	@media(max-width:767px){

		nav.globalMenuSp{
			position: fixed;
			z-index: 2;
			top: -20px;
			left: 0;
			background: #fff;
			color: #000;
			text-align: center;
			transform: translateY(-100%);
			transition: all 0.6s;
			width: 100%;
		}
		nav.globalMenuSp ul{
			background: #ccc;
			margin: 0 auto;
			padding: 0;
			width: 100%;
		}
		nav.globalMenuSp ul li{
			font-size: 1.1em;
			list-style-type: none;
			padding: 0;
			width: 100%;
			border-bottom: 1px dotted #333;
		}
		nav.globalMenuSp ul li:last-child{
			padding-bottom: 0;
			border-bottom:none;
		}
		nav.globalMenuSp ul li a{
			display: block;
			color: #000;
			padding: 1em 0;
		}
		nav.globalMenuSp.active{
			transform: translateY(0%);
		}
		.navToggle{
			display: block;
			position: fixed;
			right: 9%;
			top:5%;
			width:42px;
			height:51px;
			cursor:pointer;
			z-index:3;
			background: #666;
			text-align: center;
		}
		.navToggle span{
			display: block;
			position: absolute;
			width: 30px;
			border-bottom: solid 3px #eee;
			-webkit-transition: .35s ease-in-out;
			-moz-transition: .35s ease-in-out;
			transition: .35s ease-in-out;
			left: 6px;
		}
		.navToggle span:nth-child(1){
			top:9px;
		}
		.navToggle span:nth-child(2){
			top: 18px;
		}
		.navToggle span:nth-child(3){
			top:27px;
		}
		.navToggle span:nth-child(4){
			border: none;
			color: #eee;
			font-size: 9px;
			font-weight: bold;
			top:34px;
		}
		.navToggle.active span:nth-child(1){
			top:18px;	
			left:6px;
			-webkit-transform: rotate(-45deg);
			-moz-transform: rotate(-45deg);
			transform: rotate(-45deg);
		}
		.navToggle.active span:nth-child(2),
		.navToggle.active span:nth-child(3) {
		    top: 18px;
		    -webkit-transform: rotate(45deg);
		    -moz-transform: rotate(45deg);
		    transform: rotate(45deg);
		}
	}


/* 個別のスタイル */
/* index.html */
/* - メイン - メインビジュアル */
.main .main-img {
    height: auto;
    margin: 20px 0 45px;
}

.main .main-img .slider{
    margin: 0px auto;
    max-width:  1400px;
    min-width:1230px;
    height:auto:
    background-position:center top;
}
/*slick setting*/
.slick-prev:before,
.slick-next:before {
    color: #0059c6;
}
	@media(max-width:767px){

		.main .main-img {
		    height: auto;
		    margin: 20px 0 50px 0;
		}
		.main .main-img .slider{		   
		    max-width:  767px;
		    min-width:350px;
		    height:auto:
		}
	}

/* - メイン - 上の小バナー */
.style-01, .style-02 {
    text-align: center;
    font-family: "游明朝 Medium",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro","ＭＳ 明朝",serif;
    font-size: 34px;
    margin: 0 0 45px;
    color: #000;
    font-weight: bold;
}
.bana{
	width: 1100px;
	margin:0 auto 72px;
}
.bana a:first-child{
	margin:0;
}
.bana a{
	display:block;
	height:373px;
	float:left;
	border: 1px solid #000;
	margin:0 0 0 18px;
	width:258px;
	color:#000;
}
.bana a .bana-p1{
	padding: 14px 0 16px;
	text-align:center;
}


.bana a h3{
	text-align: center;
	font-size: 19px;
	padding: 0 0 18px;
	margin: 0 0 18px;
	position: relative;

}
.bana a h3:before{
	content:"";
	position: absolute;
	left:50%;
	width: 146px;
	height:1px;
	background-color:#0059c6;
	bottom: 10px;
	margin:0 0 0 -73px;
}
.bana a .bana-p2 {
	font-size: 16px;
	padding: 0 14px;
}

	@media(max-width: 767px){
	    .style-01 {
	        font-size: 24px;
	        margin: 0 10px 10px 10px;
	    }
	    .bana{
	        width: 100%;
	        margin:0 auto;
	        text-align: center;
	    }
	    .bana a:first-child{
	        margin:10px;
	    }
	    .bana a{
	        display:inline-block;
	        height:373px;
	        margin:10px;
	        width:258px;
	        float:none;
	        overflow: hidden;
	    }
	    .bana a .bana-p2 {
	        font-size: 16px;
	        padding: 0 14px;
	    }
.bana a h3{
	
	font-size: 20px;
	padding: 0 0 18px;
	margin: 0 0 18px;
	

}

	}

/* - メイン - 下の大バナー */
.t-bana{
	background-image: url(../images/back-1.jpg) ;
	background-repeat:no-repeat;
	background-position: center;
	background-size: cover;
        -moz-background-size: cover;
        -webkit-background-size: cover;
        -o-background-size: cover;
        -ms-background-size: cover;
	height:471px;
	display:block;
	padding:62px 0 0;
}
.t-bana .box{
	width: 976px;
	height: 346px;
	background-color: #0059c6;
	background: rgba(0,89,198,.7);
	margin: 0 auto;
}
.t-bana .box:hover {
        background:rgba(0,89,198,0.5);
	transition: 0.7s;
}
.t-bana2{
	background-image: url(../images/back-2.jpg) ;
}
.t-bana3{
	background-image: url(../images/back-3.jpg) ;
}
.t-bana4{
	background-image: url(../images/back-4.jpg) ;
}
.t-bana h1, .t-bana h2 {
	text-align: center;

}
.t-bana h1{
	display: block;

}
.t-bana h1{
	font-family: "游明朝 Medium",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro","ＭＳ 明朝",serif;
        padding: 24px 0 20px;
	margin-bottom: -1px;
        font-size: 38px;
	color:#fff;
}
.t-bana h1{
	display: block;
}
.t-bana h2{
	font-family: "游明朝 Medium",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro","ＭＳ 明朝",serif;
        font-size: 30px;
	color:#fff;
        margin: 0 0 25px;
	
}
.t-bana h2{
	display: block;
}
.t-bana p{
	width: 680px;
	margin: 0 auto;
	
	line-height:1.7;
}
.font16{
	font-size: 20px ;
	color:#fff;
}

	@media(max-width:767px){
	    .t-bana {
	        height: auto;
	        padding-bottom: 60px;
	    }
	    .t-bana .box{
	        width: 100%;
	        height: auto;
		padding-bottom:20px;
	    }
       	   .t-bana h1{
	        padding: 24px 0 15px;
		margin-bottom: -1px;
	        font-size: 32px;
	    }
	   .t-bana h2{
	        font-size: 24px;
	        margin: 0 0 20px;
   	    }
	    .t-bana p{
	        width: 90%;
	    }
	   .font16{
	        font-size: 16px ;
 	    }
 	}

/* すべてのページに適用 - アサイド - */
.contact{

	background-image: url(../images/back-5.jpg) ;
	background-repeat:no-repeat;
	background-position: center;
	background-size: cover;
	height:410px;

}
.section-box {
	width:1100px;
	margin-left:auto;
	margin-right:auto;
	overflow:hidden;
	text-align:center;
}

.contact h2{
	font-size:38px;
	font-weight:normal;
	color:#ffffff;
	padding:24px 0 3px;
	margin:0;
	font-family:"游明朝 Medium",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro","ＭＳ 明朝",serif;
	
}
.contact1{
	font-size: 30px;
	color:#ffffff;	
	padding: 0;
	font-family: "游明朝 Medium",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro","ＭＳ 明朝",serif;
	margin-top:0;
	margin-bottom:53px;
}
.contact2{
	font-size: 34px;
	color:#ffffff;
	font-weight: bold;
	margin: 0 0 10px;
}

.contact2 img{
	vartical-align:baseline;
	margin:0 10px 0 0;
}
.contact3 {
	width: 370px;
	margin: 0 auto;
}
.contact3 a{
	display:block;
	color:#ffffff;
	font-size: 30px;
	padding: 15px 0 14px;
	font-weight: bold;
	background-color: #0059c6;
	border-radius:4px;
	transition:all 0.5s linear;
}
.contact3 a:hover {
	background-color:#ff6f00;
}
	@media(max-width:767px){
		.contact{
			height:auto;
			padding:20px;
		}
		.section-box {
			width:100%;
			overflow:hidden;	
		}
		.contact h2{
			font-size:32px;
			padding:24px 0 3px;
			margin:0;

		}
		.contact1{
			font-size:20px;
			margin-bottom:20px;
		}
		.contact2{
			font-size: 30px;
			margin: 0 0 10px;
		}

		.contact3 {
			width: 100%;				
		}
		.contact3 a{
			font-size: 24px;
			padding: 15px 0 14px;
			}


	}
.bana-footer{
	text-align: center;
	border-bottom: 1px solid #ccc;	
	padding: 42px 0 42px;
}
ol,ul{
	list-style: none;
}
.bana-footer li{
	display: inline-block;
	margin: 0 50px;
}
	@media(max-width:767px){
		.bana-footer li{
			display: block;
		}
	}
/* すべてのページに適用 - フッター - */
.footerout{
	padding: 30px 0;
	width:1100px;
	margin:0 auto;
}
u-cf{
	display: block;
}
.footerout .footer-logo{
	float: left;
	width:174px;
}
.footerout .nav-footer{
	float:left;
	width: 400px;
	margin: 0 0 0 150px;
}
.footerout .nav-footer ul{
	float:left;
	width:168px;
}
.footerout .nav-footer li a {
    font-size: 16px;
    color: #444;
}
.footerout .nav-footer ul li a:hover {
	color:#ff6f00;
}
.footerout .nav-footer .nav-footer-ul {
    width: 216px;
}

.footerout .address {
    float: right;
}
.footerout .address dl{
	color: #444;
	margin:0 0 3px;
}
.footerout .address dt{
	font-weight: bold;
	line-height: 1.3;
}
.footerout{
	padding: 30px 0;
	width:1100px;
	margin:0 auto;
}.footerout{
	padding: 30px 0;
	width:1100px;
	margin:0 auto;
}
.copyright{
	text-align: center;
	color: #fff;
	font-size: 11px;
	font-weight: bold;
	background-color: #444;
	padding: 8px 0 7px;
}
	@media(max-width:767px){
		.footerout{
			width:100%;
		}
		.footerout .footer-logo{
			float: none;
			width:100%;
			text-align:center;
			margin-bottom:20px;
		}
		.footerout .nav-footer{
			float:none;
		
			width: 100%;
			text-align:center;
			margin:auto;
		}
		.footerout .nav-footer ul{
			float:none;
			width:100%;
			text-align:center;
			margin:auto;
		}
		.footerout .address {
	 	        float: none;
		        text-align:center;
			margin-top:20px;
		}
	}
/* 個別のスタイル */
/* recruit.html */
.main .main-img-02{
	background-image: url(../images/kyujin-main.jpg) ;
	background-repeat:no-repeat;
	background-position: center ;
	background-size: cover;
	    -moz-background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
}
.main .main-img-02{
	height: 414px;
	margin:20px 0 45px;
}
.main .main-img-02 .main-img-03{
	margin: 0 auto;
	position:relative;
	height:414px;
}

.main .main-img-02 .main-img-03 p{
	position: absolute;
	top:50%;
	left:50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform : translate(-50%,-50%);
	transform : translate(-50%,-50%);
	background-color:#000;
	background: rgba(0,0,0,.6);
	width: 398px;
}
.main .main-img-02 .main-img-03 p span{
	display: table;
	text-align: center;
	width: 398px;
}
.main .main-img-02 .main-img-03 p span b{
	display: table-cell;
	vertical-align: middle;
	height: 142px;	
	color: #fff;
	font-family: "游明朝 Medium",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro","ＭＳ 明朝",serif;
    font-size: 38px;
}

	@media(max-width:767px){
		.main .main-img-02{
			
			height: auto;
			margin:20px 0 45px;
		}
		.main .main-img-02 .main-img-03{
			margin: 0 auto;
			position:relative;
			height:414px;
		}

		.main .main-img-02 .main-img-03 p{
			position: absolute;
			top:50%;
			left:50%;
			-ms-transform: translate(-50%,-50%);
			-webkit-transform : translate(-50%,-50%);
			transform : translate(-50%,-50%);
			background-color:#000;
			background: rgba(0,0,0,.6);
			width: 50%;
		}
		.main .main-img-02 .main-img-03 p span{
			display: table;
			text-align: center;
			width: 100%;
		}
		.main .main-img-02 .main-img-03 p span b{
			display: table-cell;
			vertical-align: middle;
			height: 142px;	
			color: #fff;
			font-family: "游明朝 Medium",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro","ＭＳ 明朝",serif;
		    font-size: 38px;
		}

	}
.main-box{
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
	width:1100px;
}
.hitokoto{
	margin-bottom: 80px ;
}

.style-01-line{
	position: relative;
}
.style-01-line:before {
	position: absolute;
	left: 50%;
	bottom: -13px;
	height: 3px;
	width: 137px;
	margin: 0 0 0 -68px;
	background-color: #0059c6;
	display: block;
	content: " ";
}

.text1{
	color:#000;
	font-size: 19px;
}
.section {
	margin:0 0 80px;
}
.section .section-1{
	width: 641px;
	float:left;
}
.style-03-line {
	position:relative;
}
.style-03{
	text-align: left;
	font-family: "游明朝 Medium",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro","ＭＳ 明朝",serif;
	font-size: 28px;
	margin: 0 0 45px;
	color: #000;
	font-weight: bold;
}
.style-03-line:before{
	position:absolute;
	left: 0;
	bottom: -13px;
	height: 3px;
	width: 137px;
	background-color: #0059c6;
	display: block;
	content:" " ;
}
.section .img-p1{}
	float: right;
	width: 403px;
	text-align: right;
}
img{
	max-width: 100%;
	height: auto;
	border:0;
	vertical-align: bottom;
}

.section-migi .section-1 {
	width:641px;
	float: right;
	margin: 0 0 0 55px;
}
.section-migi .img-p1 {
	float: left;
	width:403px;
	text-align: left;
}
.section-2{
	margin-top: 40px ;
}
.boshu .boshu-1{
	float: left;
	width: 550px;
}
.boshu dl{
	margin: 0 0 20px;
}
.boshu dt{
	color: #000;
	font-size: 19px;
	font-weight: bold;
	position: relative;
	margin: 0 0 30px;
}
.boshu dt:before{
	position: absolute;
	left:0;
	bottom: -13px;
	height:3px;
	width:137px;	
	background-color: #0059c6;
	display: block;
	content: " " ;
}
.boshu dd{
	color: #000;
	font-size: 19px;
}

	@media(max-width: 768px){
		.main-box{
			margin-left: auto;
			margin-right: auto;
			margin-bottom: 50px;
			width:100%;
		}
		.hitokoto{
			margin-bottom: 80px ;
		}
	
		.style-01-line {
			position: relative;
		}
		.style-01-line:before {
			display:none;
}

		.style-01-line span{
			position: relative;
		}
		.style-01-line span:before {
			position: absolute;
			left: 0;
			bottom: -13px;
			height: 3px;
			width: 100%;
		
			background-color: #0059c6;
			display: block;
			content: " ";
			text-align:center;
		}
				
		.text1{
			text-align:left;
			font-size: 16px;
			margin :30px 20px 10px 20px;
		}
		.section {
			margin:-20px 0 80px;
		}
		.section .section-1{
			width: 100%;
			float:none;
		}
		.style-03-line {
			position:relative;
				}
		.style-03{
			text-align: center;
			font-family: "游明朝 Medium",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro","ＭＳ 明朝",serif;
			font-size: 22px;
			margin: 0 0 45px;
			color: #000;
			font-weight: bold;
		}
		
		.style-03-line:before{
			position:absolute;
			left: 35%;
			bottom: -13px;
			height: 3px;
			width: 30%;
			background-color: #0059c6;
			display: block;
			content:" " ;
		}
		.section .img-p1{
			float: none;
			width: 100%;
			text-align: center;
		}
		img{
			max-width: 100%;
			height: auto;
			border:0;
		
		}

		.section-migi .section-1 {
			width:100%;
			float: none;
			margin: 0 0 0 10px;
		}
		.section-migi .img-p1 {
			float: none;
			width:100%;
			text-align: center;
		}
		.section-2{
			margin-top: 40px ;
		}
		.boshu .boshu-1{
			float: none;
			width: 100%;
		}
		.boshu dl{
			margin: 0 0 20px 60px;
		}
		.boshu dt{
			color: #000;
			font-size: 19px;
			font-weight: bold;
			position: relative;
			margin: 0 0 30px;
		}
		.boshu dt:before{
			position: absolute;
			left:0;
			bottom: -13px;
			height:3px;
			width:20%;	
			background-color: #0059c6;
			display: block;
			content: " " ;
		}
		.boshu dd{
			color: #000;
			font-size: 16px;
		}

	}
@media screen and (min-width: 767px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 767px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
}