@charset "UTF-8";
/* Responsive: yes */

/* 共通 */
:root {
    --primary: #00abdc;
    --secondary: #f4ad16;
    --bg-secondary: #eaf7fc;
    --bg-light-gray: #f8f8f8;
    --text-black: #333333;
    --text-gray: #666666;
    --text-red: #f45b50;
    --text-link: #0e6ace;
    --border: #edefef;

    --primary-button-hover: #fbb41d;

    --fontsize-sm: 12px;
    --fontsize-md: 14px;
    --fontsize-lg: 16px;
    --fontsize-xl: 24px;

    --lineheight-none: 1;
    --lineheight-tight: 1.2;
    --lineheight-normal: 1.5;

    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 40px;

    --radius-sm: 8px;
    --radius-base: 16px;
    --radius-circular: 1000px;

    --z-index-modal: 1100;
    --z-index-header: 1000;
    --z-index-nav: 900;

    --header-height-sp: 68px;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Noto Sans JP", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-black);
    ul,
    li {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    a {
        text-decoration: none;
        color: inherit;
    }
}
/* ページ共通 */
.has-shadow {
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}
.has-radius {
    border-radius: 0;
    @media screen and (min-width: 768px) {
        border-radius: 16px;
    }
}
.l-wrapper {
    max-width: 1200px;
    margin: 40px auto 80px;
}
.link-box {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 100;
}
.list-style {
    list-style: none;
}
.header-padding {
    padding-top: 68px !important;
    @media (min-width: 768px) {
        padding-top: 136px !important;
    }
}

/* 機能 */
.functions-header-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    @media (max-width: 768px) {
        gap: var(--space-2);
    }
}
.functions-header-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: var(--radius-base);
}
.functions-header-link {
    text-align: center;
    padding: var(--space-4) var(--space-4) var(--space-6);
    a {
        color: var(--text-black);
    }
    img {
        width: 70%;
        height: auto;
        transition: transform 0.3s ease;
    }
    h2 {
        font-size: 20px;
        margin: 0;
    }
    &:hover {
        img {
            transform: scale(1.1);
        }
    }
    @media (max-width: 768px) {
        padding: var(--space-1);
        img {
            width: 100%;
        }
        h2 {
            font-size: 14px;
        }
    }
}

/* CTAボタン */
.button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-circular);
    font-size: var(--fontsize-md);
    line-height: 1.7;
    text-align: center;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.primary-button {
    background-color: var(--secondary);
    color: white;
    font-weight: bold;
    &:hover,
    &:focus {
        background-color: var(--primary-button-hover);
    }
}
.secondary-button {
    border: 2px solid var(--secondary);
    color: var(--text-black);
    font-weight: bold;
    &:hover,
    &:focus {
        border-color: var(--primary-button-hover);
        color: var(--text-gray);
    }
}
.transparent-button {
    color: var(--text-black);
    font-weight: bold;
    &:hover,
    &:focus {
        background-color: var(--bg-light-gray);
    }
}
.text-link {
    color: inherit;
    &:hover {
        opacity: 0.8;
    }
}
.is-pc {
    display: block;
}
.is-sp {
    display: none;
}
@media (max-width: 768px) {
    .is-pc {
        display: none;
    }
    .is-sp {
        display: block;
    }
}

