@charset "utf-8";
/* CSS Document */
/* -- common ----------------------------------------------------*/
.top{
	position: relative;
}
.bg{
	background: url(../img/bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 100vh;
}
nav{
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
}
nav ul{
	display: flex;
	justify-content: center;
}
nav li{
	margin: 0 20px;
	font-family: 'Roboto', sans-serif;
}
nav li a{
	color: #fff;
	font-size: 20px;
	font-weight: bold;		
}

.logo{
	text-align: center; 
	font-weight: bold;	
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
	color: #fff;
    font-size: 40px;
    line-height: 50px;
	width: 172px;
}
h1{
	text-align: left;
	font-family: 'Roboto', sans-serif;
}
#copy{
	text-align: center;
	font-size: 12px;
	background: #333;
	color:#fff;
	padding: 10px;
}
#pagetop{
    position: fixed;
    margin-left: 0;
    right: 20px;    
    bottom: 38px;
    z-index: 100;
}
#pagetop a{
    width: 40px;
    height: 40px;
    background: #333;
}
#pagetop a:after{
    content: "";
    position: absolute;
    top: 30%;
    left: 30%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 12px 8px;
    border-color: transparent transparent #fff transparent;    
}
main h2{
	text-align: center;	
	font-size: 16px;
	font-weight: bold;
}
main hr.co {
    border: solid 1px #333;
}
main .co.balboa {
    font-size: 32px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}
main h2,
main .co.balboa {
    text-align: center;
    color: #333;
}
.company{		
	width: 100%;
	max-width: 1020px;
	margin: 50px auto 0;
	padding: 0 10px;	
}
.company .box{
	width: 100%;
	max-width: 600px;
	margin: 50px auto 0;
}
.company dl{
	display: flex;
	flex-wrap: wrap;
	margin: 20px 0 0;
	font-size: 16px;
}
.company dt{
	width: 150px;	
}
.contact{
	width: 100%;
	max-width: 1020px;
	margin: 100px auto ;
	padding: 0 10px;	
}
.contact .text{
	margin: 50px 0 0;
	text-align: center;
	line-height: 32px;
}
.formbox{
	margin: 50px auto 0;
}

@media screen and (max-width:899px){
	#pagetop{
	    right: 0;    
	}

	.company dt{
		width: 100%;
		background: #f3f3f3;
		padding: 10px 10px;
		font-weight: bold;
	}
	.company dd{
		margin: 10px 0 0;
		padding: 0 10px;
	}
}