/*==============================================================
	L1 Header
==============================================================*/



#header {
	width: 100%;
	z-index: 100;
	top: 0;
	position: absolute;
	position: fixed;
	
}

#header .header_inner {
	margin: 0 auto;
	height: 120px;
	padding: 0 40px 0 40px;
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	transition: height 1.0s cubic-bezier(0.19, 1, 0.22, 1);

/* 	
	transition-property: opacity height;
	opacity: 0;
	height: 0; */
}

/* 
#header.loaded .header_inner{
	opacity: 1;
	height: 120px;
} */

.breadcrumbs{
	color: #fff;
	font-size: 14px;
}
.breadcrumbs ul li{
	display: inline-block;
	overflow: hidden;
}
.breadcrumbs ul li a{
	color: #fff;
	overflow: hidden;
}
.breadcrumbs ul li::after{
	display: inline-block;
	content: "";
	margin: 0 5px 0 10px;
	height: 14px;
	width: 8px;
	background-image: url(../img/common/arrow_white.png);
	background-repeat: no-repeat;
	background-size: 80%;
	background-position: bottom;
}
.breadcrumbs ul li:last-child:after{
	display: none;
	margin: 0;
}

.breadcrumbs ul li a span{
}
.breadcrumbs ul li a:hover{
	opacity: 1;
}
.breadcrumbs ul li a:hover span{
	display: inline-block;
	animation: slideOutTopInBottom 0.3s forwards ease;
}


.header_breadcrumbs.breadcrumbs{
	opacity: 0;
	display: none;
}

.header_logo {
	margin-top: 0px;
	width: 250px;
	padding-right: 60px;
}
.header_logo img {
	width: 100%;
}

.header_back{
	display: block;
	height: 0;
	background-color: #21864D;
	width: 100%;
	position: absolute;
	transition: height 1.0s cubic-bezier(0.19, 1, 0.22, 1);
}




/* SCROLLED HEADER */
#header.scrolled .header_inner{
	height: 90px;
}
#header.scrolled .header_back{
	height: 90px;
}
#header.scrolled .header_breadcrumbs{
	display: block;
	opacity: 1;
	animation-name: slideInBottom;
	animation-fill-mode:forwards;
	animation-duration: .45s;
}
#header.scrolled .header_logo{
	width: 230px;
	position: absolute;
	right: 0;
	left: 0;
	margin: auto;
	animation-name: slideInTop;
	animation-fill-mode:forwards;
	animation-duration: .6s;
}
#header.scrolled .top_nav{
	animation-name: slideOutBottom;
	animation-fill-mode:forwards;
	animation-duration: .45s;
}

#header.scrolled:hover .header_inner{
	height: 120px;
}
#header.scrolled:hover .header_back{
	height: 120px;
}

#header.scrolled.menu_active .header_inner{
	height: 120px;
}
#header.scrolled.menu_active .header_back{
	height: 120px;
}




.header_btn{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	position: relative;
}



.top_nav {
	padding: 10px 20px 8px 20px;
	display: block;
	/* margin-right: 100px; */
}

.top_nav .header_nav_list {
	display: table;
	text-align: center;
}


.top_nav .header_nav_list li {
	display: table-cell;
	padding: 0 20px;
	vertical-align: middle;
}

.top_nav .header_nav_list li a{
	font-size: 18px;
	color: #fff;
	position: relative;
}




/* .top_nav .header_nav_list li a::after {
	content: "";
	z-index: 1;
	display: inline-block;
	position: absolute;
	width: 100%;
	padding: 10px 10px;
	top: 0; left: 0;
	margin-top: 1px;
	opacity: 1;
	transition: 0.3s ease;
	transition-property: backgraund opacity;
	background: #00a73c;
	border: 8px solid #00a73c;
	border-radius: 8px;
} */


.top_nav .header_nav_list li a:hover::after {
	width: 100%;
	opacity: 1;
}

