/* CSS Document */
html {
	font-size: 16px;
}
body {
	font-family: "Lato", "YuGothic", "Yu Gothic", "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #626262; 
	line-height:normal;
}
a {
  color: #008AFF;
  font-weight: 600;
}
a:hover {
	transition: all 0.7s ;
	color: #626262;
	text-decoration: underline;	
}
.fa-chevron-right,
.fa-external-link-alt {
	position:relative;
	left:20px;
}
.pc { display: block !important; }
.sp { display: none !important; }

@media (max-width:700px) {
	.pc { display: none !important; }
  .sp { display: block !important; }
}
/* -----------------------------------------------------
			
header
			
----------------------------------------------------- */

header {
	
}
.main-img {
	position: absolute;
	z-index: -9999;
}
.main-img img {
	width: 100vw;
  height: 500px;
  object-fit: cover;
}
@media (max-width:700px) {
	.main-img img {
  	height: 220px;
	}
}
.header-logo-menu{
 display: flex;
 flex-direction: row;
}
.logo-area {
	position: absolute;
	top:20px;
	left:50px;
	z-index: 0;
}
@media (max-width:700px) {
	.logo-area {
		left:25px;
	}
}
.logo-area h1 img {
	height:60px;
}
@media (max-width:700px) {
	.logo-area h1 img {
		height:40px;
	}
}
/*　ハンバーガーボタン　*/
#nav-drawer {
  position:fixed;
	right:40px;
	top:30px;
	z-index: 1;
}
@media (max-width:700px) {
	#nav-drawer {
  	position:fixed;
		right:25px;
		top:20px;
	}	
}
/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}
/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}
/*ハンバーガーの形をCSSで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 35px;/*長さ*/
  border-radius: 3px;
  background: #626262;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -12px;
}
#nav-open span:after {
  bottom: -24px;
}

/*閉じる用の薄黒箇所*/
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}
.header-nav-1,
.header-nav-2,
.header-nav-3 {
	color:#fff;
	margin-left:6%;
}
.header-nav-1 ul , 
.header-nav-2 ul , 
.header-nav-3 ul {
  padding-left: 20px;
  border-left: 1px solid #737373;
}
.header-nav-1 li , 
.header-nav-2 li , 
.header-nav-3 li {
	line-height: 30px;
}
.header-logo {
	padding-left: 17px;
	padding-top: 20px;
	padding-bottom:20px;
}
#nav-content ul {
	margin:10px 0;
}
#nav-content a {
	color:#fff;
}
#nav-content a:hover {
	color:#fff;
  text-decoration: underline;	
}
#nav-content h3{
	font-size:18px;
	font-weight: 800;
	color:#9F9F9F;
}
#nav-content {
	font-size:14px;
	color:#fff;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 90%;
  max-width: 250px;/*最大幅（お好みで調整を）*/
  height: 100%;
  background: #132846;
  transition: .3s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
	padding-bottom:20px;
	padding-left:20px;
}
#nav-content img {
	width:170px;
}
/*チェックがついたら表示させる*/
#nav-input:checked ~ #nav-close {
  display: block;
  opacity: .5;
}
#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

/* -----------------------------------------------------
			
header lang
			
----------------------------------------------------- */

.header-lang {
	padding-top:120px;
	margin-left:50px;
}
@media (max-width:700px) {
	.header-lang {
		padding-top:75px;
		margin-left:25px;
	}
}
.header-lang string {
	font-size:34px;
	font-weight: 800;
	line-height: 42px;
}
@media (max-width:700px) {
	.header-lang string {
		font-size:22px;
		line-height: 27px;
	}
}
.lang-container {
	margin-top:50px;
	margin-bottom:30px;
	display: grid;
	grid-template-columns: 200px 200px;
	grid-template-rows: 60px 60px;
}
@media (max-width:700px) {
	.lang-container {
		margin-top:10px;
		margin-bottom:25px;
		display: grid;
		grid-template-columns:70px 70px 70px;
		grid-template-rows: 20px;
	}
}
.header-lang img {
	width:55px;
	vertical-align:baseline;
}
@media (max-width:700px) {
	.header-lang img {
		width:40px;
	}
}
.lang-list p {
	margin-left:15px;
	display: inline-block;
}
@media (max-width:700px) {
	.lang-list p {
		display: none;
	}
}
.lang-list a {
	font-weight: normal;
	color: #626262; 
}
.lang-list a:hover {
	color: #8B1919; 
}
.promotion {
	display:block;
	padding:3% 1% 0 1%;
	width:75%;
	margin:0 auto;
	background-color: #ffffff;
}
@media (max-width:700px) {
	.promotion {
		padding:3% 1% 0 1%;
		width:80%;
		height:5%;
	}
}
.promotion ul {
	display: flex;
	justify-content: space-between;
}
.promotion li {
	text-align: center;
}
.promotion img {
	width:90%;
}
@media (max-width:700px) {
	.promotion img {
		width:90%;
	}
}

