@charset "utf-8";
/* CSS Document */

header {
	min-height: 72px;
	border-bottom: 5px double #666;
	padding-top: 8px;
    position: relative;
}

header .header-logo {
}

header .header-logo-left {
    display: inline-block;
    flot: left;
	margin-left: 10px;
	vertical-align: middle;
}
header .header-logo-right {
    display: inline-block;
    float: right;;
    margin-top: 14px;
	margin-right: 10px;
	vertical-align: middle;
}

header .header-title {
    text-align: center;
}

header h1 {
	margin-top: 8px;
	font-size: 32px;
	font-weight: bold;
    line-height: 150%;
	vertical-align: middle;
}

.backNumber {
    position: relative;
    top: 5px;
    text-align: right;
    padding-right: 10px;
    font-size: 16px;
    vertical-align: middle;
}
.backNumberSelect {
    font-size: 18px;
    font-weight: 600;
}

footer {
	margin-top: 30px;
	border-top: 1px solid #000;
}

.copyright {
	font-size: 16px;
	text-align: right;
}

@media (min-width: 800px ) {
    header {
        min-height: 72px;
        border-bottom: 5px double #666;
        padding-top: 8px;
        display: flex;
        justify-content: center;
        position: relative;
    }

    header .header-logo {
    }

    header .header-logo-left {
        position: absolute;
        left: 0;
        margin-left: 10px;
        vertical-align: middle;
    }
    header .header-logo-right {
        position: absolute;
        right: 0;
        margin-top: 14px;
        margin-right: 10px;
        vertical-align: middle;
    }

    header .header-title {
        position: absolute;
    }
    header h1 {
        margin-top: 8px;
        font-size: 32px;
        font-weight: bold;
        line-height: 150%;
        vertical-align: middle;
    }    
}