

/* footer
--------------------------- */
#footer{
	background-color: #fff;
	padding: 4.61rem 0 5.38rem;
}
#footer.border_line{
	position: relative;
	margin-top: 7.69rem;
}
#footer.border_line::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: rgba(170,170,170,0.5);
	top: 0;
	left: 0;
}
@media screen and (min-width: 1200px){
	#footer{
		padding: 6.66rem 0 7.66rem;
	}
	#footer.border_line{
		margin-top: 13.33rem;
	}
}
.footer_container{
	width: 88.46%;
	margin-right: auto;
	margin-left: auto;
}
.footer_logo{
	width: 70px;
	margin-bottom: 1.9rem;
}
.footer_logo a, .footer_logo img{
	width: 100%;
	height: 100%;
	display: block;
}
.footer_company{
	font-size: 1rem;
	letter-spacing: 0.05em;
	line-height: 1.75;
	margin-bottom: 0;
} 
.footer_company span{
	display: block;
	margin-bottom: 0.63rem;
}
.footer_right{
	display: none;
}
.footer_bottom{
	display: flex;
	flex-direction: column;
	margin-top: 2.84rem;
}
.footer_policy{
	color: #808080;
	display: inline-block;
	font-size: 0.84rem;
	transition: .3s;
}
.footer_policy:hover{
	text-decoration: none;
	color: #808080;
	opacity: 0.7;
}
.footer_copy{
	font-size: 0.84rem;
	color: #808080;
	letter-spacing: 0.02em;
	margin-top: 1.3rem;
	font-weight: 400;
}
@media screen and (min-width: 768px){
	.footer_container{
		width: 88.23%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.footer_logo{
		width: 80px;
	}
	.footer_right{
		display: block;
	}
	.footer_nav{
		display: flex;
		justify-content: flex-end;
		margin-bottom: 0;
	}
	.footer_nav li{
		list-style: none;
	}
	.footer_nav li + li{
		margin-left: 20px;
	}
	.footer_nav li a{
		color: #000;
		font-size: 0.92rem;
		transition: .3s;
	}
	.footer_nav li a:hover{
		text-decoration: none;
		color: #000;
		opacity: 0.7;
	}
	.footer_bottom{
		width: 100%;
		flex-direction: row;
		justify-content: space-between;
	}
	.footer_copy{
		margin-top: 0;
	}
}
@media screen and (min-width: 992px){
	.footer_logo{
		width: 90px;
	}
	.footer_nav li + li{
		margin-left: 30px;
	}
}
@media screen and (min-width: 1200px){
	.footer_logo{
		width: 100px;
		margin-bottom: 2.16rem;
	}
	.footer_company span{
		margin-bottom: 0.43rem;
	}
	.footer_nav li + li{
		margin-left: 40px;
	}
	.footer_nav li a{
		font-size: 0.93rem;
	}
	.footer_bottom{
		margin-top: 3.66rem;
	}
	.footer_policy{
		font-size: 0.86rem;
	}
	.footer_copy{
		font-size: 0.86rem;
	}
}



/* 767以下の表示設定
----------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 576px) {
ul.footer_menu {
	display: none;
}
}
@media screen and (max-width: 575px) {
	/*　フッター固定メニュー　*/
	ul.footer_menu {
		width: 100%;
		height: 50px;
		display: flex;
		margin: 0;
		padding: 0;
		position: fixed;
		bottom: 0;
		left:0;
		z-index: 999;
        transition: all .4s;
	}
	ul.footer_menu li {
		width: calc(100% / 3);
		margin: 0;
		list-style: none;
		position: relative;
	}
	ul.footer_menu li:not(:last-child)::after{
		position: absolute;
		content: "";
		width: 1px;
		height: 100%;
		background-color: rgba(255,255,255,0.4);
		top: 0;
		right: 0;
	}
	ul.footer_menu li a {
		border: none;
		text-align: center;
		text-decoration: none;
		width: 100%;
			height: 100%;
        font-size: 0.9375rem;
		letter-spacing: 0.08em;
		background-color: #f84519;
		color: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}