/* -----------------------------------------------------
			
location
			
----------------------------------------------------- */

.location {
  margin-left: 0px;
  background-image: url(../img/bg-img-01.png);
  background-repeat: no-repeat;
  background-position: 36% -10%;
	background-size: 112%;
}
@media (max-width:700px) {
	.location {
  	background-position:-30px -60px;
		background-size: 112%;
	}
}
.location-img {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows:auto;
}
.location h2 {
  display: inline-block;
  width: 50px;
  font-size: 36px;
  font-weight: 800;
  padding-top: 50px;
  margin-top: 70px;
  margin-bottom: 50px;
  margin-left: 50px;
  border-top: 8px solid #9C9C9C;
}
@media (max-width:700px) {
	.location h2 {
  	width: 40px;
  	font-size: 28px;
  	font-weight: 800;
  	padding-top: 25px;
  	margin-top: 60px;
  	margin-bottom: 20px;
  	margin-left: 20px;
	}
}
.location-1 {
	grid-column: 1 / span 5;
	padding:0 50px 0 50px;
}
@media (max-width:700px) {
	.location-1 {
		grid-column: 1 / span 12;
		padding:30px 20px 0 20px;
		order:4;
	}
}
.location-1 strong {
  display: block;
  font-size: 30px;
	line-height: 40px;
  text-align: center;
	margin-bottom:7px;
	margin-top:-5px;
}
.location-1 p {
  font-size: 16px;
	margin-bottom:30px;
	margin-top:20px;
}
.location-btn a {
	display: block;
	text-align:center;
	width:70%;
	margin:0 auto;
	color:#fff;
	padding:12px 15px;
	border-radius: 40px;
	border:solid 1px #8B1919;
	background-color: #8B1919;
}
.location-btn a:hover {
	color:#8B1919;
	border:solid 1px #8B1919;
	background-color: #fff;
	text-decoration:none;
}
.location-2 {
  width: 100%;
  min-height: 350px;
  background-image: url(../img/location-fujiidera.jpg);
  background-repeat: no-repeat;
  grid-column: 6 / span 7;
  background-size: 833px 450px;
}
@media (max-width:700px) {
	.location-2 {
  	min-height: 180px;
		background-size: 100% 100%;
  	grid-column: 1 / span 12;
		order: 1;
	}
}
.location-3 {
  background-repeat: no-repeat;
  background-image: url(../img/location-usj.jpg);
	background-size: cover;
	grid-column: 1 / span 6;
	height:350px;
}
@media (max-width:700px) {
		.location-3 {
		background-size: 100% 100%;
		grid-column: 1 / span 6;
		height:120px;
		order:2;
	}
}
.location-4 {
  background-repeat: no-repeat;
  background-image: url(../img/location-castle.jpg);
	background-size: cover;
	grid-column: 7 / span 6;
	height:350px;
}
@media (max-width:700px) {
	.location-4 {
		background-size: 100% 100%;
		grid-column: 7 / span 12;
		height:120px;
		order:3;
	}
}
/* -----------------------------------------------------
			
course
			
----------------------------------------------------- */
.course {
  background-image: url(../img/bg-img-08.png);
  background-repeat: no-repeat;
  background-position: 500px 40px;
  background-size: 400px;
}
@media (max-width:700px) {
	.course {
  	background-position: 85% 2%;
  	background-size: 210px;
	}
}
.course h2 {
  display: inline-block;
  width: 50px;
  font-size: 36px;
  font-weight: 800;
  padding-top: 50px;
  margin-top: 150px;
  margin-bottom: 50px;
  margin-left: 50px;
  border-top: 8px solid #9C9C9C;
}
@media (max-width:700px) {
	.course h2 {
  	width: 40px;
  	font-size: 28px;
  	padding-top: 25px;
  	margin-top: 80px;
  	margin-bottom: 20px;
  	margin-left: 20px;
	}
}
.course-img img {
	width:100vw;
	padding:0 50px;
}
@media (max-width:700px) {
	.course-img img {
		height:170px;
		object-fit: cover;
		padding:0 0;
	}
}
.course-guide {
	display: flex;
	justify-content: center;
	width:100vw;
	margin:0 auto;
	background-color: #F8F5F8;
	margin-top:-150px;
	padding-top:100px;
}
@media (max-width:700px) {
	.course-guide {
		flex-wrap: wrap;
		margin-top:-50px;
		padding-top:70px;
		padding-left:20px;
	}
}
.course-long {
  width: 38%;
  margin-right: 50px;
  background-color: #fff;
  border-top: 4px solid #8B1919;
	border-bottom: 1px solid #DBDBDB;
	padding:15px 25px 0 25px;
}
@media (max-width:700px) {
	.course-long {
  	width: 100%;
  	margin-right: 20px;
	}
}
.course-long a {
	color: #626262;
}
.course-long a:hover {
	color: #8B1919;
	text-decoration: none;
}
.course-short {
  width: 38%;
  background-color: #fff;
  border-top: 4px solid #FFAB39;
	border-bottom: 1px solid #DBDBDB;
	padding:15px 25px 0 25px;
}
@media (max-width:700px) {
	.course-short {
  	width: 100%;
  	margin-right: 20px;
		margin-top:20px;
	}
}
.course-short a {
	color: #626262;
}
.course-short a:hover {
	color: #FFAB39;
	text-decoration: none;
}
.course-long strong , .course-short strong {
	font-size:12px;
	color: #AFAFAF;
}
.course-long h3 , .course-short h3 {
	font-size: 30px;
	font-weight: 800;
	line-height: 60px;
}
.course-detail {
	display: block;
	font-weight: 800;
	margin:20px 0;
}
.course-detail a {
	display: block;
}
.course-feature {
	background-color: #F8F5F8;
	text-align: center;
	width:100vw;
	margin:0 auto;
	padding:80px 0 50px 0;
}
@media (max-width:700px) {
	.course-feature {
		padding:30px 0 50px 0;
	}
}
.course-feature h3 {
	font-size:30px;
	font-weight: 800;
	padding:0 55px;
}
.course-feature p {
	width:60%;
	margin:40px auto;
}
@media (max-width:700px) {
	.course-feature p {
		width:85%;
		margin:30px auto;
	}
}
.course-feature ul {
	display: flex;
	justify-content: center;
}
@media (max-width:700px) {
	.course-feature ul {
		flex-flow: column;
	}
}
@media (max-width:700px) {
	.course-feature li {
		margin-bottom:20px;
		text-align: center;
	}
}
.course-feature a {
	display: inline-block;
	color:#fff;
	padding:12px 40px;
	border-radius: 40px;
	background-color: #8B1919;
	border:solid 1px #8B1919;
	margin:0 15px ;
}
@media (max-width:700px) {
	.course-feature a {
		min-width:60%;
	}
}
.course-feature a:hover {
	color:#8B1919;
	background-color:#F8F5F8;
	text-decoration:none;
}
/* -----------------------------------------------------
			
facilities
			
----------------------------------------------------- */
.facilities {
	background-image: url(../img/bg-img-03.png);
  background-repeat: no-repeat;
	background-position: 500px -80px;
  background-size: 400px;
}
@media (max-width:700px) {
	.facilities {
  	background-position: 88% -3%;
  	background-size: 253px;
	}
}
.facilities h2 {
  display: inline-block;
  width: 50px;
  font-size: 36px;
  font-weight: 800;
  padding-top: 50px;
  margin-top: 150px;
  margin-bottom: 50px;
  margin-left: 50px;
  border-top: 8px solid #9C9C9C;
}
@media (max-width:700px) {
	.facilities h2 {	
  	width: 40px;
  	font-size: 28px;
  	padding-top: 25px;
  	margin-top: 80px;
  	margin-bottom: 20px;
  	margin-left: 20px;
	}
}
.facilities h3 {
	text-align: center;
	font-weight: 800;
	font-size: 36px;
	background-color: #DEDFE1;
	padding:50px 0;
}
@media (max-width:700px) {
	.facilities h3 {
		font-size: 27px;
		padding:40px 0;
	}
}
.facilities-box {
	display: flex;
}
@media (max-width:700px) {
	.facilities-box {
		flex-wrap: wrap;
	}
}
.facilities-guide {
	width:50vw;
}
@media (max-width:700px) {
	.facilities-guide {
		width:100vw;
		order:2;
		margin-bottom:30px;
	}
}
.facilities-guide ul {
	display: flex;
	justify-content:center;
}
.facilities-guide li {
  text-align: center;
  margin: 30px 15px 20px 15px;
  width: 120px;
}
@media (max-width:700px) {
	.facilities-guide li {
  	text-align: center;
  	margin: 30px 0px 20px 0px;
  	width: 120px;
	}
}
.facilities-guide img {
	margin-bottom:20px;
	width:80px;
}
@media (max-width:700px) {
	.facilities-guide img {
		margin-bottom:10px;
		width:70px;
	}
}
.facilities-img img {
	width:50vw;
	height:100%;
}
@media (max-width:700px) {
	.facilities-img img {
		object-fit: cover;
		object-position:0px -100px;
		width:100vw;
		height:200px;
		order:1;
	}
}
.facilities-guide em {
	font-size:18px;
	font-weight: 800;
	display: block;
}
@media (max-width:700px) {
.facilities-guide em {
	font-size:16px;
	}
}
.facilities-guide p {
	line-height: 25px;
	margin:0px 30px 20px 30px;
}
@media (max-width:700px) {
	.facilities-guide p {
		line-height: 25px;
		margin:0px 20px 20px 20px;
	}
}
.facilities-btn-map a {
	width:25vw!important;
}
@media (max-width:700px) {
	.facilities-btn-map a {
		width:60vw!important;
	}
}
.facilities-btn a {
	display: block;
	text-align: center;
	width:40%;
	color:#fff;
	padding:12px 15px;
	border-radius: 40px;
	background-color: #8B1919;
	border:solid 1px #8B1919;
	margin:0 auto ;
}
@media (max-width:700px) {
	.facilities-btn a {
		min-width:200px;
		max-width: 200px;
	}
}
.facilities-btn a:hover {
	color:#8B1919;
	background-color: #fff;
	text-decoration:none;
}
.facilities-iframe-map {
	width:100vw;
	height:300px;
	margin-bottom:50px;
}

