/*!
 * layout用スタイル定義
 */

:root {
    --dark: #303030;
    --light: #F2F2F2;
}

div.headfoot {
    color: white;
    background-color: var(--dark);
    text-align: center;
}

h1.text-center {
    text-align: center;
}

h1.text-bold {
    font-weight: bold;
}

div.content-middle-center {
    margin-left: auto;
    margin-right: auto;
    width: 30%;
}

div.content-small-center {
    margin-left: auto;
    margin-right: auto;
    width: 20%;
}

div.text-center {
    text-align: center;
}

.bg-head {
    background-color: var(--dark);
}

header nav a, header nav a:link, header nav a:active {
    padding: 0 8px;
    text-transform: uppercase;
    font-size: 14px;
    color: #FFFFFF !important;
}

.list-divider-pipe li+li::before {
    content: "|";
    padding: 0 .3em 0 .1em;
    color: #C0C0C0;
}

.text-with {
    width: 400px;
}

.h-40 {
    height: 40px;
}

.h-130 {
    height: 130px;
}

.w-100 {
    width: 100px;
}

.w-250 {
    width: 250px;
}

.pos-relative-7 {
    position: relative;
    top: 7px;
}

/*
 * フッターの位置固定用
 * ついでにbodyの背景色
 */

body {
    display: flex;
    flex-flow: column;
    min-height: 100vh;
    background-color: var(--light);
}

main {
    flex: 1;
}
