
body {
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 60px;
    font-size: 16px;
    font-family: "Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
}

main a:not([class]), main a:not([class]):link {
    color: #009688;
}

    main a:not([class]):hover {
        background-color: #E0F2F1;
    }
/*
h2 {
    padding: 10px;
    margin-bottom: 2.0rem;
    text-indent: 0.25em;
    border-top: solid 1px #ccc;
    border-right: solid 1px #ccc;
    border-bottom: solid 5px #D32F2F;
    border-left: solid 1px #ddd;
    font-size: 20px;
    letter-spacing: 0.1em;
}
*/
h2:not([class]) {
    padding: 0.5em 0.5em;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: #009688;
    background: transparent;
    /*border-left: solid 5px #D32F2F;*/
    border-left: solid 5px #009688;
}

h3:not([class]) {
    position: relative;
    padding: 0.25rem 0;
    margin: 2rem 0 1.0em 0;
    font-size: 1.7rem;
    color: #00796B;
}

h3:after {
    content: "";
    display: block;
    height: 4px;
    background: -webkit-linear-gradient(to right, #009688, transparent);
    background: linear-gradient(to right, #009688, transparent);
    margin-top: 0.25rem;
}

textarea {
    max-width: 99%;
}

button[type="submit"] {
    letter-spacing: 0.2em;
}

/* table内のlist の余白を無くす */
th ul, td ul {
    padding-left: 1em;
}

.bg-base {
    background-color: #00897B;
}

.bg-admin {
    background-color: #673AB7;
}

/* TextBoxのplaceholder をフォント色を薄くする */
::placeholder {
    color: #aaa !important;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}
/***** loading *****/
#loader-bg {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 98;
}

#loader {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    margin-top: -100px;
    margin-left: -100px;
    text-align: center;
    color: #fff;
    z-index: 99;
}

/* Spinner START */
.spinner {
    border: 2px solid #f3f3f3;
    border-radius: 50%;
    border-top: 2px solid #3498db;
    width: 16px;
    height: 16px;
    animation: spin 2s linear infinite;
    display: inline-block;
    vertical-align: middle;
}
.no-spinner{
    // spinnerを意図的に無効化するclass指定だが、js側で処理するだけなのでcssでの定義は不要。
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.button-disabled {
    pointer-events: none;
    opacity: 0.6;
}
/* spinner END */


#wrap {
    width: 100%;
    height: 100%;
}

/***** 本文領域で、下線付きリンクとして表示（aタグの上位タグに対して定義） *****/
.underlined-links a:link, .underlined-links a:visited {
    text-decoration: underline;
    text-decoration-style: dotted;
}

.underlined-links a:hover, .underlined-links a:active {
    text-decoration: underline;
    text-decoration-style: solid;
}

/***** Greyed out Screen
 SUBMITした際に、２度押し防止やユーザーの不安緩和のために画面をグレイアウトさせる。
 .overlayにより画面全体を暗くしてマウス操作を無効化し、#loading-imgによりインジケーターを表示する。 
 *****/
.overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
}

    .overlay #loading {
        position: absolute;
        top: 40%;
        left: 40%;
        text-align: center;
        font-size: 11pt;
        color: #fff;
    }

/***** Bootstrapの設定変更 START *****/
.breadcrumb {
    background: #fff;
}

.btn {
    font-size: 16px;
}

.btn-xs {
    padding: .25rem .4rem;
    font-size: .875rem;
    line-height: 1.0;
    border-radius: .2rem;
}

.btn-lg {
    font-size: 20px;
}

.btn-info {
    color: #fff;
}
.navbar-nav .nav-item {
    color: #B2DFDB;
}
/***** Bootstrapの設定変更 END *****/

/***** BS4にはあったがBS5になって廃止された定義*/
.form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
}

.form-inline .form-check-input {
    display: inline-block;
    vertical-align: middle;
}

/***** background light colors *****/
.bg-primary-light {
    background-color: #cce5ff;
}

.bg-secondary-light {
    background-color: #e2e3e5;
}

.bg-secondary-light2 {
    background: #B9C2CA;
}

.bg-success-light {
    background-color: #d4edda;
}

