/*=================================

	header

================================ */
header{
	height: 80px;
	padding: 0 20px;
	background-color: #ffffff;
	border-bottom: 1px solid #eeeeee;
}
header #logo img{
	width: auto;
	height: 79px;
}
@media screen and (max-width: 767px){
	header{
		height: 60px;
	}
	header #logo img{
		width: auto;
		height: 59px;
	}
}

/*=================================

	footer

================================ */
footer{
	background-color: #ffffff;
}
.footerLine{
    width: 2700px;
    height: auto;
    position: relative;
    left: 90vw;
    padding-top: 40px;
    transform: translateX(-100%);
}
.footerTxt{
    margin: 60px auto 40px;
    width: 50%;
    max-width: 600px;
    text-align: center;
}
.footerContent{	
    position: relative;
    padding: 24px 0 48px;
    max-width: 100%;
    background: #1A005D;
}
.footerContent ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footerContent ul li {
    padding: 0 12px;
    position: relative;
}
.footerContent ul li:after {
    content: "";
    width: 1px;
    height: 15px;
    background-color: #ffffff;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
}

.footerContent ul li:last-child:after {
    display: none;
}
.footerContent ul a {
    color: #FFF;
    font-size: 13px;
}
.footerContent ul a:hover {
    text-decoration: underline;
}
.footerContent p {
    margin-top: 14px;
    padding: 0 20px;
    font-size: 13px;
    word-wrap: break-word;
    text-align: center;
    color: #FFF;
}
.footerContent p small{
    font-size: 13px;
}
@media screen and (min-width: 900px){
	footer a[target="_blank"]::after{
	    display: none;
	}
}
@media screen and (max-width: 899px){
	footer a[target="_blank"]::after{
	    padding: 0;
	}
	.footerContent ul{
		display: block;
		border-top: 1px solid rgba(255,255,255,0.2);
	}
	.footerContent ul li{
		padding: 6px 20px;
		border-bottom: 1px solid rgba(255,255,255,0.2);
	}
	.footerContent ul li:after {
		display: none;
	}
	.footerContent ul li a{
		position: relative;
		display: block;
	}
	.footerContent ul li a::after {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		width: 8px;
		height: 8px;
		margin: auto;
		border-top: 2px solid #FFF;
		border-right: 2px solid #FFF;
		transform: rotate(45deg);
		box-sizing: border-box;
	}
}
@media screen and (min-width:500px) and (max-width:899px){
	.footerContent p{
		margin-top: 6vw;
	}
}

