@charset "UTF-8";
/*========================================================================================
  全般的なスタイル
========================================================================================*/
html {
    width: auto;
    margin: 0 auto;
    height: 100%;
}
body {
    margin: 0;
    width: auto;
    height: 100%;
    background-color: #FFFFFF;
    line-height: 1.65;
    /*
	font-family: Montserrat, "Avenir Next", 'Quicksand', Arial, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'MS ゴシック', 'MS Gothic', sans-serif;*/
    font-family: -apple-system, BlinkMacSystemFont, Verdana, Helvetica Neue, Segoe UI, Hiragino Kaku Gothic ProN, Hiragino Sans, ヒラギノ角ゴ ProN W3, Arial, メイリオ, Meiryo, sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #333;
    text-align: left;
}
/* 入力UI群の線の余白、線の色、角の形、影 */
input, textarea, select, .imitate-input {
    padding: 4px;
    border: solid 1px #ccc;
    border-radius: 3px;
    box-shadow: inner 0 0 4px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    font-family: inherit;
    font-size: 100%;
    color: #2c3643;
    line-height: inherit;
}
input:focus, textarea:focus, select:focus {
    box-shadow: 0 0 3px 0 rgba(255,153,0,1);
    border: 1px solid #FFF !important;
    outline: 0;
}
input[type="checkbox"], input[type="radio"] {
    vertical-align: middle;
    margin: 3px 5px;
}
h1 {
    margin-left: 20px;
    margin-top: 0.5em;
    margin-bottom: 1em;
}
.font-awesome {
    font-family: Montserrat, "Avenir Next", 'Quicksand', Arial, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'MS ゴシック', 'MS Gothic', sans-serif, FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* ヘッダーの機能アイコンサイズ */
.fa-font-size {
    font-size: 24px;
}
.fa-right-space10 {
    margin-right: 10px;
}
.fa-right-space8 {
    margin-right: 8px;
}
.fa-fw {
    width: 1.5em;
    text-align: left;
}
.fa-1-5x {
    font-size: 1.5em;
}
/* HTML5新要素に未対応のブラウザ対応 */
article, aside, details, footer, header, hgroup, menu, nav, section, summary {
    display: block;
}
.er-message-box {
    color: #e74c3c;
    font-size: 16px;
    text-align: left;
}
.er-icon {
    float: left;
    font-size: 40px;
}
.er-message {
    float: left;
    padding-top: 8px;
    padding-left: 20px;
}
/* 項目名横の説明リンク */
a.info-link {
    margin-left: 5px;
}
/*========================================================================================
  デザインフレーム
========================================================================================*/
/* body内の全コンテンツを覆うボックス */
.wrapper {
    position: relative;
    width: auto;
    height: auto !important;
    height: 100%;
    margin: 0px;
    /* コンテンツが少ないページのために、
    　　フッターがウィンドウサイズの最下部にくるよう調整 */
    min-height: 100%;
}
#header, #footer, #contents {
    width: 100%;
}
#header, #footer {
    background-color: #f3f2f2;
}
#header {
    position: relative;
    display: table;
    table-layout: fixed;
    line-height: 1.2;
}
#footer {
    position: absolute;
    overflow: hidden;
    bottom: 0px;
    display: table;
    height: 30px;
    line-height: 30px;
    margin-bottom: 0px;
}
/* ヘッダーフッター間にある本コンテンツ */
#contents {
    margin: 0;
    /* 60px=フッタースペース30px + 余白30pxを確保 */
    padding-bottom: 60px;
}
/*========================================================================================
  よく使うワイヤーフレーム
========================================================================================*/
/* 基本の親要素 */
.parent {
    display: table;
    width: 100%;
    border-collapse: collapse; /* 隣接セルのボーダーを重ねて表示 */
}
/* 中の子要素を均等幅にしたい時 */
.pr-divide-evenly {
    table-layout: fixed;
}
/* 子要素の間に隙間を開ける時 */
.pr-make-space {
    border-collapse: separate; /* 隣接セルのボーダーを間隔をあけて表示 */
    border-spacing: 10px 5px;
}
/* 基本の子要素 */
.children {
    display: table-cell;
    vertical-align: middle;
}
/* 子要素を親要素内で下揃えにしたい時 */
.cld-align-bottom {
    vertical-align: bottom;
}
.cld-tablet {}
.cld-mobile {}
@media (max-width:768px) {
    .cld-tablet {
        display: block;
    }
}
@media (max-width:480px) {
    .cld-mobile {
        display: block;
    }
}
/* 対象要素の直前に改行を挿入する
　　※glmasterのカスタムボタンを複数行にしたい場合に使用している。
　　　brをデザインに使うのはあまり推奨しないので、ゆくゆくはフレームワーク側で解消してほしい。 */
.break::before {
    content: "\A";
    white-space: pre;
}
/*========================================================================================
  要素の共通設定
========================================================================================*/
a {
    color: #1cb8e3;
    text-decoration: none;
    cursor: pointer;
}
a:hover, a:active {
    opacity: 0.8;
    transition: color .3s;
    text-decoration: underline;
}
a:focus {
    outline: none;
}
img {
    border: none;
}
h3 {
    margin: 10px 0;
    padding: 10px 20px;
    background-color: #34495e;
    font-size: 16px;
    font-weight: normal;
    color: #fff;
}
/*========================================================================================
  ページ共有クラス
========================================================================================*/
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
.contents-margin {
    margin: 10px;
}
.h1 {
    font-size: 32px;
    margin-top: 20px;
    margin-bottom: 20px;
}
/* カレンダーのポップアップUIの×ボタン */
.link-close {
    opacity: 1;
}
/* 画面幅に応じて文字列を自動折り返しする場合に、適切な単語単位に折り返しさせたい時に使います */
/* 「もしもしカメよ」の文字列を「もしもし」と「カメよ」のブロックで折り返し表示したい場合 */
/* <span class="break-point">もしもし</span><span class="break-point">カメよ</span> */
.break-point {
    display: inline-block;
}
/* プロフィール画像は丸く表示する */
.profile-img {
    border-radius: 20px;
}
/* プロフィール画像の中サイズ */
.profile-img-m {
    width: 30px;
    height: 30px;
}
.profile-img-xs {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}
/* ヘッダーの自分アイコン */
.profile-img-me {
    width: 45px;
    height: 45px;
}
/* Glmasterのリストで使用するアイコン */
.profile-img-li {
    display: inline-block;
    width: 40px;
    height: 40px;
    vertical-align: middle;
}
@media (max-width:480px) {
    .profile-img-me {
        width: 36px;
        height: 36px;
    }
}
/* 注釈の文字色 */
.annotation-color {
    color: #cccbac;
}
/* リストのマーカーに「※」を使いたい時 */
ul.kome-marker {
    list-style-type: none;
    margin-left: 1.5em; /* マーカーを1.5文字寄せた分、ULにマージンを設定*/
}
ul.kome-marker li:before {
    content: "※";
    margin-left: -1.5em; /* 1.5文字分左に寄せる */
}
.icon:before {
    font-family: FontAwesome;
    margin-right: 0.5em;
    display: inline-block;
    font-weight: 400;
}
/*アイコン左右反転用*/
.icon-horizontal:before {
    font-family: FontAwesome;
    margin-left: 0.5em;
}
.icon:after {
    font-family: FontAwesome;
    margin-left: 0.5em;
    display: inline-block;
}
.icon-user:before {
    content: "\f007";
}
.icon-comment:before {
    content: "\f075";
}
.icon-comment-reverce:before {
    display: inline-block;
    transform: scaleX(-1);
    content: "\f075";
}
.icon-heart:before {
    content: "\f004";
}
.icon-edit:before {
    content: "\f044";
}
.icon-delete:before {
    content: "\f014";
}
.icon-lock:before {
    content: "\f023";
}
.icon-comments:before {
    content: "\f0e6";
}
.icon-back:before {
    content: "\f104";
}
.icon-cancel:before {
    content: "\f00d";
}
.icon-plus:before {
    content: "\f067";
}
.icon-plus-circle:before {
    content: "\f055";
}
.icon-minus:before {
    content: "\f056";
}
.icon-checkon:before {
    content: "\f046";
}
.icon-checkoff:before {
    content: "\f096";
}
.icon-copy:before {
    content: "\f24d";
}
.icon-send:before {
    content: "\f1d9";
}
.icon-share-send:after {
    content: "\f1d9";
}
.icon-download:before {
    content: "\f019";
}
.icon-search:before {
    content: "\f002";
}
.icon-search-plus:before {
    content: "\f00e";
}
.icon-search-minus:before {
    content: "\f010";
}
.icon-upload:before {
    content: "\f093";
}
.icon-exchange:before {
    content: "\f0ec";
}
.icon-time:before {
    content: "\f017";
}
.icon-refresh:before {
    content: "\f021";
}
.icon-cloud-download:before {
    content: "\f0ed";
}
.icon-cloud-upload:before {
    content: "\f0ee";
}
.icon-home:before {
    content: "\f015";
}
.icon-eye:before {
    content: "\f06e";
}
.icon-gear:before {
    content: "\f013";
}
.icon-ban:before {
    content: "\f05e";
}
.icon-calendar:before {
    content: "\f073";
}
.icon-calendar-o:before {
    content: "\f133";
}
.icon-calendar-plus:before {
    content: "\f271";
}
.icon-check:before {
    content: "\f00c";
}
.icon-mail:before {
    content: "\f003";
}
.icon-angle-right:before {
    content: "\f105";
}
.icon-circle-right:before {
    content: "\f138";
}
.icon-map:before {
    content: "\f041";
}
.icon-history:before {
    content: "\f1da";
}
.icon-book:before {
    content: "\f02d";
}
.icon-exclamation:before {
    content: "\f071";
}
.icon-exclamation-circle:before {
    content: "\f06a";
}
.icon-pencil-square:before {
    content: "\f14b";
}
.icon-filter:before {
    content: "\f0b0";
}
.icon-database:before {
    content: "\f1c0";
}
.icon-unlock:before {
    content: "\f09c";
}
.icon-stop:before {
    content: "\f056";
    color: orangered;
    font-size: 14px;
}
.icon-list:before {
    content: "\f0ca";
}
.icon-pie-chart:before {
    content: "\f200";
}
/* 項目名に付加する必須／任意アイコンの共通クラス */
.field-icon {
    width: auto;
    margin-right: 10px;
    margin-bottom: 5px;
    padding: 2px 10px;
    border-radius: 5px;
}
/* 必須アイコン */
.field-icon-required {
    border: 1px solid #e74c3c;
    color: #e74c3c;
}
/* 任意アイコン */
.field-icon-optional {
    border: 1px solid #9eabb3;
    color: #6e7b88;
}
/*========================================================================================
  各種ボタン
========================================================================================*/
/* ボタンの共通デザイン */
.btn {
    display: inline-block;
    margin: 8px;
    padding: 1em 2em;
    box-sizing: border-box;
    border: solid 1px #67747c;
    border-radius: 5px;
    background-color: #67747c;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.4;
    text-decoration: none;
    -webkit-font-smoothing: subpixel-antialiased;
    cursor: pointer;
    -webkit-transition: border .10s linear, color .10s linear, background-color .10s linear;
    transition: border .10s linear, color .10s linear, background-color .10s linear;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}