/* ヘッダー */
#header {
    background-color: #fff;
    z-index: var(--z-index-header);
    position: fixed;
    top: 0;
    width: 100%;
    transition: all 0.3s ease;
    .header-inner {
        display: flex;
        flex-direction: column;
        max-width: 1200px;
        margin: 0 auto;
    }
    .header-innerTop {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: var(--space-4) var(--space-5);
        position: relative;
        background-color: #fff;
    }
    .logo {
        a {
            display: block;
            height: 30px;
        }
        img {
            width: auto;
            height: 100%;
        }
    }
    .header-nav {
        display: flex;
        align-items: center;
        gap: var(--space-5);
    }
    .action-button {
        display: flex;
        align-items: center;
        gap: var(--space-4);
        height: fit-content;
        flex-shrink: 0;
    }
    .nav-menu-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        padding: 0 var(--space-4) var(--space-4);
    }
    .nav-menu-item {
        display: flex;
        color: var(--text-black);
        font-weight: bold;
    }
    .nav-menu-link {
        padding: var(--space-2) var(--space-4);
        font-size: var(--fontsize-md);
    }
    .nav-menu-icon {
        display: none;
    }
    .nav-badge-new {
        display: flex;
        align-items: center;
        @media (max-width: 768px) {
            a {
                width: auto;
            }
        }
        &::after {
            content: "NEW";
            display: inline-flex;
            align-items: center;
            padding: 2px 4px 3px;
            background-color: var(--bg-secondary);
            border-radius: 4px;
            font-size: 13px;
            font-weight: bold;
            line-height: 1.2;
            color: var(--primary);
            height: fit-content;
            margin-left: 8px;
        }
    }
    @media (max-width: 768px) {
        .header-inner {
            padding: 0;
        }
        .header-innerTop {
            height: var(--header-height-sp);
            padding: 0 var(--space-4);
            z-index: var(--z-index-header);
        }
        .nav-menu {
            position: fixed;
            inset: 0;
            height: calc(100% - var(--header-height-sp));
            padding: var(--space-4);
            margin-top: var(--header-height-sp);
            background-color: #fff;
            transition: transform 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: var(--z-index-nav);
        }

        .nav-menu.active {
            opacity: 1;
            visibility: visible;
        }
        .nav-menu-list {
            flex-direction: column;
            justify-content: flex-start;
        }
        .nav-menu-link {
            padding: var(--space-4) var(--space-2);
            width: 100%;
        }
        .nav-menu-sp-button {
            display: flex;
            flex-direction: column;
            gap: var(--space-4);
            padding: var(--space-6) var(--space-2) 0;
            border-top: 1px solid var(--border);
        }
        .nav-menu-icon {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 27px;
            background: none;
            border: none;
            cursor: pointer;
            padding: var(--space-1) 0;
        }

        .nav-menu-icon span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--text-black);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* アクティブ状態のスタイル */
        .nav-menu-icon.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .nav-menu-icon.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-menu-icon.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
    }
}