/* -----------------------------------------------------
			
interview
			
----------------------------------------------------- */

.interview {
	background-image: url(../img/bg-img-04.png);
  background-repeat: no-repeat;
	background-position: 500px 0px;
  background-size: 400px;
}
@media (max-width:700px) {
	.interview {
		background-position: 90% 0%;
  	background-size: 225px;
	}
}
.interview h2 {
  display: inline-block;
  width: 50px;
  font-size: 36px;
  font-weight: 800;
  padding-top: 50px;
  margin-top: 150px;
  margin-bottom: 50px;
  margin-left: 50px;
  border-top: 8px solid #9C9C9C;
}
@media (max-width:700px) {
	.interview h2 {
  	width: 40px;
  	font-size: 28px;
  	padding-top: 25px;
  	margin-top: 80px;
  	margin-bottom: 20px;
  	margin-left: 20px;
	}
}
.interview-box {
	display: flex;
	flex-wrap: wrap;
	height:100%;
}
@media (max-width:700px) {
	.interview-box {
		flex-wrap: wrap;
		height:100%;
	}
}
.interview-guide {
	background-color: #F8F5F8;
	width:50vw;
	padding:50px 50px;
}
@media (max-width:700px) {
	.interview-guide {
		background-color: #F8F5F8;
		width:100vw;
		padding:50px 50px;
	}
}
.interview-img img {
	object-fit: cover;
	width:50vw;
	height:100%;
}
@media (max-width:700px) {
	.interview-img img {
		object-fit: cover;
		width:100vw;
		height:100%;
	}
}
.interview h3 {
	font-size:30px;
	font-weight:800;
	line-height: 40px;
}
.interview ul {
	font-size:20px;
	margin:50px 0;
}
.interview-btn a {
	display: block;
	text-align: center;
	width:65%;
	color:#fff;
	padding:12px 15px;
	border-radius: 40px;
	border:solid 1px #8B1919;
	background-color: #8B1919;
	margin:0 auto ;
}
@media (max-width:700px) {
	.interview-btn a {
		width:80%;
	}
}
.interview-btn a:hover {
	color:#8B1919;
	background-color:#F8F5F8;
	text-decoration:none;
}