/* 全ボタン共通のhoverアクション */
.btn:hover {
    text-decoration: none;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    opacity: 0.8;
}
/* 小さめボタンデザイン */
.btn-sm {
    padding: 0.5em 1em;
    border-radius: 4px;
    font-size: 14px;
}
/* より小さめボタンデザイン */
.btn-mn {
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
}
/* 大き目ボタンデザイン */
.btn-lg {
    padding: 1.2em 2.4em;
    border-radius: 6px;
    font-size: 18px;
}
/* 横幅を拡げるときに使うボタン */
.btn-wide {
    padding-left: 2.4em;
    padding-right: 2.4em;
}
/* シンプルなボタン */
.btn-simple {
    border: solid 1px #34495e;
    background-color: #34495e;
    color: #fff;
}
.btn-simple-gray {
    border: solid 1px #bdc3c7;
    background-color: #bdc3c7;
    color: #fff;
}
.btn-home {
    border: solid 1px #6B7A8F;
    background-color: #6B7A8F;
    color: #FFF;
}
/* キャンセルボタン */
.csbtn {
    border: solid 1px #b7bfc6;
    background-color: transparent;
    color: #67747c;
}
/* サービス固有の不可逆機能実行ボタン */
.btn-update {
    border: solid 1px #eb6600;
    background-color: #EB6600;
    color: #FFF;
}
/* サービス固有の機能実行ボタン */
.btn-fn {
    border: solid 1px #f2ac00;
    background-color: #F2AC00;
    color: #FFF;
}
.btn-fn-o {
    background-color: transparent;
    border: 1px solid #f2ac00;
    color: #F2AC00;
}
/* ベースカラー(#67747c)のベタ塗りボタン */
.btn-baseCl {
    border: solid 1px #67747c;
    background-color: #67747c;
    color: #fff;
}
/* ベースカラー(#6b7a8f)の縁取りボタン */
.btn-baseCl-o {
    border: solid 1px #67747c;
    background-color: transparent;
    color: #67747c;
}
/* エマージェンシーを意味するボタン */
.btn-warning {
    background-color: #e60033;
    border: solid 1px #e60033;
    color: #fff;
}
.btn-warning-o {
    background-color: transparent;
    border: solid 1px #e60033;
    color: #e60033;
}
/* 何らかの変化を伴う機能実行ボタン */
.btn-submit {
    border: solid 1px #036EB7;
    background-color: #036EB7;
    color: #FFF;
}
/* システムメニューの「登録・変更」ボタン */
.btn-action {
    border: solid 1px #1abc9c;
    background-color: #1abc9c;
    color: #FFF;
}
/* メニュー画面に配置するボタンのデザイン（縁取り） */
.btn-portlet {
    width: 30%;
    padding: 20px 0;
    margin: 5px;
    background-color: #fff;
    border: 3px solid #6B7A8F;
    border-radius: 10px;
    color: #6B7A8F;
    font-size: 18px;
    text-align: center;
    white-space: normal;
}
.btn-portlet:hover {
    background-color: #6B7A8F;
    color: #fff;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}
/* メニュー画面に配置するボタンのデザイン（ベタ塗り） */
.btn-portlet2 {
    width: 22%;
    min-height: 4em;
    padding: 10px;
    margin: 5px;
    background-color: #6B7A8F;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    text-align: center;
    white-space: normal;
}
.portlet-link {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}
.portlet-link:hover {
    color: #fff;
}
/*リンクボタン（ユーザ一覧の「パスワード再発行」で使用*/
.btn-link {
    display: inline-block;
    margin: 2px 0;
    padding: 1px 15px;
    background-color: #4682b4;
    border-radius: 3px;
    color: #fff;
}
.btn-link:hover {
    background-color: #b22222;
}
.submit_button_area {
    float: right;
}
.button {
    white-space: nowrap;
}
.button img {
    vertical-align: middle;
}
/* 480px以下用（スマホ用）の記述 */
@media (max-width:480px) {
    .submit_button_area {
        float: none;
    }
    .btn-submit, .btn-action, .btn-update, .csbtn {
        /* 共通btnクラスのmargin左右10pxを除いた分の100%表示になるよう変更 */
        width: calc(100% - 20px);
    }
    .btn-submit, .btn-action, .btn-update {
        padding-top: 20px;
        padding-bottom: 20px;
        /* letter-spacing: 0.5em; */
    }
    .btn-update {
        padding-left: 8px;
        padding-right: 8px;
    }
    .btn-portlet {
        margin: 10px 0;
        width: 100%;
    }
    .btn-relative {
        padding: 5px;
    }
}
/*========================================================================================
  ヘッダー内で使用する定義
========================================================================================*/
.logo {
    position: static;
    display: table-cell;
    width: 100%;
    height: auto;
    vertical-align: top;
    text-align: center;
}
.logo h1 {
    margin: 0;
    margin-top: 2px;
    font-size: 10.5px;
    font-weight: normal;
}
.logo img {
    height: 32px;
}
/* ロゴエリア内の要素を縦中央に揃える */
.logo-inline-area {
    display: flex;
    align-items: center;
    color: #8dc031;
}
/* ヘッダーの左右アイコンメニュー */
.nav-menu {
    position: relative;
    display: table-cell;
    width: 220px;
    padding: 0;
}
/* 左右アイコンメニューの追加属性 */
.nav-menu-right {
    text-align: right;
}
/* ヘッダーのulリスト */
.nav_list {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
    vertical-align: middle;
}
.nav_list li {
    position: relative;
    display: block;
    float: left;
    margin: 3px 12px 1px 0;
    padding: 0;
    width: auto;
    vertical-align: middle;
    color: #56514b;
}
.nav_list li a {
    color: #56514b;
}
/* ナビアイコン（右寄せ） */
.nav-child-right {
    display: inline-block;
    text-align: right;
}
.nav_list li:hover > .nav-child-right {
    cursor: pointer;
}
/* ナビアイコン（右寄せ）のラベル */
.nav-child-right .nav-child-description {
    margin-top: 2px;
    font-size: 10.5px;
    font-weight: bold;
}
/* ナビアイコン（右寄せ）内のユーザ名 */
.nav-child-right .nav-child-username {
    display: block;
    width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}
/* ナビアイコン（右寄せ）内のカレットダウン */
.nav-child-right .nav-child-description i {
    vertical-align: middle;
    font-size: 16px;
    color: #aba6a6;
}
/* ナビアイコン（中央寄せ） */
.nav-child-center {
    display: inline-block;
    text-align: center;
}
.nav_list li:hover > a .nav-child-center {
    color: #1cb8e3cc;
    cursor: pointer;
    font-weight: normal;
    transition: color .3s;
}
/* ナビアイコン（中央寄せ）のラベル */
.nav-child-center .nav-child-description {
    margin-top: 2px;
    font-size: 9px;
}
/* ナビアイコンの入れ子リスト */
.nav_list li ul {
    list-style: none;
    position: absolute;
    top: 38px;
    left: -10%;
    margin: 0;
    padding: 0;
    z-index: 100;
    box-shadow: 0px 6px 9px -3px rgba(0, 0, 0, 0.4);
}
.nav_list li ul li {
    overflow: hidden;
    width: 100%;
    height: 0;
    margin: 0;
    color: #565b56;
    background: #ecf0f1;
    text-align: left;
    font-size: 16px;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
    transition: .3s;
    vertical-align: middle;
}
.nav_list li ul li > span {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    padding: 8px 16px;
    font-weight: bold;
}
.nav_list li:hover ul li {
    overflow: visible;
    height: 34px;
    border-bottom: 1px dotted #999;
}
.nav_list li:hover .user_name {
    overflow: visible;
    height: auto;
    background-color: #ddd;
    border-bottom: 0;
}
.nav_list li ul li {
    line-height: 1.2;
}
/* 「.nav_list li ul li a」だと「.nav_list li a」に勝てなかったので、
　入れ子リストに「nav_nest_list」クラス名つけた */
.nav_nest_list li a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: normal;
    color: #4b525a;
}
.nav_list li ul li:hover > a {
    background: #4b525a;
    color: #FFF;
    text-decoration: none;
}
.nav_list li:hover ul li:first-child {
    border-top: 0;
}
.nav_list li:hover ul li:last-child {
    border-bottom: 0;
}
/* Mobile以下のサイズ */
@media (max-width:480px) {
    #header {
        table-layout: auto;
    }
    .nav-menu {
        width: auto;
    }
}
/* 767px以下用（タブレット／スマートフォン用）の記述 */
@media (max-width:767px) {
    .hidden-xs {
        display: none !important;
    }
}
/* 768px以上用の記述 */
@media (min-width:768px) {
    .hidden-md {
        display: none !important;
    }
}
/* 480px以下用（スマートフォン用）の記述 */
@media (max-width:479px) {
    .hidden-mobile {
        display: none !important;
    }
}
/* 768px以上用の記述 */
@media (min-width:480px) {
    .appear-mobile {
        display: none !important;
    }
}
/*========================================================================================
  フッター内で使用する定義
========================================================================================*/
.copyright {
    float: left;
    margin-left: 4px;
    font-size: 0.7em;
}
.frameworkimg {
    margin-right: 4px;
    text-align: right;
}
.frameworkimg img {
    vertical-align: middle;
    width: auto;
    height: 16px;
}
/*========================================================================================
　フレームワークナビメニュー関連
========================================================================================*/
#mainmenu {
    background-color: #34495e;
    border: none;
}
/* スマホサイズの時はアイコン表示に切り替わる */
#menu-icon {
    display: none;
}
#nav {
    margin: 0;
    padding: 0;
}
/* ナビメニュー親カテゴリのリスト */
#nav li {
    float: left;
    position: relative;
    display: block;
    box-sizing: border-box;
    margin-right: 5px;
    list-style: none;
}
#nav a {
    position: relative;
    display: block;
    padding: 15px 21px;
    font-size: 16px;
    line-height: 23px;
    color: #fff;
    text-decoration: none;
}
#nav a:hover {
    background-color: #1abc9c;
}
/* 親カテゴリhover時のドロップダウンリスト */
#nav ul {
    position: absolute;
    display: none;
    width: 250px;
    background: #34495e;
    z-index: 100;
}
#nav ul li {
    float: none;
    margin: 0;
    padding: 0;
}
#nav ul li a {
    padding: 10px;
}
#nav ul li:first-child > a {
    padding-top: 15px;
}
#nav ul li:last-child > a {
    padding-bottom: 15px;
}
/* 親カテゴリhover時のみ子カテゴリリストを表示させる */
#nav li:hover > ul {
    display: block;
}
@media screen and (min-width: 0px) and (max-width:480px) {
    #mainmenu {
        position: relative;
    }
    /* スマホの時のみ表示させる（縮小版メニュー） */
    #menu-icon {
        display: block;
        padding: 10px;
        background-color: #34495e;
        font-size: 16px;
        color: #fff;
        cursor: pointer;
    }
    #menu-icon:before {
        content: "\f0c9";
        font-family: FontAwesome;
        margin-right: 5px;
    }
    #menu-icon:hover, #menu-icon:active {
        background-color: #1abc9c;
    }
    #nav {
        clear: both;
        position: absolute;
        top: 46px;
        width: 230px;
        z-index: 10000;
        background: #34495e;
        display: none; /* visibility will be toggled with jquery */
        color: #fff;
    }
    #nav li {
        clear: both;
        float: none;
        font-size: 16px;
        font-weight: bold;
        margin-right: 0;
    }
    #nav a, #nav ul a {
        font: inherit;
        background: none;
        display: block;
        padding: 5px 0 5px 10px;
        color: inherit;
        border: none;
    }
    #nav a:hover {
        background: #1abc9c;
    }
    #nav ul {
        width: auto;
        position: static;
        display: block;
        border: none;
        background: inherit;
    }
    #nav ul li {
        width: 100%;
        margin: 0;
        font-weight: normal;
    }
    #nav ul li:hover {
        background-color: #1abc9c;
    }
    #nav ul li:first-child > a {
        padding-top: 0;
    }
    #nav ul li a {
        padding: 5px;
        padding-left: 10px;
    }
}
/*========================================================================================
パンくずリスト
========================================================================================*/
#topicPath {
    width: auto;
    margin-top: 5px;
}
#topicPath:after {
    content: "";
    display: block;
    clear: both;
}
#topicPath ul {
    overflow: hidden;
    padding: 3px 10px;
}
#topicPath ul li {
    display: inline;
    font-size: 12px;
    line-height: 110%;
    color: #888;
    list-style: none;
}
#topicPath a {
    text-decoration: none;
    font-size: 12px;
    border-bottom: 1px dotted;
}
#topicPath ul li:after {
    content: "\f105";
    font-family: FontAwesome;
    margin-left: 5px;
    margin-right: 5px;
}
#topicPath ul li:last-child:after {
    content: none;
}
#topicPath a:hover {
    color: #1abc9c;
}
/*========================================================================================
  コンテンツ内のヘッダーエリア関連
========================================================================================*/
/* ページタイトル */
.subTitle {
    font-size: 24px;
    margin: 20px;
}
/*一覧上部のメニューエリア */
#listHeaderArea {
    margin: 10px;
}
/* 左側のメニューボタンエリア */
.menuButtonL {
    float: left;
}
/* 右側のメニューボタンエリア */
.menuButtonR {
    text-align: right;
}
/* 左側配置の機能エリア */
.annotation {
    float: left;
    font-size: 12px;
    margin-top: 3px;
}
/* 右側配置のボタンエリア */
.requestlistnotes {
    float: right;
}
.requestlistnotes img {
    vertical-align: middle;
    margin: 0;
}
/* フレームワークのメールの進捗画面で使用している */
.like_input_form {
    padding: 16px;
}
/* 480px以下用（スマホ用）の記述 */
@media (max-width:480px) {
    .menuButtonL {
        float: none;
    }
    .annotation {
        display: none;
    }
    .requestlistnotes {
        float: none;
        display: none;
    }
}
.searchBox {
    border: 1px solid #CCCCCC;
    background-color: #f2f2f2;
    padding: 10px;
    margin: 10px 5px 20px 5px;
    width: 60%;
}
.hissu {
    padding: 2px 3px;
    border: 1px solid #d3381c;
    border-radius: 3px;
    color: #d3381c;
}
/* 申請経路の設定の所で使ってた　いずれ消す */
.comment {
    margin: 10px;
}
/*========================================================================================
  ページ固有のスタイル
========================================================================================*/
#menu {
    margin: 10px;
}
#topAnnai dl {
    border-bottom: 1px dotted #CCC;
    line-height: 1.5em;
    margin: 5px;
}
#topAnnai dt {
    clear: both;
    min-width: 150px;
}
#topAnnai dd {
    margin: 5px;
}
#topAnnai .listTitle a {
    color: #399CCD;
    text-decoration: underline;
    font-size: 14px;
    font-weight: bold;
}
/* input属性の背景色を目立たせる */
.key-input {
    background-color: rgba(255, 197, 198, 0.46);
}
/* セクションごとに左ボーダーにラインを入れる */
.section-line {
    border-left-width: 10px;
    border-left-style: solid;
    padding-top: 10px;
    padding-left: 20px;
    padding-bottom: 10px;
    margin-bottom: 40px;
}
.section-line-blue {
    border-left-color: #2980b9;
}
.section-line-green {
    border-left-color: #1abc9c;
}
/* ※マークの注釈リスト */
ul.note {
    margin: 1em;
}
ul.note li {
    margin: 0 0 0 1em;
    padding: 0 0 5px;
    background: none;
    text-indent: -1em;
    line-height: 130%;
}
ul.note li:before {
    content: "※";
    margin-right: 10px;
}
/*============================================
　大ボックス
============================================*/
.new_ixcaption {
    font-size: 28px;
    margin: 8px 8px 16px;
}
.new_ixcontext {
    margin: 8px;
}
.designTable {
    margin-top: 5px;
    border: none;
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
}
.designTable th {
    text-align: left;
    font-size: 16px;
}
.designTable td {
    padding-bottom: 8px;
}
.Label_Greenery {
    color: #88B04B;
    font-size: 20px;
}
.Area_sender {
    padding: 10px;
    background-color: #efefef;
    color: #666;
}

