/* 共通 */
.index {
    background-color: var(--bg-color);
}



/* index 最新接続情報 */
.index-all {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0.1rem solid var(--tertiary-bg-color);
    border-radius: 0.5rem;

    background: #ffffff;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.index-all:hover {
    box-shadow: 0 1.5rem 2.5rem rgba(0, 0, 0, 0.3);
}

/* index 最新接続情報 タイトル */
.index-all-title {
    margin-top: 1rem;
    margin-bottom: 1rem;

    color: var(--heading-color);
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
}

/* index 最新接続情報 ヘッダー */
.index-all-header {
    margin-left: 1rem;
    margin-right: 1rem;
    margin-bottom: 0.25rem;

    background: #f1f1fa;
    color: var(--heading-color);
    font-size: 0.9rem;
    font-weight: bold;
    white-space: nowrap;
}

/* index 最新接続情報 ボディ */
.index-all-body {
    margin-left: 1rem;
    margin-right: 1rem;
    margin-bottom: 0.25rem;
    border-bottom: 0.1rem solid #cccccc;

    color: var(--text-color);
    font-size: 0.8rem;
}
.index-all-body-netixlan-created {
    font-weight: 500;
    white-space: nowrap;
}
.index-all-body-ix-name {
    font-weight: 500;
}
.index-all-body-net-asn {
    font-weight: 500;
}
.index-all-body-net-name {
    color: #003366;
    font-size: 0.9rem;
    font-weight: 750;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}
.index-all-body-link {
    margin-right: 0.1rem;

    color: var(--hyperlink-color);
    font-size: 0.7rem;
    font-weight: bold;
    white-space: nowrap;
}
.index-all-body-link:hover {
    opacity: 0.75;
}

/* index 最新接続情報 フッター */
.index-all-footer {
    margin-top: 1rem;
    margin-bottom: 1rem;

    font-size: 0.85rem;
    font-weight: bold;
    text-align: center;
}
.index-all-footer-link {
    color: #004080;
    text-decoration: none;
}
.index-all-footer-link:hover {
    opacity: 0.75;
}



/* index 組織 */
.index-org {
    margin-left: 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    border: 0.1rem solid var(--tertiary-bg-color);
    border-radius: 0.5rem;

    background: #ffffff;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.index-ix-org:hover {
    box-shadow: 0 1.5rem 2.5rem rgba(0, 0, 0, 0.3);
}

/* index 組織 ヘッダー */
.index-org-header {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;

    background: #003366;
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
}

/* index 組織 タイトル */
.index-org-title {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;

    background: #f1f1fa;
    color: #003366;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
}

/* index 組織 テキスト */
.index-org-text {
    margin-top: 0.1rem;
    margin-bottom: 1rem;

    color: #003366;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
}

/* index 組織 リンク */
.index-org-links {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;

    gap: 0.5rem;
    justify-content: center;
}
.index-org-link {
    flex: 0 1 calc(50% - 0.5rem);
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    border: 0.1rem solid #003366;
    border-radius: 0.5rem;

    background: #ffffff;
    color: #003366;
    font-size: 0.7rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s ease;
}
.index-org-link:hover {
    background: #003366;
    color: #ffffff;
}
.index-org-link.dummy {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: transparent !important;
    pointer-events: none !important;
}



/* index IX */
.index-ix {
    margin-left: 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    border: 0.1rem solid var(--tertiary-bg-color);
    border-radius: 0.5rem;

    background: #ffffff;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.index-ix:hover {
    box-shadow: 0 1.5rem 2.5rem rgba(0, 0, 0, 0.3);
}

/* index IX タイトル */
.index-ix-title {
    margin-top: 1rem;
    margin-bottom: 0.1rem;

    color: var(--heading-color);
    font-size: 1.75rem;
    font-weight: 900;
    text-align: center;
}

/* index IX AS数 */
.index-ix-total {
    color: #003366;
    font-size: 2.5rem;
    font-weight: 1000;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

/* index IX 全てのASを表示 */
.index-ix-view {
    margin-bottom: 1rem;

    font-size: 0.75rem;
    font-weight: bold;
    text-align: center;
}
.index-ix-view-link {
    color: #004080;
    text-decoration: none;
}
.index-ix-view-link:hover {
    opacity: 0.75;
}

/* index IX チャート */
.index-ix-chart {
    margin-bottom: 1rem;
}
