@charset "utf-8";
/**
/* CSS RESET START
----------------------------------------------- */
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed,figure, figcaption, footer, header, hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video {margin: 0;padding: 0;border: 0;vertical-align: baseline;box-sizing: border-box;-webkit-box-sizing: border-box;}
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}
html{overflow-y: scroll;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: '';content: none;}
input, textarea{margin: 0;padding: 0;outline: none;}
ol, ul{list-style:none;}
table{border-collapse: collapse; border-spacing:0;width:100%;}
caption, th{text-align: left;}
img {vertical-align: middle;max-width:100%;height: auto;}
.clearfix {min-height: 1px;}
.clearfix:after {content: "."; display: block;clear: both;height: 0;visibility: hidden;}
.both{clear:both;}
/**
/* CSS START
----------------------------------------------- */
html,body {
	background: #FCFCFC;
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	color: #09253C;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0;
	margin: 0;
	padding: 0;
}
@media only screen and (max-width: 767px) {
	html,body {
		font-size: 4.2vw;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	html,body {
		font-size: 14px;
	}
}
*:focus {
	outline: none!important;
}
#Wrapper{
	width: 100%;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow: hidden;
}
*, *:before, *:after{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
a{
	text-decoration: none;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	color: #09253C;
}
.pc_br,
.pc_img,
.pc{
	display: none;
}
.sp_br,
.sp_img,
.sp{
	display: block;
}
@media only screen and (min-width: 768px){
	.sp_br,
	.sp_img,
	.sp{
		display: none;
	}
	.pc_img{
		display: inline-block;
	}
	.pc_br,
	.pc{
		display: block;
	}
}
/**
/* flex CSS
----------------------------------------------- */
.flex{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.flex_row{
	webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.flex_between{
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.flex_column{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
		flex-direction: column;
}
.flex_center{
	-webkit-justify-content: center;
	justify-content: center;
}
.flex_end{
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.flex_wrap{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
}
.items_start{
	align-items: flex-start;
}
.items_center{
	align-items: center;
}
.items_end{
	align-items: flex-end;
}
dl.dl_table{
	width: 100%;
	display: table;
}
dl.dl_table dt,
dl.dl_table dd{
	display: table-cell;
}
/**
/* ヘッダー CSS
----------------------------------------------- */
.global-header{
	position: fixed;
	background: #FFFFFF;
	width: 100%;
	top: 0;
	z-index: 9999;
	box-shadow: 0 3px 6px rgb(0, 0, 0, 0.16);
}
.global-header .global-nav{
	display: flex;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.global-header .header_logo{
	line-height: 0;
	padding: 1rem 1rem 1rem 1.5rem;
}
.global-header .header_logo img{
	max-width: 17.5rem;
}
.global-nav .header-nav{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}
.global-nav .header-contact{
	margin-left: 1.75rem;
}
.global-nav .header-contact li.contact_btn a{
	position: relative;
	display: block;
	background: #305DC4;
	background: linear-gradient(90deg,rgba(48, 93, 196, 1) 0%, rgba(0, 127, 221, 1) 100%);
	font-family: "Poppins", sans-serif;
	color: #FFFFFF;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 5.5rem;
	padding: 0 5.9375rem 0 4.375rem;
}
.global-nav .header-contact li.contact_btn a::after{
	background: url(../img/icon/arrow_w2.png) center center no-repeat;
	background-size: cover;
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1.5rem;
	height: 1.375rem;
	right: 2.75rem;
	transition: all 1.5s cubic-bezier(.23,1,.32,1) 0.1s;
}
.global-nav .header-contact li.contact_btn a:hover{
	opacity: 0.8;
}
.global-nav .header-contact li.contact_btn a:hover::after{
	right: 2rem;
}
@media only screen and (max-width: 1200px) {
	.global-header .header_logo{
		padding: 1rem;
	}
	.global-header .header_logo img{
		max-width: 14.9375rem;
	}
	.global-nav .header-contact{
		margin-left: 1rem;
	}
	.global-nav .header-contact li.contact_btn a{
		padding: 0 4.9375rem 0 2.375rem;
	}
	.global-nav .header-contact li.contact_btn a::after{
		right: 2rem;
	}
	.global-nav .header-contact li.contact_btn a:hover::after{
		right: 1.5rem;
	}
}
@media only screen and (max-width: 1024px) {
	.global-nav .header-contact li.contact_btn{
		display: none;
	}
}
@media only screen and (max-width: 767px) {
	.global-header{
		height: 3.75rem;
	}
	.global-header .header_logo{
		padding: 0.75rem;
	}
	.global-header .header_logo img{
		width: auto;
		height: 2.25rem;
		max-width: 100%;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.global-header .header_logo{
		padding: 0.875rem 1rem;
	}
	.global-header .header_logo img{
		max-width: 18rem;
	}
}
/**
/* ヘッダーナビ CSS
----------------------------------------------- */
.global-nav .drawer-hamburger{
	display: none;
}
.drawer--right .global-nav .drawer-nav{
	position: relative;
	display: flex;
	right: auto;
	overflow: visible;
	width: auto;
	height: auto;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	background-color: transparent;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.global-nav .drawer-nav .drawer-menu li{
	display: inline-block;
}
.global-nav .drawer-nav .drawer-menu li a{
	display: block;
	color: #09253C;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.35;
	text-align: center;
	padding: 0 1.25rem;
}
.global-nav .drawer-nav .drawer-menu li a:hover{
	opacity: .8;
}
.global-nav .drawer-contact{
	display: none;
}
@media only screen and (max-width: 1200px) {
	.global-nav .drawer-nav .drawer-menu li a{
		padding: 0 0.875rem;
	}
}
@media only screen and (max-width: 1024px) {
	.global-nav .drawer-hamburger{
		display: block;
		width: 2.5rem;
		top: 0;
		z-index: 99999;
		padding: 2rem 1.5rem 2.209rem 1.5rem;
	}
	.drawer--right.drawer-open .global-nav .drawer-hamburger{
		right: 0;
	}
	.global-nav .drawer-hamburger-icon{
		margin-top: 0.75rem;
	}
	.global-nav .drawer-hamburger-icon,
	.global-nav .drawer-hamburger-icon::after,
	.global-nav .drawer-hamburger-icon::before{
		background: #2E5DC4;
		height: 3px;
	}
	.drawer-open .global-nav .drawer-hamburger-icon::after,
	.drawer-open .global-nav .drawer-hamburger-icon::before{
		background: #2E5DC4;
	}
	.global-nav .drawer-hamburger-icon::after{
		top: 0.625rem;
	}
	.global-nav .drawer-hamburger-icon::before{
		top: -0.625rem;
	}
	.drawer--right .global-nav .drawer-nav{
		position: fixed;
		display: block;
		background: #2E5DC4;
		width: 100%;
		height: 100%;
		right: -100%;
		top: 5.35rem;
		left: auto;
		z-index: 9999;
	}
	.drawer--right .global-nav .drawer-nav{
		overflow: auto;
	}
	.global-nav .drawer-nav ul.drawer-menu li{
		display: block;
	}
	.global-nav .drawer-nav .drawer-menu li:nth-child(even){
		background: #3F6CD0;
	}
	.global-nav .drawer-nav ul.drawer-menu li a{
		position: relative;
		display: block;
		color: #ffffff;
		font-size: 1.25rem;
		line-height: 1.45;
		text-align: left;
		padding: 1.5rem;
	}
	.global-nav .drawer-contact{
		display: block;
		text-align: center;
		margin-top: 2.75rem;
	}
	.global-nav .drawer-contact li{
		display: inline-block;
		width: 85%;
		max-width: 17.875rem;
	}
	.global-nav .drawer-contact li + li{
		margin-left: 1rem;
	}
	.global-nav .drawer-contact li a{
		position: relative;
		display: block;
		font-weight: 500;
		line-height: 3.75rem;
		text-align: center;
		border: 1px solid #FFFFFF;
	}
	.global-nav .drawer-contact li a::after{
		content: "";
		position: absolute;
		width: 1.875rem;
		height: 0.75rem;
		right: 1.25rem;
		top: 50%;
		transform: translateY(-50%);
	}
	.global-nav .drawer-contact li.tel a{
		color: #FFFFFF;
		font-size: 1.125rem;
	}
	.global-nav .drawer-contact li.tel a::after{
		background: url(../img/icon/arrow_w.png) no-repeat center;
		background-size: contain;
	}
	.global-nav .drawer-contact li.contact a{
		background: #FFFFFF;
		font-family: "Poppins", sans-serif;
		color: #2E5DC4;
		font-size: 1.35rem;
	}
	.global-nav .drawer-contact li.contact a::after{
		background: url(../img/icon/arrow_b.png) no-repeat center;
		background-size: contain;
	}
}
@media only screen and (max-width: 767px) {
	.global-nav .drawer-hamburger{
		width: 2rem;
		padding: 1.125rem 1rem 1.75rem 1rem;
	}
	.drawer--right .global-header .drawer-nav{
		top: 3.75rem;
	}
	.global-nav .drawer-nav ul.drawer-menu li a{
		font-size: 1.0625rem;
		padding: 1.25rem 1.5rem;
	}
	.global-nav .drawer-contact{
		display: block;
		text-align: center;
		margin-top: 2.25rem;
	}
	.global-nav .drawer-contact li + li{
		margin-left: 0;
		margin-top: 0.75rem;
	}
	.global-nav .drawer-contact li a{
		line-height: 4rem;
	}
	.global-nav .drawer-contact li a::after{
		width: 1.5rem;
		height: 0.625rem;
		right: 0.875rem;
	}
	.global-nav .drawer-contact li.tel a{
		font-size: 0.9375rem;
	}
	.global-nav .drawer-contact li.contact a{
		font-size: 1.1875rem;
	}
}
/**
/* Common CSS
----------------------------------------------- */
.inner-wrap{
	position: relative;
	width: calc(100% - 6rem);
	max-width: 1200px;
	margin: 0 auto;
}
.inner{
	position: relative;
	width: calc(100% - 8rem);
	max-width: 1080px;
	margin: 0 auto;
}
section{
	position: relative;
}
.center{
	text-align: center;
}
iframe{
	width: 100%;
}
.c-gray{
	color: #696969;
}
@media only screen and (max-width: 767px) {
	.inner-wrap,
	.inner{
		width: calc(100% - 3rem);
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.inner-wrap{
		width: calc(100% - 4rem);
	}
	.inner{
		width: calc(100% - 6rem);
	}
}
/**
/* Btn CSS
----------------------------------------------- */
.block_btn li{
	display: inline-block;
	width: 100%;
	max-width: 20rem;
}
.block_btn li .btn{
	position: relative;
	display: block;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
	padding: 1rem 1.5rem;
}
.block_btn li .gray{
	background: #7E7E7E;
	color: #FFFFFF;
	border-radius: 0.25rem;
}
.block_btn li .blue{
	background: #305DC4;
	background: linear-gradient(90deg,rgba(48, 93, 196, 1) 0%, rgba(0, 127, 221, 1) 100%);
	color: #FFFFFF;
}
.block_btn li .blue::after{
	background: url(../img/icon/arrow_w.png) center center no-repeat;
	background-size: cover;
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1.34375rem;
	height: 0.375rem;
	right: 2rem;
	transition: all 1.5s cubic-bezier(.23,1,.32,1) 0.1s;
}
.block_btn li .blue:hover{
	opacity: 1;
}
.block_btn li .blue:hover::after{
	right: 1.5rem;
}
@media only screen and (max-width: 767px) {
	.block_btn li{
		max-width: 17rem;
	}
	.block_btn li .btn{
		font-size: 1rem;
		padding: 0.875rem;
	}
	.block_btn li .btn::after{
		right: 1.125rem;
	}
	.block_btn li .btn:hover::after{
		right: 1.125rem;
	}
}
/**
/* パンくず CSS
----------------------------------------------- */
.breadcrumbs{
	padding: 1rem 0;
}
.breadcrumbs span{
	display: inline-block;
	color: #BFBFBF;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.35;
}
.breadcrumbs a span{
	color: #09253C;
}
.breadcrumbs i{
	color: #09253C;
	font-size: 0.75rem;
	margin: 0 1rem;
	vertical-align: middle;
}
.breadcrumbs span br{
	display: none;
}
@media only screen and (max-width: 767px) {
	
}
/**
/* ページネーション CSS
----------------------------------------------- */
.wp-pagenavi {
	text-align: center;
	margin-top: 5rem;
}
.wp-pagenavi span,
.wp-pagenavi a {
	display: inline-block;
	text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span{
	display: inline-block;
	font-family: "Poppins", sans-serif;
	color: #09253C;
	width: 2.5rem;
	height: 2.5rem;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 2.5rem;
	text-align: center;
	border: 1px solid #305DC4!important;
	padding: 0!important;
	margin: 0 0.25rem!important;
}
.wp-pagenavi .current,
.wp-pagenavi a.page:hover{
	background: #305DC4;
	color: #FFFFFF;
	font-weight: 600!important;
	opacity: 1
}
.wp-pagenavi span.extend{
	border: none;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink{
	background: #305DC4;
	color: #FFFFFF;
	border: none!important;
	width: 1.75rem;
	height: 1.75rem;
	line-height: 1.75rem;
}
.wp-pagenavi .previouspostslink i,
.wp-pagenavi .nextpostslink i{
	font-size: 0.875rem;
}
.wp-pagenavi .previouspostslink{
	margin: 0 1.75rem 0 0!important;
}
.wp-pagenavi .nextpostslink{
	margin: 0 0 0 1.75rem!important;
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi {
		margin-top: 3rem;
	}
	.wp-pagenavi a,
	.wp-pagenavi span{
		width: 2rem;
		height: 2rem;
		font-size: 1rem;
		line-height: 2rem;
		margin: 0 0.125rem!important;
	}
	.wp-pagenavi .previouspostslink,
	.wp-pagenavi .nextpostslink{
		width: 1.5rem;
		height: 1.5rem;
		line-height: 1.5rem;
	}
	.wp-pagenavi .previouspostslink i,
	.wp-pagenavi .nextpostslink i{
		font-size: 0.75rem;
	}
	.wp-pagenavi .previouspostslink{
		margin: 0 1rem 0 0!important;
	}
	.wp-pagenavi .nextpostslink{
		margin: 0 0 0 1rem!important;
	}
}
/**
/* トップへ戻る CSS
----------------------------------------------- */
.btn_page_top {
	position: fixed;
	display: block;
	width: 6.25rem;
	right: 0;
	bottom: 0;
	z-index: 20;
}
@media only screen and (max-width: 767px) {
	.btn_page_top{
		width: 3.25rem;
		bottom: 4.4rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.btn_page_top {
		width: 5rem;
	}
}
/**
/* フッター CSS
----------------------------------------------- */
footer{
	margin-top: auto;
}
footer .footer-wrap{
	background: #FFFFFF;
	padding: 4rem 0;
}
footer .footer-logo{
	margin-bottom: 1rem;
}
footer .footer-logo img{
	max-width: 15.8125rem;
}
footer .footer-wrap .address{
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.28;
	margin-bottom: 0.375rem;
}
footer .footer-wrap .tel a{
	font-family: "Montserrat", sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.5;
}
footer .footer-wrap .tel .roma{
	font-family: "Montserrat", sans-serif;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.5;
	margin-right: 0.5rem;
}
footer .footer-wrap .tel .text{
	font-size: 0.6875rem;
	font-weight: 500;
	line-height: 1.5;
	margin-left: 0.3125rem;
}
footer .footer-wrap .contact-btn{
	margin-top: 1.25rem;
}
footer .footer-wrap .contact-btn li.contact{
	display: inline-block;
	width: 100%;
	max-width: 12.5rem;
}
footer .footer-wrap .contact-btn li.contact a{
	position: relative;
	display: block;
	background: #305DC4;
	background: linear-gradient(90deg,rgba(48, 93, 196, 1) 0%, rgba(0, 127, 221, 1) 100%);
	font-family: "Poppins", sans-serif;
	color: #FFFFFF;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2.625rem;
	border-radius: 4px;
	padding: 0 4.875rem 0 3rem;
}
footer .footer-wrap .contact-btn li.contact a::after{
	background: url(../img/icon/arrow_w2.png) center center no-repeat;
	background-size: cover;
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1.125rem;
	height: 1.0625rem;
	right: 2.625rem;
	transition: all 1.5s cubic-bezier(.23,1,.32,1) 0.1s;
}
footer .footer-wrap .contact-btn li.contact a:hover{
	opacity: 0.8;
}
footer .footer-wrap .contact-btn li.contact a:hover::after{
	right: 2rem;
}
footer .footer-nav ul{
	border-left: 1px solid #C7C7C7;
	padding-left: 2rem;
	margin-left: 6rem;
}
footer .footer-nav ul li + li{
	margin-top: 1.5rem;
}
.footer-wrap .footer-nav li a{
	display: block;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.5;
}
footer .footer-nav li a:hover{
	opacity: .8;
}
footer .footer-bottom{
	background: #F7F7F7;
	padding: 3.5rem 0;
}
footer .footer-bottom .footer-text{
	width: calc(100% - 18.125rem);
}
footer .footer-bottom .footer-text dt{
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 0.5rem;
}
footer .footer-bottom .footer-text dd{
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.42;
}
footer .copy{
	width: 18.125rem;
	color: #BEBEBE;
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.45;
	text-align: right;
}
.footer-bar{
	display: none;
}
@media only screen and (max-width: 767px) {
	footer .footer-wrap{
		padding: 0;
	}
	.footer-wrap .inner-wrap{
		width: 100%;
	}
	.footer-wrap .footer-l{
		width: 100%;
		padding: 1.5rem 1.5rem 2.25rem 1.5rem;
	}
	.footer-wrap .footer-logo{
		text-align: center;
		margin-bottom: 0.75rem;
	}
	.footer-wrap .footer-logo img{
		max-width: 13.5rem;
	}
	footer .footer-wrap .address{
		font-size: 0.875rem;
		text-align: center;
		margin-bottom: 0;
	}
	footer .footer-wrap .contact-btn{
		text-align: center;
		margin-top: 2rem;
	}
	footer .footer-wrap .contact-btn li,
	footer .footer-wrap .contact-btn li.contact{
		display: inline-block;
		width: 100%;
		max-width: 17.875rem;
	}
	footer .footer-wrap .contact-btn li + li{
		margin-top: 1rem;
	}
	footer .footer-wrap .contact-btn li.tel a{
		position: relative;
		display: block;
		font-family: "Noto Sans JP", sans-serif;
		font-size: 0.9375rem;
		font-weight: 500;
		line-height: 2.85rem;
		border: 1px solid #2E5DC4;
		padding: 0 1rem;
	}
	footer .footer-wrap .contact-btn li.tel a::after{
		background: url(../img/icon/arrow_b2.png) center center no-repeat;
		background-size: cover;
		content: '';
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 1.125rem;
		height: 1.0625rem;
		right: 1.5rem;
		transition: all 1.5s cubic-bezier(.23,1,.32,1) 0.1s;
	}
	footer .footer-wrap .contact-btn li.contact a{
		text-align: center;
		line-height: 3rem;
		border-radius: 0;
		padding: 0 1rem;
	}
	footer .footer-wrap .contact-btn li.contact a::after{
		right: 1.5rem;
	}
	footer .footer-wrap .contact-btn li.contact a:hover::after{
		right: 2rem;
}
	.footer-wrap .footer-nav{
		width: 100%;
		border-bottom: 1px solid #4E5358;
	}
	footer .footer-nav ul{
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		border-left: none;
		padding-left: 0;
		margin-left: 0;
	}
	.footer-wrap .footer-nav li{
		display: block;
		width: 50%;
		border-bottom: 1px solid #4E5358;
		margin: 0;
	}
	.footer-wrap .footer-nav li:nth-child(odd){
		border-right: 1px solid #4E5358;
	}
	.footer-wrap .footer-nav ul:last-child li:last-child{
		border-bottom: none;
	}
	.footer-wrap .footer-nav li a{
		font-size: 0.875rem;
		text-align: center;
		padding: 1rem;
	}
	footer .footer-bottom{
		padding: 1.5rem 0 5.5rem 0;
	}
	footer .footer-bottom .footer-text{
		width: 100%;
		margin-bottom: 1.25rem;
	}
	footer .footer-bottom .footer-text dt{
		text-align: center;
	}
	footer .footer-bottom .footer-text dd{
		font-size: 0.8125rem;
	}
	footer .copy{
		width: 100%;
		text-align: center;
	}
	.footer-bar{
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.footer-bar .footer-bar-item{
		width: 50%;
	}
	.footer-bar .footer-bar-item img{
		width: 100%;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	footer .footer-wrap{
		padding: 3rem 0;
	}
	footer .footer-bottom{
		padding: 2.5rem 0;
	}
}
