.footer {
	background: #000;
	min-width: 1120px;
	padding: 20px 0 0;
	margin-top: 50px;
}
.footer_nav {
	overflow: hidden;
	clear: both;
	text-align: center;
	line-height: 1.7;
}
.footer_nav li {
	display: inline-block;
}
.footer_nav li:last-child {
	border-right:none;
}
.footer_nav li a {
	display: inline-block;
    padding: 0px 15px;
    font-size: 1.3rem;
    color: #fff;
}
.footer_sub_nav {
	overflow: hidden;
	clear: both;
	padding: 0 0 20px;
	margin: 0 auto;
	text-align: center;	
}
.footer_sub_nav li {
	display: inline-block;
}
.footer_sub_nav li a {
	display: inline-block;
	padding: 5px 20px;
	color: #ccc;
	position: relative;
}
.footer_sub_nav li a:before {
    display: block;
    position: absolute;
    top: 42%;
    left: 3%;
    width: 4px;
    height: 4px;
    border-top: solid 1px #ccc;
    border-right: solid 1px #ccc;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
}
.footer a:hover {
	opacity: 0.5;
}
.footer_logo {
	width: 260px;
	display: block;
	margin: 0 auto;
	padding: 25px 0;
}
.footer_zip {
    color: #fff;
    line-height: 1.4;
    text-align: center;
    font-size: 1.3rem;
    margin-top: 15px;
}
.footer_copy {
	color: #ccc;
	text-align: center;
	font-size: 1.4rem;
	padding: 0 0 15px;
}
.btn_page_top {
	background: #181818;
	display: block;
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 20;
	width: 60px;
	height: 60px;
}
.btn_page_top:hover {
	opacity: 0.5;
}
.btn_page_top:before {
    display: block;
    position: absolute;
    top: 25px;
    left: 24px;
    width: 12px;
    height: 12px;
    border-top: solid 2px #fff;
    border-left: solid 2px #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
}
@media screen and (max-width: 768px) {
	.footer {
		min-width: 100%;
		padding: 0;
	}
	.footer_nav {
		border-top: 1px solid #fff;
		padding: 0;
		margin-bottom: 20px;
		display: inline;
	}
	.footer_nav li {
		width: 50%;
		float: left;
    	box-sizing: border-box;
    	border-bottom: 1px solid #222;
		display: inline-block;
	}
	.footer_nav li:nth-child(2n) {
    	border-right: none;
	}
	.footer_nav li a {
		display: block;
		padding: 7px 0;
	}
	.footer_zip {
		line-height: 1.8;
		padding: 15px 0;
		display: block;
		overflow: hidden;
		clear: both;
	}
	.footer_copy {
		font-size: 1.2rem;
	}
	.btn_page_top {
		right: 0;
		bottom: 0;
	}
	
}

/*メニューをページ下部に固定*/
#sp-fixed-menu{
   position: fixed;
   width: 100%;
   bottom: 0px;
   font-size: 0;
   opacity: 0.9;
   z-index: 99;
}

/*メニューを横並びにする*/
#sp-fixed-menu ul{
   display: flex;
   list-style: none;
   padding:0;
   margin:0;
   width:100%;
}

#sp-fixed-menu li{
   justify-content: center;
   align-items: center;
   width: 50%;
   padding:0;
   margin:0;
   font-size: 14px;
   border-right: 1px solid #fff;
}

/*左側メニューの色*/
#sp-fixed-menu li:first-child{
   background: #5f9ea0;
}

/*左側メニューの色*/
#sp-fixed-menu li:last-child{
   background: #bc8f8f;
}

/*ボタンを調整*/
#sp-fixed-menu li a{
   color: #fff;
   text-align: center;
   display:block;
   width: 100%;
   padding:20px;
}

/*PCの場合にはメニューを表示させない*/
@media (min-width: 768px) {
   .for-sp{
      display:none;
    }
}

/*アイコンの設定*/
    .icon::before {
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      content: "\f0e0"; 
    }