/* タグの基本スタイル */
a {
    color: var(--t-primary);
    cursor: pointer;
    -webkit-text-decoration: none;
    text-decoration: none;
    &:hover {
        text-decoration: underline;
    }
}


/* ページタイトル */
.title {
    width: 100%;
    background-color: var(--t-primary);
    color: var(--t-primary-contrastText);
    border-radius: 4px;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 6px;
    margin-top: 0em;
    margin-bottom: 0em;
}

/* 見出し */
.caption-lv1 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 1em;
    margin-bottom: 0.3em;
}
.caption-lv2 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 1em;
    margin-bottom: 0.3em;
}
.caption-lv3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 1em;
    margin-bottom: 0.3em;
}
.caption-lv4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1em;
    margin-bottom: 0.3em;
}
.caption-lv5 {
    font-size: 1.0rem;
    font-weight: 500;
    margin-top: 1em;
    margin-bottom: 0.3em;
}
.caption-lv6 {
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1em;
    margin-bottom: 0.3em;
}

/* スペーサー */
.spacer-1 {height: 1em;}
.spacer-2 {height: 2em;}
.spacer-3 {height: 3em;}

/* 区切り線 */
.divider {
    margin: 0;
    border-width: 0;
    border-style: solid;
    border-color: #D0D0D0;
    border-bottom-width: thin;
    border-bottom-width: 1px;
}
.divider-bold {
    margin: 0;
    border-width: 0;
    border-style: solid;
    border-color: #D0D0D0;
    border-bottom-width: thin;
    border-bottom-width: 2px;
}

/* テーブルスタイル */
.default-table-container {
    overflow-x: auto;
    border: 1px solid gray;
    border-radius: 12px;
}
.default-table-container table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border-color: gray;
}
.default-table-container thead {
    vertical-align: middle;
    unicode-bidi: isolate;
    border-color: inherit;
}
.default-table-container tbody {
    vertical-align: middle;
    unicode-bidi: isolate;
    border-color: inherit;
}
.default-table-container tr {
    color: inherit;
    display: table-row;
    vertical-align: middle;
    outline: 0;
}
.default-table-container th {
    font-size: 0.8rem;
    display: table-cell;
    vertical-align: inherit;
    background-color: var(--t-primaryBg);
    border-bottom: 1px solid #D0D0D0;
    text-align: left;
    line-height: 1.2rem;
    padding: 6px 16px;
    font-weight: 700;
}
.default-table-container td {
    font-size: 0.8rem;
    display: table-cell;
    vertical-align: inherit;
    border-bottom: 1px solid var(--t-primaryBg);
    text-align: left;
    line-height: 1.2rem;
    padding: 6px 16px;
    border-bottom-color: #D0D0D0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    font-weight: 400;
}