.btn_menu{
	display: block;
	position: relative;
	z-index: 9999;
	top: 0;
	right: 0;
	border: 0;
	padding: 0;
	cursor: pointer;
	text-align: center;
	background: transparent;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.btn_menu_label_wrap{
	width: 0;
	overflow: hidden;
	transition: width 0.1s linear;
}


.btn_menu_label{
	color: #fff;
	display: block;
	margin-right: 10px;
	position: relative;
	overflow: hidden;
	transition: transform 0.2s linear;
	transform: translateX(60px);
}

.btn_menu_bar_wrap{
	display: block;
	width: 59px;
	height: 59px;
	position: relative;
	border-radius: 20%;
	/* background-color: rgba(0, 0, 0, 0.5); */
	transition: background 0.2s linear;
}

.btn_menu_bar {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	background: #fff;
	width: 39px;
	margin: 30px 10px;
	height: 2px;
	transition: background .25s ease;
}


.btn_menu_bar:before, .btn_menu_bar:after {
	display: block;
	content: "";
	background: #fff;
	width: 39px;
	/* margin: -2px 0; */
	height: 2px;
	transition: transform .25s ease;
}

.btn_menu_bar:before {
	transform: translateY(-9px);
}

.btn_menu_bar:after {
	transform: translateY(7px);
}




/* HOVER */
.btn_menu:hover .btn_menu_label_wrap{
	width: 60px;
}
.btn_menu:hover .btn_menu_label{
	transform: translateX(0);
}

.btn_menu:hover .btn_menu_bar_wrap{
	background-color: #21864D;
}

/* ACTIVE */
.btn_menu.menu_active .btn_menu_label_wrap{
	width: 60px;
}

.btn_menu.menu_active .btn_menu_bar {
	background: transparent;
}
.btn_menu.menu_active .btn_menu_bar:before {
	transform: translateX(0) translateY(0px) rotate(45deg);
}

.btn_menu.menu_active .btn_menu_bar:after {
	transform: translateX(0) translateY(-2px) rotate(-45deg);
}




	/* HEADER SP */

@media screen and (max-width: 764px) {
	#header .header_inner {
		height: 18vw;
		padding: 0 4vw;
	}

	.breadcrumbs{
		font-size: 2.8vw;
	}
	.breadcrumbs ul li::after{
		margin: 0 1vw 0 2vw;
		height: 2.8vw;
		width: 1.6vw;
	}

	.header_logo {
		width: 50vw;
		padding-right: 1.2vw;
		animation-name: slideInTop;
		animation-fill-mode:forwards;
		animation-duration: .6s;
	}
	.header_back{
		background-color: #21864D;
		background-color: transparent;
	}

	.header_btn{
		display: block;
		position: absolute;
		top: 3vw;
		right: 4vw;
	}

	.top_nav {
		padding: 0;
		display: none;
	}
	
	.top_nav .header_nav_list {
		display: none;
	}
	.top_nav .header_nav_list li {
		display: none;
		padding: 0;
	}
	.btn_menu_label{
		margin-right: 0vw;
		transform: translateX(12vw);
	}
	.btn_menu_bar_wrap{
		width: 11.8vw;
		height: 11.8vw;
	}
	.btn_menu_bar {
		width: 7.8vw;
		margin: 6vw 2vw;
		height: 0.4vw;
	}
	.btn_menu_bar:before, .btn_menu_bar:after {
		width: 7.8vw;
		height: 0.4vw;
	}
	
	.btn_menu_bar:before {
		transform: translateY(-1.8vw);
	}
	
	.btn_menu_bar:after {
		transform: translateY(1.4vw);
	}
	
	/* HOVER */
	.btn_menu:hover .btn_menu_label_wrap{
		width: 12vw;
	}

	/* ACTIVE */
	.btn_menu.menu_active .btn_menu_label_wrap{
		width: 12vw;
	}

	.btn_menu.menu_active .btn_menu_bar:after {
		transform: translateX(0) translateY(-0.4vw) rotate(-45deg);
	}

	/* SCROLLED HEADER */
	#header.scrolled .header_inner{
		height: 18vw;
	}
	#header.scrolled .header_back{
		height: 18vw;
	}
	#header.scrolled .header_breadcrumbs{
		display: none;
		animation: none;
	}
	#header.scrolled .header_logo{
		display: block;
		width: 50vw;
		position:static;
		margin: 0;
		animation-name: slideOutTop;
		animation-fill-mode:forwards;
		animation-duration: .6s;
	}


	#header.scrolled .top_nav{
	}

	#header.scrolled:hover .header_inner{
		height: 18vw;
	}
	#header.scrolled:hover .header_back{
		height: 18vw;
	}

	#header.scrolled.menu_active .header_inner{
		height: 18vw;
	}
	#header.scrolled.menu_active .header_back{
		height: 18vw;
	}


	/* #header.scrolled .btn_menu{
		background-color: #21864D;
		border-radius: 2.4vw;
		padding: 0 0 0 1vw;
	} */
	#header.scrolled .btn_menu .btn_menu_bar_wrap{
		background-color: #21864D;
	}
	#header.scrolled .btn_menu .btn_menu_label_wrap{
		width: 12vw;
	}
	#header.scrolled .btn_menu .btn_menu_label{
		transform: translateX(0);
	}

}



