@charset "utf-8";

/*******************************************
    フロント：共通
*******************************************/

.bg-light-green {
    background-color: #d4f1f4;
}

.title-config {
    text-decoration: none !important;
    font-size: 17px;
    font-weight: bold;
    color: #4c4948;
    letter-spacing: 0.5px;
}

.bg-label {
    background-color:#eee;
    padding:5px;
}

/* 注意書き */
.alert_text {
    color:#900;
    font-size:11px;
    font-weight:normal;
}

.xR {
    text-align:right;
}
.xC {
    text-align:center;
}
.xL {
    text-align:left;
}
.fR {
    float:right;
}
.fL {
    float:left;
}

/*******************************************
    フロント：自社情報管理
*******************************************/

/* タブ */
.tabs {
    display: flex;
    cursor: pointer;
}
.tab {
    padding: 10px 20px;
    background: #ddd;
    margin-right: 5px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.tab.active {
    padding: 10px 20px;
    background: #bbb;
}
.tab-content {
    display: none;
    padding: 20px;
    border: 1px solid #ccc;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background-color:#fff;
    margin-bottom:100px;
    word-break:break-word; /* 枠からはみ出さないようにする */
}
.tab-content.active {
    display: block;
}

/* 項目行タイトル */
.content_title {
    color:#900;
    border-bottom:1px solid #900;
    line-height:30px;
    font-size:1.5em;
    font-weight:bold;
}

.status_obtained {
    background-color:skyblue;
    padding:2px 15px;
    border-radius: 100px;
}
.status_obtaining {
    background-color:rgb(208, 235, 135);
    padding:2px 15px;
    border-radius: 100px;
}
.status_no {
    background-color:rgb(187, 187, 187);
    padding:2px 15px;
    border-radius: 100px;
}

.json-select {
    margin-right: 5px;
    width: 300px;
    float: left;
}

.json-text {
    width: 80px;
    float: left;
}

textarea {
    height:100px;
}

.waku {
    border:1px solid #ccc;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 10px 0px;
    position: relative;
}

.bgcol_base {
    background-color:#f8fafc;
}

/* 追加ボタン */
.btn.btn-outline-primary {
    margin: 10px;
}

/* オーナー */
.is_owner {
    background-color:#90ee90;
    padding:2px 15px;
    border-radius: 5px;
    text-align:center;
}
