﻿html, body {
    font-family: YakuHanJP_Narrow, "Roboto", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 16px;
}

body {
    position: relative;
    padding-bottom: 150px;
    min-height: 100vh;
    box-sizing: border-box;
}

/* シナリーフォント */
@font-face {
    font-family: MyFont;
    src: url('SINARY-Regular.eot');
}

@font-face {
    font-family: MyFont;
    src: url('SINARY-Regular.woff') format('woff');
}

@font-face {
    font-family: MyFont;
    src: url('SINARY-Regular.woff2') format('woff2');
}

@font-face {
    font-family: MyFont;
    src: url('SINARY-Regular.ttf') format('truetype');
}

select {
    font-size: 1.1rem;
    height: 40px;
    padding: 0 8px;
    max-width: 100%;
    cursor: pointer;
}
    select:focus {
        background: #f5f5f5;
    }
@media (max-width: 559px) {
    select {
        margin: 5px auto;
        padding: 5px;
    }
}

input[type=submit] {
    background-color: #337ab7;
    border: 1px solid #337ab7;
    border-radius: 4px;
    padding: 5px 8px;
    font-size: 16px;
    color: #fff;
    transition: 0.3s;
}
    input[type=submit]:hover {
        background-color: #295d72;
        color: #fff;
    }

input[type=text],
textarea {
    padding: 8px 10px;
    font-size: 16px;
}

input[type=radio] {
    margin-right: 5px;
}

.btn-area {
    margin: 15px auto;
    text-align: center;
}

.btn {
    display: inline-block;
    background-color: #337ab7;
    margin: 0 5px;
    font-size: 16px;
    color: #fff;
    transition: 0.3s;
}
    .btn:hover {
        background-color: #295d72;
        color: #fff;
    }

.box {
    border: 1px solid #666;
    margin: 0 auto;
    padding: 16px 20px;
    width: 100%;
}
@media (max-width: 559px) {
    .box {
        width: 95%;
    }
}

.errorMsg {
    font-weight: bold;
    color: red;
}
    .errorMsg:before {
        font-family: "Font Awesome 5 Free";
        content: '\f071\00A0';
    }

.BoldBlack {
    font-weight: bold;
    color: black;
}
.BoldRed {
    font-weight: bold;
    color: red;
}
.BoldBlue {
    font-weight: bold;
    color: blue;
}

.container {
    padding: 0;
    height: 100%;
}

.navbar-inverse a:link,
.navbar-inverse a:visited {
    color: #fff;
}

.navbar-brand {
    display: table-cell;
    padding: 20px 15px 15px;
    vertical-align: middle;
    box-sizing: border-box;
    transition: 0.2s;
}

.container .logo {
    font-family: MyFont;
    font-size: 2.5em;
    box-sizing: border-box;
}
@media (max-width: 959px) {
    .container .logo {
        padding-left: 10px;
    }
}
@media (max-width: 559px) {
    .container .logo {
        display: none;
    }
}

.logoIcon {
    display: inline-block;
    margin: 0 3px;
    font-family: MyFont;
    font-size: 1.0em;
    width: 16px;
    box-sizing: border-box;
}

.container > .navbar-header {
    position: relative;
    margin-right: -5px;
    margin-left: -5px;
    width: 100%;
    box-sizing: border-box;
}

.navbar-collapse {
    color: #fff;
}

.siteTitle {
    display: table-cell;
    padding: 20px 5px 15px;
    vertical-align: middle;
    font-size: 30px;
    color: #fff;
    height: 50px;
    width: 100%;
    box-sizing: border-box;
}
@media (max-width: 559px) {
    .navbar-brand {
        padding: 0;
    }
    .siteTitle {
        padding-left: 20px;
        font-size: 20px;
    }
}

.addrTitle {
    font-size: 0.8em;
}
@media (max-width: 959px) {
    .addrTitle {
        display: none;
    }
}

div.topPageImg {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 10px;
    max-height: 300px;
    width: 100%;
    overflow: hidden;
}
    div.topPageImg img {
        width: 100%;
    }


div.caption {
    background-color: rgb(210, 83, 131);
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 23px;
    color: #fff;
    margin: 20px auto 0;
    width: 100%;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    div.caption {
        width: 95%;
    }
}


/* フッター */
footer {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0;
    padding: 20px;
    padding-bottom: 10px;
    background-color: rgb(210, 83, 131);
    text-align: center;
    color: #fff;
    width: 100%;
}