.bg-info-light {
    background-color: #d1ecf1;
}

.bg-warning-light {
    background-color: #fff3cd;
}

.bg-danger-light {
    background-color: #f8d7da;
}

.bg-dark-light {
    background-color: #c6c8ca;
}

.bg-black {
    background-color: #000;
}

/***** colored TABLEs *****/
.tbl-primary th {
    background-color: #cce5ff;
}

.tbl-primary th, .tbl-primary td {
    border-color: #b8daff;
}

.tbl-secondary th {
    background-color: #e2e3e5;
}

.tbl-secondary th, .tbl-secondary td {
    border-color: #d6d8db;
}

.tbl-success th {
    background-color: #d4edda;
}

.tbl-success th, .tbl-success td {
    border-color: #c3e6cb;
}

.tbl-info th {
    background-color: #d1ecf1;
}

.tbl-info th, .tbl-info td {
    border-color: #bee5eb;
}

.tbl-warning th {
    background-color: #fff3cd;
}

.tbl-warning th, .tbl-warning td {
    border-color: #ffeeba;
}

.tbl-danger th {
    background-color: #F7E7E8;
}

.tbl-danger th, .tbl-danger td {
    border-color: #F5A2AA;
}

.tbl-light th {
    background-color: #fefefe;
}

.tbl-light th, .tbl-light td {
    border-color: #fdfdfe;
}

.tbl-dark th {
    background: #B9C2CA;
}

.tbl-dark th, .tbl-dark td {
    border-color: #c6c8ca;
}

/***** small table *****/
.tbl-sm th, .tbl-sm td {
    border-collapse: collapse;
    padding: 0.25em;
    border-style: solid;
    border-width: 1px;
    border-color: #bbb;
    color: #666;
    font-size: 85%;
}

.tbl-sm th {
    background: #eee;
}
/***** 組合員用ナビゲーション色 *****/
.bg-nav-member {
    background: #D32F2F;
    /* 2021年 新色候補 background: #13a5a8; */
}

/***** お知らせ欄 START *****/
.kk-notices {
}

    .kk-notices .kk-container {
        padding: 10px;
        border: solid 2px #4DB6AC;
        border-radius: 5px;
        background: #E0F2F1;
    }

.notices-title {
    font-weight: bold;
    margin-bottom: 0.5em;
    color: #80CBC4;
}

.notices-well {
    border-radius: 3px;
}
/***** お知らせ欄 END *****/

.page-break-after {
    page-break-after: always;
}

.page-break-before {
    page-break-before: always;
}


/* --------------------------------------- */
/*  navbar 共通スタイル      */
/* --------------------------------------- */
.navbar-nav .name {
    line-height: 25px;
    font-size: 14px;
    color: #eee;
}

/* ---------------------------------------/
/    text colors
/* -------------------------------------  */
.fs-txt-red {
    color: #f00;
}

.fs-txt-blue {
    color: #00f;
}

.fs-txt-green {
    color: #0f0;
}

.fs-txt-gray {
    color: #666;
}

/* ---------------------------------------/
/    customized Breadcrumb
/* -------------------------------------  */
.pannav {
    margin-top: 0px;
}

    .pannav a {
        color: #999;
        margin-right: 0.5em;
    }
/*
    .pannav a:after{
        content:" > ";
    }
    */

.form-control-check {
    width: auto;
    box-shadow: none;
}

/* ------------------------------------- /
/    Footer
/* ------------------------------------- */
footer {
    width: 100%;
    height: 60px;
    text-align: center;
    padding: 20px 0;
    margin-top: 10px;
}

    footer a {
        display: block;
        color: #fff;
        text-decoration: none;
    }

        footer a:hover {
            display: block;
            color: #fff;
            text-decoration: underline;
        }


    footer.footer-default {
        background: #03A9F4;
    }

    footer.footer-inverse {
        background: #D32F2F;
    }

    footer.footer-admin {
        background: #000;
    }

    footer.footer-god {
        background: #607D8B;
    }

.ime-off {
    ime-mode: disabled;
}

.input-disabled {
    pointer-events: none;
    background-color: #ddd !important;
    cursor: not-allowed;
}

