/*
 * 7-1-2 グループ設定
 */
.group-tree {
    padding: 2rem 1rem 1rem;
}
.group-tree ul {
    padding: 0;
    line-height: 1.55;
    font-size: 1rem;
    font-weight: 500;
}
.group-tree ul a {
    color: #c83c6d;
}
.group-tree ul li {
    list-style: none;
}
.group-tree ul li ul {
    margin-top: 0.5rem;
    padding-left: 4rem;
    position: relative;
}
.group-tree ul li ul::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    height: calc(100% + .75em);
    border-left: 1px solid #666666;
}
.group-tree ul li ul:last-child::before {
    height: calc(1em + .25em);
}
.group-tree ul li ul li {
    margin-bottom: .25rem;
    position: relative;
    list-style: none;
}
.group-tree ul li ul li::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: -3rem;
    width: 1rem;
    height: calc(100% + .75em);
    border-left: 1px solid #666666;
}
.group-tree ul li ul li:last-child::before {
    height: calc(1em + .25em);
}
.group-tree ul li ul li::after {
    content: '';
    position: absolute;
    top: .75rem;
    left: -3rem;
    width: 2.6rem;
    border-bottom: 1px solid #666666;
}
.analysis-form-check {
    display: flex;
    justify-content: flex-start;
}
.analysis-form-check .analysis-subtit {
    display: inline-block;
    padding-left: 0;
    margin-bottom: 0;
    width: 9rem;
    font-weight: 500;
}
.analysis-form-check label {
    margin-bottom: 0;
    display: block;
    width: 4rem;
}
.analysis-form-check label:last-child {
    width: 8rem;
}

.sub-area {
    margin-bottom: 0.5rem;
}
.sub-tit {
    padding-left: 0;
    padding-right: 0;
}
.sub-tit::after {
    content: none;
}
.sub-tit label {
    margin-bottom: 0;
    line-height: 2.5;
}
.non-padding {
    padding-left: 0;
    padding-right: 0;
}

/*
 * タブメニュー
 */
.tab-menu {
    margin: 0 -2.5rem 3rem -2.5rem;
}
.tab-block {
    display: inline-block;
}
.tab-menu .tab-box a {
    color: #C0C0C0;
    transition: .3s;
    padding: 0 2.5rem 1rem;
    text-decoration: none;
    display: block;
    font-size: 1.125rem;
    position: relative;
}
.tab-menu .tab-box.current a,
.tab-menu .tab-box a:hover {
    color: #333333;
}
.tab-menu .tab-box a::after {
    content: '';
    height: 3px;
    width: 100%;
    background: #C83C6D;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: .3s;
}
.tab-menu .tab-box.current a::after,
.tab-menu .tab-box a:hover::after {
    opacity: 1;
}

/*
 * ファイルアップロード
 */
.cutomfile_thumb {
    padding-top: 66.6667%;
    background: url("../img/thumb_default.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.custom-file-input:focus~.custom-file-label {
    border-color: #E6E6E6;
    box-shadow: 0 0 0 0;
}
.custom-file-input {
    cursor: pointer;
}
.custom-file-label::after {
    color: #fff;
    background-color: #E37FA2;
    transition: .3s;
}
.custom-file-input:hover~.custom-file-label::after {
    background-color: #C80046;
}
button.reset {
    color: #fff;
    background: #999999;
    border-color: #E6E6E6;
}
button.reset:hover {
    background: #6c757d;
    border-color: #E6E6E6;
}

.note-editor.note-airframe, .note-editor.note-frame {
    border: 1px solid #E6E6E6;
    border-radius: 0.25rem;
}
.note-editor .note-editing-area .note-editable {
    background: #fff;
}

/*
 * カルーセル用
 */
.carousel-control-prev {
    left: 0;
    top: .5rem;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 10px 6px 0;
    border-color: transparent #c83c6d transparent transparent;
}
.carousel-control-next {
    right: 0;
    top: .5rem;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #c83c6d;
}

/*
 * 横7日表示用
 */
.input-box-7-text {
    margin-bottom: 0.5rem;
    text-align: center;
}
.input-box-7-day .col-box {
    width: 14.285714%;
    padding: 0 15px;
    margin-bottom: 1rem;
}
.input-box-7-day .col-box:nth-last-child(3),
.input-box-7-day .col-box:nth-last-child(2),
.input-box-7-day .col-box:last-child {
    margin-bottom: 0;
}

#cat_first:disabled {
    background-color: #F8F8F8 !important;
}