@charset "utf-8";

/* ---------- 
editor-block
----------*/
.editor-block.financial-highlights-table {
    overflow-x: auto;
    padding-bottom: 10px;
}
.editor-block.financial-highlights-table::-webkit-scrollbar {
    height: 12px;
}
.editor-block.financial-highlights-table::-webkit-scrollbar-thumb {
    background-color: var(--color-707070);
    border-radius: 10px;
}
.editor-block {
    margin-bottom: 80px;
}
.editor-block table {
    width: clamp(1326px, 94.71vw, calc(1326px * var(--ratio)));
    margin-bottom: 0;
}
.editor-block table th {
    padding: 11.5px 0;
    font-size: clamp(14px, 1vw, calc(14px * var(--ratio)));
    font-weight: bold;
    line-height: 1.85;
    letter-spacing: 0.05em;
    text-align: center;
    background-color: var(--color-sub);
}
.editor-block table thead tr th:first-of-type {
    background-color: var(--color-line);
}
.editor-block table thead tr th:last-of-type {
    background-color: #86E4FB;
}
.editor-block table td {
    padding: 11.5px 30px 11.5px 0;
    font-size: clamp(14px, 1vw, calc(14px * var(--ratio)));
    font-weight: 500;
    line-height: 1.85;
    letter-spacing: 0.05em;
    text-align: right;
}
.editor-block table tbody tr th {
    width: 26.24%;
}
.editor-block table tbody tr td {
    width: 12.29%;
}
.editor-block table tbody tr td:last-of-type {
    background-color: #E1F8FE;
}

.editor-block table th{
    border-right: none;
}
.editor-block table th + td {
    border-left: none;
}

.editor-block thead th{
    border-bottom: none;
}

.editor-block tbody tr:first-child td{
    border-top: none;
}

/* ---------- 
sticky first column（PCのみ）
----------*/
@media screen and (min-width: 701px) {
    .editor-block.financial-highlights-table thead tr th:first-of-type,
    .editor-block.financial-highlights-table tbody tr th {
        position: sticky;
        left: 0;
        z-index: 1;
    }
    .editor-block.financial-highlights-table thead tr th:first-of-type {
        z-index: 2;
    }
    .editor-block.financial-highlights-table tbody tr th {
        background-color: var(--color-sub);
    }
    .editor-block.financial-highlights-table thead tr th:first-of-type,
    .editor-block.financial-highlights-table tbody tr th {
        box-shadow: 1px 0 0 var(--color-line);
    }
}

@media screen and (max-width: 700px) {
    .editor-block {
        margin-bottom: 60px;
    }
    .editor-block table {
        width: calc(875px / var(--fs-base) * 1rem);
    }
    .editor-block table th {
        padding: 11.5px calc(10px / var(--fs-base) * 1rem);
        font-size: calc(13px / var(--fs-base) * 1rem);
    }
    .editor-block table tbody tr th {
        width: 14.28%;
    }
    .editor-block table tbody tr td {
        width: 14.28%;
    }
    .editor-block table td {
        padding: 11.5px 20px 11.5px 0;
        font-size: calc(13px / var(--fs-base) * 1rem);
    }
}

/* ---------- 
scroll-hint
----------*/
.scroll-hint-icon{
    top: 10%;
}

/* ---------- 
btn-wrap
----------*/
.btn-wrap {
    margin-bottom: 80px;
}
@media screen and (max-width: 700px) {
    .btn-wrap {
        margin-bottom: 60px;
    }
}