/*==============================================================
	L1-B MODAL MENU
==============================================================*/
#menu{
	width: 100%;
	height: 100%;
	z-index: 9990;
	box-sizing: border-box;
	padding: 10px 20px;
	position: fixed;
	top: 0;
	left: 0;
	transition: 0.25s ease;
	transition-property: transform opacity;
	visibility:hidden;
	opacity: 0;
	background-color: rgba(0,0,0,0.33);
	overflow: hidden;
}


#menu .menu_inner{
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border-radius: 20px;
	background-color: #21864D;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	transition: 0.25s ease;
	transition-property: transform opacity;
	opacity: 0;
	transform: scale(0.95);
	position: relative;
	overflow: auto;
}


#menu.menu_active{
	visibility:visible;
	opacity: 1;
}

#menu.menu_active .menu_inner{
	transform: scale(1);
	opacity: 1;
}

#menu .menu_inner>div{
	color: #fff;
	position: relative;
}
#menu .menu_inner>div.menu_left{
	width: 56%;
	background-color: #21864D;
}
#menu .menu_inner>div.menu_right{
	width: 44%;
	background-color: #1D7644;
}



/* MENU LEFT */
#menu .menu_left{
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
}
#menu .menu_left div.menu_left_inner{
	/* position: absolute;
	top: 0; right: 0; */
	padding: 60px 20px 0 60px;
	box-sizing: border-box;
	width: 100%;
	max-width: 740px;
}
#menu .menu_left .breadcrumbs.menu_breadcrumbs{
	margin-bottom: 100px;
}


#menu .menu_left div.menu_nav{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	/* justify-content:flex-start; */
	justify-content: space-between;
	margin-right: 30px;
	white-space: nowrap;
}
#menu .menu_left div.menu_nav>div{
	/* background-color: #409ad6; */
	max-width: 340px;
	width: 48%;
}
#menu .menu_left div.menu_nav>div:last-child{
	max-width: 340px;
	width: 48%;
}

#menu .menu_left div.menu_nav li{
	margin-bottom: 60px;
}
#menu .menu_left div.menu_nav li>a{
	color: #fff;
	font-size: 28px;
	font-weight: 500;
}
#menu .menu_left div.menu_nav li>a span{
	display: inline-block;
	font-size: 20px;
	margin-left: 20px;
	transform: translateY(-2px);
	font-weight: 400;
}
#menu .menu_left div.menu_nav .menu_nav_children{
	margin-left: 40px;
}

#menu .menu_left div.menu_nav .menu_nav_children li{
	margin-bottom: 0;
	margin-top: 30px;
}
#menu .menu_left div.menu_nav .menu_nav_children li a{
	display: inline-block;
	font-size: 18px;
	padding-left: 18px;
	font-weight: 400;
}
#menu .menu_left div.menu_nav .menu_nav_children li a::before{
	display: block;
	content: "";
	background: #fff;
	position: relative;
	top: 8px;
	margin-left: -18px;
	width: 18px;
	height: 1px;
}

#menu .menu_left div.menu_nav div.telephone{
	display: none;
}



/* MENU RIGHT */
#menu .menu_right{
}
#menu .menu_right div.menu_right_inner{
	/* position: absolute;
	top: 0; left: 0; */
	padding: 60px 50px 60px 50px;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
}

#menu .menu_right div.menu_right_inner>div{
	width: 100%;
}


