/*-----------------------------------------
    Layout
-----------------------------------------*/

body {
    font-size: 16px;
    /* ゴシックのフォント */
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color: #333;
}

pre {
    /* 等幅のフォント */
    font-family: Consolas, 'Courier New', Courier, Monaco, monospace;
}

a {
    text-decoration: none;
}

p {
    margin: 1em 16px;
    line-height: 1.6;
}

hr.head {
    height: 5px;
    background-color: #44CFCB;
    border: none;
    color: #44CFCB;
}

header {
    padding: 10px 10px 30px 40px;
    /* 背景に画像を使用する場合
    /* background: url("../images/place.png") no-repeat left top; */
    /* background-size: cover; */
    /* background-position: 50% 30%; */
    height: 65px;
    text-align: left;
    color: #fff;
    background-color: steelblue;
}
header a:link {
    color: #fff;
    opacity: 0.9;
}
header a:visited {
    color: #fff;
    opacity: 0.9;
}
header a:active {
    color: #fff;
    opacity: 0.9;
}
header a:hover {
    opacity: 1;
}
header h1 {
    font-size: 24pt;
}
header .subtitle {
    font-size: 16px;
}

section {
    padding: 20px 20px 10px;
}

footer {
    padding: 15px 30px;
    font-size: 13px;
    color: #fff;
    background-color: #6798C1;
}
footer a:link {
    color: #fff;
    opacity: 0.9;
}
footer a:visited {
    color: #fff;
    opacity: 0.9;
}
footer a:active {
    color: #fff;
    opacity: 0.9;
}
footer a:hover {
    opacity: 1;
}
footer .counter {
    color: #FFC2A3;
}

.formed {
    margin: 10px;
}

.seq {
    font-size: 14px;
    /* 等幅のフォント */
    font-family: Consolas, 'Courier New', Courier, Monaco, monospace;
}

.publish {
    font-size: 13px;
}

.error {
    color: red;
}

/* 浮き出たような白いボックス */
.embossed {
    padding: 15px 10px;
    width: 680px;
    border: 1px solid #ddd;
    border-bottom: 2px solid #ccc;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-size: 16px;
    /* 明朝のフォント */
    font-family: Georgia,游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
}

/* input要素のうちtype属性値がsubmitのもの */
input[type="submit"] {
    width: 90px;
    font-weight: bold;
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 5px 0;
    color: #fff;
    opacity: 0.8;
    background-color: #329794;
    border: 1px solid #ddd;
    border-bottom: 2px solid #ccc;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
input[type="submit"]:hover {
    opacity: 1.0;
}
input[type="submit"]:active {
    opacity: 1.0;
}

