@charset "utf-8";
/* CSS Document */

@import url(//fonts.googleapis.com/earlyaccess/notosansjp.css);

html{
	height: 100%;
}
body{
	/*background: linear-gradient(-135deg, #006598, #001464);*/
	margin: 0;
	height: 100%;
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
	
}


/* = Selected Text ドラッグした際の背景色
----------------------------------------------- */

::selection {
	background-color:#FFC9CA;
}

 ::-moz-selection {

    background:#FFC9CA; /* Firefox */
}

/* = Selected Text ドラッグした際の背景色
----------------------------------------------- */


@media(max-width:769px){
.pconly{
	display:none;
	}
}

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

.inner{
	width: 1098px;
	margin: 0 auto;
}

header{
	padding-top: 20px;
	padding-bottom: 20px;
	
	position: fixed;
    width: 100%;
    z-index: 100;
	background-color: rgba(49, 50, 50, 0.3);
}


header .inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header h1{
	width: 200px;
	margin-right: auto;
}



@media screen and (max-width:960px){
	.inner{
		width: 90%;
	}
	header{
		padding: 20px 0 20px 0;
		/* position: relative; 
		background-color: #fff; */
	}
	header h1{
	width: 85px;
}
}


/*ナビ部分*/
nav{
		display: none;
		position: absolute;
		top:0px;
		width: 100%;
		background-color: rgb(0 0 0 / 85%);
	 /*opacity: 0.7;*/
		left: 0;
	    z-index: 5;
	height: 100vh;
	}
	
/*header nav ul li:last-child{
		border: none;
	}
*/

	header nav ul li a{
		display: block; 
	}


.nav_inner {
	width: 1098px;
	margin: 20px auto 300px auto;
}
.nav_inner h1 {
	margin-bottom: 180px;
	width: 200px;
}


.tel {
	margin-right: 55px;
}
.t-1 {
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	margin-bottom: 5px;
}
.t-2 {
	font-family: Arial, Helvetica, "sans-serif";
	font-size: 28px;
	font-weight: bold;
	letter-spacing: 0.03em;
	color: #fff;
}
.tel img {
	width: 190px;
	height: auto;
}

@media screen and (max-width:960px){
	.nav_inner {
		width: 90%;
		margin: 20px auto;
		padding-bottom: 130px;
	}
	.nav_inner h1 {
	margin-bottom: 60px;
	width: 85px;
	}
	
	.tel {
		display: none;
	}
}


.nav_row {
	width: 580px;
	margin: auto;
	display: flex;
	justify-content:space-between;
}

.nav_01 {
	margin: 0;
	padding: 0px;
}

.nav_row .nav_01 ul {
	font-size: 37.44px;
	letter-spacing: 0.06em;
}

.nav_row .nav_01 ul a {
color: #fff;
}
.nav_row .nav_01 li {
	margin-bottom: 25px;
	font-weight: 900;
	letter-spacing: 0.06em;
}

.sub {
	font-size: 15.6px;
	margin-bottom: 10px;
}

.nav_row .nav_02 {
}

.nav_row .nav_02 h2 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 22px;
	letter-spacing: 0.06em;
	color: #fff;
}
.nav_row .nav_02 p {
	font-size: 14px;
	color: #fff;
	line-height: 1.56em;
	letter-spacing: 0.06em;
}

.icon_row {
	width: 125px;
	display: flex;
	justify-content:flex-start;
}
.icon_item img {
	width:19px;
	height: auto;
	margin: 0 15px 0 0;
}

.mb25 {
		margin-bottom: 25px;
}
.mb30 {
		margin-bottom: 31px;
}
.mb70 {
		margin-bottom: 70px;
}



@media screen and (max-width:960px){
	
.nav_row {
	width: 100%;
	justify-content:none;
	flex-direction: column;
}

.nav_01 {
	margin-bottom: 30px;
}

.nav_row .nav_01 ul {
	font-size: 30px;
}

.sub {
	font-size: 13px;
}

.nav_row .nav_02 h2 {
	margin-bottom:10px;
}

.mb30 {
		margin-bottom: 15px;
}
.mb70 {
		margin-bottom: 30px;
}

}

