/*
Theme Name: 株式会社金沢空調
Author: 
Version: 1.0
*/

@charset "utf-8";
:root {
    --kk-text: #111;
    --kk-muted: #6b7280;
    --kk-border: #7d7d7d;
    --kk-bg: #ffffff;
    --kk-blue: #3cb1df;
    --kk-blue-soft: #e7f1fb;
    --kk-cyan: #3cb1df;
    --kk-error: #ff0000;
    --kk-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    --kk-container: 1280px;
    --header-height: 0px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    color: var(--kk-text);
    background: var(--kk-bg);
    font-family: "Noto Sans CJK JP", "Noto Sans JP", system-ui, -apple-system, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    font-feature-settings: "palt";
    overflow-x: hidden;
}

.en {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    letter-spacing: 0.06em;
}

.l-wrapper {
    /* どのディスプレイ幅でも左右余白が破綻しない */
    padding-left: clamp(16px, 4vw, 40px);
    padding-right: clamp(16px, 4vw, 40px);
}

.l-inner,
.cms-inner {
    max-width: var(--kk-container);
    margin: 0 auto;
}

.pc-only {
    display: block !important;
}

.tab-only,
.sp-only {
    display: none !important;
}

.pc-only-flex {
    display: flex !important;
}

.sp-only-flex {
    display: none !important;
}

@media screen and (max-width: 1024px) {
    .l-wrapper {
        padding-left: 16px;
        padding-right: 16px;
    }
    .pc-only,
    .pc-only-flex {
        display: none !important;
    }
    .tab-only {
        display: block !important;
    }
    .l-inner {
        max-width: 820px;
    }
}

@media screen and (max-width: 800px) {
    .sp-only {
        display: block !important;
    }
    .sp-only-flex {
        display: flex !important;
    }
}


/* Header */

.kk-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    background-color: #fff;
    padding: 0 0 0 20px;
}

.kk-header__inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    width: 260px;
    height: auto;
    object-fit: contain;
}

.header-menu {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 22px;
}

.kk-header__nav {
    justify-self: end;
}

.kk-nav__list {
    display: flex;
    align-items: center;
    gap: 22px;
}

.kk-nav__link {
    font-size: 16px;
    color: var(--kk-text);
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kk-header__cta {
    align-items: center;
    justify-content: center;
    width: auto;
    height: 100%;
    background: var(--kk-blue);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 30px;
}

.menu-icon {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    background: #fff;
    padding: 10px;
    position: relative;
}

.menu-icon span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: #111;
    border-radius: 999px;
    transition: top .2s ease, transform .2s ease;
}

.menu-icon span:nth-last-of-type(1) {
    top: 30%;
}

.menu-icon span:nth-last-of-type(2) {
    top: 50%;
}

.menu-icon span:nth-last-of-type(3) {
    top: 70%;
}