/* フッター */
footer {
    background-color: #fff;
    .footer-container {
        display: flex;
        flex-direction: column;
        gap: var(--space-4);
        font-size: var(--fontsize-md);
        color: var(--text-black);
        border-top: 1px solid var(--border);
    }
    .footer-inner {
        width: 1200px;
        max-width: calc(100% - 48px);
        padding: var(--space-7) 0;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
    }
    .footer-heading {
        flex: 1;
    }
    .logo {
        a {
            display: block;
            height: 26px;
        }
        img {
            width: auto;
            height: 100%;
        }
    }
    .footer-nav {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        flex: 1;
    }
    .footer-nav-list {
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    .footer-nav-item {
        a {
            display: block;
            padding: var(--space-2) 0;
        }
    }
    .footer-lower {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid var(--border);
        padding: var(--space-4) var(--space-5);
    }
    .footer-lower-nav-list {
        display: flex;
        gap: var(--space-1);
    }
    .footer-lower-nav-item {
        display: flex;
        a {
            font-size: var(--fontsize-sm);
            padding: 0 var(--space-2);
        }
    }
    .footer-copyright {
        color: var(--text-gray);
    }
    @media (max-width: 768px) {
        .footer-inner {
            flex-direction: column;
            gap: var(--space-6);
        }
        .footer-nav {
            flex-direction: column;
        }
        .footer-nav-item {
            a {
                padding: var(--space-4) 0;
            }
        }
        .footer-lower {
            gap: var(--space-4);
            flex-direction: column;
            align-items: flex-start;
        }
        .footer-lower-nav {
            width: 100%;
        }
        .footer-lower-nav-list {
            width: 100%;
            flex-direction: column;
        }
        .footer-lower-nav-item {
            a {
                width: 100%;
                padding: var(--space-2) 0;
                display: block;
            }
        }
    }
}

/* フォーム */
.hbspt-form {
    .hs-main-font-element {
        margin-bottom: var(--space-4);
        line-height: 1.7;
        a {
            color: var(--text-link);
            text-decoration: underline;
        }
    }
    .hs-form-field {
        display: flex;
        flex-direction: column;
        padding-bottom: var(--space-5);
        span {
            display: inline-block;
            margin-bottom: var(--space-2);
            font-size: var(--fontsize-md);
            font-weight: bold;
        }
        .hs-form-required {
            color: var(--text-red);
        }
        input[type="text"],
        input[type="email"],
        input[type="tel"],
        textarea {
            width: 100%;
            padding: var(--space-3);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
        }
        textarea {
            resize: vertical;
            min-height: 120px;
        }
        input[type="radio" i] {
            margin: 0;
        }
        .hs-error-msgs {
            padding-top: var(--space-1);
            color: var(--text-red);
            font-size: var(--fontsize-sm);
            font-weight: normal;
        }
        .inputs-list {
            span {
                font-weight: normal;
                margin: 0;
            }
        }
        .hs-form-checkbox-display,
        .hs-form-radio-display {
            display: flex;
            align-items: center;
            gap: var(--space-1);
            margin-bottom: var(--space-2);
            cursor: pointer;
        }
    }
    .hs-recaptcha {
        padding-bottom: var(--space-7);
    }
    .hs-button {
        display: block;
        width: 100%;
        background-color: var(--secondary);
        padding: var(--space-3) var(--space-4);
        color: white;
        font-size: 16px;
        font-weight: bold;
        border: none;
        border-radius: var(--radius-circular);
        cursor: pointer;
        &:hover,
        &:focus {
            opacity: 0.8;
        }
    }
}
/* フェードイン */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.page-entry,
.page-archive {
    /* 1カラムレイアウト */
    #content-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #wrapper {
        max-width: 1200px;
        width: 100%;
    }
    #main-inner {
        padding: 0 1em;
    }

    /* パンくず（カテゴリー、記事ページで表示されます） */
    .breadcrumb {
        width: 100vw;
        margin-left: 50%;
        transform: translateX(-50%);
        background-color: var(--bg-secondary);
        margin-bottom: 0 !important;
        padding-top: 68px !important;
        a {
            color: var(--text-gray);
            &:hover {
                text-decoration: underline;
            }
        }
        @media (min-width: 768px) {
            padding-top: 136px !important;
        }
    }
    .breadcrumb-inner {
        max-width: 1200px;
        margin: 0 auto;
        font-size: 0.9rem;
        color: var(--text-black);
        padding: 24px;
    }
}
/* カテゴリー詳細・記事一覧 */
.page-archive {
    #content-inner {
        margin: 5em 0;
    }
    .archive-heading {
        font-size: 1.5rem;
    }
    .archive-description {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        line-height: 1.7;
        .archive-description-link {
            display: block;
            width: 100%;
            box-sizing: border-box;
            padding: 14px 20px 15px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-circular);
            font-size: var(--fontsize-lg);
            font-weight: bold;
            color: var(--text-black) !important;
            text-align: center;
            &:hover {
                opacity: 0.8;
            }
        }
        @media (min-width: 768px) {
            flex-direction: row;
            .archive-description-link {
                width: auto;
                flex-shrink: 0;
            }
        }
    }
    .archive-entries {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
        @media (min-width: 768px) {
            grid-template-columns: repeat(3, 1fr);
        }
        @media (min-width: 480px) and (max-width: 767px) {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    .archive-entry {
        display: flex;
        flex-direction: column;
        gap: 8px;
        &:after {
            content: "";
            display: none;
        }
        &:hover {
            .entry-thumb-link {
                opacity: 0.7;
            }
        }
    }
    .archive-entry-header {
        display: contents;
        .entry-title {
            order: 2;
            margin-top: 8px;
            font-size: 1.1rem;
        }
        .archive-date {
            order: 3;
            margin: 0 0 2px 2px;
            font-size: 0.8rem;
            font-weight: normal;
        }
    }
    .categories {
        order: 3;
        margin: 0;
        .archive-category-link {
            font-size: 0.8rem;
            padding: 2px 8px 3px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            &:hover {
                opacity: 0.7;
            }
        }
    }
    .entry-thumb-link {
        order: 1;
        .entry-thumb {
            width: 100%;
            height: 100%;
            margin: 0;
            border-radius: var(--radius-sm);
            aspect-ratio: 1200 / 630;
            border: 1px solid var(--bg-secondary);
        }
    }
    .archive-entry-body {
        display: none;
    }
    .social-buttons {
        display: none;
    }
}

/* 記事 */
.page-entry {
    .entry {
        position: relative;
        font-size: 16px;
        line-height: 1.75;
    }

    .entry-header {
        position: relative;
        padding: 3em 0 1em;
        max-width: 720px;
        margin: 0 auto;
        /* 下書きプレビューモーダルより下にする */
        z-index: 99;
        &::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100%;
            margin-left: 50%;
            transform: translateX(-50%);
            background-color: #eaf7fc;
            z-index: -1;
            opacity: 0.6;
        }
        @media (min-width: 864px) {
            padding: 4em 0 3em;
        }
    }

    .date,
    .date-last-updated {
        margin-bottom: 16px;
        font-size: 0.9rem;
        font-weight: bold;
        color: var(--primary);
        a {
            text-decoration: none;
            &:hover {
                opacity: 0.7;
            }
        }
    }

    .entry-title {
        margin: 0;
        font-size: 1.2rem;
        line-height: 1.4;
        .entry-title-link {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        @media (min-width: 864px) {
            font-size: 2rem;
            line-height: 1.7;
        }
    }

    .entry-categories {
        margin: 16px 0;
        font-size: 0.9rem;
        a {
            margin-right: 0.5em;
            padding: 2px 8px 3px;
            background-color: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            color: var(--text-black);
            &:hover {
                opacity: 0.7;
            }
        }
    }

    /* 「編集する」ボタン */
    .entry-header-menu {
        position: absolute;
        top: 0;
        right: 0;
    }

    /* 記事内の書式 */
    .entry-content {
        max-width: 720px;
        margin: 0 auto;
        a {
            color: var(--primary);
            text-decoration: underline;
            &:hover {
                opacity: 0.7;
            }
        }
        > p:first-of-type:has(img) {
            display: flex;
            justify-content: center;
            width: 100%;
            margin: 0 0 0 50%;
            transform: translateX(-50%);
            position: relative;
            padding-bottom: 16px;

            &::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100vw;
                height: 85%;
                margin-left: 50%;
                transform: translateX(-50%);
                background-color: #eaf7fc;
                z-index: 0;
                opacity: 0.6;
            }

            img {
                position: relative;
                display: block;
                width: 100%;
                max-width: 820px;
                height: auto;
                object-fit: cover;
                z-index: 1;
                border: 1px solid var(--bg-secondary);
            }
            @media (min-width: 864px) {
                width: 100vw;
                &::before {
                    width: 100%;
                }
            }
        }
    }
    .entry-content img,
    .entry-content video {
        width: 100%;
        height: auto;
    }
    .entry-content img {
        border: 1px solid #d2d8dd;
        border-radius: var(--radius-base);
    }
    /* 画像を横に並べるとき */
    .images-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin: 0 0 24px;
        .images-row-item {
            margin-right: 0;
            h5 {
                margin: var(--space-2) 0;
            }
        }
        @media (min-width: 480px) {
            gap: var(--space-5);
            flex-direction: row;
            margin: 0;
        }
    }

    .entry-content h3 {
        position: relative;
        margin: 2em 0 1.5em;
        padding: 0.2em 0 0.4em 1em;
        font-size: 1.2rem;
        @media (min-width: 864px) {
            margin: 2.5em 0 1.7em;
            font-size: 1.5rem;
        }
        &:before {
            content: "";
            position: absolute;
            inset: 0;
            width: 6px;
            height: 100%;
            background: var(--primary);
            border-radius: 6px;
        }
    }

    .entry-content h4 {
        margin: 1.5em 0 0.4em;
        font-size: 1.3rem;
        @media (min-width: 864px) {
            margin: 2em 0 1.4em;
            font-size: 1.5rem;
        }
    }

    .entry-content h5 {
        margin: 1.2em 0;
        font-size: 1.1rem;
        padding-left: 1.2em;
        position: relative;
        &::before {
            content: "";
            position: absolute;
            top: 36%;
            left: 3px;
            width: 10px;
            height: 10px;
            background-color: var(--primary);
            border-radius: 10px;
            opacity: 0.6;
        }
        @media (min-width: 864px) {
            margin: 1.5em 0;
        }
    }

    .entry-content ul {
        li {
            list-style: disc;
            & li {
                list-style: circle;
                & li {
                    list-style: square;
                }
            }
        }
    }
    .entry-content ol {
        li {
            list-style: decimal;
            > li {
                list-style: lower-alpha;
                > li {
                    list-style: lower-roman;
                }
            }
        }
    }

    .entry-content ul,
    .entry-content ol,
    .entry-content dd {
        margin: 0 0 1em 1.5em;
        padding: 0;
    }

    .entry-content ul li ul,
    .entry-content ul li ol,
    .entry-content ol li ul,
    .entry-content ol li ol,
    .entry-content dd li ul,
    .entry-content dd li ol {
        margin-bottom: 0;
    }

    .entry-content table {
        border-collapse: collapse;
        border-spacing: 0;
        border-bottom: 1em;
        margin-bottom: 1em;
        width: 100%;
        overflow: auto;
        display: block;
        font-size: 0.8rem;
    }

    @media (min-width: 864px) {
        .entry-content table {
            font-size: 0.9rem;
        }
    }

    .entry-content table th,
    .entry-content table td {
        border: 1px solid var(--border);
        padding: 5px 10px;
    }

    .entry-content table th {
        background: var(--bg-light-gray);
    }

    .entry-content blockquote {
        margin: 0;
        padding: 32px;
        background-color: var(--bg-light-gray);
        border-radius: var(--radius-base);
        position: relative;
        &:after {
            content: "”";
            font-family: "Playfair Display", serif;
            position: absolute;
            top: 38px;
            right: 8px;
            font-size: 8rem;
            line-height: 0;
            color: var(--primary);
            opacity: 0.4;
        }
    }

    .entry-content blockquote p:first-child {
        margin-top: 0;
    }

    .entry-content blockquote p:last-child {
        margin-bottom: 0;
    }

    .entry-content pre,
    .entry-content code {
        font-family: "Monaco", "Consolas", "Courier New", Courier, monospace,
            sans-serif;
    }

    .entry-content pre {
        background: #f5f5f5;
        border: none;
        white-space: pre-wrap;
        text-overflow: ellipsis;
        font-size: 100%;
        line-height: 1.3;
        font-size: 0.8rem;
        padding: 10px;
    }

    .entry-content pre > code {
        margin: 0;
        padding: 0;
        white-space: pre;
        border: none;
        background-color: transparent;
        font-family: "Monaco", "Consolas", "Courier New", Courier, monospace,
            sans-serif;
    }

    .entry-content code {
        font-size: 90%;
        margin: 0 2px;
        padding: 0px 5px;
        background-color: #f5f5f5;
        border-radius: 3px;
    }

    .entry-content hr {
        width: 50%;
        border: 0;
        border: none;
        border-top: 1px solid var(--border);
        margin: 2em auto;
    }

    .entry-content .table-of-contents {
        position: relative;
        padding: 56px 24px 32px;
        margin: 24px 0;
        border-radius: var(--radius-base);
        background-color: var(--bg-light-gray);
        font-size: 14px;
        li {
            list-style: none;
        }
        @media (min-width: 864px) {
            margin: 40px 0;
        }

        &::before {
            content: "目次";
            position: absolute;
            top: 0;
            left: 0;
            font-weight: bold;
            font-size: 1.2rem;
            padding: 16px 24px;
        }

        > li > a {
            font-weight: bold;
        }

        ul {
            padding-left: 24px;
            margin: 8px 0 0;
        }

        li {
            position: relative;
            margin: 8px 0 0;

            > ul > li::before {
                content: "";
                position: absolute;
                top: 13px;
                left: -15px;
                width: 4px;
                height: 4px;
                border-radius: 50%;
                background-color: var(--text-gray);
            }
        }

        a {
            &:hover {
                text-decoration: underline;
            }
        }
    }

    .hatena-asin-detail {
        border-radius: var(--radius-base);
        border-color: var(--border);
    }

    /* 記事末尾CTA */
    .cta {
        background: var(--bg-secondary);
        text-align: center;
        padding: 3em 2em;
        border-radius: 8px;
        p {
            padding: 0;
            margin: 1em 0;
            font-size: 16px;
        }
        .contact-title {
            font-size: 22px;
            margin-top: 0;
            margin-bottom: 0.5em;
            padding: 0;
            &::before {
                display: none;
            }
        }
        .btn {
            display: block;
            max-width: 300px;
            margin: 1.5em auto 0;
            padding: 14px 20px;
            background: #fff;
            border: 2px solid var(--primary);
            border-radius: 1000px;
            text-decoration: none !important;
            font-size: 16px;
            line-height: 150%;
            color: #333 !important;
            text-align: center;
            font-weight: bold;
            &:hover {
                opacity: 0.8;
            }
        }
    }
    @media (width <= 767px) {
        .cta {
            p {
                font-size: 14px;
            }
            .contact-title {
                font-size: 20px;
            }
            .btn {
                font-size: 14px;
            }
        }
    }

    /* フッター */
    .entry-footer {
        max-width: 720px;
        margin: 0 auto;
    }
    .entry-footer-section {
        display: none;
    }
    .footnote {
        font-size: 0.8rem;
    }

    /* ページャ */
    .pager {
        display: none;
    }

    .pager-prev,
    .pager-next {
        min-width: 0;
        flex: 0 1 auto;

        a {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 8px;
            max-width: 100%;
            border-radius: 100px;
            font-size: 0.8rem;
            color: var(--primary);
            font-weight: bold;

            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;

            &:hover {
                opacity: 0.7;
            }
        }
    }
    .pager-arrow {
        font-size: 1.2rem;
    }
}