/*============================================
　一覧テーブル
============================================*/
@media (max-width:480px) {
    .display-mobile {
        display: none;
    }
}
#requestList {
    margin: 0 10px;
}
#zero {
    margin: 10px;
    margin-left: 20px;
    font-size: 16px;
}
#requestList table, #requestList td, #requestList th {
    margin: 0px;
    /*	border:1px #bfbfbf solid;*/
    border-spacing: 0;
    border-collapse: collapse;
    text-align: left;
}
#requestList, .ufad-datagrid table {
    width: 98%;
    word-wrap: break-word;
}
.ufad-datagrid th, .ufad-datagrid td, #requestList th, #requestList td {
    padding: 3px 5px;
}
.ufad-datagrid th, #requestList th {
    background-color: #c9d5e6;
}
.ufad-datagrid td, #requestList td {
    white-space: nowrap;
}
.ufad-datagrid img, #requestList img {
    margin-top: 2px;
}
.colStatus img {
    margin-top: 0;
    height: 21px;
}
#requestList .narrow, #requestList .narrow_osirase {
    background-color: #6b7a8f;
    color: #FFF;
    padding: 0;
}
.shortcol {
    width: 1%;
    white-space: nowrap;
}
.center {
    vertical-align: middle;
    text-align: center;
}
.syoninmati {
    background-color: #f2dcdb;
}
.kisuLine {
    background-color: #f2f2f2;
}
.syoninmatiKisuLine {
    background-color: #e6b9b8;
}
.siborikomi {
    display: inline-block;
    padding: 0 5px;
    margin-right: 20px;
}
.default-table {
    margin: 10px;
}
.default-table td {
    width: 1%;
    padding: 5px 10px;
    text-align: left;
    white-space: nowrap;
}
/* 本当は「.default-table th」って指定できればいいんだけれど、ソースでtr出力してて変えられないので、
　　trに該当する部分にこのクラスを指定しています。将来的に th に変えられたら消します */
.default-table .default-table-th {
    background-color: #9faecc;
    font-weight: bold;
}
.default-table .default-table-th td {
    padding: 10px;
}
/*============================================
　ページコントロールナビ
============================================*/
#pageControl {}
#pageControl ul.pageNav01 {
    margin: 5px;
    padding: 0px;
    text-align: left;
}
#pageControl ul.pageNav01 li {
    display: inline;
    margin: 0 2px;
    padding: 0;
}
#pageControl ul.pageNav01 li span, #pageControl ul.pageNav01 li a {
    display: inline-block;
    margin-bottom: 5px;
    padding: 1px 8px;
    background: #fff;
    border: 1px solid #aaa;
    text-decoration: none;
    vertical-align: middle;
}
#pageControl ul.pageNav01 li a:hover {
    background: #eeeff7;
    border-color: #00f;
}
/*============================================
　階層指定の部品
============================================*/
.edit-area {
    margin-bottom: 5px;
}
.editbutton {
    float: left;
    width: 40px;
    cursor: pointer;
    text-align: center;
    color: #00ABA9;
}
.editbutton-sm {
    width: 35px;
    margin-right: 2px;
}
.editbutton:hover {
    color: #f7882f;
}
.editbutton i {
    font-size: 35px;
}
.editbuttonlabel {}
.editbuttonlabel-sm {
    padding: 2px;
    font-size: 11px;
}
/*============================================
　ボックスデザイン
============================================*/
.box {
    width: 95%;
    margin: 10px auto;
}
.boxTitle {
    background-color: #f2f2f2;
    padding: 16px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}