.menu-icon.nav-active span:nth-last-of-type(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

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

.menu-icon.nav-active span:nth-last-of-type(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 800px) {
    .kk-header {
        padding: 0 20px;
    }
    .kk-header__inner {
        padding: 20px 0;
    }
    .logo-img {
        width: 170px;
    }
    .menu-icon {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
    }
    .header-menu {
        z-index: 1;
        position: fixed;
        bottom: 0;
        right: 0;
        width: 100%;
        height: calc(100% - var(--header-height));
        background: rgba(255, 255, 255, 0.98);
        background: rgba(0, 0, 0, 0.7);
        padding: 18px 16px;
        opacity: 0;
        pointer-events: none;
        transition: transform .2s ease, opacity .2s ease;
        flex-direction: column;
        justify-content: center;
        &::before {
            content: '';
            z-index: -1;
            position: absolute;
            bottom: 55%;
            left: 50%;
            transform: translate(-50%, 50%);
            width: 70%;
            height: calc(75% - var(--header-height));
            background: #fff;
            border-radius: 10px;
        }
        &::after {
            content: 'MENU';
            position: absolute;
            top: 20%;
            left: 50%;
            transform: translateX(-50%);
            font-size: 14px;
            font-weight: 500;
            color: var(--kk-blue);
            text-decoration: underline;
        }
    }
    body.nav-active .header-menu {
        opacity: 1;
        pointer-events: auto;
    }
    .kk-nav__list {
        flex-direction: column;
        align-items: flex-start;
        align-items: center;
        gap: 30px;
    }
    .kk-nav__link {
        font-size: 18px;
    }
    .kk-header__cta {
        align-items: center;
        justify-content: center;
        width: auto;
        height: fit-content;
        background: var(--kk-blue);
        color: #fff;
        font-weight: 600;
        font-size: 14px;
        padding: 15px 30px;
    }
}


/* Hero */

.kk-hero {
    height: 100vh;
    padding-top: calc(-1 * var(--header-height));
}

.kk-hero__inner {
    position: relative;
    height: 100%;
}

.kk-hero__splide {
    width: 100vw;
    height: 100%;
    margin-left: calc(50% - 50vw);
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.kk-hero__splide .splide__track,
.kk-hero__splide .splide__list,
.kk-hero__splide .splide__slide {
    height: 100%;
}

.kk-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 12%;
    filter: saturate(1.05) contrast(1.02);
}

.kk-hero__img--alt {
    object-position: 50% 14%;
    filter: saturate(1.02) contrast(1.01);
}

.kk-hero__splide .splide__pagination {
    justify-content: end;
    position: absolute;
    bottom: 20px;
    right: 40px;
    gap: 10px;
}

.kk-hero__splide .splide__pagination button {
    width: 10px;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 5rem;
    background: transparent;
    border: 1px solid #fff;
    padding: 0;
}

.kk-hero__splide .splide__pagination button.is-active {
    background: #fff;
}

.kk-hero__copy {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    max-width: 1600px;
    width: 100%;
    height: fit-content;
}

.kk-hero__catch {
    display: inline-block;
    font-size: clamp(22px, 2.8vw, 29px);
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.25;
}

@media screen and (max-width: 800px) {
    .kk-hero {
        height: 100vh;
        padding-top: calc(-1 * var(--header-height));
    }
    .kk-hero__copy {
        bottom: 14px;
    }
    .kk-hero__splide .splide__pagination {
        bottom: 15px;
        right: 20px;
    }
    .kk-hero__splide .splide__pagination button {
        width: 8px;
    }
}


/* Section title */

.kk-section {
    padding-top: 72px;
    padding-bottom: 72px;
}

.kk-sectionTitle {
    text-align: center;
    margin-bottom: 26px;
}

.kk-sectionTitle__en {
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #111;
}

.kk-sectionTitle__ja {
    margin-top: 10px;
    font-size: 18px;
    color: var(--kk-cyan);
    font-weight: 700;
}

.kk-lead {
    text-align: center;
    font-size: clamp(18px, 2.8vw, 29px);
    font-weight: 700;
    margin: 25px 0 16px;
}

.kk-prose {
    margin: 0 auto;
    text-align: center;
    line-height: 1.9;
    color: #1f2937;
    font-weight: 400;
    font-size: clamp(15px, 2.8vw, 20px);
}

.kk-prose p+p {
    margin-top: 12px;
}


/* Cards / grids */

.kk-businessGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 40px;
}

.kk-card {}

.kk-card__media {
    width: 100%;
    height: auto;
    background: #f3f4f6;
}

.kk-card__cap {
    padding: 12px 12px 14px;
    font-size: clamp(15px, 2.8vw, 20px);
    font-weight: 500;
    color: #111;
    text-align: center;
}

@media screen and (max-width: 800px) {
    .kk-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .kk-prose p {
        text-align: left;
    }
    .kk-prose p br {
        display: none;
    }
    .kk-businessGrid {
        grid-template-columns: 1fr;
    }
    .kk-card__media {
        height: 190px;
    }
}


/* Cropped image helpers (PDFスクショを仮素材として使用) */