#menu .menu_right div.menu_right_inner .menu_logo{
	width: 250px;
	margin-bottom: 60px;
}
#menu .menu_right div.menu_right_inner .menu_logo img{
	width: 100%;
}

	/* SCHEDULE */

	#menu .menu_right div.menu_right_inner .menu_schedule{
		/* background-color: #00a73c; */
		width: 100%;
		max-width: 680px;
	}

	.schedule table{
		width: 100%;
		margin-bottom: 30px;
		border-bottom: 1px solid #fff;
		font-size: 16px;
	}


	.schedule table thead tr{
		border-bottom: 1px solid #fff;
	}
	.schedule table th{
		font-weight: 400;
	}


	.schedule table th,
	.schedule table td{
		display: table-cell;
		padding: 30px 8px;
		width: 40px;
		vertical-align: middle;
		text-align: center;
	}

	.schedule table thead tr th{
		padding: 0 8px;
		height: 40px;
		vertical-align: top;
	}

	.schedule table tbody tr:first-child th,
	.schedule table tbody tr:first-child td{
		padding-bottom: 20px;
	}
	.schedule table tbody tr:last-child th,
	.schedule table tbody tr:last-child td{
		padding-top: 0;
	}

	.schedule table tr th:first-child{
		text-align: left;
	}


	.schedule table tr th:first-child,
	.schedule table tr td:first-child{
		min-width: 120px;
	}
	.schedule table th p:first-child{
		font-size: 20px;
		margin-bottom: 0px;
	}
	.schedule table th p:last-child{
		font-size: 14px;
	}

	.schedule .annotation{
		font-size: 16px;
	}


#menu .menu_right div.menu_right_inner .menu_right_bottom{
	/* background-color: #00a73c; */
}

#menu .menu_right div.menu_right_inner .menu_right_bottom small{
	display: block;
	text-align: right;
}

#menu .menu_right div.menu_right_inner .menu_right_bottom .menu_links{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
}

#menu .menu_right div.menu_right_inner .menu_right_bottom .menu_links>div{
	width: calc( 100% - 300px - 10px);
	margin-bottom: 30px;
	min-width: 140px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	/* justify-content: flex-end; */
	align-items: center;
}
#menu .menu_right div.menu_right_inner .menu_right_bottom .menu_links>div:last-child{
	width: 300px;
	align-items: flex-end;
}
#menu .menu_right div.menu_right_inner .menu_right_bottom .menu_info{
	margin-top: 20px;
}

#menu .menu_right div.menu_right_inner .menu_right_bottom .menu_info p{
	font-size: 14px;
	line-height: 1.2;
	margin-bottom: 20px;
}



/* -------------For iPad------------------- */
@media screen and (max-width: 1024px) {
	.btn_menu .btn_menu_bar_wrap{
		background-color: transparent;
	}
	.btn_menu:hover .btn_menu_bar_wrap{
		background-color: transparent;
	}
	.btn_menu.menu_active .btn_menu_bar_wrap{
		background-color: #21864D;
	}
	.btn_menu:hover .btn_menu_label_wrap{
		width: 0;
	}
	.btn_menu.menu_active .btn_menu_label_wrap{
		width: 60px;
	}

	#menu .menu_inner>div.menu_left{
		width: 52%;
		background-color: #21864D;
	}
	#menu .menu_inner>div.menu_right{
		width: 48%;
		background-color: #1D7644;
	}

	/* MENU LEFT */
	#menu .menu_left div.menu_left_inner{
		padding: 4vw 4vw 0 4vw;
		max-width: unset;
	}
	#menu .menu_left .breadcrumbs.menu_breadcrumbs{
		margin-bottom: 6vw;
	}
	#menu .menu_left div.menu_nav{
		margin-right: 0;
	}
	#menu .menu_left div.menu_nav>div{
		max-width: unset;
	}
	#menu .menu_left div.menu_nav>div:last-child{
		max-width: unset;
	}
	#menu .menu_left div.menu_nav li{
		margin-bottom: 6vw;
	}
	#menu .menu_left div.menu_nav li>a{
		font-size: 2.6vw;
	}
	#menu .menu_left div.menu_nav li>a span{
		font-size: 1.6vw;
		margin-left: 1vw;
	}
	#menu .menu_left div.menu_nav .menu_nav_children{
		margin-left: 2.6vw;
	}
	#menu .menu_left div.menu_nav .menu_nav_children li{
		margin-top: 3vw;
	}
	#menu .menu_left div.menu_nav .menu_nav_children li a{
		font-size: 1.8vw;
		padding-left: 1.8vw;
	}
	#menu .menu_left div.menu_nav .menu_nav_children li a::before{
		top: 0.8vw;
		margin-left: -1.8vw;
		width: 1.8vw;
	}
	/* MENU RIGHT */
	#menu .menu_right div.menu_right_inner{
		padding: 4vw 4vw 4vw 4vw;
	}
	#menu .menu_right div.menu_right_inner .menu_logo{
		width: 25vw;
		margin-bottom: 4vw;
	}
	#menu .menu_right div.menu_right_inner .menu_schedule{
		max-width: unset;
	}
	.schedule table{
		margin-bottom: 3vw;
		font-size: 1.6vw;
	}
	.schedule table th,
	.schedule table td{
		padding: 1.5vw 0.8vw;
		width: 4vw;
	}

	.schedule table thead tr th{
		padding: 0 0.8vw;
		height: 4vw;
	}
	.schedule table tbody tr:first-child th,
	.schedule table tbody tr:first-child td{
		padding-bottom: 1.5vw;
	}
	.schedule table tr th:first-child,
	.schedule table tr td:first-child{
	}
	.schedule table th p:first-child{
		font-size: 2vw;
	}
	.schedule table th p:last-child{
		font-size: 1.4vw;
	}
	.schedule .annotation{
		font-size: 1.6vw;
	}

	#menu .menu_right div.menu_right_inner .menu_right_bottom{
	}
	#menu .menu_right div.menu_right_inner .menu_right_bottom .menu_links>div{
		width: calc( 100% - 300px - 10px);
		margin-bottom: 3vw;
		min-width: 14vw;
	}
	#menu .menu_right div.menu_right_inner .menu_right_bottom .menu_links>div:last-child{
		width: 300px;
	}
	#menu .menu_right div.menu_right_inner .menu_right_bottom .menu_info{
		margin-top: 2vw;
	}
	
	#menu .menu_right div.menu_right_inner .menu_right_bottom .menu_info p{
		font-size: 1.4vw;
		margin-bottom: 2vw;
	}
	#menu .menu_right small.copyright{
		font-size: 1.2vw;
	}
}