.txt-lg {
    font-size: 125%;
}

.txt-sm {
    font-size: 90%;
}

.display-none {
    display: none !important;
}

/***** form-groupのラベル部分に必須アイコンを表示できるように変更 *****/
.control-label {
    padding-right: 2em;
}

.control-label-hissu {
    background: url("/Content/images/hissu.gif") no-repeat right center;
}

/***** form-controlの右側に説明を表示 *****/
.form-control-side-comment {
    margin-bottom: 0;
    vertical-align: middle;
    padding-top: 7px;
}

/** 文字列を折り返さず、はみ出た部分は省略 **/
.overflow-prevent {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}

    .overflow-prevent:hover {
        overflow: visible;
        white-space: normal;
    }


/***** Google Maps 半サイズ *****/
.map-half {
    width: 100%;
    height: 400px;
    border: solid 1px #999;
    background: #eee;
}

/***** 住所省略 *****/
.txt-addr {
    width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}


/***** Google Chart *****/
#gchart {
    border: solid 1px #999;
}

/***** HOME用メニューリンク *****/
.home-menu-item {
    border: solid 1px #aaa;
}

    .home-menu-item span {
        display: block;
        margin: 0.25em;
        text-align: center;
        font-size: 30px;
    }

    .home-menu-item a {
        display: block;
        margin: 1em;
        text-align: center;
        color: #000;
    }

/***** 鑑定士用HOME *****/
#kt-home .panel-heading {
    font-size: 20px;
}

.home-menu-text {
    min-height: 3em;
    color: #666;
}

#kt-home .kt-steps .panel-heading {
    height: 75px;
}

#kt-home .kt-steps .panel-body {
    position: relative;
    height: 160px;
}

#kt-home .kt-steps .more-link {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

/***** 総合HOME *****/
.jumbotron h1 {
    font-size: 35px;
}

/***** 一括編集フォームの更新ボタンのエリア *****/
.bulkform-btm {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    padding: 20px;
    background-color: rgba(200,200,200,1.0);
}
    /** 更新ボタンの注意を点滅 **/
    .bulkform-btm strong {
        animation: Flash1 1s infinite;
    }

/* 数値欄があるTABLE。tdのみ右寄せに配置する。 */
.tbl-number-values tbody td {
    text-align: right;
}

@keyframes Flash1 {
    50% {
        opacity: 0;
    }
}

/***** FAQ *****/
.faq-list dt:before {
    content: "\f059\00a0";
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
}

.faq-list dd {
    padding-left: 1.5rem;
}

/***** マニュアルでの、流れを記述する際に使用 *****/
ol.manu-flow li {
    margin-bottom: 1.5em;
}

/***** 検討価格入力フォームで、選定替えポイントを示すアイコン  *****/
.changed-point-icon {
    text-align: center;
    color: #f00;
    border: solid 2px #f00;
    border-radius: 5px;
    background: #fee;
}

/********** Print Mode **********/
@media print {
    body {
        margin: 0 !important;
        padding: 0 !important;
        font-size: 10.5pt;
    }

    a[href]:after {
        content: "";
    }

    abbr[title]:after {
        content: "";
    }

    footer, .footer {
        display: none;
    }

    .page-break-after {
        page-break-after: always;
    }

    .page-break-before {
        page-break-before: always;
    }

    .pannav {
        display: none;
    }
}

/***** width:XXpx *****/
.w-25px {
    width: 25px;
}

.w-50px {
    width: 50px;
}

.w-75px {
    width: 75px;
}

.w-100px {
    width: 100px;
}

.w-150px {
    width: 150px;
}

.w-200px {
    width: 200px;
}

/** 路線の価格形成要因の入力フォームのシミュレート欄 **/
.rsn-sim-results {
    font-size: 14px;
    background-color: #000;
    color: #ccc;
}

    .rsn-sim-results strong {
        color: #00E5FF;
        font-weight: normal;
    }

    .rsn-sim-results input {
        background-color: #000;
        border-style: none;
        color: #00E5FF;
        width: 75px;
        display: inline;
        pointer-events: none;
        cursor: not-allowed;
    }