.kk-crop {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.kk-crop--business1 {
    object-position: 50% 28%;
}

.kk-crop--business2 {
    object-position: 50% 30%;
}

.kk-crop--business3 {
    object-position: 50% 32%;
}

.kk-crop--map {
    object-position: 50% 54%;
    height: 360px;
}

.kk-crop--product1 {
    object-position: 24% 68%;
    height: 320px;
}

.kk-crop--product2 {
    object-position: 78% 68%;
    height: 320px;
}

.kk-crop--schedule {
    min-width: 800px;
    width: 100%;
    height: auto;
}

.kk-map {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 6;
}

.kk-map iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Info table */

.kk-info {
    border: 1px solid var(--kk-border);
    overflow: hidden;
    background: #fff;
}

.kk-info__row {
    display: grid;
    grid-template-columns: 220px 1fr;
    border-top: 1px solid var(--kk-border);
}

.kk-info__row:first-child {
    border-top: none;
}

.kk-info__th {
    padding: 14px 14px;
    text-align: center;
    background: var(--kk-blue);
    color: #fff;
    font-weight: 400;
    font-size: clamp(15px, 2.8vw, 20px);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kk-info__td {
    padding: 14px 16px;
    font-size: clamp(15px, 2.8vw, 20px);
    line-height: 1.8;
    color: #111;
    background: #fff;
}

@media screen and (max-width: 800px) {
    .kk-info__row {
        grid-template-columns: 1fr;
    }
    .kk-info__th {
        font-size: 12px;
    }
}

.kk-link {
    color: var(--kk-blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}


/* Product */

.kk-productGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 45px;
}

.left-text {
    text-align: left;
}

.kk-product {
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kk-product__img {
    max-width: 400px;
    width: 80%;
    height: auto;
}

.kk-product__title {
    margin: 12px 0 10px;
    font-weight: 700;
    font-size: clamp(15px, 2.8vw, 20px);
}

@media screen and (max-width: 800px) {
    .kk-productGrid {
        grid-template-columns: 1fr;
    }
}


/* Buttons */

.kk-btn {
    margin-top: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 63px;
    width: 220px;
    padding: 0 30px 0 0;
    border-radius: 999px;
    background: var(--kk-blue);
    color: #fff;
    font-weight: 500;
    font-size: clamp(15px, 2.8vw, 18px);
}

.kk-btn svg {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.kk-btn--primary {
    background: var(--kk-blue);
    color: #fff;
    border-color: transparent;
}


/* Recruit */

.kk-subHeading {
    font-size: clamp(15px, 2.8vw, 18px);
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-top: 60px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--kk-blue);
}

.kk-schedule {
    margin-top: 60px;
    position: relative;
    width: 100%;
    height: auto;
}

.kk-schedule__scroller {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.kk-subHeading--schedule {
    margin-top: 0;
    margin-bottom: 0;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    z-index: 10;
}


/* 800px以下：常時表示の横スクロールバー（scrollbar.jsが同期） */

@media screen and (max-width: 800px) {
    .kk-hscrollbar {
        display: block;
        margin-top: 10px;
        height: 10px;
        border-radius: 999px;
        background: rgba(0, 0, 0, 0.12);
        position: relative;
        user-select: none;
        touch-action: none;
    }
    .kk-hscrollbar__thumb {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        border-radius: 999px;
        background: var(--kk-blue);
        width: 40px;
        /* JSで上書きされる */
        transform: translateX(0);
        cursor: pointer;
        touch-action: none;
    }
}

@media screen and (min-width: 801px) {
    .kk-hscrollbar {
        display: none;
    }
}

.kk-list {
    max-width: 880px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    gap: 8px;
    color: #111;
    font-size: 14px;
    line-height: 1.8;
}

.kk-list li {
    padding-left: 14px;
    position: relative;
}

.kk-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--kk-blue);
    position: absolute;
    left: 0;
    top: 0.8em;
    transform: translateY(-50%);
}


/* Footer */

.kk-footer {
    padding-top: 90px;
    padding-bottom: 120px;
    background: #fff;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 90px;
}

.footer-logo-img {
    max-width: 262px;
    width: 60%;
    height: auto;
    margin: auto;
}

.kk-footer__copy {
    display: block;
    text-align: center;
    color: var(--kk-muted);
    letter-spacing: 0.08em;
    font-weight: 600;
    font-size: 13px;
}


/* contact */

.contact {
    z-index: 1;
    position: relative;
    padding-top: calc((var(--header-height)) + 60px);
    padding-bottom: 140px;
    &::before {
        z-index: -1;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        background: url("./img/page-back.webp") no-repeat top / cover;
        opacity: 0.16;
    }
    .l-inner {
        max-width: 1000px;
        width: 100%;
        height: auto;
        margin: auto;
        .heading {
            font-size: var(--heading-font);
            font-weight: 500;
            line-height: 2;
            letter-spacing: 0.01em;
            text-align: center;
        }
        form {
            margin-top: 40px;
            margin-left: auto;
            margin-right: auto;
            display: flex;
            flex-direction: column;
            gap: 48px;
            max-width: 800px;
            width: 100%;
            height: auto;
            .form-item,
            .form-content {
                display: flex;
                flex-direction: column;
                gap: 12px;
                align-items: start;
                .form-heading {
                    font-size: var(--en-font);
                    font-weight: 500;
                    line-height: 2;
                    letter-spacing: 0.01em;
                    .required {
                        color: var(--kk-error);
                    }
                }
                .input-wrap {
                    width: 100%;
                    position: relative;
                    &::before {
                        opacity: 0;
                        pointer-events: none;
                        content: "";
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%, -50%);
                        width: calc(100% + 1px);
                        height: calc(100% + 1px);
                        border-radius: 7px;
                        border: 2px solid var(--kk-blue);
                        background-color: transparent;
                        transition: all 0.3s ease;
                    }
                    &.focused::before {
                        opacity: 1;
                    }
                    input,
                    textarea {
                        width: 100%;
                        height: auto;
                        padding: 8px 16px;
                        border: 1px solid #cccccc;
                        border-radius: 8px;
                        background-color: #f5f5f5;
                        font-size: var(--en-font);
                        line-height: 2;
                        font-weight: 500;
                        outline: none;
                        box-shadow: none;
                        transition: all 0.3s ease;
                        &:focus {
                            /* border: 2px solid var(--kk-blue); */
                            border: 1px solid transparent;
                        }
                        &::placeholder {
                            color: #cccccc;
                        }
                    }
                    textarea {
                        height: 240px;
                    }
                }
            }
            .privacy-check {
                .form-heading {
                    label {
                        display: flex;
                        flex-direction: row;
                        align-items: center;
                        gap: 8px;
                        justify-content: center;
                        input {
                            &[type="checkbox"] {
                                appearance: none;
                                -webkit-appearance: none;
                                -moz-appearance: none;
                                width: 18px;
                                height: auto;
                                aspect-ratio: 1/1;
                                border: 1px solid #cccccc;
                                background-color: #f5f5f5;
                                border-radius: 2px;
                                margin: 0 !important;
                                position: relative;
                                cursor: pointer;
                                &::after {
                                    opacity: 0;
                                    pointer-events: none;
                                    transition: all 0.3s ease;
                                    content: "";
                                    position: absolute;
                                    top: 50%;
                                    left: 50%;
                                    transform: translate(-50%, -50%);
                                    width: 10px;
                                    height: auto;
                                    aspect-ratio: 1/1;
                                    border-radius: 2px;
                                    background-color: var(--kk-blue);
                                }
                                &:checked {
                                    &::after {
                                        opacity: 1;
                                    }
                                }
                            }
                        }
                        .privacy-link {
                            color: var(--kk-blue);
                            border-bottom: 1px solid var(--kk-blue);
                        }
                    }
                }
            }
            .submit-btn {
                position: relative;
                margin-top: 12px;
                margin-left: auto;
                margin-right: auto;
                max-width: 340px;
                width: 100%;
                background: var(--kk-blue);
                border-radius: 5rem;
                &>p {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    .submit-button {
                        display: block;
                        width: 100%;
                        height: 100%;
                        font-size: clamp(0.875rem, 0.737rem + 0.29vw, 1rem);
                        line-height: 2;
                        font-weight: 500;
                        color: #fff;
                        padding: 7px 45px 7px 30px;
                        background-color: transparent;
                    }
                    svg {
                        position: absolute;
                        top: 50%;
                        right: 37%;
                        transform: translateY(-50%);
                        width: 7px;
                        height: auto;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 800px) {
    .contact {
        padding-top: calc((var(--header-height)) + 30px);
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 60px;
        .l-inner {
            max-width: 600px;
            form {
                gap: 30px;
                .form-item,
                .form-content {
                    input,
                    textarea {
                        font-size: 14px;
                    }
                }
                .privacy-check {
                    .form-heading {
                        font-size: 14px;
                    }
                }
                .submit-btn {
                    width: 100%;
                    margin-top: 0;
                    margin-left: auto;
                    margin-right: auto;
                    button {
                        font-size: 1rem;
                        padding: 7px 20px 7px 20px;
                    }
                }
            }
        }
    }
}


/* contact foem 7 */

.wpcf7-not-valid-tip {
    position: absolute;
    bottom: -8px;
    left: 0;
    transform: translateY(100%);
    font-size: var(--en-font);
    color: var(--kk-error);
}

.wpcf7-spinner{
    display: none !important;
}

.screen-reader-response {
    display: none;
}

.page-news {
    padding-top: calc((var(--header-height)) + 60px);
}

@media screen and (max-width: 800px) {
    .page-news {
        padding-top: calc((var(--header-height)) + 30px);
    }
}

/* Generic Page (page.php) */

.kk-page {
    position: relative;
    padding-top: calc((var(--header-height)) + 60px);
    padding-bottom: 120px;
}

.kk-page::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    background: url("./img/page-back.webp") no-repeat top / cover;
    opacity: 0.12;
}

.kk-page .l-inner {
    max-width: 1000px;
    width: 100%;
}

.kk-page__header {
    text-align: center;
    margin-bottom: 32px;
}

.kk-page__title {
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.35;
    color: #111;
}

.kk-page__thumb {
    margin: 0 auto 28px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--kk-shadow);
}

.kk-page__thumb img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 800px) {
    .kk-page {
        padding-top: calc((var(--header-height)) + 30px);
        padding-bottom: 60px;
    }
    .kk-page__header {
        margin-bottom: 22px;
    }
    .kk-page__thumb {
        margin-bottom: 20px;
        border-radius: 12px;
    }
}

/* CMS typography (the_content) */

.kk-cms {
    padding-top: var(--header-height);
    margin: 0 auto;
    max-width: 880px;
    color: #1f2937;
    line-height: 1.9;
    font-size: 16px;
}

.kk-cms > * + * {
    margin-top: 16px;
}

.kk-cms a {
    color: var(--kk-blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.kk-cms strong {
    color: #111;
}

.kk-cms h2 {
    margin-top: 42px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    font-size: clamp(18px, 2.4vw, 24px);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.5;
    color: #111;
}

.kk-cms h3 {
    margin-top: 28px;
    font-size: clamp(16px, 2.2vw, 20px);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.55;
    color: var(--kk-blue);
}

.kk-cms h4 {
    margin-top: 22px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    color: #111;
}

.kk-cms ul,
.kk-cms ol {
    padding-left: 1.2em;
}

.kk-cms ul {
    list-style: disc;
}

.kk-cms ol {
    list-style: decimal;
}

.kk-cms li + li {
    margin-top: 6px;
}

.kk-cms blockquote {
    padding: 14px 16px;
    background: #f3f4f6;
    border-left: 4px solid var(--kk-blue);
    color: #111;
}

.kk-cms hr {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    margin: 28px 0;
}

.kk-cms img {
    max-width: 100%;
    height: auto;
}

.kk-cms table {
    width: 100%;
    border: 1px solid var(--kk-border);
    background: #fff;
}

.kk-cms th,
.kk-cms td {
    padding: 12px 14px;
    border-top: 1px solid var(--kk-border);
    line-height: 1.7;
}

.kk-cms tr:first-child th,
.kk-cms tr:first-child td {
    border-top: none;
}

.kk-cms th {
    background: var(--kk-blue-soft);
    font-weight: 600;
    color: #111;
}

.kk-cms .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--kk-blue);
    color: #fff;
    font-weight: 600;
}