/* ForSmallDevice */
/* @media screen and (max-width: 980px) {
	.breadcrumbs{
	font-size: 12px;
	}

	#menu .menu_inner>div.menu_left{
		width: 100%;
		background-color: #000;
	}
	#menu .menu_inner>div.menu_right{
		width: 0;
		display: none;
	}

	#menu .menu_left div.menu_left_inner{
		padding: 60px 60px 60px 60px;
		width: 100%;
		max-width: unset;
		margin: 0 auto;
	}
	#menu .menu_left div.menu_nav{
		margin-right: 0;
	}
	#menu .menu_left div.menu_nav>div{
		max-width: unset;
		width: 48%;
	}
	#menu .menu_left div.menu_nav>div:last-child{
		max-width: unset;
		width: 48%;
	}
} */

/* MENU SP */

@media screen and (max-width: 764px) {
	.breadcrumbs{
		font-size: 2.4vw;
	}
	#menu{
		padding: 1vw 2vw;
	}

	#menu .menu_inner>div.menu_left{
		width: 100%;
	}
	#menu .menu_inner>div.menu_right{
		width: 0;
		display: none;
	}

	#menu .menu_left div.menu_left_inner{
		padding: 6vw 12vw;
		width: 100%;
		max-width: auto;
		margin: 0 auto;
	}
	
	#menu .menu_left .breadcrumbs.menu_breadcrumbs{
		margin-bottom: 8vw;
	}

	#menu .menu_left div.menu_nav{
		margin-right: 0;
		position: relative;

	}
	#menu .menu_left div.menu_nav>div{
		max-width: unset;
		width: 100%;
	}
	#menu .menu_left div.menu_nav>div:last-child{
		max-width: unset;
		width: 100%;
	}
	#menu .menu_left div.menu_nav li{
		margin-bottom: 7vw;
	}
	#menu .menu_left div.menu_nav li>a{
		font-size: 5vw;
	}
	#menu .menu_left div.menu_nav li>a span{
		font-size: 4vw;
		margin-left: 4vw;
		transform: translateY(-0.4vw);
	}
	#menu .menu_left div.menu_nav .menu_nav_children{
		margin-left: 5vw;
	}
	#menu .menu_left div.menu_nav .menu_nav_children li{
		margin-top: 3.6vw;
	}
	#menu .menu_left div.menu_nav .menu_nav_children li a{
		font-size: 3vw;
		padding-left: 3vw;
	}
	#menu .menu_left div.menu_nav .menu_nav_children li a::before{
		top: 1.6vw;
		margin-left: -3vw;
		width: 3vw;
		height: 1px;
	}

	#menu .menu_left div.menu_nav div.telephone{
		width: 100%;
		display: block;
	}

	#menu .menu_left div.menu_nav div.telephone a{
		font-size: 6vw;
		padding: 2.4vw 5vw 2.4vw 12vw;
		border-radius: 1.6vw;
		background-position: center left 4vw;
		background-size: 6vw;
	}

	.btn_menu.menu_active .btn_menu_label_wrap{
		width: 12vw;
	}
	.btn_menu.menu_active .btn_menu_label{
		transform: translateX(0);
	}

}