/* -----------------------------------------------------
			
navigation
			
----------------------------------------------------- */
.navigation {
  background-image: url(../img/bg-img-02.png);
  background-repeat: no-repeat;
	background-position: 600px 290px;
  background-size: 280px;
}
@media (max-width:700px) {
	.navigation {
		background-position: 85% 500px;
  	background-size: 240px;
	}
}
.navigation-pre {
	background-color: #132846;
}
.navigation strong {
	font-size: 30px;
	display: block;
	width:100vw;
	color: #fff;
	padding-top:50px;
	padding-bottom:50px;
	text-align: center;
}
@media (max-width:700px) {
	.navigation strong {
		font-size: 30px;
		padding-left:30px;
		padding-right:30px;
	}
}
.navigation-pre ul {
	display: flex;
	justify-content: center;
	padding-bottom:50px;
}
@media (max-width:700px) {
	.navigation-pre ul {
		flex-flow: column;
	}
}
.navigation-pre li a {
	display: inline-block;
  margin: 0 12px;
  text-align: center;
  color: #fff;
  padding: 12px 30px;
  border-radius: 40px;
  border: 1px solid #FFF;
}
@media (max-width:700px) {
	.navigation-pre li a {
		width:65%;		
	}
}
@media (max-width:700px) {
	.navigation-pre li {
		text-align: center;
		margin-bottom: 20px;
	}
}
.navigation-pre li a:hover {
	background-color: #fff;
  color: #132846;
	text-decoration:none;
}
.navigation h2 {
	display: inline-block;
  width: 50px;
  font-size: 36px;
  font-weight: 800;
  padding-top: 50px;
  margin-top: 100px;
  margin-bottom: 50px;
  margin-left: 50px;
  border-top: 8px solid #9C9C9C;
}
@media (max-width:700px) {
.navigation h2 {
  	width: 40px;
  	font-size: 28px;
  	padding-top: 25px;
  	margin-top: 80px;
  	margin-bottom: 20px;
  	margin-left: 20px;
	}
}
.navigation-news {
	margin:0 50px;
}
@media (max-width:700px) {
	.navigation-news {
		margin:0 20px;
	}
}
.navigation-news li {
  padding: 15px 0;
  border-top: 1px solid #DBDBDB;
}
@media (max-width:700px) {
	.navigation-news li {
		padding:15px 0;
		overflow: hidden;
	}
}
.navigation-news li:last-child {
	border-bottom: 1px solid #DBDBDB;
}
.navigation-news li p {
	text-align: center;
	width:100px;
	display:inline-block;
	color:#fff;
	font-size:12px;
	background-color: #132846;
	padding:2px 8px;
	margin-right:10px;
}
@media (max-width:700px) {
	.navigation-news li p {
		display:block;
		margin-bottom:5px;
		width: 90px;
	}
}
.navigation-news li span a {
	font-weight: 400;
	color:#626262;
}
@media (max-width:700px) {
	.navigation-news li span a {
		white-space:nowrap;
	}
}
.navigation-instargam,
.navigation-sns-3 {
	margin:0 50px;
  display: flex;
}
@media (max-width:700px) {
	.navigation-instagram,
  .navigation-sns-3 {
		margin:0 20px;
	}
}
.navigation-instagram img,
.navigation-sns-3 img {
  width:100%;
  object-fit: cover;
  padding:0 50px;
}
@media (max-width:700px) {
  .navigation-instagram img,
  .navigation-sns-3 img {
    padding:0px;
  }
}
.navigation-sns {
	display: flex;
	margin-bottom:50px;
}
@media (max-width:700px) {
	.navigation-sns {
		flex-flow: column;
		margin-bottom:20px;
	}
}
.navigation-fb {
	margin-left:50px;
}
.fb-page {
	width:400px;
}
@media (max-width:700px) {
	.fb-page {
		width:300px;
	}
}
@media (max-width:700px) {
	.navigation-fb {
		margin-left:20px;
	}
}
.navigation-sns-1 {	
}
.navigation-sns-2,
.navigation-sns-3 {
	margin-right:50px;
	width:100%;
}
.navigation-guide img {
	width:100%;
}
.navigation-guide ul {
	display: flex;
	justify-content: center;
	background-color: #DEDFE1;
	padding:30px 0;
}
@media (max-width:700px) {
	.navigation-guide ul {
		flex-flow: column;
		padding:15px 0;
	}
}
.navigation-guide li p {
	text-align: center;
}
.navigation-guide li a {
	color:#626262; 
	display: block;
	width:93%;
	font-weight: 800;
	text-align: center;
	background-color:#fff;
	padding:5px 20px;
	margin:0 15px;
}
@media (max-width:700px) {
	.navigation-guide li a {
		margin:10px auto;
		width:90%;
	}
}
.navigation-guide li a:hover {
	color:#fff; 
	background-color:#132846;
	text-decoration:none;
}
.navigation-guide i {
	font-size:20px;
}
.navigation-qa {
	margin-left:50px;
	margin-bottom:10.7px;
}
@media (max-width:700px) {
	.navigation-qa {
		margin-left:20px;
		margin-right:20px;
		margin-bottom:10.7px;
	}
}
/*アコーディオン*/
.acd-check{
  display: none;
}
.acd-label{
	background-color: #fff;
	font-size:14px;
  display: block;
  margin-bottom: 1px;
  padding: 10px 40px 10px 10px;
  position: relative;
  border: 4px solid #C2C2C2;
}
.acd-label:after{
    box-sizing: border-box;
		font-family: "Font Awesome 5 Free";
    content: '\f067';
    display: block;
    font-weight: 900;
    height: 52px;
    padding: 10px 15px 10px 20px;
    position: absolute;
    right: 0;
    top: 0px;
}
.acd-content{
    display: block;
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
}
.acd-check:checked + .acd-label:after{
    content: '\f068';
}
.acd-check:checked + .acd-label + .acd-content{
    height: auto;
    opacity: 1;
    padding: 10px;
    visibility: visible;
}