/*
#nav_toggle{
	display: none;
}
*/

/*開閉ボタン*/
	#nav_toggle{
		display: block;
		width: 40px;
		height: 40px;
		position: relative;
		top: 4px;
		z-index: 100;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 3px;
		background:#fff;
		position:absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;	
	}
	#nav_toggle span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:12px;
	}
	#nav_toggle span:nth-child(3){
		top:24px;
	}
	

@media screen and (max-width:960px){
	#nav_toggle{
		display: block;
		width: 30px;
		height: 30px;
		position: relative;
		top: 4px;
		z-index: 100;
	}
	#nav_toggle span{
		background:#fff;
	}
	#nav_toggle span:nth-child(1){
		top:1px;
	}
	#nav_toggle span:nth-child(2){
		top:10px;
	}
	#nav_toggle span:nth-child(3){
		top:19px;
	}
}


	/*開閉ボタンopen時*/
	.open #nav_toggle span:nth-child(1) {
			top: 12px;
		   -webkit-transform: rotate(135deg);
			-moz-transform: rotate(135deg);
			transform: rotate(135deg);
		}
		.open #nav_toggle span:nth-child(2) {
			width: 0;
			left: 50%;
		}
		.open #nav_toggle span:nth-child(3) {
			top: 12px;
			-webkit-transform: rotate(-135deg);
			-moz-transform: rotate(-135deg);
			transform: rotate(-135deg);
		}

		.open #nav_toggle{
		display: block;
		width: 40px;
		height: 40px;
		position: relative;
		bottom: 0px;
		z-index: 100;
		}
		.open #nav_toggle span{
			background: #fff;
		}


@media screen and (max-width:960px){
	.open #nav_toggle span:nth-child(1) {
			top: 10px;
		   -webkit-transform: rotate(135deg);
			-moz-transform: rotate(135deg);
			transform: rotate(135deg);
		}
	.open #nav_toggle span:nth-child(3) {
			top: 10px;
			-webkit-transform: rotate(-135deg);
			-moz-transform: rotate(-135deg);
			transform: rotate(-135deg);
		}
	
	.open #nav_toggle{
		width: 30px;
		height: 30px;
	}
}

.kv {
	font-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	background-image: url("../images/kv2.png");
	width: 100%;
	height: 100vh;
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 330px 0 0 0;
    text-align: center;
	
	font-weight: bold;
}
.kv h1 {
	font-size: 500%;
	margin-bottom: 30px;
	font-weight: bold;
}
.kv p {
	font-size: 110%;
	line-height: 1.5em;
}
.kv_line {
	width: 325px;
    height: 3px;
    background-color: #fff;
    text-align: center;
    margin: auto;
    margin-bottom: 30px;
}

@media screen and (max-width:960px){
	.kv {
		background-image: url("../images/kv2_sp.png");
	width: 100%;
	height: 600px;
		padding: 70% 0 0 0;
    text-align: center;
}
.kv h1 {
	font-size: 280%;
	margin-bottom: 20px;
}
.kv p {
	font-size: 110%;
	color: #000;
}
.kv_line {
	width: 160px;
    height: 2px;
    margin-bottom: 20px;
}
}

.main_01 {
	width: 100%;
	margin: 10px auto 0 auto;
}
.main_01 .main_item {
	margin: 0px 3px 0 3px;
}
.main_01 img {
	width: 100%;
	margin: auto;
}

.more_btn {
	text-align: center;
	width: 168px;
	height: 47px;
	background-color: #969696;
	margin: auto;
	line-height: 47px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 40px;
	clear: both;
	letter-spacing: 0.03em;
}
.more_btn a {
	color: #fff;
	display: block;

}
.more_btn a:hover {
	background-color:#3B4E92;
	border-radius: 40px;
}