/* ====================
	footer
==================== */

footer{
}
footer .footer_inner{
}

footer .footer_contact{
	box-sizing: border-box;
	width: 100%;
	padding: 40px 80px;
	background-color: #1D7644;
	text-align: center;
	color: #FDFDFA;
}
footer .footer_contact h3{
	font-size: 20px;
	margin-bottom: 20px;
}
footer .footer_contact .telephone{
	margin-bottom: 20px;
}


footer .footer_info{
	box-sizing: border-box;
	width: 100%;
	padding: 80px 80px;
	background: #21864D;
	color: #fff;
}
footer .footer_info .footer_info_inner{
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;
	margin: 0 auto;
	width: 100%;
	max-width: 1400px;
}

footer .footer_info .footer_info_inner .footer_info_l{
	width: 40%;
}
footer .footer_info .footer_info_inner .footer_info_r{
	width: 55%;
}

footer .footer_info .footer_info_inner .footer_info_l h3{
	font-size: 18px;
	margin-bottom: 20px;
}

footer .footer_info .footer_info_inner .footer_info_l p{
	margin-bottom: 20px;
}

footer .footer_info .footer_info_inner .footer_info_l .btn_link a{
	background-color: #499169;
}



footer .footer_menu{
	background-color: #FDFDFA;
	text-align: center;
	box-sizing: border-box;
	padding: 60px 80px;
	width: 100%;
}
footer .footer_menu .footer_logo{
	text-align: center;
	margin: 0 auto;
	width: 140px;
	margin-bottom: 30px;
}
footer .footer_menu nav{
	max-width: 1024px;
	margin: 0 auto;
	text-align: left;
}
footer .footer_menu nav{
	display: block;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	width: 100%;
	margin-bottom: 60px;
}
footer .footer_menu nav>ul{
	box-sizing: border-box;
	width: 30%;
	padding-left: 8%;
	border-left: 1px solid #000;
}
footer .footer_menu nav>ul:first-child{
	border-left: none;
}
footer .footer_menu nav>ul>li a{
	display: inline-block;
	color: #000;
	font-size: 20px;
	margin-bottom: 24px;
}
footer .footer_menu nav>ul>li a span{
	margin-left: 16px;
	font-size: 16px;
}
footer .footer_menu nav>ul>li ul.menu_nav_children a{
	font-size: 16px;
	margin-left: 38px;
	margin-bottom: 16px;
}
footer .footer_menu nav>ul>li ul.menu_nav_children a::before{
	display: block;
	content: "";
	background: #000;
	position: relative;
	top: 8px;
	margin-left: -16px;
	width: 16px;
	height: 1px;
}

footer .footer_menu nav>ul:first-child{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: space-between;
}
footer .footer_menu nav>ul:first-child li{
	display: block;
	width: 100%;
}
footer .footer_menu nav>ul:first-child li a{
	/* margin-bottom: 0; */
}

@media screen and (max-width: 767px) {
	footer .footer_contact{
		padding: 8vw 4vw;
	}
	footer .footer_contact h3{
		font-size: 4vw;
		margin-bottom: 4vw;
	}
	footer .footer_contact .telephone{
		margin-bottom: 4vw;
	}

	footer .footer_info{
		padding:  12vw 4vw;
	}
	footer .footer_info .footer_info_inner{
		display: block;
		max-width: unset;
	}
	
	footer .footer_info .footer_info_inner .footer_info_l{
		width: 100%;
		margin-bottom: 10vw;
	}
	footer .footer_info .footer_info_inner .footer_info_r{
		width: 100%;
	}
	
	footer .footer_info .footer_info_inner .footer_info_l h3{
		font-size: 3.2vw;
		margin-bottom: 4vw;
	}
	
	footer .footer_info .footer_info_inner .footer_info_l p{
		margin-bottom: 4vw;
	}

	footer .footer_info .footer_info_inner .footer_info_l .btn_link{
		margin: 0 auto;
	}
	
	
	footer .footer_menu{
		padding: 6vw 8vw;
	}
	footer .footer_menu .footer_logo{
		width: 28vw;
		margin-bottom: 6vw;
	}
	footer .footer_menu nav{
		max-width: unset;
	}
	footer .footer_menu nav{
		display: none;
	}

}
