/*
 * Main
 */
#tci_main {
    max-width: 1280px;
    min-height: 380px;
    margin: auto;
}

#tci_contents {
    padding: 0 0 30px 0;
}

/*
 * パンくずリスト
 */
ol#topic_path {
    margin: 0;
    padding: 0 30px;
    list-style-type: none;
    font-size: 14px;
}

ol#topic_path li {
    padding-left: 5px;
    display: inline;
}

/*
 * フッター
 */
#tci_global_footer {
    margin: 0 0 0 0;
    padding: 12px 0;
    width: 100%;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    background:#006033;
    background: -webkit-linear-gradient(top, #006033, #4f9776);
    background: linear-gradient(#006033, #4f9776);
}

/*
 * FileUploader
 */
div.tci_filedrop_area {
    width: 100%;
    height: 180px;
    padding-top: 120px;
    border: 2px dotted #3366ff;
    text-align: center;
}

input[type=file] {
    width: 100%;
}

input#tci_upload_fake_input {
    width: 100% !important;
}

input#tci_upload_fake_input:hover {
    cursor: default;
}

.tcibtn#tci_upload_ref_btn {
    width: 120px
}

/*
 * Table
 */
.tcitable td.tciZeroRow {
    text-align: center;
}

/*
 * timeDropdown
 */
div.tciTimeDropdownWrap {
    display: inline;
    position: relative;
}

.tciTimeDropdownWrap .tcidropdown,
.tciTimeDropdownWrap .tciReadonlyText {
    width: 90px !important;
    margin: 20px 5px 0 10px;
}

.tciTimeDropdownWrap .select2-choice {
    height: 36px;
}

.tciTimeDropdownWrap .select2-choice > .select2-chosen {
    padding-top: 6px;
}

.tciTimeDropdownWrap .tcidropdownImg[id$="hour"] {
    top: 7px;
    left: 64px;
}

.tciTimeDropdownWrap .tcidropdownImg[id$="minute"] {
    top: 7px;
    left: 197px;
}

/*
 * チェックのみのチェックボックス
 */
section.tciCheckOnlyBox {
    margin: 24px 0 0 16px;
}

.tciCheckOnlyBox .tciCheckOnly {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    width: 30px;
    height: 30px;
    background: #d4dade;
    vertical-align: middle;
    border-radius: 30px;
    cursor: pointer;
    box-sizing: border-box;
    -webkit-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
    position: relative;
    display: inline-block;
}
.tciCheckOnlyBox .tciCheckOnly:hover {
    background-color: #dce1e4;
}
/* 内側の円 */
.tciCheckOnlyBox .tciCheckOnly:before {
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    position: absolute;
    top: 50%;
    left: 11px;
    display: block;
    margin-top: -4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #eeeeee;
    content: '';
    opacity: 0;
}
/* 外側の円 */
.tciCheckOnlyBox .tciCheckOnly:after {
    margin-top: -12px;
    width: 24px;
    height: 24px;
    border: 4px solid #9099a5;
    border-radius: 50%;
    -webkit-transition: border-color 0.2s linear;
    transition: border-color 0.2s linear;
    position: absolute;
    top: 50%;
    left: 3px;
    display: block;
    content: '';
}
.tciCheckOnlyBox .tciCheckOnly.tciDisabled {
    cursor: default;
}
input[type=checkbox]:checked + .tciCheckOnly:before {
    opacity: 1;
}
input[type=checkbox]:checked + .tciCheckOnly {
    color: #ffffff;
    background:#006033;
}
input[type=checkbox]:checked + .tciCheckOnly:after {
    border: 4px solid #eeeeee;
}

/* ============================================================================
 *   レスポンシブ：Phone
 * ============================================================================ */
 @media screen and (max-width:991px){
    ol#topic_path {
        font-size: 12px;
    }
    #tci_global_footer{
        font-size: 12px;
    }
 }