ul.footerLink {
    list-style: none;
    padding: 0;
}
    ul.footerLink li {
        display: inline-block;
        padding: 2px 5px 2px 1px;
        box-sizing: border-box;
        border-right: 1px solid #fff;
    }
        ul.footerLink li:last-child {
            border-right: none;
        }
        ul.footerLink li a:link,
        ul.footerLink li a:visited {
            border-radius: 25px;
            padding: 5px 7px;
            color: #fff;
            transition: 0.3s;
        }
        ul.footerLink li a:hover {
            text-decoration: none;
            background-color: #337ab7;
        }

/* ページトップへ戻るボタン */
#page-top {
    position: fixed;
    bottom: -10px;
    right: 20px;
    width: 50px;
}
    #page-top #btn {
        position: absolute;
        bottom: 40px;
        padding: 15px;
        vertical-align: bottom;
        box-sizing: border-box;
    }
        #page-top #btn a.scroll {
            font-size: 40px;
            color: #555;
            -webkit-text-stroke: 1px #fafafa;
            text-stroke: 1px #fafafa;
        }

/* 記事カテゴリタグカラー */
.newsCategory_Honsha {
    background-color: rgb(247, 161, 168);
}
.newsCategory_Hansha {
    background-color: rgb(136, 188, 20);
}
.newsCategory_Eigyosho {
    background-color: rgb(199, 130, 224);
}
.newsCategory_Report {
    background-color: rgb(254, 169, 0);
}
.newsCategory_Notice {
    background-color: rgb(254, 124, 124);
}
.newsCategory_Togane {
    background-color: rgb(25, 135, 229);
}
.newsCategory_Kyoto {
    background-color: rgb(158, 79, 45);
}
.newsCategory_Okinawa {
    background-color: rgb(204, 0, 0);
}

/* table基本 */
table {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 15px auto;
    width: 100%;
}
    table:not(.nobreak) th,
    table:not(.nobreak) td {
        background-color: #fafafa;
        border-top: 1px solid #666;
        border-bottom: 1px solid #666;
        padding: 10px 16px;
        font-size: 16px;
        color: #151515;
    }
    table:not(.nobreak) td {
        text-indent: -1.0em;
    }
    table:not(.nobreak) td:before {
        content: " ";
        border-right: 1px solid #666;
        margin-right: 1em;
        font-size: 1.5em;
        width: 1px;
    }
@media (max-width: 559px) {
    table:not(.nobreak) th,
    table:not(.nobreak) td {
        display: block;
        border: none;
    }
    table:not(.nobreak) td {
        padding: 0 16px 10px calc(1em + 10px);
        text-indent: 0;
    }
        table:not(.nobreak) td:before {
            display: none;
        }
}

/* 汎用 */
div.tag {
    display: inline-block;
    background-color: #337ab7;
    border-radius: 4px;
    margin: 5px auto;
    margin-right: 5px;
    padding: 5px 10px;
    color: #fff;
}

.PcBlockSpInline {
    display: block;
}
@media (max-width: 559px) {
    .PcBlockSpInline {
        display: inline-block;
    }
}

.PcSpaceSpBlock {
    display: inline-block;
    margin: 0 5px;
}
@media (max-width: 559px) {
    .PcSpaceSpBlock {
        display: block;
        margin: 0;
    }
}

/* 見出し */
.section-tit {
    position: relative;
    padding: 0 10px 0 18px;
    margin: 20px 10px 10px;
    font-family: 'Yu Gothic UI';
    font-size: 1.2rem;
    font-weight: bold;
}
    .section-tit:before,
    .section-tit:after {
        content: "";
        position: absolute;
        left: 0;
        top: calc(0.65em - 8px);
    }

@media (max-width: 559px) {
    .section-tit:before,
    .section-tit:after {
        top: calc(0.65em - 6px);
    }
}

.section-tit:before {
    width: 12px;
    height: 12px;
    background: #151515;
}
@media (max-width: 559px) {
    .section-tit:before {
        width: 10px;
        height: 10px;
    }
}

.section-tit:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 12px 0 0;
    border-color: #666 transparent transparent transparent;
}
@media (max-width: 559px) {
    .section-tit:after {
        border-width: 10px 10px 0 0;
    }
}

img.newsPic {
    width: 100%;
}

/* エラーメッセージ */
.msgMaintenance {
    display: block;
    border: 1px solid #666;
    border-radius: 4px;
    margin: 10px auto;
    padding: 14px 16px;
}

/* お知らせ */
a.infoNotice:link,
a.infoNotice:visited {
    position: fixed;
    right: 0;
    bottom: 20px;
    background-color: #069;
    border-radius: 20px 0 0 20px;
    padding: 5px 14px;
    color: #fff;
    width: auto;
    transition: 0.3s;
}
a.infoNotice:hover {
    background-color: #046;
    text-decoration: none;
}

a.infoNotice div {
    display: inline-block;
    border-radius: 20px;
    padding: 0px 4px;
    font-weight: bold;
    color: #fff;
}