.slideUpDownDlg {
    cursor: pointer;
}
/* アカウント情報画面の各ブロックの開閉画像 */
.slideUpDownDlg img {
    vertical-align: middle;
    padding: 0;
    margin-right: 8px;
}
/* アカウント情報画面の各ブロック */
.box table tr th, .box table tr td {
    border: 0;
    border-spacing: 0;
    padding: 4px;
    vertical-align: text-top;
}
.boxContents {
    padding: 10px;
    /*	background-color:#FFF;*/
    height: 60%;
}
.boxContents table, th, td {
    padding: 2px;
}
.boxButton {
    padding: 10px;
}
.smallbox {
    float: left;
    width: 250px;
    height: 280px;
    border: 1px #7f7f7f solid;
    margin: 10px;
}
.smallboxButton {
    text-align: center;
}
.boxnomarginL {
    width: 700px;
    border: 1px #7f7f7f solid;
    margin: 0 0 10px 0;
    float: left;
}
.boxnomarginR {
    width: 300px;
    border: 1px #7f7f7f solid;
    margin: 0 0 10px 0;
    float: right;
}
.boxnomarginL table tr td {
    border: 0;
    border-spacing: 0;
}
.boxnomarginR table tr td {
    border: 0;
    border-spacing: 0;
}
/*============================================
　カードデザイン
============================================*/
.card {
    float: left;
    margin: 10px;
    width: 230px;
    background: #fbfbfb;
    border-radius: 5px;
    box-shadow: 0 2px 5px #ccc;
}
.card-img {
    height: 100px;
    font-size: 80px;
    text-align: center;
}
.img-sl {
    font-size: 60px;
}
.card-content {
    padding: 20px;
    height: 150px;
}
.card-title {
    font-size: 20px;
    margin: 0;
    margin-bottom: 20px;
    text-align: center;
}
.card-text {
    font-size: 14px;
    line-height: 1.5;
}
.card-link {
    text-decoration: none;
}
.card-link:hover {
    text-decoration: none;
    color: #0090aa;
}
.card:hover {
    margin: 5px;
    padding: 5px;
    background-color: #fcfcfc;
    box-shadow: 0 5px 10px #ccc;
}
@media (max-width:480px) {
    .card {
        float: none;
        box-sizing: border-box;
        width: 95%;
        margin: 10px auto;
        margin-bottom: 30px;
    }
    .card-img, .card-content {
        height: auto;
    }
}
/*========================================================================================
　レスポインシブ対応のdl,dt,ddの疑似テーブルデザイン
========================================================================================*/
.tbl-common01 {
    background-color: #fafafa;
    padding: 10px;
}
.tbl-common01, .tbl-common01 dt, .tbl-common01 dd, .tbl-common01 input[type=text] {
    font-size: 14px;
    display: block;
}
.tbl-common01 dt {
    font-weight: bold;
}
.tbl-common01 input[type=text] {
    margin: 5px 0;
    max-width: 500px;
}
/* タブレット以下のサイズ
------------- */
@media only screen and (max-width:768px) {
    .tbl-common01 {
        padding-top: 10px;
    }
    .tbl-common01 dt, .tbl-common01 dd {
        padding: 8px 20px;
        padding-top: 0px;
    }
    .tbl-common01 dt {
        float: none;
        font-size: 16px;
    }
    .tbl-common01 dt span {
        font-size: 16px;
    }
}
------------- */ /* PC
------------- */
@media only screen and (min-width: 769px) {
    .tbl-common01 dt, .tbl-common01 dd {
        padding: 15px;
    }
    .tbl-common01 dt span {
        display: inline-block;
        padding-top: 5px;
    }
    .tbl-common01 dt {
        clear: both;
        float: left;
        width: 210px; /* 幅を指定 */
    }
    .tbl-common01 dd {
        padding-left: 240px; /* dtの分、左にpaddingを取る */
        width: 450px;
    }
}
/*============================================
　タブレット表示
============================================*/
@media screen and (min-width: 481px) and (max-width:768px) {
    .searchBox {
        width: 95%;
    }
    .width100px {
        width: 80px;
    }
}
/*============================================
スマホ表示
============================================*/
@media screen and (min-width: 0px) and (max-width:480px) {
    #pcMenu {
        display: none;
    }
    /*	.smallbox {
		width:95%;
		height:auto;
	}
*/
    .searchBox {
        width: 95%;
    }
    /**/
}
/*============================================
　PC表示
============================================*/
@media screen and (min-width: 768px) {
    #gallery .grid {
        width: 230px;
    }
    #subpage #sub .grid {
        width: 100%;
        float: none;
        padding-bottom: 30px;
    }
}
@media print {
    html {
        margin: 0;
    }
}
.mobile_display {
    width: 48%;
    float: left;
}
@media(max-width:480px) {
    .mobile_display {
        width: 95%;
        margin: 0;
        float: none;
    }
}
/*=================
　エラーメッセージテキストエリアのブラウザ解釈違いを吸収
===================*/
#ErrorMessage {
    min-height: 72px;
}
.captionErrorMessage_errorMessage {
    margin: 10px 20px;
}