.content_01 {
	width: 1098px;
	margin: 115px auto 100px auto;
	text-align: center;
	font-size: 16px;
	
	opacity : 0;
	transform: translateX(-80px);
	transition: all 2s;
}
.content_01 h2 {
	font-size: 25px;
	margin-bottom: 45px;
	letter-spacing: 0.03em;
	font-weight:900;
	color: #3B4E92;
}
.content_01 p {
	line-height: 2em;
	letter-spacing: 0.1em;
	margin-bottom: 80px;
}

@media screen and (max-width:960px){
.more_btn {
	text-align: center;
	width: 118px;
	height: 40px;
	line-height: 40px;
	font-size: 10px;
	border-radius: 20px;
}

.content_01 {
	width: 100%;
	margin: 70px auto 50px auto;
	font-size: 12px;
	
}
.content_01 h2 {
	font-size: 15px;
}
.content_01 p {
	padding: 0 5% 0 5%;
	text-align: left;
	margin-bottom: 35px;
}
}


.content_02 {
	width: 1098px;
	height: auto;
	margin:0 auto 100px auto;
	font-size: 14px;
	text-align: left;
	display: flex;
	justify-content: space-between;
	
	opacity : 0;
	transform: translateX(80px);
	transition: all 2s;
}
.content_02 h2 {
	font-size: 30px;
	color: #3B4E92;
	font-weight: 900;
	margin-bottom: 5px;
	letter-spacing: 0.06em;
}
.content_02 .sub_tit {
	font-size: 12px;
	margin-bottom: 60px;
	letter-spacing: 0.06em;
}
.content_02 .row_1 {
	width: 651px;
}

.content_02 .row_2 {
	width: 447px;
	padding-left: 48px;
	padding-top: 44px;
	padding-right: 55px;
	border-right: solid 3px #3B4E92;
	background-color: #f5f5f5;
}
.content_02 .row_2 p {
	margin-bottom: 60px;
	letter-spacing: 0.02em;
}
.content_02 img {
	width: 100%;
	height: auto;
}

.content_02 .more_btn {
	margin: 0 0 0 0;
	
}

@media screen and (max-width:960px){
	.content_02 {
	width: 100%;
	height: auto;
	margin:0 auto 60px auto;
	font-size: 10px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	padding: 0 5% 0 5%;
}
.content_02 h2 {
	font-size: 15px;
	margin-bottom: 5px;
}
.content_02 .sub_tit {
	font-size: 9px;
	margin-bottom: 25px;
}
.content_02 .row_1 {
	width: 100%;
}

.content_02 .row_2 {
	width: 100%;
	padding-left: 30px;
	padding-top: 25px;
	padding-right: 30px;
}
.content_02 .row_2 p {
	margin-bottom: 30px;
}
.content_02 img {
	width: 100%;
	height: auto;
}

.content_02 .more_btn {
	margin: 0 auto 30px auto;
	text-align: center;
}

}


.content_03 {
	width: 1098px;
	height: auto;
	margin: 0 auto 115px auto;
	text-align: center;
	font-size: 14px;
	
	opacity : 0;
	transform: translateY(50px);
	transition: all 2s;
}
.content_03 h2 {
	font-family: Arial, Helvetica, "sans-serif";
	font-size: 25px;
    margin-bottom: 45px;
    letter-spacing: 0.03em;
    font-weight: 900;
    color: #3B4E92;
}
.content_03 .row {
	display: flex;
	justify-content: space-between;
}

.content_03 .column {
	text-align: left;
	width: 355px;
	margin-bottom: 80px;
}
.content_03 h3 {
	font-size:30px;
	color: #3B4E92;
	font-weight: bold;
	margin-bottom: 5px;
	letter-spacing: 0.06em;
}
.content_03 h4 {
	font-size: 14px;
	margin-bottom: 25px;
	letter-spacing: 0.06em;
	font-weight: bold;
	font-family: Arial, Helvetica, "sans-serif";
	color: #929292;
}
.content_03 .column p {
	letter-spacing: 0.02em;
	line-height: 1.86em;
}
.content_03 .column img {
width: 100%;
	height: auto;
	margin-bottom: 40px;
}