/* -----------------------------------------------------
			
footer
			
----------------------------------------------------- */
		
footer {
	font-size:14px;
	display: flex;
	flex-wrap: wrap;
	background-color: #132846;
  padding: 80px 0px 80px 50px;
}
@media (max-width:700px) {
	footer {
		flex-flow: column;
		padding: 30px 0px 30px 0px;
	}
}
footer a {
	color:#fff;
}
footer a:hover {
	color:#fff;
  text-decoration: underline;	
}
footer h3{
	font-size:18px;
	font-weight: 800;
	color:#9F9F9F;
	margin-bottom:15px;
}
@media (max-width:700px) {
	footer h3{
		margin-top:15px;
	}
}
.footer-nav-1 {
	font-size:14px;
	color:#fff;
}
@media (max-width:700px) {
	.footer-nav-1 {
		margin-left:20px;
		margin-top:30px;
		order:4;
	}
}
.footer-nav-1 ul {
	display: flex;
	margin:25px 0;
}
@media (max-width:700px) {
	.footer-nav-1 ul {
		display: flex;
		margin:25px 0;
	}
}
.footer-nav-1 li {
	font-size:30px;
	margin-right:30px;
}
.footer-nav-1 img {
	width:230px;
}
.footer-nav-2,
.footer-nav-3,
.footer-nav-4 {
	color:#fff;
	margin-left:6%;
}
@media (max-width:700px) {
	.footer-nav-2 {
		order:1;
	}
}
@media (max-width:700px) {
	.footer-nav-3 {
		order:2;
	}
}
@media (max-width:700px) {
	.footer-nav-4 {
		order:3;
	}
}
.footer-nav-2 ul , 
.footer-nav-3 ul , 
.footer-nav-4 ul {
  padding-left: 20px;
  border-left: 1px solid #737373;
}
.footer-nav-2 li , 
.footer-nav-3 li , 
.footer-nav-4 li {
	line-height: 30px;
}