@media screen and (max-width:960px){
	.content_03 {
	width: 100%;
	margin: 0 auto 65px auto;
	font-size: 10px;
}
.content_03 h2 {
	font-size: 12px;
	margin-bottom: 45px;
}
.content_03 .row {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.content_03 .column {
	text-align: left;
	width: 100%;
	margin-bottom: 25px;
	padding: 0 5% 0 5%;
}
.content_03 h3 {
	font-size:15px;
	margin-bottom: 5px;
}
.content_03 h4 {
	font-size: 9px;
	margin-bottom: 12px;
}
.content_03 .column img {
width: 100%;
height: auto;
margin-bottom: 20px;
}

}


.content_04 {
	margin: 0px auto 115px auto;
	width: 1098px;
	padding: 70px 50px 70px 50px;
	background-color: #f5f5f5;
	text-align: center;
	font-size: 14px;
	
	opacity : 0;
	transform: translateX(-60px);
	transition: all 2s;
}
.content_04 h2 {
	margin-bottom: 60px;
	font-size: 15px;
	letter-spacing: 0.06em;
	font-weight: bold;
	font-family: Arial, Helvetica, "sans-serif";
}
.content_04 ul {
	width: 955px;
	text-align: left;
	clear: both;
	padding-bottom: 80px;
}
.content_04 ul li {
	clear: both;
	border-bottom: solid 1px #ffffff ;
	height: 40px;
	padding-right: 37px;
	letter-spacing: 0.03em;
}
.content_04 ul li .day {
	padding-left: 37px;
	padding-right: 73px;
	letter-spacing: 0.06em;
	color: #1B5887;
}
.content_04 ul li p {
	float: left;
	margin-bottom: 10px;
	margin-top: 10px;
}

@media screen and (max-width:960px){
.content_04 {
	margin: 0px auto 65px auto;
	width: 90%;
	padding: 35px 12px 35px 12px;
	font-size: 12px;
}
.content_04 h2 {
	margin-bottom:30px;
	font-size: 12px;
}
.content_04 ul {
	width: 100%;
	padding-bottom: 30px;
}
.content_04 ul li {
	height: auto;
	padding-right: 0px;
}
.content_04 ul li .day {
	padding-left: 0px;
	padding-right: 0px;
}
.content_04 ul li p {
	float: none;
	margin-bottom: 10px;
	margin-top: 10px;
}
}


.company_01 {
	width: 1098px;
	margin: 0 auto 90px auto;
	padding-bottom: 140px;
	text-align: center;
	font-size: 16px;
	border-bottom: solid 2px #f5f5f5;
}

.company_01 .item {
	opacity : 0;
	transform: translateY(60px);
	transition: all 2s;
}

.company_01 .main_visual {
	margin-bottom: 140px;
	height: 600px;
	background-image: url("../images/com01.jpg");
	background-repeat: no-repeat;
	padding: 25% 0 0 0;
    font-size: 50px;
    color: #fff;
}

.company_01 h2 {
	font-size: 25px;
	color: #3B4E92;
	letter-spacing: 0.03em;
	font-weight:900;
	margin: 0 auto 140px auto;
}
.company_01 p {
	line-height: 2em;
	letter-spacing: 0.1em;
}
.company_02 {
	width: 1098px;
	margin: 0 auto 170px auto;
	text-align: center;
	font-size: 14px;
	
	opacity : 0;
	transform: translateY(60px);
	transition: all 2s;
}
.company_02 h2 {
	font-size: 16px;
	margin-bottom: 90px;
	font-weight: bold;
	font-family: Arial, Helvetica, "sans-serif";
	letter-spacing: 0.06em;
}
.company_02 img {
	width: 100%;
	height: auto;
}

.com_row {
	font-size: 16px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.com_left {
	width: 521px;
}
.com_row li {
	width: 100%;
	margin: 0px;
	line-height:1.5em;
	padding: 22px 0px 15px 0;
	border-bottom: solid 1px #666;
	letter-spacing: 0.13em;
	font-weight: 600;
}
.com_row ul li p{
	float: left;
}
.com_right {
	width: 521px;
}

.c_1 {
	width: 223px;
	text-align: left;
	padding-left: 32px;
}
.c_2 {
	width: 287px;
	text-align: left;
}
.c_li_a {
	height: 67px;
}
.c_li_b {
	height: 100px;
}
.c_li_c {
	height: 151px;
}

@media screen and (max-width:960px){
.company_01 {
	width: 100%;
	margin: 0 auto 45px auto;
	padding-bottom: 70px;
	font-size: 12px;
}
.company_01 .main_visual {
	margin-bottom: 60px;
	height: 300px;
	background-image: url("../images/com01.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	padding: 40% 0 0 0;
    font-size: 25px;
    color: #fff;
}
.company_01 h2 {
	font-size: 14px;
	margin: 0 auto 60px auto;
}
.company_01 p {
		padding: 0 5% 0 5%;
		text-align: left;
}
	
.company_02 {
	width: 100%;
	margin: 0 auto 80px auto;
	font-size: 10px;
}
.company_02 h2 {
	font-size: 9px;
	margin-bottom: 65px;
}
.company_02 img {
	width: 90%;
	height: auto;
	margin: auto;
}


.com_row {
	font-size: 12px;
	flex-direction: column;
}
.com_row ul {
	width: 90%;
	margin: auto;
}
.com_left {
	width: 100%;
}

.com_row li {
	width: 100%;
	margin: 0px;
	line-height:1.5em;
	padding: 22px 0px 8px 0;
	border-bottom: solid 1px #666;
	letter-spacing: 0.13em;
	font-weight: 600;
}
.com_row ul li p{
	float: left;
}
.com_right {
	width: 100%;
}

.c_1 {
	width: 35%;
	padding-left: 2%;
}
.c_2 {
	width: 65%;
}
.c_li_a {
	height: 67px;
}
.c_li_b {
	height: 90px;
}
	.c_li_c {
	height: 115px;
}
}


.business {
	width: 1098px;
	margin: auto;
	text-align: center;
}
.business .main_visual {
	height: 600px;
	background-image: url("../images/bus01.jpg");
	background-repeat: no-repeat;
	padding: 25% 0 0 0;
    font-size: 50px;
    color: #fff;
}
.business_01 {
	width: 1098px;
	padding: 90px 0 90px 0;
	border-top:solid 1px #666;
	border-bottom:solid 1px #666;
	font-size: 14px;
	margin: auto;
	
	opacity : 0;
	transform: translateX(-60px);
	transition: all 2s;
}
.business_01 .row {
	display: flex;
	justify-content:space-between;
}
.business_01 .column {
	text-align: left;
	width: 350px;
}

.business_01 .column .b_1,.business_01 .column .b_2,.business_01 .column .b_3 {
	height: 71px;
	margin-bottom: 35px;
}

.business_01 .column h2 {
	font-size: 22px;
	font-weight: bold;
	color:#3B4E92;
	padding-top: 12px;
	margin-bottom: 12px;
	letter-spacing: 0.06em;
}
.business_01 .column .b_3 h2 {
	letter-spacing: 0.02em;
}
.business_01 .column h3 {
	font-size: 14px;
	font-weight: bold;
	color: #929292;
	font-family: Arial, Helvetica, "sans-serif";
	letter-spacing: 0.06em;
}
.business_01 .column .b_1 img,.business_01 .column .b_2 img,.business_01 .column .b_3 img {
	width: 71px;
	height: auto;
	float: left;
	margin-right: 30px;
}
.business_01 .column p,.business_01 .column p,.business_01 .column p {
	letter-spacing: 0.02em;
	line-height: 1.62em;
}


.business_02 {
padding: 100px 0;
	border-bottom:solid 1px #666;
	
	opacity : 0;
	transform: translateY(50px);
	transition: all 2s;
}
.business_02 h2 {
	font-size: 30px;
	color: #3B4E92;
	margin-bottom: 77px;
	font-weight: bold;	
}

.business_02 img {
	width: 100%;
	height: auto;		
}

.business_02 p{
	font-size: 20px;
	margin: 0 auto 80px;
	line-height: 1.5em;
}


.bus_row {
	font-size: 20px;
	letter-spacing: 0.02em;
	line-height: 1.8em;
	width: 100%;
	margin: 0 auto 180px auto;
	display: flex;
	justify-content: space-around;
}


.business_btn {
	width: 539px;
	height: 100px;
	background-color:#3B4E92;
	margin: auto;
	text-align: center;
	line-height: 100px;
	color: #fff;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0.1em;
	
}
.business_btn a {
	display: block;
	color: #fff;
	transition: 0.8s ease;
}
.business_btn a:hover {

	color: #000;
	transition: 0.8s ease;
	background-color: #fff;
	border: solid 1px #3B4E92;
}

.business .tel_1 {
	margin: 100px auto ;
}

@media screen and (max-width:960px){
.business {
	width: 100%;
}
.business .main_visual {
	height: 300px;
	background-image: url("../images/bus01.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	padding: 40% 0 0 0;
    font-size: 25px;
    color: #fff;
}
.business_01 {
	width: 100%;
	padding: 35px 0 5px 0;
	font-size: 10px;
}
.business_01 .row {
	display: flex;
	justify-content:space-between;
	flex-direction: column;
}
.business_01 .column {
	text-align: left;
	width: 100%;
	padding: 0 5% 0 5%;
	display: flex;
	justify-content:space-between;
	flex-direction: row;
	margin-bottom: 30px;
}

.business_01 .column .b_1,.business_01 .column .b_2,.business_01 .column .b_3 {
	height: auto;
	margin-bottom: 0px;
	width: 50%;
}

.business_01 .column h2 {
	font-size: 15px;
	padding-top: 20px;
	font-weight: 700;
	margin-bottom: 12px;
	letter-spacing: 0.06em;
}
.business_01 .column .b_3 h2 {
	letter-spacing: 0.02em;
}
.business_01 .column h3 {
	font-size: 7px;
	letter-spacing: 0.06em;
}
.business_01 .column .b_1 img,.business_01 .column .b_2 img,.business_01 .column .b_3 img {
	width:41%;
	height: auto;
	float: left;
	margin-right: 12px;
}
.business_01 .column p,.business_01 .column p,.business_01 .column p {
	letter-spacing: 0.1em;
	line-height: 1.62em;
	width: 46%;
}


.business_02 {
padding: 50px 0;
}
.business_02 h2 {
	font-size: 15px;
	margin-bottom: 38px;
}
	
.business_02 img {
	margin-bottom: 40px;
	width: 100%;
	height: auto;		
}

.business_02 p{
	font-size: 14px;
	margin: 0 auto 40px;
	width: 90%;
	text-align: left;
}
.bus_row {
	font-size: 12px;
	width: 90%;
	margin: 0 auto 80px auto;
	display: flex;
	justify-content: space-around;
}
	
.business_btn {
	width: 270px;
	height: 50px;
	line-height:50px;
	font-size: 15px;
}
	
	.business .tel_1 {
	margin: 50px auto ;
}
}

.rec {
	width: 1098px;
	margin: auto;
	text-align: center;
	font-size: 14px;
}

.rec .main_visual {
	height: 600px;
	background-image:url("../images/rec_01.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	padding: 25% 0 0 0;
    font-size: 50px;
    color: #fff;
	margin: 0 auto 80px auto;
}
.rec_sub_tit {
	font-size: 20px;
}

.rec_01 h2 {
	font-size: 31.2px;
	color: #3B4E92;
	font-weight: bold;
	margin-bottom: 95px;
	letter-spacing: 0.06em;
}
.rec_01 h3 {
	font-size: 25px;
	font-weight: bold;
	margin-bottom: 30px;
}
.rec_01 .gaiyo {
	padding: 65px 87px 65px 87px;
	background-color: #f5f5f5;
	margin-bottom: 115px;
	border-radius: 10px;
	letter-spacing: 0.1em;
}
.gaiyo .row {
	display: flex;
	justify-content:center;
	line-height: 1.6em;
}

.border_b {
	border-bottom:solid 1px #fff;
}

.gaiyo_left {
	width: 220px;
	text-align: right;
	color: #3B4E92;
	padding: 25px 0 25px 0;
}
.gaiyo_right {
	width: 700px;
	text-align: left;
	padding: 25px 0 25px 65px;
}

.rec .business_01 {
	padding: 0px 0 90px 0;
	border-top:none;
	margin: 0 auto 115px auto;
}

.tel_1 {
	width: 924px;
	margin: 0 auto 130px auto;
	
	opacity : 0;
	transform: translateY(60px);
	transition: all 2s;
}

.tel_row {
	display: flex;
	justify-content: space-between;
	margin: 0 auto 50px auto;
}
.tel_left p {
	font-size: 40px;
	letter-spacing: 0.03em;
	font-weight: 900;
	line-height: 47px;
	height: 66px;
}
.tel_left p img {
	width: 47px;
	height:47px;
	float: left;
	margin-right: 24px;
}
.tel_right {
	height: 66px;
}
.tel_right .t_1 {
	font-size: 50px;
	letter-spacing: 0.03em;
	font-weight: 900;
}


@media screen and (max-width:960px){
.rec {
	width: 100%;
	font-size: 10px;
}
.rec .main_visual {
	height: 300px;
	background-image:url("../images/rec_01.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	padding: 40% 0 0 0;
    font-size: 25px;
    color: #fff;
	margin: 0 auto 40px auto;
}
	.rec_sub_tit {
	font-size: 12px;
}
.rec_01 h2 {
	font-size: 15px;
	margin-bottom: 47px;
}
.rec_01 h3 {
	font-size: 13px;
	margin-bottom: 20px;
}
.rec_01 .gaiyo {
	width: 90%;
	margin: 0 auto 50px auto;
	padding: 10px 20px 10px 20px;
}
.gaiyo .row {
	display: flex;
	justify-content:center;
	flex-direction: column;
}
.gaiyo_left {
	width: 100%;
	text-align: left;
	padding: 25px 0 0px 0;
}
.gaiyo_right {
	width: 100%;
	text-align: left;
	padding: 10px 0 25px 0;
}

.rec .business_01 {
	padding: 0px 0 40px 0;
	margin: 0 auto 65px auto;
}

.tel_1 {
	width: 90%;
	margin: 0 auto 75px auto;
	text-align: center;
}

.tel_row {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.tel_left p {
	font-size: 25px;
	line-height:normal;
	height: auto;
	padding-top: 0px;
	margin-bottom: 20px;
}
.tel_left p img {
	width: 36px;
	height:36px;
	float: none;
	margin-right: 20px;
}
.tel_right {
	height: auto;
}
.tel_right .t_1 {
	font-size: 35px;
	text-align: center;
	margin-bottom: 10px;
	font-weight: bold;
}
.tel_right .t_2 {
	font-size: 30px;
}

	
.tel_1 img {
	width:220px;
	height: auto;
}
}

.news {
	width: 1098px;
	margin: 135px auto 135px auto;
	text-align: center;
}
.news h2 {
	font-size: 25px;
	color: #fb5300;
	padding-bottom: 100px;
	font-weight: 900;
	border-bottom: solid 1px #666 ;
	letter-spacing: 0.02em;
}

.news_1 {
	padding: 140px 165px 140px 165px;
	text-align: left;
	font-size: 14px;
	line-height: 1.6em;
	border-bottom: solid 1px #666 ;
	letter-spacing: 0.06em;
}
.news_1 h3 {
	font-size: 25px;
	font-weight: bold;
	margin-bottom: 5px;
}
.date {
	color: #fb5300;
	margin-bottom: 50px;
}


@media screen and (max-width:960px){
.news {
	width: 100%;
	margin: 50px auto 50px auto;
}
.news h2 {
	padding-bottom:42px;
	font-size: 15px;
}

.news_1 {
	padding: 70px 10% 50px 10%;
	text-align: left;
	font-size: 10px;
	border-bottom: solid 1px #666 ;
}
.news_1 h3 {
	font-size: 13px;
}
.date {
	margin-bottom: 25px;
}
	
}


.contact {
	margin: 0 auto 100px auto;
	padding: 180px 0 0 0;
	width: 1098px;
	text-align: center;
	border-bottom: solid 1px #666;
}
.contact h2 {
	font-size: 25px;
	color: #3B4E92;
	margin-bottom: 135px;
	letter-spacing: 0.03em;
	font-weight:900;
}


@media screen and (max-width:960px){
.contact {
	margin: 0 auto 100px auto;
	padding: 0px 0 0 0;
	width: 100%;
}
.contact h2 {
	font-size: 15px;
	font-weight: bold;
	margin-top: 60px;
	margin-bottom: 65px;
}
	
}

#thanks {
	width: 100%;
	margin: 0 auto 0 auto;
	text-align: center;
	letter-spacing: 0.06em;
	padding: 250px 0;
}
#thanks h1 {
	font-size: 28px;
	margin-bottom: 30px;
	font-weight: bold;
	color: #3B4E92;
}
#thanks p {
	font-size: 14px;
	margin-bottom: 30px;
	line-height: 2em;
}

@media screen and (max-width:960px){
	#thanks h1 {
	font-size: 16px;
	margin-bottom: 40px;
}
	#thanks p {
	font-size: 12px;
	}
}


/* フッター */
footer {
	padding: 65px 0 40px 0;
	background-color: #666;
	width: 100%;
	margin: auto;
	color: #fff;
	letter-spacing: 0.06em;
}
footer .inner {
	display: flex;
	justify-content:space-between;
	flex-direction: row;
}
.footer_left {
	width:382px;
}
.footer_left img {
	width:200px;
	height: auto;
}
.footer_left p {
margin-bottom: 100px;
font-size: 12px;
	letter-spacing: 0.06em;
}
.footer_btn {
	display: flex;
	justify-content:space-between;
}
.btn_01 {
	width:178px;
	height: 58px;
	border: solid 1px #fff ;
	line-height: 58px;
	text-align: center;
}
.btn_01 a {
	display: block;
	color: #fff;
	transition: 0.8s ease;
}
.btn_01 a:hover {
	display: block;
	color: #000;
	transition: 0.8s ease;
	background-color: #fff;
}


.footer_center {
	width:586px;
	border-right: solid 1px #fff;
	height: 269px;
	padding-right: 30px;
	padding-top: 130px;
	text-align: right;
}
.footer_center .icon_row {
	width: auto;
	display: flex;
	justify-content:none;
	flex-direction: column;
}

.footer_right {
	width:133px;
	height: 272px;
	padding: 130px 0px 0 20px;
	text-align: left;
	
}
.footer_right p {
	font-size: 15px;
	font-weight: 600;
}
.footer_right a {
	color: #fff;
}

#copylight {
	padding: 40px 0 45px 0;
	background-color: #3B4E92;
	font-size: 10px;
	font-weight: bold;
	color: #fff;
	text-align: center;
}



@media screen and (max-width:960px){
footer {
	padding: 35px 0 25px 0;
	width: 100%;
}
footer .inner {
	display: flex;
	justify-content:space-between;
	flex-direction:column;
}
.footer_left {
	width:100%;
}
.footer_left img {
	width:85px;
	height: auto;
}
.footer_left p {
margin-bottom: 50px;
font-size: 8px;
}
.footer_btn {
	display: flex;
	justify-content:space-between;
}
.btn_01 {
	width:48%;
	height: 43px;
	line-height: 43px;
}

.footer_center {
	display: none;
}

.footer_right {
	display: none;	
}

#copylight {
	padding: 25px 0 25px 0;
	font-size: 6px;
	}
	
}

